mktemp.c 727 字节
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;
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
	while (retries--) {
24 25 26 27
		clock_gettime(CLOCK_REALTIME, &ts);
		r = ts.tv_nsec + (uintptr_t)&ts / 16 + (uintptr_t)template;
		for (i=1; i<=6; i++, r>>=4)
			template[l-i] = 'A'+(r&15);
28
		if (access(template, F_OK) < 0) return template;
R
Rich Felker 已提交
29
	}
30
	*template = 0;
31
	errno = EEXIST;
32
	return template;
R
Rich Felker 已提交
33
}
34 35

weak_alias(__mktemp, mktemp);