]> git.cworth.org Git - tar/blob - lib/fchmodat.c
Imported Upstream version 1.20
[tar] / lib / fchmodat.c
1 /* Change the protections of file relative to an open directory.
2    Copyright (C) 2006 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 "openat.h"
22 #include "dirname.h" /* solely for definition of IS_ABSOLUTE_FILE_NAME */
23 #include "save-cwd.h"
24 #include "openat-priv.h"
25
26 #ifndef HAVE_LCHMOD
27 /* Use a different name, to avoid conflicting with any
28    system-supplied declaration.  */
29 # undef lchmod
30 # define lchmod lchmod_rpl
31 static int lchmod (char const *f, mode_t m) { errno = ENOSYS; return -1; }
32 #endif
33
34 /* Solaris 10 has no function like this.
35    Invoke chmod or lchmod on file, FILE, using mode MODE, in the directory
36    open on descriptor FD.  If possible, do it without changing the
37    working directory.  Otherwise, resort to using save_cwd/fchdir,
38    then mkdir/restore_cwd.  If either the save_cwd or the restore_cwd
39    fails, then give a diagnostic and exit nonzero.
40    Note that an attempt to use a FLAG value of AT_SYMLINK_NOFOLLOW
41    on a system without lchmod support causes this function to fail.  */
42
43 #define AT_FUNC_NAME fchmodat
44 #define AT_FUNC_F1 lchmod
45 #define AT_FUNC_F2 chmod
46 #define AT_FUNC_USE_F1_COND flag == AT_SYMLINK_NOFOLLOW
47 #define AT_FUNC_POST_FILE_PARAM_DECLS , mode_t mode, int flag
48 #define AT_FUNC_POST_FILE_ARGS        , mode
49 #include "at-func.c"