X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Ftmpnam.c;h=2bd72b3b7a14baaf4e1e9d9db39e4f13105895a8;hb=2d93d6446191def352b8913e859d6104f1398c72;hp=14d59220acddd78a0e6f83454d872c847a5537a4;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/stdio/tmpnam.c b/src/stdio/tmpnam.c index 14d59220..2bd72b3b 100644 --- a/src/stdio/tmpnam.c +++ b/src/stdio/tmpnam.c @@ -1,38 +1,31 @@ #include #include -#include -#include +#include #include +#include #include "libc.h" +#include "syscall.h" +#include "atomic.h" + +#define MAXTRIES 100 char *tmpnam(char *s) { - static int lock; static int index; - static char *s2; - int pid = getpid(); - char *dir = getenv("TMPDIR"); - - if (!s) { - if (!s2) s2 = malloc(L_tmpnam); - s = s2; - } + static char s2[L_tmpnam]; + struct timespec ts; + int try = 0; + unsigned n; - /* this interface is insecure anyway but at least we can try.. */ - if (!dir || strlen(dir) > L_tmpnam-32) - dir = P_tmpdir; + if (!s) s = s2; - if (access(dir, R_OK|W_OK|X_OK) != 0) + if (__syscall(SYS_access, P_tmpdir, R_OK|W_OK|X_OK) != 0) return NULL; - LOCK(&lock); - for (index++; index < TMP_MAX; index++) { - snprintf(s, L_tmpnam, "%s/temp%d-%d", dir, pid, index); - if (access(s, F_OK) != 0) { - UNLOCK(&lock); - return s; - } - } - UNLOCK(&lock); - return NULL; + do { + __syscall(SYS_clock_gettime, CLOCK_REALTIME, &ts, 0); + n = ts.tv_nsec ^ (uintptr_t)&s ^ (uintptr_t)s; + snprintf(s, L_tmpnam, "/tmp/t%x-%x", a_fetch_add(&index, 1), n); + } while (!__syscall(SYS_access, s, F_OK) && try++=MAXTRIES ? 0 : s; }