]> git.cworth.org Git - tar/blob - gnu/openat.h
Imported Upstream version 1.24
[tar] / gnu / openat.h
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* provide a replacement openat function
4    Copyright (C) 2004-2006, 2008-2010 Free Software Foundation, Inc.
5
6    This program is free software: you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 /* written by Jim Meyering */
20
21 #ifndef _GL_HEADER_OPENAT
22 #define _GL_HEADER_OPENAT
23
24 #include <fcntl.h>
25
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <dirent.h>
29 #include <unistd.h>
30 #include <stdbool.h>
31
32 #ifndef __attribute__
33 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8)
34 #  define __attribute__(x) /* empty */
35 # endif
36 #endif
37
38 #ifndef ATTRIBUTE_NORETURN
39 # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
40 #endif
41
42 #if !HAVE_OPENAT
43
44 int openat_permissive (int fd, char const *file, int flags, mode_t mode,
45                        int *cwd_errno);
46 bool openat_needs_fchdir (void);
47
48 #else
49
50 # define openat_permissive(Fd, File, Flags, Mode, Cwd_errno) \
51     openat (Fd, File, Flags, Mode)
52 # define openat_needs_fchdir() false
53
54 #endif
55
56 void openat_restore_fail (int) ATTRIBUTE_NORETURN;
57 void openat_save_fail (int) ATTRIBUTE_NORETURN;
58
59 /* Using these function names makes application code
60    slightly more readable than it would be with
61    fchownat (..., 0) or fchownat (..., AT_SYMLINK_NOFOLLOW).  */
62 static inline int
63 chownat (int fd, char const *file, uid_t owner, gid_t group)
64 {
65   return fchownat (fd, file, owner, group, 0);
66 }
67
68 static inline int
69 lchownat (int fd, char const *file, uid_t owner, gid_t group)
70 {
71   return fchownat (fd, file, owner, group, AT_SYMLINK_NOFOLLOW);
72 }
73
74 static inline int
75 chmodat (int fd, char const *file, mode_t mode)
76 {
77   return fchmodat (fd, file, mode, 0);
78 }
79
80 static inline int
81 lchmodat (int fd, char const *file, mode_t mode)
82 {
83   return fchmodat (fd, file, mode, AT_SYMLINK_NOFOLLOW);
84 }
85
86 static inline int
87 statat (int fd, char const *name, struct stat *st)
88 {
89   return fstatat (fd, name, st, 0);
90 }
91
92 static inline int
93 lstatat (int fd, char const *name, struct stat *st)
94 {
95   return fstatat (fd, name, st, AT_SYMLINK_NOFOLLOW);
96 }
97
98 /* For now, there are no wrappers named laccessat or leuidaccessat,
99    since gnulib doesn't support faccessat(,AT_SYMLINK_NOFOLLOW) and
100    since access rights on symlinks are of limited utility.  Likewise,
101    wrappers are not provided for accessat or euidaccessat, so as to
102    avoid dragging in -lgen on some platforms.  */
103
104 #endif /* _GL_HEADER_OPENAT */