From 9ca6835a269297d4657ee86ab427d76f5a6503a0 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sat, 7 Aug 2010 17:32:57 +0200 Subject: [PATCH] vfspk3 in q3map2: also support -fs_forbiddenpath --- plugins/vfspk3/vfs.cpp | 5 +++++ tools/quake3/common/vfs.c | 36 +++++++++++++++++++-------------- tools/quake3/common/vfs.h | 16 +++++++++++++++ tools/quake3/q3map2/path_init.c | 15 ++++++++++++++ 4 files changed, 57 insertions(+), 15 deletions(-) diff --git a/plugins/vfspk3/vfs.cpp b/plugins/vfspk3/vfs.cpp index ca5d385..e10c1ce 100644 --- a/plugins/vfspk3/vfs.cpp +++ b/plugins/vfspk3/vfs.cpp @@ -315,12 +315,17 @@ void InitDirectory(const char* directory, ArchiveModules& archiveModules) for(j = 0; j < g_numForbiddenDirs; ++j) { + printf("match against %s?\n", g_strForbiddenDirs[j]); if(!string_compare_nocase_upper(directory, g_strForbiddenDirs[j]) || (string_length(directory) > string_length(g_strForbiddenDirs[j]) && directory[string_length(directory) - string_length(g_strForbiddenDirs[j]) - 1] == '/' && !string_compare_nocase_upper(directory + string_length(directory) - string_length(g_strForbiddenDirs[j]), g_strForbiddenDirs[j]))) break; + printf("not matched\n"); } if(j < g_numForbiddenDirs) + { + printf("Directory %s matched by forbidden dirs, removed\n", directory); return; + } if (g_numDirs == VFS_MAXDIRS) return; diff --git a/tools/quake3/common/vfs.c b/tools/quake3/common/vfs.c index f4dbb54..547ee70 100644 --- a/tools/quake3/common/vfs.c +++ b/tools/quake3/common/vfs.c @@ -41,19 +41,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Leonardo Zide (leo@lokigames.com) // -#include - -#if defined (__linux__) || defined (__APPLE__) -#include -#include -#else -#include -#include -#define R_OK 04 -#define S_ISDIR(mode) (mode & _S_IFDIR) -#define PATH_MAX 260 -#endif - #include #include #include @@ -78,8 +65,10 @@ typedef struct static GSList* g_unzFiles; static GSList* g_pakFiles; -static char g_strDirs[VFS_MAXDIRS][PATH_MAX]; +static char g_strDirs[VFS_MAXDIRS][PATH_MAX+1]; static int g_numDirs; +char g_strForbiddenDirs[VFS_MAXDIRS][PATH_MAX+1]; +int g_numForbiddenDirs = 0; static gboolean g_bUsePak = TRUE; // ============================================================================= @@ -168,13 +157,24 @@ void vfsInitDirectory (const char *path) char filename[PATH_MAX]; char *dirlist; GDir *dir; + int j; + + for(j = 0; j < g_numForbiddenDirs; ++j) + { + if(!Q_stricmp(path, g_strForbiddenDirs[j]) + || (strlen(path) > strlen(g_strForbiddenDirs[j]) && path[strlen(path) - strlen(g_strForbiddenDirs[j]) - 1] == '/' && !Q_stricmp(path + strlen(path) - strlen(g_strForbiddenDirs[j]), g_strForbiddenDirs[j]))) + break; + } + if(j < g_numForbiddenDirs) + return; if (g_numDirs == VFS_MAXDIRS) return; Sys_Printf ("VFS Init: %s\n", path); - strcpy (g_strDirs[g_numDirs], path); + strncpy (g_strDirs[g_numDirs], path, PATH_MAX); + g_strDirs[g_numDirs][PATH_MAX] = 0; vfsFixDOSName (g_strDirs[g_numDirs]); vfsAddSlash (g_strDirs[g_numDirs]); g_numDirs++; @@ -191,6 +191,12 @@ void vfsInitDirectory (const char *path) if(name == NULL) break; + for(j = 0; j < g_numForbiddenDirs; ++j) + if(!Q_stricmp(name, g_strForbiddenDirs[j])) + break; + if(j < g_numForbiddenDirs) + continue; + dirlist = g_strdup(name); { diff --git a/tools/quake3/common/vfs.h b/tools/quake3/common/vfs.h index d2e4d6f..de1992d 100644 --- a/tools/quake3/common/vfs.h +++ b/tools/quake3/common/vfs.h @@ -31,6 +31,19 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #ifndef _VFS_H_ #define _VFS_H_ +// to get PATH_MAX +#include +#if defined (__linux__) || defined (__APPLE__) +#include +#include +#else +#include +#include +#define R_OK 04 +#define S_ISDIR(mode) (mode & _S_IFDIR) +#define PATH_MAX 260 +#endif + #define VFS_MAXDIRS 64 void vfsInitDirectory (const char *path); @@ -38,4 +51,7 @@ void vfsShutdown (); int vfsGetFileCount (const char *filename); int vfsLoadFile (const char *filename, void **buffer, int index); +extern char g_strForbiddenDirs[VFS_MAXDIRS][PATH_MAX+1]; +extern int g_numForbiddenDirs; + #endif // _VFS_H_ diff --git a/tools/quake3/q3map2/path_init.c b/tools/quake3/q3map2/path_init.c index cce5211..8674d87 100644 --- a/tools/quake3/q3map2/path_init.c +++ b/tools/quake3/q3map2/path_init.c @@ -359,6 +359,21 @@ void InitPaths( int *argc, char **argv ) argv[ i ] = NULL; } + /* -fs_forbiddenpath */ + else if( strcmp( argv[ i ], "-fs_forbiddenpath" ) == 0 ) + { + if( ++i >= *argc ) + Error( "Out of arguments: No path specified after %s.", argv[ i - 1 ] ); + argv[ i - 1 ] = NULL; + if(g_numForbiddenDirs < VFS_MAXDIRS) + { + strncpy(g_strForbiddenDirs[g_numForbiddenDirs], argv[i], PATH_MAX); + g_strForbiddenDirs[g_numForbiddenDirs][PATH_MAX] = 0; + ++g_numForbiddenDirs; + } + argv[ i ] = NULL; + } + /* -fs_basepath */ else if( strcmp( argv[ i ], "-fs_basepath" ) == 0 ) { -- 2.39.2