mktemp.c 719 字节
Newer Older
R
Rich Felker 已提交
1 2 3 4 5 6
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
7 8
#include <time.h>
#include <stdint.h>
R
Rich Felker 已提交
9 10
#include "libc.h"

11
char *__mktemp(char *template)
R
Rich Felker 已提交
12
{
13 14 15 16
	struct timespec ts;
	size_t l = strlen(template);
	int retries = 10000;
	unsigned long r;
R
Rich Felker 已提交
17 18 19

	if (l < 6 || strcmp(template+l-6, "XXXXXX")) {
		errno = EINVAL;
20
		return 0;
R
Rich Felker 已提交
21
	}
22 23 24 25 26 27
	clock_gettime(CLOCK_REALTIME, &ts);
	r = ts.tv_nsec + (uintptr_t)&ts / 16 + (uintptr_t)template;
	while (retries--) {
		snprintf(template+l-6, 7, "%06lX", r & 0xffffff);
		if (access(template, F_OK) < 0) return template;
		r = r * 1103515245 + 12345;
R
Rich Felker 已提交
28
	}
29
	*template = 0;
30
	errno = EEXIST;
31
	return template;
R
Rich Felker 已提交
32
}
33 34

weak_alias(__mktemp, mktemp);