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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/* ISC license. */
#include <skalibs/sysdeps.h>
#ifdef SKALIBS_HASOPENAT
#ifndef _ATFILE_SOURCE
#define _ATFILE_SOURCE
#endif
#include <skalibs/nonposix.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <skalibs/unix-transactional.h>
int stat_at (int dirfd, char const *file, struct stat *st)
{
return fstatat(dirfd, file, st, 0) ;
}
int lstat_at (int dirfd, char const *file, struct stat *st)
{
return fstatat(dirfd, file, st, AT_SYMLINK_NOFOLLOW) ;
}
#else
/* OpenBSD plz. lstat() is POSIX. */
#include <skalibs/nonposix.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <skalibs/djbunix.h>
#include <skalibs/unix-transactional.h>
static int fstat_at (int dirfd, char const *file, struct stat *st, int (*dostat)(char const *, struct stat *))
{
int r ;
int fdhere = open_read(".") ;
if (fdhere < 0) return -1 ;
if (fd_chdir(dirfd) < 0)
{
fd_close(fdhere) ;
return -1 ;
}
r = (*dostat)(file, st) ;
if (r < 0)
{
int e = errno ;
fd_chdir(fdhere) ;
fd_close(fdhere) ;
errno = e ;
return -1 ;
}
if (fd_chdir(fdhere) < 0)
{
fd_close(fdhere) ;
return -1 ;
}
fd_close(fdhere) ;
return r ;
}
int stat_at (int dirfd, char const *file, struct stat *st)
{
return fstat_at(dirfd, file, st, &stat) ;
}
int lstat_at (int dirfd, char const *file, struct stat *st)
{
return fstat_at(dirfd, file, st, &lstat) ;
}
#endif
|