summaryrefslogtreecommitdiff
path: root/src/temp/mktemp.c
blob: 1078b9df805e433ebd2d0f4fbe2ab87553e80df9 (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 <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include "libc.h"

char *__mktemp(char *template)
{
	static int lock;
	static int index;
	int l = strlen(template);

	if (l < 6 || strcmp(template+l-6, "XXXXXX")) {
		errno = EINVAL;
		return NULL;
	}
	LOCK(&lock);
	for (; index < 1000000; index++) {
		snprintf(template+l-6, 6, "%06d", index);
		if (access(template, F_OK) != 0) {
			UNLOCK(&lock);
			return template;
		}
	}
	UNLOCK(&lock);
	return NULL;	
}

weak_alias(__mktemp, mktemp);