* DiscImageChef.DiscImages/DiskCopy42.cs:

Lisa Twiggies and Macintosh Twiggies use a different track
	  order. Detect a Macintosh File System to know which
	  re-ordering to use.

	* DiscImageChef.Filesystems/AppleMFS/Dir.cs:
	  Remove spurious debug leftover.
	"Entries are always an integral number of words" solved.

	* DiscImageChef.Filesystems/AppleMFS/Super.cs:
	  When filling volume block map, check we are not going out of
	  bounds.

	* DiscImageChef.Partitions/NeXT.cs:
	* DiscImageChef.Filesystems/HPFS.cs:
	* DiscImageChef.Filesystems/SysV.cs:
	  Do not try to read past device.
This commit is contained in:
2016-08-01 18:52:34 +01:00
parent e37f50d5d3
commit f5e90756a2
9 changed files with 87 additions and 34 deletions

View File

@@ -1,3 +1,9 @@
2016-08-01 Natalia Portillo <claunia@claunia.com>
* DiskCopy42.cs: Lisa Twiggies and Macintosh Twiggies use a
different track order. Detect a Macintosh File System to know
which re-ordering to use.
2016-07-31 Natalia Portillo <claunia@claunia.com> 2016-07-31 Natalia Portillo <claunia@claunia.com>
* DiskCopy42.cs: Swap tracks in second half of twiggy images. * DiskCopy42.cs: Swap tracks in second half of twiggy images.

View File

@@ -375,7 +375,6 @@ namespace DiscImageChef.ImagePlugins
if(ImageInfo.mediaType == MediaType.AppleFileWare) if(ImageInfo.mediaType == MediaType.AppleFileWare)
{ {
DicConsole.DebugWriteLine("DC42 plugin", "Twiggy detected, reversing second half of disk", bptag);
byte[] data = new byte[header.dataSize]; byte[] data = new byte[header.dataSize];
byte[] tags = new byte[header.tagSize]; byte[] tags = new byte[header.tagSize];
@@ -393,35 +392,51 @@ namespace DiscImageChef.ImagePlugins
tagstream.Read(tags, 0, (int)header.tagSize); tagstream.Read(tags, 0, (int)header.tagSize);
tagstream.Close(); tagstream.Close();
Array.Copy(data, 0, twiggyCache, 0, header.dataSize / 2); ushort MFS_Magic = BigEndianBitConverter.ToUInt16(data, (int)((data.Length / 2) + 0x400));
Array.Copy(tags, 0, twiggyCacheTags, 0, header.tagSize / 2); ushort MFS_AllBlocks = BigEndianBitConverter.ToUInt16(data, (int)((data.Length / 2) + 0x412));
int copiedSectors = 0; // Detect a Macintosh Twiggy
int sectorsToCopy = 0; if(MFS_Magic == 0xD2D7 && MFS_AllBlocks == 422)
for(int i = 0; i < 46; i++)
{ {
if(i >= 0 && i <= 3) DicConsole.DebugWriteLine("DC42 plugin", "Macintosh Twiggy detected, reversing disk sides");
sectorsToCopy = 22; Array.Copy(data, (header.dataSize / 2), twiggyCache, 0, header.dataSize / 2);
if(i >= 4 && i <= 10) Array.Copy(tags, (header.tagSize / 2), twiggyCacheTags, 0, header.tagSize / 2);
sectorsToCopy = 21; Array.Copy(data, 0, twiggyCache, header.dataSize / 2, header.dataSize / 2);
if(i >= 11 && i <= 16) Array.Copy(tags, 0, twiggyCacheTags, header.tagSize / 2, header.tagSize / 2);
sectorsToCopy = 20; }
if(i >= 17 && i <= 22) else
sectorsToCopy = 19; {
if(i >= 23 && i <= 28) DicConsole.DebugWriteLine("DC42 plugin", "Lisa Twiggy detected, reversing second half of disk");
sectorsToCopy = 18; Array.Copy(data, 0, twiggyCache, 0, header.dataSize / 2);
if(i >= 29 && i <= 34) Array.Copy(tags, 0, twiggyCacheTags, 0, header.tagSize / 2);
sectorsToCopy = 17;
if(i >= 35 && i <= 41)
sectorsToCopy = 16;
if(i >= 42 && i <= 45)
sectorsToCopy = 15;
Array.Copy(data, header.dataSize / 2 + copiedSectors * 512, twiggyCache, twiggyCache.Length - copiedSectors * 512 - sectorsToCopy * 512, sectorsToCopy * 512); int copiedSectors = 0;
Array.Copy(tags, header.tagSize / 2 + copiedSectors * bptag, twiggyCacheTags, twiggyCacheTags.Length - copiedSectors * bptag - sectorsToCopy * bptag, sectorsToCopy * bptag); int sectorsToCopy = 0;
copiedSectors += sectorsToCopy; for(int i = 0; i < 46; i++)
{
if(i >= 0 && i <= 3)
sectorsToCopy = 22;
if(i >= 4 && i <= 10)
sectorsToCopy = 21;
if(i >= 11 && i <= 16)
sectorsToCopy = 20;
if(i >= 17 && i <= 22)
sectorsToCopy = 19;
if(i >= 23 && i <= 28)
sectorsToCopy = 18;
if(i >= 29 && i <= 34)
sectorsToCopy = 17;
if(i >= 35 && i <= 41)
sectorsToCopy = 16;
if(i >= 42 && i <= 45)
sectorsToCopy = 15;
Array.Copy(data, header.dataSize / 2 + copiedSectors * 512, twiggyCache, twiggyCache.Length - copiedSectors * 512 - sectorsToCopy * 512, sectorsToCopy * 512);
Array.Copy(tags, header.tagSize / 2 + copiedSectors * bptag, twiggyCacheTags, twiggyCacheTags.Length - copiedSectors * bptag - sectorsToCopy * bptag, sectorsToCopy * bptag);
copiedSectors += sectorsToCopy;
}
} }
} }

View File

@@ -95,7 +95,6 @@ namespace DiscImageChef.Filesystems.AppleMFS
Array.Copy(directoryBlocks, offset + 50, entry.flNam, 0, entry.flNam.Length); Array.Copy(directoryBlocks, offset + 50, entry.flNam, 0, entry.flNam.Length);
lowerFilename = GetStringFromPascal(entry.flNam).ToLowerInvariant().Replace('/', ':'); lowerFilename = GetStringFromPascal(entry.flNam).ToLowerInvariant().Replace('/', ':');
if(entry.flFlags.HasFlag(MFS_FileFlags.Used) && !idToFilename.ContainsKey(entry.flFlNum) && if(entry.flFlags.HasFlag(MFS_FileFlags.Used) && !idToFilename.ContainsKey(entry.flFlNum) &&
!idToEntry.ContainsKey(entry.flFlNum) && !filenameToId.ContainsKey(lowerFilename) && !idToEntry.ContainsKey(entry.flFlNum) && !filenameToId.ContainsKey(lowerFilename) &&
entry.flFlNum > 0) entry.flFlNum > 0)
@@ -104,7 +103,6 @@ namespace DiscImageChef.Filesystems.AppleMFS
idToFilename.Add(entry.flFlNum, GetStringFromPascal(entry.flNam).Replace('/', ':')); idToFilename.Add(entry.flFlNum, GetStringFromPascal(entry.flNam).Replace('/', ':'));
filenameToId.Add(lowerFilename, entry.flFlNum); filenameToId.Add(lowerFilename, entry.flFlNum);
System.Console.WriteLine("{0}", offset);
DicConsole.DebugWriteLine("DEBUG (AppleMFS plugin)", "entry.flFlags = {0}", entry.flFlags); DicConsole.DebugWriteLine("DEBUG (AppleMFS plugin)", "entry.flFlags = {0}", entry.flFlags);
DicConsole.DebugWriteLine("DEBUG (AppleMFS plugin)", "entry.flTyp = {0}", entry.flTyp); DicConsole.DebugWriteLine("DEBUG (AppleMFS plugin)", "entry.flTyp = {0}", entry.flTyp);
DicConsole.DebugWriteLine("DEBUG (AppleMFS plugin)", "entry.flFlNum = {0}", entry.flFlNum); DicConsole.DebugWriteLine("DEBUG (AppleMFS plugin)", "entry.flFlNum = {0}", entry.flFlNum);
@@ -120,6 +118,12 @@ namespace DiscImageChef.Filesystems.AppleMFS
} }
offset += (50 + entry.flNam.Length); offset += (50 + entry.flNam.Length);
// "Entries are always an integral number of words"
if((offset % 2) != 0)
offset++;
// TODO: "Entries don't cross logical block boundaries"
} }
return true; return true;

View File

@@ -84,9 +84,16 @@ namespace DiscImageChef.Filesystems.AppleMFS
blockMap = new uint[volMDB.drNmAlBlks + 2 + 1]; blockMap = new uint[volMDB.drNmAlBlks + 2 + 1];
for(int i = 2; i < volMDB.drNmAlBlks + 2; i+=8) for(int i = 2; i < volMDB.drNmAlBlks + 2; i+=8)
{ {
uint tmp1 = BigEndianBitConverter.ToUInt32(blockMapBytes, offset); uint tmp1 = 0;
uint tmp2 = BigEndianBitConverter.ToUInt32(blockMapBytes, offset + 4); uint tmp2 = 0;
uint tmp3 = BigEndianBitConverter.ToUInt32(blockMapBytes, offset + 8); uint tmp3 = 0;
if(offset + 4 <= blockMapBytes.Length)
tmp1 = BigEndianBitConverter.ToUInt32(blockMapBytes, offset);
if(offset + 4 + 4 <= blockMapBytes.Length)
tmp2 = BigEndianBitConverter.ToUInt32(blockMapBytes, offset + 4);
if(offset + 8 + 4 <= blockMapBytes.Length)
tmp3 = BigEndianBitConverter.ToUInt32(blockMapBytes, offset + 8);
if(i < blockMap.Length) if(i < blockMap.Length)
blockMap[i] = (tmp1 & 0xFFF00000) >> 20; blockMap[i] = (tmp1 & 0xFFF00000) >> 20;

View File

@@ -1,3 +1,14 @@
2016-08-01 Natalia Portillo <claunia@claunia.com>
* Dir.cs: Remove spurious debug leftover.
"Entries are always an integral number of words" solved.
* Super.cs: When filling volume block map, check we are not
going out of bounds.
* HPFS.cs:
* SysV.cs: Do not try to read past device.
2016-08-01 Natalia Portillo <claunia@claunia.com> 2016-08-01 Natalia Portillo <claunia@claunia.com>
* Dir.cs: * Dir.cs:

View File

@@ -56,6 +56,9 @@ namespace DiscImageChef.Filesystems
if((2 + partitionStart) >= imagePlugin.GetSectors()) if((2 + partitionStart) >= imagePlugin.GetSectors())
return false; return false;
if(imagePlugin.ImageInfo.sectors <= 16)
return false;
uint magic1, magic2; uint magic1, magic2;
byte[] hpfs_sb_sector = imagePlugin.ReadSector(16 + partitionStart); // Seek to superblock, on logical sector 16 byte[] hpfs_sb_sector = imagePlugin.ReadSector(16 + partitionStart); // Seek to superblock, on logical sector 16

View File

@@ -109,6 +109,9 @@ namespace DiscImageChef.Filesystems
// Superblock can start on 0x000, 0x200, 0x600 and 0x800, not aligned, so we assume 16 (128 bytes/sector) sectors as a safe value // Superblock can start on 0x000, 0x200, 0x600 and 0x800, not aligned, so we assume 16 (128 bytes/sector) sectors as a safe value
for(int i = 0; i <= 16; i++) for(int i = 0; i <= 16; i++)
{ {
if(i + sb_size_in_sectors >= (int)imagePlugin.ImageInfo.sectors)
break;
byte[] sb_sector = imagePlugin.ReadSectors((ulong)i + partitionStart, sb_size_in_sectors); byte[] sb_sector = imagePlugin.ReadSectors((ulong)i + partitionStart, sb_size_in_sectors);
magic = BitConverter.ToUInt32(sb_sector, 0x3F8); // XENIX magic location magic = BitConverter.ToUInt32(sb_sector, 0x3F8); // XENIX magic location

View File

@@ -1,3 +1,7 @@
2016-08-01 Natalia Portillo <claunia@claunia.com>
* NeXT.cs: Do not try to read past device.
2016-07-29 Natalia Portillo <claunia@claunia.com> 2016-07-29 Natalia Portillo <claunia@claunia.com>
* DiscImageChef.Partitions.csproj: Bump to version 3.1.0. * DiscImageChef.Partitions.csproj: Bump to version 3.1.0.

View File

@@ -58,7 +58,7 @@ namespace DiscImageChef.PartPlugins
public override bool GetInformation(ImagePlugins.ImagePlugin imagePlugin, out List<CommonTypes.Partition> partitions) public override bool GetInformation(ImagePlugins.ImagePlugin imagePlugin, out List<CommonTypes.Partition> partitions)
{ {
byte[] cString; byte[] cString;
bool magic_found; bool magic_found = false;
byte[] entry_sector; byte[] entry_sector;
uint magic; uint magic;
@@ -77,7 +77,7 @@ namespace DiscImageChef.PartPlugins
if(magic == NEXT_MAGIC1 || magic == NEXT_MAGIC2 || magic == NEXT_MAGIC3) if(magic == NEXT_MAGIC1 || magic == NEXT_MAGIC2 || magic == NEXT_MAGIC3)
magic_found = true; magic_found = true;
else else if(imagePlugin.ImageInfo.sectors > 15)
{ {
entry_sector = imagePlugin.ReadSector(15); // Starts on sector 15 on MBR machines entry_sector = imagePlugin.ReadSector(15); // Starts on sector 15 on MBR machines
magic = BigEndianBitConverter.ToUInt32(entry_sector, 0x00); magic = BigEndianBitConverter.ToUInt32(entry_sector, 0x00);
@@ -88,7 +88,7 @@ namespace DiscImageChef.PartPlugins
{ {
if(sector_size == 2048) if(sector_size == 2048)
entry_sector = imagePlugin.ReadSector(4); // Starts on sector 4 on RISC CDs entry_sector = imagePlugin.ReadSector(4); // Starts on sector 4 on RISC CDs
else else if(imagePlugin.ImageInfo.sectors > 16)
entry_sector = imagePlugin.ReadSector(16); // Starts on sector 16 on RISC disks entry_sector = imagePlugin.ReadSector(16); // Starts on sector 16 on RISC disks
magic = BigEndianBitConverter.ToUInt32(entry_sector, 0x00); magic = BigEndianBitConverter.ToUInt32(entry_sector, 0x00);