mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-15 17:54:23 +03:00
![Rich Felker](/assets/img/avatar_default.png)
1. wrong return value and missing errno for negative suffix len 2. failure to catch suffix len > strlen 3. remove unwanted clearing of input string in invalid case
30 lines
618 B
C
30 lines
618 B
C
#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 || strncmp(template+l-len-6, "XXXXXX", 6)) {
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
|
|
int fd, retries = 100;
|
|
while (retries--) {
|
|
__randname(template+l-len-6);
|
|
if ((fd = open(template, flags | O_RDWR | O_CREAT | O_EXCL, 0600))>=0)
|
|
return fd;
|
|
if (errno != EEXIST) return -1;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
weak_alias(__mkostemps, mkostemps);
|
|
weak_alias(__mkostemps, mkostemps64);
|