Ben öğretici here takip ve (temelde vb rax için eax değiştirin) böylece derler x86-64
için biraz modifiye ediyorum:x86-64 üzerinde ptrace ile nasıl oynanır?
#include <sys/ptrace.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <sys/user.h>
#include <sys/reg.h>
#include <unistd.h>
int main()
{ pid_t child;
long orig_eax;
child = fork();
if(child == 0) {
ptrace(PTRACE_TRACEME, 0, NULL, NULL);
execl("/bin/ls", "ls", NULL);
}
else {
wait(NULL);
orig_eax = ptrace(PTRACE_PEEKUSER,
child, 4 * ORIG_RAX,
NULL);
printf("The child made a "
"system call %ld\n", orig_eax);
ptrace(PTRACE_CONT, child, NULL, NULL);
}
return 0;
}
Ama aslında beklendiği gibi çalışmıyor, her zaman diyor :
The child made a system call -1
Kodun nesi yanlış?
= 8 * ORIG_RAX
8 = sizeof (uzun) ... –