Add INLINE_SYSCALL_RETURN/INLINE_SYSCALL_ERROR_RETURN
[glibc.git] / sysdeps / unix / sysv / linux / faccessat.c
blob6a0b1b7018b701ed06d6f236b8054c0830fb58ad
1 /* Test for access to file, relative to open directory. Linux version.
2 Copyright (C) 2006-2015 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 <sysdep.h>
30 int
31 faccessat (fd, file, mode, flag)
32 int fd;
33 const char *file;
34 int mode;
35 int flag;
37 if (flag & ~(AT_SYMLINK_NOFOLLOW | AT_EACCESS))
38 return INLINE_SYSCALL_ERROR_RETURN (-EINVAL, int, -1);
40 if ((flag == 0 || ((flag & ~AT_EACCESS) == 0 && ! __libc_enable_secure)))
41 return INLINE_SYSCALL_RETURN (faccessat, 3, int, fd, file, mode);
43 struct stat64 stats;
44 if (__fxstatat64 (_STAT_VER, fd, file, &stats, flag & AT_SYMLINK_NOFOLLOW))
45 return -1;
47 mode &= (X_OK | W_OK | R_OK); /* Clear any bogus bits. */
48 #if R_OK != S_IROTH || W_OK != S_IWOTH || X_OK != S_IXOTH
49 # error Oops, portability assumptions incorrect.
50 #endif
52 if (mode == F_OK)
53 return 0; /* The file exists. */
55 uid_t uid = (flag & AT_EACCESS) ? __geteuid () : __getuid ();
57 /* The super-user can read and write any file, and execute any file
58 that anyone can execute. */
59 if (uid == 0 && ((mode & X_OK) == 0
60 || (stats.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))))
61 return 0;
63 int granted = (uid == stats.st_uid
64 ? (unsigned int) (stats.st_mode & (mode << 6)) >> 6
65 : (stats.st_gid == ((flag & AT_EACCESS)
66 ? __getegid () : __getgid ())
67 || __group_member (stats.st_gid))
68 ? (unsigned int) (stats.st_mode & (mode << 3)) >> 3
69 : (stats.st_mode & mode));
71 if (granted == mode)
72 return 0;
74 return INLINE_SYSCALL_ERROR_RETURN (-EACCES, int, -1);