mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
New internal function __access_noerrno
Implement an internal version of __access called __access_noerrno that avoids setting errno. This is useful to check accessibility of files very early on in process startup i.e. before TLS setup. This allows tunables to replace MALLOC_CHECK_ safely (i.e. check existence of /etc/suid-debug to enable/disable MALLOC_CHECK) and at the same time initialize very early so that it can override IFUNCs. Checked on x86_64. * hurd/hurd.h (__hurd_fail_noerrno): New function. * include/unistd.h [IS_IN (rtld) || !defined SHARED]: Declare __access_noerrno. * io/access.c (__access_noerrno): New function. * sysdeps/mach/hurd/access.c (hurd_fail_seterrno): New function. (hurd_fail_seterrno): Likewise. (access_common): Likewise. (__access_noerrno): Likewise. * sysdeps/nacl/access.c (__access_noerrno): Likewise. * sysdeps/unix/sysv/linux/access.c (__access_noerrno): Likewise. * sysdeps/nacl/nacl-interfaces.h (NACL_CALL_NOERRNO): New macro.
This commit is contained in:
@ -20,6 +20,21 @@
|
||||
#include <unistd.h>
|
||||
#include <sysdep-cancel.h>
|
||||
|
||||
int
|
||||
__access_noerrno (const char *file, int type)
|
||||
{
|
||||
int res;
|
||||
INTERNAL_SYSCALL_DECL (err);
|
||||
#ifdef __NR_access
|
||||
res = INTERNAL_SYSCALL_CALL (access, err, file, type);
|
||||
#else
|
||||
res = INTERNAL_SYSCALL_CALL (faccessat, err, AT_FDCWD, file, type);
|
||||
#endif
|
||||
if (INTERNAL_SYSCALL_ERROR_P (res, err))
|
||||
return INTERNAL_SYSCALL_ERRNO (res, err);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
__access (const char *file, int type)
|
||||
{
|
||||
|
Reference in New Issue
Block a user