Import upstream version 1.28
[debian/tar] / gnu / faccessat.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Check the access rights of a file relative to an open directory.
4    Copyright (C) 2009-2014 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 Eric Blake */
20
21 #include <config.h>
22
23 #include <unistd.h>
24 #include <fcntl.h>
25
26 #ifndef HAVE_ACCESS
27 /* Mingw lacks access, but it also lacks real vs. effective ids, so
28    the gnulib euidaccess module is good enough.  */
29 # undef access
30 # define access euidaccess
31 #endif
32
33 /* Invoke access or euidaccess on file, FILE, using mode MODE, in the directory
34    open on descriptor FD.  If possible, do it without changing the
35    working directory.  Otherwise, resort to using save_cwd/fchdir, then
36    (access|euidaccess)/restore_cwd.  If either the save_cwd or the
37    restore_cwd fails, then give a diagnostic and exit nonzero.
38    Note that this implementation only supports AT_EACCESS, although some
39    native versions also support AT_SYMLINK_NOFOLLOW.  */
40
41 #define AT_FUNC_NAME faccessat
42 #define AT_FUNC_F1 euidaccess
43 #define AT_FUNC_F2 access
44 #define AT_FUNC_USE_F1_COND AT_EACCESS
45 #define AT_FUNC_POST_FILE_PARAM_DECLS , int mode, int flag
46 #define AT_FUNC_POST_FILE_ARGS        , mode
47 #include "at-func.c"