mailing list of musl libc
 help / color / mirror / code / Atom feed
797d3b383d9d654b647b139e5b854640fbd60712 blob 535 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
 
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>

char *__randname(char *);

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

	size_t l = strlen(template)-len;
	if (l < 6 || strncmp(template+l-6, "XXXXXX", 6)) {
		errno = EINVAL;
		*template = 0;
		return -1;
	}

	int fd, retries = 100;
	while (retries--) {
		__randname(template+l-6);
		if ((fd = open(template, flags | O_CREAT | O_EXCL, 0600))>=0)
			return fd;
		if (errno != EEXIST) return -1;
	}
	return -1;
}
debug log:

solving 797d3b3 ...
found 797d3b3 in https://inbox.vuxu.org/musl/1359839705-25965-1-git-send-email-basile@opensource.dyc.edu/

applying [1/1] https://inbox.vuxu.org/musl/1359839705-25965-1-git-send-email-basile@opensource.dyc.edu/
diff --git a/src/temp/__open_tempfile.c b/src/temp/__open_tempfile.c
new file mode 100644
index 0000000..797d3b3

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

index at:
100644 797d3b383d9d654b647b139e5b854640fbd60712	src/temp/__open_tempfile.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).