mirror of
https://github.com/fluencelabs/musl
synced 2025-05-28 15:11:34 +00:00
per the text accepted for inclusion in POSIX, behavior is unspecified when any of the access mode bits are set. since it's impossible to consistently report this usage error (O_RDONLY could not be detected since its value happens to be zero), the most consistent way to handle them is just to ignore them. previously, if a caller erroneously passed O_WRONLY, the resulting access mode would be O_WRONLY|O_RDWR, which has the value 3, and this resulted in a file descriptor which rejects both read and write attempts when it is subsequently used.
32 lines
676 B
C
32 lines
676 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 || memcmp(template+l-len-6, "XXXXXX", 6)) {
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
|
|
flags -= flags & O_ACCMODE;
|
|
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);
|