win32/compat/glob.c
2873aee3
 /*
52671b83
  *  Copyright (C) 2010 Sourcefire, Inc.
2873aee3
  *
  *  Authors: aCaB <acab@clamav.net>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License version 2 as
  *  published by the Free Software Foundation.
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  *  MA 02110-1301, USA.
  */
 
29ec8246
 #include "dirent.h"
 #include "libgen.h"
 
52671b83
 /* 
     I GIVE UP! The CRT is b0rked and cannot be helped.
29ec8246
 
52671b83
     The documentation suggestes to handle globbing automagically via linking in
     the msvc-provided setargv.obj. Unfortunately that thing has got any sort of bugs
     and perverts filenames rather than expanding them.
29ec8246
 
52671b83
     The other suggested approach is to override the crt-builtin "_setargv" with a
     custom routine to manually process the command line args before they are fed to main.
     Now this is even funnier: the hook is indeed called bedore main(), but then its work
     is discarded and replaced with that of the default parser... how useful!
     After some debugging the problem turned out to be in the design. The flow is like:
     pre_c_init -> _setargv
     then
     pre_cpp_init -> _setargv
     Looking at the code in there, it clearly shows that both _init functions are 99% the
     same. In case you are wondering... yes, everything is done twice! Including the
     command line parsing...
     There is however a small difference: while pre_c_init correctly calls the custom
     _setargv if present, pre_cpp_init always calls the crt-builtin!
     If you want to double check this link the msvc-provided noarg.obj in, then break in main
     and see how argv and argc are actually set... If you try with setargv.obj, instead, you
     will see that it apparently works, but that's just a hack for which pre_cpp_init ends
     up calling __setargv instead of _setargv based on the _dowildcard flag.
29ec8246
 
52671b83
     So the way to FIX this mess involves a small trick: in the _setargv override I
     don't just parse the command line properly, but I also turn my arguments into a new
     command line, which I use to replace the existing one. The replaced line will then be
     processed by pre_cpp_init and everything is fine.
     To replace the original line with the fixed one it's sufficient to replace the pointer
     returned by the __p__acmdln() function. The proto it "extern char **__p__acmdln(void)".
29ec8246
 
52671b83
     Of course the trick only works if the line is crafted in a way that can be understood
     and parsed by the _setargv builtin.
     Apparently, however, the authors of this pile of crap which goes under the name of CRT,
     are not even able to keep their bugs consistent. So, while in MSVC 2008 it was enough to
     put each arg in "'s, in MSVC 2008 SP 1 you additionally need to take care of "escaped"
     quotes. I.e.: \".
29ec8246
 
52671b83
     Whatever...
     I've given up trying to fit globbing below main. It's now hooked into main via a
     #define wrapper.
 */
29ec8246
 
52671b83
 static int glob_add(const char *path, int *argc, char ***argv) {
29ec8246
     char *tail = strchr(path, '*'), *tailqmark;
     char *dup1, *dup2, *dir, *base, *taildirsep, *tailwldsep;
     struct dirent *de;
     int baselen, taillen, dirlen, mergedir = 0, outlen = 0;
     int qmarklen = 0;
     DIR *d;
 
     if(strlen(path) > 4 && !memcmp(path, "\\\\?\\", 4))
 	tailqmark = strchr(&path[4], '?');
     else
 	tailqmark = strchr(path, '?');
 
     if(tailqmark && (!tail || tailqmark < tail))
 	tail = tailqmark;
 
     if(!tail) {
 	*argv = realloc(*argv, sizeof(**argv) * (*argc + 1));
 	(*argv)[*argc] = path;
 	(*argc)++;
 	return strlen(path);
     }
 
     if(tail!=path && tail[-1] == '\\') {
 	tail[-1] = '\0';
 	mergedir = 1;
     }
     while(*tail) {
 	if(*tail == '?') {
 	    if(tail == tailqmark || qmarklen) 
 		qmarklen++;
 	    *tail = 0;
 	} else if(*tail == '*') {
 	    *tail = '\0';
 	    qmarklen = 0;
 	} else 
 	    break;
 	tail++;
     }
     taillen = strlen(tail);
     taildirsep = strchr(tail, '\\');
     if(taildirsep && taildirsep - tail == taillen - 1) {
 	*taildirsep = '\0';
 	taildirsep = NULL;
 	taillen--;
     }
     if(!taildirsep)
 	taildirsep = tail + taillen;
 
     tailwldsep = strchr(tail, '*');
     tailqmark = strchr(tail, '?');
     if(tailqmark && (!tailwldsep || tailqmark < tailwldsep))
 	tailwldsep = tailqmark;
     if(!tailwldsep)
 	tailwldsep = tail + taillen;
 
     dup1 = strdup(path);
     dup2 = strdup(path);
 
     if(!mergedir) {
 	dir = dirname(dup1);
 	base = basename(dup2);
     } else {
 	dir = dup1;
 	base = dup2;
 	*dup2 = '\0';
     }
 
     dirlen = strlen(dir);
     baselen = strlen(base);
 
     d = opendir(dir);
     while(d && (de = readdir(d))) {
 	int namelen = strlen(de->d_name);
 	char *newpath;
 
 	if(!strcmp(de->d_name, ".") || !strcmp(de->d_name, "..")) continue;
 	if(namelen < baselen) continue;
 	if(strncasecmp(base, de->d_name, baselen)) continue;
 	if(de->d_type == DT_DIR && taildirsep < tailwldsep) {
 	    int d_taillen = taildirsep - tail;
 	    if(namelen < baselen + d_taillen) continue;
 	    if(strncasecmp(tail, &de->d_name[namelen - d_taillen], d_taillen)) continue;
 	    newpath = malloc(dirlen + namelen + taillen - d_taillen + 3);
 	    sprintf(newpath, "%s\\%s\\%s", dir, de->d_name, &tail[d_taillen+1]);
 	    outlen += glob_add(newpath, argc, argv);
 	} else {
 	    int d_taillen = tailwldsep - tail;
 	    char *start;
 	    if(namelen < baselen + d_taillen) continue;
 	    if(qmarklen && baselen + qmarklen + d_taillen != namelen)	continue;
 	    if(d_taillen == taillen) {
 		start = &de->d_name[namelen - d_taillen];
 		namelen = d_taillen;
 	    } else {
 		start = &de->d_name[baselen];
 		namelen -= baselen;
 	    }
 
 	    for(; namelen >= d_taillen; start++, namelen--) {
 		if(strncasecmp(start, tail, d_taillen)) continue;
 		newpath = malloc(dirlen + (start - de->d_name) +  taillen + 2);
 		sprintf(newpath, "%s\\", dir);
 		memcpy(&newpath[dirlen + 1], de->d_name, start - de->d_name);
 		strcpy(&newpath[dirlen + 1 + start - de->d_name], tail);
 		outlen += glob_add(newpath, argc, argv);
 	    }
 	}
     }
     if(d) closedir(d);
     free(dup1);
     free(dup2);
     free(path);
     return outlen;
 }
52671b83
 
 void w32_glob(int *argc_ptr, char ***argv_ptr) {
     char *cur = GetCommandLineA(), *begparm = NULL, *endparm = NULL;
     char **argv = NULL, c;
     int argc = 0, in_sq = 0, in_dq = 0, need_glob = 0, allarglen = 0;
 
     do {
 	c = *cur;
 	switch(c) {
 	    case '\0':
 		endparm = cur;
 		break;
 	    case ' ':
 		if(begparm && !(in_sq | in_dq))
 		    endparm = cur;
 		break;
 	    case '\'':
 		if(!in_dq) {
 		    in_sq = !in_sq;
 		    if(!in_sq)
 			endparm = cur;
 		}
 		break;
 	    case '"':
 		if(!in_sq) {
 		    in_dq = !in_dq;
 		    if(!in_dq)
 			endparm = cur;
 		}
 		break;
 	    case '*':
 	    case '?':
 		if(!in_sq)
 		    need_glob = 1;
 	    default:
 		if(!begparm) {
 		    begparm = cur;
 		    endparm = NULL;
 		}
 	}
 	if (begparm && endparm) {
 	    if(begparm < endparm) {
 		char *path = malloc(endparm - begparm + 1), *quotes;
 		int arglen = 0;
 
 		memcpy(path, begparm, endparm - begparm);
 		path[endparm - begparm] = '\0';
 		quotes = path;
 		while((quotes = strchr(quotes, '"')))
 		    memmove(quotes, quotes + 1, (endparm - begparm) - (quotes - path));
 		if(argc && need_glob) {
 		    arglen = glob_add(path, &argc, &argv);
 		    if(!arglen) {
 			path = malloc(endparm - begparm + 1);
 			memcpy(path, begparm, endparm - begparm);
 			path[endparm - begparm] = '\0';
 		    }
 		}
 		if(!arglen) {
 		    argv = realloc(argv, sizeof(*argv) * (argc + 1));
 		    argv[argc] = path;
 		    argc++;
 		    arglen = endparm - begparm;
 		}
 		allarglen += arglen;
 	    }
 	    need_glob = 0;
 	    in_sq = 0;
 	    in_dq = 0;
 	    begparm = NULL;
 	    endparm = NULL;
 	}
 	cur++;
     } while (c);
 
     if(argc) {
 	int i, argvlen = sizeof(*argv) * (argc + 1), argclen = 0;
 	argv = realloc(argv, argvlen + allarglen + argc);
 	argv[argc] = NULL;
 	for(i=0; i<argc; i++) {
 	    int curlen = strlen(argv[i]) + 1;
 	    char *curarg = (char *)argv + argvlen + argclen;
 	    memcpy(curarg, argv[i], curlen);
 	    argclen += curlen;
 	    free(argv[i]);
 	    argv[i] = curarg;
 	}
     }
     *argc_ptr = argc;
     *argv_ptr = argv;
 }