1 /* Copyright (C) 2005, 2006, 2009 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
19 #define __fxstatat64 __fxstatat64_disable
26 #include <kernel_stat.h>
28 #include <sys/syscall.h>
29 #include <xstatconv.h>
33 #ifdef __ASSUME_ATFCTS
34 # define __have_atfcts 1
36 #ifdef __ASSUME_STAT64_SYSCALL
37 # define __libc_missing_axp_stat64 0
40 /* Get information about the file NAME in BUF. */
42 __fxstatat (int vers
, int fd
, const char *file
, struct stat
*st
, int flag
)
44 INTERNAL_SYSCALL_DECL (err
);
45 int result
, errno_out
;
47 /* ??? The __fxstatat entry point is new enough that it must be using
48 vers == _STAT_VER_KERNEL64. For the benefit of dl-fxstatat64.c, we
49 cannot actually check this, lest the compiler not optimize the rest
50 of the function away. */
53 if (__have_atfcts
>= 0)
55 result
= INTERNAL_SYSCALL (fstatat64
, err
, 4, fd
, file
, st
, flag
);
56 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result
, err
), 1))
58 errno_out
= INTERNAL_SYSCALL_ERRNO (result
, err
);
59 #ifndef __ASSUME_ATFCTS
60 if (errno_out
== ENOSYS
)
65 __set_errno (errno_out
);
69 #endif /* __NR_fstatat64 */
71 if (flag
& ~AT_SYMLINK_NOFOLLOW
)
79 if (fd
!= AT_FDCWD
&& file
[0] != '/')
81 size_t filelen
= strlen (file
);
82 if (__builtin_expect (filelen
== 0, 0))
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
96 size_t buflen
= sizeof (procfd
) + sizeof (int) * 3 + filelen
;
97 buf
= alloca (buflen
);
99 __snprintf (buf
, buflen
, procfd
, fd
, file
);
104 if (!__libc_missing_axp_stat64
)
106 if (flag
& AT_SYMLINK_NOFOLLOW
)
107 result
= INTERNAL_SYSCALL (lstat64
, err
, 2, file
, st
);
109 result
= INTERNAL_SYSCALL (stat64
, err
, 2, file
, st
);
111 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result
, err
), 1))
113 errno_out
= INTERNAL_SYSCALL_ERRNO (result
, err
);
114 # if __ASSUME_STAT64_SYSCALL == 0
115 if (errno_out
== ENOSYS
)
116 __libc_missing_axp_stat64
= 1;
121 #endif /* __NR_stat64 */
123 struct kernel_stat kst
;
125 if (flag
& AT_SYMLINK_NOFOLLOW
)
126 result
= INTERNAL_SYSCALL (lstat
, err
, 2, file
, &kst
);
128 result
= INTERNAL_SYSCALL (stat
, err
, 2, file
, &kst
);
130 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result
, err
), 1))
131 return __xstat_conv (vers
, &kst
, st
);
132 errno_out
= INTERNAL_SYSCALL_ERRNO (result
, err
);
135 __atfct_seterrno (errno_out
, fd
, buf
);
139 libc_hidden_def (__fxstatat
)
140 strong_alias (__fxstatat
, __fxstatat64
);
141 libc_hidden_ver(__fxstatat
, __fxstatat64
);