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
25 #include <kernel_stat.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>
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
;
45 /* Get information about the file NAME in BUF. */
48 __fxstatat64 (int vers
, int fd
, const char *file
, struct stat64
*st
, int flag
)
50 if (__builtin_expect (vers
!= _STAT_VER_LINUX
, 0))
57 INTERNAL_SYSCALL_DECL (err
);
60 # ifndef __ASSUME_ATFCTS
61 if (__have_atfcts
>= 0)
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
)
71 if (!__builtin_expect (INTERNAL_SYSCALL_ERROR_P (result
, err
), 1))
75 __set_errno (INTERNAL_SYSCALL_ERRNO (result
, err
));
81 #ifndef __ASSUME_ATFCTS
82 if (flag
& ~AT_SYMLINK_NOFOLLOW
)
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
101 size_t buflen
= sizeof (procfd
) + sizeof (int) * 3 + filelen
;
102 buf
= alloca (buflen
);
104 __snprintf (buf
, buflen
, procfd
, fd
, file
);
108 # if __ASSUME_STAT64_SYSCALL > 0
109 if (flag
& AT_SYMLINK_NOFOLLOW
)
110 result
= INTERNAL_SYSCALL (lstat64
, err
, 2, CHECK_STRING (file
),
113 result
= INTERNAL_SYSCALL (stat64
, err
, 2, CHECK_STRING (file
),
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
;
124 struct kernel_stat kst
;
126 if (! __have_no_stat64
)
128 if (flag
& AT_SYMLINK_NOFOLLOW
)
129 result
= INTERNAL_SYSCALL (lstat64
, err
, 2, CHECK_STRING (file
),
132 result
= INTERNAL_SYSCALL (stat64
, err
, 2, CHECK_STRING (file
),
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
;
143 if (INTERNAL_SYSCALL_ERRNO (result
, err
) != ENOSYS
)
146 __have_no_stat64
= 1;
150 if (flag
& AT_SYMLINK_NOFOLLOW
)
151 result
= INTERNAL_SYSCALL (lstat
, err
, 2, CHECK_STRING (file
),
154 result
= INTERNAL_SYSCALL (stat
, err
, 2, CHECK_STRING (file
),
157 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result
, err
), 1))
158 return __xstat64_conv (vers
, &kst
, st
);
162 __atfct_seterrno (INTERNAL_SYSCALL_ERRNO (result
, err
), fd
, buf
);
167 libc_hidden_def (__fxstatat64
)