Files
Aaru/Aaru.Filesystems/EFS/Structs.cs

94 lines
3.4 KiB
C#

// /***************************************************************************
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : Structs.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Extent File System plugin
//
// --[ 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-2025 Natalia Portillo
// ****************************************************************************/
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
using Aaru.CommonTypes.Attributes;
namespace Aaru.Filesystems;
/// <inheritdoc />
/// <summary>Implements identification for the SGI Extent FileSystem</summary>
public sealed partial class EFS
{
#region Nested type: Superblock
[StructLayout(LayoutKind.Sequential, Pack = 1)]
[SuppressMessage("ReSharper", "InconsistentNaming")]
[SwapEndian]
partial struct 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;
}
#endregion
}