summaryrefslogtreecommitdiff
path: root/src/libunixonacid/open3_at.c
blob: 063092df4c5704b7de9b1e9f0eb839b9b1f1084a (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
61
/* ISC license. */

#include <skalibs/sysdeps.h>

#ifdef SKALIBS_HASOPENAT

#ifndef _ATFILE_SOURCE
#define _ATFILE_SOURCE
#endif

#include <skalibs/nonposix.h>

#include <errno.h>
#include <fcntl.h>

#include <skalibs/unix-transactional.h>

int open3_at (int dirfd, char const *file, int flags, unsigned int mode)
{
  int fd ;
  do fd = openat(dirfd, file, flags, mode) ;
  while (fd == -1 && errno == EINTR) ;
  return fd ;
}

#else

#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <skalibs/djbunix.h>
#include <skalibs/unix-transactional.h>

int open3_at (int dirfd, char const *file, int flags, unsigned int mode)
{
  int fd ;
  int fdhere = open_read(".") ;
  if (fdhere < 0) return -1 ;
  if (fd_chdir(dirfd) < 0) goto errclose ;
  fd = open3(file, flags, mode) ;
  if (fd < 0)
  {
    int e = errno ;
    fd_chdir(fdhere) ;
    errno = e ;
    goto errclose ;
  }
  if (fd_chdir(fdhere) < 0)
  {
    fd_close(fd) ;
    goto errclose ;
  }
  fd_close(fdhere) ;
  return fd ;

 errclose:
  fd_close(fdhere) ;
  return -1 ;
}

#endif