2017-09-07 20:30:23 +01:00
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : Ata28.cs
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
2017-09-07 20:30:23 +01:00
|
|
|
|
//
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Component : DiscImageChef device testing.
|
2017-09-07 20:30:23 +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/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2018-12-29 17:34:38 +00:00
|
|
|
|
// Copyright © 2011-2019 Natalia Portillo
|
2017-09-07 20:30:23 +01:00
|
|
|
|
// ****************************************************************************/
|
2017-12-19 03:50:57 +00:00
|
|
|
|
|
2020-02-27 00:33:26 +00:00
|
|
|
|
using Aaru.Console;
|
|
|
|
|
|
using Aaru.Decoders.ATA;
|
|
|
|
|
|
using Aaru.Devices;
|
2017-09-07 20:30:23 +01:00
|
|
|
|
|
2020-02-27 00:33:26 +00:00
|
|
|
|
namespace Aaru.Tests.Devices.ATA
|
2017-09-07 20:30:23 +01:00
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
internal static class Ata28
|
2017-09-07 20:30:23 +01:00
|
|
|
|
{
|
2017-12-20 02:08:37 +00:00
|
|
|
|
internal static void Menu(string devPath, Device dev)
|
2017-09-07 20:30:23 +01:00
|
|
|
|
{
|
|
|
|
|
|
while(true)
|
|
|
|
|
|
{
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Send a 28-bit ATA command to the device:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Send READ BUFFER command.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Send READ BUFFER DMA command.");
|
|
|
|
|
|
AaruConsole.WriteLine("3.- Send READ DMA command.");
|
|
|
|
|
|
AaruConsole.WriteLine("4.- Send READ DMA WITH RETRIES command.");
|
|
|
|
|
|
AaruConsole.WriteLine("5.- Send READ LONG command.");
|
|
|
|
|
|
AaruConsole.WriteLine("6.- Send READ LONG WITH RETRIES command.");
|
|
|
|
|
|
AaruConsole.WriteLine("7.- Send READ MULTIPLE command.");
|
|
|
|
|
|
AaruConsole.WriteLine("8.- Send READ NATIVE MAX ADDRESS command.");
|
|
|
|
|
|
AaruConsole.WriteLine("9.- Send READ SECTORS command.");
|
|
|
|
|
|
AaruConsole.WriteLine("10.- Send READ SECTORS WITH RETRIES command.");
|
|
|
|
|
|
AaruConsole.WriteLine("11.- Send SEEK command.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to ATA commands menu.");
|
|
|
|
|
|
AaruConsole.Write("Choose: ");
|
2017-09-07 20:30:23 +01:00
|
|
|
|
|
|
|
|
|
|
string strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-07 20:30:23 +01:00
|
|
|
|
if(!int.TryParse(strDev, out int item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-07 20:30:23 +01:00
|
|
|
|
System.Console.ReadKey();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-07 20:30:23 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to ATA commands menu...");
|
|
|
|
|
|
|
2017-09-07 20:30:23 +01:00
|
|
|
|
return;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
case 1:
|
|
|
|
|
|
ReadBuffer(devPath, dev);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
ReadBufferDma(devPath, dev);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
case 3:
|
|
|
|
|
|
ReadDma(devPath, dev, false);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
case 4:
|
|
|
|
|
|
ReadDma(devPath, dev, true);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
case 5:
|
|
|
|
|
|
ReadLong(devPath, dev, false);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
case 6:
|
|
|
|
|
|
ReadLong(devPath, dev, true);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
case 7:
|
|
|
|
|
|
ReadMultiple(devPath, dev);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
case 8:
|
|
|
|
|
|
ReadNativeMaxAddress(devPath, dev);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
case 9:
|
|
|
|
|
|
ReadSectors(devPath, dev, false);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
case 10:
|
|
|
|
|
|
ReadSectors(devPath, dev, true);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
case 11:
|
|
|
|
|
|
Seek(devPath, dev);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
2017-09-07 20:30:23 +01:00
|
|
|
|
default:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Incorrect option. Press any key to continue...");
|
2017-09-07 20:30:23 +01:00
|
|
|
|
System.Console.ReadKey();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-07 20:30:23 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-09-08 18:21:52 +01:00
|
|
|
|
static void ReadBuffer(string devPath, Device dev)
|
2017-09-08 17:27:36 +01:00
|
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
|
start:
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-12-22 02:04:18 +00:00
|
|
|
|
bool sense = dev.ReadBuffer(out byte[] buffer, out AtaErrorRegistersLba28 errorRegisters, dev.Timeout,
|
2017-12-19 20:33:03 +00:00
|
|
|
|
out double duration);
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
menu:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Sending READ BUFFER to the device:");
|
|
|
|
|
|
AaruConsole.WriteLine("Command took {0} ms.", duration);
|
|
|
|
|
|
AaruConsole.WriteLine("Sense is {0}.", sense);
|
|
|
|
|
|
AaruConsole.WriteLine("Buffer is {0} bytes.", buffer?.Length.ToString() ?? "null");
|
|
|
|
|
|
AaruConsole.WriteLine("Buffer is null or empty? {0}", ArrayHelpers.ArrayIsNullOrEmpty(buffer));
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Print buffer.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Decode error registers.");
|
|
|
|
|
|
AaruConsole.WriteLine("3.- Send command again.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
|
|
|
|
|
AaruConsole.Write("Choose: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
string strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out int item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ BUFFER response:");
|
|
|
|
|
|
|
|
|
|
|
|
if(buffer != null)
|
|
|
|
|
|
PrintHex.PrintHexArray(buffer, 64);
|
|
|
|
|
|
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ BUFFER status registers:");
|
|
|
|
|
|
AaruConsole.Write("{0}", MainClass.DecodeAtaRegisters(errorRegisters));
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 3: goto start;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
default:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Incorrect option. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-09-08 18:21:52 +01:00
|
|
|
|
static void ReadBufferDma(string devPath, Device dev)
|
2017-09-08 17:27:36 +01:00
|
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
|
start:
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-12-22 02:04:18 +00:00
|
|
|
|
bool sense = dev.ReadBufferDma(out byte[] buffer, out AtaErrorRegistersLba28 errorRegisters, dev.Timeout,
|
2017-12-19 20:33:03 +00:00
|
|
|
|
out double duration);
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
menu:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Sending READ BUFFER DMA to the device:");
|
|
|
|
|
|
AaruConsole.WriteLine("Command took {0} ms.", duration);
|
|
|
|
|
|
AaruConsole.WriteLine("Sense is {0}.", sense);
|
|
|
|
|
|
AaruConsole.WriteLine("Buffer is {0} bytes.", buffer?.Length.ToString() ?? "null");
|
|
|
|
|
|
AaruConsole.WriteLine("Buffer is null or empty? {0}", ArrayHelpers.ArrayIsNullOrEmpty(buffer));
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Print buffer.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Decode error registers.");
|
|
|
|
|
|
AaruConsole.WriteLine("3.- Send command again.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
|
|
|
|
|
AaruConsole.Write("Choose: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
string strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out int item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ BUFFER DMA response:");
|
|
|
|
|
|
|
|
|
|
|
|
if(buffer != null)
|
|
|
|
|
|
PrintHex.PrintHexArray(buffer, 64);
|
|
|
|
|
|
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ BUFFER DMA status registers:");
|
|
|
|
|
|
AaruConsole.Write("{0}", MainClass.DecodeAtaRegisters(errorRegisters));
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 3: goto start;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
default:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Incorrect option. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-09-08 18:21:52 +01:00
|
|
|
|
static void ReadDma(string devPath, Device dev, bool retries)
|
2017-09-08 17:27:36 +01:00
|
|
|
|
{
|
2018-01-21 21:56:09 +00:00
|
|
|
|
uint lba = 0;
|
|
|
|
|
|
byte count = 1;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
string strDev;
|
2018-01-21 21:56:09 +00:00
|
|
|
|
int item;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
parameters:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
while(true)
|
|
|
|
|
|
{
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Parameters for READ DMA {0}command:", retries ? "WITH RETRIES " : "");
|
|
|
|
|
|
AaruConsole.WriteLine("LBA: {0}", lba);
|
|
|
|
|
|
AaruConsole.WriteLine("Count: {0}", count);
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Change parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Send command with these parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.Write("What logical block address?: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!uint.TryParse(strDev, out lba))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
lba = 0;
|
|
|
|
|
|
System.Console.ReadKey();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(lba > 0xFFFFFFF)
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.
|
|
|
|
|
|
WriteLine("Logical block address cannot be bigger than {0}. Setting it to {0}...",
|
2018-01-21 21:56:09 +00:00
|
|
|
|
0xFFFFFFF);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
lba = 0xFFFFFFF;
|
|
|
|
|
|
}
|
2018-01-21 21:56:09 +00:00
|
|
|
|
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.Write("How many sectors?: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!byte.TryParse(strDev, out count))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
count = 0;
|
|
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
break;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 2: goto start;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
start:
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-12-22 02:04:18 +00:00
|
|
|
|
bool sense = dev.ReadDma(out byte[] buffer, out AtaErrorRegistersLba28 errorRegisters, retries, lba, count,
|
2017-12-19 20:33:03 +00:00
|
|
|
|
dev.Timeout, out double duration);
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
menu:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Sending READ DMA {0}to the device:", retries ? "WITH RETRIES " : "");
|
|
|
|
|
|
AaruConsole.WriteLine("Command took {0} ms.", duration);
|
|
|
|
|
|
AaruConsole.WriteLine("Sense is {0}.", sense);
|
|
|
|
|
|
AaruConsole.WriteLine("Buffer is {0} bytes.", buffer?.Length.ToString() ?? "null");
|
|
|
|
|
|
AaruConsole.WriteLine("Buffer is null or empty? {0}", ArrayHelpers.ArrayIsNullOrEmpty(buffer));
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Print buffer.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Decode error registers.");
|
|
|
|
|
|
AaruConsole.WriteLine("3.- Send command again.");
|
|
|
|
|
|
AaruConsole.WriteLine("4.- Change parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
|
|
|
|
|
AaruConsole.Write("Choose: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ DMA {0}response:", retries ? "WITH RETRIES " : "");
|
|
|
|
|
|
|
|
|
|
|
|
if(buffer != null)
|
|
|
|
|
|
PrintHex.PrintHexArray(buffer, 64);
|
|
|
|
|
|
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ DMA {0}status registers:", retries ? "WITH RETRIES " : "");
|
|
|
|
|
|
AaruConsole.Write("{0}", MainClass.DecodeAtaRegisters(errorRegisters));
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 3: goto start;
|
|
|
|
|
|
case 4: goto parameters;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
default:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Incorrect option. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-09-08 18:21:52 +01:00
|
|
|
|
static void ReadLong(string devPath, Device dev, bool retries)
|
2017-09-08 17:27:36 +01:00
|
|
|
|
{
|
2018-01-21 21:56:09 +00:00
|
|
|
|
uint lba = 0;
|
|
|
|
|
|
uint blockSize = 1;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
string strDev;
|
2018-01-21 21:56:09 +00:00
|
|
|
|
int item;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
parameters:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
while(true)
|
|
|
|
|
|
{
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Parameters for READ LONG {0}command:", retries ? "WITH RETRIES " : "");
|
|
|
|
|
|
AaruConsole.WriteLine("LBA: {0}", lba);
|
|
|
|
|
|
AaruConsole.WriteLine("Block size: {0}", blockSize);
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Change parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Send command with these parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.Write("What logical block address?: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!uint.TryParse(strDev, out lba))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
lba = 0;
|
|
|
|
|
|
System.Console.ReadKey();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(lba > 0xFFFFFFF)
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.
|
|
|
|
|
|
WriteLine("Logical block address cannot be bigger than {0}. Setting it to {0}...",
|
2018-01-21 21:56:09 +00:00
|
|
|
|
0xFFFFFFF);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
lba = 0xFFFFFFF;
|
|
|
|
|
|
}
|
2018-01-21 21:56:09 +00:00
|
|
|
|
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.Write("How many bytes to expect?: ");
|
2018-01-21 21:56:09 +00:00
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2018-01-21 21:56:09 +00:00
|
|
|
|
if(!uint.TryParse(strDev, out blockSize))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2018-01-21 21:56:09 +00:00
|
|
|
|
blockSize = 0;
|
|
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
break;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 2: goto start;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
start:
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-12-22 02:04:18 +00:00
|
|
|
|
bool sense = dev.ReadLong(out byte[] buffer, out AtaErrorRegistersLba28 errorRegisters, retries, lba,
|
2017-12-19 20:33:03 +00:00
|
|
|
|
blockSize, dev.Timeout, out double duration);
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
menu:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Sending READ LONG {0}to the device:", retries ? "WITH RETRIES " : "");
|
|
|
|
|
|
AaruConsole.WriteLine("Command took {0} ms.", duration);
|
|
|
|
|
|
AaruConsole.WriteLine("Sense is {0}.", sense);
|
|
|
|
|
|
AaruConsole.WriteLine("Buffer is {0} bytes.", buffer?.Length.ToString() ?? "null");
|
|
|
|
|
|
AaruConsole.WriteLine("Buffer is null or empty? {0}", ArrayHelpers.ArrayIsNullOrEmpty(buffer));
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Print buffer.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Decode error registers.");
|
|
|
|
|
|
AaruConsole.WriteLine("3.- Send command again.");
|
|
|
|
|
|
AaruConsole.WriteLine("4.- Change parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
|
|
|
|
|
AaruConsole.Write("Choose: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ LONG {0}response:", retries ? "WITH RETRIES " : "");
|
|
|
|
|
|
|
|
|
|
|
|
if(buffer != null)
|
|
|
|
|
|
PrintHex.PrintHexArray(buffer, 64);
|
|
|
|
|
|
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ LONG {0}status registers:", retries ? "WITH RETRIES " : "");
|
|
|
|
|
|
AaruConsole.Write("{0}", MainClass.DecodeAtaRegisters(errorRegisters));
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 3: goto start;
|
|
|
|
|
|
case 4: goto parameters;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
default:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Incorrect option. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-09-08 18:21:52 +01:00
|
|
|
|
static void ReadMultiple(string devPath, Device dev)
|
2017-09-08 17:27:36 +01:00
|
|
|
|
{
|
2018-01-21 21:56:09 +00:00
|
|
|
|
uint lba = 0;
|
|
|
|
|
|
byte count = 1;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
string strDev;
|
2018-01-21 21:56:09 +00:00
|
|
|
|
int item;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
parameters:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
while(true)
|
|
|
|
|
|
{
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Parameters for READ MULTIPLE command:");
|
|
|
|
|
|
AaruConsole.WriteLine("LBA: {0}", lba);
|
|
|
|
|
|
AaruConsole.WriteLine("Count: {0}", count);
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Change parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Send command with these parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.Write("What logical block address?: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!uint.TryParse(strDev, out lba))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
lba = 0;
|
|
|
|
|
|
System.Console.ReadKey();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(lba > 0xFFFFFFF)
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.
|
|
|
|
|
|
WriteLine("Logical block address cannot be bigger than {0}. Setting it to {0}...",
|
2018-01-21 21:56:09 +00:00
|
|
|
|
0xFFFFFFF);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
lba = 0xFFFFFFF;
|
|
|
|
|
|
}
|
2018-01-21 21:56:09 +00:00
|
|
|
|
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.Write("How many sectors?: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!byte.TryParse(strDev, out count))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
count = 0;
|
|
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
break;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 2: goto start;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
start:
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-12-22 02:04:18 +00:00
|
|
|
|
bool sense = dev.ReadMultiple(out byte[] buffer, out AtaErrorRegistersLba28 errorRegisters, lba, count,
|
2017-12-19 20:33:03 +00:00
|
|
|
|
dev.Timeout, out double duration);
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
menu:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Sending READ MULTIPLE to the device:");
|
|
|
|
|
|
AaruConsole.WriteLine("Command took {0} ms.", duration);
|
|
|
|
|
|
AaruConsole.WriteLine("Sense is {0}.", sense);
|
|
|
|
|
|
AaruConsole.WriteLine("Buffer is {0} bytes.", buffer?.Length.ToString() ?? "null");
|
|
|
|
|
|
AaruConsole.WriteLine("Buffer is null or empty? {0}", ArrayHelpers.ArrayIsNullOrEmpty(buffer));
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Print buffer.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Decode error registers.");
|
|
|
|
|
|
AaruConsole.WriteLine("3.- Send command again.");
|
|
|
|
|
|
AaruConsole.WriteLine("4.- Change parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
|
|
|
|
|
AaruConsole.Write("Choose: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ MULTIPLE response:");
|
|
|
|
|
|
|
|
|
|
|
|
if(buffer != null)
|
|
|
|
|
|
PrintHex.PrintHexArray(buffer, 64);
|
|
|
|
|
|
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ MULTIPLE status registers:");
|
|
|
|
|
|
AaruConsole.Write("{0}", MainClass.DecodeAtaRegisters(errorRegisters));
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 3: goto start;
|
|
|
|
|
|
case 4: goto parameters;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
default:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Incorrect option. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-09-08 18:21:52 +01:00
|
|
|
|
static void ReadNativeMaxAddress(string devPath, Device dev)
|
2017-09-08 17:27:36 +01:00
|
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
|
start:
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-12-22 02:04:18 +00:00
|
|
|
|
bool sense = dev.ReadNativeMaxAddress(out uint lba, out AtaErrorRegistersLba28 errorRegisters, dev.Timeout,
|
2017-12-19 20:33:03 +00:00
|
|
|
|
out double duration);
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
menu:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Sending READ NATIVE MAX ADDRESS to the device:");
|
|
|
|
|
|
AaruConsole.WriteLine("Command took {0} ms.", duration);
|
|
|
|
|
|
AaruConsole.WriteLine("Sense is {0}.", sense);
|
|
|
|
|
|
AaruConsole.WriteLine("Max LBA is {0}.", lba);
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Decode error registers.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Send command again.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
|
|
|
|
|
AaruConsole.Write("Choose: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
string strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out int item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ NATIVE MAX ADDRESS status registers:");
|
|
|
|
|
|
AaruConsole.Write("{0}", MainClass.DecodeAtaRegisters(errorRegisters));
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 2: goto start;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
default:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Incorrect option. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-09-08 18:21:52 +01:00
|
|
|
|
static void ReadSectors(string devPath, Device dev, bool retries)
|
2017-09-08 17:27:36 +01:00
|
|
|
|
{
|
2018-01-21 21:56:09 +00:00
|
|
|
|
uint lba = 0;
|
|
|
|
|
|
byte count = 1;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
string strDev;
|
2018-01-21 21:56:09 +00:00
|
|
|
|
int item;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
parameters:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
while(true)
|
|
|
|
|
|
{
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Parameters for READ SECTORS {0}command:", retries ? "WITH RETRIES " : "");
|
|
|
|
|
|
AaruConsole.WriteLine("LBA: {0}", lba);
|
|
|
|
|
|
AaruConsole.WriteLine("Count: {0}", count);
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Change parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Send command with these parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.Write("What logical block address?: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!uint.TryParse(strDev, out lba))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
lba = 0;
|
|
|
|
|
|
System.Console.ReadKey();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(lba > 0xFFFFFFF)
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.
|
|
|
|
|
|
WriteLine("Logical block address cannot be bigger than {0}. Setting it to {0}...",
|
2018-01-21 21:56:09 +00:00
|
|
|
|
0xFFFFFFF);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
lba = 0xFFFFFFF;
|
|
|
|
|
|
}
|
2018-01-21 21:56:09 +00:00
|
|
|
|
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.Write("How many sectors?: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!byte.TryParse(strDev, out count))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
count = 0;
|
|
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
break;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 2: goto start;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
start:
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-12-22 02:04:18 +00:00
|
|
|
|
bool sense = dev.Read(out byte[] buffer, out AtaErrorRegistersLba28 errorRegisters, retries, lba, count,
|
2017-12-19 20:33:03 +00:00
|
|
|
|
dev.Timeout, out double duration);
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
menu:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Sending READ SECTORS {0}to the device:", retries ? "WITH RETRIES " : "");
|
|
|
|
|
|
AaruConsole.WriteLine("Command took {0} ms.", duration);
|
|
|
|
|
|
AaruConsole.WriteLine("Sense is {0}.", sense);
|
|
|
|
|
|
AaruConsole.WriteLine("Buffer is {0} bytes.", buffer?.Length.ToString() ?? "null");
|
|
|
|
|
|
AaruConsole.WriteLine("Buffer is null or empty? {0}", ArrayHelpers.ArrayIsNullOrEmpty(buffer));
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Print buffer.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Decode error registers.");
|
|
|
|
|
|
AaruConsole.WriteLine("3.- Send command again.");
|
|
|
|
|
|
AaruConsole.WriteLine("4.- Change parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
|
|
|
|
|
AaruConsole.Write("Choose: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ SECTORS {0}response:", retries ? "WITH RETRIES " : "");
|
|
|
|
|
|
|
|
|
|
|
|
if(buffer != null)
|
|
|
|
|
|
PrintHex.PrintHexArray(buffer, 64);
|
|
|
|
|
|
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("READ SECTORS {0}status registers:", retries ? "WITH RETRIES " : "");
|
|
|
|
|
|
AaruConsole.Write("{0}", MainClass.DecodeAtaRegisters(errorRegisters));
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 3: goto start;
|
|
|
|
|
|
case 4: goto parameters;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
default:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Incorrect option. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-09-08 18:21:52 +01:00
|
|
|
|
static void Seek(string devPath, Device dev)
|
2017-09-08 17:27:36 +01:00
|
|
|
|
{
|
2018-01-21 21:56:09 +00:00
|
|
|
|
uint lba = 0;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
string strDev;
|
2018-01-21 21:56:09 +00:00
|
|
|
|
int item;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
parameters:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
while(true)
|
|
|
|
|
|
{
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Parameters for SEEK command:");
|
|
|
|
|
|
AaruConsole.WriteLine("LBA: {0}", lba);
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Change parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Send command with these parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.Write("What logical block address?: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!uint.TryParse(strDev, out lba))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
lba = 0;
|
|
|
|
|
|
System.Console.ReadKey();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(lba > 0xFFFFFFF)
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.
|
|
|
|
|
|
WriteLine("Logical block address cannot be bigger than {0}. Setting it to {0}...",
|
2018-01-21 21:56:09 +00:00
|
|
|
|
0xFFFFFFF);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
lba = 0xFFFFFFF;
|
|
|
|
|
|
}
|
2018-01-21 21:56:09 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
break;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 2: goto start;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
start:
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.Clear();
|
2017-12-22 02:04:18 +00:00
|
|
|
|
bool sense = dev.Seek(out AtaErrorRegistersLba28 errorRegisters, lba, dev.Timeout, out double duration);
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
menu:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("Sending SEEK to the device:");
|
|
|
|
|
|
AaruConsole.WriteLine("Command took {0} ms.", duration);
|
|
|
|
|
|
AaruConsole.WriteLine("Sense is {0}.", sense);
|
|
|
|
|
|
AaruConsole.WriteLine();
|
|
|
|
|
|
AaruConsole.WriteLine("Choose what to do:");
|
|
|
|
|
|
AaruConsole.WriteLine("1.- Decode error registers.");
|
|
|
|
|
|
AaruConsole.WriteLine("2.- Send command again.");
|
|
|
|
|
|
AaruConsole.WriteLine("3.- Change parameters.");
|
|
|
|
|
|
AaruConsole.WriteLine("0.- Return to 28-bit ATA commands menu.");
|
|
|
|
|
|
AaruConsole.Write("Choose: ");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
|
|
|
|
|
|
strDev = System.Console.ReadLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
if(!int.TryParse(strDev, out item))
|
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Not a number. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch(item)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 0:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Returning to 28-bit ATA commands menu...");
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
return;
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
AaruConsole.WriteLine("SEEK status registers:");
|
|
|
|
|
|
AaruConsole.Write("{0}", MainClass.DecodeAtaRegisters(errorRegisters));
|
|
|
|
|
|
AaruConsole.WriteLine("Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Device: {0}", devPath);
|
|
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
2017-12-19 20:33:03 +00:00
|
|
|
|
case 2: goto start;
|
|
|
|
|
|
case 3: goto parameters;
|
2017-09-08 17:27:36 +01:00
|
|
|
|
default:
|
2020-02-29 18:03:35 +00:00
|
|
|
|
AaruConsole.WriteLine("Incorrect option. Press any key to continue...");
|
2017-09-08 17:27:36 +01:00
|
|
|
|
System.Console.ReadKey();
|
|
|
|
|
|
System.Console.Clear();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2017-09-08 17:27:36 +01:00
|
|
|
|
goto menu;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-09-07 20:30:23 +01:00
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
}
|