mailing list of musl libc
 help / color / mirror / code / Atom feed
1c198bfd520ea3cc1438c08e929d43991d0811b3 blob 1072 bytes (raw)

 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
32
33
34
35
36
37
38
39
40
41
42
 
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <limits.h>
#include <errno.h>
#include "libc.h"

char *__mktemp(char *);

int __gen_tempname (char *template, int len, int flags)
{
	if (len < 0) return EINVAL;

	int templen = strlen(template)-len;
	if (templen<6) return EINVAL;

	char *suffix = (char *)malloc((len+1)*sizeof(char));
	/* Copy the last len chars plus the null termination */
	int i;
	for (i = 0; i <= len; i++)
		suffix[i] = template[templen+i];
	/* Null terminate the template before the suffice */
	template[templen] = '\0';

	int fd, retries = 100, t0 = *template;
	while (retries--) {
		if (!*__mktemp(template)) return -1;
		/* Copy back the suffix */
		for (i = 0; i <= len; i++)
			template[templen+i] = suffix[i];
		if ((fd = open(template, flags | O_CREAT | O_EXCL, 0600))>=0)
			return fd;
		if (errno != EEXIST) return -1;
		/* this is safe because mktemp verified
		 * that we have a valid template string */
		template[0] = t0;
		strcpy(template+templen-6, "XXXXXX");
	}
	return -1;
}
debug log:

solving 1c198bf ...
found 1c198bf in https://inbox.vuxu.org/musl/1359340564-2128-1-git-send-email-basile@opensource.dyc.edu/

applying [1/1] https://inbox.vuxu.org/musl/1359340564-2128-1-git-send-email-basile@opensource.dyc.edu/
diff --git a/src/temp/tempname.c b/src/temp/tempname.c
new file mode 100644
index 0000000..1c198bf

Checking patch src/temp/tempname.c...
Applied patch src/temp/tempname.c cleanly.

index at:
100644 1c198bfd520ea3cc1438c08e929d43991d0811b3	src/temp/tempname.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).