blob: 4deb837a2839792910399d902b50105cac0dae4b (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/* ISC license. */
#include <skalibs/sysdeps.h>
#ifdef SKALIBS_HASOPENAT
#ifndef _ATFILE_SOURCE
#define _ATFILE_SOURCE
#endif
#include <skalibs/nonposix.h>
#include <fcntl.h>
#include <skalibs/unix-transactional.h>
int open2_at (int dirfd, char const *file, int flags)
{
return openat(dirfd, file, flags) ;
}
#else
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <skalibs/djbunix.h>
#include <skalibs/unix-transactional.h>
int open2_at (int dirfd, char const *file, int flags)
{
int fd ;
int fdhere = open_read(".") ;
if (fdhere < 0) return -1 ;
if (fd_chdir(dirfd) < 0)
{
register int e = errno ;
fd_close(fdhere) ;
errno = e ;
return -1 ;
}
fd = open2(file, flags) ;
if (fd < 0)
{
register int e = errno ;
fd_chdir(fdhere) ;
fd_close(fdhere) ;
errno = e ;
return -1 ;
}
if (fd_chdir(fdhere) < 0)
{
register int e = errno ;
fd_close(fdhere) ;
errno = e ;
return -1 ;
}
return fd ;
}
#endif
|