Files
Aaru/Aaru.Partitions/Human68k.cs

181 lines
5.9 KiB
C#
Raw Normal View History

2017-05-19 20:28:49 +01:00
// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : Human68k.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Partitioning scheme plugins.
//
// --[ Description ] ----------------------------------------------------------
//
// Manages Human68k (Sharp X68000) partitions.
//
// --[ License ] --------------------------------------------------------------
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
2022-12-03 16:07:10 +00:00
// Copyright © 2011-2023 Natalia Portillo
// ****************************************************************************/
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes;
using Aaru.CommonTypes.Enums;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Interfaces;
using Aaru.Console;
2020-07-20 15:43:52 +01:00
using Aaru.Helpers;
2020-02-27 00:33:26 +00:00
using Marshal = Aaru.Helpers.Marshal;
namespace Aaru.Partitions;
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
/// <summary>Implements decoding of Sharp's Human68K partitions</summary>
public sealed class Human68K : IPartition
{
2022-03-06 13:29:38 +00:00
// ReSharper disable once InconsistentNaming
const uint X68K_MAGIC = 0x5836384B;
const string MODULE_NAME = "Human68k partitions plugin";
2022-03-06 13:29:38 +00:00
#region IPartition Members
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public string Name => Localization.Human68K_Name;
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public Guid Id => new("246A6D93-4F1A-1F8A-344D-50187A5513A9");
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
2023-10-05 01:52:48 +01:00
public string Author => Authors.NATALIA_PORTILLO;
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
2022-03-06 13:29:38 +00:00
public bool GetInformation(IMediaImage imagePlugin, out List<Partition> partitions, ulong sectorOffset)
{
2022-03-06 13:29:38 +00:00
partitions = new List<Partition>();
2022-03-06 13:29:38 +00:00
byte[] sector;
ulong sectsPerUnit;
ErrorNumber errno;
AaruConsole.DebugWriteLine(MODULE_NAME, "sectorSize = {0}", imagePlugin.Info.SectorSize);
2022-03-06 13:29:38 +00:00
if(sectorOffset + 4 >= imagePlugin.Info.Sectors)
return false;
2022-03-06 13:29:38 +00:00
switch(imagePlugin.Info.SectorSize)
{
case 256:
errno = imagePlugin.ReadSector(4 + sectorOffset, out sector);
sectsPerUnit = 1;
break;
case 512:
errno = imagePlugin.ReadSector(4 + sectorOffset, out sector);
sectsPerUnit = 2;
break;
case 1024:
errno = imagePlugin.ReadSector(2 + sectorOffset, out sector);
sectsPerUnit = 1;
break;
default:
return false;
2022-03-06 13:29:38 +00:00
}
2020-02-29 18:03:35 +00:00
2022-03-06 13:29:38 +00:00
if(errno != ErrorNumber.NoError)
return false;
2020-02-29 18:03:35 +00:00
2022-03-06 13:29:38 +00:00
Table table = Marshal.ByteArrayToStructureBigEndian<Table>(sector);
2020-02-29 18:03:35 +00:00
AaruConsole.DebugWriteLine(MODULE_NAME, "table.magic = {0:X4}", table.magic);
2022-03-06 13:29:38 +00:00
if(table.magic != X68K_MAGIC)
return false;
for(var i = 0; i < table.entries.Length; i++)
2022-03-06 13:29:38 +00:00
table.entries[i] = (Entry)Marshal.SwapStructureMembersEndian(table.entries[i]);
2017-07-24 04:51:08 +01:00
AaruConsole.DebugWriteLine(MODULE_NAME, "table.size = {0:X4}", table.size);
AaruConsole.DebugWriteLine(MODULE_NAME, "table.size2 = {0:X4}", table.size2);
AaruConsole.DebugWriteLine(MODULE_NAME, "table.unknown = {0:X4}", table.unknown);
2022-03-06 13:29:38 +00:00
ulong counter = 0;
2017-07-24 04:51:08 +01:00
2022-03-06 13:29:38 +00:00
foreach(Entry entry in table.entries)
{
AaruConsole.DebugWriteLine(MODULE_NAME, "entry.name = {0}",
2022-03-06 13:29:38 +00:00
StringHandlers.CToString(entry.name, Encoding.GetEncoding(932)));
AaruConsole.DebugWriteLine(MODULE_NAME, "entry.stateStart = {0}", entry.stateStart);
AaruConsole.DebugWriteLine(MODULE_NAME, "entry.length = {0}", entry.length);
AaruConsole.DebugWriteLine(MODULE_NAME, "sectsPerUnit = {0} {1}", sectsPerUnit,
2022-03-06 13:29:38 +00:00
imagePlugin.Info.SectorSize);
2022-03-06 13:29:38 +00:00
var part = new Partition
{
2022-03-06 13:29:38 +00:00
Start = (entry.stateStart & 0xFFFFFF) * sectsPerUnit,
Length = entry.length * sectsPerUnit,
Type = StringHandlers.CToString(entry.name, Encoding.GetEncoding(932)),
Sequence = counter,
Scheme = Name
};
2020-02-29 18:03:35 +00:00
2022-03-06 13:29:38 +00:00
part.Offset = part.Start * (ulong)sector.Length;
part.Size = part.Length * (ulong)sector.Length;
2022-03-06 13:29:38 +00:00
if(entry.length <= 0)
continue;
2020-02-29 18:03:35 +00:00
2022-03-06 13:29:38 +00:00
partitions.Add(part);
counter++;
}
2022-03-06 13:29:38 +00:00
return true;
}
#endregion
#region Nested type: Entry
[StructLayout(LayoutKind.Sequential, Pack = 1)]
readonly struct Entry
{
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)]
public readonly byte[] name;
public readonly uint stateStart;
public readonly uint length;
}
#endregion
#region Nested type: Table
2022-03-06 13:29:38 +00:00
[StructLayout(LayoutKind.Sequential, Pack = 1)]
readonly struct Table
{
public readonly uint magic;
public readonly uint size;
public readonly uint size2;
public readonly uint unknown;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)]
public readonly Entry[] entries;
}
#endregion
}