Files
Aaru/Aaru.Filesystems/AtheOS/Info.cs

176 lines
7.0 KiB
C#
Raw Normal View History

2017-07-26 03:08:29 +01:00
// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
2017-07-26 03:08:29 +01:00
// ----------------------------------------------------------------------------
//
2022-12-07 13:07:31 +00:00
// Filename : Info.cs
2017-07-26 03:08:29 +01:00
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Atheos filesystem plugin.
2017-07-26 03:08:29 +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/>.
//
// ----------------------------------------------------------------------------
2024-05-01 04:17:32 +01:00
// Copyright © 2011-2024 Natalia Portillo
2017-07-26 03:08:29 +01:00
// ****************************************************************************/
using System;
2020-07-20 07:47:12 +01:00
using System.Diagnostics.CodeAnalysis;
2017-07-26 03:08:29 +01:00
using System.Text;
using Aaru.CommonTypes.AaruMetadata;
using Aaru.CommonTypes.Enums;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Interfaces;
2020-07-20 15:43:52 +01:00
using Aaru.Helpers;
using Partition = Aaru.CommonTypes.Partition;
2017-07-26 03:08:29 +01:00
namespace Aaru.Filesystems;
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
/// <summary>Implements detection for the AtheOS filesystem</summary>
[SuppressMessage("ReSharper", "UnusedMember.Local")]
2022-12-07 13:07:31 +00:00
public sealed partial class AtheOS
2017-07-26 03:08:29 +01:00
{
#region IFilesystem Members
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public bool Identify(IMediaImage imagePlugin, Partition partition)
{
ulong sector = AFS_BOOTBLOCK_SIZE / imagePlugin.Info.SectorSize;
uint offset = AFS_BOOTBLOCK_SIZE % imagePlugin.Info.SectorSize;
uint run = 1;
2017-07-26 03:08:29 +01:00
2024-05-01 04:05:22 +01:00
if(imagePlugin.Info.SectorSize < AFS_SUPERBLOCK_SIZE) run = AFS_SUPERBLOCK_SIZE / imagePlugin.Info.SectorSize;
2017-07-26 03:08:29 +01:00
2024-05-01 04:05:22 +01:00
if(sector + partition.Start >= partition.End) return false;
2022-03-06 13:29:38 +00:00
ErrorNumber errno = imagePlugin.ReadSectors(sector + partition.Start, run, out byte[] tmp);
2024-05-01 04:05:22 +01:00
if(errno != ErrorNumber.NoError) return false;
var sbSector = new byte[AFS_SUPERBLOCK_SIZE];
2024-05-01 04:05:22 +01:00
if(offset + AFS_SUPERBLOCK_SIZE > tmp.Length) return false;
2017-07-26 03:08:29 +01:00
2022-03-06 13:29:38 +00:00
Array.Copy(tmp, offset, sbSector, 0, AFS_SUPERBLOCK_SIZE);
2017-07-26 03:08:29 +01:00
var magic = BitConverter.ToUInt32(sbSector, 0x20);
2017-07-26 03:08:29 +01:00
2022-03-06 13:29:38 +00:00
return magic == AFS_MAGIC1;
}
2017-07-26 03:08:29 +01:00
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public void GetInformation(IMediaImage imagePlugin, Partition partition, Encoding encoding, out string information,
out FileSystem metadata)
2022-03-06 13:29:38 +00:00
{
encoding ??= Encoding.GetEncoding("iso-8859-15");
information = "";
metadata = new FileSystem();
2017-07-26 03:08:29 +01:00
2022-03-06 13:29:38 +00:00
var sb = new StringBuilder();
2017-07-26 03:08:29 +01:00
2022-03-06 13:29:38 +00:00
ulong sector = AFS_BOOTBLOCK_SIZE / imagePlugin.Info.SectorSize;
uint offset = AFS_BOOTBLOCK_SIZE % imagePlugin.Info.SectorSize;
uint run = 1;
2017-07-26 03:08:29 +01:00
2024-05-01 04:05:22 +01:00
if(imagePlugin.Info.SectorSize < AFS_SUPERBLOCK_SIZE) run = AFS_SUPERBLOCK_SIZE / imagePlugin.Info.SectorSize;
2022-03-06 13:29:38 +00:00
ErrorNumber errno = imagePlugin.ReadSectors(sector + partition.Start, run, out byte[] tmp);
2024-05-01 04:05:22 +01:00
if(errno != ErrorNumber.NoError) return;
2017-07-26 03:08:29 +01:00
var sbSector = new byte[AFS_SUPERBLOCK_SIZE];
2022-03-06 13:29:38 +00:00
Array.Copy(tmp, offset, sbSector, 0, AFS_SUPERBLOCK_SIZE);
2017-07-26 03:08:29 +01:00
2022-03-06 13:29:38 +00:00
SuperBlock afsSb = Marshal.ByteArrayToStructureLittleEndian<SuperBlock>(sbSector);
2017-07-26 03:08:29 +01:00
sb.AppendLine(Localization.Atheos_filesystem);
2017-07-26 03:08:29 +01:00
2024-05-01 04:05:22 +01:00
if(afsSb.flags == 1) sb.AppendLine(Localization.Filesystem_is_read_only);
2020-02-29 18:03:35 +00:00
sb.AppendFormat(Localization.Volume_name_0, StringHandlers.CToString(afsSb.name, encoding)).AppendLine();
sb.AppendFormat(Localization._0_bytes_per_block, afsSb.block_size).AppendLine();
2020-02-29 18:03:35 +00:00
2024-05-01 04:05:22 +01:00
sb.AppendFormat(Localization._0_blocks_in_volume_1_bytes, afsSb.num_blocks, afsSb.num_blocks * afsSb.block_size)
.AppendLine();
2020-02-29 18:03:35 +00:00
2024-05-01 04:05:22 +01:00
sb.AppendFormat(Localization._0_used_blocks_1_bytes, afsSb.used_blocks, afsSb.used_blocks * afsSb.block_size)
.AppendLine();
2020-02-29 18:03:35 +00:00
sb.AppendFormat(Localization._0_bytes_per_i_node, afsSb.inode_size).AppendLine();
2020-02-29 18:03:35 +00:00
2024-05-01 04:05:22 +01:00
sb.AppendFormat(Localization._0_blocks_per_allocation_group_1_bytes,
afsSb.blocks_per_ag,
afsSb.blocks_per_ag * afsSb.block_size)
.AppendLine();
2020-02-29 18:03:35 +00:00
sb.AppendFormat(Localization._0_allocation_groups_in_volume, afsSb.num_ags).AppendLine();
2020-02-29 18:03:35 +00:00
sb.AppendFormat(Localization.Journal_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes,
2024-05-01 04:05:22 +01:00
afsSb.log_blocks_start,
afsSb.log_blocks_ag,
afsSb.log_blocks_len,
afsSb.log_blocks_len * afsSb.block_size)
.AppendLine();
sb.AppendFormat(Localization.Journal_starts_in_byte_0_and_has_1_bytes_in_2_blocks,
afsSb.log_start,
afsSb.log_size,
afsSb.log_valid_blocks)
.AppendLine();
sb.AppendFormat(Localization
.Root_folder_s_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes,
afsSb.root_dir_start,
afsSb.root_dir_ag,
afsSb.root_dir_len,
afsSb.root_dir_len * afsSb.block_size)
.AppendLine();
sb.AppendFormat(Localization
.Directory_containing_files_scheduled_for_deletion_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes,
afsSb.deleted_start,
afsSb.deleted_ag,
afsSb.deleted_len,
afsSb.deleted_len * afsSb.block_size)
.AppendLine();
sb.AppendFormat(Localization
.Indices_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes,
afsSb.indices_start,
afsSb.indices_ag,
afsSb.indices_len,
afsSb.indices_len * afsSb.block_size)
.AppendLine();
sb.AppendFormat(Localization._0_blocks_for_bootloader_1_bytes,
afsSb.boot_size,
afsSb.boot_size * afsSb.block_size)
.AppendLine();
2017-07-26 03:08:29 +01:00
2022-03-06 13:29:38 +00:00
information = sb.ToString();
2017-07-26 03:08:29 +01:00
metadata = new FileSystem
2017-07-26 03:08:29 +01:00
{
Clusters = (ulong)afsSb.num_blocks,
ClusterSize = afsSb.block_size,
Dirty = false,
FreeClusters = (ulong)(afsSb.num_blocks - afsSb.used_blocks),
Type = FS_TYPE,
VolumeName = StringHandlers.CToString(afsSb.name, encoding)
2022-03-06 13:29:38 +00:00
};
}
#endregion
2017-07-26 03:08:29 +01:00
}