don't rely on faccessat2 being available

This commit is contained in:
nakst 2021-12-14 11:20:52 +00:00
parent ed7b336757
commit 9a5f157da0
1 changed files with 2 additions and 1 deletions

View File

@ -115,7 +115,8 @@ int main(int argc, char **argv) {
if (ReplaceString(pid, registers.rsp, (uintptr_t *) &registers.rdi)) {
ptrace(PTRACE_SETREGS, pid, 0, &registers);
}
} else if (registers.orig_rax == SYS_faccessat2
} else if (registers.orig_rax == 439 /* faccessat2 */
|| registers.orig_rax == SYS_faccessat
|| registers.orig_rax == SYS_newfstatat
|| registers.orig_rax == SYS_openat) {
if (ReplaceString(pid, registers.rsp, (uintptr_t *) &registers.rsi)) {