blob: 7f8492a1ae8479ef2ca167c5dc6d37edd819ddb8 (
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
|
#define _BSD_SOURCE
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include "libc.h"
char *__randname(char *);
int __mkostemps(char *template, int len, int flags)
{
size_t l = strlen(template);
if (l<6 || len>l-6 || memcmp(template+l-len-6, "XXXXXX", 6)) {
errno = EINVAL;
return -1;
}
int fd, retries = 100;
do {
__randname(template+l-len-6);
if ((fd = open(template, flags | O_RDWR | O_CREAT | O_EXCL, 0600))>=0)
return fd;
} while (--retries && errno == EEXIST);
memcpy(template+l-len-6, "XXXXXX", 6);
return -1;
}
weak_alias(__mkostemps, mkostemps);
weak_alias(__mkostemps, mkostemps64);
|