Skip to content

Commit

Permalink
got rid of dependency on alloca in popt
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Tridgell committed Mar 23, 2001
1 parent 19b27a4 commit 6afe7f2
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 13 deletions.
11 changes: 7 additions & 4 deletions popt/findme.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const char * findProgramPath(const char * argv0) {
char * path = getenv("PATH");
char * pathbuf;
char * start, * chptr;
char * buf;
char * buf, *local = NULL;

/* If there is a / in the argv[0], it has to be an absolute
path */
Expand All @@ -18,7 +18,7 @@ const char * findProgramPath(const char * argv0) {

if (!path) return NULL;

start = pathbuf = alloca(strlen(path) + 1);
local = start = pathbuf = malloc(strlen(path) + 1);
buf = malloc(strlen(path) + strlen(argv0) + 2);
strcpy(pathbuf, path);

Expand All @@ -28,8 +28,10 @@ const char * findProgramPath(const char * argv0) {
*chptr = '\0';
sprintf(buf, "%s/%s", start, argv0);

if (!access(buf, X_OK))
return buf;
if (!access(buf, X_OK)) {
if (local) free(local);
return buf;
}

if (chptr)
start = chptr + 1;
Expand All @@ -38,6 +40,7 @@ const char * findProgramPath(const char * argv0) {
} while (start && *start);

free(buf);
if (local) free(local);

return NULL;
}
12 changes: 10 additions & 2 deletions popt/popt.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ static void execCommand(poptContext con) {
if (!con->execAbsolute && strchr(script, '/')) return;

if (!strchr(script, '/') && con->execPath) {
char *s = alloca(strlen(con->execPath) + strlen(script) + 2);
char *s = malloc(strlen(con->execPath) + strlen(script) + 2);
sprintf(s, "%s/%s", con->execPath, script);
argv[pos] = s;
} else {
Expand Down Expand Up @@ -398,6 +398,14 @@ int poptGetNextOpt(poptContext con)
const struct poptOption * opt = NULL;
int done = 0;

/* looks a bit tricky to get rid of alloca properly in this fn */
#if HAVE_ALLOCA_H
#define ALLOCA(x) alloca(x)
#else
#define ALLOCA(x) malloc(x)
#endif


while (!done) {
const char * origOptString = NULL;
poptCallbackType cb = NULL;
Expand Down Expand Up @@ -436,7 +444,7 @@ int poptGetNextOpt(poptContext con)

/* Make a copy we can hack at */
localOptString = optString =
strcpy(alloca(strlen(origOptString) + 1),
strcpy(ALLOCA(strlen(origOptString) + 1),
origOptString);

if (!optString[0])
Expand Down
15 changes: 10 additions & 5 deletions popt/poptconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ static void configLine(poptContext con, char * line) {
}

int poptReadConfigFile(poptContext con, const char * fn) {
char * file, * chptr, * end;
char * buf, * dst;
char * file=NULL, * chptr, * end;
char * buf=NULL, * dst;
int fd, rc;
int fileLength;

Expand All @@ -71,16 +71,17 @@ int poptReadConfigFile(poptContext con, const char * fn) {
fileLength = lseek(fd, 0, SEEK_END);
(void) lseek(fd, 0, 0);

file = alloca(fileLength + 1);
file = malloc(fileLength + 1);
if (read(fd, file, fileLength) != fileLength) {
rc = errno;
close(fd);
errno = rc;
if (file) free(file);
return POPT_ERROR_ERRNO;
}
close(fd);

dst = buf = alloca(fileLength + 1);
dst = buf = malloc(fileLength + 1);

chptr = file;
end = (file + fileLength);
Expand Down Expand Up @@ -111,6 +112,9 @@ int poptReadConfigFile(poptContext con, const char * fn) {
}
}

free(file);
free(buf);

return 0;
}

Expand All @@ -125,10 +129,11 @@ int poptReadDefaultConfig(poptContext con, /*@unused@*/ int useEnv) {
if (getuid() != geteuid()) return 0;

if ((home = getenv("HOME"))) {
fn = alloca(strlen(home) + 20);
fn = malloc(strlen(home) + 20);
strcpy(fn, home);
strcat(fn, "/.popt");
rc = poptReadConfigFile(con, fn);
free(fn);
if (rc) return rc;
}

Expand Down
7 changes: 5 additions & 2 deletions popt/poptparse.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ int poptParseArgvString(const char * s, int * argcPtr, const char *** argvPtr)
const char ** argv = malloc(sizeof(*argv) * argvAlloced);
int argc = 0;
int buflen = strlen(s) + 1;
char * buf = memset(alloca(buflen), 0, buflen);
char *buf0 = calloc(buflen, 1);
char *buf = buf0;

argv[argc] = buf;

Expand All @@ -55,6 +56,7 @@ int poptParseArgvString(const char * s, int * argcPtr, const char *** argvPtr)
src++;
if (!*src) {
free(argv);
free(buf0);
return POPT_ERROR_BADQUOTE;
}
if (*src != quote) *buf++ = '\\';
Expand All @@ -78,6 +80,7 @@ int poptParseArgvString(const char * s, int * argcPtr, const char *** argvPtr)
src++;
if (!*src) {
free(argv);
free(buf0);
return POPT_ERROR_BADQUOTE;
}
/*@fallthrough@*/
Expand All @@ -94,6 +97,6 @@ int poptParseArgvString(const char * s, int * argcPtr, const char *** argvPtr)
(void) poptDupArgv(argc, argv, argcPtr, argvPtr);

free(argv);

free(buf0);
return 0;
}

0 comments on commit 6afe7f2

Please sign in to comment.