diff options
author | imp <imp@FreeBSD.org> | 1999-01-11 00:02:37 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 1999-01-11 00:02:37 +0000 |
commit | 020fe1f6b905d7ae8711a6a973238ded61311080 (patch) | |
tree | b5cdb7d242c4590bfa41be4e193a5ab6c7255a93 /lib/libc_r/uthread | |
parent | 05245124046dbb699d2c3dff3e72bf93a1af81c0 (diff) | |
download | FreeBSD-src-020fe1f6b905d7ae8711a6a973238ded61311080.zip FreeBSD-src-020fe1f6b905d7ae8711a6a973238ded61311080.tar.gz |
Fix a minor security problem in libc_r.
Submitted by: Alexandre Snarskii <snar@paranoia.ru>
Approved by: John Birrell
Reminded me that I'd been sitting on this too long: snar@paranoia.ru
Diffstat (limited to 'lib/libc_r/uthread')
-rw-r--r-- | lib/libc_r/uthread/uthread_info.c | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/lib/libc_r/uthread/uthread_info.c b/lib/libc_r/uthread/uthread_info.c index 07877d1..f66dd2d 100644 --- a/lib/libc_r/uthread/uthread_info.c +++ b/lib/libc_r/uthread/uthread_info.c @@ -36,6 +36,7 @@ #include <unistd.h> #ifdef _THREAD_SAFE #include <pthread.h> +#include <errno.h> #include "pthread_private.h" struct s_thread_info { @@ -73,11 +74,31 @@ _thread_dump_info(void) int i; int j; pthread_t pthread; + char tmpfile[128]; - /* Open the dump file for append and create it if necessary: */ - if ((fd = _thread_sys_open("/tmp/uthread.dump", - O_RDWR | O_CREAT | O_APPEND, 0666)) < 0) { - /* Can't open the dump file. */ + for (i = 0; i < 100000; i++) { + snprintf(tmpfile, sizeof(tmpfile), "/tmp/uthread.dump.%u.%i", + getpid(), i); + /* Open the dump file for append and create it if necessary: */ + if ((fd = _thread_sys_open(tmpfile, O_RDWR | O_CREAT | O_EXCL, + 0666)) < 0) { + /* Can't open the dump file. */ + if (errno == EEXIST) + continue; + /* + * We only need to continue in case of + * EEXIT error. Most other error + * codes means that we will fail all + * the times. + */ + return; + } else { + break; + } + } + if (i==100000) { + /* all 100000 possibilities are in use :( */ + return; } else { /* Output a header for active threads: */ strcpy(s, "\n\n=============\nACTIVE THREADS\n\n"); |