2017-05-19 20:28:49 +01:00
|
|
|
// /***************************************************************************
|
2020-02-27 12:31:25 +00:00
|
|
|
// Aaru Data Preservation Suite
|
2016-01-14 20:40:45 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Filename : SyQuest.cs
|
2016-07-28 18:13:49 +01:00
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
2016-01-14 20:40:45 +00:00
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// Component : SyQuest vendor commands.
|
2016-01-14 20:40:45 +00:00
|
|
|
//
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// Contains vendor commands for SyQuest SCSI devices.
|
2016-01-14 20:40:45 +00:00
|
|
|
//
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// This library is free software; you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
2016-01-14 20:40:45 +00:00
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// This library 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
|
|
|
|
|
// Lesser General Public License for more details.
|
2016-01-14 20:40:45 +00:00
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2016-01-14 20:40:45 +00:00
|
|
|
//
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2020-12-31 23:08:23 +00:00
|
|
|
// Copyright © 2011-2021 Natalia Portillo
|
2016-01-14 20:40:45 +00:00
|
|
|
// ****************************************************************************/
|
2016-07-28 18:13:49 +01:00
|
|
|
|
2021-08-17 18:21:12 +01:00
|
|
|
using System;
|
2020-02-27 00:33:26 +00:00
|
|
|
using Aaru.Console;
|
2016-01-14 20:40:45 +00:00
|
|
|
|
2020-02-27 00:33:26 +00:00
|
|
|
namespace Aaru.Devices
|
2016-01-14 20:40:45 +00:00
|
|
|
{
|
2020-07-22 13:20:25 +01:00
|
|
|
public sealed partial class Device
|
2016-01-14 20:40:45 +00:00
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
/// <summary>Sends the SyQuest READ (6) command</summary>
|
2017-12-23 20:04:36 +00:00
|
|
|
/// <returns><c>true</c> if the command failed and <paramref name="senseBuffer" /> contains the sense buffer.</returns>
|
2016-01-14 20:40:45 +00:00
|
|
|
/// <param name="buffer">Buffer where the SCSI READ response will be stored</param>
|
|
|
|
|
/// <param name="senseBuffer">Sense buffer.</param>
|
|
|
|
|
/// <param name="timeout">Timeout in seconds.</param>
|
|
|
|
|
/// <param name="duration">Duration in milliseconds it took for the device to execute the command.</param>
|
|
|
|
|
/// <param name="lba">Starting block.</param>
|
|
|
|
|
/// <param name="blockSize">Block size in bytes.</param>
|
2017-12-19 20:33:03 +00:00
|
|
|
public bool SyQuestRead6(out byte[] buffer, out byte[] senseBuffer, uint lba, uint blockSize, uint timeout,
|
2018-12-31 13:17:27 +00:00
|
|
|
out double duration) =>
|
|
|
|
|
SyQuestRead6(out buffer, out senseBuffer, lba, blockSize, 1, false, false, timeout, out duration);
|
2016-01-14 20:40:45 +00:00
|
|
|
|
2020-02-29 18:03:35 +00:00
|
|
|
/// <summary>Sends the SyQuest READ LONG (6) command</summary>
|
2017-12-23 20:04:36 +00:00
|
|
|
/// <returns><c>true</c> if the command failed and <paramref name="senseBuffer" /> contains the sense buffer.</returns>
|
2016-01-14 20:40:45 +00:00
|
|
|
/// <param name="buffer">Buffer where the SCSI READ response will be stored</param>
|
|
|
|
|
/// <param name="senseBuffer">Sense buffer.</param>
|
|
|
|
|
/// <param name="timeout">Timeout in seconds.</param>
|
|
|
|
|
/// <param name="duration">Duration in milliseconds it took for the device to execute the command.</param>
|
|
|
|
|
/// <param name="lba">Starting block.</param>
|
|
|
|
|
/// <param name="blockSize">Block size in bytes.</param>
|
2017-12-19 20:33:03 +00:00
|
|
|
public bool SyQuestReadLong6(out byte[] buffer, out byte[] senseBuffer, uint lba, uint blockSize, uint timeout,
|
2018-12-31 13:17:27 +00:00
|
|
|
out double duration) =>
|
|
|
|
|
SyQuestRead6(out buffer, out senseBuffer, lba, blockSize, 1, false, true, timeout, out duration);
|
2016-01-14 20:40:45 +00:00
|
|
|
|
2020-02-29 18:03:35 +00:00
|
|
|
/// <summary>Sends the SyQuest READ (6) command</summary>
|
2017-12-23 20:04:36 +00:00
|
|
|
/// <returns><c>true</c> if the command failed and <paramref name="senseBuffer" /> contains the sense buffer.</returns>
|
2016-01-14 20:40:45 +00:00
|
|
|
/// <param name="buffer">Buffer where the SCSI READ response will be stored</param>
|
|
|
|
|
/// <param name="senseBuffer">Sense buffer.</param>
|
|
|
|
|
/// <param name="timeout">Timeout in seconds.</param>
|
|
|
|
|
/// <param name="duration">Duration in milliseconds it took for the device to execute the command.</param>
|
|
|
|
|
/// <param name="lba">Starting block.</param>
|
|
|
|
|
/// <param name="inhibitDma">If set to <c>true</c>, block will not be transfer and will reside in the drive's buffer.</param>
|
|
|
|
|
/// <param name="readLong">If set to <c>true</c> drive will return ECC bytes and disable error detection.</param>
|
|
|
|
|
/// <param name="blockSize">Block size in bytes.</param>
|
|
|
|
|
/// <param name="transferLength">How many blocks to read.</param>
|
2020-02-29 18:03:35 +00:00
|
|
|
public bool SyQuestRead6(out byte[] buffer, out byte[] senseBuffer, uint lba, uint blockSize,
|
|
|
|
|
byte transferLength, bool inhibitDma, bool readLong, uint timeout, out double duration)
|
2016-01-14 20:40:45 +00:00
|
|
|
{
|
2021-03-25 23:23:18 +00:00
|
|
|
senseBuffer = new byte[64];
|
2016-01-14 20:40:45 +00:00
|
|
|
byte[] cdb = new byte[6];
|
2018-06-22 08:08:38 +01:00
|
|
|
bool sense;
|
2016-01-14 20:40:45 +00:00
|
|
|
|
|
|
|
|
cdb[0] = (byte)ScsiCommands.Read6;
|
|
|
|
|
cdb[1] = (byte)((lba & 0x1F0000) >> 16);
|
2018-06-22 08:08:38 +01:00
|
|
|
cdb[2] = (byte)((lba & 0xFF00) >> 8);
|
2016-01-14 20:40:45 +00:00
|
|
|
cdb[3] = (byte)(lba & 0xFF);
|
|
|
|
|
cdb[4] = transferLength;
|
|
|
|
|
|
2020-02-29 18:03:35 +00:00
|
|
|
if(inhibitDma)
|
|
|
|
|
cdb[5] += 0x80;
|
|
|
|
|
|
|
|
|
|
if(readLong)
|
|
|
|
|
cdb[5] += 0x40;
|
|
|
|
|
|
|
|
|
|
if(!inhibitDma &&
|
|
|
|
|
!readLong)
|
2017-12-22 03:13:43 +00:00
|
|
|
buffer = transferLength == 0 ? new byte[256 * blockSize] : new byte[transferLength * blockSize];
|
2016-01-14 20:40:45 +00:00
|
|
|
else if(readLong)
|
|
|
|
|
{
|
|
|
|
|
buffer = new byte[blockSize];
|
|
|
|
|
cdb[4] = 1;
|
|
|
|
|
}
|
2020-02-29 18:03:35 +00:00
|
|
|
else
|
2021-08-17 18:21:12 +01:00
|
|
|
buffer = Array.Empty<byte>();
|
2016-01-14 20:40:45 +00:00
|
|
|
|
2016-04-19 02:11:47 +01:00
|
|
|
if(!inhibitDma)
|
2017-12-21 07:19:46 +00:00
|
|
|
LastError = SendScsiCommand(cdb, ref buffer, out senseBuffer, timeout, ScsiDirection.In, out duration,
|
2017-12-19 20:33:03 +00:00
|
|
|
out sense);
|
2016-01-14 20:40:45 +00:00
|
|
|
else
|
2017-12-21 07:19:46 +00:00
|
|
|
LastError = SendScsiCommand(cdb, ref buffer, out senseBuffer, timeout, ScsiDirection.None, out duration,
|
2017-12-19 20:33:03 +00:00
|
|
|
out sense);
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2017-12-21 07:19:46 +00:00
|
|
|
Error = LastError != 0;
|
2016-01-14 20:40:45 +00:00
|
|
|
|
2020-02-27 23:48:41 +00:00
|
|
|
AaruConsole.DebugWriteLine("SCSI Device", "SYQUEST READ (6) took {0} ms.", duration);
|
2016-01-14 20:40:45 +00:00
|
|
|
|
|
|
|
|
return sense;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-29 18:03:35 +00:00
|
|
|
/// <summary>Requests the usage, seek and error counters, and resets them</summary>
|
2016-01-14 20:40:45 +00:00
|
|
|
/// <param name="buffer">Buffer.</param>
|
|
|
|
|
/// <param name="senseBuffer">Sense buffer.</param>
|
|
|
|
|
/// <param name="timeout">Timeout.</param>
|
|
|
|
|
/// <param name="duration">Duration.</param>
|
2017-12-19 20:33:03 +00:00
|
|
|
public bool SyQuestReadUsageCounter(out byte[] buffer, out byte[] senseBuffer, uint timeout,
|
2018-12-31 13:17:27 +00:00
|
|
|
out double duration) =>
|
|
|
|
|
AdaptecReadUsageCounter(out buffer, out senseBuffer, false, timeout, out duration);
|
2016-01-14 20:40:45 +00:00
|
|
|
|
2020-02-29 18:03:35 +00:00
|
|
|
/// <summary>Sends the SyQuest READ LONG (10) command</summary>
|
2017-12-23 20:04:36 +00:00
|
|
|
/// <returns><c>true</c> if the command failed and <paramref name="senseBuffer" /> contains the sense buffer.</returns>
|
2016-01-14 20:40:45 +00:00
|
|
|
/// <param name="buffer">Buffer where the SCSI READ response will be stored</param>
|
|
|
|
|
/// <param name="senseBuffer">Sense buffer.</param>
|
|
|
|
|
/// <param name="timeout">Timeout in seconds.</param>
|
|
|
|
|
/// <param name="duration">Duration in milliseconds it took for the device to execute the command.</param>
|
|
|
|
|
/// <param name="lba">Starting block.</param>
|
|
|
|
|
/// <param name="blockSize">Block size in bytes.</param>
|
2017-12-19 20:33:03 +00:00
|
|
|
public bool SyQuestReadLong10(out byte[] buffer, out byte[] senseBuffer, uint lba, uint blockSize, uint timeout,
|
2018-12-31 13:17:27 +00:00
|
|
|
out double duration) =>
|
|
|
|
|
SyQuestRead10(out buffer, out senseBuffer, lba, blockSize, 1, false, true, timeout, out duration);
|
2016-01-14 20:40:45 +00:00
|
|
|
|
2020-02-29 18:03:35 +00:00
|
|
|
/// <summary>Sends the SyQuest READ (10) command</summary>
|
2017-12-23 20:04:36 +00:00
|
|
|
/// <returns><c>true</c> if the command failed and <paramref name="senseBuffer" /> contains the sense buffer.</returns>
|
2016-01-14 20:40:45 +00:00
|
|
|
/// <param name="buffer">Buffer where the SCSI READ response will be stored</param>
|
|
|
|
|
/// <param name="senseBuffer">Sense buffer.</param>
|
|
|
|
|
/// <param name="timeout">Timeout in seconds.</param>
|
|
|
|
|
/// <param name="duration">Duration in milliseconds it took for the device to execute the command.</param>
|
|
|
|
|
/// <param name="lba">Starting block.</param>
|
|
|
|
|
/// <param name="inhibitDma">If set to <c>true</c>, block will not be transfer and will reside in the drive's buffer.</param>
|
|
|
|
|
/// <param name="readLong">If set to <c>true</c> drive will return ECC bytes and disable error detection.</param>
|
|
|
|
|
/// <param name="blockSize">Block size in bytes.</param>
|
|
|
|
|
/// <param name="transferLength">How many blocks to read.</param>
|
2020-02-29 18:03:35 +00:00
|
|
|
public bool SyQuestRead10(out byte[] buffer, out byte[] senseBuffer, uint lba, uint blockSize,
|
|
|
|
|
ushort transferLength, bool inhibitDma, bool readLong, uint timeout,
|
2017-12-19 20:33:03 +00:00
|
|
|
out double duration)
|
2016-01-14 20:40:45 +00:00
|
|
|
{
|
2021-03-25 23:23:18 +00:00
|
|
|
senseBuffer = new byte[64];
|
2016-01-14 20:40:45 +00:00
|
|
|
byte[] cdb = new byte[10];
|
2018-06-22 08:08:38 +01:00
|
|
|
bool sense;
|
2016-01-14 20:40:45 +00:00
|
|
|
|
|
|
|
|
cdb[0] = (byte)ScsiCommands.Read10;
|
|
|
|
|
cdb[2] = (byte)((lba & 0xFF000000) >> 24);
|
2018-06-22 08:08:38 +01:00
|
|
|
cdb[3] = (byte)((lba & 0xFF0000) >> 16);
|
|
|
|
|
cdb[4] = (byte)((lba & 0xFF00) >> 8);
|
2016-01-14 20:40:45 +00:00
|
|
|
cdb[5] = (byte)(lba & 0xFF);
|
|
|
|
|
cdb[7] = (byte)((transferLength & 0xFF00) >> 8);
|
|
|
|
|
cdb[8] = (byte)(transferLength & 0xFF);
|
|
|
|
|
|
2020-02-29 18:03:35 +00:00
|
|
|
if(inhibitDma)
|
|
|
|
|
cdb[9] += 0x80;
|
|
|
|
|
|
|
|
|
|
if(readLong)
|
|
|
|
|
cdb[9] += 0x40;
|
|
|
|
|
|
|
|
|
|
if(!inhibitDma &&
|
|
|
|
|
!readLong)
|
|
|
|
|
buffer = new byte[transferLength * blockSize];
|
2016-01-14 20:40:45 +00:00
|
|
|
else if(readLong)
|
|
|
|
|
{
|
|
|
|
|
buffer = new byte[blockSize];
|
|
|
|
|
cdb[4] = 1;
|
|
|
|
|
}
|
2020-02-29 18:03:35 +00:00
|
|
|
else
|
2021-08-17 18:21:12 +01:00
|
|
|
buffer = Array.Empty<byte>();
|
2016-01-14 20:40:45 +00:00
|
|
|
|
2016-04-19 02:11:47 +01:00
|
|
|
if(!inhibitDma)
|
2017-12-21 07:19:46 +00:00
|
|
|
LastError = SendScsiCommand(cdb, ref buffer, out senseBuffer, timeout, ScsiDirection.In, out duration,
|
2017-12-19 20:33:03 +00:00
|
|
|
out sense);
|
2016-01-14 20:40:45 +00:00
|
|
|
else
|
2017-12-21 07:19:46 +00:00
|
|
|
LastError = SendScsiCommand(cdb, ref buffer, out senseBuffer, timeout, ScsiDirection.None, out duration,
|
2017-12-19 20:33:03 +00:00
|
|
|
out sense);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
2017-12-21 07:19:46 +00:00
|
|
|
Error = LastError != 0;
|
2016-01-14 20:40:45 +00:00
|
|
|
|
2020-02-27 23:48:41 +00:00
|
|
|
AaruConsole.DebugWriteLine("SCSI Device", "SYQUEST READ (10) took {0} ms.", duration);
|
2016-01-14 20:40:45 +00:00
|
|
|
|
|
|
|
|
return sense;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
}
|