diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2006-05-06 20:47:59 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2006-05-06 20:47:59 +0000 |
commit | d09449bf7d4d5000014dd1a06db6de40a99c1aa9 (patch) | |
tree | 9aa3f2a4e6580af451d55a3ed854ea1d627422e9 /usr.bin | |
parent | 0de402fa42e74488ffb35a3aa5b0a25f68a02e8e (diff) |
use mkstemp, remove races wrt lint1 and cpp.
(check lint1 and cpp code, they use fopen/freopen to open that temp
file, and thus will happily overwrite a symlink)
okay cloder@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/xlint/xlint/xlint.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/usr.bin/xlint/xlint/xlint.c b/usr.bin/xlint/xlint/xlint.c index 376c91d5f76..55401240f08 100644 --- a/usr.bin/xlint/xlint/xlint.c +++ b/usr.bin/xlint/xlint/xlint.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xlint.c,v 1.30 2006/04/21 18:24:08 cloder Exp $ */ +/* $OpenBSD: xlint.c,v 1.31 2006/05/06 20:47:58 espie Exp $ */ /* $NetBSD: xlint.c,v 1.3 1995/10/23 14:29:30 jpo Exp $ */ /* @@ -33,7 +33,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: xlint.c,v 1.30 2006/04/21 18:24:08 cloder Exp $"; +static char rcsid[] = "$OpenBSD: xlint.c,v 1.31 2006/05/06 20:47:58 espie Exp $"; #endif #include <sys/param.h> @@ -277,6 +277,7 @@ int main(int argc, char *argv[]) { int c; + int fd; char flgbuf[3], *tmp, *s; size_t len; struct utsname un; @@ -292,10 +293,11 @@ main(int argc, char *argv[]) if (asprintf(&cppout, "%slint0.XXXXXXXXXX", tmpdir) == -1) err(1, NULL); - if (mktemp(cppout) == NULL) { + if ((fd = mkstemp(cppout)) == -1) { warn("can't make temp"); terminate(-1); } + close(fd); p1out = xcalloc(1, sizeof (char *)); p2in = xcalloc(1, sizeof (char *)); @@ -518,6 +520,7 @@ fname(const char *name) char **args, *ofn, *path; size_t len; int error; + int fd; bn = lbasename(name, '/'); suff = lbasename(bn, '.'); @@ -549,10 +552,11 @@ fname(const char *name) } else { if (asprintf(&ofn, "%slint1.XXXXXXXXXX", tmpdir) == -1) err(1, NULL); - if (mktemp(ofn) == NULL) { + if ((fd = mkstemp(ofn)) == -1) { warn("can't make temp"); terminate(-1); } + close(fd); } if (!iflag) appcstrg(&p1out, ofn); |