2017-05-19 20:28:49 +01:00
|
|
|
// /***************************************************************************
|
2020-02-27 12:31:25 +00:00
|
|
|
// Aaru Data Preservation Suite
|
2016-01-13 19:59:44 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Filename : HP.cs
|
2016-07-28 18:13:49 +01:00
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
2016-01-13 19:59:44 +00:00
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// Component : Hewlett-Packard vendor commands.
|
2016-01-13 19:59:44 +00:00
|
|
|
//
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// Contains vendor commands for Hewlett-Packard SCSI devices.
|
2016-01-13 19:59:44 +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-13 19:59:44 +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-13 19:59:44 +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-13 19:59:44 +00:00
|
|
|
//
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2020-01-03 17:51:30 +00:00
|
|
|
// Copyright © 2011-2020 Natalia Portillo
|
2016-01-13 19:59:44 +00:00
|
|
|
// ****************************************************************************/
|
2016-07-28 18:13:49 +01:00
|
|
|
|
2020-02-27 00:33:26 +00:00
|
|
|
using Aaru.Console;
|
2016-01-13 19:59:44 +00:00
|
|
|
|
2020-02-27 00:33:26 +00:00
|
|
|
namespace Aaru.Devices
|
2016-01-13 19:59:44 +00:00
|
|
|
{
|
|
|
|
|
public partial class Device
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-12-23 20:04:36 +00:00
|
|
|
/// Sends the HP READ LONG vendor command
|
2016-01-13 19:59:44 +00:00
|
|
|
/// </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-13 19:59:44 +00:00
|
|
|
/// <param name="buffer">Buffer where the SCSI READ LONG response will be stored</param>
|
|
|
|
|
/// <param name="senseBuffer">Sense buffer.</param>
|
|
|
|
|
/// <param name="relAddr">If set to <c>true</c> address contain two's complement offset from last read address.</param>
|
|
|
|
|
/// <param name="address">PBA/LBA to read.</param>
|
|
|
|
|
/// <param name="blockBytes">How many bytes per block.</param>
|
|
|
|
|
/// <param name="pba">If set to <c>true</c> address contain physical block address.</param>
|
|
|
|
|
/// <param name="timeout">Timeout in seconds.</param>
|
|
|
|
|
/// <param name="duration">Duration in milliseconds it took for the device to execute the command.</param>
|
2018-06-22 08:08:38 +01:00
|
|
|
public bool HpReadLong(out byte[] buffer, out byte[] senseBuffer, bool relAddr, uint address,
|
|
|
|
|
ushort blockBytes,
|
2018-12-31 13:17:27 +00:00
|
|
|
bool pba, uint timeout, out double duration) =>
|
|
|
|
|
HpReadLong(out buffer, out senseBuffer, relAddr, address, 0, blockBytes, pba, false, timeout, out duration);
|
2016-01-13 19:59:44 +00:00
|
|
|
|
|
|
|
|
/// <summary>
|
2017-12-23 20:04:36 +00:00
|
|
|
/// Sends the HP READ LONG vendor command
|
2016-01-13 19:59:44 +00:00
|
|
|
/// </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-13 19:59:44 +00:00
|
|
|
/// <param name="buffer">Buffer where the SCSI READ LONG response will be stored</param>
|
|
|
|
|
/// <param name="senseBuffer">Sense buffer.</param>
|
|
|
|
|
/// <param name="relAddr">If set to <c>true</c> address contain two's complement offset from last read address.</param>
|
|
|
|
|
/// <param name="address">PBA/LBA to read.</param>
|
|
|
|
|
/// <param name="transferLen">How many blocks/bytes to read.</param>
|
|
|
|
|
/// <param name="blockBytes">How many bytes per block.</param>
|
|
|
|
|
/// <param name="pba">If set to <c>true</c> address contain physical block address.</param>
|
2017-12-23 20:04:36 +00:00
|
|
|
/// <param name="sectorCount">
|
|
|
|
|
/// If set to <c>true</c> <paramref name="transferLen" /> is a count of secors to read. Otherwise
|
|
|
|
|
/// it will be ignored
|
|
|
|
|
/// </param>
|
2016-01-13 19:59:44 +00:00
|
|
|
/// <param name="timeout">Timeout in seconds.</param>
|
|
|
|
|
/// <param name="duration">Duration in milliseconds it took for the device to execute the command.</param>
|
2018-06-22 08:08:38 +01:00
|
|
|
public bool HpReadLong(out byte[] buffer, out byte[] senseBuffer, bool relAddr, uint address,
|
|
|
|
|
ushort transferLen, ushort blockBytes, bool pba, bool sectorCount,
|
|
|
|
|
uint timeout,
|
2017-12-19 20:33:03 +00:00
|
|
|
out double duration)
|
2016-01-13 19:59:44 +00:00
|
|
|
{
|
|
|
|
|
senseBuffer = new byte[32];
|
|
|
|
|
byte[] cdb = new byte[10];
|
|
|
|
|
|
|
|
|
|
cdb[0] = (byte)ScsiCommands.ReadLong;
|
2017-12-19 20:33:03 +00:00
|
|
|
if(relAddr) cdb[1] += 0x01;
|
2016-01-13 19:59:44 +00:00
|
|
|
cdb[2] = (byte)((address & 0xFF000000) >> 24);
|
2018-06-22 08:08:38 +01:00
|
|
|
cdb[3] = (byte)((address & 0xFF0000) >> 16);
|
|
|
|
|
cdb[4] = (byte)((address & 0xFF00) >> 8);
|
2016-01-13 19:59:44 +00:00
|
|
|
cdb[5] = (byte)(address & 0xFF);
|
|
|
|
|
cdb[7] = (byte)((transferLen & 0xFF00) >> 8);
|
|
|
|
|
cdb[8] = (byte)(transferLen & 0xFF);
|
2018-06-22 08:08:38 +01:00
|
|
|
if(pba) cdb[9] += 0x80;
|
2017-12-19 20:33:03 +00:00
|
|
|
if(sectorCount) cdb[9] += 0x40;
|
2016-01-13 19:59:44 +00:00
|
|
|
|
2017-12-22 03:13:43 +00:00
|
|
|
buffer = sectorCount ? new byte[blockBytes * transferLen] : new byte[transferLen];
|
2016-01-13 19:59:44 +00:00
|
|
|
|
2017-12-21 07:19:46 +00:00
|
|
|
LastError = SendScsiCommand(cdb, ref buffer, out senseBuffer, timeout, ScsiDirection.In, out duration,
|
2017-12-22 03:13:43 +00:00
|
|
|
out bool sense);
|
2017-12-21 07:19:46 +00:00
|
|
|
Error = LastError != 0;
|
2016-01-13 19:59:44 +00:00
|
|
|
|
2020-02-27 23:48:41 +00:00
|
|
|
AaruConsole.DebugWriteLine("SCSI Device", "HP READ LONG took {0} ms.", duration);
|
2016-01-13 19:59:44 +00:00
|
|
|
|
|
|
|
|
return sense;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
}
|