2017-09-21 21:20:53 +01:00
|
|
|
|
// /***************************************************************************
|
2020-02-27 12:31:25 +00:00
|
|
|
|
// Aaru Data Preservation Suite
|
2017-09-21 21:20:53 +01:00
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : MicroDOS.cs
|
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
|
//
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Component : MicroDOS filesystem plugin
|
2017-09-21 21:20:53 +01:00
|
|
|
|
//
|
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
//
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Identifies the MicroDOS filesystem and shows information.
|
2017-09-21 21:20:53 +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/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2022-12-03 16:07:10 +00:00
|
|
|
|
// Copyright © 2011-2023 Natalia Portillo
|
2017-09-21 21:20:53 +01:00
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
|
2022-03-07 07:36:44 +00:00
|
|
|
|
// ReSharper disable UnusedType.Local
|
|
|
|
|
|
// ReSharper disable UnusedMember.Local
|
|
|
|
|
|
|
2017-09-21 21:20:53 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
using System.Text;
|
2020-02-27 00:33:26 +00:00
|
|
|
|
using Aaru.CommonTypes;
|
2021-09-19 21:16:47 +01:00
|
|
|
|
using Aaru.CommonTypes.Enums;
|
2020-02-27 00:33:26 +00:00
|
|
|
|
using Aaru.CommonTypes.Interfaces;
|
2017-12-21 14:30:38 +00:00
|
|
|
|
using Schemas;
|
2020-02-27 00:33:26 +00:00
|
|
|
|
using Marshal = Aaru.Helpers.Marshal;
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
|
namespace Aaru.Filesystems;
|
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Implements detection for the MicroDOS filesystem. Information from http://www.owg.ru/mkt/BK/MKDOS.TXT Thanks
|
|
|
|
|
|
/// to tarlabnor for translating it
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public sealed class MicroDOS : IFilesystem
|
2017-09-21 21:20:53 +01:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
const ushort MAGIC = 0xA72E;
|
|
|
|
|
|
const ushort MAGIC2 = 0x530C;
|
|
|
|
|
|
|
2022-11-28 02:59:53 +00:00
|
|
|
|
const string FS_TYPE = "microdos";
|
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public FileSystemType XmlFsType { get; private set; }
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public Encoding Encoding { get; private set; }
|
|
|
|
|
|
/// <inheritdoc />
|
2022-11-28 02:59:53 +00:00
|
|
|
|
public string Name => Localization.MicroDOS_Name;
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public Guid Id => new("9F9A364A-1A27-48A3-B730-7A7122000324");
|
|
|
|
|
|
/// <inheritdoc />
|
2022-11-28 02:59:53 +00:00
|
|
|
|
public string Author => Authors.NataliaPortillo;
|
2022-03-06 13:29:38 +00:00
|
|
|
|
|
2021-08-17 14:25:12 +01:00
|
|
|
|
/// <inheritdoc />
|
2022-03-06 13:29:38 +00:00
|
|
|
|
public bool Identify(IMediaImage imagePlugin, Partition partition)
|
2017-09-21 21:20:53 +01:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(1 + partition.Start >= partition.End)
|
|
|
|
|
|
return false;
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(imagePlugin.Info.SectorSize < 512)
|
|
|
|
|
|
return false;
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ErrorNumber errno = imagePlugin.ReadSector(0 + partition.Start, out byte[] bk0);
|
2021-09-19 21:16:47 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(errno != ErrorNumber.NoError)
|
|
|
|
|
|
return false;
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
Block0 block0 = Marshal.ByteArrayToStructureLittleEndian<Block0>(bk0);
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
|
return block0 is { label: MAGIC, mklabel: MAGIC2 };
|
2022-03-06 13:29:38 +00:00
|
|
|
|
}
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
2022-03-07 07:36:44 +00:00
|
|
|
|
public void GetInformation(IMediaImage imagePlugin, Partition partition, out string information, Encoding encoding)
|
2022-03-06 13:29:38 +00:00
|
|
|
|
{
|
|
|
|
|
|
Encoding = encoding ?? Encoding.GetEncoding("koi8-r");
|
|
|
|
|
|
information = "";
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
var sb = new StringBuilder();
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ErrorNumber errno = imagePlugin.ReadSector(0 + partition.Start, out byte[] bk0);
|
2021-09-19 21:16:47 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(errno != ErrorNumber.NoError)
|
|
|
|
|
|
return;
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
Block0 block0 = Marshal.ByteArrayToStructureLittleEndian<Block0>(bk0);
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-11-28 02:59:53 +00:00
|
|
|
|
sb.AppendLine(Localization.MicroDOS_filesystem);
|
|
|
|
|
|
sb.AppendFormat(Localization.Volume_has_0_blocks_1_bytes, block0.blocks, block0.blocks * 512).AppendLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-11-28 02:59:53 +00:00
|
|
|
|
sb.AppendFormat(Localization.Volume_has_0_blocks_used_1_bytes, block0.usedBlocks, block0.usedBlocks * 512).
|
2022-03-06 13:29:38 +00:00
|
|
|
|
AppendLine();
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-11-28 02:59:53 +00:00
|
|
|
|
sb.AppendFormat(Localization.Volume_contains_0_files, block0.files).AppendLine();
|
|
|
|
|
|
sb.AppendFormat(Localization.First_used_block_is_0, block0.firstUsedBlock).AppendLine();
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
XmlFsType = new FileSystemType
|
|
|
|
|
|
{
|
2022-11-28 02:59:53 +00:00
|
|
|
|
Type = FS_TYPE,
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ClusterSize = 512,
|
|
|
|
|
|
Clusters = block0.blocks,
|
|
|
|
|
|
Files = block0.files,
|
|
|
|
|
|
FilesSpecified = true,
|
|
|
|
|
|
FreeClusters = (ulong)(block0.blocks - block0.usedBlocks),
|
|
|
|
|
|
FreeClustersSpecified = true
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
information = sb.ToString();
|
|
|
|
|
|
}
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
// Followed by directory entries
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
|
|
|
|
readonly struct Block0
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>BK starts booting here</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 24)]
|
|
|
|
|
|
public readonly byte[] bootCode;
|
|
|
|
|
|
/// <summary>Number of files in directory</summary>
|
|
|
|
|
|
public readonly ushort files;
|
|
|
|
|
|
/// <summary>Total number of blocks in files of the directory</summary>
|
|
|
|
|
|
public readonly ushort usedBlocks;
|
|
|
|
|
|
/// <summary>Unknown</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 228)]
|
|
|
|
|
|
public readonly byte[] unknown;
|
|
|
|
|
|
/// <summary>Ownership label (label that shows it belongs to Micro DOS format)</summary>
|
|
|
|
|
|
public readonly ushort label;
|
|
|
|
|
|
/// <summary>MK-DOS directory format label</summary>
|
|
|
|
|
|
public readonly ushort mklabel;
|
|
|
|
|
|
/// <summary>Unknown</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 50)]
|
|
|
|
|
|
public readonly byte[] unknown2;
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Disk size in blocks (absolute value for the system unlike NORD, NORTON etc.) that doesn't use two fixed values
|
|
|
|
|
|
/// 40 or 80 tracks, but i.e. if you drive works with 76 tracks this field will contain an appropriate number of blocks
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public readonly ushort blocks;
|
|
|
|
|
|
/// <summary> Number of the first file's block. Value is changable</summary>
|
|
|
|
|
|
public readonly ushort firstUsedBlock;
|
|
|
|
|
|
/// <summary>Unknown</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)]
|
|
|
|
|
|
public readonly byte[] unknown3;
|
|
|
|
|
|
}
|
2017-09-21 21:20:53 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
|
|
|
|
readonly struct DirectoryEntry
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>File status</summary>
|
|
|
|
|
|
public readonly byte status;
|
|
|
|
|
|
/// <summary>Directory number (0 - root)</summary>
|
|
|
|
|
|
public readonly byte directory;
|
|
|
|
|
|
/// <summary>File name 14. symbols in ASCII KOI8</summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 12)]
|
|
|
|
|
|
public readonly byte[] filename;
|
|
|
|
|
|
/// <summary>Block number</summary>
|
|
|
|
|
|
public readonly ushort blockNo;
|
|
|
|
|
|
/// <summary>Length in blocks</summary>
|
|
|
|
|
|
public readonly ushort blocks;
|
|
|
|
|
|
/// <summary>Address</summary>
|
|
|
|
|
|
public readonly ushort address;
|
|
|
|
|
|
/// <summary>Length</summary>
|
|
|
|
|
|
public readonly ushort length;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
enum FileStatus : byte
|
|
|
|
|
|
{
|
2022-11-15 15:58:43 +00:00
|
|
|
|
CommonFile = 0, Protected = 1, LogicalDisk = 2,
|
|
|
|
|
|
BadFile = 0x80, Deleted = 0xFF
|
2017-09-21 21:20:53 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|