X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Fvfs%2Fopen.c;h=6f0341706e7d5fe3100a78ef1ec5c7a26009cee6;hb=9d3800f60f2212432e550a4e003ae65b498a4d36;hp=4327a6cf7faedc36d62566c3d1c61ddb71be10ff;hpb=523c7141df1968adc736a99ec3ff6ac9f23d159b;p=tpg%2Facess2.git diff --git a/Kernel/vfs/open.c b/Kernel/vfs/open.c index 4327a6cf..6f034170 100644 --- a/Kernel/vfs/open.c +++ b/Kernel/vfs/open.c @@ -31,7 +31,7 @@ char *VFS_GetAbsPath(char *Path) char *ret; int pathLen = strlen(Path); int read, write; - int pos, baseLen; + int pos, endLen; int slashNum = 0; Uint slashOffsets[MAX_PATH_SLASHES]; char *cwd = CFGPTR(CFG_VFS_CWD); @@ -53,17 +53,24 @@ char *VFS_GetAbsPath(char *Path) // Check if the path is already absolute if(Path[0] == '/') { + endLen = pathLen + 1; ret = malloc(pathLen + 1); if(!ret) { Warning("VFS_GetAbsPath - malloc() returned NULL"); return NULL; } strcpy(ret, Path); - baseLen = 1; } else { - cwdLen = strlen(cwd); + if(cwd == NULL) { + cwd = "/"; + cwdLen = 1; + } + else { + cwdLen = strlen(cwd); + } + endLen = cwdLen + pathLen + 2; // Prepend the current directory - ret = malloc(cwdLen+pathLen+2); + ret = malloc(endLen); strcpy(ret, cwd); ret[cwdLen] = '/'; strcpy(&ret[cwdLen+1], Path); @@ -71,19 +78,16 @@ char *VFS_GetAbsPath(char *Path) // Remove . and .. read = write = 1; // Cwd has already been parsed - for(; read < baseLen+pathLen; read = pos+1) + for(; read < endLen; read = pos+1) { pos = strpos( &ret[read], '/' ); // If we are in the last section, force a break at the end of the itteration - if(pos == -1) pos = baseLen+pathLen; + if(pos == -1) pos = endLen; else pos += read; // Else, Adjust to absolute - //Log("pos-read = %i", pos-read); - // Check Length if(pos - read <= 2) { - //Log("&ret[read] = '%s'", &ret[read]); // Current Dir "." if(strncmp(&ret[read], ".", pos-read) == 0) continue; // Parent ".." @@ -103,8 +107,9 @@ char *VFS_GetAbsPath(char *Path) // Only copy if the positions differ if(read != write) { - Log("write = %i, read = %i", write, read); + //Log("write = %i, read = %i, pos-read+1 = %i", write, read, pos-read+1); memcpy( &ret[write], &ret[read], pos-read+1 ); + //Log("ret = '%s'", ret); } if(slashNum < MAX_PATH_SLASHES) @@ -120,9 +125,10 @@ char *VFS_GetAbsPath(char *Path) write += (pos-read)+1; } + ret[write] = '\0'; // Cap string (to deal with . or .. being the last terms) // `ret` should now be the absolute path LEAVE('s', ret); - Log("VFS_GetAbsPath: RETURN '%s'", ret); + //Log("VFS_GetAbsPath: RETURN '%s'", ret); return ret; } @@ -535,7 +541,8 @@ int VFS_ChDir(char *New) VFS_Close(fd); // Free old working directory - if( CFGPTR(CFG_VFS_CWD) ) free( CFGPTR(CFG_VFS_CWD) ); + if( CFGPTR(CFG_VFS_CWD) ) + free( CFGPTR(CFG_VFS_CWD) ); // Set new CFGPTR(CFG_VFS_CWD) = buf;