2017-05-31 01:00:58 +01:00
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : SBC.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 SCSI Block devices.
|
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-21 07:08:26 +00:00
|
|
|
|
using System.Linq;
|
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.SCSI;
|
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.Filters;
|
2017-12-21 14:30:38 +00:00
|
|
|
|
using DiscImageChef.Metadata;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
using Extents;
|
2017-12-21 14:30:38 +00:00
|
|
|
|
using Schemas;
|
|
|
|
|
|
using MediaType = DiscImageChef.CommonTypes.MediaType;
|
2018-02-05 18:23:53 +00:00
|
|
|
|
using TrackType = DiscImageChef.DiscImages.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 SCSI Block Commands and Reduced Block Commands devices
|
2017-12-23 01:46:08 +00:00
|
|
|
|
/// </summary>
|
2017-12-20 17:46:47 +00:00
|
|
|
|
static class Sbc
|
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 a SCSI Block Commands device or a Reduced Block Commands devices
|
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>
|
2018-01-19 01:21:01 +00:00
|
|
|
|
/// <param name="outputPlugin">Plugin for output file</param>
|
2017-12-23 01:46:08 +00:00
|
|
|
|
/// <param name="retryPasses">How many times to retry</param>
|
|
|
|
|
|
/// <param name="force">Force to continue dump whenever possible</param>
|
|
|
|
|
|
/// <param name="dumpRaw">Dump long or scrambled 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="opticalDisc">If device contains an optical disc (e.g. DVD or BD)</param>
|
2018-01-19 01:21:01 +00:00
|
|
|
|
/// <param name="mediaTags">Media tags as retrieved in MMC layer</param>
|
2017-12-23 01:46:08 +00:00
|
|
|
|
/// <param name="dskType">Disc type as detected in SCSI or MMC layer</param>
|
2018-01-19 01:21:01 +00:00
|
|
|
|
/// <param name="outputPath">Path to output file</param>
|
|
|
|
|
|
/// <param name="formatOptions">Formats to pass to output file plugin</param>
|
2017-12-23 01:46:08 +00:00
|
|
|
|
/// <exception cref="InvalidOperationException">If the resume file is invalid</exception>
|
2018-04-02 23:08:26 +01:00
|
|
|
|
internal static void Dump(Device dev, string devicePath,
|
|
|
|
|
|
IWritableImage outputPlugin, ushort retryPasses,
|
|
|
|
|
|
bool force, bool dumpRaw,
|
|
|
|
|
|
bool persistent, bool stopOnError,
|
|
|
|
|
|
Dictionary<MediaTagType, byte[]> mediaTags, ref MediaType dskType,
|
2018-01-19 01:21:01 +00:00
|
|
|
|
bool opticalDisc,
|
2018-04-02 23:08:26 +01:00
|
|
|
|
ref Resume resume, ref DumpLog dumpLog,
|
|
|
|
|
|
Encoding encoding, string outputPrefix,
|
|
|
|
|
|
string outputPath, Dictionary<string, string> formatOptions,
|
|
|
|
|
|
CICMMetadataType preSidecar, uint skip,
|
2018-04-10 02:39:41 +01:00
|
|
|
|
bool nometadata, bool notrim)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2018-01-19 01:21:01 +00:00
|
|
|
|
bool sense;
|
|
|
|
|
|
ulong blocks;
|
|
|
|
|
|
uint blockSize;
|
|
|
|
|
|
uint logicalBlockSize;
|
|
|
|
|
|
uint physicalBlockSize;
|
|
|
|
|
|
byte scsiMediumType = 0;
|
|
|
|
|
|
byte scsiDensityCode = 0;
|
|
|
|
|
|
bool containsFloppyPage = false;
|
|
|
|
|
|
const ushort SBC_PROFILE = 0x0001;
|
|
|
|
|
|
DateTime start;
|
|
|
|
|
|
DateTime end;
|
2018-04-02 23:08:26 +01:00
|
|
|
|
double totalDuration = 0;
|
|
|
|
|
|
double currentSpeed = 0;
|
|
|
|
|
|
double maxSpeed = double.MinValue;
|
|
|
|
|
|
double minSpeed = double.MaxValue;
|
2018-01-19 01:21:01 +00:00
|
|
|
|
byte[] readBuffer;
|
|
|
|
|
|
uint blocksToRead;
|
2018-04-02 23:08:26 +01:00
|
|
|
|
bool aborted = false;
|
2017-12-21 17:37:14 +00:00
|
|
|
|
System.Console.CancelKeyPress += (sender, e) => e.Cancel = aborted = true;
|
2018-04-02 23:08:26 +01:00
|
|
|
|
Modes.DecodedMode? decMode = null;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("Initializing reader.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
Reader scsiReader = new Reader(dev, dev.Timeout, null, dumpRaw);
|
2018-04-02 23:08:26 +01:00
|
|
|
|
blocks = scsiReader.GetDeviceBlocks();
|
|
|
|
|
|
blockSize = scsiReader.LogicalBlockSize;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
if(scsiReader.FindReadCommand())
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("ERROR: Cannot find correct read command: {0}.", scsiReader.ErrorMessage);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Unable to read medium.");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(blocks != 0 && blockSize != 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
blocks++;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
DicConsole.WriteLine("Media has {0} blocks of {1} bytes/each. (for a total of {2} bytes)", blocks,
|
|
|
|
|
|
blockSize, blocks * (ulong)blockSize);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
2018-01-19 01:21:01 +00:00
|
|
|
|
|
2017-06-20 05:48:09 +01:00
|
|
|
|
// Check how many blocks to read, if error show and return
|
|
|
|
|
|
if(scsiReader.GetBlocksToRead())
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("ERROR: Cannot get blocks to read: {0}.", scsiReader.ErrorMessage);
|
2017-06-20 05:48:09 +01:00
|
|
|
|
DicConsole.ErrorWriteLine(scsiReader.ErrorMessage);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
blocksToRead = scsiReader.BlocksToRead;
|
|
|
|
|
|
logicalBlockSize = blockSize;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
physicalBlockSize = scsiReader.PhysicalBlockSize;
|
|
|
|
|
|
|
|
|
|
|
|
if(blocks == 0)
|
|
|
|
|
|
{
|
2017-11-20 05:07:16 +00:00
|
|
|
|
dumpLog.WriteLine("ERROR: Unable to read medium or empty medium present...");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.ErrorWriteLine("Unable to read medium or empty medium present...");
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(!opticalDisc)
|
|
|
|
|
|
{
|
2018-01-19 01:21:01 +00:00
|
|
|
|
mediaTags = new Dictionary<MediaTagType, byte[]>();
|
|
|
|
|
|
|
2018-04-02 23:08:26 +01:00
|
|
|
|
if(dev.IsUsb && dev.UsbDescriptors != null) mediaTags.Add(MediaTagType.USB_Descriptors, null);
|
|
|
|
|
|
if(dev.Type == DeviceType.ATAPI) mediaTags.Add(MediaTagType.ATAPI_IDENTIFY, null);
|
|
|
|
|
|
if(dev.IsPcmcia && dev.Cis != null) mediaTags.Add(MediaTagType.PCMCIA_CIS, null);
|
2018-01-19 01:21:01 +00:00
|
|
|
|
|
|
|
|
|
|
sense = dev.ScsiInquiry(out byte[] cmdBuf, out _);
|
|
|
|
|
|
mediaTags.Add(MediaTagType.SCSI_INQUIRY, cmdBuf);
|
|
|
|
|
|
if(!sense)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2018-01-19 01:21:01 +00:00
|
|
|
|
dumpLog.WriteLine("Requesting MODE SENSE (10).");
|
|
|
|
|
|
sense = dev.ModeSense10(out cmdBuf, out _, false, true, ScsiModeSensePageControl.Current, 0x3F,
|
|
|
|
|
|
0xFF, 5, out _);
|
|
|
|
|
|
if(!sense || dev.Error)
|
|
|
|
|
|
sense = dev.ModeSense10(out cmdBuf, out _, false, true, ScsiModeSensePageControl.Current, 0x3F,
|
|
|
|
|
|
0x00, 5, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
if(!sense && !dev.Error)
|
|
|
|
|
|
if(Modes.DecodeMode10(cmdBuf, dev.ScsiType).HasValue)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2018-01-19 01:21:01 +00:00
|
|
|
|
mediaTags.Add(MediaTagType.SCSI_MODESENSE_10, cmdBuf);
|
|
|
|
|
|
decMode = Modes.DecodeMode10(cmdBuf, dev.ScsiType);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
dumpLog.WriteLine("Requesting MODE SENSE (6).");
|
|
|
|
|
|
sense = dev.ModeSense6(out cmdBuf, out _, false, ScsiModeSensePageControl.Current, 0x3F, 0x00, 5,
|
|
|
|
|
|
out _);
|
|
|
|
|
|
if(sense || dev.Error)
|
2017-12-23 17:41:23 +00:00
|
|
|
|
sense = dev.ModeSense6(out cmdBuf, out _, false, ScsiModeSensePageControl.Current, 0x3F, 0x00,
|
|
|
|
|
|
5, out _);
|
2018-01-19 01:21:01 +00:00
|
|
|
|
if(sense || dev.Error) sense = dev.ModeSense(out cmdBuf, out _, 5, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
if(!sense && !dev.Error)
|
|
|
|
|
|
if(Modes.DecodeMode6(cmdBuf, dev.ScsiType).HasValue)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2018-01-19 01:21:01 +00:00
|
|
|
|
mediaTags.Add(MediaTagType.SCSI_MODESENSE_6, cmdBuf);
|
|
|
|
|
|
decMode = Modes.DecodeMode6(cmdBuf, dev.ScsiType);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
2018-01-19 01:21:01 +00:00
|
|
|
|
|
|
|
|
|
|
if(decMode.HasValue)
|
|
|
|
|
|
{
|
|
|
|
|
|
scsiMediumType = (byte)decMode.Value.Header.MediumType;
|
|
|
|
|
|
if(decMode.Value.Header.BlockDescriptors != null &&
|
|
|
|
|
|
decMode.Value.Header.BlockDescriptors.Length >= 1)
|
|
|
|
|
|
scsiDensityCode = (byte)decMode.Value.Header.BlockDescriptors[0].Density;
|
|
|
|
|
|
|
|
|
|
|
|
containsFloppyPage =
|
|
|
|
|
|
decMode.Value.Pages.Aggregate(containsFloppyPage,
|
|
|
|
|
|
(current, modePage) => current | (modePage.Page == 0x05));
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-21 23:00:30 +00:00
|
|
|
|
if(dskType == MediaType.Unknown)
|
|
|
|
|
|
dskType = MediaTypeFromScsi.Get((byte)dev.ScsiType, dev.Manufacturer, dev.Model, scsiMediumType,
|
|
|
|
|
|
scsiDensityCode, blocks, blockSize);
|
|
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
dumpLog.WriteLine("Device reports {0} blocks ({1} bytes).", blocks, blocks * blockSize);
|
|
|
|
|
|
dumpLog.WriteLine("Device can read {0} blocks at a time.", blocksToRead);
|
|
|
|
|
|
dumpLog.WriteLine("Device reports {0} bytes per logical block.", blockSize);
|
2017-12-21 23:00:30 +00:00
|
|
|
|
dumpLog.WriteLine("Device reports {0} bytes per physical block.", scsiReader.LongBlockSize);
|
2018-01-19 01:21:01 +00:00
|
|
|
|
dumpLog.WriteLine("SCSI device type: {0}.", dev.ScsiType);
|
|
|
|
|
|
dumpLog.WriteLine("SCSI medium type: {0}.", scsiMediumType);
|
|
|
|
|
|
dumpLog.WriteLine("SCSI density type: {0}.", scsiDensityCode);
|
2017-12-21 23:00:30 +00:00
|
|
|
|
|
|
|
|
|
|
if(dskType == MediaType.Unknown && dev.IsUsb && containsFloppyPage) dskType = MediaType.FlashDrive;
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.WriteLine("Media identified as {0}", dskType);
|
|
|
|
|
|
dumpLog.WriteLine("SCSI floppy mode page present: {0}.", containsFloppyPage);
|
2018-01-19 01:21:01 +00:00
|
|
|
|
dumpLog.WriteLine("Media identified as {0}.", dskType);
|
2017-12-21 23:00:30 +00:00
|
|
|
|
|
2017-05-31 01:00:58 +01:00
|
|
|
|
uint longBlockSize = scsiReader.LongBlockSize;
|
|
|
|
|
|
|
|
|
|
|
|
if(dumpRaw)
|
|
|
|
|
|
if(blockSize == longBlockSize)
|
|
|
|
|
|
{
|
2017-12-21 23:00:30 +00:00
|
|
|
|
DicConsole.ErrorWriteLine(!scsiReader.CanReadRaw
|
|
|
|
|
|
? "Device doesn't seem capable of reading raw data from media."
|
|
|
|
|
|
: "Device is capable of reading raw data but I've been unable to guess correct sector size.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
if(!force)
|
|
|
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
|
DicConsole
|
2018-01-19 01:21:01 +00:00
|
|
|
|
.ErrorWriteLine("Not continuing. If you want to continue reading cooked data when raw is not available use the force option.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
// TODO: Exit more gracefully
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.ErrorWriteLine("Continuing dumping cooked data.");
|
|
|
|
|
|
dumpRaw = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
2017-12-21 23:00:30 +00:00
|
|
|
|
// Only a block will be read, but it contains 16 sectors and command expect sector number not block number
|
|
|
|
|
|
blocksToRead = (uint)(longBlockSize == 37856 ? 16 : 1);
|
2017-12-19 20:33:03 +00:00
|
|
|
|
DicConsole.WriteLine("Reading {0} raw bytes ({1} cooked bytes) per sector.", longBlockSize,
|
|
|
|
|
|
blockSize * blocksToRead);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
physicalBlockSize = longBlockSize;
|
2018-01-19 01:21:01 +00:00
|
|
|
|
blockSize = longBlockSize;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
bool ret = true;
|
|
|
|
|
|
|
|
|
|
|
|
foreach(MediaTagType tag in mediaTags.Keys)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(outputPlugin.SupportedMediaTags.Contains(tag)) continue;
|
|
|
|
|
|
|
|
|
|
|
|
ret = false;
|
|
|
|
|
|
dumpLog.WriteLine($"Output format does not support {tag}.");
|
|
|
|
|
|
DicConsole.ErrorWriteLine($"Output format does not support {tag}.");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(!ret)
|
|
|
|
|
|
{
|
|
|
|
|
|
dumpLog.WriteLine("Several media tags not supported, {0}continuing...", force ? "" : "not ");
|
|
|
|
|
|
DicConsole.ErrorWriteLine("Several media tags not supported, {0}continuing...", force ? "" : "not ");
|
|
|
|
|
|
if(!force) return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
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, blockSize, blocksToRead);
|
2018-01-19 01:21:01 +00:00
|
|
|
|
IbgLog ibgLog = new IbgLog(outputPrefix + ".ibg", SBC_PROFILE);
|
2018-04-02 23:08:26 +01:00
|
|
|
|
ret = outputPlugin.Create(outputPath, dskType, formatOptions, blocks, blockSize);
|
2018-01-19 01:21:01 +00:00
|
|
|
|
|
|
|
|
|
|
// Cannot create image
|
|
|
|
|
|
if(!ret)
|
|
|
|
|
|
{
|
|
|
|
|
|
dumpLog.WriteLine("Error creating output image, not continuing.");
|
|
|
|
|
|
dumpLog.WriteLine(outputPlugin.ErrorMessage);
|
|
|
|
|
|
DicConsole.ErrorWriteLine("Error creating output image, not continuing.");
|
|
|
|
|
|
DicConsole.ErrorWriteLine(outputPlugin.ErrorMessage);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-04-02 23:08:26 +01:00
|
|
|
|
start = DateTime.UtcNow;
|
2018-02-02 15:32:53 +00:00
|
|
|
|
double imageWriteDuration = 0;
|
2018-02-02 18:44:28 +00:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
if(opticalDisc)
|
|
|
|
|
|
outputPlugin.SetTracks(new List<Track>
|
|
|
|
|
|
{
|
|
|
|
|
|
new Track
|
|
|
|
|
|
{
|
|
|
|
|
|
TrackBytesPerSector = (int)blockSize,
|
|
|
|
|
|
TrackEndSector = blocks - 1,
|
|
|
|
|
|
TrackSequence = 1,
|
|
|
|
|
|
TrackRawBytesPerSector = (int)blockSize,
|
|
|
|
|
|
TrackSubchannelType = TrackSubchannelType.None,
|
2018-02-05 18:23:53 +00:00
|
|
|
|
TrackSession = 1,
|
2018-04-02 23:08:26 +01:00
|
|
|
|
TrackType = TrackType.Data
|
2018-01-19 01:21:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
else if(decMode.HasValue)
|
2017-11-26 18:23:50 +00:00
|
|
|
|
{
|
2018-01-19 01:21:01 +00:00
|
|
|
|
bool setGeometry = false;
|
|
|
|
|
|
|
|
|
|
|
|
foreach(Modes.ModePage page in decMode.Value.Pages)
|
|
|
|
|
|
if(page.Page == 0x04 && page.Subpage == 0x00)
|
|
|
|
|
|
{
|
|
|
|
|
|
Modes.ModePage_04? rigidPage = Modes.DecodeModePage_04(page.PageResponse);
|
|
|
|
|
|
if(!rigidPage.HasValue || setGeometry) continue;
|
|
|
|
|
|
|
|
|
|
|
|
dumpLog.WriteLine("Setting geometry to {0} cylinders, {1} heads, {2} sectors per track",
|
|
|
|
|
|
rigidPage.Value.Cylinders, rigidPage.Value.Heads,
|
|
|
|
|
|
(uint)(blocks / (rigidPage.Value.Cylinders * rigidPage.Value.Heads)));
|
|
|
|
|
|
DicConsole.WriteLine("Setting geometry to {0} cylinders, {1} heads, {2} sectors per track",
|
|
|
|
|
|
rigidPage.Value.Cylinders, rigidPage.Value.Heads,
|
|
|
|
|
|
(uint)(blocks / (rigidPage.Value.Cylinders * rigidPage.Value.Heads)));
|
|
|
|
|
|
outputPlugin.SetGeometry(rigidPage.Value.Cylinders, rigidPage.Value.Heads,
|
|
|
|
|
|
(uint)(blocks / (rigidPage.Value.Cylinders * rigidPage.Value.Heads)));
|
|
|
|
|
|
|
|
|
|
|
|
setGeometry = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
else if(page.Page == 0x05 && page.Subpage == 0x00)
|
|
|
|
|
|
{
|
|
|
|
|
|
Modes.ModePage_05? flexiblePage = Modes.DecodeModePage_05(page.PageResponse);
|
|
|
|
|
|
if(!flexiblePage.HasValue) continue;
|
|
|
|
|
|
|
|
|
|
|
|
dumpLog.WriteLine("Setting geometry to {0} cylinders, {1} heads, {2} sectors per track",
|
|
|
|
|
|
flexiblePage.Value.Cylinders, flexiblePage.Value.Heads,
|
|
|
|
|
|
flexiblePage.Value.SectorsPerTrack);
|
|
|
|
|
|
DicConsole.WriteLine("Setting geometry to {0} cylinders, {1} heads, {2} sectors per track",
|
|
|
|
|
|
flexiblePage.Value.Cylinders, flexiblePage.Value.Heads,
|
|
|
|
|
|
flexiblePage.Value.SectorsPerTrack);
|
|
|
|
|
|
outputPlugin.SetGeometry(flexiblePage.Value.Cylinders, flexiblePage.Value.Heads,
|
|
|
|
|
|
flexiblePage.Value.SectorsPerTrack);
|
|
|
|
|
|
setGeometry = true;
|
|
|
|
|
|
}
|
2017-11-26 18:23:50 +00:00
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-06-20 05:48:09 +01:00
|
|
|
|
DumpHardwareType currentTry = null;
|
2018-01-19 01:21:01 +00:00
|
|
|
|
ExtentsULong extents = null;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
ResumeSupport.Process(true, dev.IsRemovable, blocks, dev.Manufacturer, dev.Model, dev.Serial,
|
2017-12-20 17:15:26 +00:00
|
|
|
|
dev.PlatformId, 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 InvalidOperationException("Could not process resume file, not continuing...");
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
|
|
|
|
|
if(resume.NextBlock > 0) dumpLog.WriteLine("Resuming from block {0}.", resume.NextBlock);
|
2018-04-10 02:39:41 +01:00
|
|
|
|
bool newTrim = false;
|
2017-06-20 05:48:09 +01:00
|
|
|
|
|
|
|
|
|
|
for(ulong i = resume.NextBlock; i < blocks; i += 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(blocks - i < blocksToRead) blocksToRead = (uint)(blocks - i);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-01-19 01:21:01 +00: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;
|
2018-01-19 01:21:01 +00:00
|
|
|
|
#pragma warning restore RECS0018 // Comparison of floating point numbers with equality operator
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
DicConsole.Write("\rReading sector {0} of {1} ({2:F3} MiB/sec.)", i, blocks, currentSpeed);
|
|
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
sense = scsiReader.ReadBlocks(out readBuffer, i, blocksToRead, out double cmdDuration);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
totalDuration += cmdDuration;
|
|
|
|
|
|
|
|
|
|
|
|
if(!sense && !dev.Error)
|
|
|
|
|
|
{
|
|
|
|
|
|
mhddLog.Write(i, cmdDuration);
|
|
|
|
|
|
ibgLog.Write(i, currentSpeed * 1024);
|
2018-02-02 15:32:53 +00:00
|
|
|
|
DateTime writeStart = DateTime.Now;
|
2018-01-19 01:21:01 +00:00
|
|
|
|
outputPlugin.WriteSectors(readBuffer, i, blocksToRead);
|
2018-02-02 15:32:53 +00:00
|
|
|
|
imageWriteDuration += (DateTime.Now - writeStart).TotalSeconds;
|
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
|
|
|
|
|
2018-02-03 02:53:38 +00:00
|
|
|
|
if(i + skip > blocks) skip = (uint)(blocks - i);
|
2018-04-02 23:08:26 +01:00
|
|
|
|
|
2017-05-31 01:00:58 +01:00
|
|
|
|
// Write empty data
|
2018-02-02 15:32:53 +00:00
|
|
|
|
DateTime writeStart = DateTime.Now;
|
2018-02-02 18:44:28 +00:00
|
|
|
|
outputPlugin.WriteSectors(new byte[blockSize * skip], i, skip);
|
2018-02-02 15:32:53 +00:00
|
|
|
|
imageWriteDuration += (DateTime.Now - writeStart).TotalSeconds;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-02-02 18:44:28 +00:00
|
|
|
|
for(ulong b = i; b < i + skip; b++) resume.BadBlocks.Add(b);
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
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);
|
2018-02-02 18:44:28 +00:00
|
|
|
|
dumpLog.WriteLine("Skipping {0} blocks from errored block {1}.", skip, i);
|
2018-04-10 02:39:41 +01:00
|
|
|
|
i += skip - blocksToRead;
|
|
|
|
|
|
newTrim = true;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
double newSpeed =
|
|
|
|
|
|
(double)blockSize * blocksToRead / 1048576 / (cmdDuration / 1000);
|
2017-12-22 22:02:10 +00:00
|
|
|
|
if(!double.IsInfinity(newSpeed)) currentSpeed = newSpeed;
|
2018-04-02 23:08:26 +01:00
|
|
|
|
resume.NextBlock = i + blocksToRead;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-05-31 01:00:58 +01:00
|
|
|
|
end = DateTime.UtcNow;
|
|
|
|
|
|
DicConsole.WriteLine();
|
|
|
|
|
|
mhddLog.Close();
|
2017-12-19 20:33:03 +00:00
|
|
|
|
ibgLog.Close(dev, blocks, blockSize, (end - start).TotalSeconds, currentSpeed * 1024,
|
2018-04-02 23:08:26 +01:00
|
|
|
|
blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000),
|
|
|
|
|
|
devicePath);
|
|
|
|
|
|
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-20 17:26:28 +00:00
|
|
|
|
(double)blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000));
|
2018-02-02 15:32:53 +00:00
|
|
|
|
dumpLog.WriteLine("Average write speed {0:F3} KiB/sec.",
|
|
|
|
|
|
(double)blockSize * (double)(blocks + 1) / 1024 / imageWriteDuration);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-04-10 02:39:41 +01:00
|
|
|
|
#region Trimming
|
|
|
|
|
|
if(resume.BadBlocks.Count > 0 && !aborted && !notrim && newTrim)
|
|
|
|
|
|
{
|
|
|
|
|
|
start = DateTime.UtcNow;
|
|
|
|
|
|
dumpLog.WriteLine("Trimming bad sectors");
|
|
|
|
|
|
|
|
|
|
|
|
ulong[] tmpArray = resume.BadBlocks.ToArray();
|
|
|
|
|
|
foreach(ulong badSector in tmpArray)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(aborted)
|
|
|
|
|
|
{
|
|
|
|
|
|
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
|
|
|
|
|
|
dumpLog.WriteLine("Aborted!");
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.Write("\rTrimming sector {0}", badSector);
|
|
|
|
|
|
|
|
|
|
|
|
sense = scsiReader.ReadBlock(out readBuffer, badSector, out double cmdDuration);
|
|
|
|
|
|
|
|
|
|
|
|
if(sense || dev.Error) continue;
|
|
|
|
|
|
|
|
|
|
|
|
resume.BadBlocks.Remove(badSector);
|
|
|
|
|
|
extents.Add(badSector);
|
|
|
|
|
|
outputPlugin.WriteSector(readBuffer, badSector);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.WriteLine();
|
|
|
|
|
|
end = DateTime.UtcNow;
|
|
|
|
|
|
dumpLog.WriteLine("Trimmming finished in {0} seconds.", (end - start).TotalSeconds);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion Trimming
|
|
|
|
|
|
|
2017-05-31 01:00:58 +01:00
|
|
|
|
#region Error handling
|
2018-04-09 20:21:42 +01:00
|
|
|
|
if(resume.BadBlocks.Count > 0 && !aborted && retryPasses > 0)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2018-01-19 01:21:01 +00:00
|
|
|
|
int pass = 0;
|
|
|
|
|
|
bool forward = true;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
bool runningPersistent = false;
|
|
|
|
|
|
|
2017-12-21 14:30:38 +00:00
|
|
|
|
Modes.ModePage? currentModePage = null;
|
2018-01-19 01:21:01 +00:00
|
|
|
|
byte[] md6;
|
|
|
|
|
|
byte[] md10;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-04-02 23:08:26 +01:00
|
|
|
|
if(persistent)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
|
if(dev.ScsiType == PeripheralDeviceTypes.MultiMediaDevice)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2018-04-02 23:08:26 +01: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};
|
2018-04-02 23:08:26 +01: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(),
|
2018-04-02 23:08:26 +01:00
|
|
|
|
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
|
|
|
|
{
|
2018-01-19 01:21:01 +00:00
|
|
|
|
Page = 0x01,
|
|
|
|
|
|
Subpage = 0x00,
|
2017-12-21 14:30:38 +00:00
|
|
|
|
PageResponse = Modes.EncodeModePage_01_MMC(pgMmc)
|
2017-06-08 21:12:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2018-01-19 01:21:01 +00:00
|
|
|
|
md6 = Modes.EncodeMode6(md, dev.ScsiType);
|
2017-12-21 14:30:38 +00:00
|
|
|
|
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
|
|
|
|
{
|
2018-01-19 01:21:01 +00:00
|
|
|
|
PS = false,
|
|
|
|
|
|
AWRE = false,
|
|
|
|
|
|
ARRE = false,
|
|
|
|
|
|
TB = true,
|
|
|
|
|
|
RC = false,
|
|
|
|
|
|
EER = true,
|
|
|
|
|
|
PER = false,
|
|
|
|
|
|
DTE = false,
|
|
|
|
|
|
DCR = false,
|
2017-06-08 21:12:05 +01:00
|
|
|
|
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(),
|
2018-04-02 23:08:26 +01:00
|
|
|
|
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
|
|
|
|
{
|
2018-01-19 01:21:01 +00:00
|
|
|
|
Page = 0x01,
|
|
|
|
|
|
Subpage = 0x00,
|
2017-12-21 14:30:38 +00:00
|
|
|
|
PageResponse = Modes.EncodeModePage_01(pg)
|
2017-06-08 21:12:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2018-01-19 01:21:01 +00:00
|
|
|
|
md6 = Modes.EncodeMode6(md, dev.ScsiType);
|
2017-12-21 14:30:38 +00:00
|
|
|
|
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.");
|
2018-04-02 23:08:26 +01:00
|
|
|
|
sense = dev.ModeSelect(md6, out byte[] senseBuf, true, false, dev.Timeout, out _);
|
|
|
|
|
|
if(sense) sense = dev.ModeSelect10(md10, out senseBuf, true, false, dev.Timeout, out _);
|
|
|
|
|
|
|
|
|
|
|
|
if(sense)
|
|
|
|
|
|
{
|
|
|
|
|
|
DicConsole
|
|
|
|
|
|
.WriteLine("Drive did not accept MODE SELECT command for persistent error reading, try another drive.");
|
|
|
|
|
|
DicConsole.DebugWriteLine("Error: {0}", Sense.PrettifySense(senseBuf));
|
|
|
|
|
|
dumpLog.WriteLine("Drive did not accept MODE SELECT command for persistent error reading, try another drive.");
|
|
|
|
|
|
}
|
|
|
|
|
|
else runningPersistent = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
repeatRetry:
|
|
|
|
|
|
ulong[] tmpArray = resume.BadBlocks.ToArray();
|
|
|
|
|
|
foreach(ulong badSector in tmpArray)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(aborted)
|
|
|
|
|
|
{
|
|
|
|
|
|
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
|
|
|
|
|
|
dumpLog.WriteLine("Aborted!");
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.Write("\rRetrying sector {0}, pass {1}, {3}{2}", badSector, pass + 1,
|
|
|
|
|
|
forward ? "forward" : "reverse",
|
|
|
|
|
|
runningPersistent ? "recovering partial data, " : "");
|
|
|
|
|
|
|
|
|
|
|
|
sense = scsiReader.ReadBlock(out readBuffer, badSector, out double cmdDuration);
|
|
|
|
|
|
totalDuration += cmdDuration;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
|
|
|
|
|
if(!sense && !dev.Error)
|
|
|
|
|
|
{
|
2018-04-02 23:08:26 +01:00
|
|
|
|
resume.BadBlocks.Remove(badSector);
|
|
|
|
|
|
extents.Add(badSector);
|
|
|
|
|
|
outputPlugin.WriteSector(readBuffer, badSector);
|
|
|
|
|
|
dumpLog.WriteLine("Correctly retried block {0} in pass {1}.", badSector, pass);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
2018-04-02 23:08:26 +01:00
|
|
|
|
else if(runningPersistent) outputPlugin.WriteSector(readBuffer, badSector);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
2018-04-02 23:08:26 +01:00
|
|
|
|
|
|
|
|
|
|
if(pass < retryPasses && !aborted && resume.BadBlocks.Count > 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
pass++;
|
|
|
|
|
|
forward = !forward;
|
|
|
|
|
|
resume.BadBlocks.Sort();
|
|
|
|
|
|
resume.BadBlocks.Reverse();
|
|
|
|
|
|
goto repeatRetry;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(runningPersistent && currentModePage.HasValue)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
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(),
|
2018-01-19 01:21:01 +00:00
|
|
|
|
Pages = new[] {currentModePage.Value}
|
2017-06-08 21:12:05 +01:00
|
|
|
|
};
|
2018-01-19 01:21:01 +00:00
|
|
|
|
md6 = Modes.EncodeMode6(md, dev.ScsiType);
|
2017-12-21 14:30:38 +00:00
|
|
|
|
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 _, true, false, dev.Timeout, out _);
|
|
|
|
|
|
if(sense) dev.ModeSelect10(md10, out _, 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
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
if(!aborted)
|
|
|
|
|
|
if(opticalDisc)
|
|
|
|
|
|
foreach(KeyValuePair<MediaTagType, byte[]> tag in mediaTags)
|
|
|
|
|
|
{
|
|
|
|
|
|
ret = outputPlugin.WriteMediaTag(tag.Value, tag.Key);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
if(ret || force) continue;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
// Cannot write tag to image
|
|
|
|
|
|
dumpLog.WriteLine($"Cannot write tag {tag.Key}.");
|
|
|
|
|
|
throw new ArgumentException(outputPlugin.ErrorMessage);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
2017-11-20 05:07:16 +00:00
|
|
|
|
{
|
2018-01-19 01:21:01 +00:00
|
|
|
|
if(!dev.IsRemovable || dev.IsUsb)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(dev.IsUsb)
|
|
|
|
|
|
{
|
|
|
|
|
|
dumpLog.WriteLine("Reading USB descriptors.");
|
|
|
|
|
|
ret = outputPlugin.WriteMediaTag(dev.UsbDescriptors, MediaTagType.USB_Descriptors);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
if(!ret && !force)
|
|
|
|
|
|
{
|
|
|
|
|
|
dumpLog.WriteLine($"Cannot write USB descriptors.");
|
|
|
|
|
|
throw new ArgumentException(outputPlugin.ErrorMessage);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
byte[] cmdBuf;
|
|
|
|
|
|
if(dev.Type == DeviceType.ATAPI)
|
|
|
|
|
|
{
|
|
|
|
|
|
dumpLog.WriteLine("Requesting ATAPI IDENTIFY PACKET DEVICE.");
|
|
|
|
|
|
sense = dev.AtapiIdentify(out cmdBuf, out _);
|
|
|
|
|
|
if(!sense)
|
|
|
|
|
|
{
|
|
|
|
|
|
ret = outputPlugin.WriteMediaTag(cmdBuf, MediaTagType.ATAPI_IDENTIFY);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
if(!ret && !force)
|
|
|
|
|
|
{
|
|
|
|
|
|
dumpLog.WriteLine($"Cannot write ATAPI IDENTIFY PACKET DEVICE.");
|
|
|
|
|
|
throw new ArgumentException(outputPlugin.ErrorMessage);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
sense = dev.ScsiInquiry(out cmdBuf, out _);
|
|
|
|
|
|
if(!sense)
|
|
|
|
|
|
{
|
|
|
|
|
|
dumpLog.WriteLine("Requesting SCSI INQUIRY.");
|
|
|
|
|
|
ret = outputPlugin.WriteMediaTag(cmdBuf, MediaTagType.SCSI_INQUIRY);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
if(!ret && !force)
|
|
|
|
|
|
{
|
|
|
|
|
|
dumpLog.WriteLine($"Cannot write SCSI INQUIRY.");
|
|
|
|
|
|
throw new ArgumentException(outputPlugin.ErrorMessage);
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
dumpLog.WriteLine("Requesting MODE SENSE (10).");
|
|
|
|
|
|
sense = dev.ModeSense10(out cmdBuf, out _, false, true, ScsiModeSensePageControl.Current,
|
|
|
|
|
|
0x3F, 0xFF, 5, out _);
|
|
|
|
|
|
if(!sense || dev.Error)
|
|
|
|
|
|
sense = dev.ModeSense10(out cmdBuf, out _, false, true,
|
|
|
|
|
|
ScsiModeSensePageControl.Current, 0x3F, 0x00, 5, out _);
|
|
|
|
|
|
|
|
|
|
|
|
decMode = null;
|
|
|
|
|
|
|
|
|
|
|
|
if(!sense && !dev.Error)
|
|
|
|
|
|
if(Modes.DecodeMode10(cmdBuf, dev.ScsiType).HasValue)
|
|
|
|
|
|
{
|
|
|
|
|
|
decMode = Modes.DecodeMode10(cmdBuf, dev.ScsiType);
|
|
|
|
|
|
ret = outputPlugin.WriteMediaTag(cmdBuf, MediaTagType.SCSI_MODESENSE_10);
|
|
|
|
|
|
|
|
|
|
|
|
if(!ret && !force)
|
|
|
|
|
|
{
|
|
|
|
|
|
dumpLog.WriteLine($"Cannot write SCSI MODE SENSE (10).");
|
|
|
|
|
|
throw new ArgumentException(outputPlugin.ErrorMessage);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dumpLog.WriteLine("Requesting MODE SENSE (6).");
|
|
|
|
|
|
sense = dev.ModeSense6(out cmdBuf, out _, false, ScsiModeSensePageControl.Current, 0x3F,
|
|
|
|
|
|
0x00, 5, out _);
|
|
|
|
|
|
if(sense || dev.Error)
|
|
|
|
|
|
sense = dev.ModeSense6(out cmdBuf, out _, false, ScsiModeSensePageControl.Current, 0x3F,
|
|
|
|
|
|
0x00, 5, out _);
|
|
|
|
|
|
if(sense || dev.Error) sense = dev.ModeSense(out cmdBuf, out _, 5, out _);
|
|
|
|
|
|
|
|
|
|
|
|
if(!sense && !dev.Error)
|
|
|
|
|
|
if(Modes.DecodeMode6(cmdBuf, dev.ScsiType).HasValue)
|
|
|
|
|
|
{
|
|
|
|
|
|
decMode = Modes.DecodeMode6(cmdBuf, dev.ScsiType);
|
|
|
|
|
|
ret = outputPlugin.WriteMediaTag(cmdBuf, MediaTagType.SCSI_MODESENSE_6);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-01-19 01:21:01 +00:00
|
|
|
|
if(!ret && !force)
|
|
|
|
|
|
{
|
|
|
|
|
|
dumpLog.WriteLine($"Cannot write SCSI MODE SENSE (6).");
|
|
|
|
|
|
throw new ArgumentException(outputPlugin.ErrorMessage);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-02-01 01:20:41 +00:00
|
|
|
|
resume.BadBlocks.Sort();
|
2018-02-01 15:16:29 +00:00
|
|
|
|
foreach(ulong bad in resume.BadBlocks) dumpLog.WriteLine("Sector {0} could not be read.", bad);
|
2018-02-01 01:20:41 +00:00
|
|
|
|
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
|
|
|
|
|
|
|
2018-01-28 20:29:46 +00:00
|
|
|
|
outputPlugin.SetDumpHardware(resume.Tries);
|
2018-01-28 21:18:52 +00:00
|
|
|
|
if(preSidecar != null) outputPlugin.SetCicmMetadata(preSidecar);
|
2018-01-19 01:21:01 +00:00
|
|
|
|
dumpLog.WriteLine("Closing output file.");
|
|
|
|
|
|
DicConsole.WriteLine("Closing output file.");
|
2018-02-02 15:32:53 +00:00
|
|
|
|
DateTime closeStart = DateTime.Now;
|
2018-01-19 01:21:01 +00:00
|
|
|
|
outputPlugin.Close();
|
2018-02-02 15:32:53 +00:00
|
|
|
|
DateTime closeEnd = DateTime.Now;
|
|
|
|
|
|
dumpLog.WriteLine("Closed in {0} seconds.", (closeEnd - closeStart).TotalSeconds);
|
2018-01-19 01:21:01 +00:00
|
|
|
|
|
|
|
|
|
|
if(aborted)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2018-01-19 01:21:01 +00:00
|
|
|
|
dumpLog.WriteLine("Aborted!");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
double totalChkDuration = 0;
|
|
|
|
|
|
if(!nometadata)
|
|
|
|
|
|
{
|
|
|
|
|
|
dumpLog.WriteLine("Creating sidecar.");
|
|
|
|
|
|
FiltersList filters = new FiltersList();
|
|
|
|
|
|
IFilter filter = filters.GetFilter(outputPath);
|
|
|
|
|
|
IMediaImage inputPlugin = ImageFormat.Detect(filter);
|
|
|
|
|
|
if(!inputPlugin.Open(filter)) throw new ArgumentException("Could not open created image.");
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
DateTime chkStart = DateTime.UtcNow;
|
|
|
|
|
|
CICMMetadataType sidecar = Sidecar.Create(inputPlugin, outputPath, filter.Id, encoding);
|
2018-04-02 23:08:26 +01:00
|
|
|
|
end = DateTime.UtcNow;
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-04-02 23:08:26 +01:00
|
|
|
|
totalChkDuration = (end - chkStart).TotalMilliseconds;
|
2018-02-02 22:03:19 +00:00
|
|
|
|
dumpLog.WriteLine("Sidecar created in {0} seconds.", (end - chkStart).TotalSeconds);
|
|
|
|
|
|
dumpLog.WriteLine("Average checksum speed {0:F3} KiB/sec.",
|
|
|
|
|
|
(double)blockSize * (double)(blocks + 1) / 1024 / (totalChkDuration / 1000));
|
2018-01-19 01:21:01 +00:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
if(opticalDisc)
|
2018-01-28 21:18:52 +00:00
|
|
|
|
{
|
2018-02-02 22:03:19 +00:00
|
|
|
|
if(preSidecar != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
preSidecar.OpticalDisc = sidecar.OpticalDisc;
|
|
|
|
|
|
sidecar = preSidecar;
|
|
|
|
|
|
}
|
2018-01-28 21:18:52 +00:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
List<(ulong start, string type)> filesystems = new List<(ulong start, string type)>();
|
|
|
|
|
|
if(sidecar.OpticalDisc[0].Track != null)
|
|
|
|
|
|
filesystems.AddRange(from xmlTrack in sidecar.OpticalDisc[0].Track
|
|
|
|
|
|
where xmlTrack.FileSystemInformation != null
|
|
|
|
|
|
from partition in xmlTrack.FileSystemInformation
|
|
|
|
|
|
where partition.FileSystems != null
|
|
|
|
|
|
from fileSystem in partition.FileSystems
|
|
|
|
|
|
select ((ulong)partition.StartSector, fileSystem.Type));
|
|
|
|
|
|
|
|
|
|
|
|
if(filesystems.Count > 0)
|
|
|
|
|
|
foreach(var filesystem in filesystems.Select(o => new {o.start, o.type}).Distinct())
|
|
|
|
|
|
dumpLog.WriteLine("Found filesystem {0} at sector {1}", filesystem.type, filesystem.start);
|
|
|
|
|
|
// TODO: Implement layers
|
|
|
|
|
|
sidecar.OpticalDisc[0].Dimensions = Dimensions.DimensionsFromMediaType(dskType);
|
|
|
|
|
|
Metadata.MediaType.MediaTypeToString(dskType, out string xmlDskTyp, out string xmlDskSubTyp);
|
|
|
|
|
|
sidecar.OpticalDisc[0].DiscType = xmlDskTyp;
|
|
|
|
|
|
sidecar.OpticalDisc[0].DiscSubType = xmlDskSubTyp;
|
|
|
|
|
|
sidecar.OpticalDisc[0].DumpHardwareArray = resume.Tries.ToArray();
|
2018-01-28 21:18:52 +00:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
foreach(KeyValuePair<MediaTagType, byte[]> tag in mediaTags)
|
|
|
|
|
|
if(outputPlugin.SupportedMediaTags.Contains(tag.Key))
|
|
|
|
|
|
Mmc.AddMediaTagToSidecar(outputPath, tag, ref sidecar);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2018-02-02 22:03:19 +00:00
|
|
|
|
if(preSidecar != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
preSidecar.BlockMedia = sidecar.BlockMedia;
|
|
|
|
|
|
sidecar = preSidecar;
|
|
|
|
|
|
}
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
// All USB flash drives report as removable, even if the media is not removable
|
|
|
|
|
|
if(!dev.IsRemovable || dev.IsUsb)
|
2018-01-19 01:21:01 +00:00
|
|
|
|
{
|
2018-02-02 22:03:19 +00:00
|
|
|
|
if(dev.IsUsb)
|
|
|
|
|
|
if(outputPlugin.SupportedMediaTags.Contains(MediaTagType.USB_Descriptors))
|
|
|
|
|
|
sidecar.BlockMedia[0].USB = new USBType
|
2018-01-19 01:21:01 +00:00
|
|
|
|
{
|
2018-04-02 23:08:26 +01:00
|
|
|
|
ProductID = dev.UsbProductId,
|
|
|
|
|
|
VendorID = dev.UsbVendorId,
|
2018-02-02 22:03:19 +00:00
|
|
|
|
Descriptors = new DumpType
|
2018-01-19 01:21:01 +00:00
|
|
|
|
{
|
|
|
|
|
|
Image = outputPath,
|
2018-02-02 22:03:19 +00:00
|
|
|
|
Size = dev.UsbDescriptors.Length,
|
|
|
|
|
|
Checksums = Checksum.GetChecksums(dev.UsbDescriptors).ToArray()
|
2018-01-19 01:21:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
};
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
byte[] cmdBuf;
|
|
|
|
|
|
if(dev.Type == DeviceType.ATAPI)
|
|
|
|
|
|
{
|
|
|
|
|
|
sense = dev.AtapiIdentify(out cmdBuf, out _);
|
|
|
|
|
|
if(!sense)
|
|
|
|
|
|
if(outputPlugin.SupportedMediaTags.Contains(MediaTagType.ATAPI_IDENTIFY))
|
|
|
|
|
|
sidecar.BlockMedia[0].ATA = new ATAType
|
|
|
|
|
|
{
|
|
|
|
|
|
Identify = new DumpType
|
|
|
|
|
|
{
|
|
|
|
|
|
Image = outputPath,
|
|
|
|
|
|
Size = cmdBuf.Length,
|
|
|
|
|
|
Checksums = Checksum.GetChecksums(cmdBuf).ToArray()
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
2017-07-19 16:31:08 +01:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
sense = dev.ScsiInquiry(out cmdBuf, out _);
|
2018-01-19 01:21:01 +00:00
|
|
|
|
if(!sense)
|
2017-05-31 01:00:58 +01:00
|
|
|
|
{
|
2018-02-02 22:03:19 +00:00
|
|
|
|
if(outputPlugin.SupportedMediaTags.Contains(MediaTagType.SCSI_INQUIRY))
|
|
|
|
|
|
sidecar.BlockMedia[0].SCSI = new SCSIType
|
|
|
|
|
|
{
|
|
|
|
|
|
Inquiry = new DumpType
|
|
|
|
|
|
{
|
|
|
|
|
|
Image = outputPath,
|
|
|
|
|
|
Size = cmdBuf.Length,
|
|
|
|
|
|
Checksums = Checksum.GetChecksums(cmdBuf).ToArray()
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2017-12-21 06:06:19 +00:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
// TODO: SCSI Extended Vendor Page descriptors
|
|
|
|
|
|
/*
|
|
|
|
|
|
dumpLog.WriteLine("Reading SCSI Extended Vendor Page Descriptors.");
|
|
|
|
|
|
sense = dev.ScsiInquiry(out cmdBuf, out _, 0x00);
|
|
|
|
|
|
if(!sense)
|
2017-12-23 17:41:23 +00:00
|
|
|
|
{
|
2018-02-02 22:03:19 +00:00
|
|
|
|
byte[] pages = EVPD.DecodePage00(cmdBuf);
|
|
|
|
|
|
|
|
|
|
|
|
if(pages != null)
|
2018-01-19 01:21:01 +00:00
|
|
|
|
{
|
2018-02-02 22:03:19 +00:00
|
|
|
|
List<EVPDType> evpds = new List<EVPDType>();
|
|
|
|
|
|
foreach(byte page in pages)
|
2018-01-19 01:21:01 +00:00
|
|
|
|
{
|
2018-02-02 22:03:19 +00:00
|
|
|
|
dumpLog.WriteLine("Requesting page {0:X2}h.", page);
|
|
|
|
|
|
sense = dev.ScsiInquiry(out cmdBuf, out _, page);
|
|
|
|
|
|
if(sense) continue;
|
|
|
|
|
|
|
|
|
|
|
|
EVPDType evpd = new EVPDType
|
|
|
|
|
|
{
|
|
|
|
|
|
Image = $"{outputPrefix}.evpd_{page:X2}h.bin",
|
|
|
|
|
|
Checksums = Checksum.GetChecksums(cmdBuf).ToArray(),
|
|
|
|
|
|
Size = cmdBuf.Length
|
|
|
|
|
|
};
|
|
|
|
|
|
evpd.Checksums = Checksum.GetChecksums(cmdBuf).ToArray();
|
|
|
|
|
|
DataFile.WriteTo("SCSI Dump", evpd.Image, cmdBuf);
|
|
|
|
|
|
evpds.Add(evpd);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(evpds.Count > 0) sidecar.BlockMedia[0].SCSI.EVPD = evpds.ToArray();
|
2018-01-19 01:21:01 +00:00
|
|
|
|
}
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
2018-02-02 22:03:19 +00:00
|
|
|
|
*/
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
dumpLog.WriteLine("Requesting MODE SENSE (10).");
|
2018-01-19 01:21:01 +00:00
|
|
|
|
sense = dev.ModeSense10(out cmdBuf, out _, false, true, ScsiModeSensePageControl.Current,
|
2018-02-02 22:03:19 +00:00
|
|
|
|
0x3F, 0xFF, 5, out _);
|
|
|
|
|
|
if(!sense || dev.Error)
|
|
|
|
|
|
sense = dev.ModeSense10(out cmdBuf, out _, false, true,
|
|
|
|
|
|
ScsiModeSensePageControl.Current, 0x3F, 0x00, 5, out _);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
decMode = null;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
if(!sense && !dev.Error)
|
|
|
|
|
|
if(Modes.DecodeMode10(cmdBuf, dev.ScsiType).HasValue)
|
|
|
|
|
|
if(outputPlugin.SupportedMediaTags.Contains(MediaTagType.SCSI_MODESENSE_10))
|
|
|
|
|
|
sidecar.BlockMedia[0].SCSI.ModeSense10 = new DumpType
|
|
|
|
|
|
{
|
|
|
|
|
|
Image = outputPath,
|
|
|
|
|
|
Size = cmdBuf.Length,
|
|
|
|
|
|
Checksums = Checksum.GetChecksums(cmdBuf).ToArray()
|
|
|
|
|
|
};
|
2018-01-19 01:21:01 +00:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
dumpLog.WriteLine("Requesting MODE SENSE (6).");
|
2018-01-19 01:21:01 +00:00
|
|
|
|
sense = dev.ModeSense6(out cmdBuf, out _, false, ScsiModeSensePageControl.Current, 0x3F,
|
|
|
|
|
|
0x00, 5, out _);
|
2018-02-02 22:03:19 +00:00
|
|
|
|
if(sense || dev.Error)
|
|
|
|
|
|
sense = dev.ModeSense6(out cmdBuf, out _, false, ScsiModeSensePageControl.Current, 0x3F,
|
|
|
|
|
|
0x00, 5, out _);
|
|
|
|
|
|
if(sense || dev.Error) sense = dev.ModeSense(out cmdBuf, out _, 5, out _);
|
2018-01-19 01:21:01 +00:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
if(!sense && !dev.Error)
|
|
|
|
|
|
if(Modes.DecodeMode6(cmdBuf, dev.ScsiType).HasValue)
|
|
|
|
|
|
if(outputPlugin.SupportedMediaTags.Contains(MediaTagType.SCSI_MODESENSE_6))
|
|
|
|
|
|
sidecar.BlockMedia[0].SCSI.ModeSense = new DumpType
|
|
|
|
|
|
{
|
|
|
|
|
|
Image = outputPath,
|
|
|
|
|
|
Size = cmdBuf.Length,
|
|
|
|
|
|
Checksums = Checksum.GetChecksums(cmdBuf).ToArray()
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
2018-01-19 01:21:01 +00:00
|
|
|
|
}
|
2018-02-02 22:03:19 +00:00
|
|
|
|
|
|
|
|
|
|
List<(ulong start, string type)> filesystems = new List<(ulong start, string type)>();
|
|
|
|
|
|
if(sidecar.BlockMedia[0].FileSystemInformation != null)
|
|
|
|
|
|
filesystems.AddRange(from partition in sidecar.BlockMedia[0].FileSystemInformation
|
|
|
|
|
|
where partition.FileSystems != null
|
|
|
|
|
|
from fileSystem in partition.FileSystems
|
|
|
|
|
|
select ((ulong)partition.StartSector, fileSystem.Type));
|
|
|
|
|
|
|
|
|
|
|
|
if(filesystems.Count > 0)
|
|
|
|
|
|
foreach(var filesystem in filesystems.Select(o => new {o.start, o.type}).Distinct())
|
|
|
|
|
|
dumpLog.WriteLine("Found filesystem {0} at sector {1}", filesystem.type, filesystem.start);
|
|
|
|
|
|
sidecar.BlockMedia[0].Dimensions = Dimensions.DimensionsFromMediaType(dskType);
|
|
|
|
|
|
Metadata.MediaType.MediaTypeToString(dskType, out string xmlDskTyp, out string xmlDskSubTyp);
|
|
|
|
|
|
sidecar.BlockMedia[0].DiskType = xmlDskTyp;
|
|
|
|
|
|
sidecar.BlockMedia[0].DiskSubType = xmlDskSubTyp;
|
|
|
|
|
|
// TODO: Implement device firmware revision
|
|
|
|
|
|
if(!dev.IsRemovable || dev.IsUsb)
|
|
|
|
|
|
if(dev.Type == DeviceType.ATAPI)
|
2018-04-02 23:08:26 +01:00
|
|
|
|
sidecar.BlockMedia[0].Interface = "ATAPI";
|
|
|
|
|
|
else if(dev.IsUsb) sidecar.BlockMedia[0].Interface = "USB";
|
|
|
|
|
|
else if(dev.IsFireWire) sidecar.BlockMedia[0].Interface = "FireWire";
|
|
|
|
|
|
else sidecar.BlockMedia[0].Interface = "SCSI";
|
2018-02-02 22:03:19 +00:00
|
|
|
|
sidecar.BlockMedia[0].LogicalBlocks = (long)blocks;
|
|
|
|
|
|
sidecar.BlockMedia[0].PhysicalBlockSize = (int)physicalBlockSize;
|
|
|
|
|
|
sidecar.BlockMedia[0].LogicalBlockSize = (int)logicalBlockSize;
|
|
|
|
|
|
sidecar.BlockMedia[0].Manufacturer = dev.Manufacturer;
|
|
|
|
|
|
sidecar.BlockMedia[0].Model = dev.Model;
|
|
|
|
|
|
sidecar.BlockMedia[0].Serial = dev.Serial;
|
|
|
|
|
|
sidecar.BlockMedia[0].Size = (long)(blocks * blockSize);
|
|
|
|
|
|
|
|
|
|
|
|
if(dev.IsRemovable) sidecar.BlockMedia[0].DumpHardwareArray = resume.Tries.ToArray();
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2018-02-02 22:03:19 +00:00
|
|
|
|
DicConsole.WriteLine("Writing metadata sidecar");
|
|
|
|
|
|
|
|
|
|
|
|
FileStream xmlFs = new FileStream(outputPrefix + ".cicm.xml", FileMode.Create);
|
|
|
|
|
|
|
|
|
|
|
|
XmlSerializer xmlSer = new XmlSerializer(typeof(CICMMetadataType));
|
|
|
|
|
|
xmlSer.Serialize(xmlFs, sidecar);
|
|
|
|
|
|
xmlFs.Close();
|
2017-05-31 01:00:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.WriteLine();
|
2018-02-02 15:32:53 +00:00
|
|
|
|
DicConsole.WriteLine("Took a total of {0:F3} seconds ({1:F3} processing commands, {2:F3} checksumming, {3:F3} writing, {4:F3} closing).",
|
2018-02-02 18:44:28 +00:00
|
|
|
|
(end - start).TotalSeconds, totalDuration / 1000,
|
|
|
|
|
|
totalChkDuration / 1000,
|
|
|
|
|
|
imageWriteDuration, (closeEnd - closeStart).TotalSeconds);
|
2017-12-19 20:33:03 +00:00
|
|
|
|
DicConsole.WriteLine("Avegare speed: {0:F3} MiB/sec.",
|
2017-12-20 17:26:28 +00:00
|
|
|
|
(double)blockSize * (double)(blocks + 1) / 1048576 / (totalDuration / 1000));
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.WriteLine("Fastest speed burst: {0:F3} MiB/sec.", maxSpeed);
|
|
|
|
|
|
DicConsole.WriteLine("Slowest speed burst: {0:F3} MiB/sec.", minSpeed);
|
2018-01-19 01:21:01 +00:00
|
|
|
|
DicConsole.WriteLine("{0} sectors could not be read.", resume.BadBlocks.Count);
|
2017-05-31 01:00:58 +01:00
|
|
|
|
DicConsole.WriteLine();
|
|
|
|
|
|
|
|
|
|
|
|
Statistics.AddMedia(dskType, true);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
}
|