|
|
|
|
@@ -157,7 +157,7 @@ namespace DiscImageChef.Commands
|
|
|
|
|
if (blocks != 0 && blockSize != 0)
|
|
|
|
|
{
|
|
|
|
|
blocks++;
|
|
|
|
|
DicConsole.WriteLine("Device has {0} blocks of {1} bytes/each. (for a total of {2} bytes)",
|
|
|
|
|
DicConsole.WriteLine("Media has {0} blocks of {1} bytes/each. (for a total of {2} bytes)",
|
|
|
|
|
blocks, blockSize, blocks * (ulong)blockSize);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@@ -270,43 +270,101 @@ namespace DiscImageChef.Commands
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DicConsole.WriteLine("{0}", dskType);
|
|
|
|
|
|
|
|
|
|
sense = dev.ReadTocPmaAtip(out cmdBuf, out senseBuf, false, 0, 0, dev.Timeout, out duration);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.RecognizedFormatLayers, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ TOC/PMA/ATIP: TOC\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Recognized Format Layers\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
DicConsole.WriteLine("TOC:\n{0}", Decoders.CD.TOC.Prettify(cmdBuf));
|
|
|
|
|
doWriteFile(outputPrefix, "_toc.bin", "SCSI READ TOC/PMA/ATIP", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sense = dev.ReadDiscInformation(out cmdBuf, out senseBuf, MmcDiscInformationDataTypes.DiscInformation, dev.Timeout, out duration);
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_formatlayers.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.WriteProtectionStatus, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC INFORMATION 000b\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Write Protection Status\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
DicConsole.WriteLine("Standard Disc Information:\n{0}", Decoders.SCSI.MMC.DiscInformation.Prettify(cmdBuf));
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscinformation_000b.bin", "SCSI READ DISC INFORMATION", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_writeprotection.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
|
|
|
|
|
sense = dev.ReadDiscInformation(out cmdBuf, out senseBuf, MmcDiscInformationDataTypes.TrackResources, dev.Timeout, out duration);
|
|
|
|
|
// More like a drive information
|
|
|
|
|
/*
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.CapabilityList, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC INFORMATION 001b\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Capability List\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
DicConsole.WriteLine("Track Resources Information:\n{0}", Decoders.SCSI.MMC.DiscInformation.Prettify(cmdBuf));
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscinformation_001b.bin", "SCSI READ DISC INFORMATION", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
sense = dev.ReadDiscInformation(out cmdBuf, out senseBuf, MmcDiscInformationDataTypes.POWResources, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC INFORMATION 010b\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
DicConsole.WriteLine("POW Resources Information:\n{0}", Decoders.SCSI.MMC.DiscInformation.Prettify(cmdBuf));
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscinformation_010b.bin", "SCSI READ DISC INFORMATION", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_capabilitylist.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#region All DVD and HD DVD types
|
|
|
|
|
if (dskType == DiskType.DVDDownload || dskType == DiskType.DVDPR ||
|
|
|
|
|
dskType == DiskType.DVDPRDL || dskType == DiskType.DVDPRW ||
|
|
|
|
|
dskType == DiskType.DVDPRWDL || dskType == DiskType.DVDR ||
|
|
|
|
|
dskType == DiskType.DVDRAM || dskType == DiskType.DVDRDL ||
|
|
|
|
|
dskType == DiskType.DVDROM || dskType == DiskType.DVDRW ||
|
|
|
|
|
dskType == DiskType.DVDRWDL || dskType == DiskType.HDDVDR ||
|
|
|
|
|
dskType == DiskType.HDDVDRAM || dskType == DiskType.HDDVDRDL ||
|
|
|
|
|
dskType == DiskType.HDDVDROM || dskType == DiskType.HDDVDRW ||
|
|
|
|
|
dskType == DiskType.HDDVDRWDL)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.PhysicalInformation, 0, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: PFI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_pfi.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DiscManufacturingInformation, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: DMI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_dmi.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion All DVD and HD DVD types
|
|
|
|
|
|
|
|
|
|
#region DVD-ROM
|
|
|
|
|
if (dskType == DiskType.DVDDownload || dskType == DiskType.DVDROM)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.CopyrightInformation, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: CMI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_cmi.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion DVD-ROM
|
|
|
|
|
|
|
|
|
|
#region DVD-ROM and HD DVD-ROM
|
|
|
|
|
if (dskType == DiskType.DVDDownload || dskType == DiskType.DVDROM ||
|
|
|
|
|
dskType == DiskType.HDDVDROM)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.BurstCuttingArea, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: BCA\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_bca.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DVD_AACS, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: DVD AACS\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_aacs.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion DVD-ROM and HD DVD-ROM
|
|
|
|
|
|
|
|
|
|
#region Require drive authentication, won't work
|
|
|
|
|
/*
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DiscKey, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Disc Key\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_disckey.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.SectorCopyrightInformation, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Sector CMI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_sectorcmi.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.MediaIdentifier, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Media ID\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_mediaid.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.MediaKeyBlock, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: MKB\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_mkb.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.AACSVolId, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: AACS Volume ID\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
@@ -337,71 +395,17 @@ namespace DiscImageChef.Commands
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: AACS CPRM MKB\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_aacscprmmkb.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.RecognizedFormatLayers, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Recognized Format Layers\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_formatlayers.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.WriteProtectionStatus, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Write Protection Status\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_writeprotection.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.CapabilityList, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Capability List\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_capabilitylist.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.AACSDataKeys, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: AACS Data Keys\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_aacsdatakeys.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
*/
|
|
|
|
|
#endregion Require drive authentication, won't work
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.PhysicalInformation, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: PFI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_pfi.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.CopyrightInformation, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: CMI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_cmi.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DiscKey, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Disc Key\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_disckey.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.BurstCuttingArea, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: BCA\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_bca.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DiscManufacturingInformation, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: DMI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_dmi.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.SectorCopyrightInformation, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Sector CMI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_sectorcmi.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.MediaIdentifier, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Media ID\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_mediaid.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.MediaKeyBlock, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: MKB\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_mkb.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
#region DVD-RAM and HD DVD-RAM
|
|
|
|
|
if(dskType == DiskType.DVDRAM || dskType == DiskType.HDDVDRAM)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DVDRAM_DDS, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: DDS\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
@@ -422,21 +426,34 @@ namespace DiscImageChef.Commands
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Recording Type\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvdram_type.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion DVD-RAM and HD DVD-RAM
|
|
|
|
|
|
|
|
|
|
#region DVD-R and HD DVD-R
|
|
|
|
|
if(dskType == DiskType.DVDR || dskType == DiskType.HDDVDR)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.LastBorderOutRMD, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Last-Out Border RMD\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_lastrmd.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.SpecifiedRMD, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Specified RMD\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_rmd.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion DVD-R and HD DVD-R
|
|
|
|
|
|
|
|
|
|
#region DVD-R and DVD-RW
|
|
|
|
|
if(dskType == DiskType.DVDR || dskType == DiskType.DVDRW)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.PreRecordedInfo, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Pre-Recorded Info\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_pri.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion DVD-R and DVD-RW
|
|
|
|
|
|
|
|
|
|
#region DVD-R, DVD-RW and HD DVD-R
|
|
|
|
|
if(dskType == DiskType.DVDR || dskType == DiskType.DVDRW || dskType == DiskType.HDDVDR)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DVDR_MediaIdentifier, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: DVD-R Media ID\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
@@ -447,21 +464,41 @@ namespace DiscImageChef.Commands
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: DVD-R PFI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvdr_pfi.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion DVD-R, DVD-RW and HD DVD-R
|
|
|
|
|
|
|
|
|
|
#region All DVD+
|
|
|
|
|
if(dskType == DiskType.DVDPR || dskType == DiskType.DVDPRDL ||
|
|
|
|
|
dskType == DiskType.DVDPRW || dskType == DiskType.DVDPRWDL)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.ADIP, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: ADIP\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_adip.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion All DVD+
|
|
|
|
|
|
|
|
|
|
#region HD DVD-ROM
|
|
|
|
|
if(dskType == DiskType.HDDVDROM)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.HDDVD_CopyrightInformation, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: HDDVD CMI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_hddvd_cmi.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DVD_AACS, 0, dev.Timeout, out duration);
|
|
|
|
|
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DCB, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: DVD AACS\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: DCB\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_aacs.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_dcb.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion HD DVD-ROM
|
|
|
|
|
|
|
|
|
|
#region HD DVD-R
|
|
|
|
|
if(dskType == DiskType.HDDVDR)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.HDDVDR_MediumStatus, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: HDDVD-R Medium Status\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
@@ -472,11 +509,24 @@ namespace DiscImageChef.Commands
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Last RMD\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_hddvdr_lastrmd.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion HD DVD-R
|
|
|
|
|
|
|
|
|
|
#region DVD-R DL, DVD-RW DL, DVD+R DL, DVD+RW DL
|
|
|
|
|
if(dskType == DiskType.DVDPRDL || dskType == DiskType.DVDRDL ||
|
|
|
|
|
dskType == DiskType.DVDRWDL || dskType == DiskType.DVDPRWDL)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DVDR_LayerCapacity, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Layer Capacity\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvdr_layercap.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion DVD-R DL, DVD-RW DL, DVD+R DL, DVD+RW DL
|
|
|
|
|
|
|
|
|
|
#region DVD-R DL
|
|
|
|
|
if(dskType == DiskType.DVDRDL)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.MiddleZoneStart, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Middle Zone Start\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
@@ -497,25 +547,41 @@ namespace DiscImageChef.Commands
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Remap Anchor Point\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_remapanchor.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DCB, 0, dev.Timeout, out duration);
|
|
|
|
|
if(sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: DCB\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_dvd_dcb.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
#endregion DVD-R DL
|
|
|
|
|
|
|
|
|
|
#region All Blu-ray
|
|
|
|
|
if (dskType == DiskType.BDR || dskType == DiskType.BDRE || dskType == DiskType.BDROM ||
|
|
|
|
|
dskType == DiskType.BDRXL || dskType == DiskType.BDREXL)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.BD, 0, 0, MmcDiscStructureFormat.DiscInformation, 0, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: DI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_bd_di.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.BD, 0, 0, MmcDiscStructureFormat.PAC, 0, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: PAC\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_bd_pac.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion All Blu-ray
|
|
|
|
|
|
|
|
|
|
#region BD-ROM only
|
|
|
|
|
if(dskType == DiskType.BDROM)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.BD, 0, 0, MmcDiscStructureFormat.BD_BurstCuttingArea, 0, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: BCA\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_bd_bca.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
#endregion BD-ROM only
|
|
|
|
|
|
|
|
|
|
#region Writable Blu-ray only
|
|
|
|
|
if (dskType == DiskType.BDR || dskType == DiskType.BDRE ||
|
|
|
|
|
dskType == DiskType.BDRXL || dskType == DiskType.BDREXL)
|
|
|
|
|
{
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.BD, 0, 0, MmcDiscStructureFormat.BD_DDS, 0, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: DDS\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
@@ -536,12 +602,92 @@ namespace DiscImageChef.Commands
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Raw DFL\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_bd_dfl.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.BD, 0, 0, MmcDiscStructureFormat.PAC, 0, dev.Timeout, out duration);
|
|
|
|
|
sense = dev.ReadDiscInformation(out cmdBuf, out senseBuf, MmcDiscInformationDataTypes.TrackResources, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: PAC\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC INFORMATION 001b\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscstructure_bd_pac.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
|
|
|
|
{
|
|
|
|
|
DicConsole.WriteLine("Track Resources Information:\n{0}", Decoders.SCSI.MMC.DiscInformation.Prettify(cmdBuf));
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscinformation_001b.bin", "SCSI READ DISC INFORMATION", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
sense = dev.ReadDiscInformation(out cmdBuf, out senseBuf, MmcDiscInformationDataTypes.POWResources, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC INFORMATION 010b\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
DicConsole.WriteLine("POW Resources Information:\n{0}", Decoders.SCSI.MMC.DiscInformation.Prettify(cmdBuf));
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscinformation_010b.bin", "SCSI READ DISC INFORMATION", cmdBuf);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endregion Writable Blu-ray only
|
|
|
|
|
|
|
|
|
|
#region CDs
|
|
|
|
|
if(dskType == DiskType.CD ||
|
|
|
|
|
dskType == DiskType.CDR ||
|
|
|
|
|
dskType == DiskType.CDROM ||
|
|
|
|
|
dskType == DiskType.CDRW ||
|
|
|
|
|
dskType == DiskType.Unknown)
|
|
|
|
|
{
|
|
|
|
|
// We discarded all discs that falsify a TOC before requesting a real TOC
|
|
|
|
|
// No TOC, no CD
|
|
|
|
|
sense = dev.ReadTocPmaAtip(out cmdBuf, out senseBuf, false, 0, 0, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ TOC/PMA/ATIP: TOC\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Decoders.CD.TOC.CDTOC? toc = Decoders.CD.TOC.Decode(cmdBuf);
|
|
|
|
|
DicConsole.WriteLine("TOC:\n{0}", Decoders.CD.TOC.Prettify(toc));
|
|
|
|
|
doWriteFile(outputPrefix, "_toc.bin", "SCSI READ TOC/PMA/ATIP", cmdBuf);
|
|
|
|
|
|
|
|
|
|
// As we have a TOC we know it is a CD
|
|
|
|
|
if(dskType == DiskType.Unknown)
|
|
|
|
|
dskType = DiskType.CD;
|
|
|
|
|
|
|
|
|
|
// Now check if it is a CD-R or CD-RW before everything else
|
|
|
|
|
sense = dev.ReadAtip(out cmdBuf, out senseBuf, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ TOC/PMA/ATIP: ATIP\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
doWriteFile(outputPrefix, "_atip.bin", "SCSI READ TOC/PMA/ATIP", cmdBuf);
|
|
|
|
|
Decoders.CD.ATIP.CDATIP? atip = Decoders.CD.ATIP.Decode(cmdBuf);
|
|
|
|
|
if(atip.HasValue)
|
|
|
|
|
{
|
|
|
|
|
DicConsole.WriteLine("ATIP:\n{0}", Decoders.CD.ATIP.Prettify(atip));
|
|
|
|
|
// Only CD-R and CD-RW have ATIP
|
|
|
|
|
dskType = atip.Value.DiscType ? DiskType.CDRW : DiskType.CDR;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sense = dev.ReadDiscInformation(out cmdBuf, out senseBuf, MmcDiscInformationDataTypes.DiscInformation, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ DISC INFORMATION 000b\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Decoders.SCSI.MMC.DiscInformation.StandardDiscInformation? discInfo = Decoders.SCSI.MMC.DiscInformation.Decode000b(cmdBuf);
|
|
|
|
|
if(discInfo.HasValue)
|
|
|
|
|
{
|
|
|
|
|
DicConsole.WriteLine("Standard Disc Information:\n{0}", Decoders.SCSI.MMC.DiscInformation.Prettify000b(discInfo));
|
|
|
|
|
doWriteFile(outputPrefix, "_readdiscinformation_000b.bin", "SCSI READ DISC INFORMATION", cmdBuf);
|
|
|
|
|
|
|
|
|
|
// If it is a read-only CD, check CD type if available
|
|
|
|
|
if(dskType == DiskType.CD)
|
|
|
|
|
{
|
|
|
|
|
switch(discInfo.Value.DiscType)
|
|
|
|
|
{
|
|
|
|
|
case 0x10:
|
|
|
|
|
dskType = DiskType.CDI;
|
|
|
|
|
break;
|
|
|
|
|
case 0x20:
|
|
|
|
|
dskType = DiskType.CDROMXA;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int sessions = 1;
|
|
|
|
|
int firstTrackLastSession = 0;
|
|
|
|
|
|
|
|
|
|
sense = dev.ReadSessionInfo(out cmdBuf, out senseBuf, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
@@ -549,8 +695,51 @@ namespace DiscImageChef.Commands
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
doWriteFile(outputPrefix, "_session.bin", "SCSI READ TOC/PMA/ATIP", cmdBuf);
|
|
|
|
|
DicConsole.WriteLine("Session information:\n{0}", Decoders.CD.Session.Prettify(cmdBuf));
|
|
|
|
|
Decoders.CD.Session.CDSessionInfo? session = Decoders.CD.Session.Decode(cmdBuf);
|
|
|
|
|
DicConsole.WriteLine("Session information:\n{0}", Decoders.CD.Session.Prettify(session));
|
|
|
|
|
if(session.HasValue)
|
|
|
|
|
{
|
|
|
|
|
sessions = session.Value.LastCompleteSession;
|
|
|
|
|
firstTrackLastSession = session.Value.TrackDescriptors[0].TrackNumber;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(dskType == DiskType.CD)
|
|
|
|
|
{
|
|
|
|
|
bool hasDataTrack = false;
|
|
|
|
|
bool hasAudioTrack = false;
|
|
|
|
|
bool allFirstSessionTracksAreAudio = true;
|
|
|
|
|
|
|
|
|
|
if(toc.HasValue)
|
|
|
|
|
{
|
|
|
|
|
foreach(Decoders.CD.TOC.CDTOCTrackDataDescriptor track in toc.Value.TrackDescriptors)
|
|
|
|
|
{
|
|
|
|
|
if(track.TrackNumber == 1 &&
|
|
|
|
|
((Decoders.CD.TOC_CONTROL)(track.CONTROL & 0x0D) == Decoders.CD.TOC_CONTROL.DataTrack ||
|
|
|
|
|
(Decoders.CD.TOC_CONTROL)(track.CONTROL & 0x0D) == Decoders.CD.TOC_CONTROL.DataTrackIncremental))
|
|
|
|
|
{
|
|
|
|
|
allFirstSessionTracksAreAudio &= firstTrackLastSession != 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if((Decoders.CD.TOC_CONTROL)(track.CONTROL & 0x0D) == Decoders.CD.TOC_CONTROL.DataTrack ||
|
|
|
|
|
(Decoders.CD.TOC_CONTROL)(track.CONTROL & 0x0D) == Decoders.CD.TOC_CONTROL.DataTrackIncremental)
|
|
|
|
|
{
|
|
|
|
|
hasDataTrack = true;
|
|
|
|
|
allFirstSessionTracksAreAudio &= track.TrackNumber >= firstTrackLastSession;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
hasAudioTrack = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(hasDataTrack && hasAudioTrack && allFirstSessionTracksAreAudio && sessions == 2)
|
|
|
|
|
dskType = DiskType.CDPLUS;
|
|
|
|
|
if(!hasDataTrack && hasAudioTrack && sessions == 1)
|
|
|
|
|
dskType = DiskType.CDDA;
|
|
|
|
|
if(hasDataTrack && !hasAudioTrack && sessions == 1)
|
|
|
|
|
dskType = DiskType.CDROM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sense = dev.ReadRawToc(out cmdBuf, out senseBuf, 1, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ TOC/PMA/ATIP: Raw TOC\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
@@ -567,14 +756,6 @@ namespace DiscImageChef.Commands
|
|
|
|
|
doWriteFile(outputPrefix, "_pma.bin", "SCSI READ TOC/PMA/ATIP", cmdBuf);
|
|
|
|
|
DicConsole.WriteLine("PMA:\n{0}", Decoders.CD.PMA.Prettify(cmdBuf));
|
|
|
|
|
}
|
|
|
|
|
sense = dev.ReadAtip(out cmdBuf, out senseBuf, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
DicConsole.ErrorWriteLine("READ TOC/PMA/ATIP: ATIP\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
doWriteFile(outputPrefix, "_atip.bin", "SCSI READ TOC/PMA/ATIP", cmdBuf);
|
|
|
|
|
DicConsole.WriteLine("ATIP:\n{0}", Decoders.CD.ATIP.Prettify(cmdBuf));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sense = dev.ReadCdText(out cmdBuf, out senseBuf, dev.Timeout, out duration);
|
|
|
|
|
if (sense)
|
|
|
|
|
@@ -584,9 +765,13 @@ namespace DiscImageChef.Commands
|
|
|
|
|
doWriteFile(outputPrefix, "_cdtext.bin", "SCSI READ TOC/PMA/ATIP", cmdBuf);
|
|
|
|
|
DicConsole.WriteLine("CD-TEXT on Lead-In:\n{0}", Decoders.CD.CDTextOnLeadIn.Prettify(cmdBuf));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endregion CDs
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DicConsole.WriteLine("Media identified as {0}", dskType);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void doWriteFile(string outputPrefix, string outputSuffix, string whatWriting, byte[] data)
|
|
|
|
|
{
|
|
|
|
|
|