2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / fxstatat.c
blob1b9add40d7a72450c7edb51818b980c1394d9130
1 /* Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library 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 GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 /* Ho hum, if fxstatat == fxstatat64 we must get rid of the prototype or gcc
20 will complain since they don't strictly match. */
21 #define __fxstatat64 __fxstatat64_disable
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <stddef.h>
26 #include <stdio.h>
27 #include <sys/stat.h>
28 #include <kernel_stat.h>
30 #include <sysdep.h>
31 #include <sys/syscall.h>
32 #include <bp-checks.h>
33 #include <kernel-features.h>
35 #include <xstatconv.h>
37 /* Get information about the file NAME in BUF. */
38 int
39 __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag)
41 int result;
42 INTERNAL_SYSCALL_DECL (err);
43 #ifdef STAT_IS_KERNEL_STAT
44 # define kst (*st)
45 #else
46 struct kernel_stat kst;
47 #endif
49 #ifdef __NR_newfstatat
50 # ifndef __ASSUME_ATFCTS
51 if (__have_atfcts >= 0)
52 # endif
54 result = INTERNAL_SYSCALL (newfstatat, err, 4, fd, file, &kst, flag);
55 # ifndef __ASSUME_ATFCTS
56 if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (result, err), 1)
57 && INTERNAL_SYSCALL_ERRNO (result, err) == ENOSYS)
58 __have_atfcts = -1;
59 else
60 # endif
61 if (!__builtin_expect (INTERNAL_SYSCALL_ERROR_P (result, err), 1))
63 #ifdef STAT_IS_KERNEL_STAT
64 return 0;
65 #else
66 return __xstat_conv (vers, &kst, st);
67 #endif
69 else
71 __set_errno (INTERNAL_SYSCALL_ERRNO (result, err));
72 return -1;
75 #endif
77 if (flag & ~AT_SYMLINK_NOFOLLOW)
79 __set_errno (EINVAL);
80 return -1;
83 char *buf = NULL;
85 if (fd != AT_FDCWD && file[0] != '/')
87 size_t filelen = strlen (file);
88 static const char procfd[] = "/proc/self/fd/%d/%s";
89 /* Buffer for the path name we are going to use. It consists of
90 - the string /proc/self/fd/
91 - the file descriptor number
92 - the file name provided.
93 The final NUL is included in the sizeof. A bit of overhead
94 due to the format elements compensates for possible negative
95 numbers. */
96 size_t buflen = sizeof (procfd) + sizeof (int) * 3 + filelen;
97 buf = alloca (buflen);
99 __snprintf (buf, buflen, procfd, fd, file);
100 file = buf;
103 if (vers == _STAT_VER_KERNEL)
105 if (flag & AT_SYMLINK_NOFOLLOW)
106 result = INTERNAL_SYSCALL (lstat, err, 2, CHECK_STRING (file),
107 CHECK_1 ((struct kernel_stat *) st));
108 else
109 result = INTERNAL_SYSCALL (stat, err, 2, CHECK_STRING (file),
110 CHECK_1 ((struct kernel_stat *) st));
112 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
113 return result;
115 #ifdef STAT_IS_KERNEL_STAT
116 else
118 __set_errno (EINVAL);
119 return -1;
121 #else
122 if (flag & AT_SYMLINK_NOFOLLOW)
123 result = INTERNAL_SYSCALL (lstat, err, 2, CHECK_STRING (file),
124 __ptrvalue (&kst));
125 else
126 result = INTERNAL_SYSCALL (stat, err, 2, CHECK_STRING (file),
127 __ptrvalue (&kst));
129 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
130 return __xstat_conv (vers, &kst, st);
131 #endif
133 __atfct_seterrno (INTERNAL_SYSCALL_ERRNO (result, err), fd, buf);
135 return -1;
137 libc_hidden_def (__fxstatat)
138 #ifdef XSTAT_IS_XSTAT64
139 # undef __fxstatat64
140 strong_alias (__fxstatat, __fxstatat64);
141 libc_hidden_def (__fxstatat64)
142 #endif