3 * - By John Hodge (thePowersGang)
10 #include "ext2_common.h"
13 #define BLOCK_DIR_OFS(_data, _block) ((Uint16*)(_data)[(_block)])
16 char *Ext2_ReadDir(tVFS_Node *Node, int Pos);
17 tVFS_Node *Ext2_FindDir(tVFS_Node *Node, const char *FileName);
18 int Ext2_MkNod(tVFS_Node *Node, const char *Name, Uint Flags);
19 int Ext2_Unlink(tVFS_Node *Node, const char *OldName);
20 int Ext2_Link(tVFS_Node *Parent, const char *Name, tVFS_Node *Node);
22 tVFS_Node *Ext2_int_CreateNode(tExt2_Disk *Disk, Uint InodeId);
25 tVFS_NodeType gExt2_DirType = {
26 .TypeName = "ext2-dir",
27 .ReadDir = Ext2_ReadDir,
28 .FindDir = Ext2_FindDir,
30 .Unlink = Ext2_Unlink,
32 .Close = Ext2_CloseFile
34 tVFS_NodeType gExt2_FileType = {
35 .TypeName = "ext2-file",
38 .Close = Ext2_CloseFile
43 * \brief Reads a directory entry
44 * \param Node Directory node
45 * \param Pos Position of desired element
47 char *Ext2_ReadDir(tVFS_Node *Node, int Pos)
51 Uint64 Base; // Block's Base Address
55 tExt2_Disk *disk = Node->ImplPtr;
58 ENTER("pNode iPos", Node, Pos);
60 // Read directory's inode
61 Ext2_int_ReadInode(disk, Node->Inode, &inode);
64 LOG("inode.i_block[0] = 0x%x", inode.i_block[0]);
68 // - Do this ourselves as it is a simple operation
69 Base = inode.i_block[0] * disk->BlockSize;
71 while(Pos -- && size > 0)
73 VFS_ReadAt( disk->FD, Base+ofs, sizeof(tExt2_DirEnt), &dirent);
74 ofs += dirent.rec_len;
75 size -= dirent.rec_len;
78 if(ofs >= disk->BlockSize) {
80 if( ofs > disk->BlockSize ) {
81 Log_Warning("EXT2", "Directory Entry %i of inode %i extends over a block boundary, ignoring",
82 entNum-1, Node->Inode);
85 Base = Ext2_int_GetBlockAddr( disk, inode.i_block, block );
89 // Check for the end of the list
96 VFS_ReadAt( disk->FD, Base+ofs, sizeof(tExt2_DirEnt), &dirent );
97 //LOG("dirent.inode = %i", dirent.inode);
98 //LOG("dirent.rec_len = %i", dirent.rec_len);
99 //LOG("dirent.name_len = %i", dirent.name_len);
100 dirent.name[ dirent.name_len ] = '\0'; // Cap off string
103 // Ignore . and .. (these are done in the VFS)
104 if( (dirent.name[0] == '.' && dirent.name[1] == '\0')
105 || (dirent.name[0] == '.' && dirent.name[1] == '.' && dirent.name[2]=='\0')) {
106 LEAVE('p', VFS_SKIP);
107 return VFS_SKIP; // Skip
110 LEAVE('s', dirent.name);
112 return strdup(dirent.name);
116 * \brief Gets information about a file
117 * \param Node Parent Node
118 * \param Filename Name of wanted file
119 * \return VFS Node of file
121 tVFS_Node *Ext2_FindDir(tVFS_Node *Node, const char *Filename)
123 tExt2_Disk *disk = Node->ImplPtr;
126 Uint64 Base; // Block's Base Address
131 int filenameLen = strlen(Filename);
133 // Read directory's inode
134 Ext2_int_ReadInode(disk, Node->Inode, &inode);
138 // - Do this ourselves as it is a simple operation
139 Base = inode.i_block[0] * disk->BlockSize;
143 VFS_ReadAt( disk->FD, Base+ofs, sizeof(tExt2_DirEnt), &dirent);
144 // TODO: Possible overrun if name_len == 255?
145 dirent.name[ dirent.name_len ] = '\0'; // Cap off string
146 // If it matches, create a node and return it
147 if(dirent.name_len == filenameLen && strcmp(dirent.name, Filename) == 0)
148 return Ext2_int_CreateNode( disk, dirent.inode );
149 // Increment pointers
150 ofs += dirent.rec_len;
151 size -= dirent.rec_len;
154 // Check for end of block
155 if(ofs >= disk->BlockSize) {
157 if( ofs > disk->BlockSize ) {
158 Log_Warning("EXT2", "Directory Entry %i of inode %i extends over a block boundary, ignoring",
159 entNum-1, Node->Inode);
162 Base = Ext2_int_GetBlockAddr( disk, inode.i_block, block );
170 * \fn int Ext2_MkNod(tVFS_Node *Parent, const char *Name, Uint Flags)
171 * \brief Create a new node
173 int Ext2_MkNod(tVFS_Node *Parent, const char *Name, Uint Flags)
175 ENTER("pParent sName xFlags", Parent, Name, Flags);
177 Uint64 inodeNum = Ext2_int_AllocateInode(Parent->ImplPtr, Parent->Inode);
178 if( inodeNum == 0 ) {
181 tVFS_Node *child = Ext2_int_CreateNode(Parent->ImplPtr, inodeNum);
183 Ext2_int_DereferenceInode(Parent->ImplPtr, inodeNum);
187 child->Flags = Flags & (VFS_FFLAG_DIRECTORY|VFS_FFLAG_SYMLINK|VFS_FFLAG_READONLY);
188 child->UID = Threads_GetUID();
189 child->GID = Threads_GetGID();
194 child->ImplInt = 0; // ImplInt is the link count
197 int rv = Ext2_Link(Parent, Name, child);
198 child->Type->Close(child);
204 * \brief Rename a file
205 * \param Node This (directory) node
206 * \param OldName Old name of file
207 * \param NewName New name for file
208 * \return Boolean Failure - See ::tVFS_Node.Unlink for info
210 int Ext2_Unlink(tVFS_Node *Node, const char *OldName)
216 * \brief Links an existing node to a new name
217 * \param Parent Parent (directory) node
218 * \param Name New name for the node
219 * \param Node Node to link
220 * \return Boolean Failure - See ::tVFS_Node.Link for info
222 int Ext2_Link(tVFS_Node *Node, const char *Name, tVFS_Node *Child)
225 tExt2_Disk *disk = Node->ImplPtr;
228 tExt2_DirEnt newEntry;
229 Uint64 Base; // Block's Base Address
230 int block = 0, ofs = 0;
233 int bestMatch = -1, bestSize, bestBlock, bestOfs;
236 blockData = malloc(disk->BlockSize);
238 // Read child inode (get's the file type)
239 Ext2_int_ReadInode(disk, Child->Inode, &inode);
241 // Create a stub entry
242 newEntry.inode = Child->Inode;
243 newEntry.name_len = strlen(Name);
244 newEntry.rec_len = (newEntry.name_len+3+8)&~3;
245 newEntry.type = inode.i_mode >> 12;
246 memcpy(newEntry.name, Name, newEntry.name_len);
248 // Read directory's inode
249 Ext2_int_ReadInode(disk, Node->Inode, &inode);
252 // Get a lock on the inode
253 Ext2_int_LockInode(disk, Node->Inode);
256 // - Do this ourselves as it is a simple operation
257 base = inode.i_block[0] * disk->BlockSize;
258 VFS_ReadAt( disk->FD, base, disk->BlockSize, blockData );
263 dirent = blockData + ofs;
264 // Sanity Check the entry
265 if(ofs + dirent->rec_len > disk->BlockSize) {
267 "Directory entry %i of inode 0x%x extends over a block boundary",
268 nEntries, (Uint)Node->Inode);
273 if(dirent->type == 0) {
274 if( dirent->rec_len >= newEntry.rec_len
275 && (bestMatch == -1 || bestSize > dirent->rec_len) )
277 bestMatch = nEntries;
278 bestSize = dirent->rec_len;
283 // Non free - check name to avoid duplicates
285 if(strncmp(Name, dirent->name, dirent->name_len) == 0) {
286 Ext2_int_UnlockInode(disk, Node->Inode);
292 // Increment the pointer
294 ofs += dirent->rec_len;
295 if( ofs >= disk->BlockSize ) {
296 // Read the next block if needed
297 BLOCK_DIR_OFS(Node->Data, block) = nEntries;
300 base = Ext2_int_GetBlockAddr(disk, inode.i_block, block);
301 VFS_ReadAt( disk->FD, base, disk->BlockSize, blockData );
305 // Check if a free slot was found
306 if( bestMatch >= 0 ) {
308 bestBlock = Ext2_int_GetBlockAddr(disk, inode.i_block, bestBlock);
310 bestMatch = BLOCK_DIR_OFS(Node->Data, bestBlock);
311 VFS_ReadAt( disk->FD, base, disk->BlockSize, blockData );
312 dirent = blockData + bestOfs;
313 memcpy(dirent, newEntry, newEntry.rec_len);
314 VFS_WriteAt( disk->FD, base, disk->BlockSize, blockData );
317 // Allocate block, Write
318 block = Ext2_int_AllocateBlock(Disk, block);
319 Log_Warning("EXT2", "");
322 Ext2_int_UnlockInode(disk, Node->Inode);
329 // ---- INTERNAL FUNCTIONS ----
331 * \fn vfs_node *Ext2_int_CreateNode(tExt2_Disk *Disk, Uint InodeID)
332 * \brief Create a new VFS Node
334 tVFS_Node *Ext2_int_CreateNode(tExt2_Disk *Disk, Uint InodeID)
340 if( !Ext2_int_ReadInode(Disk, InodeID, &inode) )
343 if( (tmpNode = Inode_GetCache(Disk->CacheID, InodeID)) )
348 retNode.Inode = InodeID;
349 retNode.ImplPtr = Disk;
352 retNode.Size = inode.i_size;
355 // Set Access Permissions
356 retNode.UID = inode.i_uid;
357 retNode.GID = inode.i_gid;
359 retNode.ACLs = VFS_UnixToAcessACL(inode.i_mode & 0777, inode.i_uid, inode.i_gid);
361 // Set Function Pointers
362 retNode.Type = &gExt2_FileType;
364 switch(inode.i_mode & EXT2_S_IFMT)
368 retNode.Flags = VFS_FFLAG_SYMLINK;
373 retNode.Size |= (Uint64)inode.i_dir_acl << 32;
377 retNode.Type = &gExt2_DirType;
378 retNode.Flags = VFS_FFLAG_DIRECTORY;
379 retNode.Data = calloc( sizeof(Uint16), DivUp(retNode.Size, Disk->BlockSize) );
381 // Unknown, Write protect it to be safe
383 retNode.Flags = VFS_FFLAG_READONLY;
388 retNode.ATime = inode.i_atime * 1000;
389 retNode.MTime = inode.i_mtime * 1000;
390 retNode.CTime = inode.i_ctime * 1000;
392 // Save in node cache and return saved node
393 return Inode_CacheNode(Disk->CacheID, &retNode);