* sysdeps/unix/sysv/linux/Versions: Move sync_file_range to
[glibc.git] / sysdeps / unix / sysv / linux / fxstatat.c
blobc1c416abd7d7a368059abe68e8e8c0735ce35e38
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 /* 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>
34 #include <xstatconv.h>
36 /* Get information about the file NAME in BUF. */
37 int
38 __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag)
40 int result;
41 INTERNAL_SYSCALL_DECL (err);
42 #ifdef STAT_IS_KERNEL_STAT
43 # define kst (*st)
44 #else
45 struct kernel_stat kst;
46 #endif
48 #ifdef __NR_newfstatat
49 # ifndef __ASSUME_ATFCTS
50 if (__have_atfcts >= 0)
51 # endif
53 result = INTERNAL_SYSCALL (newfstatat, err, 4, fd, file, &kst, flag);
54 # ifndef __ASSUME_ATFCTS
55 if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (result, err), 1)
56 && INTERNAL_SYSCALL_ERRNO (result, err) == ENOSYS)
57 __have_atfcts = -1;
58 else
59 # endif
60 if (!__builtin_expect (INTERNAL_SYSCALL_ERROR_P (result, err), 1))
62 #ifdef STAT_IS_KERNEL_STAT
63 return 0;
64 #else
65 return __xstat_conv (vers, &kst, st);
66 #endif
68 else
70 __set_errno (INTERNAL_SYSCALL_ERRNO (result, err));
71 return -1;
74 #endif
76 if (flag & ~AT_SYMLINK_NOFOLLOW)
78 __set_errno (EINVAL);
79 return -1;
82 char *buf = NULL;
84 if (fd != AT_FDCWD && file[0] != '/')
86 size_t filelen = strlen (file);
87 static const char procfd[] = "/proc/self/fd/%d/%s";
88 /* Buffer for the path name we are going to use. It consists of
89 - the string /proc/self/fd/
90 - the file descriptor number
91 - the file name provided.
92 The final NUL is included in the sizeof. A bit of overhead
93 due to the format elements compensates for possible negative
94 numbers. */
95 size_t buflen = sizeof (procfd) + sizeof (int) * 3 + filelen;
96 buf = alloca (buflen);
98 __snprintf (buf, buflen, procfd, fd, file);
99 file = buf;
102 if (vers == _STAT_VER_KERNEL)
104 if (flag & AT_SYMLINK_NOFOLLOW)
105 result = INTERNAL_SYSCALL (lstat, err, 2, CHECK_STRING (file),
106 CHECK_1 ((struct kernel_stat *) st));
107 else
108 result = INTERNAL_SYSCALL (stat, err, 2, CHECK_STRING (file),
109 CHECK_1 ((struct kernel_stat *) st));
111 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
112 return result;
114 #ifdef STAT_IS_KERNEL_STAT
115 else
117 __set_errno (EINVAL);
118 return -1;
120 #else
121 if (flag & AT_SYMLINK_NOFOLLOW)
122 result = INTERNAL_SYSCALL (lstat, err, 2, CHECK_STRING (file),
123 __ptrvalue (&kst));
124 else
125 result = INTERNAL_SYSCALL (stat, err, 2, CHECK_STRING (file),
126 __ptrvalue (&kst));
128 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
129 return __xstat_conv (vers, &kst, st);
130 #endif
132 __atfct_seterrno (INTERNAL_SYSCALL_ERRNO (result, err), fd, buf);
134 return -1;
136 libc_hidden_def (__fxstatat)
137 #ifdef XSTAT_IS_XSTAT64
138 # undef __fxstatat64
139 strong_alias (__fxstatat, __fxstatat64);
140 libc_hidden_def (__fxstatat64)
141 #endif