2017-05-31 01:00:58 +01:00
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : XGD.cs
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
2017-05-31 01:00:58 +01:00
|
|
|
|
//
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Component : Core algorithms.
|
2017-05-31 01:00:58 +01:00
|
|
|
|
//
|
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
//
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Dumps Xbox Game Discs.
|
2017-05-31 01:00:58 +01:00
|
|
|
|
//
|
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
|
// it under the terms of the GNU General Public License as
|
|
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
//
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Copyright © 2011-2018 Natalia Portillo
|
2017-05-31 01:00:58 +01:00
|
|
|
|
// ****************************************************************************/
|
2017-12-19 03:50:57 +00:00
|
|
|
|
|
2017-05-31 01:00:58 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.IO;
|
2017-12-19 01:38:11 +00:00
|
|
|
|
using System.Text;
|
2017-12-21 14:30:38 +00:00
|
|
|
|
using System.Xml.Serialization;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
using DiscImageChef.CommonTypes;
|
|
|
|
|
|
using DiscImageChef.Console;
|
|
|
|
|
|
using DiscImageChef.Core.Logging;
|
2017-12-21 14:30:38 +00:00
|
|
|
|
using DiscImageChef.Decoders.DVD;
|
|
|
|
|
|
using DiscImageChef.Decoders.SCSI;
|
|
|
|
|
|
using DiscImageChef.Decoders.Xbox;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
using DiscImageChef.Devices;
|
2017-12-21 14:30:38 +00:00
|
|
|
|
using DiscImageChef.DiscImages;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
using DiscImageChef.Filesystems;
|
|
|
|
|
|
using DiscImageChef.Filters;
|
2017-12-21 14:30:38 +00:00
|
|
|
|
using DiscImageChef.Metadata;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
using Extents;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
using Schemas;
|
2017-12-21 14:30:38 +00:00
|
|
|
|
using MediaType = DiscImageChef.CommonTypes.MediaType;
|
|
|
|
|
|
using TrackType = Schemas.TrackType;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
namespace DiscImageChef.Core.Devices.Dumping
|
|
|
|
|
|
{
|
2017-12-23 01:46:08 +00:00
|
|
|
|
/// <summary>
|
2017-12-23 17:41:23 +00:00
|
|
|
|
/// Implements dumping an Xbox Game Disc using a Kreon drive
|
2017-12-23 01:46:08 +00:00
|
|
|
|
/// </summary>
|
2017-12-20 17:46:47 +00:00
|
|
|
|
static class Xgd
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2017-12-23 01:46:08 +00:00
|
|
|
|
/// <summary>
|
2017-12-23 17:41:23 +00:00
|
|
|
|
/// Dumps an Xbox Game Disc using a Kreon drive
|
2017-12-23 01:46:08 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="dev">Device</param>
|
|
|
|
|
|
/// <param name="devicePath">Path to the device</param>
|
|
|
|
|
|
/// <param name="outputPrefix">Prefix for output data files</param>
|
|
|
|
|
|
/// <param name="retryPasses">How many times to retry</param>
|
|
|
|
|
|
/// <param name="force">Force to continue dump whenever possible</param>
|
|
|
|
|
|
/// <param name="dumpRaw">Dump raw/long sectors</param>
|
|
|
|
|
|
/// <param name="persistent">Store whatever data the drive returned on error</param>
|
|
|
|
|
|
/// <param name="stopOnError">Stop dump on first error</param>
|
|
|
|
|
|
/// <param name="resume">Information for dump resuming</param>
|
|
|
|
|
|
/// <param name="dumpLog">Dump logger</param>
|
|
|
|
|
|
/// <param name="encoding">Encoding to use when analyzing dump</param>
|
|
|
|
|
|
/// <param name="sidecar">Partially filled initialized sidecar</param>
|
|
|
|
|
|
/// <param name="dskType">Disc type as detected in MMC layer</param>
|
2017-12-23 17:41:23 +00:00
|
|
|
|
/// <exception cref="InvalidOperationException">
|
|
|
|
|
|
/// If the provided resume does not correspond with the current in progress
|
|
|
|
|
|
/// dump
|
|
|
|
|
|
/// </exception>
|
2017-12-19 20:33:03 +00:00
|
|
|
|
internal static void Dump(Device dev, string devicePath, string outputPrefix, ushort retryPasses, bool force,
|
|
|
|
|
|
bool dumpRaw, bool persistent, bool stopOnError, ref CICMMetadataType sidecar,
|
2017-12-23 17:41:23 +00:00
|
|
|
|
ref MediaType dskType, ref Resume resume, ref DumpLog dumpLog, Encoding encoding)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2017-12-21 16:07:20 +00:00
|
|
|
|
bool sense;
|
|
|
|
|
|
ulong blocks;
|
2017-12-21 23:00:30 +00:00
|
|
|
|
const uint BLOCK_SIZE = 2048;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
uint blocksToRead = 64;
|
|
|
|
|
|
DateTime start;
|
|
|
|
|
|
DateTime end;
|
|
|
|
|
|
double totalDuration = 0;
|
|
|
|
|
|
double totalChkDuration = 0;
|
|
|
|
|
|
double currentSpeed = 0;
|
|
|
|
|
|
double maxSpeed = double.MinValue;
|
|
|
|
|
|
double minSpeed = double.MaxValue;
|
|
|
|
|
|
bool aborted = false;
|
2017-12-21 17:37:14 +00:00
|
|
|
|
System.Console.CancelKeyPress += (sender, e) => e.Cancel = aborted = true;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Reading Xbox Security Sector.");
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.KreonExtractSs(out byte[] ssBuf, out byte[] senseBuf, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot get Xbox Security Sector, not continuing.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot get Xbox Security Sector, not continuing.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Decoding Xbox Security Sector.");
|
2017-12-21 14:30:38 +00:00
|
|
|
|
SS.SecuritySector? xboxSs = SS.Decode(ssBuf);
|
2017-12-20 17:15:26 +00:00
|
|
|
|
if(!xboxSs.HasValue)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot decode Xbox Security Sector, not continuing.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot decode Xbox Security Sector, not continuing.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-06-20 06:42:09 +01:00
|
|
|
|
byte[] tmpBuf = new byte[ssBuf.Length - 4];
|
|
|
|
|
|
Array.Copy(ssBuf, 4, tmpBuf, 0, ssBuf.Length - 4);
|
2017-12-21 03:18:10 +00:00
|
|
|
|
sidecar.OpticalDisc[0].Xbox = new XboxType
|
2017-06-20 06:42:09 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
SecuritySectors = new[]
|
2017-12-19 20:33:03 +00:00
|
|
|
|
{
|
2017-12-21 03:18:10 +00:00
|
|
|
|
new XboxSecuritySectorsType
|
2017-12-19 20:33:03 +00:00
|
|
|
|
{
|
|
|
|
|
|
RequestNumber = 0,
|
|
|
|
|
|
RequestVersion = 1,
|
2017-12-21 03:18:10 +00:00
|
|
|
|
SecuritySectors = new DumpType
|
2017-12-19 20:33:03 +00:00
|
|
|
|
{
|
|
|
|
|
|
Image = outputPrefix + ".ss.bin",
|
|
|
|
|
|
Size = tmpBuf.Length,
|
|
|
|
|
|
Checksums = Checksum.GetChecksums(tmpBuf).ToArray()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-06-20 06:42:09 +01:00
|
|
|
|
};
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DataFile.WriteTo("SCSI Dump", outputPrefix + ".ss.bin", ssBuf);
|
|
|
|
|
|
|
|
|
|
|
|
ulong l0Video, l1Video, middleZone, gameSize, totalSize, layerBreak;
|
|
|
|
|
|
|
|
|
|
|
|
// Get video partition size
|
|
|
|
|
|
DicConsole.DebugWriteLine("Dump-media command", "Getting video partition size");
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Locking drive.");
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.KreonLock(out senseBuf, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot lock drive, not continuing.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot lock drive, not continuing.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Getting video partition size.");
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.ReadCapacity(out byte[] readBuffer, out senseBuf, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot get disc capacity.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot get disc capacity.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-12-20 17:26:28 +00:00
|
|
|
|
totalSize = (ulong)((readBuffer[0] << 24) + (readBuffer[1] << 16) + (readBuffer[2] << 8) + readBuffer[3]);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Reading Physical Format Information.");
|
2017-12-20 17:15:26 +00:00
|
|
|
|
sense = dev.ReadDiscStructure(out readBuffer, out senseBuf, MmcDiscStructureMediaType.Dvd, 0, 0,
|
2017-12-21 23:00:30 +00:00
|
|
|
|
MmcDiscStructureFormat.PhysicalInformation, 0, 0, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot get PFI.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot get PFI.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-06-20 06:42:09 +01:00
|
|
|
|
tmpBuf = new byte[readBuffer.Length - 4];
|
|
|
|
|
|
Array.Copy(readBuffer, 4, tmpBuf, 0, readBuffer.Length - 4);
|
|
|
|
|
|
sidecar.OpticalDisc[0].PFI = new DumpType
|
|
|
|
|
|
{
|
|
|
|
|
|
Image = outputPrefix + ".pfi.bin",
|
|
|
|
|
|
Size = tmpBuf.Length,
|
|
|
|
|
|
Checksums = Checksum.GetChecksums(tmpBuf).ToArray()
|
|
|
|
|
|
};
|
|
|
|
|
|
DataFile.WriteTo("SCSI Dump", sidecar.OpticalDisc[0].PFI.Image, tmpBuf, "Locked PFI", true);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.DebugWriteLine("Dump-media command", "Video partition total size: {0} sectors", totalSize);
|
2017-12-23 17:41:23 +00:00
|
|
|
|
l0Video = PFI.Decode(readBuffer).Value.Layer0EndPSN - PFI.Decode(readBuffer).Value.DataAreaStartPSN + 1;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
l1Video = totalSize - l0Video + 1;
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Reading Disc Manufacturing Information.");
|
2017-12-20 17:15:26 +00:00
|
|
|
|
sense = dev.ReadDiscStructure(out readBuffer, out senseBuf, MmcDiscStructureMediaType.Dvd, 0, 0,
|
2017-12-21 23:00:30 +00:00
|
|
|
|
MmcDiscStructureFormat.DiscManufacturingInformation, 0, 0, out _);
|
2017-06-20 06:42:09 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot get DMI.");
|
2017-06-20 06:42:09 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot get DMI.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-06-20 06:42:09 +01:00
|
|
|
|
tmpBuf = new byte[readBuffer.Length - 4];
|
|
|
|
|
|
Array.Copy(readBuffer, 4, tmpBuf, 0, readBuffer.Length - 4);
|
|
|
|
|
|
sidecar.OpticalDisc[0].DMI = new DumpType
|
|
|
|
|
|
{
|
|
|
|
|
|
Image = outputPrefix + ".dmi.bin",
|
|
|
|
|
|
Size = tmpBuf.Length,
|
|
|
|
|
|
Checksums = Checksum.GetChecksums(tmpBuf).ToArray()
|
|
|
|
|
|
};
|
|
|
|
|
|
DataFile.WriteTo("SCSI Dump", sidecar.OpticalDisc[0].DMI.Image, tmpBuf, "Locked DMI", true);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
// Get game partition size
|
|
|
|
|
|
DicConsole.DebugWriteLine("Dump-media command", "Getting game partition size");
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Unlocking drive (Xtreme).");
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.KreonUnlockXtreme(out senseBuf, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot unlock drive, not continuing.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot unlock drive, not continuing.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Getting game partition size.");
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.ReadCapacity(out readBuffer, out senseBuf, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot get disc capacity.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot get disc capacity.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-12-20 17:26:28 +00:00
|
|
|
|
gameSize = (ulong)((readBuffer[0] << 24) + (readBuffer[1] << 16) + (readBuffer[2] << 8) + readBuffer[3]) +
|
2017-12-19 20:33:03 +00:00
|
|
|
|
1;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.DebugWriteLine("Dump-media command", "Game partition total size: {0} sectors", gameSize);
|
|
|
|
|
|
|
|
|
|
|
|
// Get middle zone size
|
|
|
|
|
|
DicConsole.DebugWriteLine("Dump-media command", "Getting middle zone size");
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Unlocking drive (Wxripper).");
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.KreonUnlockWxripper(out senseBuf, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot unlock drive, not continuing.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot unlock drive, not continuing.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Getting disc size.");
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.ReadCapacity(out readBuffer, out senseBuf, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot get disc capacity.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot get disc capacity.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-12-20 17:26:28 +00:00
|
|
|
|
totalSize = (ulong)((readBuffer[0] << 24) + (readBuffer[1] << 16) + (readBuffer[2] << 8) + readBuffer[3]);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Reading Physical Format Information.");
|
2017-12-20 17:15:26 +00:00
|
|
|
|
sense = dev.ReadDiscStructure(out readBuffer, out senseBuf, MmcDiscStructureMediaType.Dvd, 0, 0,
|
2017-12-21 23:00:30 +00:00
|
|
|
|
MmcDiscStructureFormat.PhysicalInformation, 0, 0, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot get PFI.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot get PFI.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.DebugWriteLine("Dump-media command", "Unlocked total size: {0} sectors", totalSize);
|
|
|
|
|
|
blocks = totalSize + 1;
|
2017-12-23 17:41:23 +00:00
|
|
|
|
middleZone =
|
|
|
|
|
|
totalSize - (PFI.Decode(readBuffer).Value.Layer0EndPSN - PFI.Decode(readBuffer).Value.DataAreaStartPSN +
|
|
|
|
|
|
1) - gameSize + 1;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-06-20 06:42:09 +01:00
|
|
|
|
tmpBuf = new byte[readBuffer.Length - 4];
|
|
|
|
|
|
Array.Copy(readBuffer, 4, tmpBuf, 0, readBuffer.Length - 4);
|
|
|
|
|
|
sidecar.OpticalDisc[0].Xbox.PFI = new DumpType
|
|
|
|
|
|
{
|
|
|
|
|
|
Image = outputPrefix + ".xboxpfi.bin",
|
|
|
|
|
|
Size = tmpBuf.Length,
|
|
|
|
|
|
Checksums = Checksum.GetChecksums(tmpBuf).ToArray()
|
|
|
|
|
|
};
|
|
|
|
|
|
DataFile.WriteTo("SCSI Dump", sidecar.OpticalDisc[0].Xbox.PFI.Image, tmpBuf, "Unlocked PFI", true);
|
|
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Reading Disc Manufacturing Information.");
|
2017-12-20 17:15:26 +00:00
|
|
|
|
sense = dev.ReadDiscStructure(out readBuffer, out senseBuf, MmcDiscStructureMediaType.Dvd, 0, 0,
|
2017-12-21 23:00:30 +00:00
|
|
|
|
MmcDiscStructureFormat.DiscManufacturingInformation, 0, 0, out _);
|
2017-06-20 06:42:09 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot get DMI.");
|
2017-06-20 06:42:09 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot get DMI.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-06-20 06:42:09 +01:00
|
|
|
|
tmpBuf = new byte[readBuffer.Length - 4];
|
|
|
|
|
|
Array.Copy(readBuffer, 4, tmpBuf, 0, readBuffer.Length - 4);
|
|
|
|
|
|
sidecar.OpticalDisc[0].Xbox.DMI = new DumpType
|
|
|
|
|
|
{
|
|
|
|
|
|
Image = outputPrefix + ".xboxdmi.bin",
|
|
|
|
|
|
Size = tmpBuf.Length,
|
|
|
|
|
|
Checksums = Checksum.GetChecksums(tmpBuf).ToArray()
|
|
|
|
|
|
};
|
|
|
|
|
|
DataFile.WriteTo("SCSI Dump", sidecar.OpticalDisc[0].Xbox.DMI.Image, tmpBuf, "Unlocked DMI", true);
|
|
|
|
|
|
|
2017-05-31 01:00:58 +01:00
|
|
|
|
totalSize = l0Video + l1Video + middleZone * 2 + gameSize;
|
|
|
|
|
|
layerBreak = l0Video + middleZone + gameSize / 2;
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.WriteLine("Video layer 0 size: {0} sectors", l0Video);
|
|
|
|
|
|
DicConsole.WriteLine("Video layer 1 size: {0} sectors", l1Video);
|
|
|
|
|
|
DicConsole.WriteLine("Middle zone size: {0} sectors", middleZone);
|
|
|
|
|
|
DicConsole.WriteLine("Game data size: {0} sectors", gameSize);
|
|
|
|
|
|
DicConsole.WriteLine("Total size: {0} sectors", totalSize);
|
|
|
|
|
|
DicConsole.WriteLine("Real layer break: {0}", layerBreak);
|
|
|
|
|
|
DicConsole.WriteLine();
|
|
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Video layer 0 size: {0} sectors", l0Video);
|
|
|
|
|
|
dumpLog.WriteLine("Video layer 1 size: {0} sectors", l1Video);
|
|
|
|
|
|
dumpLog.WriteLine("Middle zone 0 size: {0} sectors", middleZone);
|
|
|
|
|
|
dumpLog.WriteLine("Game data 0 size: {0} sectors", gameSize);
|
|
|
|
|
|
dumpLog.WriteLine("Total 0 size: {0} sectors", totalSize);
|
|
|
|
|
|
dumpLog.WriteLine("Real layer break: {0}", layerBreak);
|
|
|
|
|
|
|
2017-12-21 23:00:30 +00:00
|
|
|
|
bool read12 = !dev.Read12(out readBuffer, out senseBuf, 0, false, true, false, false, 0, BLOCK_SIZE, 0, 1,
|
|
|
|
|
|
false, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(!read12)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot read medium, aborting scan...");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot read medium, aborting scan...");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Using SCSI READ (12) command.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.WriteLine("Using SCSI READ (12) command.");
|
|
|
|
|
|
|
|
|
|
|
|
while(true)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(read12)
|
|
|
|
|
|
{
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.Read12(out readBuffer, out senseBuf, 0, false, false, false, false, 0, BLOCK_SIZE, 0,
|
|
|
|
|
|
blocksToRead, false, dev.Timeout, out _);
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(sense || dev.Error) blocksToRead /= 2;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(!dev.Error || blocksToRead == 1) break;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(dev.Error)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Device error {0} trying to guess ideal transfer length.", dev.LastError);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Device error {0} trying to guess ideal transfer length.", dev.LastError);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Reading {0} sectors at a time.", blocksToRead);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.WriteLine("Reading {0} sectors at a time.", blocksToRead);
|
|
|
|
|
|
|
2017-12-21 23:00:30 +00:00
|
|
|
|
MhddLog mhddLog = new MhddLog(outputPrefix + ".mhddlog.bin", dev, blocks, BLOCK_SIZE, blocksToRead);
|
|
|
|
|
|
IbgLog ibgLog = new IbgLog(outputPrefix + ".ibg", 0x0010);
|
|
|
|
|
|
DataFile dumpFile = new DataFile(outputPrefix + ".iso");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
start = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
|
|
double cmdDuration = 0;
|
|
|
|
|
|
uint saveBlocksToRead = blocksToRead;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
DumpHardwareType currentTry = null;
|
|
|
|
|
|
ExtentsULong extents = null;
|
2017-12-20 17:15:26 +00:00
|
|
|
|
ResumeSupport.Process(true, true, totalSize, dev.Manufacturer, dev.Model, dev.Serial, dev.PlatformId,
|
2017-12-19 20:33:03 +00:00
|
|
|
|
ref resume, ref currentTry, ref extents);
|
2017-06-20 05:48:09 +01:00
|
|
|
|
if(currentTry == null || extents == null)
|
2017-12-23 01:46:08 +00:00
|
|
|
|
throw new NotImplementedException("Could not process resume file, not continuing...");
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-06-20 05:48:09 +01:00
|
|
|
|
ulong currentSector = resume.NextBlock;
|
2017-12-21 23:00:30 +00:00
|
|
|
|
dumpFile.Seek(resume.NextBlock, BLOCK_SIZE);
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(resume.NextBlock > 0) dumpLog.WriteLine("Resuming from block {0}.", resume.NextBlock);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Reading game partition.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
for(int e = 0; e <= 16; e++)
|
|
|
|
|
|
{
|
2017-06-20 05:48:09 +01:00
|
|
|
|
if(aborted)
|
|
|
|
|
|
{
|
|
|
|
|
|
resume.NextBlock = currentSector;
|
2017-12-21 14:30:38 +00:00
|
|
|
|
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Aborted!");
|
2017-06-20 05:48:09 +01:00
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(currentSector >= blocks) break;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
|
2017-05-31 01:00:58 +01:00
|
|
|
|
ulong extentStart, extentEnd;
|
|
|
|
|
|
// Extents
|
|
|
|
|
|
if(e < 16)
|
|
|
|
|
|
{
|
2017-12-20 17:15:26 +00:00
|
|
|
|
if(xboxSs.Value.Extents[e].StartPSN <= xboxSs.Value.Layer0EndPSN)
|
|
|
|
|
|
extentStart = xboxSs.Value.Extents[e].StartPSN - 0x30000;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
else
|
2017-12-20 17:15:26 +00:00
|
|
|
|
extentStart = (xboxSs.Value.Layer0EndPSN + 1) * 2 -
|
|
|
|
|
|
((xboxSs.Value.Extents[e].StartPSN ^ 0xFFFFFF) + 1) - 0x30000;
|
|
|
|
|
|
if(xboxSs.Value.Extents[e].EndPSN <= xboxSs.Value.Layer0EndPSN)
|
|
|
|
|
|
extentEnd = xboxSs.Value.Extents[e].EndPSN - 0x30000;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
else
|
2017-12-20 17:15:26 +00:00
|
|
|
|
extentEnd = (xboxSs.Value.Layer0EndPSN + 1) * 2 -
|
|
|
|
|
|
((xboxSs.Value.Extents[e].EndPSN ^ 0xFFFFFF) + 1) - 0x30000;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
// After last extent
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
extentStart = blocks;
|
|
|
|
|
|
extentEnd = blocks;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(currentSector > extentEnd) continue;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
|
2017-05-31 01:00:58 +01:00
|
|
|
|
for(ulong i = currentSector; i < extentStart; i += blocksToRead)
|
|
|
|
|
|
{
|
|
|
|
|
|
saveBlocksToRead = blocksToRead;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(aborted)
|
2017-06-20 05:48:09 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Aborted!");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
break;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
}
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-20 17:26:28 +00:00
|
|
|
|
if(extentStart - i < blocksToRead) blocksToRead = (uint)(extentStart - i);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
#pragma warning disable RECS0018 // Comparison of floating point numbers with equality operator
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(currentSpeed > maxSpeed && currentSpeed != 0) maxSpeed = currentSpeed;
|
|
|
|
|
|
if(currentSpeed < minSpeed && currentSpeed != 0) minSpeed = currentSpeed;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
#pragma warning restore RECS0018 // Comparison of floating point numbers with equality operator
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.Write("\rReading sector {0} of {1} ({2:F3} MiB/sec.)", i, totalSize, currentSpeed);
|
|
|
|
|
|
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.Read12(out readBuffer, out senseBuf, 0, false, false, false, false, (uint)i, BLOCK_SIZE,
|
2017-12-19 20:33:03 +00:00
|
|
|
|
0, blocksToRead, false, dev.Timeout, out cmdDuration);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
totalDuration += cmdDuration;
|
|
|
|
|
|
|
|
|
|
|
|
if(!sense && !dev.Error)
|
|
|
|
|
|
{
|
|
|
|
|
|
mhddLog.Write(i, cmdDuration);
|
|
|
|
|
|
ibgLog.Write(i, currentSpeed * 1024);
|
|
|
|
|
|
dumpFile.Write(readBuffer);
|
2017-06-20 05:48:09 +01:00
|
|
|
|
extents.Add(i, blocksToRead, true);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
// TODO: Reset device after X errors
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(stopOnError) return; // TODO: Return more cleanly
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
// Write empty data
|
2017-12-21 23:00:30 +00:00
|
|
|
|
dumpFile.Write(new byte[BLOCK_SIZE * blocksToRead]);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
for(ulong b = i; b < i + blocksToRead; b++) resume.BadBlocks.Add(b);
|
|
|
|
|
|
|
2017-12-23 17:41:23 +00:00
|
|
|
|
DicConsole.DebugWriteLine("Dump-Media", "READ error:\n{0}", Sense.PrettifySense(senseBuf));
|
2017-12-21 23:00:30 +00:00
|
|
|
|
mhddLog.Write(i, cmdDuration < 500 ? 65535 : cmdDuration);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
ibgLog.Write(i, 0);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
|
|
|
|
|
|
dumpLog.WriteLine("Error reading {0} blocks from block {1}.", blocksToRead, i);
|
2017-12-21 14:30:38 +00:00
|
|
|
|
string[] senseLines = Sense.PrettifySense(senseBuf).Split(new[] {Environment.NewLine},
|
2017-12-23 17:41:23 +00:00
|
|
|
|
StringSplitOptions
|
|
|
|
|
|
.RemoveEmptyEntries);
|
2017-12-19 20:33:03 +00:00
|
|
|
|
foreach(string senseLine in senseLines) dumpLog.WriteLine(senseLine);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-22 22:02:10 +00:00
|
|
|
|
double newSpeed = (double)BLOCK_SIZE * blocksToRead / 1048576 / (cmdDuration / 1000);
|
|
|
|
|
|
if(!double.IsInfinity(newSpeed)) currentSpeed = newSpeed;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
blocksToRead = saveBlocksToRead;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
currentSector = i + 1;
|
|
|
|
|
|
resume.NextBlock = currentSector;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for(ulong i = extentStart; i <= extentEnd; i += blocksToRead)
|
|
|
|
|
|
{
|
|
|
|
|
|
saveBlocksToRead = blocksToRead;
|
|
|
|
|
|
if(aborted)
|
2017-06-20 05:48:09 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Aborted!");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
break;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
}
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-20 17:26:28 +00:00
|
|
|
|
if(extentEnd - i < blocksToRead) blocksToRead = (uint)(extentEnd - i) + 1;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
mhddLog.Write(i, cmdDuration);
|
|
|
|
|
|
ibgLog.Write(i, currentSpeed * 1024);
|
|
|
|
|
|
dumpFile.Write(new byte[blocksToRead * 2048]);
|
|
|
|
|
|
blocksToRead = saveBlocksToRead;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
extents.Add(i, blocksToRead, true);
|
|
|
|
|
|
currentSector = i + 1;
|
|
|
|
|
|
resume.NextBlock = currentSector;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(!aborted) currentSector = extentEnd + 1;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Middle Zone D
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Writing Middle Zone D (empty).");
|
2017-12-20 17:26:28 +00:00
|
|
|
|
for(ulong middle = currentSector - blocks - 1; middle < middleZone - 1; middle += blocksToRead)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
|
|
|
|
|
if(aborted)
|
2017-06-20 05:48:09 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Aborted!");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
break;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
}
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-20 17:26:28 +00:00
|
|
|
|
if(middleZone - 1 - middle < blocksToRead) blocksToRead = (uint)(middleZone - 1 - middle);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
DicConsole.Write("\rReading sector {0} of {1} ({2:F3} MiB/sec.)", middle + currentSector, totalSize,
|
|
|
|
|
|
currentSpeed);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
mhddLog.Write(middle + currentSector, cmdDuration);
|
|
|
|
|
|
ibgLog.Write(middle + currentSector, currentSpeed * 1024);
|
2017-12-21 23:00:30 +00:00
|
|
|
|
dumpFile.Write(new byte[BLOCK_SIZE * blocksToRead]);
|
2017-06-20 05:48:09 +01:00
|
|
|
|
extents.Add(currentSector, blocksToRead, true);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
currentSector += blocksToRead;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
resume.NextBlock = currentSector;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
blocksToRead = saveBlocksToRead;
|
|
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Locking drive.");
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.KreonLock(out senseBuf, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot lock drive, not continuing.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot lock drive, not continuing.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.ReadCapacity(out readBuffer, out senseBuf, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
|
|
|
|
|
DicConsole.ErrorWriteLine("Cannot get disc capacity.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Video Layer 1
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Reading Video Layer 1.");
|
2017-12-20 17:26:28 +00:00
|
|
|
|
for(ulong l1 = currentSector - blocks - middleZone + l0Video; l1 < l0Video + l1Video; l1 += blocksToRead)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
|
|
|
|
|
if(aborted)
|
2017-06-20 05:48:09 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Aborted!");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
break;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
}
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-20 17:26:28 +00:00
|
|
|
|
if(l0Video + l1Video - l1 < blocksToRead) blocksToRead = (uint)(l0Video + l1Video - l1);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
#pragma warning disable RECS0018 // Comparison of floating point numbers with equality operator
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(currentSpeed > maxSpeed && currentSpeed != 0) maxSpeed = currentSpeed;
|
|
|
|
|
|
if(currentSpeed < minSpeed && currentSpeed != 0) minSpeed = currentSpeed;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
#pragma warning restore RECS0018 // Comparison of floating point numbers with equality operator
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
DicConsole.Write("\rReading sector {0} of {1} ({2:F3} MiB/sec.)", currentSector, totalSize,
|
|
|
|
|
|
currentSpeed);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.Read12(out readBuffer, out senseBuf, 0, false, false, false, false, (uint)l1, BLOCK_SIZE, 0,
|
2017-12-19 20:33:03 +00:00
|
|
|
|
blocksToRead, false, dev.Timeout, out cmdDuration);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
totalDuration += cmdDuration;
|
|
|
|
|
|
|
|
|
|
|
|
if(!sense && !dev.Error)
|
|
|
|
|
|
{
|
|
|
|
|
|
mhddLog.Write(currentSector, cmdDuration);
|
|
|
|
|
|
ibgLog.Write(currentSector, currentSpeed * 1024);
|
|
|
|
|
|
dumpFile.Write(readBuffer);
|
2017-06-20 05:48:09 +01:00
|
|
|
|
extents.Add(currentSector, blocksToRead, true);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
// TODO: Reset device after X errors
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(stopOnError) return; // TODO: Return more cleanly
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
// Write empty data
|
2017-12-21 23:00:30 +00:00
|
|
|
|
dumpFile.Write(new byte[BLOCK_SIZE * blocksToRead]);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
// TODO: Handle errors in video partition
|
|
|
|
|
|
//errored += blocksToRead;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
//resume.BadBlocks.Add(l1);
|
2017-12-23 17:41:23 +00:00
|
|
|
|
DicConsole.DebugWriteLine("Dump-Media", "READ error:\n{0}", Sense.PrettifySense(senseBuf));
|
2017-12-21 23:00:30 +00:00
|
|
|
|
mhddLog.Write(l1, cmdDuration < 500 ? 65535 : cmdDuration);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
ibgLog.Write(l1, 0);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Error reading {0} blocks from block {1}.", blocksToRead, l1);
|
2017-12-21 14:30:38 +00:00
|
|
|
|
string[] senseLines = Sense.PrettifySense(senseBuf).Split(new[] {Environment.NewLine},
|
2017-12-23 17:41:23 +00:00
|
|
|
|
StringSplitOptions.RemoveEmptyEntries);
|
2017-12-19 20:33:03 +00:00
|
|
|
|
foreach(string senseLine in senseLines) dumpLog.WriteLine(senseLine);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-22 22:02:10 +00:00
|
|
|
|
double newSpeed = (double)BLOCK_SIZE * blocksToRead / 1048576 / (cmdDuration / 1000);
|
|
|
|
|
|
if(!double.IsInfinity(newSpeed)) currentSpeed = newSpeed;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
currentSector += blocksToRead;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
resume.NextBlock = currentSector;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Unlocking drive (Wxripper).");
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.KreonUnlockWxripper(out senseBuf, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Cannot unlock drive, not continuing.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Cannot unlock drive, not continuing.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.ReadCapacity(out readBuffer, out senseBuf, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
|
|
|
|
|
DicConsole.ErrorWriteLine("Cannot get disc capacity.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
end = DateTime.UtcNow;
|
|
|
|
|
|
DicConsole.WriteLine();
|
|
|
|
|
|
mhddLog.Close();
|
2017-12-21 23:00:30 +00:00
|
|
|
|
ibgLog.Close(dev, blocks, BLOCK_SIZE, (end - start).TotalSeconds, currentSpeed * 1024,
|
|
|
|
|
|
BLOCK_SIZE * (double)(blocks + 1) / 1024 / (totalDuration / 1000), devicePath);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Dump finished in {0} seconds.", (end - start).TotalSeconds);
|
2017-12-19 20:33:03 +00:00
|
|
|
|
dumpLog.WriteLine("Average dump speed {0:F3} KiB/sec.",
|
2017-12-21 23:00:30 +00:00
|
|
|
|
(double)BLOCK_SIZE * (double)(blocks + 1) / 1024 / (totalDuration / 1000));
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
#region Error handling
|
2017-06-20 05:48:09 +01:00
|
|
|
|
if(resume.BadBlocks.Count > 0 && !aborted)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
|
|
|
|
|
List<ulong> tmpList = new List<ulong>();
|
|
|
|
|
|
|
2017-12-20 23:07:46 +00:00
|
|
|
|
foreach(ulong ur in resume.BadBlocks) for(ulong i = ur; i < ur + blocksToRead; i++) tmpList.Add(i);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
tmpList.Sort();
|
|
|
|
|
|
|
|
|
|
|
|
int pass = 0;
|
|
|
|
|
|
bool forward = true;
|
|
|
|
|
|
bool runningPersistent = false;
|
|
|
|
|
|
|
2017-06-20 05:48:09 +01:00
|
|
|
|
resume.BadBlocks = tmpList;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
repeatRetry:
|
2017-06-20 05:48:09 +01:00
|
|
|
|
ulong[] tmpArray = resume.BadBlocks.ToArray();
|
2017-05-31 01:00:58 +01:00
|
|
|
|
foreach(ulong badSector in tmpArray)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(aborted)
|
2017-06-20 05:48:09 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Aborted!");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
break;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
}
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
DicConsole.Write("\rRetrying sector {0}, pass {1}, {3}{2}", badSector, pass + 1,
|
|
|
|
|
|
forward ? "forward" : "reverse",
|
|
|
|
|
|
runningPersistent ? "recovering partial data, " : "");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
sense = dev.Read12(out readBuffer, out senseBuf, 0, false, false, false, false, (uint)badSector,
|
2017-12-21 23:00:30 +00:00
|
|
|
|
BLOCK_SIZE, 0, 1, false, dev.Timeout, out cmdDuration);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
totalDuration += cmdDuration;
|
|
|
|
|
|
|
|
|
|
|
|
if(!sense && !dev.Error)
|
|
|
|
|
|
{
|
2017-06-20 05:48:09 +01:00
|
|
|
|
resume.BadBlocks.Remove(badSector);
|
|
|
|
|
|
extents.Add(badSector);
|
2017-12-21 23:00:30 +00:00
|
|
|
|
dumpFile.WriteAt(readBuffer, badSector, BLOCK_SIZE);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Correctly retried block {0} in pass {1}.", badSector, pass);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
2017-12-21 23:00:30 +00:00
|
|
|
|
else if(runningPersistent) dumpFile.WriteAt(readBuffer, badSector, BLOCK_SIZE);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-06-20 05:48:09 +01:00
|
|
|
|
if(pass < retryPasses && !aborted && resume.BadBlocks.Count > 0)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
|
|
|
|
|
pass++;
|
|
|
|
|
|
forward = !forward;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
resume.BadBlocks.Sort();
|
|
|
|
|
|
resume.BadBlocks.Reverse();
|
2017-05-31 01:00:58 +01:00
|
|
|
|
goto repeatRetry;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-21 14:30:38 +00:00
|
|
|
|
Modes.ModePage? currentModePage = null;
|
2017-12-21 16:07:20 +00:00
|
|
|
|
byte[] md6;
|
|
|
|
|
|
byte[] md10;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
if(!runningPersistent && persistent)
|
|
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
if(dev.ScsiType == PeripheralDeviceTypes.MultiMediaDevice)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
Modes.ModePage_01_MMC pgMmc =
|
2017-12-23 17:41:23 +00:00
|
|
|
|
new Modes.ModePage_01_MMC {PS = false, ReadRetryCount = 255, Parameter = 0x20};
|
2017-12-21 14:30:38 +00:00
|
|
|
|
Modes.DecodedMode md = new Modes.DecodedMode
|
2017-06-08 21:12:05 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
Header = new Modes.ModeHeader(),
|
|
|
|
|
|
Pages = new[]
|
2017-06-08 21:12:05 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
new Modes.ModePage
|
2017-06-08 21:12:05 +01:00
|
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
|
Page = 0x01,
|
|
|
|
|
|
Subpage = 0x00,
|
2017-12-21 14:30:38 +00:00
|
|
|
|
PageResponse = Modes.EncodeModePage_01_MMC(pgMmc)
|
2017-12-19 20:33:03 +00:00
|
|
|
|
}
|
2017-06-08 21:12:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
};
|
2017-12-21 14:30:38 +00:00
|
|
|
|
md6 = Modes.EncodeMode6(md, dev.ScsiType);
|
|
|
|
|
|
md10 = Modes.EncodeMode10(md, dev.ScsiType);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
Modes.ModePage_01 pg = new Modes.ModePage_01
|
2017-06-08 21:12:05 +01:00
|
|
|
|
{
|
|
|
|
|
|
PS = false,
|
|
|
|
|
|
AWRE = false,
|
|
|
|
|
|
ARRE = false,
|
|
|
|
|
|
TB = true,
|
|
|
|
|
|
RC = false,
|
|
|
|
|
|
EER = true,
|
|
|
|
|
|
PER = false,
|
|
|
|
|
|
DTE = false,
|
|
|
|
|
|
DCR = false,
|
|
|
|
|
|
ReadRetryCount = 255
|
|
|
|
|
|
};
|
2017-12-21 14:30:38 +00:00
|
|
|
|
Modes.DecodedMode md = new Modes.DecodedMode
|
2017-06-08 21:12:05 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
Header = new Modes.ModeHeader(),
|
|
|
|
|
|
Pages = new[]
|
2017-06-08 21:12:05 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
new Modes.ModePage
|
2017-12-19 20:33:03 +00:00
|
|
|
|
{
|
|
|
|
|
|
Page = 0x01,
|
|
|
|
|
|
Subpage = 0x00,
|
2017-12-21 14:30:38 +00:00
|
|
|
|
PageResponse = Modes.EncodeModePage_01(pg)
|
2017-12-19 20:33:03 +00:00
|
|
|
|
}
|
2017-06-08 21:12:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
};
|
2017-12-21 14:30:38 +00:00
|
|
|
|
md6 = Modes.EncodeMode6(md, dev.ScsiType);
|
|
|
|
|
|
md10 = Modes.EncodeMode10(md, dev.ScsiType);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Sending MODE SELECT to drive.");
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.ModeSelect(md6, out senseBuf, true, false, dev.Timeout, out _);
|
|
|
|
|
|
if(sense) sense = dev.ModeSelect10(md10, out senseBuf, true, false, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
runningPersistent = true;
|
|
|
|
|
|
if(!sense && !dev.Error)
|
|
|
|
|
|
{
|
|
|
|
|
|
pass--;
|
|
|
|
|
|
goto repeatRetry;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else if(runningPersistent && persistent && currentModePage.HasValue)
|
|
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
Modes.DecodedMode md = new Modes.DecodedMode
|
2017-06-08 21:12:05 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
Header = new Modes.ModeHeader(),
|
|
|
|
|
|
Pages = new[] {currentModePage.Value}
|
2017-06-08 21:12:05 +01:00
|
|
|
|
};
|
2017-12-21 14:30:38 +00:00
|
|
|
|
md6 = Modes.EncodeMode6(md, dev.ScsiType);
|
|
|
|
|
|
md10 = Modes.EncodeMode10(md, dev.ScsiType);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Sending MODE SELECT to drive.");
|
2017-12-21 23:00:30 +00:00
|
|
|
|
sense = dev.ModeSelect(md6, out senseBuf, true, false, dev.Timeout, out _);
|
|
|
|
|
|
if(sense) dev.ModeSelect10(md10, out senseBuf, true, false, dev.Timeout, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.WriteLine();
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion Error handling
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-06-20 05:48:09 +01:00
|
|
|
|
resume.BadBlocks.Sort();
|
2017-12-21 14:30:38 +00:00
|
|
|
|
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-21 23:00:30 +00:00
|
|
|
|
Checksum dataChk = new Checksum();
|
2017-05-31 01:00:58 +01:00
|
|
|
|
dumpFile.Seek(0, SeekOrigin.Begin);
|
|
|
|
|
|
blocksToRead = 500;
|
|
|
|
|
|
|
|
|
|
|
|
blocks = totalSize;
|
|
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Checksum starts.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
for(ulong i = 0; i < blocks; i += blocksToRead)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(aborted)
|
2017-11-20 05:07:16 +00:00
|
|
|
|
{
|
|
|
|
|
|
dumpLog.WriteLine("Aborted!");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
break;
|
2017-11-20 05:07:16 +00:00
|
|
|
|
}
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-20 17:26:28 +00:00
|
|
|
|
if(blocks - i < blocksToRead) blocksToRead = (uint)(blocks - i);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
DicConsole.Write("\rChecksumming sector {0} of {1} ({2:F3} MiB/sec.)", i, blocks, currentSpeed);
|
|
|
|
|
|
|
|
|
|
|
|
DateTime chkStart = DateTime.UtcNow;
|
2017-12-21 23:00:30 +00:00
|
|
|
|
byte[] dataToCheck = new byte[BLOCK_SIZE * blocksToRead];
|
|
|
|
|
|
dumpFile.Read(dataToCheck, 0, (int)(BLOCK_SIZE * blocksToRead));
|
2017-05-31 01:00:58 +01:00
|
|
|
|
dataChk.Update(dataToCheck);
|
|
|
|
|
|
DateTime chkEnd = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
|
|
double chkDuration = (chkEnd - chkStart).TotalMilliseconds;
|
|
|
|
|
|
totalChkDuration += chkDuration;
|
|
|
|
|
|
|
2017-12-22 22:02:10 +00:00
|
|
|
|
double newSpeed = (double)BLOCK_SIZE * blocksToRead / 1048576 / (chkDuration / 1000);
|
|
|
|
|
|
if(!double.IsInfinity(newSpeed)) currentSpeed = newSpeed;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.WriteLine();
|
|
|
|
|
|
dumpFile.Close();
|
|
|
|
|
|
end = DateTime.UtcNow;
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Checksum finished in {0} seconds.", (end - start).TotalSeconds);
|
2017-12-19 20:33:03 +00:00
|
|
|
|
dumpLog.WriteLine("Average checksum speed {0:F3} KiB/sec.",
|
2017-12-21 23:00:30 +00:00
|
|
|
|
(double)BLOCK_SIZE * (double)(blocks + 1) / 1024 / (totalChkDuration / 1000));
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
PluginBase plugins = new PluginBase();
|
|
|
|
|
|
FiltersList filtersList = new FiltersList();
|
2017-12-26 06:05:12 +00:00
|
|
|
|
IFilter inputFilter = filtersList.GetFilter(outputPrefix + ".iso");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
if(inputFilter == null)
|
|
|
|
|
|
{
|
|
|
|
|
|
DicConsole.ErrorWriteLine("Cannot open file just created, this should not happen.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-26 06:05:12 +00:00
|
|
|
|
IMediaImage imageFormat = ImageFormat.Detect(inputFilter);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
PartitionType[] xmlFileSysInfo = null;
|
|
|
|
|
|
|
2017-12-28 19:56:36 +00:00
|
|
|
|
try { if(!imageFormat.Open(inputFilter)) imageFormat = null; }
|
2017-12-20 17:15:26 +00:00
|
|
|
|
catch { imageFormat = null; }
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-20 17:15:26 +00:00
|
|
|
|
if(imageFormat != null)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Getting partitions.");
|
2017-12-20 17:15:26 +00:00
|
|
|
|
List<Partition> partitions = Partitions.GetAll(imageFormat);
|
2017-07-24 23:35:33 +01:00
|
|
|
|
Partitions.AddSchemesToStats(partitions);
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Found {0} partitions.", partitions.Count);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
if(partitions.Count > 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
xmlFileSysInfo = new PartitionType[partitions.Count];
|
|
|
|
|
|
for(int i = 0; i < partitions.Count; i++)
|
|
|
|
|
|
{
|
2017-06-08 21:12:05 +01:00
|
|
|
|
xmlFileSysInfo[i] = new PartitionType
|
|
|
|
|
|
{
|
2017-07-19 16:37:11 +01:00
|
|
|
|
Description = partitions[i].Description,
|
|
|
|
|
|
EndSector = (int)(partitions[i].Start + partitions[i].Length - 1),
|
|
|
|
|
|
Name = partitions[i].Name,
|
|
|
|
|
|
Sequence = (int)partitions[i].Sequence,
|
|
|
|
|
|
StartSector = (int)partitions[i].Start,
|
|
|
|
|
|
Type = partitions[i].Type
|
2017-06-08 21:12:05 +01:00
|
|
|
|
};
|
2017-05-31 01:00:58 +01:00
|
|
|
|
List<FileSystemType> lstFs = new List<FileSystemType>();
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Getting filesystems on partition {0}, starting at {1}, ending at {2}, with type {3}, under scheme {4}.",
|
2017-12-19 20:33:03 +00:00
|
|
|
|
i, partitions[i].Start, partitions[i].End, partitions[i].Type,
|
|
|
|
|
|
partitions[i].Scheme);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-12-26 06:05:12 +00:00
|
|
|
|
foreach(IFilesystem plugin in plugins.PluginsList.Values)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
try
|
|
|
|
|
|
{
|
2017-12-21 06:06:19 +00:00
|
|
|
|
if(!plugin.Identify(imageFormat, partitions[i])) continue;
|
|
|
|
|
|
|
2017-12-26 06:05:12 +00:00
|
|
|
|
plugin.GetInformation(imageFormat, partitions[i], out _, encoding);
|
|
|
|
|
|
lstFs.Add(plugin.XmlFsType);
|
|
|
|
|
|
Statistics.AddFilesystem(plugin.XmlFsType.Type);
|
|
|
|
|
|
dumpLog.WriteLine("Filesystem {0} found.", plugin.XmlFsType.Type);
|
2017-12-21 06:06:19 +00:00
|
|
|
|
|
2017-12-26 06:05:12 +00:00
|
|
|
|
switch(plugin.XmlFsType.Type)
|
2017-12-23 17:41:23 +00:00
|
|
|
|
{
|
|
|
|
|
|
case "Opera":
|
|
|
|
|
|
dskType = MediaType.ThreeDO;
|
2017-12-21 06:06:19 +00:00
|
|
|
|
break;
|
2017-12-23 17:41:23 +00:00
|
|
|
|
case "PC Engine filesystem":
|
|
|
|
|
|
dskType = MediaType.SuperCDROM2;
|
2017-12-21 06:06:19 +00:00
|
|
|
|
break;
|
2017-12-23 17:41:23 +00:00
|
|
|
|
case "Nintendo Wii filesystem":
|
|
|
|
|
|
dskType = MediaType.WOD;
|
2017-12-21 06:06:19 +00:00
|
|
|
|
break;
|
2017-12-23 17:41:23 +00:00
|
|
|
|
case "Nintendo Gamecube filesystem":
|
|
|
|
|
|
dskType = MediaType.GOD;
|
2017-12-21 06:06:19 +00:00
|
|
|
|
break;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
#pragma warning disable RECS0022 // A catch clause that catches System.Exception and has an empty body
|
|
|
|
|
|
catch
|
|
|
|
|
|
#pragma warning restore RECS0022 // A catch clause that catches System.Exception and has an empty body
|
|
|
|
|
|
{
|
|
|
|
|
|
//DicConsole.DebugWriteLine("Dump-media command", "Plugin {0} crashed", _plugin.Name);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(lstFs.Count > 0) xmlFileSysInfo[i].FileSystems = lstFs.ToArray();
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Getting filesystem for whole device.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
xmlFileSysInfo = new PartitionType[1];
|
2017-12-19 20:33:03 +00:00
|
|
|
|
xmlFileSysInfo[0] = new PartitionType {EndSector = (int)(blocks - 1), StartSector = 0};
|
2017-05-31 01:00:58 +01:00
|
|
|
|
List<FileSystemType> lstFs = new List<FileSystemType>();
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
Partition wholePart =
|
2017-12-21 23:00:30 +00:00
|
|
|
|
new Partition {Name = "Whole device", Length = blocks, Size = blocks * BLOCK_SIZE};
|
2017-07-19 16:31:08 +01:00
|
|
|
|
|
2017-12-26 06:05:12 +00:00
|
|
|
|
foreach(IFilesystem plugin in plugins.PluginsList.Values)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
try
|
|
|
|
|
|
{
|
2017-12-21 06:06:19 +00:00
|
|
|
|
if(!plugin.Identify(imageFormat, wholePart)) continue;
|
|
|
|
|
|
|
2017-12-26 06:05:12 +00:00
|
|
|
|
plugin.GetInformation(imageFormat, wholePart, out _, encoding);
|
|
|
|
|
|
lstFs.Add(plugin.XmlFsType);
|
|
|
|
|
|
Statistics.AddFilesystem(plugin.XmlFsType.Type);
|
|
|
|
|
|
dumpLog.WriteLine("Filesystem {0} found.", plugin.XmlFsType.Type);
|
2017-12-21 06:06:19 +00:00
|
|
|
|
|
2017-12-26 06:05:12 +00:00
|
|
|
|
switch(plugin.XmlFsType.Type)
|
2017-12-23 17:41:23 +00:00
|
|
|
|
{
|
|
|
|
|
|
case "Opera":
|
|
|
|
|
|
dskType = MediaType.ThreeDO;
|
2017-12-21 06:06:19 +00:00
|
|
|
|
break;
|
2017-12-23 17:41:23 +00:00
|
|
|
|
case "PC Engine filesystem":
|
|
|
|
|
|
dskType = MediaType.SuperCDROM2;
|
2017-12-21 06:06:19 +00:00
|
|
|
|
break;
|
2017-12-23 17:41:23 +00:00
|
|
|
|
case "Nintendo Wii filesystem":
|
|
|
|
|
|
dskType = MediaType.WOD;
|
2017-12-21 06:06:19 +00:00
|
|
|
|
break;
|
2017-12-23 17:41:23 +00:00
|
|
|
|
case "Nintendo Gamecube filesystem":
|
|
|
|
|
|
dskType = MediaType.GOD;
|
2017-12-21 06:06:19 +00:00
|
|
|
|
break;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
#pragma warning disable RECS0022 // A catch clause that catches System.Exception and has an empty body
|
|
|
|
|
|
catch
|
|
|
|
|
|
#pragma warning restore RECS0022 // A catch clause that catches System.Exception and has an empty body
|
|
|
|
|
|
{
|
|
|
|
|
|
//DicConsole.DebugWriteLine("Create-sidecar command", "Plugin {0} crashed", _plugin.Name);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(lstFs.Count > 0) xmlFileSysInfo[0].FileSystems = lstFs.ToArray();
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sidecar.OpticalDisc[0].Checksums = dataChk.End().ToArray();
|
2017-06-20 05:48:09 +01:00
|
|
|
|
sidecar.OpticalDisc[0].DumpHardwareArray = resume.Tries.ToArray();
|
2017-06-08 21:12:05 +01:00
|
|
|
|
sidecar.OpticalDisc[0].Image = new ImageType
|
|
|
|
|
|
{
|
|
|
|
|
|
format = "Raw disk image (sector by sector copy)",
|
|
|
|
|
|
Value = outputPrefix + ".iso"
|
|
|
|
|
|
};
|
|
|
|
|
|
sidecar.OpticalDisc[0].Layers = new LayersType
|
|
|
|
|
|
{
|
|
|
|
|
|
type = LayersTypeType.OTP,
|
|
|
|
|
|
typeSpecified = true,
|
|
|
|
|
|
Sectors = new SectorsType[1]
|
|
|
|
|
|
};
|
2017-12-19 20:33:03 +00:00
|
|
|
|
sidecar.OpticalDisc[0].Layers.Sectors[0] = new SectorsType {Value = (long)layerBreak};
|
2017-05-31 01:00:58 +01:00
|
|
|
|
sidecar.OpticalDisc[0].Sessions = 1;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
sidecar.OpticalDisc[0].Tracks = new[] {1};
|
2017-12-21 14:30:38 +00:00
|
|
|
|
sidecar.OpticalDisc[0].Track = new TrackType[1];
|
|
|
|
|
|
sidecar.OpticalDisc[0].Track[0] = new TrackType
|
2017-06-08 21:12:05 +01:00
|
|
|
|
{
|
2017-12-21 23:00:30 +00:00
|
|
|
|
BytesPerSector = (int)BLOCK_SIZE,
|
2017-06-08 21:12:05 +01:00
|
|
|
|
Checksums = sidecar.OpticalDisc[0].Checksums,
|
|
|
|
|
|
EndSector = (long)(blocks - 1),
|
2017-12-19 20:33:03 +00:00
|
|
|
|
Image =
|
2017-12-21 03:18:10 +00:00
|
|
|
|
new ImageType
|
2017-12-19 20:33:03 +00:00
|
|
|
|
{
|
|
|
|
|
|
format = "BINARY",
|
|
|
|
|
|
offset = 0,
|
|
|
|
|
|
offsetSpecified = true,
|
|
|
|
|
|
Value = sidecar.OpticalDisc[0].Image.Value
|
|
|
|
|
|
},
|
2017-12-21 03:18:10 +00:00
|
|
|
|
Sequence = new TrackSequenceType {Session = 1, TrackNumber = 1},
|
2017-12-21 23:00:30 +00:00
|
|
|
|
Size = (long)(totalSize * BLOCK_SIZE),
|
2017-06-08 21:12:05 +01:00
|
|
|
|
StartSector = 0
|
|
|
|
|
|
};
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(xmlFileSysInfo != null) sidecar.OpticalDisc[0].Track[0].FileSystemInformation = xmlFileSysInfo;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
sidecar.OpticalDisc[0].Track[0].TrackType1 = TrackTypeTrackType.dvd;
|
2017-12-21 14:30:38 +00:00
|
|
|
|
sidecar.OpticalDisc[0].Dimensions = Dimensions.DimensionsFromMediaType(dskType);
|
2017-06-08 21:12:05 +01:00
|
|
|
|
Metadata.MediaType.MediaTypeToString(dskType, out string xmlDskTyp, out string xmlDskSubTyp);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
sidecar.OpticalDisc[0].DiscType = xmlDskTyp;
|
|
|
|
|
|
sidecar.OpticalDisc[0].DiscSubType = xmlDskSubTyp;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
|
|
|
|
|
|
if(!aborted)
|
|
|
|
|
|
{
|
|
|
|
|
|
DicConsole.WriteLine("Writing metadata sidecar");
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
FileStream xmlFs = new FileStream(outputPrefix + ".cicm.xml", FileMode.Create);
|
2017-06-20 05:48:09 +01:00
|
|
|
|
|
2017-12-23 17:41:23 +00:00
|
|
|
|
XmlSerializer xmlSer = new XmlSerializer(typeof(CICMMetadataType));
|
2017-06-20 05:48:09 +01:00
|
|
|
|
xmlSer.Serialize(xmlFs, sidecar);
|
|
|
|
|
|
xmlFs.Close();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Statistics.AddMedia(dskType, true);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
}
|