Files
Aaru/Aaru.Filesystems/FAT/File.cs

306 lines
10 KiB
C#
Raw Normal View History

// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : File.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Microsoft FAT filesystem plugin.
//
// --[ Description ] ----------------------------------------------------------
//
// Methods to handle files.
//
// --[ 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/>.
//
// ----------------------------------------------------------------------------
2020-01-03 17:51:30 +00:00
// Copyright © 2011-2020 Natalia Portillo
// ****************************************************************************/
using System;
2019-04-26 19:56:58 +01:00
using System.Collections.Generic;
2019-04-27 00:56:49 +01:00
using System.IO;
2019-04-27 00:45:36 +01:00
using System.Linq;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Structs;
using FileAttributes = Aaru.CommonTypes.Structs.FileAttributes;
2020-02-27 00:33:26 +00:00
namespace Aaru.Filesystems.FAT
{
public partial class FAT
{
2019-04-26 00:54:51 +01:00
public Errno MapBlock(string path, long fileBlock, out long deviceBlock)
{
deviceBlock = 0;
2020-02-29 18:03:35 +00:00
if(!mounted)
return Errno.AccessDenied;
2019-04-27 00:53:43 +01:00
Errno err = Stat(path, out FileEntryInfo stat);
2020-02-29 18:03:35 +00:00
if(err != Errno.NoError)
return err;
2019-04-27 00:53:43 +01:00
2020-02-29 18:03:35 +00:00
if(stat.Attributes.HasFlag(FileAttributes.Directory) &&
!debug)
return Errno.IsDirectory;
2019-04-27 00:53:43 +01:00
uint[] clusters = GetClusters((uint)stat.Inode);
2020-02-29 18:03:35 +00:00
if(fileBlock >= clusters.Length)
return Errno.InvalidArgument;
2019-04-27 00:53:43 +01:00
2020-02-29 18:03:35 +00:00
deviceBlock = (long)(firstClusterSector + (clusters[fileBlock] * sectorsPerCluster));
2019-04-27 00:53:43 +01:00
return Errno.NoError;
2019-04-26 00:54:51 +01:00
}
2019-04-26 00:54:51 +01:00
public Errno GetAttributes(string path, out FileAttributes attributes)
{
attributes = new FileAttributes();
2020-02-29 18:03:35 +00:00
if(!mounted)
return Errno.AccessDenied;
2019-04-27 00:53:09 +01:00
Errno err = Stat(path, out FileEntryInfo stat);
2020-02-29 18:03:35 +00:00
if(err != Errno.NoError)
return err;
2019-04-27 00:53:09 +01:00
attributes = stat.Attributes;
return Errno.NoError;
2019-04-26 00:54:51 +01:00
}
public Errno Read(string path, long offset, long size, ref byte[] buf)
{
2020-02-29 18:03:35 +00:00
if(!mounted)
return Errno.AccessDenied;
2019-04-26 00:54:51 +01:00
2019-04-27 00:56:49 +01:00
Errno err = Stat(path, out FileEntryInfo stat);
2020-02-29 18:03:35 +00:00
if(err != Errno.NoError)
return err;
2019-04-27 00:56:49 +01:00
2020-02-29 18:03:35 +00:00
if(stat.Attributes.HasFlag(FileAttributes.Directory) &&
!debug)
return Errno.IsDirectory;
2019-04-27 00:56:49 +01:00
2020-02-29 18:03:35 +00:00
if(offset >= stat.Length)
return Errno.InvalidArgument;
2019-04-27 00:56:49 +01:00
2020-02-29 18:03:35 +00:00
if(size + offset >= stat.Length)
size = stat.Length - offset;
2019-04-27 00:56:49 +01:00
uint[] clusters = GetClusters((uint)stat.Inode);
long firstCluster = offset / bytesPerCluster;
long offsetInCluster = offset % bytesPerCluster;
long sizeInClusters = (size + offsetInCluster) / bytesPerCluster;
2020-02-29 18:03:35 +00:00
if((size + offsetInCluster) % bytesPerCluster > 0)
sizeInClusters++;
var ms = new MemoryStream();
2019-04-27 00:56:49 +01:00
for(int i = 0; i < sizeInClusters; i++)
{
2020-02-29 18:03:35 +00:00
if(i + firstCluster >= clusters.Length)
return Errno.InvalidArgument;
2019-04-27 00:56:49 +01:00
2020-02-29 18:03:35 +00:00
byte[] buffer = image.ReadSectors(firstClusterSector + (clusters[i + firstCluster] * sectorsPerCluster),
sectorsPerCluster);
2019-04-27 00:56:49 +01:00
ms.Write(buffer, 0, buffer.Length);
}
ms.Position = offsetInCluster;
buf = new byte[size];
ms.Read(buf, 0, (int)size);
return Errno.NoError;
2019-04-26 00:54:51 +01:00
}
public Errno Stat(string path, out FileEntryInfo stat)
{
stat = null;
2020-02-29 18:03:35 +00:00
if(!mounted)
return Errno.AccessDenied;
2019-04-26 00:54:51 +01:00
2019-04-28 11:57:54 +01:00
Errno err = GetFileEntry(path, out CompleteDirectoryEntry completeEntry);
2020-02-29 18:03:35 +00:00
if(err != Errno.NoError)
return err;
2019-04-27 00:52:40 +01:00
2019-04-28 11:57:54 +01:00
DirectoryEntry entry = completeEntry.Dirent;
2019-04-27 00:52:40 +01:00
stat = new FileEntryInfo
{
2020-02-29 18:03:35 +00:00
Attributes = new FileAttributes(), Blocks = entry.size / bytesPerCluster, BlockSize = bytesPerCluster,
Length = entry.size,
Inode = (ulong)(fat32 ? (entry.ea_handle << 16) + entry.start_cluster : entry.start_cluster),
Links = 1,
CreationTime = DateHandlers.DosToDateTime(entry.cdate, entry.ctime)
2019-04-27 00:52:40 +01:00
};
if(@namespace != Namespace.Human)
{
stat.LastWriteTime = DateHandlers.DosToDateTime(entry.mdate, entry.mtime);
stat.CreationTime = stat.CreationTime?.AddMilliseconds(entry.ctime_ms * 10);
}
2019-04-27 00:52:40 +01:00
2020-02-29 18:03:35 +00:00
if(entry.size % bytesPerCluster > 0)
stat.Blocks++;
2019-04-27 00:52:40 +01:00
if(entry.attributes.HasFlag(FatAttributes.Subdirectory))
{
stat.Attributes |= FileAttributes.Directory;
2020-02-29 18:03:35 +00:00
stat.Blocks = fat32 ? GetClusters((uint)((entry.ea_handle << 16) + entry.start_cluster)).Length
: GetClusters(entry.start_cluster).Length;
2020-02-29 18:03:35 +00:00
stat.Length = stat.Blocks * stat.BlockSize;
2019-04-27 00:52:40 +01:00
}
2020-02-29 18:03:35 +00:00
if(entry.attributes.HasFlag(FatAttributes.ReadOnly))
stat.Attributes |= FileAttributes.ReadOnly;
if(entry.attributes.HasFlag(FatAttributes.Hidden))
stat.Attributes |= FileAttributes.Hidden;
if(entry.attributes.HasFlag(FatAttributes.System))
stat.Attributes |= FileAttributes.System;
if(entry.attributes.HasFlag(FatAttributes.Archive))
stat.Attributes |= FileAttributes.Archive;
if(entry.attributes.HasFlag(FatAttributes.Device))
stat.Attributes |= FileAttributes.Device;
2019-04-27 00:52:40 +01:00
return Errno.NoError;
2019-04-26 00:54:51 +01:00
}
2019-04-26 19:56:58 +01:00
uint[] GetClusters(uint startCluster)
{
2020-02-29 18:03:35 +00:00
if(startCluster == 0)
return null;
2019-04-26 19:56:58 +01:00
2020-02-29 18:03:35 +00:00
if(startCluster >= XmlFsType.Clusters)
return null;
2019-04-26 19:56:58 +01:00
List<uint> clusters = new List<uint>();
uint nextCluster = startCluster;
2020-02-29 18:03:35 +00:00
ulong nextSector = (nextCluster / fatEntriesPerSector) + fatFirstSector + (useFirstFat ? 0 : sectorsPerFat);
2019-04-26 19:56:58 +01:00
int nextEntry = (int)(nextCluster % fatEntriesPerSector);
ulong currentSector = nextSector;
byte[] fatData = image.ReadSector(currentSector);
if(fat32)
2020-02-29 18:03:35 +00:00
while((nextCluster & FAT32_MASK) > 0 &&
(nextCluster & FAT32_MASK) <= FAT32_FORMATTED)
2019-04-26 19:56:58 +01:00
{
clusters.Add(nextCluster);
if(currentSector != nextSector)
{
fatData = image.ReadSector(nextSector);
currentSector = nextSector;
}
nextCluster = BitConverter.ToUInt32(fatData, nextEntry * 4);
2020-02-29 18:03:35 +00:00
nextSector = (nextCluster / fatEntriesPerSector) + fatFirstSector +
(useFirstFat ? 0 : sectorsPerFat);
2019-04-26 23:15:33 +01:00
nextEntry = (int)(nextCluster % fatEntriesPerSector);
2019-04-26 19:56:58 +01:00
}
else if(fat16)
2020-02-29 18:03:35 +00:00
while(nextCluster > 0 &&
nextCluster <= FAT16_FORMATTED)
2019-04-26 19:56:58 +01:00
{
clusters.Add(nextCluster);
2019-04-27 02:38:48 +01:00
nextCluster = fatEntries[nextCluster];
2019-04-26 19:56:58 +01:00
}
2019-04-27 02:26:31 +01:00
else
2020-02-29 18:03:35 +00:00
while(nextCluster > 0 &&
nextCluster <= FAT12_FORMATTED)
2019-04-27 02:26:31 +01:00
{
clusters.Add(nextCluster);
nextCluster = fatEntries[nextCluster];
}
2019-04-26 19:56:58 +01:00
return clusters.ToArray();
}
2019-04-27 00:45:36 +01:00
2019-04-28 11:57:54 +01:00
Errno GetFileEntry(string path, out CompleteDirectoryEntry entry)
2019-04-27 00:45:36 +01:00
{
2019-04-28 11:57:54 +01:00
entry = null;
2019-04-27 00:45:36 +01:00
2020-02-29 18:03:35 +00:00
string cutPath = path.StartsWith("/") ? path.Substring(1).ToLower(cultureInfo) : path.ToLower(cultureInfo);
2019-04-27 00:45:36 +01:00
2020-02-29 18:03:35 +00:00
string[] pieces = cutPath.Split(new[]
{
'/'
}, StringSplitOptions.RemoveEmptyEntries);
if(pieces.Length == 0)
return Errno.InvalidArgument;
2019-04-27 00:45:36 +01:00
string parentPath = string.Join("/", pieces, 0, pieces.Length - 1);
if(!directoryCache.TryGetValue(parentPath, out _))
{
Errno err = ReadDir(parentPath, out _);
2019-04-27 00:45:36 +01:00
2020-02-29 18:03:35 +00:00
if(err != Errno.NoError)
return err;
}
2019-04-27 00:45:36 +01:00
2019-04-28 11:57:54 +01:00
Dictionary<string, CompleteDirectoryEntry> parent;
2019-04-27 00:45:36 +01:00
2020-02-29 18:03:35 +00:00
if(pieces.Length == 1)
parent = rootDirectoryCache;
else if(!directoryCache.TryGetValue(parentPath, out parent))
return Errno.InvalidArgument;
2019-04-27 00:45:36 +01:00
2019-04-28 11:57:54 +01:00
KeyValuePair<string, CompleteDirectoryEntry> dirent =
2020-04-22 00:22:34 +01:00
parent.FirstOrDefault(t => t.Key.ToLower(cultureInfo) == pieces[^1]);
2019-04-27 00:45:36 +01:00
2020-02-29 18:03:35 +00:00
if(string.IsNullOrEmpty(dirent.Key))
return Errno.NoSuchFile;
2019-04-27 00:45:36 +01:00
entry = dirent.Value;
2020-02-29 18:03:35 +00:00
2019-04-27 00:45:36 +01:00
return Errno.NoError;
}
2019-04-27 13:04:59 +01:00
byte LfnChecksum(byte[] name, byte[] extension)
{
byte sum = 0;
2020-02-29 18:03:35 +00:00
for(int i = 0; i < 8; i++)
sum = (byte)(((sum & 1) << 7) + (sum >> 1) + name[i]);
for(int i = 0; i < 3; i++)
sum = (byte)(((sum & 1) << 7) + (sum >> 1) + extension[i]);
2019-04-27 13:04:59 +01:00
return sum;
}
}
}