mktemp.c 763 字节
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
	struct timespec ts;
14
	size_t i, l = strlen(template);
15
	int retries = 10000;
16
	unsigned long r, t;
R
Rich Felker 已提交
17 18 19

	if (l < 6 || strcmp(template+l-6, "XXXXXX")) {
		errno = EINVAL;
20 21
		*template = 0;
		return template;
R
Rich Felker 已提交
22
	}
23 24 25
	clock_gettime(CLOCK_REALTIME, &ts);
	r = ts.tv_nsec + (uintptr_t)&ts / 16 + (uintptr_t)template;
	while (retries--) {
26 27
		for (t=r, i=1; i<=6; i++, t>>=4)
			template[l-i] = 'A'+(t&15);
28 29
		if (access(template, F_OK) < 0) return template;
		r = r * 1103515245 + 12345;
R
Rich Felker 已提交
30
	}
31
	*template = 0;
32
	errno = EEXIST;
33
	return template;
R
Rich Felker 已提交
34
}
35 36

weak_alias(__mktemp, mktemp);