2014-04-17 19:58:14 +00:00
|
|
|
/***************************************************************************
|
2014-06-15 23:39:34 +01:00
|
|
|
The Disc Image Chef
|
2014-04-17 19:58:14 +00:00
|
|
|
----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
Filename : NTFS.cs
|
|
|
|
|
Version : 1.0
|
|
|
|
|
Author(s) : Natalia Portillo
|
|
|
|
|
|
|
|
|
|
Component : Filesystem plugins
|
|
|
|
|
|
|
|
|
|
Revision : $Revision$
|
|
|
|
|
Last change by : $Author$
|
|
|
|
|
Date : $Date$
|
|
|
|
|
|
|
|
|
|
--[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
Identifies Windows NT FileSystem (aka NTFS) and shows information.
|
|
|
|
|
|
|
|
|
|
--[ License ] --------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
2014-04-19 18:23:00 +01:00
|
|
|
it under the terms of the GNU General Public License as
|
2014-04-17 19:58:14 +00:00
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program 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
|
2014-04-19 18:23:00 +01:00
|
|
|
GNU General Public License for more details.
|
2014-04-17 19:58:14 +00:00
|
|
|
|
2014-04-19 18:23:00 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
2014-04-17 19:58:14 +00:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
----------------------------------------------------------------------------
|
|
|
|
|
Copyright (C) 2011-2014 Claunia.com
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
//$Id$
|
|
|
|
|
|
2011-03-29 02:56:27 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Text;
|
2014-06-15 23:39:34 +01:00
|
|
|
using DiscImageChef;
|
2016-07-21 17:16:08 +01:00
|
|
|
using System.Collections.Generic;
|
2011-03-29 02:56:27 +00:00
|
|
|
|
2014-04-17 19:58:14 +00:00
|
|
|
// Information from Inside Windows NT
|
2016-07-21 16:15:39 +01:00
|
|
|
namespace DiscImageChef.Filesystems
|
2011-03-29 02:56:27 +00:00
|
|
|
{
|
2016-07-21 16:15:39 +01:00
|
|
|
class NTFS : Filesystem
|
2014-04-14 02:29:13 +00:00
|
|
|
{
|
2015-10-05 20:04:05 +01:00
|
|
|
public NTFS()
|
2011-03-29 02:56:27 +00:00
|
|
|
{
|
2014-04-14 02:29:13 +00:00
|
|
|
Name = "New Technology File System (NTFS)";
|
|
|
|
|
PluginUUID = new Guid("33513B2C-1e6d-4d21-a660-0bbc789c3871");
|
2011-03-29 02:56:27 +00:00
|
|
|
}
|
2014-04-14 02:29:13 +00:00
|
|
|
|
2015-04-20 05:09:46 +01:00
|
|
|
public override bool Identify(ImagePlugins.ImagePlugin imagePlugin, ulong partitionStart, ulong partitionEnd)
|
2014-04-14 02:29:13 +00:00
|
|
|
{
|
2016-04-19 02:11:47 +01:00
|
|
|
if((2 + partitionStart) >= imagePlugin.GetSectors())
|
2014-07-09 19:49:14 +01:00
|
|
|
return false;
|
|
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
byte[] eigth_bytes = new byte[8];
|
2016-02-05 00:01:09 +00:00
|
|
|
byte fats_no;
|
|
|
|
|
UInt16 spfat, signature;
|
2014-04-14 02:29:13 +00:00
|
|
|
string oem_name;
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2015-04-20 05:09:46 +01:00
|
|
|
byte[] ntfs_bpb = imagePlugin.ReadSector(0 + partitionStart);
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2014-04-14 01:14:20 +00:00
|
|
|
Array.Copy(ntfs_bpb, 0x003, eigth_bytes, 0, 8);
|
2014-04-14 02:29:13 +00:00
|
|
|
oem_name = StringHandlers.CToString(eigth_bytes);
|
2016-04-19 02:11:47 +01:00
|
|
|
|
|
|
|
|
if(oem_name != "NTFS ")
|
2014-04-14 02:29:13 +00:00
|
|
|
return false;
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2014-04-14 01:14:20 +00:00
|
|
|
fats_no = ntfs_bpb[0x010];
|
2016-04-19 02:11:47 +01:00
|
|
|
|
|
|
|
|
if(fats_no != 0)
|
2014-04-14 02:29:13 +00:00
|
|
|
return false;
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2014-04-14 01:14:20 +00:00
|
|
|
spfat = BitConverter.ToUInt16(ntfs_bpb, 0x016);
|
2016-04-19 02:11:47 +01:00
|
|
|
|
|
|
|
|
if(spfat != 0)
|
2014-04-14 02:29:13 +00:00
|
|
|
return false;
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2016-02-05 00:01:09 +00:00
|
|
|
signature = BitConverter.ToUInt16(ntfs_bpb, 0x1FE);
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2016-02-05 00:01:09 +00:00
|
|
|
return signature == 0xAA55;
|
2014-04-14 02:29:13 +00:00
|
|
|
}
|
|
|
|
|
|
2015-04-20 05:09:46 +01:00
|
|
|
public override void GetInformation(ImagePlugins.ImagePlugin imagePlugin, ulong partitionStart, ulong partitionEnd, out string information)
|
2014-04-14 02:29:13 +00:00
|
|
|
{
|
|
|
|
|
information = "";
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
StringBuilder sb = new StringBuilder();
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2015-04-20 05:09:46 +01:00
|
|
|
byte[] ntfs_bpb = imagePlugin.ReadSector(0 + partitionStart);
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
NTFS_BootBlock ntfs_bb = new NTFS_BootBlock();
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
byte[] oem_name = new byte[8];
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
ntfs_bb.jmp1 = ntfs_bpb[0x000];
|
2014-04-14 01:14:20 +00:00
|
|
|
ntfs_bb.jmp2 = BitConverter.ToUInt16(ntfs_bpb, 0x001);
|
|
|
|
|
Array.Copy(ntfs_bpb, 0x003, oem_name, 0, 8);
|
2014-04-14 02:29:13 +00:00
|
|
|
ntfs_bb.OEMName = StringHandlers.CToString(oem_name);
|
2014-04-14 01:14:20 +00:00
|
|
|
ntfs_bb.bps = BitConverter.ToUInt16(ntfs_bpb, 0x00B);
|
|
|
|
|
ntfs_bb.spc = ntfs_bpb[0x00D];
|
|
|
|
|
ntfs_bb.rsectors = BitConverter.ToUInt16(ntfs_bpb, 0x00E);
|
|
|
|
|
ntfs_bb.fats_no = ntfs_bpb[0x010];
|
|
|
|
|
ntfs_bb.root_ent = BitConverter.ToUInt16(ntfs_bpb, 0x011);
|
|
|
|
|
ntfs_bb.sml_sectors = BitConverter.ToUInt16(ntfs_bpb, 0x013);
|
|
|
|
|
ntfs_bb.media = ntfs_bpb[0x015];
|
|
|
|
|
ntfs_bb.spfat = BitConverter.ToUInt16(ntfs_bpb, 0x016);
|
|
|
|
|
ntfs_bb.sptrk = BitConverter.ToUInt16(ntfs_bpb, 0x018);
|
|
|
|
|
ntfs_bb.heads = BitConverter.ToUInt16(ntfs_bpb, 0x01A);
|
|
|
|
|
ntfs_bb.hsectors = BitConverter.ToUInt32(ntfs_bpb, 0x01C);
|
|
|
|
|
ntfs_bb.big_sectors = BitConverter.ToUInt32(ntfs_bpb, 0x020);
|
|
|
|
|
ntfs_bb.drive_no = ntfs_bpb[0x024];
|
|
|
|
|
ntfs_bb.nt_flags = ntfs_bpb[0x025];
|
|
|
|
|
ntfs_bb.signature1 = ntfs_bpb[0x026];
|
|
|
|
|
ntfs_bb.dummy = ntfs_bpb[0x027];
|
|
|
|
|
ntfs_bb.sectors = BitConverter.ToInt64(ntfs_bpb, 0x028);
|
|
|
|
|
ntfs_bb.mft_lsn = BitConverter.ToInt64(ntfs_bpb, 0x030);
|
|
|
|
|
ntfs_bb.mftmirror_lsn = BitConverter.ToInt64(ntfs_bpb, 0x038);
|
|
|
|
|
ntfs_bb.mft_rc_clusters = (sbyte)ntfs_bpb[0x040];
|
|
|
|
|
ntfs_bb.dummy2 = ntfs_bpb[0x041];
|
|
|
|
|
ntfs_bb.dummy3 = BitConverter.ToUInt16(ntfs_bpb, 0x042);
|
|
|
|
|
ntfs_bb.index_blk_cts = (sbyte)ntfs_bpb[0x044];
|
|
|
|
|
ntfs_bb.dummy4 = ntfs_bpb[0x045];
|
|
|
|
|
ntfs_bb.dummy5 = BitConverter.ToUInt16(ntfs_bpb, 0x046);
|
|
|
|
|
ntfs_bb.serial_no = BitConverter.ToUInt64(ntfs_bpb, 0x048);
|
|
|
|
|
ntfs_bb.signature2 = BitConverter.ToUInt16(ntfs_bpb, 0x1FE);
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
sb.AppendFormat("{0} bytes per sector", ntfs_bb.bps).AppendLine();
|
|
|
|
|
sb.AppendFormat("{0} sectors per cluster ({1} bytes)", ntfs_bb.spc, ntfs_bb.spc * ntfs_bb.bps).AppendLine();
|
2016-04-19 02:11:47 +01:00
|
|
|
// sb.AppendFormat("{0} reserved sectors", ntfs_bb.rsectors).AppendLine();
|
|
|
|
|
// sb.AppendFormat("{0} FATs", ntfs_bb.fats_no).AppendLine();
|
|
|
|
|
// sb.AppendFormat("{0} entries in the root folder", ntfs_bb.root_ent).AppendLine();
|
|
|
|
|
// sb.AppendFormat("{0} sectors on volume (small)", ntfs_bb.sml_sectors).AppendLine();
|
2014-04-14 02:29:13 +00:00
|
|
|
sb.AppendFormat("Media descriptor: 0x{0:X2}", ntfs_bb.media).AppendLine();
|
2016-04-19 02:11:47 +01:00
|
|
|
// sb.AppendFormat("{0} sectors per FAT", ntfs_bb.spfat).AppendLine();
|
2014-04-14 02:29:13 +00:00
|
|
|
sb.AppendFormat("{0} sectors per track", ntfs_bb.sptrk).AppendLine();
|
|
|
|
|
sb.AppendFormat("{0} heads", ntfs_bb.heads).AppendLine();
|
|
|
|
|
sb.AppendFormat("{0} hidden sectors before filesystem", ntfs_bb.hsectors).AppendLine();
|
2016-04-19 02:11:47 +01:00
|
|
|
// sb.AppendFormat("{0} sectors on volume (big)", ntfs_bb.big_sectors).AppendLine();
|
2014-04-14 02:29:13 +00:00
|
|
|
sb.AppendFormat("BIOS drive number: 0x{0:X2}", ntfs_bb.drive_no).AppendLine();
|
2016-04-19 02:11:47 +01:00
|
|
|
// sb.AppendFormat("NT flags: 0x{0:X2}", ntfs_bb.nt_flags).AppendLine();
|
|
|
|
|
// sb.AppendFormat("Signature 1: 0x{0:X2}", ntfs_bb.signature1).AppendLine();
|
2014-04-14 02:29:13 +00:00
|
|
|
sb.AppendFormat("{0} sectors on volume ({1} bytes)", ntfs_bb.sectors, ntfs_bb.sectors * ntfs_bb.bps).AppendLine();
|
|
|
|
|
sb.AppendFormat("Sectors where $MFT starts: {0}", ntfs_bb.mft_lsn).AppendLine();
|
|
|
|
|
sb.AppendFormat("Sectors where $MFTMirr starts: {0}", ntfs_bb.mftmirror_lsn).AppendLine();
|
2011-03-29 02:56:27 +00:00
|
|
|
|
2016-04-19 02:11:47 +01:00
|
|
|
if(ntfs_bb.mft_rc_clusters > 0)
|
2014-04-14 02:29:13 +00:00
|
|
|
sb.AppendFormat("{0} clusters per MFT record ({1} bytes)", ntfs_bb.mft_rc_clusters,
|
|
|
|
|
ntfs_bb.mft_rc_clusters * ntfs_bb.bps * ntfs_bb.spc).AppendLine();
|
|
|
|
|
else
|
|
|
|
|
sb.AppendFormat("{0} bytes per MFT record", 1 << -ntfs_bb.mft_rc_clusters).AppendLine();
|
2016-04-19 02:11:47 +01:00
|
|
|
if(ntfs_bb.index_blk_cts > 0)
|
2014-04-14 02:29:13 +00:00
|
|
|
sb.AppendFormat("{0} clusters per Index block ({1} bytes)", ntfs_bb.index_blk_cts,
|
|
|
|
|
ntfs_bb.index_blk_cts * ntfs_bb.bps * ntfs_bb.spc).AppendLine();
|
|
|
|
|
else
|
|
|
|
|
sb.AppendFormat("{0} bytes per Index block", 1 << -ntfs_bb.index_blk_cts).AppendLine();
|
2011-03-29 02:56:27 +00:00
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
sb.AppendFormat("Volume serial number: {0:X16}", ntfs_bb.serial_no).AppendLine();
|
2016-04-19 02:11:47 +01:00
|
|
|
// sb.AppendFormat("Signature 2: 0x{0:X4}", ntfs_bb.signature2).AppendLine();
|
2015-12-05 17:10:27 +00:00
|
|
|
|
|
|
|
|
xmlFSType = new Schemas.FileSystemType();
|
|
|
|
|
xmlFSType.ClusterSize = ntfs_bb.spc * ntfs_bb.bps;
|
|
|
|
|
xmlFSType.Clusters = ntfs_bb.sectors / ntfs_bb.spc;
|
|
|
|
|
xmlFSType.VolumeSerial = String.Format("{0:X16}", ntfs_bb.serial_no);
|
|
|
|
|
xmlFSType.Type = "NTFS";
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
information = sb.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>
|
|
|
|
|
/// NTFS $BOOT
|
|
|
|
|
/// </summary>
|
|
|
|
|
struct NTFS_BootBlock
|
2014-04-14 02:29:13 +00:00
|
|
|
{
|
2015-12-06 07:18:36 +00:00
|
|
|
// Start of BIOS Parameter Block
|
|
|
|
|
/// <summary>0x000, Jump to boot code</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public byte jmp1;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x001, ...;</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt16 jmp2;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x003, OEM Name, 8 bytes, space-padded, must be "NTFS "</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public string OEMName;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x00B, Bytes per sector</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt16 bps;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x00D, Sectors per cluster</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public byte spc;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x00E, Reserved sectors, seems 0</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt16 rsectors;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x010, Number of FATs... obviously, 0</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public byte fats_no;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x011, Number of entries on root directory... 0</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt16 root_ent;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x013, Sectors in volume... 0</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt16 sml_sectors;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x015, Media descriptor</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public byte media;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x016, Sectors per FAT... 0</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt16 spfat;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x018, Sectors per track, required to boot</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt16 sptrk;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x01A, Heads... required to boot</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt16 heads;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x01C, Hidden sectors before BPB</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt32 hsectors;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x020, Sectors in volume if > 65535... 0</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt32 big_sectors;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x024, Drive number</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public byte drive_no;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x025, 0</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public byte nt_flags;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x026, EPB signature, 0x80</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public byte signature1;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x027, Alignment</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public byte dummy;
|
|
|
|
|
// End of BIOS Parameter Block
|
2015-12-06 07:18:36 +00:00
|
|
|
|
|
|
|
|
// Start of NTFS real superblock
|
|
|
|
|
/// <summary>0x028, Sectors on volume</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public Int64 sectors;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x030, LSN of $MFT</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public Int64 mft_lsn;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x038, LSN of $MFTMirror</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public Int64 mftmirror_lsn;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x040, Clusters per MFT record</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public sbyte mft_rc_clusters;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x041, Alignment</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public byte dummy2;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x042, Alignment</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt16 dummy3;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x044, Clusters per index block</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public sbyte index_blk_cts;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x045, Alignment</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public byte dummy4;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x046, Alignment</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt16 dummy5;
|
2015-12-06 07:18:36 +00:00
|
|
|
/// <summary>0x048, Volume serial number</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt64 serial_no;
|
|
|
|
|
// End of NTFS superblock, followed by 430 bytes of boot code
|
2015-12-06 07:18:36 +00:00
|
|
|
|
|
|
|
|
/// <summary>0x1FE, 0xAA55</summary>
|
2014-04-14 02:29:13 +00:00
|
|
|
public UInt16 signature2;
|
|
|
|
|
}
|
2016-07-21 17:16:08 +01:00
|
|
|
|
|
|
|
|
public override Errno Mount()
|
|
|
|
|
{
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-22 00:43:22 +01:00
|
|
|
public override Errno Mount(bool debug)
|
|
|
|
|
{
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-21 17:16:08 +01:00
|
|
|
public override Errno Unmount()
|
|
|
|
|
{
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Errno MapBlock(string path, long fileBlock, ref long deviceBlock)
|
|
|
|
|
{
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Errno GetAttributes(string path, ref FileAttributes attributes)
|
|
|
|
|
{
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Errno ListXAttr(string path, ref List<string> xattrs)
|
|
|
|
|
{
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Errno GetXattr(string path, string xattr, ref byte[] buf)
|
|
|
|
|
{
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Errno Read(string path, long offset, long size, ref byte[] buf)
|
|
|
|
|
{
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Errno ReadDir(string path, ref List<string> contents)
|
|
|
|
|
{
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Errno StatFs(ref FileSystemInfo stat)
|
|
|
|
|
{
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Errno Stat(string path, ref FileEntryInfo stat)
|
|
|
|
|
{
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Errno ReadLink(string path, ref string dest)
|
|
|
|
|
{
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
}
|
2014-04-14 02:29:13 +00:00
|
|
|
}
|
2011-03-29 02:56:27 +00:00
|
|
|
}
|