mirror of https://git.musl-libc.org/git/musl
Browse Source
it turns out Linux is buggy for faccessat, just like fchmodat: the kernel does not actually take a flags argument. so we're going to have to emulate it there.rs-1.0
1 changed files with 1 additions and 9 deletions
@ -1,18 +1,10 @@ |
|||||
#include <unistd.h> |
#include <unistd.h> |
||||
#include <fcntl.h> |
#include <fcntl.h> |
||||
#include <errno.h> |
|
||||
#include "syscall.h" |
|
||||
#include "libc.h" |
#include "libc.h" |
||||
|
|
||||
int euidaccess(const char *filename, int amode) |
int euidaccess(const char *filename, int amode) |
||||
{ |
{ |
||||
int ret = __syscall(SYS_faccessat, AT_FDCWD, filename, amode, AT_EACCESS); |
return faccessat(AT_FDCWD, filename, amode, AT_EACCESS); |
||||
if (ret != -ENOSYS) return __syscall_ret(ret); |
|
||||
|
|
||||
if (getuid() == geteuid() && getgid() == getegid()) |
|
||||
return syscall(SYS_access, filename, amode); |
|
||||
|
|
||||
return __syscall_ret(-ENOSYS); |
|
||||
} |
} |
||||
|
|
||||
weak_alias(euidaccess, eaccess); |
weak_alias(euidaccess, eaccess); |
||||
|
|||||
Loading…
Reference in new issue