blob: df12e25f7c0fb0fb9eb1bab6e5eb445e358a5e66 (
plain)
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
|
/* ISC license. */
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#include <s6/ftrigw.h>
int ftrigw_fifodir_make (char const *path, gid_t gid, int force)
{
mode_t m = umask(0) ;
if (mkdir(path, 0700) < 0)
{
struct stat st ;
umask(m) ;
if (errno != EEXIST) return 0 ;
if (stat(path, &st) == -1) return 0 ;
if (st.st_uid != getuid()) return (errno = EACCES, 0) ;
if (!S_ISDIR(st.st_mode)) return (errno = ENOTDIR, 0) ;
if (!force) return 1 ;
}
else umask(m) ;
if ((gid != (gid_t)-1) && (chown(path, -1, gid) < 0)) return 0 ;
if (chmod(path, gid != (gid_t)-1 ? 03730 : 01733) < 0) return 0 ;
return 1 ;
}
|