Files
Aaru/Aaru.Core/ImageInfo.cs

742 lines
34 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-01-03 17:51:30 +00:00
// Copyright © 2011-2020 Natalia Portillo
2018-01-28 16:05:54 +00:00
// ****************************************************************************/
using System;
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;
using Schemas;
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
{
public static class ImageInfo
{
public static void PrintImageInfo(IMediaImage imageFormat)
{
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Image information:");
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.Version))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Format: {0} version {1}", imageFormat.Format, imageFormat.Info.Version);
else
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Format: {0}", imageFormat.Format);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.Application) &&
!string.IsNullOrWhiteSpace(imageFormat.Info.ApplicationVersion))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Was created with {0} version {1}", imageFormat.Info.Application,
2018-01-28 16:05:54 +00:00
imageFormat.Info.ApplicationVersion);
else if(!string.IsNullOrWhiteSpace(imageFormat.Info.Application))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Was created with {0}", 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-27 23:48:41 +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)",
2018-01-28 16:05:54 +00:00
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))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Created by: {0}", 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);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Contains a media of type {0} and XML type {1}", imageFormat.Info.MediaType,
2018-01-28 16:05:54 +00:00
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))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Comments: {0}", 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,
2018-01-28 16:05:54 +00:00
imageFormat.Info.LastMediaSequence);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.MediaTitle))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Media title: {0}", imageFormat.Info.MediaTitle);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.MediaManufacturer))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Media manufacturer: {0}", imageFormat.Info.MediaManufacturer);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.MediaModel))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Media model: {0}", imageFormat.Info.MediaModel);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.MediaSerialNumber))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Media serial number: {0}", imageFormat.Info.MediaSerialNumber);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.MediaBarcode))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Media barcode: {0}", imageFormat.Info.MediaBarcode);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.MediaPartNumber))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Media part number: {0}", imageFormat.Info.MediaPartNumber);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.DriveManufacturer))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Drive manufacturer: {0}", imageFormat.Info.DriveManufacturer);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.DriveModel))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Drive model: {0}", imageFormat.Info.DriveModel);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.DriveSerialNumber))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Drive serial number: {0}", imageFormat.Info.DriveSerialNumber);
2018-01-28 16:05:54 +00:00
if(!string.IsNullOrWhiteSpace(imageFormat.Info.DriveFirmwareRevision))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Drive firmware info: {0}", 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))
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Media geometry: {0} cylinders, {1} heads, {2} sectors per track",
2018-01-28 16:05:54 +00:00
imageFormat.Info.Cylinders, imageFormat.Info.Heads,
imageFormat.Info.SectorsPerTrack);
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Count > 0)
2018-01-28 16:05:54 +00:00
{
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Contains {0} readable media tags:", imageFormat.Info.ReadableMediaTags.Count);
foreach(MediaTagType tag in imageFormat.Info.ReadableMediaTags.OrderBy(t => t))
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{0} ", tag);
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
{
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Contains {0} readable sector tags:", imageFormat.Info.ReadableSectorTags.Count);
foreach(SectorTagType tag in imageFormat.Info.ReadableSectorTags.OrderBy(t => t))
2020-02-27 23:48:41 +00:00
AaruConsole.Write("{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;
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.SCSI_INQUIRY))
{
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);
}
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("SCSI INQUIRY contained in image:");
AaruConsole.Write("{0}", Inquiry.Prettify(inquiry));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.ATA_IDENTIFY))
{
byte[] identify = imageFormat.ReadDiskTag(MediaTagType.ATA_IDENTIFY);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("ATA IDENTIFY contained in image:");
AaruConsole.Write("{0}", Identify.Prettify(identify));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.ATAPI_IDENTIFY))
{
byte[] identify = imageFormat.ReadDiskTag(MediaTagType.ATAPI_IDENTIFY);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("ATAPI IDENTIFY contained in image:");
AaruConsole.Write("{0}", Identify.Prettify(identify));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.SCSI_MODESENSE_10))
{
byte[] modeSense10 = imageFormat.ReadDiskTag(MediaTagType.SCSI_MODESENSE_10);
Modes.DecodedMode? decMode = Modes.DecodeMode10(modeSense10, scsiDeviceType);
if(decMode.HasValue)
{
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("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
}
}
else if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.SCSI_MODESENSE_6))
{
byte[] modeSense6 = imageFormat.ReadDiskTag(MediaTagType.SCSI_MODESENSE_6);
Modes.DecodedMode? decMode = Modes.DecodeMode6(modeSense6, scsiDeviceType);
if(decMode.HasValue)
{
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("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
}
}
else if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.SCSI_MODEPAGE_2A))
{
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
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.CD_FullTOC))
{
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;
}
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("CompactDisc Table of Contents contained in image:");
AaruConsole.Write("{0}", FullTOC.Prettify(toc));
AaruConsole.WriteLine();
}
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.CD_PMA))
{
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;
}
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("CompactDisc Power Management Area contained in image:");
AaruConsole.Write("{0}", PMA.Prettify(pma));
AaruConsole.WriteLine();
}
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.CD_ATIP))
{
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;
}
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("CompactDisc Absolute Time In Pregroove (ATIP) contained in image:");
AaruConsole.Write("{0}", ATIP.Prettify(atip));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.CD_TEXT))
{
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;
}
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("CompactDisc Lead-in's CD-Text contained in image:");
AaruConsole.Write("{0}", CDTextOnLeadIn.Prettify(cdtext));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.CD_MCN))
{
byte[] mcn = imageFormat.ReadDiskTag(MediaTagType.CD_MCN);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("CompactDisc Media Catalogue Number contained in image: {0}",
2018-01-28 16:05:54 +00:00
Encoding.UTF8.GetString(mcn));
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.DVD_PFI))
{
byte[] pfi = imageFormat.ReadDiskTag(MediaTagType.DVD_PFI);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("DVD Physical Format Information contained in image:");
AaruConsole.Write("{0}", PFI.Prettify(pfi));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.DVDRAM_DDS))
{
byte[] dds = imageFormat.ReadDiskTag(MediaTagType.DVDRAM_DDS);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("DVD-RAM Disc Definition Structure contained in image:");
AaruConsole.Write("{0}", DDS.Prettify(dds));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.DVDR_PFI))
{
byte[] pfi = imageFormat.ReadDiskTag(MediaTagType.DVDR_PFI);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("DVD-R Physical Format Information contained in image:");
AaruConsole.Write("{0}", PFI.Prettify(pfi));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.BD_DI))
{
byte[] di = imageFormat.ReadDiskTag(MediaTagType.BD_DI);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Bluray Disc Information contained in image:");
AaruConsole.Write("{0}", DI.Prettify(di));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.BD_DDS))
{
byte[] dds = imageFormat.ReadDiskTag(MediaTagType.BD_DDS);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Bluray Disc Definition Structure contained in image:");
AaruConsole.Write("{0}", Aaru.Decoders.Bluray.DDS.Prettify(dds));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.PCMCIA_CIS))
{
byte[] cis = imageFormat.ReadDiskTag(MediaTagType.PCMCIA_CIS);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("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}",
2018-01-28 16:05:54 +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}",
2018-01-28 16:05:54 +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
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.SD_CID))
{
byte[] cid = imageFormat.ReadDiskTag(MediaTagType.SD_CID);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("SecureDigital CID contained in image:");
AaruConsole.Write("{0}", Aaru.Decoders.SecureDigital.Decoders.PrettifyCID(cid));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.SD_CSD))
{
byte[] csd = imageFormat.ReadDiskTag(MediaTagType.SD_CSD);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("SecureDigital CSD contained in image:");
AaruConsole.Write("{0}", Aaru.Decoders.SecureDigital.Decoders.PrettifyCSD(csd));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.SD_SCR))
{
byte[] scr = imageFormat.ReadDiskTag(MediaTagType.SD_SCR);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("SecureDigital SCR contained in image:");
AaruConsole.Write("{0}", Aaru.Decoders.SecureDigital.Decoders.PrettifySCR(scr));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.SD_OCR))
{
byte[] ocr = imageFormat.ReadDiskTag(MediaTagType.SD_OCR);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("SecureDigital OCR contained in image:");
AaruConsole.Write("{0}", Aaru.Decoders.SecureDigital.Decoders.PrettifyOCR(ocr));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.MMC_CID))
{
byte[] cid = imageFormat.ReadDiskTag(MediaTagType.MMC_CID);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("MultiMediaCard CID contained in image:");
AaruConsole.Write("{0}", Aaru.Decoders.MMC.Decoders.PrettifyCID(cid));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.MMC_CSD))
{
byte[] csd = imageFormat.ReadDiskTag(MediaTagType.MMC_CSD);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("MultiMediaCard CSD contained in image:");
AaruConsole.Write("{0}", Aaru.Decoders.MMC.Decoders.PrettifyCSD(csd));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.MMC_ExtendedCSD))
{
byte[] ecsd = imageFormat.ReadDiskTag(MediaTagType.MMC_ExtendedCSD);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("MultiMediaCard ExtendedCSD contained in image:");
AaruConsole.Write("{0}", Aaru.Decoders.MMC.Decoders.PrettifyExtendedCSD(ecsd));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.MMC_OCR))
{
byte[] ocr = imageFormat.ReadDiskTag(MediaTagType.MMC_OCR);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("MultiMediaCard OCR contained in image:");
AaruConsole.Write("{0}", Aaru.Decoders.MMC.Decoders.PrettifyOCR(ocr));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.Xbox_PFI))
{
byte[] xpfi = imageFormat.ReadDiskTag(MediaTagType.Xbox_PFI);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Xbox Physical Format Information contained in image:");
AaruConsole.Write("{0}", PFI.Prettify(xpfi));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.Xbox_DMI))
{
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)
{
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Xbox DMI contained in image:");
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)
{
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Xbox 360 DMI contained in image:");
AaruConsole.Write("{0}", DMI.PrettifyXbox360(xmi));
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
}
}
if(imageFormat.Info.ReadableMediaTags != null &&
imageFormat.Info.ReadableMediaTags.Contains(MediaTagType.Xbox_SecuritySector))
{
byte[] toc = imageFormat.ReadDiskTag(MediaTagType.Xbox_SecuritySector);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Xbox Security Sectors contained in image:");
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)
{
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Image sessions:");
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("{0,-9}{1,-13}{2,-12}{3,-12}{4,-12}", "Session", "First track",
"Last track", "Start", "End");
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("=========================================================");
foreach(Session session in opticalImage.Sessions)
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("{0,-9}{1,-13}{2,-12}{3,-12}{4,-12}", session.SessionSequence,
session.StartTrack, session.EndTrack, session.StartSector,
session.EndSector);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
}
}
catch
{
// ignored
}
try
{
if(opticalImage.Tracks != null &&
opticalImage.Tracks.Count > 0)
{
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Image tracks:");
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("{0,-7}{1,-17}{2,-6}{3,-8}{4,-12}{5,-8}{6,-12}{7,-12}", "Track", "Type",
"Bps", "Raw bps", "Subchannel", "Pregap", "Start", "End");
2020-02-27 23:48:41 +00:00
AaruConsole.
WriteLine("=================================================================================");
foreach(Track track in opticalImage.Tracks)
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("{0,-7}{1,-17}{2,-6}{3,-8}{4,-12}{5,-8}{6,-12}{7,-12}",
track.TrackSequence, track.TrackType, track.TrackBytesPerSector,
track.TrackRawBytesPerSector, track.TrackSubchannelType,
track.TrackPregap, track.TrackStartSector, track.TrackEndSector);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
}
}
catch
{
// ignored
}
}
if(imageFormat.DumpHardware == null)
return;
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";
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;
}
}
manufacturerLen += 2;
modelLen += 2;
serialLen += 2;
softwareLen += 2;
versionLen += 2;
osLen += 2;
sectorLen += 2;
sectorLen += 2;
char[] separator = new char[manufacturerLen + modelLen + serialLen + softwareLen + versionLen + osLen +
sectorLen + sectorLen];
for(int i = 0; i < separator.Length; i++)
separator[i] = '=';
2018-06-22 08:08:38 +01:00
string format =
$"{{0,-{manufacturerLen}}}{{1,-{modelLen}}}{{2,-{serialLen}}}{{3,-{softwareLen}}}{{4,-{versionLen}}}{{5,-{osLen}}}{{6,-{sectorLen}}}{{7,-{sectorLen}}}";
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine("Dump hardware information:");
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine(format, MANUFACTURER_STRING, MODEL_STRING, SERIAL_STRING, SOFTWARE_STRING,
VERSION_STRING, OS_STRING, START_STRING, END_STRING);
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine(new string(separator));
foreach(DumpHardwareType dump in imageFormat.DumpHardware)
{
foreach(ExtentType extent in dump.Extents)
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine(format, dump.Manufacturer, dump.Model, dump.Serial, dump.Software.Name,
dump.Software.Version, dump.Software.OperatingSystem, extent.Start,
extent.End);
}
2020-02-27 23:48:41 +00:00
AaruConsole.WriteLine();
2018-01-28 16:05:54 +00:00
}
}
}