Working on NTFS driver more (currently debug only, and untested)
authorJohn Hodge <[email protected]>
Sun, 4 Jul 2010 03:24:50 +0000 (11:24 +0800)
committerJohn Hodge <[email protected]>
Sun, 4 Jul 2010 03:24:50 +0000 (11:24 +0800)
Modules/Filesystems/NTFS/Makefile [new file with mode: 0644]
Modules/Filesystems/NTFS/dir.c [new file with mode: 0644]
Modules/Filesystems/NTFS/main.c

diff --git a/Modules/Filesystems/NTFS/Makefile b/Modules/Filesystems/NTFS/Makefile
new file mode 100644 (file)
index 0000000..22c1677
--- /dev/null
@@ -0,0 +1,7 @@
+#
+#
+
+OBJ = main.o dir.o
+NAME = NTFS
+
+-include ../Makefile.tpl
diff --git a/Modules/Filesystems/NTFS/dir.c b/Modules/Filesystems/NTFS/dir.c
new file mode 100644 (file)
index 0000000..f033141
--- /dev/null
@@ -0,0 +1,47 @@
+/*
+ * Acess2 - NTFS Driver
+ * By John Hodge (thePowersGang)
+ * This file is published under the terms of the Acess licence. See the
+ * file COPYING for details.
+ *
+ * dir.c - Directory Handling
+ */
+#include "common.h"
+
+// === PROTOTYPES ===
+char   *NTFS_ReadDir(tVFS_Node *Node, int Pos);
+tVFS_Node      *NTFS_FindDir(tVFS_Node *Node, char *Name);
+Uint64 NTFS_int_IndexLookup(Uint64 Inode, const char *IndexName, const char *Str);
+
+// === CODE ===
+/**
+ * \brief Get the name of an indexed directory entry
+ */
+char *NTFS_ReadDir(tVFS_Node *Node, int Pos)
+{
+       return NULL;
+}
+
+/**
+ * \brief Get an entry from a directory by name
+ */
+tVFS_Node *NTFS_FindDir(tVFS_Node *Node, char *Name)
+{
+       tNTFS_Disk      *disk = Node->ImplPtr;
+       Uint64  inode = NTFS_int_IndexLookup(Node->Inode, "$I30", Name);
+       tVFS_Node       node;
+       
+       if(!inode)      return NULL;
+       
+       node.Inode = inode;
+       
+       return Inode_CacheNode(disk->CacheHandle, &node);
+}
+
+/**
+ * \brief Scans an index for the requested value and returns the associated ID
+ */
+Uint64 NTFS_int_IndexLookup(Uint64 Inode, const char *IndexName, const char *Str)
+{
+       return 0;
+}
index 46930bd..d316f00 100644 (file)
@@ -1,8 +1,6 @@
 /*
  * Acess2 - NTFS Driver
  * By John Hodge (thePowersGang)
- * This file is published under the terms of the Acess licence. See the
- * file COPYING for details.
  *
  * main.c - Driver core
  */
 #include "common.h"
 #include <modules.h>
 
+// === IMPORTS ===
+extern char    *NTFS_ReadDir(tVFS_Node *Node, int Pos);
+extern tVFS_Node       *NTFS_FindDir(tVFS_Node *Node, char *Name);
+
 // === PROTOTYPES ===
  int   NTFS_Install(char **Arguments);
 tVFS_Node      *NTFS_InitDevice(char *Devices, char **Options);
 void   NTFS_Unmount(tVFS_Node *Node);
+void   NTFS_DumpEntry(tNTFS_Disk *Disk, Uint32 Entry);
 
 // === GLOBALS ===
 MODULE_DEFINE(0, 0x0A /*v0.1*/, FS_NTFS, NTFS_Install, NULL);
@@ -31,7 +34,7 @@ tNTFS_Disk    gNTFS_Disks;
 int NTFS_Install(char **Arguments)
 {
        VFS_AddDriver( &gNTFS_FSInfo );
-       return 1;
+       return 0;
 }
 
 /**
@@ -50,12 +53,23 @@ tVFS_Node *NTFS_InitDevice(char *Device, char **Options)
                return NULL;
        }
        
+       Log_Debug("FS_NTFS", "&bs = %p", &bs);
        VFS_ReadAt(disk->FD, 0, 512, &bs);
        
+       Log_Debug("FS_NTFS", "Jump = %02x%02x%02x",
+               bs.Jump[0],
+               bs.Jump[1],
+               bs.Jump[2]);
+       Log_Debug("FS_NTFS", "SystemID = %02x%02x%02x%02x%02x%02x%02x%02x",
+               bs.SystemID[0], bs.SystemID[1], bs.SystemID[2], bs.SystemID[3],
+               bs.SystemID[4], bs.SystemID[5], bs.SystemID[6], bs.SystemID[7]
+               );
+       
        disk->ClusterSize = bs.BytesPerSector * bs.SectorsPerCluster;
        Log_Debug("NTFS", "Cluster Size = %i KiB", disk->ClusterSize/1024);
        disk->MFTBase = bs.MFTStart;
        Log_Debug("NTFS", "MFT Base = %i", disk->MFTBase);
+       Log_Debug("NTFS", "TotalSectorCount = 0x%x", bs.TotalSectorCount);
        
        disk->RootNode.Inode = 5;       // MFT Ent #5 is filesystem root
        disk->RootNode.ImplPtr = disk;
@@ -73,6 +87,8 @@ tVFS_Node *NTFS_InitDevice(char *Device, char **Options)
        disk->RootNode.Relink = NULL;
        disk->RootNode.Close = NULL;
        
+       NTFS_DumpEntry(disk, 5);
+       
        return &disk->RootNode;
 }
 
@@ -83,3 +99,35 @@ void NTFS_Unmount(tVFS_Node *Node)
 {
        
 }
+
+/**
+ * \brief Dumps a MFT Entry
+ */
+void NTFS_DumpEntry(tNTFS_Disk *Disk, Uint32 Entry)
+{
+       void    *buf = malloc( Disk->ClusterSize );
+       tNTFS_FILE_Header       *hdr = buf;
+       
+       if(!buf) {
+               Log_Warning("FS_NTFS", "malloc() fail!");
+               return ;
+       }
+       
+       VFS_ReadAt( Disk->FD, Disk->MFTBase*Disk->ClusterSize, Disk->ClusterSize, buf);
+       
+       Log_Debug("FS_NTFS", "MFT Entry #%i", Entry);
+       Log_Debug("FS_NTFS", "- Magic = 0x%08x", hdr->Magic);
+       Log_Debug("FS_NTFS", "- UpdateSequenceOfs = 0x%x", hdr->UpdateSequenceOfs);
+       Log_Debug("FS_NTFS", "- UpdateSequenceSize = 0x%x", hdr->UpdateSequenceSize);
+       Log_Debug("FS_NTFS", "- LSN = 0x%x", hdr->LSN);
+       Log_Debug("FS_NTFS", "- SequenceNumber = %i", hdr->SequenceNumber);
+       Log_Debug("FS_NTFS", "- HardLinkCount = %i", hdr->HardLinkCount);
+       Log_Debug("FS_NTFS", "- FirstAttribOfs = 0x%x", hdr->FirstAttribOfs);
+       Log_Debug("FS_NTFS", "- Flags = 0x%x", hdr->Flags);
+       Log_Debug("FS_NTFS", "- RecordSize = 0x%x", hdr->RecordSize);
+       Log_Debug("FS_NTFS", "- RecordSpace = 0x%x", hdr->RecordSpace);
+       Log_Debug("FS_NTFS", "- Reference = 0x%llx", hdr->Reference);
+       Log_Debug("FS_NTFS", "- NextAttribID = 0x%04x", hdr->NextAttribID);
+       
+       free(buf);
+}

UCC git Repository :: git.ucc.asn.au