Tagged Questions
The ptrace tag has no wiki summary.
8
votes
2answers
702 views
ptrace'ing of parent process
Can child process use the ptrace system call to trace its parent?
Os is linux 2.6
Thanks.
upd1:
I want to trace process1 from "itself". It is impossible, so I do fork and try to do ...
7
votes
6answers
468 views
Low-overhead way to access the memory space of a traced process?
I'm looking for an efficient way to access(for both read and write operations) the memory space of my ptraced child process. The size of blocks being accessed may vary from several bytes up to several ...
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
1answer
182 views
ptrace and threads
I'm working on an linux application incorporating ptrace to observe the threads of another process. When the application I observe forks a child process this already works quite well. By calling ...
4
votes
2answers
507 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
1answer
1k views
Is there something like linux ptrace syscall in Windows XP/2003?
Reading http://stackoverflow.com/questions/864839/monitoring-certain-system-calls-done-by-a-process I'm wondering about a Windows equivalent to the ptrace syscall or a programatically workaround.
I ...
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
84 views
Disabling vsyscalls in Linux
I'm working on a piece of software that monitors other processes' system calls using ptrace(2). Unfortunately most modern operating system implement some kind of fast user-mode syscalls that are ...
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
1answer
422 views
Linux: Executing syscall via ptrace()
Hey :)
I am currently developing a memoryhacking-library for x86/x64 Linux.
The point I struggle is to implement some kind of remote syscall execution.
Here is my code which just crashes the other ...
3
votes
2answers
525 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
459 views
Using ptrace to track all execve() calls across children
I am trying to write a tool on Linux CentOS to track all spawned processes and what is run. In essence, I'm interested in walking all fork/clones and emitting all the command-lines from execve(). ...
3
votes
1answer
321 views
UNIX ptrace() block child's system calls
I am developing a grader for programming contests. Basically, the grader must run the solution program in an 'isolated' process. So, I would like the solution not to call any harming system calls ...
3
votes
2answers
414 views
Using ptrace to write a program supervisor in userspace
I'll looking for advice/resources to write a program that can intercept system calls from a programm to supervise it's filesystem, network, etc access.
The aim of this is to write an online judge, so ...
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 ...
3
votes
3answers
975 views
can you use multiple threads to ptrace an application?
I am writing a GUI oriented debugger which targets Linux primarily, but I plan ports to other OSes in the future. Because the GUI must stay interactive at all times, I have a few threads handling ...
3
votes
1answer
1k views
Is there something like linux ptrace syscall in Windows?
Reading http://stackoverflow.com/questions/864839/monitoring-certain-system-calls-done-by-a-process I'm wondering about a Windows equivalent to the ptrace syscall or a programatically workaround.
2
votes
1answer
70 views
Ptrace single step in the kernel from process context?
I was wondering what happens if from the kernel (Linux in this case) you call ptrace_request with PTRACE_SINGLESTEP in process context (system call, page fault, etc...). Will it single step the user ...
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
2answers
308 views
How can Linux ptrace be unsafe or contain a race condition?
I'd like to implement a sandbox by ptrace()ing a process I start and all its children would create (including grandchildren etc.). The ptrace() parent process, i.e. the supervisor. would be a simple C ...
2
votes
1answer
151 views
Multithreading, Multiprocessing with STOP and Continue Signals
I am working on a project, where i need to get native stack of the Java Application. i am able to achieve this partially. thanks to ptrace/multiprocessing and signals.
on Linux normal java ...
2
votes
1answer
355 views
ptrace'ing multithread application
I have a "debugger"-like application, named hyper-ptrace. It starts user_appl3 which is multithreaded with NPTL.
Main loop of hyper-ptrace is:
wait3(&status, FLAGS, &u);
// find a pid of ...
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
884 views
How to use Ptrace on Linux to print Call Stack of Other Processes of C++
i am working on an application which needs call stack of all executing processes on Linux.
i am trying to use ptrace but not able to go ahead with it because the steps i need to follow in my code are ...
2
votes
1answer
538 views
detect sender of signal (linux, ptrace)
Can I distinguish signal, between delivered directly to a process and delivered via debugger.
Case 1:
$ ./process1
process1 (not ptraced)
//set up handler
alarm(5);
....
//signal is handled ...
2
votes
2answers
485 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
138 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
252 views
How to get a “backtrace” (like gdb) using only ptrace (linux, x86/x86_64)
I want to get a backtrace-like output as gdb does. But I want to do this via ptrace() directly. My platform is Linux, x86; and, later x86_64.
Now I want only to read return addresses from the stack, ...
1
vote
2answers
108 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
148 views
program to monitor read/writes PATH of a program?
I was trying to make a program for a college project, but I got stuck at this:
How will you monitor a program as to what files it writes to or reads from?
I wish to have their path names.
To make ...
1
vote
1answer
172 views
ptrace %edx for sys_open inconsistent
I am trying to get the filename from the sys_open system call using ptrace. I get the filepath pointer, and I am able to get the correct data from that address, however, I need a way to know how much ...
1
vote
1answer
94 views
Any good guides on using PTRACE_SYSEMU?
Does anyone have any good explanations, tutorials, books, or guides on the use of PTRACE_SYSEMU?
1
vote
1answer
105 views
How do I get signal details in debugger while ptrace?
I have a debugger that I am porting over to *bsd from linux. Currently, I am working on the OpenBSD version.
Under certain conditions I would like to know the details of the signal that was ...
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.
1
vote
0answers
115 views
differnce between struct reg and struct user_regs_struc?
What is the difference between struct reg and struct user_regs_struc on Linux 64 bit machine?
1
vote
1answer
261 views
Relation Between Program/Instruction Pointer(RIP) and Base/Frame Pointer(RBP) on 64 bit Linux
i need some help on retrieving Instruction pointers(RIP) of a call stack on Linux 64 bit machine. i can traverse the Stack using ptrace and retrieve all Frame/Base pointer(RBP) values. but as i want ...
1
vote
4answers
270 views
Address of instruction causing SIGSEGV in external program
I want to get address of instruction that causes external program to SIGSEGV. I tried using ptrace for this, but I'm getting EIP from kernel space (probably default signal handler?). How GDB is able ...
1
vote
2answers
450 views
How can we get Function name from Spack Pointer(reg/SP) on Linux?
i am using ptrace to get information related to Callstack on Linux.
i can retrieve Spack Pointer to my stack using register returned by ptarces.
but using this stack pointer how can i retrieve ...
1
vote
2answers
430 views
Looking for a way to trap CPUID instructions
I am looking for a neat way to trap and fiddle with the CPUID instruction of Linux processes. Played around with ptrace() and patching all cpuid opcodes in all executable mmap'ed regions that are ...
1
vote
4answers
312 views
Cross platform file-access tracking
I'd like to be able to track file read/writes of specific program invocations. No information about the actual transactions is required, just the file names involved.
Is there a cross platform ...
0
votes
0answers
71 views
Ptrace sigtrap when doing singlestep and calling system call
I am writing application that uses ptrace's singlestepping. In general this works, but I have one question. This is what I do:
from waitpid I know that traced process has stopped because signal was ...
0
votes
2answers
82 views
Single step a process by one assembly instruction
When you execute a single step operation using ptrace does the process do one "line" of code or does it do one line of assembly instead. If it's the former case is there a way to step a process in ...
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
37 views
How to portably determine syscall arguments with ptrace?
I'm writing a sandbox utility that will be used to execute and monitor a child process in a controlled environment. It should terminate the child process immediately if the child process attempts to ...
0
votes
0answers
84 views
Process tracing using ptrace
Can anyone please tell me is it possible to pass signals in PTRACE_SINGLESTEP? Here is what i was trying to do -
tracer Prog -
1. Get the signal info from PTRACE_GETSIGINFO
2. Pass the signal ...