From 9afaffdc73a07a92998690330389ad2fd48efea3 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sat, 11 Apr 2026 00:38:31 +0100 Subject: [PATCH] [BeOFS] Add support for analyze command --- Aaru.Filesystems/BOFS/Analyze.cs | 282 +++++++++++++++++++++++++++++++ 1 file changed, 282 insertions(+) create mode 100644 Aaru.Filesystems/BOFS/Analyze.cs diff --git a/Aaru.Filesystems/BOFS/Analyze.cs b/Aaru.Filesystems/BOFS/Analyze.cs new file mode 100644 index 000000000..61609075d --- /dev/null +++ b/Aaru.Filesystems/BOFS/Analyze.cs @@ -0,0 +1,282 @@ +// /*************************************************************************** +// Aaru Data Preservation Suite +// ---------------------------------------------------------------------------- +// +// Filename : Analyze.cs +// Author(s) : Natalia Portillo +// +// Component : BeOS old filesystem 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 . +// +// ---------------------------------------------------------------------------- +// Copyright © 2011-2026 Natalia Portillo +// ****************************************************************************/ + +using System; +using System.Collections.Generic; +using System.Linq; +using Aaru.CommonTypes; +using Aaru.CommonTypes.Enums; +using Aaru.CommonTypes.Interfaces; +using Aaru.CommonTypes.Structs; +using Aaru.Helpers; + +namespace Aaru.Filesystems; + +public sealed partial class BOFS +{ +#region IReadOnlyFilesystem Members + + /// + public ErrorNumber GetFilesWithAffectedSectors(IEnumerable<(ulong Start, ulong End)> sectorExtents, + out List files, + InitProgressHandler initProgress = null, + UpdateProgressHandler updateProgress = null, + PulseProgressHandler pulseProgress = null, + EndProgressHandler endProgress = null) + { + files = []; + + if(sectorExtents is null) return ErrorNumber.InvalidArgument; + + List<(ulong Start, ulong End)> normalizedExtents = NormalizeAnalyzeExtents(sectorExtents); + + if(normalizedExtents.Count == 0) return ErrorNumber.NoError; + + try + { + initProgress?.Invoke(); + + return TraverseDirectoryForAffectedSectors("/", normalizedExtents, files, updateProgress, pulseProgress); + } + finally + { + endProgress?.Invoke(); + } + } + +#endregion + + ErrorNumber TraverseDirectoryForAffectedSectors(string path, IReadOnlyList<(ulong Start, ulong End)> sectorExtents, + List files, UpdateProgressHandler updateProgress, + PulseProgressHandler pulseProgress) + { + pulseProgress?.Invoke(path); + + ErrorNumber errno = OpenDir(path, out IDirNode node); + + if(errno != ErrorNumber.NoError) return errno; + + try + { + List directoryEntries = []; + + while(true) + { + errno = ReadDir(node, out string entryName); + + if(errno != ErrorNumber.NoError) return errno; + + if(entryName is null) break; + + directoryEntries.Add(entryName); + } + + string[] orderedEntries = directoryEntries.Where(static name => !string.IsNullOrWhiteSpace(name)) + .OrderBy(static name => name, StringComparer.Ordinal) + .ToArray(); + + long maximum = orderedEntries.Length > 0 ? orderedEntries.Length : 1; + + for(var i = 0; i < orderedEntries.Length; i++) + { + string entryPath = path == "/" ? "/" + orderedEntries[i] : path + "/" + orderedEntries[i]; + + updateProgress?.Invoke(entryPath, i + 1, maximum); + + errno = LookupEntry(entryPath, out FileEntry entry); + + if(errno != ErrorNumber.NoError) return errno; + + if(entry.FileType == DIR_TYPE) + { + errno = TraverseDirectoryForAffectedSectors(entryPath, + sectorExtents, + files, + updateProgress, + pulseProgress); + + if(errno != ErrorNumber.NoError) return errno; + + continue; + } + + errno = AddOverlappingFile(entryPath, entry, sectorExtents, files); + + if(errno != ErrorNumber.NoError) return errno; + } + + return ErrorNumber.NoError; + } + finally + { + CloseDir(node); + } + } + + ErrorNumber AddOverlappingFile(string path, FileEntry entry, IReadOnlyList<(ulong Start, ulong End)> sectorExtents, + List files) + { + if(entry.LogicalSize <= 0) return ErrorNumber.NoError; + + ErrorNumber errno = FindOverlappingExtents(entry, sectorExtents, out List<(ulong Start, ulong End)> overlaps); + + if(errno != ErrorNumber.NoError) return errno; + + if(overlaps.Count == 0) return ErrorNumber.NoError; + + files.Add(new FileSectorInfo + { + Path = path, + Inode = (ulong)entry.RecordId, + AffectedSectors = overlaps + }); + + return ErrorNumber.NoError; + } + + ErrorNumber FindOverlappingExtents(FileEntry entry, IReadOnlyList<(ulong Start, ulong End)> sectorExtents, + out List<(ulong Start, ulong End)> overlaps) + { + overlaps = []; + + if(entry.LogicalSize <= 0) return ErrorNumber.NoError; + + var remainingBytes = (ulong)entry.LogicalSize; + ulong sectorSize = _imagePlugin.Info.SectorSize; + const ulong bofsLogicalSectorSize = 512; + + if((entry.FirstAllocList & unchecked((int)0x80000000)) != 0) + { + ulong contiguousSector = (uint)(entry.FirstAllocList & 0x7FFFFFFF); + ulong byteOffset = contiguousSector * bofsLogicalSectorSize; + ulong startSector = _partition.Start + byteOffset / sectorSize; + ulong offsetInSector = byteOffset % sectorSize; + ulong sectorsInRun = (remainingBytes + offsetInSector + sectorSize - 1) / sectorSize; + + if(sectorsInRun == 0) sectorsInRun = 1; + + AddExtentOverlaps(startSector, startSector + sectorsInRun - 1, sectorExtents, overlaps); + overlaps = NormalizeAnalyzeExtents(overlaps); + + return ErrorNumber.NoError; + } + + ulong fatByteOffset = (uint)entry.FirstAllocList * bofsLogicalSectorSize; + ulong deviceSectorOffsetFromPartition = fatByteOffset / _imagePlugin.Info.SectorSize; + ulong offsetInDeviceSector = fatByteOffset % _imagePlugin.Info.SectorSize; + ulong absoluteDeviceSector = _partition.Start + deviceSectorOffsetFromPartition; + + ErrorNumber errno = _imagePlugin.ReadSectors(absoluteDeviceSector, false, 1, out byte[] sectorData, out _); + + if(errno != ErrorNumber.NoError) return errno; + + if(sectorData.Length < (int)(offsetInDeviceSector + bofsLogicalSectorSize)) return ErrorNumber.InvalidArgument; + + var fat = new uint[bofsLogicalSectorSize / sizeof(uint)]; + var fatBuffer = new byte[bofsLogicalSectorSize]; + + Array.Copy(sectorData, (int)offsetInDeviceSector, fatBuffer, 0, (int)bofsLogicalSectorSize); + + for(var i = 0; i < fat.Length; i++) fat[i] = BigEndianBitConverter.ToUInt32(fatBuffer, i * sizeof(uint)); + + for(var i = 0; i < 63 && remainingBytes > 0; i++) + { + int startIndex = 2 + i * 2; + int sizeIndex = 3 + i * 2; + + if(sizeIndex >= fat.Length) break; + + uint startLogicalSector = fat[startIndex]; + uint sizeLogicalSectors = fat[sizeIndex]; + + if(startLogicalSector == 0xFFFFFFFF || sizeLogicalSectors == 0) break; + + ulong extentBytes = sizeLogicalSectors * bofsLogicalSectorSize; + ulong bytesInRun = Math.Min(extentBytes, remainingBytes); + + if(bytesInRun == 0) continue; + + ulong byteOffset = startLogicalSector * bofsLogicalSectorSize; + ulong startSector = _partition.Start + byteOffset / sectorSize; + ulong offsetInSector = byteOffset % sectorSize; + ulong sectorsInRun = (bytesInRun + offsetInSector + sectorSize - 1) / sectorSize; + + if(sectorsInRun == 0) sectorsInRun = 1; + + AddExtentOverlaps(startSector, startSector + sectorsInRun - 1, sectorExtents, overlaps); + remainingBytes -= bytesInRun; + } + + overlaps = NormalizeAnalyzeExtents(overlaps); + + return ErrorNumber.NoError; + } + + static void AddExtentOverlaps(ulong startSector, ulong endSector, + IReadOnlyList<(ulong Start, ulong End)> sectorExtents, + List<(ulong Start, ulong End)> overlaps) + { + foreach((ulong Start, ulong End) requestedExtent in sectorExtents) + { + if(requestedExtent.End < startSector || requestedExtent.Start > endSector) continue; + + overlaps.Add((Math.Max(startSector, requestedExtent.Start), Math.Min(endSector, requestedExtent.End))); + } + } + + static List<(ulong Start, ulong End)> NormalizeAnalyzeExtents(IEnumerable<(ulong Start, ulong End)> extents) + { + var orderedExtents = extents.Where(static extent => extent.End >= extent.Start) + .OrderBy(static extent => extent.Start) + .ThenBy(static extent => extent.End) + .ToList(); + + List<(ulong Start, ulong End)> normalizedExtents = []; + + if(orderedExtents.Count == 0) return normalizedExtents; + + (ulong Start, ulong End) currentExtent = orderedExtents[0]; + + for(var i = 1; i < orderedExtents.Count; i++) + { + if(orderedExtents[i].Start <= currentExtent.End + 1) + { + currentExtent.End = Math.Max(currentExtent.End, orderedExtents[i].End); + + continue; + } + + normalizedExtents.Add(currentExtent); + currentExtent = orderedExtents[i]; + } + + normalizedExtents.Add(currentExtent); + + return normalizedExtents; + } +} \ No newline at end of file