mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
* DiscImageChef.Partitions/DiscImageChef.Partitions.csproj: Added Human68k partition table. * DiscImageChef.Partitions/RioKarma.cs: Corrected typo. * DiscImageChef.DiscImages/ZZZRawImage.cs: Detect X68000 SASI hard disks that use 256 bytes/sector. Correct size of ECMA-154 magnetoptical. * DiscImageChef.Partitions/PC98.cs: Correct handling of partition name, do not directly marshal as it may crash. Prevent false positives checking for sanity and partition type, so this limits it to FreeBSD right now. * DiscImageChef.Partitions/Acorn.cs: Do not try to read past device. * DiscImageChef.Helpers/BigEndianMarshal.cs: * DiscImageChef.Helpers/BigEndianStructure.cs: * DiscImageChef.Helpers/DiscImageChef.Helpers.csproj: Reworked big endian marshal. Does not traverse nested structures. * DiscImageChef.Partitions/SGI.cs: Corrected big endian marshaling, manually traversing nested structures. * DiscImageChef.Decoders/LisaTag.cs: Removed temporal variable. * DiscImageChef.Partitions/Sun.cs: Sun insists all devices must be 512 bytes/sector. Really. Even CDs. But this allows bigger ones.
113 lines
4.0 KiB
C#
113 lines
4.0 KiB
C#
// /***************************************************************************
|
|
// The Disc Image Chef
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : RioKarma.cs
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// Component : Partitioning scheme plugins.
|
|
//
|
|
// --[ Description ] ----------------------------------------------------------
|
|
//
|
|
// Manages Rio Karma 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/>.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
// Copyright © 2011-2016 Natalia Portillo
|
|
// ****************************************************************************/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
using DiscImageChef.CommonTypes;
|
|
using DiscImageChef.ImagePlugins;
|
|
|
|
namespace DiscImageChef.PartPlugins
|
|
{
|
|
class RioKarma : PartPlugin
|
|
{
|
|
const ushort KarmaMagic = 0xAB56;
|
|
const byte EntryMagic = 0x4D;
|
|
|
|
public RioKarma()
|
|
{
|
|
Name = "Rio Karma partitioning";
|
|
PluginUUID = new Guid("246A6D93-4F1A-1F8A-344D-50187A5513A9");
|
|
}
|
|
|
|
public override bool GetInformation(ImagePlugin imagePlugin, out List<Partition> partitions)
|
|
{
|
|
partitions = new List<Partition>();
|
|
|
|
byte[] sector = imagePlugin.ReadSector(0);
|
|
if(sector.Length < 512)
|
|
return false;
|
|
|
|
RioKarmaTable table = new RioKarmaTable();
|
|
IntPtr tablePtr = Marshal.AllocHGlobal(512);
|
|
Marshal.Copy(sector, 0, tablePtr, 512);
|
|
table = (RioKarmaTable)Marshal.PtrToStructure(tablePtr, typeof(RioKarmaTable));
|
|
Marshal.FreeHGlobal(tablePtr);
|
|
|
|
if(table.magic != KarmaMagic)
|
|
return false;
|
|
|
|
ulong counter = 0;
|
|
|
|
foreach(RioKarmaEntry entry in table.entries)
|
|
{
|
|
Partition part = new Partition();
|
|
part.PartitionStartSector = entry.offset;
|
|
part.PartitionStart = (ulong)(entry.offset * sector.Length);
|
|
part.PartitionLength = entry.size;
|
|
part.PartitionSectors = (ulong)(entry.size * sector.Length);
|
|
part.PartitionType = "Rio Karma";
|
|
part.PartitionSequence = counter;
|
|
if(entry.type == EntryMagic)
|
|
{
|
|
partitions.Add(part);
|
|
counter++;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
struct RioKarmaTable
|
|
{
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 270)]
|
|
public byte[] reserved;
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
|
|
public RioKarmaEntry[] entries;
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 208)]
|
|
public byte[] padding;
|
|
public ushort magic;
|
|
}
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
struct RioKarmaEntry
|
|
{
|
|
public uint reserved;
|
|
public byte type;
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
|
|
public byte[] reserved2;
|
|
public uint offset;
|
|
public uint size;
|
|
}
|
|
}
|
|
} |