Update copyright notices with scripts/update-copyrights.
[glibc.git] / sysdeps / unix / sysv / linux / fchmodat.c
blob1093cabe19d23f9040d3a6324cff5fa78fb7e6ec
1 /* Change the protections of file relative to open directory. Linux version.
2 Copyright (C) 2006-2013 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <stddef.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <sys/types.h>
26 #include <alloca.h>
27 #include <kernel-features.h>
28 #include <sysdep.h>
30 int
31 fchmodat (fd, file, mode, flag)
32 int fd;
33 const char *file;
34 mode_t mode;
35 int flag;
37 if (flag & ~AT_SYMLINK_NOFOLLOW)
39 __set_errno (EINVAL);
40 return -1;
42 #ifndef __NR_lchmod /* Linux so far has no lchmod syscall. */
43 if (flag & AT_SYMLINK_NOFOLLOW)
45 __set_errno (ENOTSUP);
46 return -1;
48 #endif
50 int result;
52 #ifdef __NR_fchmodat
53 # ifndef __ASSUME_ATFCTS
54 if (__have_atfcts >= 0)
55 # endif
57 result = INLINE_SYSCALL (fchmodat, 3, fd, file, mode);
58 # ifndef __ASSUME_ATFCTS
59 if (result == -1 && errno == ENOSYS)
60 __have_atfcts = -1;
61 else
62 # endif
63 return result;
65 #endif
67 #ifndef __ASSUME_ATFCTS
68 char *buf = NULL;
70 if (fd != AT_FDCWD && file[0] != '/')
72 size_t filelen = strlen (file);
73 if (__builtin_expect (filelen == 0, 0))
75 __set_errno (ENOENT);
76 return -1;
79 static const char procfd[] = "/proc/self/fd/%d/%s";
80 /* Buffer for the path name we are going to use. It consists of
81 - the string /proc/self/fd/
82 - the file descriptor number
83 - the file name provided.
84 The final NUL is included in the sizeof. A bit of overhead
85 due to the format elements compensates for possible negative
86 numbers. */
87 size_t buflen = sizeof (procfd) + sizeof (int) * 3 + filelen;
88 buf = alloca (buflen);
90 __snprintf (buf, buflen, procfd, fd, file);
91 file = buf;
94 INTERNAL_SYSCALL_DECL (err);
96 # ifdef __NR_lchmod
97 if (flag & AT_SYMLINK_NOFOLLOW)
98 result = INTERNAL_SYSCALL (lchmod, err, 2, file, mode);
99 else
100 # endif
101 result = INTERNAL_SYSCALL (chmod, err, 2, file, mode);
103 if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (result, err), 0))
105 __atfct_seterrno (INTERNAL_SYSCALL_ERRNO (result, err), fd, buf);
106 result = -1;
109 return result;
110 #endif