mirror of https://git.musl-libc.org/git/musl
1 changed files with 17 additions and 25 deletions
@ -1,38 +1,30 @@ |
|||||
#include <stdio.h> |
#include <stdio.h> |
||||
#include <stdlib.h> |
#include <stdlib.h> |
||||
#include <string.h> |
|
||||
#include <limits.h> |
|
||||
#include <unistd.h> |
#include <unistd.h> |
||||
|
#include <time.h> |
||||
#include "libc.h" |
#include "libc.h" |
||||
|
#include "syscall.h" |
||||
|
#include "atomic.h" |
||||
|
|
||||
|
#define MAXTRIES 100 |
||||
|
|
||||
char *tmpnam(char *s) |
char *tmpnam(char *s) |
||||
{ |
{ |
||||
static int lock; |
|
||||
static int index; |
static int index; |
||||
static char *s2; |
static char s2[L_tmpnam]; |
||||
int pid = getpid(); |
struct timespec ts; |
||||
char *dir = getenv("TMPDIR"); |
int try = 0; |
||||
|
unsigned n; |
||||
if (!s) { |
|
||||
if (!s2) s2 = malloc(L_tmpnam); |
|
||||
s = s2; |
|
||||
} |
|
||||
|
|
||||
/* this interface is insecure anyway but at least we can try.. */ |
if (!s) s = s2; |
||||
if (!dir || strlen(dir) > L_tmpnam-32) |
|
||||
dir = P_tmpdir; |
|
||||
|
|
||||
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; |
return NULL; |
||||
|
|
||||
LOCK(&lock); |
do { |
||||
for (index++; index < TMP_MAX; index++) { |
__syscall(SYS_clock_gettime, CLOCK_REALTIME, &ts, 0); |
||||
snprintf(s, L_tmpnam, "%s/temp%d-%d", dir, pid, index); |
n = ts.tv_nsec ^ (unsigned)&s ^ (unsigned)s; |
||||
if (access(s, F_OK) != 0) { |
snprintf(s, L_tmpnam, "/tmp/t%x-%x", a_fetch_add(&index, 1), n); |
||||
UNLOCK(&lock); |
} while (!__syscall(SYS_access, s, F_OK) && try++<MAXTRIES); |
||||
return s; |
return try==MAXTRIES ? 0 : s; |
||||
} |
|
||||
} |
|
||||
UNLOCK(&lock); |
|
||||
return NULL; |
|
||||
} |
} |
||||
|
|||||
Loading…
Reference in new issue