2011-02-12 00:22:29 -05:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
2011-02-18 17:04:56 -05:00
|
|
|
#include <time.h>
|
|
|
|
#include <stdint.h>
|
2011-02-12 00:22:29 -05:00
|
|
|
#include "libc.h"
|
|
|
|
|
2011-02-14 19:18:06 -05:00
|
|
|
char *__mktemp(char *template)
|
2011-02-12 00:22:29 -05:00
|
|
|
{
|
2011-02-18 17:04:56 -05:00
|
|
|
struct timespec ts;
|
|
|
|
size_t l = strlen(template);
|
|
|
|
int retries = 10000;
|
|
|
|
unsigned long r;
|
2011-02-12 00:22:29 -05:00
|
|
|
|
|
|
|
if (l < 6 || strcmp(template+l-6, "XXXXXX")) {
|
|
|
|
errno = EINVAL;
|
2011-02-18 17:04:56 -05:00
|
|
|
return 0;
|
2011-02-12 00:22:29 -05:00
|
|
|
}
|
2011-02-18 17:04:56 -05:00
|
|
|
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;
|
2011-02-12 00:22:29 -05:00
|
|
|
}
|
2011-02-18 17:04:56 -05:00
|
|
|
errno = EEXIST;
|
|
|
|
return 0;
|
2011-02-12 00:22:29 -05:00
|
|
|
}
|
2011-02-14 19:18:06 -05:00
|
|
|
|
|
|
|
weak_alias(__mktemp, mktemp);
|