summaryrefslogtreecommitdiff
path: root/src/stdio/tmpnam.c
blob: 2bd72b3b7a14baaf4e1e9d9db39e4f13105895a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <time.h>
#include "libc.h"
#include "syscall.h"
#include "atomic.h"

#define MAXTRIES 100

char *tmpnam(char *s)
{
	static int index;
	static char s2[L_tmpnam];
	struct timespec ts;
	int try = 0;
	unsigned n;

	if (!s) s = s2;

	if (__syscall(SYS_access, P_tmpdir, R_OK|W_OK|X_OK) != 0)
		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);
	return try>=MAXTRIES ? 0 : s;
}