Tagged Questions

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
469 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
509 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: ...
3
votes
1answer
85 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
460 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
976 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 ...
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
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
2answers
885 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
2answers
253 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
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
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
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 ...
0
votes
0answers
72 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
117 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
139 views

How to mmap other process's memory? [closed]

Possible Duplicate: Low-overhead way to access the memory space of a traced process? I can access process's memory with PTRACE_PEEKDATA and PTRACE_POKEDATA, but this is slow and requires ...
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 ...
0
votes
1answer
254 views

ptrace attach to vsftpd hangs

I am trying to ptrace a vsftpd server process on linux to be able to get control whenever vsftpd process makes a system call. I start the vsftpd process and pass this process id as command line to the ...