Files
Aaru/Aaru.Filesystems/AppleMFS/Xattr.cs

197 lines
7.3 KiB
C#
Raw Normal View History

2017-05-19 20:28:49 +01:00
// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : Xattr.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Apple Macintosh File System plugin.
//
// --[ Description ] ----------------------------------------------------------
//
2016-08-01 00:43:31 +01:00
// Methods to handle Apple Macintosh File System extended attributes
// (Finder Info, Resource Fork, etc.)
//
// --[ 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-02-18 10:02:53 +00:00
// Copyright © 2011-2022 Natalia Portillo
// ****************************************************************************/
2022-03-07 07:36:44 +00:00
namespace Aaru.Filesystems;
using System;
2017-12-19 19:33:46 +00:00
using System.Collections.Generic;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Enums;
using Aaru.Helpers;
2022-03-06 13:29:38 +00:00
// Information from Inside Macintosh Volume II
public sealed partial class AppleMFS
{
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public ErrorNumber ListXAttr(string path, out List<string> xattrs)
{
2022-03-06 13:29:38 +00:00
xattrs = null;
2022-03-06 13:29:38 +00:00
if(!_mounted)
return ErrorNumber.AccessDenied;
2022-03-06 13:29:38 +00:00
string[] pathElements = path.Split(new[]
{
'/'
}, StringSplitOptions.RemoveEmptyEntries);
2022-03-06 13:29:38 +00:00
if(pathElements.Length != 1)
return ErrorNumber.NotSupported;
2022-03-06 13:29:38 +00:00
path = pathElements[0];
2022-03-06 13:29:38 +00:00
xattrs = new List<string>();
2022-03-06 13:29:38 +00:00
if(_debug)
if(string.Compare(path, "$", StringComparison.InvariantCulture) == 0 ||
string.Compare(path, "$Bitmap", StringComparison.InvariantCulture) == 0 ||
string.Compare(path, "$Boot", StringComparison.InvariantCulture) == 0 ||
string.Compare(path, "$MDB", StringComparison.InvariantCulture) == 0)
{
if(_device.Info.ReadableSectorTags.Contains(SectorTagType.AppleSectorTag))
xattrs.Add("com.apple.macintosh.tags");
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
2022-03-06 13:29:38 +00:00
if(!_filenameToId.TryGetValue(path.ToLowerInvariant(), out uint fileId))
return ErrorNumber.NoSuchFile;
2022-03-06 13:29:38 +00:00
if(!_idToEntry.TryGetValue(fileId, out FileEntry entry))
return ErrorNumber.NoSuchFile;
2022-03-06 13:29:38 +00:00
if(entry.flRLgLen > 0)
{
xattrs.Add("com.apple.ResourceFork");
2022-03-06 13:29:38 +00:00
if(_debug && _device.Info.ReadableSectorTags.Contains(SectorTagType.AppleSectorTag))
xattrs.Add("com.apple.ResourceFork.tags");
}
2022-03-06 13:29:38 +00:00
xattrs.Add("com.apple.FinderInfo");
2022-03-06 13:29:38 +00:00
if(_debug &&
_device.Info.ReadableSectorTags.Contains(SectorTagType.AppleSectorTag) &&
entry.flLgLen > 0)
xattrs.Add("com.apple.macintosh.tags");
2022-03-06 13:29:38 +00:00
xattrs.Sort();
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public ErrorNumber GetXattr(string path, string xattr, ref byte[] buf)
{
if(!_mounted)
return ErrorNumber.AccessDenied;
2022-03-06 13:29:38 +00:00
string[] pathElements = path.Split(new[]
{
'/'
}, StringSplitOptions.RemoveEmptyEntries);
2022-03-06 13:29:38 +00:00
if(pathElements.Length != 1)
return ErrorNumber.NotSupported;
2022-03-06 13:29:38 +00:00
path = pathElements[0];
2022-03-06 13:29:38 +00:00
if(_debug)
if(string.Compare(path, "$", StringComparison.InvariantCulture) == 0 ||
string.Compare(path, "$Bitmap", StringComparison.InvariantCulture) == 0 ||
string.Compare(path, "$Boot", StringComparison.InvariantCulture) == 0 ||
string.Compare(path, "$MDB", StringComparison.InvariantCulture) == 0)
if(_device.Info.ReadableSectorTags.Contains(SectorTagType.AppleSectorTag) &&
string.Compare(xattr, "com.apple.macintosh.tags", StringComparison.InvariantCulture) == 0)
{
if(string.Compare(path, "$", StringComparison.InvariantCulture) == 0)
{
2022-03-06 13:29:38 +00:00
buf = new byte[_directoryTags.Length];
Array.Copy(_directoryTags, 0, buf, 0, buf.Length);
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
2022-03-06 13:29:38 +00:00
if(string.Compare(path, "$Bitmap", StringComparison.InvariantCulture) == 0)
{
buf = new byte[_bitmapTags.Length];
Array.Copy(_bitmapTags, 0, buf, 0, buf.Length);
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
2022-03-06 13:29:38 +00:00
if(string.Compare(path, "$Boot", StringComparison.InvariantCulture) == 0)
{
buf = new byte[_bootTags.Length];
Array.Copy(_bootTags, 0, buf, 0, buf.Length);
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
2022-03-06 13:29:38 +00:00
if(string.Compare(path, "$MDB", StringComparison.InvariantCulture) == 0)
{
buf = new byte[_mdbTags.Length];
Array.Copy(_mdbTags, 0, buf, 0, buf.Length);
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
2022-03-06 13:29:38 +00:00
}
else
return ErrorNumber.NoSuchExtendedAttribute;
2022-03-06 13:29:38 +00:00
ErrorNumber error;
2022-03-06 13:29:38 +00:00
if(!_filenameToId.TryGetValue(path.ToLowerInvariant(), out uint fileId))
return ErrorNumber.NoSuchFile;
2022-03-06 13:29:38 +00:00
if(!_idToEntry.TryGetValue(fileId, out FileEntry entry))
return ErrorNumber.NoSuchFile;
2022-11-13 19:38:03 +00:00
switch(entry.flRLgLen)
2022-03-06 13:29:38 +00:00
{
2022-11-13 19:38:03 +00:00
case > 0 when string.Compare(xattr, "com.apple.ResourceFork", StringComparison.InvariantCulture) == 0:
error = ReadFile(path, out buf, true, false);
2022-11-13 19:38:03 +00:00
return error;
case > 0 when string.Compare(xattr, "com.apple.ResourceFork.tags", StringComparison.InvariantCulture) == 0:
error = ReadFile(path, out buf, true, true);
2022-11-13 19:38:03 +00:00
return error;
2022-03-06 13:29:38 +00:00
}
2022-03-06 13:29:38 +00:00
if(string.Compare(xattr, "com.apple.FinderInfo", StringComparison.InvariantCulture) == 0)
{
buf = Marshal.StructureToByteArrayBigEndian(entry.flUsrWds);
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
2022-03-06 13:29:38 +00:00
if(!_debug ||
!_device.Info.ReadableSectorTags.Contains(SectorTagType.AppleSectorTag) ||
string.Compare(xattr, "com.apple.macintosh.tags", StringComparison.InvariantCulture) != 0)
return ErrorNumber.NoSuchExtendedAttribute;
2022-03-06 13:29:38 +00:00
error = ReadFile(path, out buf, false, true);
2022-03-06 13:29:38 +00:00
return error;
}
2017-12-19 20:33:03 +00:00
}