mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
141 lines
5.5 KiB
C#
141 lines
5.5 KiB
C#
// /***************************************************************************
|
|
// The Disc Image Chef
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : Cram.cs
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// Component : Cram file system plugin.
|
|
//
|
|
// --[ Description ] ----------------------------------------------------------
|
|
//
|
|
// Identifies the Cram file system and shows information.
|
|
//
|
|
// --[ 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-2019 Natalia Portillo
|
|
// ****************************************************************************/
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using DiscImageChef.CommonTypes;
|
|
using DiscImageChef.CommonTypes.Interfaces;
|
|
using Schemas;
|
|
|
|
namespace DiscImageChef.Filesystems
|
|
{
|
|
public class Cram : IFilesystem
|
|
{
|
|
/// <summary>
|
|
/// Identifier for Cram
|
|
/// </summary>
|
|
const uint CRAM_MAGIC = 0x28CD3D45;
|
|
const uint CRAM_CIGAM = 0x453DCD28;
|
|
|
|
public FileSystemType XmlFsType { get; private set; }
|
|
public Encoding Encoding { get; private set; }
|
|
public string Name => "Cram filesystem";
|
|
public Guid Id => new Guid("F8F6E46F-7A2A-48E3-9C0A-46AF4DC29E09");
|
|
public string Author => "Natalia Portillo";
|
|
|
|
public bool Identify(IMediaImage imagePlugin, Partition partition)
|
|
{
|
|
if(partition.Start >= partition.End) return false;
|
|
|
|
byte[] sector = imagePlugin.ReadSector(partition.Start);
|
|
|
|
uint magic = BitConverter.ToUInt32(sector, 0x00);
|
|
|
|
return magic == CRAM_MAGIC || magic == CRAM_CIGAM;
|
|
}
|
|
|
|
public void GetInformation(IMediaImage imagePlugin, Partition partition, out string information,
|
|
Encoding encoding)
|
|
{
|
|
Encoding = encoding ?? Encoding.GetEncoding("iso-8859-15");
|
|
byte[] sector = imagePlugin.ReadSector(partition.Start);
|
|
uint magic = BitConverter.ToUInt32(sector, 0x00);
|
|
|
|
CramSuperBlock crSb = new CramSuperBlock();
|
|
bool littleEndian = true;
|
|
|
|
switch(magic)
|
|
{
|
|
case CRAM_MAGIC:
|
|
IntPtr crSbPtr = Marshal.AllocHGlobal(Marshal.SizeOf(crSb));
|
|
Marshal.Copy(sector, 0, crSbPtr, Marshal.SizeOf(crSb));
|
|
crSb = (CramSuperBlock)Marshal.PtrToStructure(crSbPtr, typeof(CramSuperBlock));
|
|
Marshal.FreeHGlobal(crSbPtr);
|
|
break;
|
|
case CRAM_CIGAM:
|
|
crSb = Helpers.Marshal.ByteArrayToStructureBigEndian<CramSuperBlock>(sector);
|
|
littleEndian = false;
|
|
break;
|
|
}
|
|
|
|
StringBuilder sbInformation = new StringBuilder();
|
|
|
|
sbInformation.AppendLine("Cram file system");
|
|
sbInformation.AppendLine(littleEndian ? "Little-endian" : "Big-endian");
|
|
sbInformation.AppendFormat("Volume edition {0}", crSb.edition).AppendLine();
|
|
sbInformation.AppendFormat("Volume name: {0}", StringHandlers.CToString(crSb.name, Encoding)).AppendLine();
|
|
sbInformation.AppendFormat("Volume has {0} bytes", crSb.size).AppendLine();
|
|
sbInformation.AppendFormat("Volume has {0} blocks", crSb.blocks).AppendLine();
|
|
sbInformation.AppendFormat("Volume has {0} files", crSb.files).AppendLine();
|
|
|
|
information = sbInformation.ToString();
|
|
|
|
XmlFsType = new FileSystemType
|
|
{
|
|
VolumeName = StringHandlers.CToString(crSb.name, Encoding),
|
|
Type = "Cram file system",
|
|
Clusters = crSb.blocks,
|
|
Files = crSb.files,
|
|
FilesSpecified = true,
|
|
FreeClusters = 0,
|
|
FreeClustersSpecified = true
|
|
};
|
|
}
|
|
|
|
enum CramCompression : ushort
|
|
{
|
|
Zlib = 1,
|
|
Lzma = 2,
|
|
Lzo = 3,
|
|
Xz = 4,
|
|
Lz4 = 5
|
|
}
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
struct CramSuperBlock
|
|
{
|
|
public uint magic;
|
|
public uint size;
|
|
public uint flags;
|
|
public uint future;
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
|
|
public byte[] signature;
|
|
public uint crc;
|
|
public uint edition;
|
|
public uint blocks;
|
|
public uint files;
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
|
|
public byte[] name;
|
|
}
|
|
}
|
|
} |