2017-08-08 11:51:48 +01:00
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : EFS.cs
|
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
|
//
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Component : Extent File System plugin
|
2017-08-08 11:51:48 +01:00
|
|
|
|
//
|
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
//
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Identifies the Extent File System and shows information.
|
2017-08-08 11:51:48 +01:00
|
|
|
|
//
|
|
|
|
|
|
// --[ 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/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Copyright © 2011-2018 Natalia Portillo
|
2017-08-08 11:51:48 +01:00
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
2017-12-22 08:43:22 +00:00
|
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using DiscImageChef.CommonTypes;
|
|
|
|
|
|
using DiscImageChef.Console;
|
2017-12-21 14:30:38 +00:00
|
|
|
|
using DiscImageChef.DiscImages;
|
|
|
|
|
|
using Schemas;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
|
|
|
|
|
namespace DiscImageChef.Filesystems
|
|
|
|
|
|
{
|
2017-12-26 06:05:12 +00:00
|
|
|
|
public class EFS : IFilesystem
|
2017-08-08 11:51:48 +01:00
|
|
|
|
{
|
2017-12-22 08:43:22 +00:00
|
|
|
|
const uint EFS_MAGIC = 0x00072959;
|
|
|
|
|
|
const uint EFS_MAGIC_NEW = 0x0007295A;
|
2017-12-26 06:05:12 +00:00
|
|
|
|
Encoding currentEncoding;
|
|
|
|
|
|
FileSystemType xmlFsType;
|
2017-12-26 07:28:40 +00:00
|
|
|
|
public FileSystemType XmlFsType => xmlFsType;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
2017-12-26 07:28:40 +00:00
|
|
|
|
public Encoding Encoding => currentEncoding;
|
|
|
|
|
|
public string Name => "Extent File System Plugin";
|
|
|
|
|
|
public Guid Id => new Guid("52A43F90-9AF3-4391-ADFE-65598DEEABAB");
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
2017-12-26 07:28:40 +00:00
|
|
|
|
public bool Identify(IMediaImage imagePlugin, Partition partition)
|
2017-08-08 11:51:48 +01:00
|
|
|
|
{
|
2017-12-26 06:05:12 +00:00
|
|
|
|
if(imagePlugin.Info.SectorSize < 512) return false;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
|
|
|
|
|
// Misaligned
|
2017-12-26 06:05:12 +00:00
|
|
|
|
if(imagePlugin.Info.XmlMediaType == XmlMediaType.OpticalDisc)
|
2017-08-08 11:51:48 +01:00
|
|
|
|
{
|
2017-12-22 08:43:22 +00:00
|
|
|
|
EFS_Superblock efsSb = new EFS_Superblock();
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
2017-12-26 06:05:12 +00:00
|
|
|
|
uint sbSize = (uint)((Marshal.SizeOf(efsSb) + 0x200) / imagePlugin.Info.SectorSize);
|
|
|
|
|
|
if((Marshal.SizeOf(efsSb) + 0x200) % imagePlugin.Info.SectorSize != 0) sbSize++;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
2017-08-09 04:46:14 +01:00
|
|
|
|
byte[] sector = imagePlugin.ReadSectors(partition.Start, sbSize);
|
2017-12-22 08:43:22 +00:00
|
|
|
|
if(sector.Length < Marshal.SizeOf(efsSb)) return false;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
2017-12-22 08:43:22 +00:00
|
|
|
|
byte[] sbpiece = new byte[Marshal.SizeOf(efsSb)];
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
2017-12-22 08:43:22 +00:00
|
|
|
|
Array.Copy(sector, 0x200, sbpiece, 0, Marshal.SizeOf(efsSb));
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
2017-12-22 08:43:22 +00:00
|
|
|
|
efsSb = BigEndianMarshal.ByteArrayToStructureBigEndian<EFS_Superblock>(sbpiece);
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
DicConsole.DebugWriteLine("EFS plugin", "magic at 0x{0:X3} = 0x{1:X8} (expected 0x{2:X8} or 0x{3:X8})",
|
2017-12-22 08:43:22 +00:00
|
|
|
|
0x200, efsSb.sb_magic, EFS_MAGIC, EFS_MAGIC_NEW);
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
2017-12-22 08:43:22 +00:00
|
|
|
|
if(efsSb.sb_magic == EFS_MAGIC || efsSb.sb_magic == EFS_MAGIC_NEW) return true;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
EFS_Superblock efsSb = new EFS_Superblock();
|
|
|
|
|
|
|
2017-12-26 06:05:12 +00:00
|
|
|
|
uint sbSize = (uint)(Marshal.SizeOf(efsSb) / imagePlugin.Info.SectorSize);
|
|
|
|
|
|
if(Marshal.SizeOf(efsSb) % imagePlugin.Info.SectorSize != 0) sbSize++;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
|
|
|
|
|
byte[] sector = imagePlugin.ReadSectors(partition.Start + 1, sbSize);
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(sector.Length < Marshal.SizeOf(efsSb)) return false;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
|
|
|
|
|
efsSb = BigEndianMarshal.ByteArrayToStructureBigEndian<EFS_Superblock>(sector);
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
DicConsole.DebugWriteLine("EFS plugin", "magic at {0} = 0x{1:X8} (expected 0x{2:X8} or 0x{3:X8})", 1,
|
2017-12-22 08:43:22 +00:00
|
|
|
|
efsSb.sb_magic, EFS_MAGIC, EFS_MAGIC_NEW);
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
2017-12-22 08:43:22 +00:00
|
|
|
|
if(efsSb.sb_magic == EFS_MAGIC || efsSb.sb_magic == EFS_MAGIC_NEW) return true;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-26 07:28:40 +00:00
|
|
|
|
public void GetInformation(IMediaImage imagePlugin, Partition partition, out string information, Encoding encoding)
|
2017-08-08 11:51:48 +01:00
|
|
|
|
{
|
2017-12-26 06:05:12 +00:00
|
|
|
|
currentEncoding = encoding ?? Encoding.GetEncoding("iso-8859-15");
|
2017-08-08 11:51:48 +01:00
|
|
|
|
information = "";
|
2017-12-26 06:05:12 +00:00
|
|
|
|
if(imagePlugin.Info.SectorSize < 512) return;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
|
|
|
|
|
EFS_Superblock efsSb = new EFS_Superblock();
|
|
|
|
|
|
|
|
|
|
|
|
// Misaligned
|
2017-12-26 06:05:12 +00:00
|
|
|
|
if(imagePlugin.Info.XmlMediaType == XmlMediaType.OpticalDisc)
|
2017-08-08 11:51:48 +01:00
|
|
|
|
{
|
2017-12-26 06:05:12 +00:00
|
|
|
|
uint sbSize = (uint)((Marshal.SizeOf(efsSb) + 0x400) / imagePlugin.Info.SectorSize);
|
|
|
|
|
|
if((Marshal.SizeOf(efsSb) + 0x400) % imagePlugin.Info.SectorSize != 0) sbSize++;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
2017-08-09 04:46:14 +01:00
|
|
|
|
byte[] sector = imagePlugin.ReadSectors(partition.Start, sbSize);
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(sector.Length < Marshal.SizeOf(efsSb)) return;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
|
|
|
|
|
byte[] sbpiece = new byte[Marshal.SizeOf(efsSb)];
|
|
|
|
|
|
|
|
|
|
|
|
Array.Copy(sector, 0x200, sbpiece, 0, Marshal.SizeOf(efsSb));
|
|
|
|
|
|
|
|
|
|
|
|
efsSb = BigEndianMarshal.ByteArrayToStructureBigEndian<EFS_Superblock>(sbpiece);
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
DicConsole.DebugWriteLine("EFS plugin", "magic at 0x{0:X3} = 0x{1:X8} (expected 0x{2:X8} or 0x{3:X8})",
|
2017-12-22 08:43:22 +00:00
|
|
|
|
0x200, efsSb.sb_magic, EFS_MAGIC, EFS_MAGIC_NEW);
|
2017-08-08 11:51:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
2017-12-26 06:05:12 +00:00
|
|
|
|
uint sbSize = (uint)(Marshal.SizeOf(efsSb) / imagePlugin.Info.SectorSize);
|
|
|
|
|
|
if(Marshal.SizeOf(efsSb) % imagePlugin.Info.SectorSize != 0) sbSize++;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
|
|
|
|
|
byte[] sector = imagePlugin.ReadSectors(partition.Start + 1, sbSize);
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(sector.Length < Marshal.SizeOf(efsSb)) return;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
|
|
|
|
|
efsSb = BigEndianMarshal.ByteArrayToStructureBigEndian<EFS_Superblock>(sector);
|
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
DicConsole.DebugWriteLine("EFS plugin", "magic at {0} = 0x{1:X8} (expected 0x{2:X8} or 0x{3:X8})", 1,
|
2017-12-22 08:43:22 +00:00
|
|
|
|
efsSb.sb_magic, EFS_MAGIC, EFS_MAGIC_NEW);
|
2017-08-08 11:51:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-22 08:43:22 +00:00
|
|
|
|
if(efsSb.sb_magic != EFS_MAGIC && efsSb.sb_magic != EFS_MAGIC_NEW) return;
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
|
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
|
|
sb.AppendLine("SGI extent filesystem");
|
2017-12-22 08:43:22 +00:00
|
|
|
|
if(efsSb.sb_magic == EFS_MAGIC_NEW) sb.AppendLine("New version");
|
2017-08-08 11:51:48 +01:00
|
|
|
|
sb.AppendFormat("Filesystem size: {0} basic blocks", efsSb.sb_size).AppendLine();
|
|
|
|
|
|
sb.AppendFormat("First cylinder group starts at block {0}", efsSb.sb_firstcg).AppendLine();
|
|
|
|
|
|
sb.AppendFormat("Cylinder group size: {0} basic blocks", efsSb.sb_cgfsize).AppendLine();
|
|
|
|
|
|
sb.AppendFormat("{0} inodes per cylinder group", efsSb.sb_cgisize).AppendLine();
|
|
|
|
|
|
sb.AppendFormat("{0} sectors per track", efsSb.sb_sectors).AppendLine();
|
|
|
|
|
|
sb.AppendFormat("{0} heads per cylinder", efsSb.sb_heads).AppendLine();
|
|
|
|
|
|
sb.AppendFormat("{0} cylinder groups", efsSb.sb_ncg).AppendLine();
|
2017-12-23 03:59:48 +00:00
|
|
|
|
sb.AppendFormat("Volume created on {0}", DateHandlers.UnixToDateTime(efsSb.sb_time)).AppendLine();
|
2017-08-08 11:51:48 +01:00
|
|
|
|
sb.AppendFormat("{0} bytes on bitmap", efsSb.sb_bmsize).AppendLine();
|
|
|
|
|
|
sb.AppendFormat("{0} free blocks", efsSb.sb_tfree).AppendLine();
|
|
|
|
|
|
sb.AppendFormat("{0} free inodes", efsSb.sb_tinode).AppendLine();
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(efsSb.sb_bmblock > 0) sb.AppendFormat("Bitmap resides at block {0}", efsSb.sb_bmblock).AppendLine();
|
2017-08-08 11:51:48 +01:00
|
|
|
|
if(efsSb.sb_replsb > 0)
|
|
|
|
|
|
sb.AppendFormat("Replacement superblock resides at block {0}", efsSb.sb_replsb).AppendLine();
|
2017-12-19 20:33:03 +00:00
|
|
|
|
if(efsSb.sb_lastinode > 0) sb.AppendFormat("Last inode allocated: {0}", efsSb.sb_lastinode).AppendLine();
|
|
|
|
|
|
if(efsSb.sb_dirty > 0) sb.AppendLine("Volume is dirty");
|
2017-08-08 11:51:48 +01:00
|
|
|
|
sb.AppendFormat("Checksum: 0x{0:X8}", efsSb.sb_checksum).AppendLine();
|
2017-12-26 06:05:12 +00:00
|
|
|
|
sb.AppendFormat("Volume name: {0}", StringHandlers.CToString(efsSb.sb_fname, currentEncoding)).AppendLine();
|
|
|
|
|
|
sb.AppendFormat("Volume pack: {0}", StringHandlers.CToString(efsSb.sb_fpack, currentEncoding)).AppendLine();
|
2017-08-08 11:51:48 +01:00
|
|
|
|
|
|
|
|
|
|
information = sb.ToString();
|
|
|
|
|
|
|
2017-12-26 06:05:12 +00:00
|
|
|
|
xmlFsType = new FileSystemType
|
2017-08-08 11:51:48 +01:00
|
|
|
|
{
|
|
|
|
|
|
Type = "Extent File System",
|
|
|
|
|
|
ClusterSize = 512,
|
|
|
|
|
|
Clusters = efsSb.sb_size,
|
|
|
|
|
|
FreeClusters = efsSb.sb_tfree,
|
|
|
|
|
|
FreeClustersSpecified = true,
|
|
|
|
|
|
Dirty = efsSb.sb_dirty > 0,
|
2017-12-26 06:05:12 +00:00
|
|
|
|
VolumeName = StringHandlers.CToString(efsSb.sb_fname, currentEncoding),
|
2017-12-21 17:58:51 +00:00
|
|
|
|
VolumeSerial = $"{efsSb.sb_checksum:X8}",
|
2017-12-23 03:59:48 +00:00
|
|
|
|
CreationDate = DateHandlers.UnixToDateTime(efsSb.sb_time),
|
2017-08-08 11:51:48 +01:00
|
|
|
|
CreationDateSpecified = true
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-24 02:37:41 +00:00
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
|
|
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
|
|
|
|
|
struct EFS_Superblock
|
|
|
|
|
|
{
|
|
|
|
|
|
/* 0: fs size incl. bb 0 (in bb) */
|
|
|
|
|
|
public int sb_size;
|
|
|
|
|
|
/* 4: first cg offset (in bb) */
|
|
|
|
|
|
public int sb_firstcg;
|
|
|
|
|
|
/* 8: cg size (in bb) */
|
|
|
|
|
|
public int sb_cgfsize;
|
|
|
|
|
|
/* 12: inodes/cg (in bb) */
|
|
|
|
|
|
public short sb_cgisize;
|
|
|
|
|
|
/* 14: geom: sectors/track */
|
|
|
|
|
|
public short sb_sectors;
|
|
|
|
|
|
/* 16: geom: heads/cylinder (unused) */
|
|
|
|
|
|
public short sb_heads;
|
|
|
|
|
|
/* 18: num of cg's in the filesystem */
|
|
|
|
|
|
public short sb_ncg;
|
|
|
|
|
|
/* 20: non-0 indicates fsck required */
|
|
|
|
|
|
public short sb_dirty;
|
|
|
|
|
|
/* 22: */
|
|
|
|
|
|
public short sb_pad0;
|
|
|
|
|
|
/* 24: superblock ctime */
|
|
|
|
|
|
public int sb_time;
|
|
|
|
|
|
/* 28: magic [0] */
|
|
|
|
|
|
public uint sb_magic;
|
|
|
|
|
|
/* 32: name of filesystem */
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] public byte[] sb_fname;
|
|
|
|
|
|
/* 38: name of filesystem pack */
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] public byte[] sb_fpack;
|
|
|
|
|
|
/* 44: bitmap size (in bytes) */
|
|
|
|
|
|
public int sb_bmsize;
|
|
|
|
|
|
/* 48: total free data blocks */
|
|
|
|
|
|
public int sb_tfree;
|
|
|
|
|
|
/* 52: total free inodes */
|
|
|
|
|
|
public int sb_tinode;
|
|
|
|
|
|
/* 56: bitmap offset (grown fs) */
|
|
|
|
|
|
public int sb_bmblock;
|
|
|
|
|
|
/* 62: repl. superblock offset */
|
|
|
|
|
|
public int sb_replsb;
|
|
|
|
|
|
/* 64: last allocated inode */
|
|
|
|
|
|
public int sb_lastinode;
|
|
|
|
|
|
/* 68: unused */
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 20)] public byte[] sb_spare;
|
|
|
|
|
|
/* 88: checksum (all above) */
|
|
|
|
|
|
public uint sb_checksum;
|
|
|
|
|
|
}
|
2017-08-08 11:51:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|