2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / fxstatat64.c
blobcb932b8e59d707b46689b457e31fa45ab56c5a42
1 /* Copyright (C) 2005,2006 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 #include <errno.h>
20 #include <fcntl.h>
21 #include <stddef.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <sys/stat.h>
25 #include <kernel_stat.h>
27 #include <sysdep.h>
28 #include <sys/syscall.h>
29 #include <bp-checks.h>
31 #include <kernel-features.h>
33 #if __ASSUME_STAT64_SYSCALL == 0
34 # include <xstatconv.h>
35 #endif
37 #ifdef __NR_stat64
38 # if __ASSUME_STAT64_SYSCALL == 0
39 /* The variable is shared between all wrappers around *stat64 calls.
40 This is the definition. */
41 extern int __have_no_stat64;
42 # endif
43 #endif
45 /* Get information about the file NAME in BUF. */
47 int
48 __fxstatat64 (int vers, int fd, const char *file, struct stat64 *st, int flag)
50 if (__builtin_expect (vers != _STAT_VER_LINUX, 0))
52 __set_errno (EINVAL);
53 return -1;
56 int result;
57 INTERNAL_SYSCALL_DECL (err);
59 #ifdef __NR_fstatat64
60 # ifndef __ASSUME_ATFCTS
61 if (__have_atfcts >= 0)
62 # endif
64 result = INTERNAL_SYSCALL (fstatat64, err, 4, fd, file, st, flag);
65 # ifndef __ASSUME_ATFCTS
66 if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (result, err), 1)
67 && INTERNAL_SYSCALL_ERRNO (result, err) == ENOSYS)
68 __have_atfcts = -1;
69 else
70 # endif
71 if (!__builtin_expect (INTERNAL_SYSCALL_ERROR_P (result, err), 1))
72 return 0;
73 else
75 __set_errno (INTERNAL_SYSCALL_ERRNO (result, err));
76 return -1;
79 #endif
81 #ifndef __ASSUME_ATFCTS
82 if (flag & ~AT_SYMLINK_NOFOLLOW)
84 __set_errno (EINVAL);
85 return -1;
88 char *buf = NULL;
90 if (fd != AT_FDCWD && file[0] != '/')
92 size_t filelen = strlen (file);
93 static const char procfd[] = "/proc/self/fd/%d/%s";
94 /* Buffer for the path name we are going to use. It consists of
95 - the string /proc/self/fd/
96 - the file descriptor number
97 - the file name provided.
98 The final NUL is included in the sizeof. A bit of overhead
99 due to the format elements compensates for possible negative
100 numbers. */
101 size_t buflen = sizeof (procfd) + sizeof (int) * 3 + filelen;
102 buf = alloca (buflen);
104 __snprintf (buf, buflen, procfd, fd, file);
105 file = buf;
108 # if __ASSUME_STAT64_SYSCALL > 0
109 if (flag & AT_SYMLINK_NOFOLLOW)
110 result = INTERNAL_SYSCALL (lstat64, err, 2, CHECK_STRING (file),
111 CHECK_1 (st));
112 else
113 result = INTERNAL_SYSCALL (stat64, err, 2, CHECK_STRING (file),
114 CHECK_1 (st));
115 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
117 # if defined _HAVE_STAT64___ST_INO && __ASSUME_ST_INO_64_BIT == 0
118 if (st->__st_ino != (__ino_t) st->st_ino)
119 st->st_ino = st->__st_ino;
120 # endif
121 return result;
123 # else
124 struct kernel_stat kst;
125 # ifdef __NR_stat64
126 if (! __have_no_stat64)
128 if (flag & AT_SYMLINK_NOFOLLOW)
129 result = INTERNAL_SYSCALL (lstat64, err, 2, CHECK_STRING (file),
130 CHECK_1 (st));
131 else
132 result = INTERNAL_SYSCALL (stat64, err, 2, CHECK_STRING (file),
133 CHECK_1 (st));
135 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
137 # if defined _HAVE_STAT64___ST_INO && __ASSUME_ST_INO_64_BIT == 0
138 if (st->__st_ino != (__ino_t) st->st_ino)
139 st->st_ino = st->__st_ino;
140 # endif
141 return result;
143 if (INTERNAL_SYSCALL_ERRNO (result, err) != ENOSYS)
144 goto fail;
146 __have_no_stat64 = 1;
148 # endif
150 if (flag & AT_SYMLINK_NOFOLLOW)
151 result = INTERNAL_SYSCALL (lstat, err, 2, CHECK_STRING (file),
152 __ptrvalue (&kst));
153 else
154 result = INTERNAL_SYSCALL (stat, err, 2, CHECK_STRING (file),
155 __ptrvalue (&kst));
157 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
158 return __xstat64_conv (vers, &kst, st);
160 fail:
161 # endif
162 __atfct_seterrno (INTERNAL_SYSCALL_ERRNO (result, err), fd, buf);
164 return -1;
165 #endif
167 libc_hidden_def (__fxstatat64)