diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2015-12-08 16:28:27 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2015-12-08 16:28:27 +0000 |
commit | df4f3c7a240ef94f84eb88d354b82cb5bce6fdb0 (patch) | |
tree | 5618932904c5521135f57d91e62104b01cb70db8 /lib/libc/gen | |
parent | 18490db5be741f5656287639389ac3766012bc28 (diff) |
rewrite guts of getusershell() to avoid possibility of overflow.
instead of trying to allocate "just enough" memory based on the size of the
file (which is mostly comments, in fact), allocate memory on demand.
i.e., save memory by wasting it. also be a little stricter about parsing.
after discussion with tobias. (with a bug fix from patrick keshishian)
descended from bug glibc bug 18660 via tobias.
Diffstat (limited to 'lib/libc/gen')
-rw-r--r-- | lib/libc/gen/getusershell.c | 86 |
1 files changed, 45 insertions, 41 deletions
diff --git a/lib/libc/gen/getusershell.c b/lib/libc/gen/getusershell.c index c835f4ddbe9..efa140a0843 100644 --- a/lib/libc/gen/getusershell.c +++ b/lib/libc/gen/getusershell.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getusershell.c,v 1.16 2015/09/14 16:09:13 tedu Exp $ */ +/* $OpenBSD: getusershell.c,v 1.17 2015/12/08 16:28:26 tedu Exp $ */ /* * Copyright (c) 1985, 1993 * The Regents of the University of California. All rights reserved. @@ -28,14 +28,13 @@ * SUCH DAMAGE. */ -#include <sys/stat.h> - #include <ctype.h> #include <limits.h> #include <paths.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> /* @@ -44,7 +43,7 @@ */ static char *okshells[] = { _PATH_BSHELL, _PATH_CSHELL, _PATH_KSHELL, NULL }; -static char **curshell, **shells, *strings; +static char **curshell, **shells; static char **initshells(void); /* @@ -66,11 +65,14 @@ getusershell(void) void endusershell(void) { - + char **s; + + if ((s = shells)) + while (*s) + free(*s++); free(shells); shells = NULL; - free(strings); - strings = NULL; + curshell = NULL; } @@ -84,48 +86,50 @@ setusershell(void) static char ** initshells(void) { - char **sp, *cp; + size_t nshells, nalloc, linesize; + char *line; FILE *fp; - struct stat statb; free(shells); shells = NULL; - free(strings); - strings = NULL; + if ((fp = fopen(_PATH_SHELLS, "re")) == NULL) return (okshells); - if (fstat(fileno(fp), &statb) == -1) { - (void)fclose(fp); - return (okshells); - } - if (statb.st_size > SIZE_MAX) { - (void)fclose(fp); - return (okshells); - } - if ((strings = malloc((size_t)statb.st_size)) == NULL) { - (void)fclose(fp); - return (okshells); - } - shells = calloc((size_t)(statb.st_size / 3 + 2), sizeof (char *)); - if (shells == NULL) { - (void)fclose(fp); - free(strings); - strings = NULL; - return (okshells); - } - sp = shells; - cp = strings; - while (fgets(cp, PATH_MAX + 1, fp) != NULL) { - while (*cp != '#' && *cp != '/' && *cp != '\0') - cp++; - if (*cp == '#' || *cp == '\0') + + line = NULL; + nalloc = 10; // just an initial guess + nshells = 0; + shells = reallocarray(NULL, nalloc, sizeof (char *)); + if (shells == NULL) + goto fail; + linesize = 0; + while (getline(&line, &linesize, fp) != -1) { + if (*line != '/') continue; - *sp++ = cp; - while (!isspace((unsigned char)*cp) && *cp != '#' && *cp != '\0') - cp++; - *cp++ = '\0'; + line[strcspn(line, "#\n")] = '\0'; + if (!(shells[nshells] = strdup(line))) + goto fail; + + if (nshells + 1 == nalloc) { + char **new = reallocarray(shells, nalloc * 2, sizeof(char *)); + if (!new) + goto fail; + shells = new; + nalloc *= 2; + } + nshells++; } - *sp = NULL; + free(line); + shells[nshells] = NULL; (void)fclose(fp); return (shells); + +fail: + free(line); + while (nshells) + free(shells[nshells--]); + free(shells); + shells = NULL; + (void)fclose(fp); + return (okshells); } |