3 * - Open, Close and ChDir
13 #define OPEN_MOUNT_ROOT 1
14 #define MAX_PATH_SLASHES 256
15 #define MAX_NESTED_LINKS 4
16 #define MAX_PATH_LEN 255
19 extern tVFS_Mount *gVFS_RootMount;
20 extern int VFS_AllocHandle(int bIsUser, tVFS_Node *Node, int Mode);
21 extern tVFS_Node *VFS_MemFile_Create(const char *Path);
24 int VFS_int_CreateHandle( tVFS_Node *Node, tVFS_Mount *Mount, int Mode );
28 * \fn char *VFS_GetAbsPath(const char *Path)
29 * \brief Create an absolute path from a relative one
31 char *VFS_GetAbsPath(const char *Path)
34 int pathLen = strlen(Path);
35 char *pathComps[MAX_PATH_SLASHES];
39 const char *chroot = *Threads_GetChroot();
41 const char *cwd = *Threads_GetCWD();
48 ret = malloc(strlen(Path)+1);
50 Log_Warning("VFS", "VFS_GetAbsPath: malloc() returned NULL");
61 chrootLen = strlen(chroot);
62 // Trim trailing slash off chroot
63 if( chrootLen && chroot[chrootLen - 1] == '/' )
66 // Check if the path is already absolute
68 ret = malloc(chrootLen + pathLen + 1);
70 Log_Warning("VFS", "VFS_GetAbsPath: malloc() returned NULL");
73 strcpy(ret + chrootLen, Path);
83 // Prepend the current directory
84 ret = malloc(chrootLen + cwdLen + 1 + pathLen + 1 );
85 strcpy(ret+chrootLen, cwd);
87 strcpy(ret+chrootLen+cwdLen+1, Path);
88 //Log("ret = '%s'", ret);
92 pathComps[iPos++] = tmpStr = ret+chrootLen+1;
97 pathComps[iPos++] = tmpStr;
98 if(iPos == MAX_PATH_SLASHES) {
99 LOG("Path '%s' has too many elements", Path);
106 pathComps[iPos] = NULL;
110 while(pathComps[iPos])
112 tmpStr = pathComps[iPos];
113 // Always Increment iPos
116 if(tmpStr[0] == '.' && tmpStr[1] == '.' && (tmpStr[2] == '/' || tmpStr[2] == '\0') )
123 if(tmpStr[0] == '.' && (tmpStr[1] == '/' || tmpStr[1] == '\0') )
128 if(tmpStr[0] == '/' || tmpStr[0] == '\0')
134 pathComps[iPos2] = tmpStr;
137 pathComps[iPos2] = NULL;
140 iPos2 = chrootLen + 1; iPos = 0;
142 while(pathComps[iPos])
144 tmpStr = pathComps[iPos];
145 while(*tmpStr && *tmpStr != '/')
147 ret[iPos2++] = *tmpStr;
158 // Prepend the chroot
160 memcpy( ret, chroot, chrootLen );
163 // Log_Debug("VFS", "VFS_GetAbsPath: RETURN '%s'", ret);
168 * \fn char *VFS_ParsePath(const char *Path, char **TruePath)
169 * \brief Parses a path, resolving sysmlinks and applying permissions
171 tVFS_Node *VFS_ParsePath(const char *Path, char **TruePath, tVFS_Mount **MountPoint)
173 tVFS_Mount *mnt, *longestMount;
174 int cmp, retLength = 0;
176 int iNestedLinks = 0;
177 tVFS_Node *curNode, *tmpNode;
179 char path_buffer[MAX_PATH_LEN+1];
181 ENTER("sPath pTruePath", Path, TruePath);
184 if(Threads_GetUID() == 0 && Path[0] == '$') {
186 *TruePath = malloc(strlen(Path)+1);
187 strcpy(*TruePath, Path);
189 curNode = VFS_MemFile_Create(Path);
198 // For root we always fast return
199 if(Path[0] == '/' && Path[1] == '\0') {
201 *TruePath = malloc( gVFS_RootMount->MountPointLen+1 );
202 strcpy(*TruePath, gVFS_RootMount->MountPoint);
204 gVFS_RootMount->OpenHandleCount ++;
205 if(MountPoint) *MountPoint = gVFS_RootMount;
206 LEAVE('p', gVFS_RootMount->RootNode);
207 return gVFS_RootMount->RootNode;
210 // Check if there is anything mounted
212 Log_Error("VFS", "VFS_ParsePath - No filesystems mounted");
217 longestMount = gVFS_RootMount;
218 RWLock_AcquireRead( &glVFS_MountList );
219 for(mnt = gVFS_Mounts; mnt; mnt = mnt->Next)
222 if( Path[mnt->MountPointLen] != '/' && Path[mnt->MountPointLen] != '\0')
224 // Length Check - If the length is smaller than the longest match sofar
225 if(mnt->MountPointLen < longestMount->MountPointLen) continue;
227 cmp = strncmp(Path, mnt->MountPoint, mnt->MountPointLen);
228 // Not a match, continue
229 if(cmp != 0) continue;
232 // Fast Break - Request Mount Root
233 if(Path[mnt->MountPointLen] == '\0') {
235 *TruePath = malloc( mnt->MountPointLen+1 );
236 strcpy(*TruePath, mnt->MountPoint);
240 RWLock_Release( &glVFS_MountList );
241 LOG("Mount %p root", mnt);
242 LEAVE('p', mnt->RootNode);
243 return mnt->RootNode;
248 longestMount->OpenHandleCount ++; // Increment assuimg it worked
249 RWLock_Release( &glVFS_MountList );
251 // Save to shorter variable
254 LOG("mnt = {MountPoint:\"%s\"}", mnt->MountPoint);
259 // Assumes that the resultant path (here) will not be > strlen(Path) + 1
260 *TruePath = malloc( strlen(Path) + 1 );
261 strcpy(*TruePath, mnt->MountPoint);
262 retLength = mnt->MountPointLen;
265 curNode = mnt->RootNode;
266 curNode->ReferenceCount ++;
268 ofs = mnt->MountPointLen+1;
269 for(; (nextSlash = strpos(&Path[ofs], '/')) != -1; ofs += nextSlash + 1)
271 char pathEle[nextSlash+1];
274 if(nextSlash == 0) continue;
276 memcpy(pathEle, &Path[ofs], nextSlash);
277 pathEle[nextSlash] = 0;
279 // Check permissions on root of filesystem
280 if( !VFS_CheckACL(curNode, VFS_PERM_EXECUTE) ) {
281 LOG("Permissions failure on '%s'", Path);
285 // Check if the node has a FindDir method
288 LOG("Finddir failure on '%s' - No type", Path);
289 Log_Error("VFS", "Node at '%s' has no type (mount %s:%s)",
290 Path, mnt->Filesystem->Name, mnt->MountPoint);
293 if( !curNode->Type->FindDir )
295 LOG("Finddir failure on '%s' - No FindDir method in %s", Path, curNode->Type->Name);
298 LOG("FindDir{=%p}(%p, '%s')", curNode->Type->FindDir, curNode, pathEle);
300 tmpNode = curNode->Type->FindDir(curNode, pathEle);
301 LOG("tmpNode = %p", tmpNode);
302 _CloseNode( curNode );
307 LOG("Node '%s' not found in dir '%s'", pathEle, Path);
311 // Handle Symbolic Links
312 if(curNode->Flags & VFS_FFLAG_SYMLINK) {
317 if(!curNode->Type || !curNode->Type->Read) {
318 Log_Warning("VFS", "VFS_ParsePath - Read of symlink node %p'%s' is NULL",
323 if(iNestedLinks > MAX_NESTED_LINKS) {
324 Log_Notice("VFS", "VFS_ParsePath - Nested link limit exceeded");
328 // Parse Symlink Path
329 // - Just update the path variable and restart the function
330 // > Count nested symlinks and limit to some value (counteracts loops)
332 int remlen = strlen(Path) - (ofs + nextSlash);
333 if( curNode->Size + remlen > MAX_PATH_LEN ) {
334 Log_Warning("VFS", "VFS_ParsePath - Symlinked path too long");
337 curNode->Type->Read( curNode, 0, curNode->Size, path_buffer );
338 path_buffer[ curNode->Size ] = '\0';
339 LOG("path_buffer = '%s'", path_buffer);
340 strcat(path_buffer, Path + ofs+nextSlash);
343 // Log_Debug("VFS", "VFS_ParsePath: Symlink translated to '%s'", Path);
348 LOG("Symlink -> '%s', restart", Path);
349 mnt->OpenHandleCount --; // Not in this mountpoint
353 // Handle Non-Directories
354 if( !(curNode->Flags & VFS_FFLAG_DIRECTORY) )
356 Log_Warning("VFS", "VFS_ParsePath - Path segment is not a directory");
360 // Check if path needs extending
361 if(!TruePath) continue;
363 // Increase buffer space
364 tmp = realloc( *TruePath, retLength + strlen(pathEle) + 1 + 1 );
365 // Check if allocation succeeded
367 Log_Warning("VFS", "VFS_ParsePath - Unable to reallocate true path buffer");
372 (*TruePath)[retLength] = '/';
373 strcpy(*TruePath+retLength+1, pathEle);
375 LOG("*TruePath = '%s'", *TruePath);
378 retLength += nextSlash + 1;
381 // Check final finddir call
382 if( !curNode->Type || !curNode->Type->FindDir ) {
383 Log_Warning("VFS", "VFS_ParsePath - FindDir doesn't exist for element of '%s'", Path);
388 LOG("FindDir(%p, '%s')", curNode, &Path[ofs]);
389 tmpNode = curNode->Type->FindDir(curNode, &Path[ofs]);
390 LOG("tmpNode = %p", tmpNode);
391 // Check if file was found
393 LOG("Node '%s' not found in dir '%s'", &Path[ofs], Path);
396 _CloseNode( curNode );
400 // Increase buffer space
401 tmp = realloc(*TruePath, retLength + strlen(&Path[ofs]) + 1 + 1);
402 // Check if allocation succeeded
404 Log_Warning("VFS", "VFS_ParsePath - Unable to reallocate true path buffer");
409 (*TruePath)[retLength] = '/';
410 strcpy(*TruePath + retLength + 1, &Path[ofs]);
412 //retLength += strlen(tmpNode->Name) + 1;
419 // Leave the mointpoint's count increased
425 _CloseNode( curNode );
427 if(TruePath && *TruePath) {
431 // Open failed, so decrement the open handle count
432 mnt->OpenHandleCount --;
439 * \brief Create and return a handle number for the given node and mode
441 int VFS_int_CreateHandle( tVFS_Node *Node, tVFS_Mount *Mount, int Mode )
445 ENTER("pNode pMount xMode", Node, Mount, Mode);
448 i |= (Mode & VFS_OPENFLAG_EXEC) ? VFS_PERM_EXECUTE : 0;
449 i |= (Mode & VFS_OPENFLAG_READ) ? VFS_PERM_READ : 0;
450 i |= (Mode & VFS_OPENFLAG_WRITE) ? VFS_PERM_WRITE : 0;
455 if( !VFS_CheckACL(Node, i) ) {
457 Log_Log("VFS", "VFS_int_CreateHandle: Permissions Failed");
462 i = VFS_AllocHandle( !!(Mode & VFS_OPENFLAG_USER), Node, Mode );
464 Log_Notice("VFS", "VFS_int_CreateHandle: Out of handles");
469 VFS_GetHandle(i)->Mount = Mount;
475 * \fn int VFS_Open(const char *Path, Uint Mode)
478 int VFS_Open(const char *Path, Uint Flags)
480 return VFS_OpenEx(Path, Flags, 0);
483 int VFS_OpenEx(const char *Path, Uint Flags, Uint Mode)
489 ENTER("sPath xFlags oMode", Path, Flags);
492 absPath = VFS_GetAbsPath(Path);
493 if(absPath == NULL) {
494 Log_Warning("VFS", "VFS_Open: Path expansion failed '%s'", Path);
497 LOG("absPath = \"%s\"", absPath);
499 // Parse path and get mount point
500 node = VFS_ParsePath(absPath, NULL, &mnt);
502 // Create file if requested and it doesn't exist
503 if( !node && (Flags & VFS_OPENFLAG_CREATE) )
505 // TODO: Translate `Mode` into ACL and node flags
506 // Get parent, create node
507 if( VFS_MkNod(absPath, 0) ) {
511 node = VFS_ParsePath(absPath, NULL, &mnt);
514 // Free generated path
520 LOG("Cannot find node");
525 // Check for symlinks
526 if( !(Flags & VFS_OPENFLAG_NOLINK) && (node->Flags & VFS_FFLAG_SYMLINK) )
528 char tmppath[node->Size+1];
529 if( node->Size > MAX_PATH_LEN ) {
530 Log_Warning("VFS", "VFS_Open - Symlink is too long (%i)", node->Size);
533 if( !node->Type || !node->Type->Read ) {
534 Log_Warning("VFS", "VFS_Open - No read method on symlink");
537 // Read symlink's path
538 node->Type->Read( node, 0, node->Size, tmppath );
539 tmppath[ node->Size ] = '\0';
542 node = VFS_ParsePath(tmppath, NULL, &mnt);
544 LOG("Cannot find symlink target node (%s)", tmppath);
550 LEAVE_RET('x', VFS_int_CreateHandle(node, mnt, Flags));
555 * \brief Open a file from an open directory
557 int VFS_OpenChild(int FD, const char *Name, Uint Mode)
562 ENTER("xFD sName xMode", FD, Name, Mode);
565 h = VFS_GetHandle(FD);
567 Log_Warning("VFS", "VFS_OpenChild - Invalid file handle 0x%x", FD);
572 // Check for directory
573 if( !(h->Node->Flags & VFS_FFLAG_DIRECTORY) ) {
574 Log_Warning("VFS", "VFS_OpenChild - Passed handle is not a directory");
580 if( !h->Node->Type || !h->Node->Type->FindDir ) {
581 Log_Error("VFS", "VFS_OpenChild - Node does not have a type/is missing FindDir");
587 node = h->Node->Type->FindDir(h->Node, Name);
593 // Increment open handle count, no problems with the mount going away as `h` is already open on it
594 h->Mount->OpenHandleCount ++;
596 LEAVE_RET('x', VFS_int_CreateHandle(node, h->Mount, Mode));
599 int VFS_OpenInode(Uint32 Mount, Uint64 Inode, int Mode)
604 ENTER("iMount XInode xMode", Mount, Inode, Mode);
607 mnt = VFS_GetMountByIdent(Mount);
609 LOG("Mount point ident invalid");
614 // Does the filesystem support this?
615 if( !mnt->Filesystem->GetNodeFromINode ) {
616 LOG("Filesystem does not support inode accesses");
622 node = mnt->Filesystem->GetNodeFromINode(mnt->RootNode, Inode);
624 LOG("Unable to find inode");
629 LEAVE_RET('x', VFS_int_CreateHandle(node, mnt, Mode));
633 * \fn void VFS_Close(int FD)
634 * \brief Closes an open file handle
636 void VFS_Close(int FD)
641 h = VFS_GetHandle(FD);
643 Log_Warning("VFS", "Invalid file handle passed to VFS_Close, 0x%x", FD);
647 #if VALIDATE_VFS_FUNCTIPONS
648 if(h->Node->Close && !MM_GetPhysAddr(h->Node->Close)) {
649 Log_Warning("VFS", "Node %p's ->Close method is invalid (%p)",
650 h->Node, h->Node->Close);
658 h->Mount->OpenHandleCount --;
664 * \brief Change current working directory
666 int VFS_ChDir(const char *Dest)
673 buf = VFS_GetAbsPath(Dest);
675 Log_Notice("VFS", "VFS_ChDir: Path expansion failed");
679 // Check if path exists
680 fd = VFS_Open(buf, VFS_OPENFLAG_EXEC);
682 Log_Notice("VFS", "VFS_ChDir: Path is invalid");
686 // Get node so we can check for directory
687 h = VFS_GetHandle(fd);
688 if( !(h->Node->Flags & VFS_FFLAG_DIRECTORY) ) {
689 Log("VFS_ChDir: Path is not a directory");
698 char **cwdptr = Threads_GetCWD();
699 // Free old working directory
700 if( *cwdptr ) free( *cwdptr );
705 Log("Updated CWD to '%s'", buf);
711 * \fn int VFS_ChRoot(char *New)
712 * \brief Change current root directory
714 int VFS_ChRoot(const char *New)
720 if(New[0] == '/' && New[1] == '\0')
721 return 1; // What a useless thing to ask!
724 buf = VFS_GetAbsPath(New);
726 LOG("Path expansion failed");
730 // Check if path exists
731 fd = VFS_Open(buf, VFS_OPENFLAG_EXEC);
733 LOG("Path is invalid");
737 // Get node so we can check for directory
738 h = VFS_GetHandle(fd);
739 if( !(h->Node->Flags & VFS_FFLAG_DIRECTORY) ) {
740 LOG("Path is not a directory");
750 char **chroot_ptr = Threads_GetChroot();
751 if( *chroot_ptr ) free( *chroot_ptr );
755 LOG("Updated Root to '%s'", buf);