openat: simplify use of at-func.c
[gnulib.git] / lib / fchmodat.c
1 /* Change the protections of file relative to an open directory.
2    Copyright (C) 2006, 2009 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* written by Jim Meyering */
18
19 #include <config.h>
20
21 #include <sys/stat.h>
22
23 #include <errno.h>
24
25 #ifndef HAVE_LCHMOD
26 /* Use a different name, to avoid conflicting with any
27    system-supplied declaration.  */
28 # undef lchmod
29 # define lchmod lchmod_rpl
30 static int lchmod (char const *f, mode_t m) { errno = ENOSYS; return -1; }
31 #endif
32
33 /* Solaris 10 has no function like this.
34    Invoke chmod or lchmod on file, FILE, using mode MODE, in the directory
35    open on descriptor FD.  If possible, do it without changing the
36    working directory.  Otherwise, resort to using save_cwd/fchdir,
37    then (chmod|lchmod)/restore_cwd.  If either the save_cwd or the
38    restore_cwd fails, then give a diagnostic and exit nonzero.
39    Note that an attempt to use a FLAG value of AT_SYMLINK_NOFOLLOW
40    on a system without lchmod support causes this function to fail.  */
41
42 #define AT_FUNC_NAME fchmodat
43 #define AT_FUNC_F1 lchmod
44 #define AT_FUNC_F2 chmod
45 #define AT_FUNC_USE_F1_COND AT_SYMLINK_NOFOLLOW
46 #define AT_FUNC_POST_FILE_PARAM_DECLS , mode_t mode, int flag
47 #define AT_FUNC_POST_FILE_ARGS        , mode
48 #include "at-func.c"