// Check for root
if(absPath[0] == '\0')
- parent = VFS_ParsePath("/", NULL);
+ parent = VFS_ParsePath("/", NULL, NULL);
else
- parent = VFS_ParsePath(absPath, NULL);
+ parent = VFS_ParsePath(absPath, NULL, NULL);
LOG("parent = %p", parent);
return -1;
}
+ destNode = VFS_ParsePath( _link, &realLink, NULL );
+ #if 0
// Get true path and node
- destNode = VFS_ParsePath( _link, &realLink );
free(_link);
_link = NULL;
+ #else
+ realLink = _link;
+ #endif
// Check if destination exists
if(!destNode) {
extern int VFS_AllocHandle(int bIsUser, tVFS_Node *Node, int Mode);
// === PROTOTYPES ===
- int VFS_int_CreateHandle( tVFS_Node *Node, int Mode );
+ int VFS_int_CreateHandle( tVFS_Node *Node, tVFS_Mount *Mount, int Mode );
// === CODE ===
/**
* \fn char *VFS_ParsePath(const char *Path, char **TruePath)
* \brief Parses a path, resolving sysmlinks and applying permissions
*/
-tVFS_Node *VFS_ParsePath(const char *Path, char **TruePath)
+tVFS_Node *VFS_ParsePath(const char *Path, char **TruePath, tVFS_Mount **MountPoint)
{
tVFS_Mount *mnt, *longestMount;
int cmp, retLength = 0;
strcpy(*TruePath, Path);
}
curNode = gVFS_MemRoot.FindDir(&gVFS_MemRoot, Path);
+ if(MountPoint) {
+ *MountPoint = NULL;
+ }
LEAVE('p', curNode);
return curNode;
}
*TruePath = malloc( mnt->MountPointLen+1 );
strcpy(*TruePath, mnt->MountPoint);
}
+ if(MountPoint)
+ *MountPoint = mnt;
LEAVE('p', mnt->RootNode);
return mnt->RootNode;
}
}
// Get last node
- LOG("VFS_ParsePath: FindDir(%p, '%s')", curNode, &Path[ofs]);
+ LOG("FindDir(%p, '%s')", curNode, &Path[ofs]);
tmpNode = curNode->FindDir(curNode, &Path[ofs]);
LOG("tmpNode = %p", tmpNode);
if(curNode->Close) curNode->Close(curNode);
// - Extend Path
//retLength += strlen(tmpNode->Name) + 1;
}
+
+ if( MountPoint ) {
+ *MountPoint = mnt;
+ }
LEAVE('p', tmpNode);
return tmpNode;
/**
* \brief Create and return a handle number for the given node and mode
*/
-int VFS_int_CreateHandle( tVFS_Node *Node, int Mode )
+int VFS_int_CreateHandle( tVFS_Node *Node, tVFS_Mount *Mount, int Mode )
{
int i;
i = 0;
LEAVE_RET('i', -1);
}
+ VFS_GetHandle(i)->Mount = Mount;
+
LEAVE_RET('x', i);
}
int VFS_Open(const char *Path, Uint Mode)
{
tVFS_Node *node;
+ tVFS_Mount *mnt;
char *absPath;
ENTER("sPath xMode", Path, Mode);
}
LOG("absPath = \"%s\"", absPath);
// Parse path and get mount point
- node = VFS_ParsePath(absPath, NULL);
+ node = VFS_ParsePath(absPath, NULL, &mnt);
// Free generated path
free(absPath);
tmppath[ node->Size ] = '\0';
if(node->Close) node->Close( node );
// Open the target
- node = VFS_ParsePath(tmppath, NULL);
+ node = VFS_ParsePath(tmppath, NULL, &mnt);
if(!node) {
LOG("Cannot find symlink target node (%s)", tmppath);
errno = ENOENT;
}
}
- LEAVE_RET('x', VFS_int_CreateHandle(node, Mode));
+ LEAVE_RET('x', VFS_int_CreateHandle(node, mnt, Mode));
}
LEAVE_RET('i', -1);
}
- LEAVE_RET('x', VFS_int_CreateHandle(node, Mode));
+ LEAVE_RET('x', VFS_int_CreateHandle(node, h->Mount, Mode));
}
int VFS_OpenInode(Uint32 Mount, Uint64 Inode, int Mode)
LEAVE_RET('i', -1);
}
- LEAVE_RET('x', VFS_int_CreateHandle(node, Mode));
+ LEAVE_RET('x', VFS_int_CreateHandle(node, mnt, Mode));
}
/**