Tagged Questions
6
votes
1answer
82 views
Ignoring a system call
I know that you can trap a system call by using ptrace. But what I wanna do is to ignore a system call. So is that possible for ptrace to trap a system call, see its number and if the number is of a ...
4
votes
2answers
506 views
Counting machine instructions of a process using PTRACE_SINGLESTEP
on a Linux machine, I am using ptrace with the PTRACE_SINGLESTEP parameter to count the number of machine instructions of a program. I followed this article: ...
4
votes
5answers
3k views
Reading Other Process' Memory in OS X / BSD
I've been trying to understand how to read the memory of other processes on Mac OS X, but I'm not having much luck. I've seen many examples online using ptrace with PEEKDATA and such, however it ...
3
votes
1answer
103 views
How to play with ptrace on x86-64?
I'm following the tutorial here, and modified a little for x86-64(basically replace eax to rax,etc) so that it compiles:
#include <sys/ptrace.h>
#include <sys/types.h>
#include ...
3
votes
2answers
523 views
How to ptrace a multi-threaded application?
EDIT (MADE PROGRESS):
I am trying to ptrace a vsftpd daemon. I have the following code which is attaching to the daemon. Then it successfully displays the PID of the first spawned process. However, ...
3
votes
2answers
372 views
Stack Walk on linux using ptrace
Following is my requirement.
while process A is running.
attach Process A from B with PTRACE_ATTACH.
Start a Loop
Stop Process A
read registers
Resume Process A
sleep(1)
end loop
detach A
i am ...
2
votes
1answer
109 views
getting and settings CPU registers of multiple threads using ptrace
I am interested in running a multithreaded application in the supervision of another monitoring process. The monitoring process should be able to get and set CPU registers of all the threads in the ...
2
votes
1answer
290 views
Using ptrace to generate a stack dump
I am compiling C++ on *nix and I would like to generate a stack dump
a) at an arbitrary point in the program,
b) during any signal, particularly during SIGSEGV.
Google tells me that ptrace is ...
2
votes
2answers
484 views
calling ptrace inside a ptraced Linux process
Someone added to the Wikipedia "ptrace" article claiming that, on Linux, a ptraced process couldn't itself ptrace another process. I'm trying to determine if (and if so why) that's the case. Below ...
1
vote
1answer
66 views
Ptrace mprotect debugging trouble
I'm having trouble with an research project.
What i am trying to is to use ptrace to watch the execution of a target process.
With the help of ptrace i am injecting a mprotect syscall into the targets ...
1
vote
1answer
131 views
Why doesn't ptrace SINGLESTEP work properly?
I am trying to trace a little program using ptrace API. I figured out that every time the tracer is run, it produces bad results. This is the disassembly of short program that I want to trace:
$ ...
1
vote
2answers
107 views
ptrace in solaris
I'm trying to port a program that uses ptrace from linux to solaris, but no luck, as it complains that sys/ptrace.h is not found. Any idea how to port it?
1
vote
2answers
144 views
Stopping a child process at start
I'm trying to implement a checkpoint function to checkpoint a process. I do it by forking a child process. However I need to pause the child process at start. Later on, we can restart from a ...
1
vote
1answer
153 views
Difference between pt_regs and user_struct_regs
I have been messing around with ptrace and registers a lot lately and I was wondering if there is a difference between pt_regs and user_struct_regs as far as content goes. More specifically, do they ...
1
vote
2answers
122 views
PTRACE Programming on HP-UX
Can anyone please give me any good link where i can get some info on how to program with ptrace for HP-UX.
Please don't post links for linux ptrace.
0
votes
0answers
75 views
How to monitor a java/python program with sandbox(libsandbox by LIU YU)?
I am now reading the source code of the libsandbox(http://sourceforge.net/projects/libsandbox/) by LIU YU(http://openjudge.net/~liuyu/) used in onlinejudge system.
I don't know how to monitor a ...
0
votes
3answers
95 views
Why this ptrace programe always saying syscall returned -38?
It's the same as this one except that I'm running execl("/bin/ls", "ls", NULL);.
The result is obviously wrong as every syscall returns with -38:
[user@ test]# ./test_trace
syscall 59 called with ...
0
votes
1answer
116 views
Why WIFSIGNALED(status) fail to detect signals while tracing a process with ptrace?
I am using ptrace to trace a child process. It works perfectly well when the child process exit normally. But if it exit abnormally, the program get into an infinite loop in-spite of using the macro ...
0
votes
0answers
35 views
PTRACE_EXIT_EVENT behavior with multithreaded process
If a multithreaded process is being traced using ptrace with the ptrace option PTRACE_O_TRACEEXIT set; how does the tracing process determine which thread has exited upon receiving a ...
0
votes
1answer
198 views
How to trace a program execution with ptrace?
I've been trying to use the system call "ptrace" (using the PTRACE_SINGLESTEP macro) to trace the execution of a simple application.
While recording the execution of the program I would like to skip ...
-1
votes
2answers
89 views
Rename ptrace funct something else? How?
In code, I'd use
#include <sys/types.h>
#include <sys/ptrace.h>
ptrace(PT_DENY_ATTACH, 0, 0, 0);
to deny attaching to the process. I was wondering if there was a way to rename ...