Files
Aaru/Aaru.Filesystems/ISO9660/File.cs

585 lines
22 KiB
C#
Raw Normal View History

2019-07-31 20:10:27 +01:00
// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
2019-07-31 20:10:27 +01:00
// ----------------------------------------------------------------------------
//
// Filename : File.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : ISO9660 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 <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
2024-12-19 10:45:18 +00:00
// Copyright © 2011-2025 Natalia Portillo
// In the loving memory of Facunda "Tata" Suárez Domínguez, R.I.P. 2019/07/24
2019-07-31 20:10:27 +01:00
// ****************************************************************************/
using System;
2019-07-19 16:34:43 +01:00
using System.Collections.Generic;
using System.Globalization;
2019-07-20 00:38:59 +01:00
using System.IO;
2019-07-19 16:34:43 +01:00
using System.Linq;
using System.Runtime.CompilerServices;
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Interfaces;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Structs;
using Aaru.Helpers;
using Aaru.Logging;
2020-02-27 00:33:26 +00:00
using FileAttributes = Aaru.CommonTypes.Structs.FileAttributes;
namespace Aaru.Filesystems;
2022-03-06 13:29:38 +00:00
public sealed partial class ISO9660
{
ErrorNumber GetFileEntry(string path, out DecodedDirectoryEntry entry)
{
entry = null;
string cutPath = path.StartsWith("/", StringComparison.Ordinal)
? path[1..].ToLower(CultureInfo.CurrentUICulture)
: path.ToLower(CultureInfo.CurrentUICulture);
string[] pieces = cutPath.Split(new[]
{
'/'
},
StringSplitOptions.RemoveEmptyEntries);
if(pieces.Length == 0) return ErrorNumber.InvalidArgument;
var parentPath = string.Join("/", pieces, 0, pieces.Length - 1);
if(!_directoryCache.TryGetValue(parentPath, out _))
{
ErrorNumber err = OpenDir(parentPath, out IDirNode node);
if(err != ErrorNumber.NoError) return err;
CloseDir(node);
}
Dictionary<string, DecodedDirectoryEntry> parent;
if(pieces.Length == 1)
parent = _rootDirectoryCache;
else if(!_directoryCache.TryGetValue(parentPath, out parent)) return ErrorNumber.InvalidArgument;
KeyValuePair<string, DecodedDirectoryEntry> dirent =
parent.FirstOrDefault(t => t.Key.Equals(pieces[^1], StringComparison.CurrentCultureIgnoreCase));
if(string.IsNullOrEmpty(dirent.Key))
{
if(!_joliet && !pieces[^1].EndsWith(";1", StringComparison.Ordinal))
{
dirent = parent.FirstOrDefault(t => t.Key.Equals(pieces[^1] + ";1",
StringComparison.CurrentCultureIgnoreCase));
if(string.IsNullOrEmpty(dirent.Key)) return ErrorNumber.NoSuchFile;
}
else
return ErrorNumber.NoSuchFile;
}
entry = dirent.Value;
return ErrorNumber.NoError;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
ErrorNumber ReadSingleExtent(long size, uint startingSector, out byte[] buffer, bool interleaved = false,
byte fileNumber = 0) => ReadWithExtents(0,
size,
[(startingSector, (uint)size)],
interleaved,
fileNumber,
out buffer);
[MethodImpl(MethodImplOptions.AggressiveInlining)]
ErrorNumber ReadSingleExtent(long offset, long size, uint startingSector, out byte[] buffer,
bool interleaved = false, byte fileNumber = 0) => ReadWithExtents(offset,
size,
[(startingSector, (uint)size)],
interleaved,
fileNumber,
out buffer);
// Cannot think how to make this faster, as we don't know the mode sector until it is read, but we have size in bytes
ErrorNumber ReadWithExtents(long offset, long size, List<(uint extent, uint size)> extents, bool interleaved,
byte fileNumber, out byte[] buffer)
{
var ms = new MemoryStream();
long currentFilePos = offset;
for(var i = 0; i < extents.Count; i++)
{
if(offset - currentFilePos >= extents[i].size)
{
currentFilePos += extents[i].size;
continue;
}
var currentExtentSector = (uint)(offset / 2048);
long leftExtentSize = extents[i].size - currentFilePos;
while(leftExtentSize > 0)
{
ErrorNumber errno = ReadSector(extents[i].extent + currentExtentSector,
out byte[] sector,
interleaved,
fileNumber);
if(errno != ErrorNumber.NoError)
{
buffer = ms.ToArray();
return errno;
}
if(sector is null)
{
currentExtentSector++;
leftExtentSize -= 2048;
currentFilePos += 2048;
continue;
}
if(offset - currentFilePos > sector.Length)
{
currentExtentSector++;
leftExtentSize -= sector.Length;
currentFilePos += sector.Length;
continue;
}
if(offset - currentFilePos > 0)
ms.Write(sector, (int)(offset - currentFilePos), (int)(sector.Length - (offset - currentFilePos)));
else
ms.Write(sector, 0, sector.Length);
currentExtentSector++;
leftExtentSize -= sector.Length;
currentFilePos += sector.Length;
if(ms.Length >= size) break;
}
if(ms.Length >= size) break;
}
if(ms.Length >= size) ms.SetLength(size);
buffer = ms.ToArray();
return ErrorNumber.NoError;
}
byte[] ReadSubheaderWithExtents(List<(uint extent, uint size)> extents, bool copy)
{
var ms = new MemoryStream();
for(var i = 0; i < extents.Count; i++)
{
long leftExtentSize = extents[i].size;
uint currentExtentSector = 0;
while(leftExtentSize > 0)
{
ErrorNumber errno = _image.ReadSectorTag((extents[i].extent + currentExtentSector) * _blockSize / 2048,
false,
SectorTagType.CdSectorSubHeader,
out byte[] fullSector);
if(errno != ErrorNumber.NoError) return null;
ms.Write(fullSector, copy ? 0 : 4, 4);
currentExtentSector++;
leftExtentSize -= 2048;
}
}
return ms.ToArray();
}
#region IReadOnlyFilesystem Members
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public ErrorNumber GetAttributes(string path, out FileAttributes attributes)
{
attributes = new FileAttributes();
2024-05-01 04:05:22 +01:00
if(!_mounted) return ErrorNumber.AccessDenied;
2019-07-19 16:35:27 +01:00
2022-03-06 13:29:38 +00:00
ErrorNumber err = Stat(path, out FileEntryInfo stat);
2019-07-19 16:35:27 +01:00
2024-05-01 04:05:22 +01:00
if(err != ErrorNumber.NoError) return err;
2019-07-19 16:35:27 +01:00
2022-03-06 13:29:38 +00:00
attributes = stat.Attributes;
2019-07-19 16:35:27 +01:00
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
/// <inheritdoc />
public ErrorNumber OpenFile(string path, out IFileNode node)
{
node = null;
2024-05-01 04:05:22 +01:00
if(!_mounted) return ErrorNumber.AccessDenied;
ErrorNumber err = GetFileEntry(path, out DecodedDirectoryEntry entry);
2024-05-01 04:05:22 +01:00
if(err != ErrorNumber.NoError) return err;
2024-05-01 04:05:22 +01:00
if(entry.Flags.HasFlag(FileFlags.Directory) && !_debug) return ErrorNumber.IsDirectory;
2024-05-01 04:05:22 +01:00
if(entry.Extents is null) return ErrorNumber.InvalidArgument;
node = new Iso9660FileNode
{
2023-10-05 01:52:48 +01:00
Path = path,
Length = (long)entry.Size,
Offset = 0,
Dentry = entry
};
return ErrorNumber.NoError;
}
/// <inheritdoc />
public ErrorNumber CloseFile(IFileNode node)
{
2024-05-01 04:05:22 +01:00
if(!_mounted) return ErrorNumber.AccessDenied;
2024-05-01 04:05:22 +01:00
if(node is not Iso9660FileNode mynode) return ErrorNumber.InvalidArgument;
2023-10-05 01:52:48 +01:00
mynode.Dentry = null;
return ErrorNumber.NoError;
}
2022-03-06 13:29:38 +00:00
// TODO: Resolve symbolic link
/// <inheritdoc />
public ErrorNumber ReadFile(IFileNode node, long length, byte[] buffer, out long read)
2022-03-06 13:29:38 +00:00
{
read = 0;
2024-05-01 04:05:22 +01:00
if(!_mounted) return ErrorNumber.AccessDenied;
2019-07-20 00:38:59 +01:00
2024-05-01 04:05:22 +01:00
if(buffer is null || buffer.Length < length) return ErrorNumber.InvalidArgument;
2019-07-20 00:38:59 +01:00
2024-05-01 04:05:22 +01:00
if(node is not Iso9660FileNode mynode) return ErrorNumber.InvalidArgument;
read = length;
2019-07-20 00:38:59 +01:00
2024-05-01 04:05:22 +01:00
if(length + mynode.Offset >= mynode.Length) read = mynode.Length - mynode.Offset;
2023-10-05 01:52:48 +01:00
long offset = mynode.Offset + mynode.Dentry.XattrLength * _blockSize;
2023-10-05 01:52:48 +01:00
if(mynode.Dentry.CdiSystemArea?.attributes.HasFlag(CdiAttributes.DigitalAudio) != true ||
mynode.Dentry.Extents.Count != 1)
2022-03-06 13:29:38 +00:00
{
2024-05-01 04:05:22 +01:00
ErrorNumber err = ReadWithExtents(offset,
read,
mynode.Dentry.Extents,
2023-10-05 01:52:48 +01:00
mynode.Dentry.XA?.signature == XA_MAGIC &&
mynode.Dentry.XA?.attributes.HasFlag(XaAttributes.Interleaved) == true,
2024-05-01 04:05:22 +01:00
mynode.Dentry.XA?.filenumber ?? 0,
out byte[] buf);
if(err != ErrorNumber.NoError)
{
read = 0;
2019-07-20 00:38:59 +01:00
return err;
}
Array.Copy(buf, 0, buffer, 0, read);
2019-07-31 04:33:31 +01:00
node.Offset += read;
return ErrorNumber.NoError;
}
try
{
long firstSector = offset / 2352;
long offsetInSector = offset % 2352;
long sizeInSectors = (read + offsetInSector) / 2352;
2024-05-01 04:05:22 +01:00
if((read + offsetInSector) % 2352 > 0) sizeInSectors++;
2023-10-05 01:52:48 +01:00
ErrorNumber errno = _image.ReadSectorsLong((ulong)(mynode.Dentry.Extents[0].extent + firstSector),
false,
2024-05-01 04:05:22 +01:00
(uint)sizeInSectors,
out byte[] buf,
out _);
if(errno != ErrorNumber.NoError)
{
read = 0;
return errno;
}
Array.Copy(buf, offsetInSector, buffer, 0, read);
node.Offset += read;
return ErrorNumber.NoError;
}
catch(Exception ex)
{
2025-08-17 06:11:22 +01:00
AaruLogging.Debug(MODULE_NAME, Localization.Exception_reading_CD_i_audio_file);
AaruLogging.Exception(ex, Localization.Exception_reading_CD_i_audio_file);
read = 0;
return ErrorNumber.UnexpectedException;
}
2022-03-06 13:29:38 +00:00
}
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public ErrorNumber Stat(string path, out FileEntryInfo stat)
{
stat = null;
2024-05-01 04:05:22 +01:00
if(!_mounted) return ErrorNumber.AccessDenied;
2019-07-19 16:34:43 +01:00
2022-03-06 13:29:38 +00:00
ErrorNumber err = GetFileEntry(path, out DecodedDirectoryEntry entry);
2024-05-01 04:05:22 +01:00
if(err != ErrorNumber.NoError) return err;
2019-07-19 16:34:43 +01:00
2022-03-06 13:29:38 +00:00
stat = new FileEntryInfo
{
Attributes = new FileAttributes(),
Blocks = (long)(entry.Size / 2048), // TODO: XA
BlockSize = 2048,
Length = (long)entry.Size,
Links = 1,
LastWriteTimeUtc = entry.Timestamp
};
2019-07-19 16:34:43 +01:00
2024-05-01 04:05:22 +01:00
if(entry.Extents?.Count > 0) stat.Inode = entry.Extents[0].extent;
2020-04-18 20:49:46 +01:00
2024-05-01 04:05:22 +01:00
if(entry.Size % 2048 > 0) stat.Blocks++;
2024-05-01 04:05:22 +01:00
if(entry.Flags.HasFlag(FileFlags.Directory)) stat.Attributes |= FileAttributes.Directory;
2019-07-19 16:34:43 +01:00
2024-05-01 04:05:22 +01:00
if(entry.Flags.HasFlag(FileFlags.Hidden)) stat.Attributes |= FileAttributes.Hidden;
2019-07-19 16:34:43 +01:00
2022-03-06 13:29:38 +00:00
if(entry.FinderInfo?.fdFlags.HasFlag(AppleCommon.FinderFlags.kIsAlias) == true)
stat.Attributes |= FileAttributes.Alias;
2022-03-06 13:29:38 +00:00
if(entry.FinderInfo?.fdFlags.HasFlag(AppleCommon.FinderFlags.kIsInvisible) == true)
stat.Attributes |= FileAttributes.Hidden;
2022-03-06 13:29:38 +00:00
if(entry.FinderInfo?.fdFlags.HasFlag(AppleCommon.FinderFlags.kHasBeenInited) == true)
stat.Attributes |= FileAttributes.HasBeenInited;
2022-03-06 13:29:38 +00:00
if(entry.FinderInfo?.fdFlags.HasFlag(AppleCommon.FinderFlags.kHasCustomIcon) == true)
stat.Attributes |= FileAttributes.HasCustomIcon;
2022-03-06 13:29:38 +00:00
if(entry.FinderInfo?.fdFlags.HasFlag(AppleCommon.FinderFlags.kHasNoINITs) == true)
stat.Attributes |= FileAttributes.HasNoINITs;
2022-03-06 13:29:38 +00:00
if(entry.FinderInfo?.fdFlags.HasFlag(AppleCommon.FinderFlags.kIsOnDesk) == true)
stat.Attributes |= FileAttributes.IsOnDesk;
2022-03-06 13:29:38 +00:00
if(entry.FinderInfo?.fdFlags.HasFlag(AppleCommon.FinderFlags.kIsShared) == true)
stat.Attributes |= FileAttributes.Shared;
2022-03-06 13:29:38 +00:00
if(entry.FinderInfo?.fdFlags.HasFlag(AppleCommon.FinderFlags.kIsStationery) == true)
stat.Attributes |= FileAttributes.Stationery;
2022-03-06 13:29:38 +00:00
if(entry.FinderInfo?.fdFlags.HasFlag(AppleCommon.FinderFlags.kHasBundle) == true)
stat.Attributes |= FileAttributes.Bundle;
2024-05-01 04:05:22 +01:00
if(entry.AppleIcon != null) stat.Attributes |= FileAttributes.HasCustomIcon;
2022-03-06 13:29:38 +00:00
if(entry.XA != null)
{
2024-05-01 04:05:22 +01:00
if(entry.XA.Value.attributes.HasFlag(XaAttributes.GroupExecute)) stat.Mode |= 8;
2024-05-01 04:05:22 +01:00
if(entry.XA.Value.attributes.HasFlag(XaAttributes.GroupRead)) stat.Mode |= 32;
2024-05-01 04:05:22 +01:00
if(entry.XA.Value.attributes.HasFlag(XaAttributes.OwnerExecute)) stat.Mode |= 64;
2024-05-01 04:05:22 +01:00
if(entry.XA.Value.attributes.HasFlag(XaAttributes.OwnerRead)) stat.Mode |= 256;
2024-05-01 04:05:22 +01:00
if(entry.XA.Value.attributes.HasFlag(XaAttributes.SystemExecute)) stat.Mode |= 1;
2024-05-01 04:05:22 +01:00
if(entry.XA.Value.attributes.HasFlag(XaAttributes.SystemRead)) stat.Mode |= 4;
2019-07-28 16:48:18 +01:00
2022-03-06 13:29:38 +00:00
stat.UID = entry.XA.Value.user;
stat.GID = entry.XA.Value.group;
stat.Inode = entry.XA.Value.filenumber;
}
2019-07-28 16:48:18 +01:00
2022-03-06 13:29:38 +00:00
if(entry.PosixAttributes != null)
{
stat.Mode = (uint?)entry.PosixAttributes.Value.st_mode & 0x0FFF;
2022-03-06 13:29:38 +00:00
if(entry.PosixAttributes.Value.st_mode.HasFlag(PosixMode.Block))
stat.Attributes |= FileAttributes.BlockDevice;
2022-03-06 13:29:38 +00:00
if(entry.PosixAttributes.Value.st_mode.HasFlag(PosixMode.Character))
stat.Attributes |= FileAttributes.CharDevice;
2024-05-01 04:05:22 +01:00
if(entry.PosixAttributes.Value.st_mode.HasFlag(PosixMode.Pipe)) stat.Attributes |= FileAttributes.Pipe;
2024-05-01 04:05:22 +01:00
if(entry.PosixAttributes.Value.st_mode.HasFlag(PosixMode.Socket)) stat.Attributes |= FileAttributes.Socket;
2022-03-06 13:29:38 +00:00
if(entry.PosixAttributes.Value.st_mode.HasFlag(PosixMode.Symlink))
stat.Attributes |= FileAttributes.Symlink;
2022-03-06 13:29:38 +00:00
stat.Links = entry.PosixAttributes.Value.st_nlink;
stat.UID = entry.PosixAttributes.Value.st_uid;
stat.GID = entry.PosixAttributes.Value.st_gid;
stat.Inode = entry.PosixAttributes.Value.st_ino;
}
else if(entry.PosixAttributesOld != null)
{
stat.Mode = (uint?)entry.PosixAttributesOld.Value.st_mode & 0x0FFF;
2022-03-06 13:29:38 +00:00
if(entry.PosixAttributesOld.Value.st_mode.HasFlag(PosixMode.Block))
stat.Attributes |= FileAttributes.BlockDevice;
2022-03-06 13:29:38 +00:00
if(entry.PosixAttributesOld.Value.st_mode.HasFlag(PosixMode.Character))
stat.Attributes |= FileAttributes.CharDevice;
2024-05-01 04:05:22 +01:00
if(entry.PosixAttributesOld.Value.st_mode.HasFlag(PosixMode.Pipe)) stat.Attributes |= FileAttributes.Pipe;
2022-03-06 13:29:38 +00:00
if(entry.PosixAttributesOld.Value.st_mode.HasFlag(PosixMode.Socket))
stat.Attributes |= FileAttributes.Socket;
2022-03-06 13:29:38 +00:00
if(entry.PosixAttributesOld.Value.st_mode.HasFlag(PosixMode.Symlink))
stat.Attributes |= FileAttributes.Symlink;
2022-03-06 13:29:38 +00:00
stat.Links = entry.PosixAttributesOld.Value.st_nlink;
stat.UID = entry.PosixAttributesOld.Value.st_uid;
stat.GID = entry.PosixAttributesOld.Value.st_gid;
}
2019-07-28 17:46:09 +01:00
2022-03-06 13:29:38 +00:00
if(entry.AmigaProtection != null)
{
2024-05-01 04:05:22 +01:00
if(entry.AmigaProtection.Value.Multiuser.HasFlag(AmigaMultiuser.GroupExec)) stat.Mode |= 8;
2024-05-01 04:05:22 +01:00
if(entry.AmigaProtection.Value.Multiuser.HasFlag(AmigaMultiuser.GroupRead)) stat.Mode |= 32;
2024-05-01 04:05:22 +01:00
if(entry.AmigaProtection.Value.Multiuser.HasFlag(AmigaMultiuser.GroupWrite)) stat.Mode |= 16;
2024-05-01 04:05:22 +01:00
if(entry.AmigaProtection.Value.Multiuser.HasFlag(AmigaMultiuser.OtherExec)) stat.Mode |= 1;
2024-05-01 04:05:22 +01:00
if(entry.AmigaProtection.Value.Multiuser.HasFlag(AmigaMultiuser.OtherRead)) stat.Mode |= 4;
2024-05-01 04:05:22 +01:00
if(entry.AmigaProtection.Value.Multiuser.HasFlag(AmigaMultiuser.OtherWrite)) stat.Mode |= 2;
2024-05-01 04:05:22 +01:00
if(entry.AmigaProtection.Value.Protection.HasFlag(AmigaAttributes.OwnerExec)) stat.Mode |= 64;
2024-05-01 04:05:22 +01:00
if(entry.AmigaProtection.Value.Protection.HasFlag(AmigaAttributes.OwnerRead)) stat.Mode |= 256;
2024-05-01 04:05:22 +01:00
if(entry.AmigaProtection.Value.Protection.HasFlag(AmigaAttributes.OwnerWrite)) stat.Mode |= 128;
2022-03-06 13:29:38 +00:00
if(entry.AmigaProtection.Value.Protection.HasFlag(AmigaAttributes.Archive))
stat.Attributes |= FileAttributes.Archive;
}
2019-07-28 17:29:45 +01:00
2022-03-06 13:29:38 +00:00
if(entry.PosixDeviceNumber != null)
{
2022-03-06 13:29:38 +00:00
stat.DeviceNo = ((ulong)entry.PosixDeviceNumber.Value.dev_t_high << 32) +
entry.PosixDeviceNumber.Value.dev_t_low;
}
2019-07-28 17:54:40 +01:00
2024-05-01 04:05:22 +01:00
if(entry.RripModify != null) stat.LastWriteTimeUtc = DecodeIsoDateTime(entry.RripModify);
2019-07-28 18:32:15 +01:00
2024-05-01 04:05:22 +01:00
if(entry.RripAccess != null) stat.AccessTimeUtc = DecodeIsoDateTime(entry.RripAccess);
2019-07-28 18:32:15 +01:00
2024-05-01 04:05:22 +01:00
if(entry.RripAttributeChange != null) stat.StatusChangeTimeUtc = DecodeIsoDateTime(entry.RripAttributeChange);
2019-07-28 18:32:15 +01:00
2024-05-01 04:05:22 +01:00
if(entry.RripBackup != null) stat.BackupTimeUtc = DecodeIsoDateTime(entry.RripBackup);
2019-07-28 18:32:15 +01:00
2024-05-01 04:05:22 +01:00
if(entry.SymbolicLink != null) stat.Attributes |= FileAttributes.Symlink;
2019-07-28 21:33:05 +01:00
2024-05-01 04:05:22 +01:00
if(entry.XattrLength == 0 || _cdi || _highSierra) return ErrorNumber.NoError;
2022-03-06 13:29:38 +00:00
if(entry.CdiSystemArea != null)
{
stat.UID = entry.CdiSystemArea.Value.owner;
stat.GID = entry.CdiSystemArea.Value.group;
2024-05-01 04:05:22 +01:00
if(entry.CdiSystemArea.Value.attributes.HasFlag(CdiAttributes.GroupExecute)) stat.Mode |= 8;
2024-05-01 04:05:22 +01:00
if(entry.CdiSystemArea.Value.attributes.HasFlag(CdiAttributes.GroupRead)) stat.Mode |= 32;
2024-05-01 04:05:22 +01:00
if(entry.CdiSystemArea.Value.attributes.HasFlag(CdiAttributes.OtherExecute)) stat.Mode |= 1;
2024-05-01 04:05:22 +01:00
if(entry.CdiSystemArea.Value.attributes.HasFlag(CdiAttributes.OtherRead)) stat.Mode |= 4;
2024-05-01 04:05:22 +01:00
if(entry.CdiSystemArea.Value.attributes.HasFlag(CdiAttributes.OwnerExecute)) stat.Mode |= 64;
2024-05-01 04:05:22 +01:00
if(entry.CdiSystemArea.Value.attributes.HasFlag(CdiAttributes.OwnerRead)) stat.Mode |= 256;
2022-03-06 13:29:38 +00:00
}
2019-07-31 17:44:51 +01:00
ErrorNumber errno = ReadSingleExtent(entry.XattrLength * _blockSize, entry.Extents[0].extent, out byte[] ea);
2024-05-01 04:05:22 +01:00
if(errno != ErrorNumber.NoError) return ErrorNumber.NoError;
2022-03-06 13:29:38 +00:00
ExtendedAttributeRecord ear = Marshal.ByteArrayToStructureLittleEndian<ExtendedAttributeRecord>(ea);
2022-03-06 13:29:38 +00:00
stat.UID = ear.owner;
stat.GID = ear.group;
2022-03-06 13:29:38 +00:00
stat.Mode = 0;
2024-05-01 04:05:22 +01:00
if(ear.permissions.HasFlag(Permissions.GroupExecute)) stat.Mode |= 8;
2024-05-01 04:05:22 +01:00
if(ear.permissions.HasFlag(Permissions.GroupRead)) stat.Mode |= 32;
2024-05-01 04:05:22 +01:00
if(ear.permissions.HasFlag(Permissions.OwnerExecute)) stat.Mode |= 64;
2024-05-01 04:05:22 +01:00
if(ear.permissions.HasFlag(Permissions.OwnerRead)) stat.Mode |= 256;
2024-05-01 04:05:22 +01:00
if(ear.permissions.HasFlag(Permissions.OtherExecute)) stat.Mode |= 1;
2024-05-01 04:05:22 +01:00
if(ear.permissions.HasFlag(Permissions.OtherRead)) stat.Mode |= 4;
2022-03-06 13:29:38 +00:00
stat.CreationTimeUtc = DateHandlers.Iso9660ToDateTime(ear.creation_date);
stat.LastWriteTimeUtc = DateHandlers.Iso9660ToDateTime(ear.modification_date);
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
2019-07-19 16:34:43 +01:00
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public ErrorNumber ReadLink(string path, out string dest)
{
dest = null;
2019-07-28 21:33:05 +01:00
2022-03-06 13:29:38 +00:00
ErrorNumber err = GetFileEntry(path, out DecodedDirectoryEntry entry);
2019-07-28 21:33:05 +01:00
2024-05-01 04:05:22 +01:00
if(err != ErrorNumber.NoError) return err;
2024-05-01 04:05:22 +01:00
if(entry.SymbolicLink is null) return ErrorNumber.InvalidArgument;
2019-07-28 21:33:05 +01:00
2022-03-06 13:29:38 +00:00
dest = entry.SymbolicLink;
2019-07-28 21:33:05 +01:00
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
2019-07-28 21:33:05 +01:00
#endregion
}