2017-08-25 03:02:55 +01:00
|
|
|
|
// /***************************************************************************
|
2020-02-27 12:31:25 +00:00
|
|
|
|
// Aaru Data Preservation Suite
|
2017-08-25 03:02:55 +01:00
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
2022-12-07 13:07:31 +00:00
|
|
|
|
// Filename : Structs.cs
|
2017-08-25 03:02:55 +01:00
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
|
//
|
|
|
|
|
|
// Component : RT-11 file system plugin.
|
|
|
|
|
|
//
|
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Identifies the RT-11 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/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2022-12-03 16:07:10 +00:00
|
|
|
|
// Copyright © 2011-2023 Natalia Portillo
|
2017-08-25 03:02:55 +01:00
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
using System.Runtime.InteropServices;
|
2020-02-27 00:33:26 +00:00
|
|
|
|
using Aaru.CommonTypes.Interfaces;
|
2017-08-25 03:02:55 +01:00
|
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
|
namespace Aaru.Filesystems;
|
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
// Information from http://www.trailing-edge.com/~shoppa/rt11fs/
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
/// <summary>Implements detection of the DEC RT-11 filesystem</summary>
|
2022-12-07 13:07:31 +00:00
|
|
|
|
public sealed partial class RT11 : IFilesystem
|
2017-08-25 03:02:55 +01:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
|
|
|
|
readonly struct HomeBlock
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>Bad block replacement table</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 130)]
|
|
|
|
|
|
public readonly byte[] badBlockTable;
|
|
|
|
|
|
/// <summary>Unused</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
|
|
|
|
|
|
public readonly byte[] unused;
|
|
|
|
|
|
/// <summary>INITIALIZE/RESTORE data area</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 38)]
|
|
|
|
|
|
public readonly byte[] initArea;
|
|
|
|
|
|
/// <summary>BUP information area</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 18)]
|
|
|
|
|
|
public readonly byte[] bupInformation;
|
|
|
|
|
|
/// <summary>Empty</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 260)]
|
|
|
|
|
|
public readonly byte[] empty;
|
|
|
|
|
|
/// <summary>Reserved</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
|
|
|
|
|
|
public readonly byte[] reserved1;
|
|
|
|
|
|
/// <summary>Reserved</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
|
|
|
|
|
|
public readonly byte[] reserved2;
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 14)]
|
|
|
|
|
|
public readonly byte[] empty2;
|
|
|
|
|
|
/// <summary>Cluster size</summary>
|
|
|
|
|
|
public readonly ushort cluster;
|
|
|
|
|
|
/// <summary>Block of the first directory segment</summary>
|
|
|
|
|
|
public readonly ushort rootBlock;
|
|
|
|
|
|
/// <summary>"V3A" in Radix-50</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
|
|
|
|
|
|
public readonly byte[] systemVersion;
|
|
|
|
|
|
/// <summary>Name of the volume, 12 bytes</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 12)]
|
|
|
|
|
|
public readonly byte[] volname;
|
|
|
|
|
|
/// <summary>Name of the volume owner, 12 bytes</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 12)]
|
|
|
|
|
|
public readonly byte[] ownername;
|
|
|
|
|
|
/// <summary>RT11 defines it as "DECRT11A ", 12 bytes</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 12)]
|
|
|
|
|
|
public readonly byte[] format;
|
|
|
|
|
|
/// <summary>Unused</summary>
|
|
|
|
|
|
public readonly ushort unused2;
|
|
|
|
|
|
/// <summary>Checksum of preceding 255 words (16 bit units)</summary>
|
|
|
|
|
|
public readonly ushort checksum;
|
2017-08-25 03:02:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|