7b78ae43e646eeef360b0562df84c855683e22b7
[tpg/acess2.git] / KernelLand / Modules / Filesystems / Ext2 / dir.c
1 /*
2  * Acess2 Ext2 Driver
3  * - By John Hodge (thePowersGang)
4  *
5  * dir.c
6  * - Directory Handling
7  */
8 #define DEBUG   0
9 #define VERBOSE 0
10 #include "ext2_common.h"
11
12 // === MACROS ===
13 #define BLOCK_DIR_OFS(_data, _block)    (((Uint16*)(_data))[(_block)])
14
15 // === PROTOTYPES ===
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);
21 // --- Helpers ---
22 tVFS_Node       *Ext2_int_CreateNode(tExt2_Disk *Disk, Uint InodeId);
23
24 // === GLOBALS ===
25 tVFS_NodeType   gExt2_DirType = {
26         .TypeName = "ext2-dir",
27         .ReadDir = Ext2_ReadDir,
28         .FindDir = Ext2_FindDir,
29         .MkNod = Ext2_MkNod,
30         .Unlink = Ext2_Unlink,
31         .Link = Ext2_Link,
32         .Close = Ext2_CloseFile
33         };
34 tVFS_NodeType   gExt2_FileType = {
35         .TypeName = "ext2-file",
36         .Read = Ext2_Read,
37         .Write = Ext2_Write,
38         .Close = Ext2_CloseFile
39         };
40
41 // === CODE ===
42 /**
43  * \brief Reads a directory entry
44  * \param Node  Directory node
45  * \param Pos   Position of desired element
46  */
47 char *Ext2_ReadDir(tVFS_Node *Node, int Pos)
48 {
49         tExt2_Inode     inode;
50         tExt2_DirEnt    dirent;
51         Uint64  Base;   // Block's Base Address
52          int    block = 0;
53         Uint    ofs = 0;
54          int    entNum = 0;
55         tExt2_Disk      *disk = Node->ImplPtr;
56         Uint    size;
57         
58         ENTER("pNode iPos", Node, Pos);
59         
60         // Read directory's inode
61         Ext2_int_ReadInode(disk, Node->Inode, &inode);
62         size = inode.i_size;
63         
64         LOG("inode={.i_block[0]= 0x%x, .i_size=0x%x}", inode.i_block[0], inode.i_size);
65         
66         // Find Entry
67         // Get First Block
68         // - Do this ourselves as it is a simple operation
69         Base = inode.i_block[0] * disk->BlockSize;
70         // Scan directory
71         while(Pos -- && size > 0 && size <= inode.i_size)
72         {
73                 VFS_ReadAt( disk->FD, Base+ofs, sizeof(tExt2_DirEnt), &dirent);
74                 ofs += dirent.rec_len;
75                 size -= dirent.rec_len;
76                 entNum ++;
77                 
78                 if(ofs >= disk->BlockSize) {
79                         block ++;
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);
83                         }
84                         ofs = 0;
85                         Base = Ext2_int_GetBlockAddr( disk, inode.i_block, block );
86                         if( Base == 0 ) {
87                                 size = 0;
88                                 break;
89                         }
90                 }
91         }
92         
93         // Check for the end of the list
94         if(size <= 0 || size > inode.i_size) {
95                 LEAVE('n');
96                 return NULL;
97         }
98         
99         // Read Entry
100         VFS_ReadAt( disk->FD, Base+ofs, sizeof(tExt2_DirEnt), &dirent );
101         LOG("dirent={.rec_len=%i,.inode=0x%x,.name_len=%i}",
102                 dirent.rec_len, dirent.inode, dirent.name_len);
103         dirent.name[ dirent.name_len ] = '\0';  // Cap off string
104         
105         if( dirent.name_len == 0 ) {
106                 LEAVE('p', VFS_SKIP);
107                 return VFS_SKIP;
108         }
109         
110         // Ignore . and .. (these are done in the VFS)
111         if( (dirent.name[0] == '.' && dirent.name[1] == '\0')
112         ||  (dirent.name[0] == '.' && dirent.name[1] == '.' && dirent.name[2]=='\0')) {
113                 LEAVE('p', VFS_SKIP);
114                 return VFS_SKIP;        // Skip
115         }
116         
117         LEAVE('s', dirent.name);
118         // Create new node
119         return strdup(dirent.name);
120 }
121
122 /**
123  * \brief Gets information about a file
124  * \param Node  Parent Node
125  * \param Filename      Name of wanted file
126  * \return VFS Node of file
127  */
128 tVFS_Node *Ext2_FindDir(tVFS_Node *Node, const char *Filename)
129 {
130         tExt2_Disk      *disk = Node->ImplPtr;
131         tExt2_Inode     inode;
132         tExt2_DirEnt    dirent;
133         Uint64  Base;   // Block's Base Address
134          int    block = 0;
135         Uint    ofs = 0;
136          int    entNum = 0;
137         Uint    size;
138          int    filenameLen = strlen(Filename);
139         
140         // Read directory's inode
141         Ext2_int_ReadInode(disk, Node->Inode, &inode);
142         size = inode.i_size;
143         
144         // Get First Block
145         // - Do this ourselves as it is a simple operation
146         Base = inode.i_block[0] * disk->BlockSize;
147         // Find File
148         while(size > 0)
149         {
150                 VFS_ReadAt( disk->FD, Base+ofs, sizeof(tExt2_DirEnt), &dirent);
151                 // TODO: Possible overrun if name_len == 255?
152                 dirent.name[ dirent.name_len ] = '\0';  // Cap off string
153                 // If it matches, create a node and return it
154                 if(dirent.name_len == filenameLen && strcmp(dirent.name, Filename) == 0)
155                         return Ext2_int_CreateNode( disk, dirent.inode );
156                 // Increment pointers
157                 ofs += dirent.rec_len;
158                 size -= dirent.rec_len;
159                 entNum ++;
160                 
161                 // Check for end of block
162                 if(ofs >= disk->BlockSize) {
163                         block ++;
164                         if( ofs > disk->BlockSize ) {
165                                 Log_Warning("EXT2", "Directory Entry %i of inode %i extends over a block boundary, ignoring",
166                                         entNum-1, Node->Inode);
167                         }
168                         ofs = 0;
169                         Base = Ext2_int_GetBlockAddr( disk, inode.i_block, block );
170                 }
171         }
172         
173         return NULL;
174 }
175
176 /**
177  * \fn int Ext2_MkNod(tVFS_Node *Parent, const char *Name, Uint Flags)
178  * \brief Create a new node
179  */
180 int Ext2_MkNod(tVFS_Node *Parent, const char *Name, Uint Flags)
181 {
182         ENTER("pParent sName xFlags", Parent, Name, Flags);
183         
184         Uint64 inodeNum = Ext2_int_AllocateInode(Parent->ImplPtr, Parent->Inode);
185         if( inodeNum == 0 ) {
186                 LOG("Inode allocation failed");
187                 LEAVE('i', -1);
188                 return -1;
189         }
190         tVFS_Node *child = Ext2_int_CreateNode(Parent->ImplPtr, inodeNum);
191         if( !child ) {
192                 Ext2_int_DereferenceInode(Parent->ImplPtr, inodeNum);
193                 Log_Warning("Ext2", "Ext2_MkNod - Node creation failed");
194                 LEAVE('i', -1);
195                 return -1;
196         }
197
198         child->Flags = Flags & (VFS_FFLAG_DIRECTORY|VFS_FFLAG_SYMLINK|VFS_FFLAG_READONLY);
199         child->UID = Threads_GetUID();
200         child->GID = Threads_GetGID();
201         child->CTime =
202                 child->MTime =
203                 child->ATime =
204                 now();
205         child->ImplInt = 0;     // ImplInt is the link count
206         // TODO: Set up ACLs
207
208         int rv = Ext2_Link(Parent, Name, child);
209         child->Type->Close(child);
210         LEAVE('i', rv);
211         return rv;
212 }
213
214 /**
215  * \brief Rename a file
216  * \param Node  This (directory) node
217  * \param OldName       Old name of file
218  * \param NewName       New name for file
219  * \return Boolean Failure - See ::tVFS_Node.Unlink for info
220  */
221 int Ext2_Unlink(tVFS_Node *Node, const char *OldName)
222 {
223         Log_Warning("Ext2", "TODO: Impliment Ext2_Unlink");
224         return 1;
225 }
226
227 /**
228  * \brief Links an existing node to a new name
229  * \param Parent        Parent (directory) node
230  * \param Name  New name for the node
231  * \param Node  Node to link
232  * \return Boolean Failure - See ::tVFS_Node.Link for info
233  */
234 int Ext2_Link(tVFS_Node *Node, const char *Name, tVFS_Node *Child)
235 {       
236         #if 1
237         tExt2_Disk      *disk = Node->ImplPtr;
238         tExt2_Inode     inode;
239         tExt2_DirEnt    *dirent;
240         tExt2_DirEnt    newEntry;
241         Uint64  base;   // Block's Base Address
242          int    block = 0, ofs = 0;
243         Uint    size;
244         void    *blockData;
245          int    bestMatch = -1;
246          int    bestSize=0, bestBlock=0, bestOfs=0, bestNeedsSplit=0;
247          int    nEntries;
248
249         ENTER("pNode sName pChild",
250                 Node, Name, Child);
251         
252         blockData = malloc(disk->BlockSize);
253         
254         // Read child inode (get's the file type)
255         Ext2_int_ReadInode(disk, Child->Inode, &inode);
256         
257         // Create a stub entry
258         newEntry.inode = Child->Inode;
259         newEntry.name_len = strlen(Name);
260         newEntry.rec_len = ((newEntry.name_len+3)&~3) + EXT2_DIRENT_SIZE;
261         newEntry.type = inode.i_mode >> 12;
262         memcpy(newEntry.name, Name, newEntry.name_len);
263         
264         // Read directory's inode
265         Ext2_int_ReadInode(disk, Node->Inode, &inode);
266         size = inode.i_size;
267         
268         // Get a lock on the inode
269         //Ext2_int_LockInode(disk, Node->Inode);
270         Mutex_Acquire(&Node->Lock);
271
272 //      if( !Node->Data ) {
273 //      }
274
275         // Get First Block
276         // - Do this ourselves as it is a simple operation
277         base = inode.i_block[0] * disk->BlockSize;
278         VFS_ReadAt( disk->FD, base, disk->BlockSize, blockData );
279         block = 0;
280         nEntries = 0;
281         // Find File
282         while(size > 0)
283         {
284                 dirent = blockData + ofs;
285                 // Sanity Check the entry
286                 if(ofs + dirent->rec_len > disk->BlockSize) {
287                         Log_Warning("EXT2",
288                                 "Directory entry %i of inode 0x%x extends over a block boundary",
289                                 nEntries, (Uint)Node->Inode);
290                 }
291                 else
292                 {
293                         LOG("Entry %i: %x %i bytes", nEntries, dirent->type, dirent->rec_len);
294                         // Free entry
295                         if(dirent->type == 0)
296                         {
297                                 if( dirent->rec_len >= newEntry.rec_len
298                                  && (bestMatch == -1 || bestSize > dirent->rec_len) )
299                                 {
300                                         bestMatch = nEntries;
301                                         bestSize = dirent->rec_len;
302                                         bestBlock = block;
303                                         bestOfs = ofs;
304                                         bestNeedsSplit = 0;
305                                 }
306                         }
307                         // Non free - check name to avoid duplicates
308                         else
309                         {
310                                 LOG(" name='%.*s'", dirent->name_len, dirent->name);
311                                 if(strncmp(Name, dirent->name, dirent->name_len) == 0) {
312                                         //Ext2_int_UnlockInode(disk, Node->Inode);
313                                         Mutex_Release(&Node->Lock);
314                                         LEAVE('i', 1);
315                                         return 1;       // ERR_???
316                                 }
317                                 
318                                  int    spare_space = dirent->rec_len - (dirent->name_len + EXT2_DIRENT_SIZE);
319                                 if( spare_space > newEntry.rec_len
320                                  && (bestMatch == -1 || bestSize > spare_space) )
321                                 {
322                                         bestMatch = nEntries;
323                                         bestSize = spare_space;
324                                         bestBlock = block;
325                                         bestOfs = ofs;
326                                         bestNeedsSplit = 1;
327                                 }
328                         }
329                 }
330                 
331                 // Increment the pointer
332                 nEntries ++;
333                 ofs += dirent->rec_len;
334                 size -= dirent->rec_len;
335                 if( size > 0 && ofs >= disk->BlockSize ) {
336                         // Read the next block if needed
337                 //      BLOCK_DIR_OFS(Node->Data, block) = nEntries;
338                         block ++;
339                         ofs = 0;
340                         base = Ext2_int_GetBlockAddr(disk, inode.i_block, block);
341                         VFS_ReadAt( disk->FD, base, disk->BlockSize, blockData );
342                 }
343         }
344         
345         LOG("bestMatch = %i", bestMatch);
346         // If EOF was reached with no space, check if we can fit one on the end
347         if( bestMatch < 0 && ofs + newEntry.rec_len < disk->BlockSize ) {
348                 Node->Size += newEntry.rec_len;
349                 Node->Flags |= VFS_FFLAG_DIRTY;
350                 bestBlock = block;
351                 bestOfs = ofs;
352                 bestSize = newEntry.rec_len;
353                 bestNeedsSplit = 0;
354         }
355         // Check if a free slot was found
356         if( bestMatch >= 0 )
357         {
358                 // Read-Modify-Write
359                 base = Ext2_int_GetBlockAddr(disk, inode.i_block, bestBlock);
360                 VFS_ReadAt( disk->FD, base, disk->BlockSize, blockData );
361                 dirent = blockData + bestOfs;
362                 // Shorten a pre-existing entry
363                 if(bestNeedsSplit)
364                 {
365                         dirent->rec_len = EXT2_DIRENT_SIZE + dirent->name_len;
366                         bestOfs += dirent->rec_len;
367                         //bestSize -= dirent->rec_len; // (not needed, bestSize is the spare space after)
368                         dirent = blockData + bestOfs;
369                 }
370                 // Insert new file entry
371                 memcpy(dirent, &newEntry, newEntry.rec_len);
372                 // Create a new blank entry
373                 if( bestSize != newEntry.rec_len )
374                 {
375                         bestOfs += newEntry.rec_len;
376                         dirent = blockData + bestOfs;
377
378                         dirent->rec_len = bestSize - newEntry.rec_len;                  
379                         dirent->type = 0;
380                 }
381                 // Save changes
382                 VFS_WriteAt( disk->FD, base, disk->BlockSize, blockData );
383         }
384         else {
385                 // Allocate block, Write
386                 Uint32 newblock = Ext2_int_AllocateBlock(disk, base / disk->BlockSize);
387                 Ext2_int_AppendBlock(disk, &inode, newblock);
388                 base = newblock * disk->BlockSize;
389                 Node->Size += newEntry.rec_len;
390                 Node->Flags |= VFS_FFLAG_DIRTY;
391                 memcpy(blockData, &newEntry, newEntry.rec_len);
392                 memset(blockData + newEntry.rec_len, 0, disk->BlockSize - newEntry.rec_len);
393                 VFS_WriteAt( disk->FD, base, disk->BlockSize, blockData );
394         }
395
396         Child->ImplInt ++;
397         Child->Flags |= VFS_FFLAG_DIRTY;
398
399         //Ext2_int_UnlockInode(disk, Node->Inode);
400         Mutex_Release(&Node->Lock);
401         LEAVE('i', 0);
402         return 0;
403         #else
404         Log_Warning("Ext2", "TODO: Impliment Ext2_Link");
405         return 1;
406         #endif
407 }
408
409 // ---- INTERNAL FUNCTIONS ----
410 /**
411  * \fn vfs_node *Ext2_int_CreateNode(tExt2_Disk *Disk, Uint InodeID)
412  * \brief Create a new VFS Node
413  */
414 tVFS_Node *Ext2_int_CreateNode(tExt2_Disk *Disk, Uint InodeID)
415 {
416         tExt2_Inode     inode;
417         tVFS_Node       retNode;
418         tVFS_Node       *tmpNode;
419         
420         if( !Ext2_int_ReadInode(Disk, InodeID, &inode) )
421                 return NULL;
422         
423         if( (tmpNode = Inode_GetCache(Disk->CacheID, InodeID)) )
424                 return tmpNode;
425
426         memset(&retNode, 0, sizeof(retNode));   
427         
428         // Set identifiers
429         retNode.Inode = InodeID;
430         retNode.ImplPtr = Disk;
431         retNode.ImplInt = inode.i_links_count;
432         
433         // Set file length
434         retNode.Size = inode.i_size;
435         
436         // Set Access Permissions
437         retNode.UID = inode.i_uid;
438         retNode.GID = inode.i_gid;
439         retNode.NumACLs = 3;
440         retNode.ACLs = VFS_UnixToAcessACL(inode.i_mode & 0777, inode.i_uid, inode.i_gid);
441         
442         //  Set Function Pointers
443         retNode.Type = &gExt2_FileType;
444         
445         switch(inode.i_mode & EXT2_S_IFMT)
446         {
447         // Symbolic Link
448         case EXT2_S_IFLNK:
449                 retNode.Flags = VFS_FFLAG_SYMLINK;
450                 break;
451         // Regular File
452         case EXT2_S_IFREG:
453                 retNode.Flags = 0;
454                 retNode.Size |= (Uint64)inode.i_dir_acl << 32;
455                 break;
456         // Directory
457         case EXT2_S_IFDIR:
458                 retNode.Type = &gExt2_DirType;
459                 retNode.Flags = VFS_FFLAG_DIRECTORY;
460                 retNode.Data = calloc( sizeof(Uint16), DivUp(retNode.Size, Disk->BlockSize) );
461                 break;
462         // Unknown, Write protect it to be safe 
463         default:
464                 retNode.Flags = VFS_FFLAG_READONLY;
465                 break;
466         }
467         
468         // Set Timestamps
469         retNode.ATime = inode.i_atime * 1000;
470         retNode.MTime = inode.i_mtime * 1000;
471         retNode.CTime = inode.i_ctime * 1000;
472         
473         // Save in node cache and return saved node
474         return Inode_CacheNode(Disk->CacheID, &retNode);
475 }
476
477 int Ext2_int_WritebackNode(tExt2_Disk *Disk, tVFS_Node *Node)
478 {
479         Log_Warning("Ext2","TODO: Impliment Ext2_int_WritebackNode");
480         return 0;
481 }
482

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