Files
Aaru/Aaru.Core/Devices/Dumping/SSC.cs

1518 lines
63 KiB
C#
Raw Normal View History

// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : SSC.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Core algorithms.
//
// --[ Description ] ----------------------------------------------------------
//
// Dumps media from SCSI Streaming devices.
//
// --[ 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/>.
//
// ----------------------------------------------------------------------------
2024-12-19 10:45:18 +00:00
// Copyright © 2011-2025 Natalia Portillo
// ****************************************************************************/
2022-03-07 07:36:44 +00:00
// ReSharper disable JoinDeclarationAndInitializer
using System;
2019-05-03 00:24:30 +01:00
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.Json;
2017-12-21 14:30:38 +00:00
using System.Threading;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes;
using Aaru.CommonTypes.AaruMetadata;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Extents;
using Aaru.CommonTypes.Interfaces;
2020-02-29 18:03:35 +00:00
using Aaru.Core.Logging;
2020-02-27 00:33:26 +00:00
using Aaru.Decoders.SCSI;
using Aaru.Decoders.SCSI.SSC;
using Aaru.Devices;
2020-07-20 15:43:52 +01:00
using Aaru.Helpers;
using Aaru.Logging;
2023-09-26 02:40:11 +01:00
using Humanizer;
using Humanizer.Bytes;
2023-09-26 03:39:10 +01:00
using Humanizer.Localisation;
using TapeFile = Aaru.CommonTypes.Structs.TapeFile;
using TapePartition = Aaru.CommonTypes.Structs.TapePartition;
2020-02-27 00:33:26 +00:00
using Version = Aaru.CommonTypes.Interop.Version;
namespace Aaru.Core.Devices.Dumping;
2022-03-06 13:29:38 +00:00
partial class Dump
{
2022-03-06 13:29:38 +00:00
/// <summary>Dumps the tape from a SCSI Streaming device</summary>
void Ssc()
{
2022-03-06 13:29:38 +00:00
DecodedSense? decSense;
bool sense;
uint blockSize;
2022-03-17 23:54:41 +00:00
ulong blocks = 0;
MediaType dskType;
2022-03-06 13:29:38 +00:00
double totalDuration = 0;
double currentSpeed = 0;
double maxSpeed = double.MinValue;
double minSpeed = double.MaxValue;
var outputTape = _outputPlugin as IWritableTapeImage;
2025-08-22 19:57:09 +01:00
_dev.RequestSense(out byte[] buffer, _dev.Timeout, out double duration);
decSense = Sense.Decode(buffer);
2022-03-06 13:29:38 +00:00
InitProgress?.Invoke();
if(decSense.HasValue && decSense?.SenseKey != SenseKeys.NoSense)
{
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense?.SenseKey,
decSense?.ASC,
decSense?.ASCQ);
StoppingErrorMessage?.Invoke(Localization.Core.Drive_has_status_error_please_correct_Sense_follows +
Environment.NewLine +
decSense?.Description);
2022-03-06 13:29:38 +00:00
return;
}
2025-08-22 19:57:09 +01:00
ReadOnlySpan<byte> senseBuf;
2022-03-06 13:29:38 +00:00
// Not in BOM/P
if(decSense is { ASC: 0x00 } &&
decSense?.ASCQ != 0x00 &&
decSense?.ASCQ != 0x04 &&
decSense?.SenseKey != SenseKeys.IllegalRequest)
2022-03-06 13:29:38 +00:00
{
PulseProgress?.Invoke(Localization.Core.Rewinding_please_wait);
2022-03-06 13:29:38 +00:00
// Rewind, let timeout apply
_dev.Rewind(out senseBuf, _dev.Timeout, out duration);
2022-03-06 13:29:38 +00:00
// Still rewinding?
// TODO: Pause?
do
{
PulseProgress?.Invoke(Localization.Core.Rewinding_please_wait);
2025-08-22 19:57:09 +01:00
_dev.RequestSense(out buffer, _dev.Timeout, out duration);
decSense = Sense.Decode(buffer);
2022-03-17 23:54:41 +00:00
} while(decSense is { ASC: 0x00, ASCQ: 0x1A or not (0x04 and 0x00) });
2022-03-06 13:29:38 +00:00
2025-08-22 19:57:09 +01:00
_dev.RequestSense(out buffer, _dev.Timeout, out duration);
decSense = Sense.Decode(buffer);
2022-03-06 13:29:38 +00:00
// And yet, did not rewind!
if(decSense.HasValue &&
(decSense?.ASC == 0x00 && decSense?.ASCQ != 0x04 && decSense?.ASCQ != 0x00 || decSense?.ASC != 0x00))
{
StoppingErrorMessage?.Invoke(Localization.Core.Drive_could_not_rewind_please_correct_Sense_follows +
Environment.NewLine +
decSense?.Description);
2022-03-06 13:29:38 +00:00
AaruLogging.WriteLine(Localization.Core.Drive_could_not_rewind_please_correct_Sense_follows);
2022-03-06 13:29:38 +00:00
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense?.SenseKey,
decSense?.ASC,
decSense?.ASCQ);
return;
}
2022-03-06 13:29:38 +00:00
}
// Check position
2022-03-07 07:36:44 +00:00
sense = _dev.ReadPosition(out byte[] cmdBuf, out senseBuf, SscPositionForms.Short, _dev.Timeout, out duration);
2022-03-06 13:29:38 +00:00
if(sense)
{
// READ POSITION is mandatory starting SCSI-2, so do not cry if the drive does not recognize the command (SCSI-1 or earlier)
// Anyway, <=SCSI-1 tapes do not support partitions
decSense = Sense.Decode(senseBuf);
2022-03-06 13:29:38 +00:00
if(decSense.HasValue &&
(decSense?.ASC == 0x20 && decSense?.ASCQ != 0x00 ||
decSense?.ASC != 0x20 && decSense?.SenseKey != SenseKeys.IllegalRequest))
{
StoppingErrorMessage?.Invoke(Localization.Core.Could_not_get_position_Sense_follows +
Environment.NewLine +
decSense?.Description);
2022-03-06 13:29:38 +00:00
AaruLogging.WriteLine(Localization.Core.Could_not_get_position_Sense_follows);
2022-03-06 13:29:38 +00:00
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense?.SenseKey,
decSense?.ASC,
decSense?.ASCQ);
2022-03-06 13:29:38 +00:00
return;
}
}
else
{
// Not in partition 0
if(cmdBuf[1] != 0)
{
UpdateStatus?.Invoke(Localization.Core.Drive_not_in_partition_0_Rewinding_please_wait);
// Rewind, let timeout apply
2022-03-06 13:29:38 +00:00
sense = _dev.Locate(out senseBuf, false, 0, 0, _dev.Timeout, out duration);
if(sense)
{
StoppingErrorMessage?.Invoke(Localization.Core.Drive_could_not_rewind_please_correct_Sense_follows +
Environment.NewLine +
decSense?.Description);
2022-03-06 13:29:38 +00:00
AaruLogging.WriteLine(Localization.Core.Drive_could_not_rewind_please_correct_Sense_follows);
2022-03-06 13:29:38 +00:00
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense?.SenseKey,
decSense?.ASC,
decSense?.ASCQ);
2022-03-06 13:29:38 +00:00
return;
}
// Still rewinding?
// TODO: Pause?
do
{
2022-03-06 13:29:38 +00:00
Thread.Sleep(1000);
PulseProgress?.Invoke(Localization.Core.Rewinding_please_wait);
2025-08-22 19:57:09 +01:00
_dev.RequestSense(out buffer, _dev.Timeout, out duration);
decSense = Sense.Decode(buffer);
} while(decSense is { ASC: 0x00, ASCQ: 0x1A or 0x19 });
// And yet, did not rewind!
if(decSense.HasValue &&
(decSense?.ASC == 0x00 && decSense?.ASCQ != 0x04 && decSense?.ASCQ != 0x00 || decSense?.ASC != 0x00))
{
StoppingErrorMessage?.Invoke(Localization.Core.Drive_could_not_rewind_please_correct_Sense_follows +
Environment.NewLine +
decSense?.Description);
AaruLogging.WriteLine(Localization.Core.Drive_could_not_rewind_please_correct_Sense_follows);
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense?.SenseKey,
decSense?.ASC,
decSense?.ASCQ);
return;
}
2022-03-07 07:36:44 +00:00
sense = _dev.ReadPosition(out cmdBuf, out senseBuf, SscPositionForms.Short, _dev.Timeout, out duration);
2022-03-06 13:29:38 +00:00
if(sense)
{
2022-03-06 13:29:38 +00:00
decSense = Sense.Decode(senseBuf);
StoppingErrorMessage?.Invoke(Localization.Core.Drive_could_not_rewind_please_correct_Sense_follows +
Environment.NewLine +
decSense?.Description);
AaruLogging.WriteLine(Localization.Core.Drive_could_not_rewind_please_correct_Sense_follows);
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense?.SenseKey,
decSense?.ASC,
decSense?.ASCQ);
return;
}
2022-03-06 13:29:38 +00:00
// Still not in partition 0!!!?
if(cmdBuf[1] != 0)
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(Localization.Core
.Drive_could_not_rewind_to_partition_0_but_no_error_occurred);
2022-03-06 13:29:38 +00:00
return;
}
}
}
2022-03-06 13:29:38 +00:00
EndProgress?.Invoke();
2022-03-06 13:29:38 +00:00
byte scsiMediumTypeTape = 0;
byte scsiDensityCodeTape = 0;
byte[] mode6Data = null;
byte[] mode10Data = null;
UpdateStatus?.Invoke(Localization.Core.Requesting_MODE_SENSE_10);
2024-05-01 04:05:22 +01:00
sense = _dev.ModeSense10(out cmdBuf,
out senseBuf,
false,
true,
ScsiModeSensePageControl.Current,
0x3F,
0xFF,
5,
2022-03-07 07:36:44 +00:00
out duration);
if(!sense || _dev.Error)
2023-10-03 22:57:50 +01:00
{
2024-05-01 04:05:22 +01:00
sense = _dev.ModeSense10(out cmdBuf,
out senseBuf,
false,
true,
ScsiModeSensePageControl.Current,
0x3F,
0x00,
5,
out duration);
2023-10-03 22:57:50 +01:00
}
2022-03-06 13:29:38 +00:00
Modes.DecodedMode? decMode = null;
if(!sense && !_dev.Error)
{
if(Modes.DecodeMode10(cmdBuf, _dev.ScsiType).HasValue) decMode = Modes.DecodeMode10(cmdBuf, _dev.ScsiType);
}
UpdateStatus?.Invoke(Localization.Core.Requesting_MODE_SENSE_6);
2024-05-01 04:05:22 +01:00
sense = _dev.ModeSense6(out cmdBuf,
out senseBuf,
false,
ScsiModeSensePageControl.Current,
0x3F,
0x00,
5,
2022-03-06 13:29:38 +00:00
out duration);
2022-03-06 13:29:38 +00:00
if(sense || _dev.Error)
2023-10-03 22:57:50 +01:00
{
2024-05-01 04:05:22 +01:00
sense = _dev.ModeSense6(out cmdBuf,
out senseBuf,
false,
ScsiModeSensePageControl.Current,
0x3F,
0x00,
5,
2022-03-07 07:36:44 +00:00
out duration);
2023-10-03 22:57:50 +01:00
}
2024-05-01 04:05:22 +01:00
if(sense || _dev.Error) sense = _dev.ModeSense(out cmdBuf, out senseBuf, 5, out duration);
if(!sense && !_dev.Error)
{
if(Modes.DecodeMode6(cmdBuf, _dev.ScsiType).HasValue) decMode = Modes.DecodeMode6(cmdBuf, _dev.ScsiType);
}
2022-03-06 13:29:38 +00:00
// TODO: Check partitions page
if(decMode.HasValue)
{
scsiMediumTypeTape = (byte)(decMode?.Header.MediumType ?? default(MediumTypes));
if(decMode?.Header.BlockDescriptors?.Length > 0)
scsiDensityCodeTape = (byte)(decMode?.Header.BlockDescriptors[0].Density ?? default(DensityType));
blockSize = decMode?.Header.BlockDescriptors?[0].BlockLength ?? 0;
UpdateStatus?.Invoke(string.Format(Localization.Core.Device_reports_0_blocks, blocks));
2022-03-06 13:29:38 +00:00
}
else
blockSize = 1;
2022-03-06 13:29:38 +00:00
if(!_dev.ReadBlockLimits(out cmdBuf, out senseBuf, _dev.Timeout, out _))
{
BlockLimits.BlockLimitsData? blockLimits = BlockLimits.Decode(cmdBuf);
2024-05-01 04:05:22 +01:00
if(blockLimits?.minBlockLen > blockSize) blockSize = blockLimits?.minBlockLen ?? 0;
2022-03-06 13:29:38 +00:00
}
2024-05-01 04:05:22 +01:00
if(blockSize == 0) blockSize = 1;
2024-05-01 04:05:22 +01:00
dskType = MediaTypeFromDevice.GetFromScsi((byte)_dev.ScsiType,
_dev.Manufacturer,
_dev.Model,
scsiMediumTypeTape,
scsiDensityCodeTape,
blocks,
blockSize,
_dev.IsUsb,
false);
2024-05-01 04:05:22 +01:00
if(dskType == MediaType.Unknown) dskType = MediaType.UnknownTape;
2023-10-03 22:57:50 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core.SCSI_device_type_0, _dev.ScsiType));
UpdateStatus?.Invoke(string.Format(Localization.Core.SCSI_medium_type_0, scsiMediumTypeTape));
UpdateStatus?.Invoke(string.Format(Localization.Core.SCSI_density_type_0, scsiDensityCodeTape));
2025-08-23 00:13:52 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core.Media_identified_as_0, dskType.Humanize()));
var endOfMedia = false;
2022-03-06 13:29:38 +00:00
ulong currentBlock = 0;
uint currentFile = 0;
byte currentPartition = 0;
byte totalPartitions = 1; // TODO: Handle partitions.
var fixedLen = false;
2022-03-06 13:29:38 +00:00
uint transferLen = blockSize;
2023-10-03 22:57:50 +01:00
firstRead:
2024-05-01 04:05:22 +01:00
sense = _dev.Read6(out cmdBuf,
out senseBuf,
false,
fixedLen,
transferLen,
blockSize,
_dev.Timeout,
2022-03-06 13:29:38 +00:00
out duration);
2022-03-06 13:29:38 +00:00
if(sense)
{
decSense = Sense.Decode(senseBuf);
2022-03-06 13:29:38 +00:00
if(decSense.HasValue)
2023-10-03 22:57:50 +01:00
{
2023-10-04 09:38:17 +01:00
switch(decSense)
2022-03-06 13:29:38 +00:00
{
2023-10-04 09:38:17 +01:00
case { SenseKey: SenseKeys.IllegalRequest }:
2022-03-06 13:29:38 +00:00
{
2023-10-04 09:38:17 +01:00
sense = _dev.Space(out senseBuf, SscSpaceCodes.LogicalBlock, -1, _dev.Timeout, out duration);
2023-10-04 09:38:17 +01:00
if(sense)
{
decSense = Sense.Decode(senseBuf);
2023-10-04 09:38:17 +01:00
bool eom = decSense?.Fixed?.EOM == true;
2023-10-04 09:38:17 +01:00
if(decSense?.Descriptor != null &&
decSense.Value.Descriptor.Value.Descriptors.TryGetValue(4, out byte[] sscDescriptor))
Sense.DecodeDescriptor04(sscDescriptor, out _, out eom, out _);
2023-10-04 09:38:17 +01:00
if(!eom)
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(Localization.Core
.Drive_could_not_return_back_Sense_follows +
Environment.NewLine +
decSense.Value.Description);
AaruLogging.WriteLine(Localization.Core.Drive_could_not_return_back_Sense_follows);
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense.Value.SenseKey,
decSense.Value.ASC,
decSense.Value.ASCQ);
2023-10-04 09:38:17 +01:00
return;
}
2022-03-06 13:29:38 +00:00
}
2023-10-04 09:38:17 +01:00
fixedLen = true;
transferLen = 1;
2024-05-01 04:05:22 +01:00
sense = _dev.Read6(out cmdBuf,
out senseBuf,
false,
fixedLen,
transferLen,
blockSize,
_dev.Timeout,
out duration);
2023-10-04 09:38:17 +01:00
if(sense)
{
decSense = Sense.Decode(senseBuf);
2017-11-20 05:07:16 +00:00
2023-10-04 09:38:17 +01:00
StoppingErrorMessage?.Invoke(Localization.Core.Drive_could_not_read_Sense_follows +
Environment.NewLine +
decSense.Value.Description);
AaruLogging.WriteLine(Localization.Core.Drive_could_not_read_Sense_follows);
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense.Value.SenseKey,
decSense.Value.ASC,
decSense.Value.ASCQ);
2023-10-04 09:38:17 +01:00
return;
}
2023-10-04 09:38:17 +01:00
break;
}
case { ASC: 0x00, ASCQ: 0x00 }:
{
2023-10-04 09:38:17 +01:00
bool ili = decSense.Value.Fixed?.ILI == true;
bool valid = decSense.Value.Fixed?.InformationValid == true;
uint information = decSense.Value.Fixed?.Information ?? 0;
2023-10-04 09:38:17 +01:00
if(decSense.Value.Descriptor.HasValue)
{
valid = decSense.Value.Descriptor.Value.Descriptors.TryGetValue(0, out byte[] desc00);
2024-05-01 04:05:22 +01:00
if(valid) information = (uint)Sense.DecodeDescriptor00(desc00);
2023-10-04 09:38:17 +01:00
if(decSense.Value.Descriptor.Value.Descriptors.TryGetValue(4, out byte[] desc04))
Sense.DecodeDescriptor04(desc04, out _, out _, out ili);
}
if(ili && valid)
{
blockSize = (uint)((int)blockSize -
BitConverter.ToInt32(BitConverter.GetBytes(information), 0));
2023-10-04 09:38:17 +01:00
transferLen = blockSize;
2024-05-01 04:05:22 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core
.Blocksize_changed_to_0_bytes_at_block_1,
blockSize,
currentBlock));
2024-05-01 04:05:22 +01:00
sense = _dev.Space(out senseBuf,
SscSpaceCodes.LogicalBlock,
-1,
_dev.Timeout,
2023-10-04 09:38:17 +01:00
out duration);
2023-10-04 09:38:17 +01:00
totalDuration += duration;
2023-10-04 09:38:17 +01:00
if(sense)
{
decSense = Sense.Decode(senseBuf);
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(Localization.Core
.Drive_could_not_go_back_one_block_Sense_follows +
Environment.NewLine +
decSense.Value.Description);
AaruLogging.WriteLine(Localization.Core
.Drive_could_not_go_back_one_block_Sense_follows);
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense.Value.SenseKey,
decSense.Value.ASC,
decSense.Value.ASCQ);
2023-10-04 09:38:17 +01:00
return;
}
2023-10-04 09:38:17 +01:00
goto firstRead;
}
2023-10-04 09:38:17 +01:00
StoppingErrorMessage?.Invoke(Localization.Core.Drive_could_not_read_Sense_follows +
Environment.NewLine +
decSense.Value.Description);
AaruLogging.WriteLine(Localization.Core.Drive_could_not_read_Sense_follows);
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense.Value.SenseKey,
decSense.Value.ASC,
decSense.Value.ASCQ);
2023-10-04 09:38:17 +01:00
return;
}
default:
StoppingErrorMessage?.Invoke(Localization.Core.Drive_could_not_read_Sense_follows +
Environment.NewLine +
decSense.Value.Description);
AaruLogging.WriteLine(Localization.Core.Drive_could_not_read_Sense_follows);
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense.Value.SenseKey,
decSense.Value.ASC,
decSense.Value.ASCQ);
2023-10-04 09:38:17 +01:00
return;
2022-03-06 13:29:38 +00:00
}
2023-10-03 22:57:50 +01:00
}
2022-03-06 13:29:38 +00:00
else
{
StoppingErrorMessage?.Invoke(Localization.Core.Cannot_read_device_dont_know_why_exiting);
2022-03-06 13:29:38 +00:00
return;
}
}
2022-03-06 13:29:38 +00:00
sense = _dev.Space(out senseBuf, SscSpaceCodes.LogicalBlock, -1, _dev.Timeout, out duration);
2022-03-06 13:29:38 +00:00
if(sense)
{
decSense = Sense.Decode(senseBuf);
2022-03-06 13:29:38 +00:00
bool eom = decSense?.Fixed?.EOM == true;
2022-03-06 13:29:38 +00:00
if(decSense.Value.Descriptor.HasValue &&
decSense.Value.Descriptor.Value.Descriptors.TryGetValue(4, out byte[] desc04))
Sense.DecodeDescriptor04(desc04, out _, out eom, out _);
2022-03-06 13:29:38 +00:00
if(!eom)
{
StoppingErrorMessage?.Invoke(Localization.Core.Drive_could_not_return_back_Sense_follows +
Environment.NewLine +
decSense.Value.Description);
AaruLogging.WriteLine(Localization.Core.Drive_could_not_return_back_Sense_follows);
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense.Value.SenseKey,
decSense.Value.ASC,
decSense.Value.ASCQ);
2022-03-06 13:29:38 +00:00
return;
}
2022-03-06 13:29:38 +00:00
}
DumpHardware currentTry = null;
ExtentsULong extents = null;
2024-05-01 04:05:22 +01:00
ResumeSupport.Process(true,
_dev.IsRemovable,
blocks,
_dev.Manufacturer,
_dev.Model,
_dev.Serial,
_dev.PlatformId,
ref _resume,
ref currentTry,
ref extents,
_dev.FirmwareRevision,
_private,
_force,
true);
if(currentTry == null || extents == null)
2022-03-06 13:29:38 +00:00
{
StoppingErrorMessage?.Invoke(Localization.Core.Could_not_process_resume_file_not_continuing);
2022-03-06 13:29:38 +00:00
return;
}
var canLocateLong = false;
var canLocate = false;
UpdateStatus?.Invoke(Localization.Core.Positioning_tape_to_block_1);
2022-03-06 13:29:38 +00:00
sense = _dev.Locate16(out senseBuf, 1, _dev.Timeout, out _);
2022-03-06 13:29:38 +00:00
if(!sense)
{
sense = _dev.ReadPositionLong(out cmdBuf, out senseBuf, _dev.Timeout, out _);
2022-03-06 13:29:38 +00:00
if(!sense)
2019-05-01 18:56:19 +01:00
{
2022-03-06 13:29:38 +00:00
ulong position = Swapping.Swap(BitConverter.ToUInt64(cmdBuf, 8));
2022-03-06 13:29:38 +00:00
if(position == 1)
{
canLocateLong = true;
UpdateStatus?.Invoke(Localization.Core.LOCATE_LONG_works);
2022-03-06 13:29:38 +00:00
}
2019-05-01 18:56:19 +01:00
}
2022-03-06 13:29:38 +00:00
}
2019-05-01 01:19:37 +01:00
2022-03-06 13:29:38 +00:00
sense = _dev.Locate(out senseBuf, 1, _dev.Timeout, out _);
2022-03-06 13:29:38 +00:00
if(!sense)
{
sense = _dev.ReadPosition(out cmdBuf, out senseBuf, _dev.Timeout, out _);
if(!sense)
{
2022-03-06 13:29:38 +00:00
ulong position = Swapping.Swap(BitConverter.ToUInt32(cmdBuf, 4));
2022-03-06 13:29:38 +00:00
if(position == 1)
{
2022-03-06 13:29:38 +00:00
canLocate = true;
UpdateStatus?.Invoke(Localization.Core.LOCATE_works);
}
}
2022-03-06 13:29:38 +00:00
}
2022-03-06 13:29:38 +00:00
if(_resume.NextBlock > 0)
{
UpdateStatus?.Invoke(string.Format(Localization.Core.Positioning_tape_to_block_0, _resume.NextBlock));
2022-03-06 13:29:38 +00:00
if(canLocateLong)
{
2022-03-06 13:29:38 +00:00
sense = _dev.Locate16(out senseBuf, _resume.NextBlock, _dev.Timeout, out _);
if(!sense)
{
2022-03-06 13:29:38 +00:00
sense = _dev.ReadPositionLong(out cmdBuf, out senseBuf, _dev.Timeout, out _);
2022-03-06 13:29:38 +00:00
if(sense)
{
2022-03-06 13:29:38 +00:00
if(!_force)
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(Localization.Core
.Could_not_check_current_position_unable_to_resume_If_you_want_to_continue_use_force);
2022-03-06 13:29:38 +00:00
return;
}
2019-05-01 01:19:37 +01:00
2024-05-01 04:05:22 +01:00
ErrorMessage?.Invoke(Localization.Core
.Could_not_check_current_position_unable_to_resume_Dumping_from_the_start);
2022-03-06 13:29:38 +00:00
canLocateLong = false;
}
else
2019-05-01 01:19:37 +01:00
{
2022-03-06 13:29:38 +00:00
ulong position = Swapping.Swap(BitConverter.ToUInt64(cmdBuf, 8));
2019-05-01 01:19:37 +01:00
2022-03-06 13:29:38 +00:00
if(position != _resume.NextBlock)
2019-05-01 01:19:37 +01:00
{
2019-12-25 18:07:05 +00:00
if(!_force)
2019-05-01 01:19:37 +01:00
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(Localization.Core
.Current_position_is_not_as_expected_unable_to_resume_If_you_want_to_continue_use_force);
return;
2019-05-01 01:19:37 +01:00
}
2024-05-01 04:05:22 +01:00
ErrorMessage?.Invoke(Localization.Core
.Current_position_is_not_as_expected_unable_to_resume_Dumping_from_the_start);
canLocateLong = false;
2019-05-01 01:19:37 +01:00
}
2022-03-06 13:29:38 +00:00
}
}
else
{
if(!_force)
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(Localization.Core
.Cannot_reposition_tape_unable_to_resume_If_you_want_to_continue_use_force);
2022-03-06 13:29:38 +00:00
return;
}
2024-05-01 04:05:22 +01:00
ErrorMessage?.Invoke(Localization.Core
.Cannot_reposition_tape_unable_to_resume_Dumping_from_the_start);
2022-03-06 13:29:38 +00:00
canLocateLong = false;
}
}
else if(canLocate)
{
sense = _dev.Locate(out senseBuf, (uint)_resume.NextBlock, _dev.Timeout, out _);
2022-03-06 13:29:38 +00:00
if(!sense)
{
sense = _dev.ReadPosition(out cmdBuf, out senseBuf, _dev.Timeout, out _);
2022-03-06 13:29:38 +00:00
if(sense)
{
2019-12-25 18:07:05 +00:00
if(!_force)
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(Localization.Core
.Could_not_check_current_position_unable_to_resume_If_you_want_to_continue_use_force);
return;
}
2024-05-01 04:05:22 +01:00
ErrorMessage?.Invoke(Localization.Core
.Could_not_check_current_position_unable_to_resume_Dumping_from_the_start);
2022-03-06 13:29:38 +00:00
canLocate = false;
}
else
{
2022-03-06 13:29:38 +00:00
ulong position = Swapping.Swap(BitConverter.ToUInt32(cmdBuf, 4));
2022-03-06 13:29:38 +00:00
if(position != _resume.NextBlock)
{
2019-12-25 18:07:05 +00:00
if(!_force)
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(Localization.Core
.Current_position_is_not_as_expected_unable_to_resume_If_you_want_to_continue_use_force);
return;
}
2024-05-01 04:05:22 +01:00
ErrorMessage?.Invoke(Localization.Core
.Current_position_is_not_as_expected_unable_to_resume_Dumping_from_the_start);
canLocate = false;
}
}
}
else
{
2019-12-25 18:07:05 +00:00
if(!_force)
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(Localization.Core
.Cannot_reposition_tape_unable_to_resume_If_you_want_to_continue_use_force);
return;
2019-05-01 01:19:37 +01:00
}
2024-05-01 04:05:22 +01:00
ErrorMessage?.Invoke(Localization.Core
.Cannot_reposition_tape_unable_to_resume_Dumping_from_the_start);
canLocate = false;
2019-05-01 01:19:37 +01:00
}
}
2019-05-01 23:21:16 +01:00
else
2019-05-01 01:19:37 +01:00
{
2022-03-06 13:29:38 +00:00
if(!_force)
2019-05-01 23:21:16 +01:00
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(Localization.Core
.Cannot_reposition_tape_unable_to_resume_If_you_want_to_continue_use_force);
2019-05-01 23:21:16 +01:00
return;
}
2022-03-06 13:29:38 +00:00
ErrorMessage?.Invoke(Localization.Core.Cannot_reposition_tape_unable_to_resume_Dumping_from_the_start);
2022-03-06 13:29:38 +00:00
canLocate = false;
2019-05-01 01:19:37 +01:00
}
2022-03-06 13:29:38 +00:00
}
else
{
2023-10-03 22:57:50 +01:00
_ = canLocateLong
? _dev.Locate16(out senseBuf, false, 0, 0, _dev.Timeout, out duration)
2022-03-06 13:29:38 +00:00
: _dev.Locate(out senseBuf, false, 0, 0, _dev.Timeout, out duration);
2019-05-01 01:19:37 +01:00
2022-03-06 13:29:38 +00:00
do
{
Thread.Sleep(1000);
PulseProgress?.Invoke(Localization.Core.Rewinding_please_wait);
2025-08-22 19:57:09 +01:00
_dev.RequestSense(out buffer, _dev.Timeout, out duration);
decSense = Sense.Decode(buffer);
} while(decSense is { ASC: 0x00, ASCQ: 0x1A or 0x19 });
2022-03-06 13:29:38 +00:00
// And yet, did not rewind!
if(decSense.HasValue &&
2023-10-03 22:57:50 +01:00
(decSense.Value.ASC == 0x00 && decSense.Value.ASCQ != 0x00 && decSense.Value.ASCQ != 0x04 ||
2022-03-06 13:29:38 +00:00
decSense.Value.ASC != 0x00))
{
StoppingErrorMessage?.Invoke(Localization.Core.Drive_could_not_rewind_please_correct_Sense_follows +
Environment.NewLine +
decSense.Value.Description);
AaruLogging.WriteLine(Localization.Core.Drive_could_not_rewind_please_correct_Sense_follows);
2022-03-06 13:29:38 +00:00
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense.Value.SenseKey,
decSense.Value.ASC,
decSense.Value.ASCQ);
return;
}
2022-03-06 13:29:38 +00:00
}
2022-03-06 13:29:38 +00:00
bool ret = outputTape.SetTape();
2019-04-30 23:33:33 +01:00
2022-03-06 13:29:38 +00:00
// Cannot set image to tape mode
if(!ret)
{
StoppingErrorMessage?.Invoke(Localization.Core.Error_setting_output_image_in_tape_mode_not_continuing +
Environment.NewLine +
outputTape.ErrorMessage);
2022-03-06 13:29:38 +00:00
return;
}
2019-04-30 23:33:33 +01:00
ret = outputTape.Create(_outputPath, dskType, _formatOptions, 0, 0, 0, 0);
2022-03-06 13:29:38 +00:00
// Cannot create image
if(!ret)
{
StoppingErrorMessage?.Invoke(Localization.Core.Error_creating_output_image_not_continuing +
Environment.NewLine +
outputTape.ErrorMessage);
2022-03-06 13:29:38 +00:00
return;
}
_dumpStopwatch.Restart();
2022-03-06 13:29:38 +00:00
var mhddLog = new MhddLog(_outputPrefix + ".mhddlog.bin", _dev, blocks, blockSize, 1, _private);
var ibgLog = new IbgLog(_outputPrefix + ".ibg", 0x0008);
var currentTapeFile = new TapeFile
{
File = currentFile,
FirstBlock = currentBlock,
Partition = currentPartition
};
2022-03-06 13:29:38 +00:00
var currentTapePartition = new TapePartition
{
Number = currentPartition,
FirstBlock = currentBlock
};
if((canLocate || canLocateLong) && _resume.NextBlock > 0)
2022-03-06 13:29:38 +00:00
{
currentBlock = _resume.NextBlock;
currentTapeFile =
2022-03-07 07:36:44 +00:00
outputTape.Files.FirstOrDefault(f => f.LastBlock == outputTape?.Files.Max(g => g.LastBlock));
2022-03-06 13:29:38 +00:00
currentTapePartition =
outputTape.TapePartitions.FirstOrDefault(p => p.LastBlock ==
outputTape?.TapePartitions.Max(g => g.LastBlock));
}
2024-05-01 04:05:22 +01:00
if(mode6Data != null) outputTape.WriteMediaTag(mode6Data, MediaTagType.SCSI_MODESENSE_6);
2024-05-01 04:05:22 +01:00
if(mode10Data != null) outputTape.WriteMediaTag(mode10Data, MediaTagType.SCSI_MODESENSE_10);
2023-10-03 22:57:50 +01:00
ulong currentSpeedSize = 0;
double imageWriteDuration = 0;
double elapsed = 0;
2022-03-06 13:29:38 +00:00
InitProgress?.Invoke();
2024-04-26 03:16:36 +01:00
_speedStopwatch.Reset();
2022-03-06 13:29:38 +00:00
while(currentPartition < totalPartitions)
{
if(_aborted)
{
2022-03-06 13:29:38 +00:00
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
UpdateStatus?.Invoke(Localization.Core.Aborted);
2022-03-06 13:29:38 +00:00
break;
}
2022-03-06 13:29:38 +00:00
if(endOfMedia)
{
UpdateStatus?.Invoke(string.Format(Localization.Core.Finished_partition_0, currentPartition));
2022-03-06 13:29:38 +00:00
currentTapeFile.LastBlock = currentBlock - 1;
2024-05-01 04:05:22 +01:00
if(currentTapeFile.LastBlock > currentTapeFile.FirstBlock) outputTape.AddFile(currentTapeFile);
2022-03-06 13:29:38 +00:00
currentTapePartition.LastBlock = currentBlock - 1;
outputTape.AddPartition(currentTapePartition);
2022-03-06 13:29:38 +00:00
currentPartition++;
2022-03-06 13:29:38 +00:00
if(currentPartition < totalPartitions)
{
currentFile++;
2022-03-06 13:29:38 +00:00
currentTapeFile = new TapeFile
{
File = currentFile,
FirstBlock = currentBlock,
Partition = currentPartition
};
2022-03-06 13:29:38 +00:00
currentTapePartition = new TapePartition
{
Number = currentPartition,
FirstBlock = currentBlock
};
UpdateStatus?.Invoke(string.Format(Localization.Core.Seeking_to_partition_0, currentPartition));
2022-03-06 13:29:38 +00:00
_dev.Locate(out senseBuf, false, currentPartition, 0, _dev.Timeout, out duration);
totalDuration += duration;
}
2022-03-06 13:29:38 +00:00
continue;
}
2024-05-01 04:05:22 +01:00
if(currentSpeed > maxSpeed && currentSpeed > 0) maxSpeed = currentSpeed;
2024-05-01 04:05:22 +01:00
if(currentSpeed < minSpeed && currentSpeed > 0) minSpeed = currentSpeed;
2024-05-01 04:05:22 +01:00
PulseProgress?.Invoke(string.Format(Localization.Core.Reading_block_0_1,
currentBlock,
ByteSize.FromBytes(currentSpeed).Per(_oneSecond).Humanize()));
_speedStopwatch.Restart();
2024-05-01 04:05:22 +01:00
sense = _dev.Read6(out cmdBuf, out senseBuf, false, fixedLen, transferLen, blockSize, _dev.Timeout, out _);
2024-05-01 04:05:22 +01:00
2024-04-26 03:16:36 +01:00
_speedStopwatch.Stop();
totalDuration += _speedStopwatch.Elapsed.TotalMilliseconds;
elapsed += _speedStopwatch.Elapsed.TotalMilliseconds;
2025-08-22 19:57:09 +01:00
if(sense && !senseBuf.IsEmpty)
2022-03-06 13:29:38 +00:00
{
decSense = Sense.Decode(senseBuf);
2022-03-06 13:29:38 +00:00
bool ili = decSense?.Fixed?.ILI == true;
bool valid = decSense?.Fixed?.InformationValid == true;
uint information = decSense?.Fixed?.Information ?? 0;
bool eom = decSense?.Fixed?.EOM == true;
bool filemark = decSense?.Fixed?.Filemark == true;
2022-03-06 13:29:38 +00:00
if(decSense?.Descriptor.HasValue == true)
{
if(decSense.Value.Descriptor.Value.Descriptors.TryGetValue(0, out byte[] desc00))
{
valid = true;
information = (uint)Sense.DecodeDescriptor00(desc00);
}
2019-05-16 23:29:54 +01:00
2022-03-06 13:29:38 +00:00
if(decSense.Value.Descriptor.Value.Descriptors.TryGetValue(4, out byte[] desc04))
Sense.DecodeDescriptor04(desc04, out filemark, out eom, out ili);
}
if(decSense.Value is { ASC: 0x00, ASCQ: 0x00 } && ili && valid)
2022-03-06 13:29:38 +00:00
{
2022-03-07 07:36:44 +00:00
blockSize = (uint)((int)blockSize - BitConverter.ToInt32(BitConverter.GetBytes(information), 0));
2024-05-01 04:05:22 +01:00
if(!fixedLen) transferLen = blockSize;
UpdateStatus?.Invoke(string.Format(Localization.Core.Blocksize_changed_to_0_bytes_at_block_1,
2024-05-01 04:05:22 +01:00
blockSize,
currentBlock));
2022-03-06 13:29:38 +00:00
sense = _dev.Space(out senseBuf, SscSpaceCodes.LogicalBlock, -1, _dev.Timeout, out duration);
2022-03-06 13:29:38 +00:00
totalDuration += duration;
2022-03-06 13:29:38 +00:00
if(sense)
{
decSense = Sense.Decode(senseBuf);
StoppingErrorMessage?.Invoke(Localization.Core.Drive_could_not_go_back_one_block_Sense_follows +
Environment.NewLine +
decSense.Value.Description);
2022-03-06 13:29:38 +00:00
outputTape.Close();
AaruLogging.WriteLine(Localization.Core.Drive_could_not_go_back_one_block_Sense_follows);
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense.Value.SenseKey,
decSense.Value.ASC,
decSense.Value.ASCQ);
2022-03-06 13:29:38 +00:00
return;
}
2022-03-06 13:29:38 +00:00
continue;
}
2022-03-06 13:29:38 +00:00
switch(decSense.Value.SenseKey)
{
case SenseKeys.BlankCheck when currentBlock == 0:
StoppingErrorMessage?.Invoke(Localization.Core.Cannot_dump_a_blank_tape);
2022-03-06 13:29:38 +00:00
outputTape.Close();
2022-03-06 13:29:38 +00:00
return;
2022-03-06 13:29:38 +00:00
// For sure this is an end-of-tape/partition
case SenseKeys.BlankCheck when decSense.Value.ASC == 0x00 &&
2022-03-16 11:47:00 +00:00
(decSense.Value.ASCQ is 0x02 or 0x05 || eom):
// TODO: Detect end of partition
endOfMedia = true;
UpdateStatus?.Invoke(Localization.Core.Found_end_of_tape_partition);
continue;
2022-03-06 13:29:38 +00:00
case SenseKeys.BlankCheck:
StoppingErrorMessage?.Invoke(Localization.Core.Blank_block_found_end_of_tape);
2022-03-06 13:29:38 +00:00
endOfMedia = true;
2022-03-06 13:29:38 +00:00
continue;
}
2022-11-13 19:38:03 +00:00
switch(decSense.Value.SenseKey)
2022-03-06 13:29:38 +00:00
{
2022-11-13 19:38:03 +00:00
case SenseKeys.NoSense or SenseKeys.RecoveredError when decSense.Value.ASCQ is 0x02 or 0x05 || eom:
// TODO: Detect end of partition
endOfMedia = true;
UpdateStatus?.Invoke(Localization.Core.Found_end_of_tape_partition);
2022-11-13 19:38:03 +00:00
continue;
case SenseKeys.NoSense or SenseKeys.RecoveredError when decSense.Value.ASCQ == 0x01 || filemark:
currentTapeFile.LastBlock = currentBlock - 1;
outputTape.AddFile(currentTapeFile);
2022-11-13 19:38:03 +00:00
currentFile++;
2022-11-13 19:38:03 +00:00
currentTapeFile = new TapeFile
{
File = currentFile,
FirstBlock = currentBlock,
Partition = currentPartition
};
2024-05-01 04:05:22 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core.Changed_to_file_0_at_block_1,
currentFile,
currentBlock));
2022-11-13 19:38:03 +00:00
continue;
2022-03-06 13:29:38 +00:00
}
2019-05-01 18:56:19 +01:00
2022-03-06 13:29:38 +00:00
if(decSense is null)
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(string.Format(Localization.Core
.Drive_could_not_read_block_0_Sense_cannot_be_decoded_look_at_log_for_dump,
currentBlock));
AaruLogging.Information(string.Format(Localization.Core
.Drive_could_not_read_block_0_Sense_bytes_follow,
currentBlock));
2019-05-01 18:56:19 +01:00
2025-08-22 19:57:09 +01:00
AaruLogging.Information(PrintHex.ByteArrayToHexArrayString(senseBuf.ToArray(), 32));
2019-05-01 18:56:19 +01:00
}
else
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(string.Format(Localization.Core
.Drive_could_not_read_block_0_Sense_follow_1_2,
currentBlock,
decSense.Value.SenseKey,
decSense.Value.Description));
AaruLogging.WriteLine(string.Format(Localization.Core.Drive_could_not_read_block_0_Sense_follows,
currentBlock));
AaruLogging.WriteLine(Localization.Core.Device_not_ready_Sense,
decSense.Value.SenseKey,
decSense.Value.ASC,
decSense.Value.ASCQ);
2022-03-06 13:29:38 +00:00
}
2022-03-06 13:29:38 +00:00
// TODO: Reset device after X errors
2024-05-01 04:05:22 +01:00
if(_stopOnError) return; // TODO: Return more cleanly
2022-03-06 13:29:38 +00:00
// Write empty data
_writeStopwatch.Restart();
outputTape.WriteSector(new byte[blockSize], currentBlock, false, SectorStatus.NotDumped);
imageWriteDuration += _writeStopwatch.Elapsed.TotalSeconds;
2022-03-06 13:29:38 +00:00
mhddLog.Write(currentBlock,
_speedStopwatch.Elapsed.TotalMilliseconds < 500
? 65535
: _speedStopwatch.Elapsed.TotalMilliseconds);
2022-03-06 13:29:38 +00:00
_resume.BadBlocks.Add(currentBlock);
}
else
{
mhddLog.Write(currentBlock, _speedStopwatch.Elapsed.TotalMilliseconds);
_writeStopwatch.Restart();
outputTape.WriteSector(cmdBuf, currentBlock, false, SectorStatus.Dumped);
imageWriteDuration += _writeStopwatch.Elapsed.TotalSeconds;
2022-03-06 13:29:38 +00:00
extents.Add(currentBlock, 1, true);
}
_writeStopwatch.Stop();
2022-03-06 13:29:38 +00:00
currentBlock++;
_resume.NextBlock++;
currentSpeedSize += blockSize;
if(elapsed < 100) continue;
currentSpeed = currentSpeedSize / (1048576 * elapsed / 1000);
ibgLog.Write(currentBlock, currentSpeed * 1024);
2022-03-06 13:29:38 +00:00
currentSpeedSize = 0;
elapsed = 0;
2024-04-26 03:16:36 +01:00
_speedStopwatch.Reset();
2022-03-06 13:29:38 +00:00
}
2022-03-06 13:29:38 +00:00
_resume.BadBlocks = _resume.BadBlocks.Distinct().ToList();
blocks = currentBlock + 1;
_speedStopwatch.Stop();
_dumpStopwatch.Stop();
2022-03-06 13:29:38 +00:00
// If not aborted this is added at the end of medium
if(_aborted)
{
currentTapeFile.LastBlock = currentBlock - 1;
outputTape.AddFile(currentTapeFile);
2022-03-06 13:29:38 +00:00
currentTapePartition.LastBlock = currentBlock - 1;
outputTape.AddPartition(currentTapePartition);
}
2022-03-06 13:29:38 +00:00
EndProgress?.Invoke();
mhddLog.Close();
2024-05-01 04:05:22 +01:00
ibgLog.Close(_dev,
blocks,
blockSize,
_dumpStopwatch.Elapsed.TotalSeconds,
currentSpeed * 1024,
blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000),
_devicePath);
2023-09-26 03:39:10 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0,
_dumpStopwatch.Elapsed.Humanize(minUnit: TimeUnit.Second)));
2023-09-26 02:40:11 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core.Average_dump_speed_0,
2024-05-01 04:05:22 +01:00
ByteSize.FromBytes(blockSize * (blocks + 1))
.Per(totalDuration.Milliseconds())
.Humanize()));
2019-05-01 18:56:19 +01:00
2023-09-26 02:40:11 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core.Average_write_speed_0,
2024-05-01 04:05:22 +01:00
ByteSize.FromBytes(blockSize * (blocks + 1))
.Per(imageWriteDuration.Seconds())
.Humanize()));
2019-05-01 18:56:19 +01:00
2024-05-01 04:05:22 +01:00
#region Error handling
2023-10-03 22:57:50 +01:00
if(_resume.BadBlocks.Count > 0 && !_aborted && _retryPasses > 0 && (canLocate || canLocateLong))
2022-03-06 13:29:38 +00:00
{
var pass = 1;
var forward = false;
const bool runningPersistent = false;
2024-05-01 23:52:03 +01:00
Modes.ModePage? currentModePage;
2019-05-01 18:56:19 +01:00
2022-03-06 13:29:38 +00:00
if(_persistent)
{
// TODO: Implement persistent
}
2019-05-01 18:56:19 +01:00
2022-03-06 13:29:38 +00:00
InitProgress?.Invoke();
2023-10-03 22:57:50 +01:00
repeatRetry:
2022-03-06 13:29:38 +00:00
ulong[] tmpArray = _resume.BadBlocks.ToArray();
2022-03-06 13:29:38 +00:00
foreach(ulong badBlock in tmpArray)
{
if(_aborted)
{
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
UpdateStatus?.Invoke(Localization.Core.Aborted);
2019-05-01 18:56:19 +01:00
2022-03-06 13:29:38 +00:00
break;
}
2019-05-01 18:56:19 +01:00
if(forward)
2023-10-03 22:57:50 +01:00
{
PulseProgress?.Invoke(runningPersistent
2024-05-01 04:05:22 +01:00
? string.Format(Localization.Core
.Retrying_sector_0_pass_1_recovering_partial_data_forward,
badBlock,
pass)
: string.Format(Localization.Core.Retrying_sector_0_pass_1_forward,
2024-05-01 04:05:22 +01:00
badBlock,
pass));
2023-10-03 22:57:50 +01:00
}
else
2023-10-03 22:57:50 +01:00
{
PulseProgress?.Invoke(runningPersistent
2024-05-01 04:05:22 +01:00
? string.Format(Localization.Core
.Retrying_sector_0_pass_1_recovering_partial_data_reverse,
badBlock,
pass)
: string.Format(Localization.Core.Retrying_sector_0_pass_1_reverse,
2024-05-01 04:05:22 +01:00
badBlock,
pass));
2023-10-03 22:57:50 +01:00
}
UpdateStatus?.Invoke(string.Format(Localization.Core.Positioning_tape_to_block_0, badBlock));
2022-03-06 13:29:38 +00:00
if(canLocateLong)
{
sense = _dev.Locate16(out senseBuf, _resume.NextBlock, _dev.Timeout, out _);
2019-05-01 18:56:19 +01:00
2022-03-06 13:29:38 +00:00
if(!sense)
{
sense = _dev.ReadPositionLong(out cmdBuf, out senseBuf, _dev.Timeout, out _);
2019-05-01 18:56:19 +01:00
2022-03-06 13:29:38 +00:00
if(sense)
{
StoppingErrorMessage?.Invoke(Localization.Core.Could_not_check_current_position_continuing);
2022-03-06 13:29:38 +00:00
continue;
2019-05-01 18:56:19 +01:00
}
2022-03-06 13:29:38 +00:00
ulong position = Swapping.Swap(BitConverter.ToUInt64(cmdBuf, 8));
if(position != _resume.NextBlock)
2019-05-01 18:56:19 +01:00
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(Localization.Core
.Current_position_is_not_as_expected_continuing);
2019-05-01 18:56:19 +01:00
continue;
}
}
else
{
ErrorMessage?.Invoke(string.Format(Localization.Core.Cannot_position_tape_to_block_0,
badBlock));
2019-05-01 18:56:19 +01:00
2022-03-06 13:29:38 +00:00
continue;
}
}
else
{
sense = _dev.Locate(out senseBuf, (uint)_resume.NextBlock, _dev.Timeout, out _);
2019-05-01 18:56:19 +01:00
2022-03-06 13:29:38 +00:00
if(!sense)
{
sense = _dev.ReadPosition(out cmdBuf, out senseBuf, _dev.Timeout, out _);
2022-03-06 13:29:38 +00:00
if(sense)
{
StoppingErrorMessage?.Invoke(Localization.Core.Could_not_check_current_position_continuing);
2019-05-01 18:56:19 +01:00
2022-03-06 13:29:38 +00:00
continue;
}
2019-05-01 18:56:19 +01:00
2022-03-06 13:29:38 +00:00
ulong position = Swapping.Swap(BitConverter.ToUInt32(cmdBuf, 4));
2022-03-06 13:29:38 +00:00
if(position != _resume.NextBlock)
2019-05-01 18:56:19 +01:00
{
2024-05-01 04:05:22 +01:00
StoppingErrorMessage?.Invoke(Localization.Core
.Current_position_is_not_as_expected_continuing);
2019-05-01 18:56:19 +01:00
continue;
}
}
2022-03-06 13:29:38 +00:00
else
2019-05-01 18:56:19 +01:00
{
ErrorMessage?.Invoke(string.Format(Localization.Core.Cannot_position_tape_to_block_0,
badBlock));
2022-03-06 13:29:38 +00:00
continue;
2019-05-01 18:56:19 +01:00
}
}
2024-05-01 04:05:22 +01:00
sense = _dev.Read6(out cmdBuf,
out senseBuf,
false,
fixedLen,
transferLen,
blockSize,
_dev.Timeout,
2022-03-06 13:29:38 +00:00
out duration);
2022-03-06 13:29:38 +00:00
totalDuration += duration;
2019-05-01 18:56:19 +01:00
if(!sense && !_dev.Error)
2019-05-01 18:56:19 +01:00
{
2022-03-06 13:29:38 +00:00
_resume.BadBlocks.Remove(badBlock);
extents.Add(badBlock);
outputTape.WriteSector(cmdBuf, badBlock, false, SectorStatus.Dumped);
2024-05-01 04:05:22 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core.Correctly_retried_block_0_in_pass_1,
badBlock,
pass));
2019-05-01 18:56:19 +01:00
}
else if(runningPersistent) outputTape.WriteSector(cmdBuf, badBlock, false, SectorStatus.Errored);
2022-03-06 13:29:38 +00:00
}
if(pass < _retryPasses && !_aborted && _resume.BadBlocks.Count > 0)
2022-03-06 13:29:38 +00:00
{
pass++;
forward = !forward;
_resume.BadBlocks.Sort();
2019-05-01 18:56:19 +01:00
2024-05-01 04:05:22 +01:00
if(!forward) _resume.BadBlocks.Reverse();
2022-03-06 13:29:38 +00:00
goto repeatRetry;
2019-05-01 18:56:19 +01:00
}
2022-03-06 13:29:38 +00:00
if(runningPersistent && currentModePage.HasValue)
{
// TODO: Persistent mode
}
2022-03-06 13:29:38 +00:00
EndProgress?.Invoke();
}
2023-10-03 22:57:50 +01:00
2024-05-01 04:05:22 +01:00
#endregion Error handling
2022-03-06 13:29:38 +00:00
_resume.BadBlocks.Sort();
2019-05-01 18:56:19 +01:00
foreach(ulong bad in _resume.BadBlocks)
AaruLogging.Information(Localization.Core.Block_0_could_not_be_read, bad);
2022-03-06 13:29:38 +00:00
currentTry.Extents = ExtentsConverter.ToMetadata(extents);
2020-01-09 18:01:43 +00:00
2022-03-06 13:29:38 +00:00
outputTape.SetDumpHardware(_resume.Tries);
// TODO: Media Serial Number
var metadata = new CommonTypes.Structs.ImageInfo
2022-03-06 13:29:38 +00:00
{
Application = "Aaru",
ApplicationVersion = Version.GetInformationalVersion()
2022-03-06 13:29:38 +00:00
};
if(!outputTape.SetImageInfo(metadata))
2023-10-03 22:57:50 +01:00
{
ErrorMessage?.Invoke(Localization.Core.Error_0_setting_metadata +
Environment.NewLine +
2022-03-06 13:29:38 +00:00
outputTape.ErrorMessage);
2023-10-03 22:57:50 +01:00
}
2022-03-06 13:29:38 +00:00
2024-05-01 04:05:22 +01:00
if(_preSidecar != null) outputTape.SetMetadata(_preSidecar);
2022-03-06 13:29:38 +00:00
UpdateStatus?.Invoke(Localization.Core.Closing_output_file);
_imageCloseStopwatch.Restart();
2022-03-06 13:29:38 +00:00
outputTape.Close();
_imageCloseStopwatch.Stop();
2023-09-26 03:39:10 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0,
_imageCloseStopwatch.Elapsed.Humanize(minUnit: TimeUnit.Second)));
2022-03-06 13:29:38 +00:00
if(_aborted)
{
UpdateStatus?.Invoke(Localization.Core.Aborted);
2019-04-30 23:33:33 +01:00
2022-03-06 13:29:38 +00:00
return;
}
2022-03-06 13:29:38 +00:00
double totalChkDuration = 0;
2022-03-06 13:29:38 +00:00
if(_metadata)
{
UpdateStatus?.Invoke(Localization.Core.Creating_sidecar);
IFilter filter = PluginRegister.Singleton.GetFilter(_outputPath);
2022-03-07 07:36:44 +00:00
var inputPlugin = ImageFormat.Detect(filter) as IMediaImage;
2022-03-06 13:29:38 +00:00
ErrorNumber opened = inputPlugin.Open(filter);
if(opened != ErrorNumber.NoError)
2019-05-03 00:24:30 +01:00
{
StoppingErrorMessage?.Invoke(string.Format(Localization.Core.Error_0_opening_created_image, opened));
2019-05-03 00:24:30 +01:00
return;
}
_sidecarStopwatch.Restart();
2022-03-06 13:29:38 +00:00
_sidecarClass = new Sidecar(inputPlugin, _outputPath, filter.Id, _encoding);
_sidecarClass.InitProgressEvent += InitProgress;
_sidecarClass.UpdateProgressEvent += UpdateProgress;
_sidecarClass.EndProgressEvent += EndProgress;
_sidecarClass.InitProgressEvent2 += InitProgress2;
_sidecarClass.UpdateProgressEvent2 += UpdateProgress2;
_sidecarClass.EndProgressEvent2 += EndProgress2;
_sidecarClass.UpdateStatusEvent += UpdateStatus;
Metadata sidecar = _sidecarClass.Create();
_sidecarStopwatch.Stop();
2022-03-06 13:29:38 +00:00
if(!_aborted)
2019-05-03 00:24:30 +01:00
{
totalChkDuration = _sidecarStopwatch.ElapsedMilliseconds;
2023-09-26 03:39:10 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0,
_sidecarStopwatch.Elapsed.Humanize(minUnit: TimeUnit.Second)));
2023-09-26 02:40:11 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core.Average_checksum_speed_0,
2024-05-01 04:05:22 +01:00
ByteSize.FromBytes(blockSize * (blocks + 1))
.Per(totalChkDuration.Milliseconds())
.Humanize()));
2019-05-03 00:24:30 +01:00
2022-03-06 13:29:38 +00:00
if(_preSidecar != null)
{
_preSidecar.BlockMedias = sidecar.BlockMedias;
sidecar = _preSidecar;
2022-03-06 13:29:38 +00:00
}
2024-05-01 04:39:38 +01:00
List<(ulong start, string type)> filesystems = [];
if(sidecar.BlockMedias[0].FileSystemInformation != null)
2023-10-03 22:57:50 +01:00
{
filesystems.AddRange(from partition in sidecar.BlockMedias[0].FileSystemInformation
2023-10-03 22:57:50 +01:00
where partition.FileSystems != null
from fileSystem in partition.FileSystems
2022-03-06 13:29:38 +00:00
select (partition.StartSector, fileSystem.Type));
2023-10-03 22:57:50 +01:00
}
2019-05-03 00:24:30 +01:00
2022-03-06 13:29:38 +00:00
if(filesystems.Count > 0)
2023-10-03 22:57:50 +01:00
{
2022-03-06 13:29:38 +00:00
foreach(var filesystem in filesystems.Select(o => new
{
o.start,
o.type
2024-05-01 04:05:22 +01:00
})
.Distinct())
{
UpdateStatus?.Invoke(string.Format(Localization.Core.Found_filesystem_0_at_sector_1,
2024-05-01 04:05:22 +01:00
filesystem.type,
filesystem.start));
}
2023-10-03 22:57:50 +01:00
}
2019-05-03 00:24:30 +01:00
2022-12-17 20:59:12 +00:00
sidecar.BlockMedias[0].Dimensions = Dimensions.FromMediaType(dskType);
2019-05-03 00:24:30 +01:00
2022-03-06 13:29:38 +00:00
(string type, string subType) xmlType = CommonTypes.Metadata.MediaType.MediaTypeToString(dskType);
sidecar.BlockMedias[0].MediaType = xmlType.type;
sidecar.BlockMedias[0].MediaSubType = xmlType.subType;
2022-03-06 13:29:38 +00:00
// TODO: Implement device firmware revision
if(!_dev.IsRemovable || _dev.IsUsb)
2023-10-03 22:57:50 +01:00
{
2022-03-06 13:29:38 +00:00
if(_dev.Type == DeviceType.ATAPI)
sidecar.BlockMedias[0].Interface = "ATAPI";
2022-03-06 13:29:38 +00:00
else if(_dev.IsUsb)
sidecar.BlockMedias[0].Interface = "USB";
2022-03-06 13:29:38 +00:00
else if(_dev.IsFireWire)
sidecar.BlockMedias[0].Interface = "FireWire";
2022-03-06 13:29:38 +00:00
else
sidecar.BlockMedias[0].Interface = "SCSI";
2023-10-03 22:57:50 +01:00
}
sidecar.BlockMedias[0].LogicalBlocks = blocks;
sidecar.BlockMedias[0].Manufacturer = _dev.Manufacturer;
sidecar.BlockMedias[0].Model = _dev.Model;
2024-05-01 04:05:22 +01:00
if(!_private) sidecar.BlockMedias[0].Serial = _dev.Serial;
sidecar.BlockMedias[0].Size = blocks * blockSize;
2019-05-03 00:24:30 +01:00
2024-05-01 04:05:22 +01:00
if(_dev.IsRemovable) sidecar.BlockMedias[0].DumpHardware = _resume.Tries;
2019-05-03 00:24:30 +01:00
UpdateStatus?.Invoke(Localization.Core.Writing_metadata_sidecar);
2019-05-03 00:24:30 +01:00
var jsonFs = new FileStream(_outputPrefix + ".metadata.json", FileMode.Create);
2019-05-03 00:24:30 +01:00
2024-05-01 04:05:22 +01:00
JsonSerializer.Serialize(jsonFs,
new MetadataJson
{
AaruMetadata = sidecar
},
typeof(MetadataJson),
MetadataJsonContext.Default);
jsonFs.Close();
2019-05-03 00:24:30 +01:00
}
2022-03-06 13:29:38 +00:00
}
2019-05-03 00:24:30 +01:00
2022-03-06 13:29:38 +00:00
UpdateStatus?.Invoke("");
2024-05-01 04:05:22 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core
.Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing,
_sidecarStopwatch.Elapsed.Humanize(minUnit: TimeUnit.Second),
totalDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second),
totalChkDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second),
imageWriteDuration.Seconds().Humanize(minUnit: TimeUnit.Second),
_imageCloseStopwatch.Elapsed.Humanize(minUnit: TimeUnit.Second)));
2023-09-26 02:40:11 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core.Average_speed_0,
2024-05-01 04:05:22 +01:00
ByteSize.FromBytes(blockSize * (blocks + 1))
.Per(totalDuration.Milliseconds())
.Humanize()));
2022-03-06 13:29:38 +00:00
if(maxSpeed > 0)
2023-10-03 22:57:50 +01:00
{
UpdateStatus?.Invoke(string.Format(Localization.Core.Fastest_speed_burst_0,
ByteSize.FromMegabytes(maxSpeed).Per(_oneSecond).Humanize()));
2023-10-03 22:57:50 +01:00
}
if(minSpeed is > 0 and < double.MaxValue)
2023-10-03 22:57:50 +01:00
{
2023-09-26 02:40:11 +01:00
UpdateStatus?.Invoke(string.Format(Localization.Core.Slowest_speed_burst_0,
ByteSize.FromMegabytes(minSpeed).Per(_oneSecond).Humanize()));
2023-10-03 22:57:50 +01:00
}
UpdateStatus?.Invoke(string.Format(Localization.Core._0_sectors_could_not_be_read, _resume.BadBlocks.Count));
2022-03-06 13:29:38 +00:00
UpdateStatus?.Invoke("");
2022-03-06 13:29:38 +00:00
Statistics.AddMedia(dskType, true);
}
2017-12-19 20:33:03 +00:00
}