Files
Aaru/Aaru.Core/ImageInfo.cs

773 lines
35 KiB
C#
Raw Normal View History

2018-01-28 16:05:54 +00:00
// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
2018-01-28 16:05:54 +00:00
// ----------------------------------------------------------------------------
//
// Filename : ImageInfo.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Core algorithms.
//
// --[ Description ] ----------------------------------------------------------
//
// Prints image information to console.
//
// --[ 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/>.
//
// ----------------------------------------------------------------------------
2020-12-31 23:08:23 +00:00
// Copyright © 2011-2021 Natalia Portillo
2018-01-28 16:05:54 +00:00
// ****************************************************************************/
using System;
2020-06-17 20:34:35 +01:00
using System.Collections.Generic;
2018-01-28 16:05:54 +00:00
using System.Linq;
using System.Text;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Interfaces;
using Aaru.CommonTypes.Structs;
using Aaru.CommonTypes.Structs.Devices.SCSI;
using Aaru.Console;
using Aaru.Decoders.ATA;
using Aaru.Decoders.Bluray;
using Aaru.Decoders.CD;
using Aaru.Decoders.DVD;
using Aaru.Decoders.PCMCIA;
using Aaru.Decoders.SCSI;
using Aaru.Decoders.Xbox;
2020-07-20 15:43:52 +01:00
using Aaru.Helpers;
using Schemas;
2021-09-14 00:56:06 +01:00
using Spectre.Console;
2020-02-27 00:33:26 +00:00
using DDS = Aaru.Decoders.DVD.DDS;
using DMI = Aaru.Decoders.Xbox.DMI;
using Inquiry = Aaru.Decoders.SCSI.Inquiry;
using Session = Aaru.CommonTypes.Structs.Session;
using Tuple = Aaru.Decoders.PCMCIA.Tuple;
2018-01-28 16:05:54 +00:00
2020-02-27 00:33:26 +00:00
namespace Aaru.Core
2018-01-28 16:05:54 +00:00
{
2021-08-17 21:23:10 +01:00
/// <summary>Image information operations</summary>
2018-01-28 16:05:54 +00:00
public static class ImageInfo
{
2020-07-22 13:20:25 +01:00
const string MANUFACTURER_STRING = "Manufacturer";
const string MODEL_STRING = "Model";
const string SERIAL_STRING = "Serial";
const string SOFTWARE_STRING = "Software";
const string VERSION_STRING = "Version";
const string OS_STRING = "Operating system";
const string START_STRING = "Start";
const string END_STRING = "End";
2021-08-17 21:23:10 +01:00
/// <summary>Prints image information to console</summary>
2021-08-17 13:56:05 +01:00
/// <param name="imageFormat">Media image</param>
2018-01-28 16:05:54 +00:00
public static void PrintImageInfo(IMediaImage imageFormat)
{
2021-09-14 00:56:06 +01:00
Table table;
AaruConsole.WriteLine("[bold]Image information:[/]");
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.Version))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Format:[/] [italic]{0}[/] version {1}", Markup.Escape(imageFormat.Format),
Markup.Escape(imageFormat.Info.Version));
else
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Format:[/] [italic]{0}[/]", Markup.Escape(imageFormat.Format));
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.Application) &&
!string.IsNullOrWhiteSpace(imageFormat.Info.ApplicationVersion))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("Was created with [italic]{0}[/] version [italic]{1}[/]",
Markup.Escape(imageFormat.Info.Application),
Markup.Escape(imageFormat.Info.ApplicationVersion));
2018-01-28 16:05:54 +00:00
else if(!string.IsNullOrWhiteSpace(imageFormat.Info.Application))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("Was created with [italic]{0}[/]", Markup.Escape(imageFormat.Info.Application));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Image without headers is {0} bytes long", imageFormat.Info.ImageSize);
2020-02-29 18:03:35 +00:00
AaruConsole.
WriteLine("Contains a media of {0} sectors with a maximum sector size of {1} bytes (if all sectors are of the same size this would be {2} bytes)",
imageFormat.Info.Sectors, imageFormat.Info.SectorSize,
imageFormat.Info.Sectors * imageFormat.Info.SectorSize);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.Creator))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Created by:[/] {0}", Markup.Escape(imageFormat.Info.Creator));
2018-01-28 16:05:54 +00:00
if(imageFormat.Info.CreationTime != DateTime.MinValue)
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Created on {0}", imageFormat.Info.CreationTime);
2018-01-28 16:05:54 +00:00
if(imageFormat.Info.LastModificationTime != DateTime.MinValue)
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Last modified on {0}", imageFormat.Info.LastModificationTime);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("Contains a media of type [italic]{0}[/] and XML type [italic]{1}[/]",
imageFormat.Info.MediaType, imageFormat.Info.XmlMediaType);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("{0} partitions", imageFormat.Info.HasPartitions ? "Has" : "Doesn't have");
AaruConsole.WriteLine("{0} sessions", imageFormat.Info.HasSessions ? "Has" : "Doesn't have");
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.Comments))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Comments:[/] {0}", Markup.Escape(imageFormat.Info.Comments));
if(imageFormat.Info.MediaSequence != 0 &&
imageFormat.Info.LastMediaSequence != 0)
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Media is number {0} on a set of {1} medias", imageFormat.Info.MediaSequence,
2020-02-29 18:03:35 +00:00
imageFormat.Info.LastMediaSequence);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.MediaTitle))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Media title:[/] [italic]{0}[/]",
Markup.Escape(imageFormat.Info.MediaTitle));
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.MediaManufacturer))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Media manufacturer:[/] [italic]{0}[/]",
Markup.Escape(imageFormat.Info.MediaManufacturer));
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.MediaModel))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Media model:[/] [italic]{0}[/]",
Markup.Escape(imageFormat.Info.MediaModel));
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.MediaSerialNumber))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Media serial number:[/] [italic]{0}[/]",
Markup.Escape(imageFormat.Info.MediaSerialNumber));
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.MediaBarcode))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Media barcode:[/] [italic]{0}[/]",
Markup.Escape(imageFormat.Info.MediaBarcode));
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.MediaPartNumber))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Media part number:[/] [italic]{0}[/]",
Markup.Escape(imageFormat.Info.MediaPartNumber));
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.DriveManufacturer))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Drive manufacturer:[/] [italic]{0}[/]",
Markup.Escape(imageFormat.Info.DriveManufacturer));
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.DriveModel))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Drive model:[/] [italic]{0}[/]",
Markup.Escape(imageFormat.Info.DriveModel));
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.DriveSerialNumber))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Drive serial number:[/] [italic]{0}[/]",
Markup.Escape(imageFormat.Info.DriveSerialNumber));
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.DriveFirmwareRevision))
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Drive firmware info:[/] [italic]{0}[/]",
Markup.Escape(imageFormat.Info.DriveFirmwareRevision));
if(imageFormat.Info.Cylinders > 0 &&
imageFormat.Info.Heads > 0 &&
imageFormat.Info.SectorsPerTrack > 0 &&
imageFormat.Info.XmlMediaType != XmlMediaType.OpticalDisc &&
(!(imageFormat is ITapeImage tapeImage) || !tapeImage.IsTape))
2021-09-14 00:56:06 +01:00
AaruConsole.
WriteLine("[bold]Media geometry:[/] [italic]{0} cylinders, {1} heads, {2} sectors per track[/]",
imageFormat.Info.Cylinders, imageFormat.Info.Heads, imageFormat.Info.SectorsPerTrack);
2018-01-28 16:05:54 +00:00
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Count > 0)
2018-01-28 16:05:54 +00:00
{
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Contains {0} readable media tags:[/]",
imageFormat.Info.ReadableMediaTags.Count);
foreach(MediaTagType tag in imageFormat.Info.ReadableMediaTags.OrderBy(t => t))
2021-09-14 00:56:06 +01:00
AaruConsole.Write("[italic]{0}[/] ", Markup.Escape(tag.ToString()));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableSectorTags != null &&
imageFormat.Info.ReadableSectorTags.Count > 0)
2018-01-28 16:05:54 +00:00
{
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Contains {0} readable sector tags:[/]",
imageFormat.Info.ReadableSectorTags.Count);
foreach(SectorTagType tag in imageFormat.Info.ReadableSectorTags.OrderBy(t => t))
2021-09-14 00:56:06 +01:00
AaruConsole.Write("[italic]{0}[/] ", tag);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
PeripheralDeviceTypes scsiDeviceType = PeripheralDeviceTypes.DirectAccess;
byte[] scsiVendorId = null;
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.SCSI_INQUIRY) == true)
2018-01-28 16:05:54 +00:00
{
byte[] inquiry = imageFormat.ReadDiskTag(MediaTagType.SCSI_INQUIRY);
scsiDeviceType = (PeripheralDeviceTypes)(inquiry[0] & 0x1F);
2018-01-28 16:05:54 +00:00
if(inquiry.Length >= 16)
{
scsiVendorId = new byte[8];
Array.Copy(inquiry, 8, scsiVendorId, 0, 8);
}
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]SCSI INQUIRY contained in image:[/]");
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", Inquiry.Prettify(inquiry));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.ATA_IDENTIFY) == true)
2018-01-28 16:05:54 +00:00
{
byte[] identify = imageFormat.ReadDiskTag(MediaTagType.ATA_IDENTIFY);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]ATA IDENTIFY contained in image:[/]");
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", Identify.Prettify(identify));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.ATAPI_IDENTIFY) == true)
2018-01-28 16:05:54 +00:00
{
byte[] identify = imageFormat.ReadDiskTag(MediaTagType.ATAPI_IDENTIFY);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]ATAPI IDENTIFY contained in image:[/]");
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", Identify.Prettify(identify));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.SCSI_MODESENSE_10) == true)
2018-01-28 16:05:54 +00:00
{
byte[] modeSense10 = imageFormat.ReadDiskTag(MediaTagType.SCSI_MODESENSE_10);
Modes.DecodedMode? decMode = Modes.DecodeMode10(modeSense10, scsiDeviceType);
if(decMode.HasValue)
{
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]SCSI MODE SENSE (10) contained in image:[/]");
2018-01-28 16:05:54 +00:00
PrintScsiModePages.Print(decMode.Value, scsiDeviceType, scsiVendorId);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
}
2020-07-22 13:20:25 +01:00
else if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.SCSI_MODESENSE_6) == true)
2018-01-28 16:05:54 +00:00
{
byte[] modeSense6 = imageFormat.ReadDiskTag(MediaTagType.SCSI_MODESENSE_6);
Modes.DecodedMode? decMode = Modes.DecodeMode6(modeSense6, scsiDeviceType);
if(decMode.HasValue)
{
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]SCSI MODE SENSE (6) contained in image:[/]");
2018-01-28 16:05:54 +00:00
PrintScsiModePages.Print(decMode.Value, scsiDeviceType, scsiVendorId);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
}
2020-07-22 13:20:25 +01:00
else if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.SCSI_MODEPAGE_2A) == true)
2018-01-28 16:05:54 +00:00
{
byte[] mode2A = imageFormat.ReadDiskTag(MediaTagType.SCSI_MODEPAGE_2A);
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", Modes.PrettifyModePage_2A(mode2A));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.CD_FullTOC) == true)
2018-01-28 16:05:54 +00:00
{
byte[] toc = imageFormat.ReadDiskTag(MediaTagType.CD_FullTOC);
if(toc.Length > 0)
{
ushort dataLen = Swapping.Swap(BitConverter.ToUInt16(toc, 0));
if(dataLen + 2 != toc.Length)
{
byte[] tmp = new byte[toc.Length + 2];
Array.Copy(toc, 0, tmp, 2, toc.Length);
tmp[0] = (byte)((toc.Length & 0xFF00) >> 8);
tmp[1] = (byte)(toc.Length & 0xFF);
toc = tmp;
}
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]CompactDisc Table of Contents contained in image:[/]");
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", FullTOC.Prettify(toc));
AaruConsole.WriteLine();
}
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.CD_PMA) == true)
2018-01-28 16:05:54 +00:00
{
byte[] pma = imageFormat.ReadDiskTag(MediaTagType.CD_PMA);
if(pma.Length > 0)
{
ushort dataLen = Swapping.Swap(BitConverter.ToUInt16(pma, 0));
if(dataLen + 2 != pma.Length)
{
byte[] tmp = new byte[pma.Length + 2];
Array.Copy(pma, 0, tmp, 2, pma.Length);
tmp[0] = (byte)((pma.Length & 0xFF00) >> 8);
tmp[1] = (byte)(pma.Length & 0xFF);
pma = tmp;
}
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]CompactDisc Power Management Area contained in image:[/]");
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", PMA.Prettify(pma));
AaruConsole.WriteLine();
}
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.CD_ATIP) == true)
2018-01-28 16:05:54 +00:00
{
byte[] atip = imageFormat.ReadDiskTag(MediaTagType.CD_ATIP);
uint dataLen = Swapping.Swap(BitConverter.ToUInt32(atip, 0));
if(dataLen + 4 != atip.Length)
{
byte[] tmp = new byte[atip.Length + 4];
Array.Copy(atip, 0, tmp, 4, atip.Length);
tmp[0] = (byte)((atip.Length & 0xFF000000) >> 24);
2018-06-22 08:08:38 +01:00
tmp[1] = (byte)((atip.Length & 0xFF0000) >> 16);
tmp[2] = (byte)((atip.Length & 0xFF00) >> 8);
tmp[3] = (byte)(atip.Length & 0xFF);
atip = tmp;
}
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]CompactDisc Absolute Time In Pregroove (ATIP) contained in image:[/]");
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", ATIP.Prettify(atip));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.CD_TEXT) == true)
2018-01-28 16:05:54 +00:00
{
byte[] cdtext = imageFormat.ReadDiskTag(MediaTagType.CD_TEXT);
uint dataLen = Swapping.Swap(BitConverter.ToUInt32(cdtext, 0));
if(dataLen + 4 != cdtext.Length)
{
byte[] tmp = new byte[cdtext.Length + 4];
Array.Copy(cdtext, 0, tmp, 4, cdtext.Length);
tmp[0] = (byte)((cdtext.Length & 0xFF000000) >> 24);
tmp[1] = (byte)((cdtext.Length & 0xFF0000) >> 16);
tmp[2] = (byte)((cdtext.Length & 0xFF00) >> 8);
2018-06-22 08:08:38 +01:00
tmp[3] = (byte)(cdtext.Length & 0xFF);
cdtext = tmp;
}
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]CompactDisc Lead-in's CD-Text contained in image:[/]");
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", CDTextOnLeadIn.Prettify(cdtext));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.CD_MCN) == true)
2018-01-28 16:05:54 +00:00
{
byte[] mcn = imageFormat.ReadDiskTag(MediaTagType.CD_MCN);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]CompactDisc Media Catalogue Number contained in image:[/] {0}",
2020-02-29 18:03:35 +00:00
Encoding.UTF8.GetString(mcn));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2021-07-08 10:50:37 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.DVDR_PreRecordedInfo) == true)
{
byte[] pri = imageFormat.ReadDiskTag(MediaTagType.DVDR_PreRecordedInfo);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]DVD-R(W) Pre-Recorded Information:[/]");
2021-07-08 10:50:37 +01:00
AaruConsole.Write("{0}", PRI.Prettify(pri));
AaruConsole.WriteLine();
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.DVD_PFI) == true)
2018-01-28 16:05:54 +00:00
{
byte[] pfi = imageFormat.ReadDiskTag(MediaTagType.DVD_PFI);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]DVD Physical Format Information contained in image:[/]");
AaruConsole.Write("{0}", PFI.Prettify(pfi, imageFormat.Info.MediaType));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.DVDRAM_DDS) == true)
2018-01-28 16:05:54 +00:00
{
byte[] dds = imageFormat.ReadDiskTag(MediaTagType.DVDRAM_DDS);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]DVD-RAM Disc Definition Structure contained in image:[/]");
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", DDS.Prettify(dds));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.DVDR_PFI) == true)
2018-01-28 16:05:54 +00:00
{
byte[] pfi = imageFormat.ReadDiskTag(MediaTagType.DVDR_PFI);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]DVD-R Physical Format Information contained in image:[/]");
AaruConsole.Write("{0}", PFI.Prettify(pfi, imageFormat.Info.MediaType));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.BD_DI) == true)
2018-01-28 16:05:54 +00:00
{
byte[] di = imageFormat.ReadDiskTag(MediaTagType.BD_DI);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Bluray Disc Information contained in image:[/]");
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", DI.Prettify(di));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.BD_DDS) == true)
2018-01-28 16:05:54 +00:00
{
byte[] dds = imageFormat.ReadDiskTag(MediaTagType.BD_DDS);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Bluray Disc Definition Structure contained in image:[/]");
2020-02-29 18:03:35 +00:00
AaruConsole.Write("{0}", Decoders.Bluray.DDS.Prettify(dds));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.PCMCIA_CIS) == true)
2018-01-28 16:05:54 +00:00
{
byte[] cis = imageFormat.ReadDiskTag(MediaTagType.PCMCIA_CIS);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]PCMCIA CIS:[/]");
2018-01-28 16:05:54 +00:00
Tuple[] tuples = CIS.GetTuples(cis);
2018-01-28 16:05:54 +00:00
if(tuples != null)
foreach(Tuple tuple in tuples)
switch(tuple.Code)
{
case TupleCodes.CISTPL_NULL:
case TupleCodes.CISTPL_END: break;
case TupleCodes.CISTPL_DEVICEGEO:
case TupleCodes.CISTPL_DEVICEGEO_A:
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("{0}", CIS.PrettifyDeviceGeometryTuple(tuple));
2018-01-28 16:05:54 +00:00
break;
case TupleCodes.CISTPL_MANFID:
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("{0}", CIS.PrettifyManufacturerIdentificationTuple(tuple));
2018-01-28 16:05:54 +00:00
break;
case TupleCodes.CISTPL_VERS_1:
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("{0}", CIS.PrettifyLevel1VersionTuple(tuple));
2018-01-28 16:05:54 +00:00
break;
case TupleCodes.CISTPL_ALTSTR:
case TupleCodes.CISTPL_BAR:
case TupleCodes.CISTPL_BATTERY:
case TupleCodes.CISTPL_BYTEORDER:
case TupleCodes.CISTPL_CFTABLE_ENTRY:
case TupleCodes.CISTPL_CFTABLE_ENTRY_CB:
case TupleCodes.CISTPL_CHECKSUM:
case TupleCodes.CISTPL_CONFIG:
case TupleCodes.CISTPL_CONFIG_CB:
case TupleCodes.CISTPL_DATE:
case TupleCodes.CISTPL_DEVICE:
case TupleCodes.CISTPL_DEVICE_A:
case TupleCodes.CISTPL_DEVICE_OA:
case TupleCodes.CISTPL_DEVICE_OC:
case TupleCodes.CISTPL_EXTDEVIC:
case TupleCodes.CISTPL_FORMAT:
case TupleCodes.CISTPL_FORMAT_A:
case TupleCodes.CISTPL_FUNCE:
case TupleCodes.CISTPL_FUNCID:
case TupleCodes.CISTPL_GEOMETRY:
case TupleCodes.CISTPL_INDIRECT:
case TupleCodes.CISTPL_JEDEC_A:
case TupleCodes.CISTPL_JEDEC_C:
case TupleCodes.CISTPL_LINKTARGET:
case TupleCodes.CISTPL_LONGLINK_A:
case TupleCodes.CISTPL_LONGLINK_C:
case TupleCodes.CISTPL_LONGLINK_CB:
case TupleCodes.CISTPL_LONGLINK_MFC:
case TupleCodes.CISTPL_NO_LINK:
case TupleCodes.CISTPL_ORG:
case TupleCodes.CISTPL_PWR_MGMNT:
case TupleCodes.CISTPL_SPCL:
case TupleCodes.CISTPL_SWIL:
case TupleCodes.CISTPL_VERS_2:
2020-02-27 23:48:41 +00:00
AaruConsole.DebugWriteLine("Device-Info command", "Found undecoded tuple ID {0}",
2020-02-29 18:03:35 +00:00
tuple.Code);
2018-01-28 16:05:54 +00:00
break;
default:
2020-02-27 23:48:41 +00:00
AaruConsole.DebugWriteLine("Device-Info command", "Found unknown tuple ID 0x{0:X2}",
2020-02-29 18:03:35 +00:00
(byte)tuple.Code);
2018-01-28 16:05:54 +00:00
break;
}
else
2020-02-27 23:48:41 +00:00
AaruConsole.DebugWriteLine("Device-Info command", "Could not get tuples");
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.SD_CID) == true)
2018-01-28 16:05:54 +00:00
{
byte[] cid = imageFormat.ReadDiskTag(MediaTagType.SD_CID);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]SecureDigital CID contained in image:[/]");
2020-02-29 18:03:35 +00:00
AaruConsole.Write("{0}", Decoders.SecureDigital.Decoders.PrettifyCID(cid));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.SD_CSD) == true)
2018-01-28 16:05:54 +00:00
{
byte[] csd = imageFormat.ReadDiskTag(MediaTagType.SD_CSD);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]SecureDigital CSD contained in image:[/]");
2020-02-29 18:03:35 +00:00
AaruConsole.Write("{0}", Decoders.SecureDigital.Decoders.PrettifyCSD(csd));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.SD_SCR) == true)
2018-01-28 16:05:54 +00:00
{
byte[] scr = imageFormat.ReadDiskTag(MediaTagType.SD_SCR);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]SecureDigital SCR contained in image:[/]");
2020-02-29 18:03:35 +00:00
AaruConsole.Write("{0}", Decoders.SecureDigital.Decoders.PrettifySCR(scr));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.SD_OCR) == true)
2018-01-28 16:05:54 +00:00
{
byte[] ocr = imageFormat.ReadDiskTag(MediaTagType.SD_OCR);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]SecureDigital OCR contained in image:[/]");
2020-02-29 18:03:35 +00:00
AaruConsole.Write("{0}", Decoders.SecureDigital.Decoders.PrettifyOCR(ocr));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.MMC_CID) == true)
2018-01-28 16:05:54 +00:00
{
byte[] cid = imageFormat.ReadDiskTag(MediaTagType.MMC_CID);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]MultiMediaCard CID contained in image:[/]");
2020-02-29 18:03:35 +00:00
AaruConsole.Write("{0}", Decoders.MMC.Decoders.PrettifyCID(cid));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.MMC_CSD) == true)
2018-01-28 16:05:54 +00:00
{
byte[] csd = imageFormat.ReadDiskTag(MediaTagType.MMC_CSD);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]MultiMediaCard CSD contained in image:[/]");
2020-02-29 18:03:35 +00:00
AaruConsole.Write("{0}", Decoders.MMC.Decoders.PrettifyCSD(csd));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.MMC_ExtendedCSD) == true)
2018-01-28 16:05:54 +00:00
{
byte[] ecsd = imageFormat.ReadDiskTag(MediaTagType.MMC_ExtendedCSD);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]MultiMediaCard ExtendedCSD contained in image:[/]");
2020-02-29 18:03:35 +00:00
AaruConsole.Write("{0}", Decoders.MMC.Decoders.PrettifyExtendedCSD(ecsd));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.MMC_OCR) == true)
2018-01-28 16:05:54 +00:00
{
byte[] ocr = imageFormat.ReadDiskTag(MediaTagType.MMC_OCR);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]MultiMediaCard OCR contained in image:[/]");
2020-02-29 18:03:35 +00:00
AaruConsole.Write("{0}", Decoders.MMC.Decoders.PrettifyOCR(ocr));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.Xbox_PFI) == true)
2018-01-28 16:05:54 +00:00
{
byte[] xpfi = imageFormat.ReadDiskTag(MediaTagType.Xbox_PFI);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Xbox Physical Format Information contained in image:[/]");
AaruConsole.Write("{0}", PFI.Prettify(xpfi, imageFormat.Info.MediaType));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.Xbox_DMI) == true)
2018-01-28 16:05:54 +00:00
{
byte[] xdmi = imageFormat.ReadDiskTag(MediaTagType.Xbox_DMI);
if(DMI.IsXbox(xdmi))
{
DMI.XboxDMI? xmi = DMI.DecodeXbox(xdmi);
2018-01-28 16:05:54 +00:00
if(xmi.HasValue)
{
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Xbox DMI contained in image:[/]");
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", DMI.PrettifyXbox(xmi));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
}
if(DMI.IsXbox360(xdmi))
{
DMI.Xbox360DMI? xmi = DMI.DecodeXbox360(xdmi);
2018-01-28 16:05:54 +00:00
if(xmi.HasValue)
{
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Xbox 360 DMI contained in image:[/]");
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", DMI.PrettifyXbox360(xmi));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
}
}
2020-07-22 13:20:25 +01:00
if(imageFormat.Info.ReadableMediaTags?.Contains(MediaTagType.Xbox_SecuritySector) == true)
2018-01-28 16:05:54 +00:00
{
byte[] toc = imageFormat.ReadDiskTag(MediaTagType.Xbox_SecuritySector);
2021-09-14 00:56:06 +01:00
AaruConsole.WriteLine("[bold]Xbox Security Sectors contained in image:[/]");
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0}", SS.Prettify(toc));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat is IOpticalMediaImage opticalImage)
{
try
{
if(opticalImage.Sessions != null &&
opticalImage.Sessions.Count > 0)
{
2021-09-14 00:56:06 +01:00
table = new Table
{
Title = new TableTitle("Image sessions")
};
2021-09-14 00:56:06 +01:00
table.AddColumn("Session");
table.AddColumn("First track");
table.AddColumn("Last track");
table.AddColumn("Start");
table.AddColumn("End");
foreach(Session session in opticalImage.Sessions)
2021-09-14 00:56:06 +01:00
table.AddRow(session.SessionSequence.ToString(), session.StartTrack.ToString(),
session.EndTrack.ToString(), session.StartSector.ToString(),
session.EndSector.ToString());
2021-09-14 00:56:06 +01:00
AnsiConsole.Render(table);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
}
}
catch
{
// ignored
}
try
{
if(opticalImage.Tracks != null &&
opticalImage.Tracks.Count > 0)
{
2021-09-14 00:56:06 +01:00
table = new Table
{
Title = new TableTitle("Image tracks")
};
table.AddColumn("Track");
table.AddColumn("Type");
table.AddColumn("Bps");
table.AddColumn("Raw bps");
table.AddColumn("Subchannel");
table.AddColumn("Pregap");
table.AddColumn("Start");
table.AddColumn("End");
foreach(Track track in opticalImage.Tracks)
2021-09-14 00:56:06 +01:00
table.AddRow(track.TrackSequence.ToString(), track.TrackType.ToString(),
track.TrackBytesPerSector.ToString(), track.TrackRawBytesPerSector.ToString(),
track.TrackSubchannelType.ToString(), track.TrackPregap.ToString(),
track.TrackStartSector.ToString(), track.TrackEndSector.ToString());
AnsiConsole.Render(table);
if(opticalImage.Tracks.Any(t => t.Indexes.Any()))
{
AaruConsole.WriteLine();
2020-06-17 20:34:35 +01:00
2021-09-14 00:56:06 +01:00
table = new Table
{
Title = new TableTitle("Image indexes")
};
2020-06-17 20:34:35 +01:00
2021-09-14 00:56:06 +01:00
table.AddColumn("Track");
table.AddColumn("Index");
table.AddColumn("Start");
2020-06-17 20:34:35 +01:00
foreach(Track track in opticalImage.Tracks)
foreach(KeyValuePair<ushort, int> index in track.Indexes)
2021-09-14 00:56:06 +01:00
table.AddRow(track.TrackSequence.ToString(), index.Key.ToString(),
index.Value.ToString());
AnsiConsole.Render(table);
}
}
}
catch
{
// ignored
}
2020-06-17 20:34:35 +01:00
finally
{
AaruConsole.WriteLine();
}
}
if(imageFormat.DumpHardware == null)
return;
2020-07-22 13:20:25 +01:00
int manufacturerLen = MANUFACTURER_STRING.Length;
int modelLen = MODEL_STRING.Length;
int serialLen = SERIAL_STRING.Length;
int softwareLen = SOFTWARE_STRING.Length;
int versionLen = VERSION_STRING.Length;
int osLen = OS_STRING.Length;
int sectorLen = START_STRING.Length;
foreach(DumpHardwareType dump in imageFormat.DumpHardware)
{
if(dump.Manufacturer?.Length > manufacturerLen)
manufacturerLen = dump.Manufacturer.Length;
if(dump.Model?.Length > modelLen)
modelLen = dump.Model.Length;
if(dump.Serial?.Length > serialLen)
serialLen = dump.Serial.Length;
if(dump.Software?.Name?.Length > softwareLen)
softwareLen = dump.Software.Name.Length;
if(dump.Software?.Version?.Length > versionLen)
versionLen = dump.Software.Version.Length;
if(dump.Software?.OperatingSystem?.Length > osLen)
osLen = dump.Software.OperatingSystem.Length;
foreach(ExtentType extent in dump.Extents)
{
if($"{extent.Start}".Length > sectorLen)
sectorLen = $"{extent.Start}".Length;
if($"{extent.End}".Length > sectorLen)
sectorLen = $"{extent.End}".Length;
}
}
2021-09-14 00:56:06 +01:00
table = new Table
{
Title = new TableTitle("Dump hardware information")
};
2021-09-14 00:56:06 +01:00
table.AddColumn(MANUFACTURER_STRING);
table.AddColumn(MODEL_STRING);
table.AddColumn(SERIAL_STRING);
table.AddColumn(SOFTWARE_STRING);
table.AddColumn(VERSION_STRING);
table.AddColumn(OS_STRING);
table.AddColumn(START_STRING);
table.AddColumn(END_STRING);
foreach(DumpHardwareType dump in imageFormat.DumpHardware)
{
foreach(ExtentType extent in dump.Extents)
2021-09-14 00:56:06 +01:00
table.AddRow(Markup.Escape(dump.Manufacturer), Markup.Escape(dump.Model),
Markup.Escape(dump.Serial), Markup.Escape(dump.Software.Name),
Markup.Escape(dump.Software.Version), Markup.Escape(dump.Software.OperatingSystem),
extent.Start.ToString(), extent.End.ToString());
}
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
}
}