29555d72bb
POSIX allows <fcntl.h> to include <sys/stat.h>, but doesn't require it. There's little reason to do that, since they are separate headers, and <fcntl.h> just needs the mode_t constants. Fix the code accidentally relying on <fcntl.h> including <sys/stat.h>. The mode_t constants are now provided in their own kernel header <sortix/mode.h>. Additionally fix <sys/stat.h> pulling in all of <sys/types.h>, which is not allowed by POSIX, which only requires a few types to be declared. Fix the code accidentally relying on <sys/stat.h> including <sys/types.h>. Finally fix <dirent.h> pulling in <stdint.h> through <sortix/dirent.h>. The <sortix/__/dt.h> and <sortix/__/stat.h> headers are no longer required and their contents have been merged into <sortix/__/dirent.h>.
62 lines
1.8 KiB
C
62 lines
1.8 KiB
C
/*
|
|
* Copyright (c) 2013, 2014, 2015, 2018 Jonas 'Sortie' Termansen.
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* stdlib/mkdtemps.c
|
|
* Make a unique temporary directory path and create it.
|
|
*/
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
static const uint32_t NUM_CHARACTERS = 10 + 26 + 26;
|
|
|
|
static inline char random_character(void)
|
|
{
|
|
uint32_t index = arc4random_uniform(NUM_CHARACTERS);
|
|
if ( index < 10 )
|
|
return '0' + index;
|
|
if ( index < 10 + 26 )
|
|
return 'a' + index - 10;
|
|
if ( index < 10 + 26 + 26 )
|
|
return 'A' + index - (10 + 26);
|
|
__builtin_unreachable();
|
|
}
|
|
|
|
char* mkdtemps(char* templ, size_t suffixlen)
|
|
{
|
|
size_t templ_length = strlen(templ);
|
|
if ( templ_length < 6 ||
|
|
templ_length - 6 < (size_t) suffixlen )
|
|
return errno = EINVAL, (char*) NULL;
|
|
size_t xpos = templ_length - (6 + suffixlen);
|
|
for ( size_t i = 0; i < 6; i++ )
|
|
if ( templ[xpos + i] != 'X' )
|
|
return errno = EINVAL, (char*) NULL;
|
|
|
|
do
|
|
{
|
|
for ( size_t i = 0; i < 6; i++ )
|
|
templ[xpos + i] = random_character();
|
|
if ( mkdir(templ, 0700) == 0 )
|
|
return templ;
|
|
} while ( errno == EEXIST );
|
|
|
|
memcpy(templ + xpos, "XXXXXX", 6);
|
|
|
|
return NULL;
|
|
}
|