Playing with ptrace, Part I
- « first
- ‹ previous
- 1
- 2
- 3
- 4
Today’s modular x86 servers are compute-centric, designed as a least common denominator to support a wide range of IT workloads. Those generic, virtualized IT workloads have much different resource optimization requirements than hyperscale and cloud applications. They have resulted in a “one size fits all” enterprise IT architecture that is not optimized for a specific set of IT workloads, and especially not emerging hyperscale workloads, such as web applications, big data, and object storage. In this report, you will learn how shifting the focus from traditional compute-centric IT architectures to an innovative disaggregated fabric-based architecture can optimize and scale your data center.
Sponsored by AMD
Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6
Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.
Learn more about catching the bad guy in this free white paper.
Sponsored by DLT Solutions
Free Webinar: Linux Backup and Recovery
Most companies incorporate backup procedures for critical data, which can be restored quickly if a loss occurs. However, fewer companies are prepared for catastrophic system failures, in which they lose all data, the entire operating system, applications, settings, patches and more, reducing their system(s) to “bare metal.” After all, before data can be restored to a system, there must be a system to restore it to.
In this one hour webinar, learn how to enhance your existing backup strategies for better disaster recovery preparedness using Storix System Backup Administrator (SBAdmin), a highly flexible bare-metal recovery solution for UNIX and Linux systems.
| Making Linux and Android Get Along (It's Not as Hard as It Sounds) | May 16, 2013 |
| Drupal Is a Framework: Why Everyone Needs to Understand This | May 15, 2013 |
| Home, My Backup Data Center | May 13, 2013 |
| Non-Linux FOSS: Seashore | May 10, 2013 |
| Trying to Tame the Tablet | May 08, 2013 |
| Dart: a New Web Programming Experience | May 07, 2013 |
- RSS Feeds
- New Products
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- Drupal Is a Framework: Why Everyone Needs to Understand This
- A Topic for Discussion - Open Source Feature-Richness?
- Home, My Backup Data Center
- Validate an E-Mail Address with PHP, the Right Way
- New Products
- Developer Poll
- Trying to Tame the Tablet
- not living upto the mobile revolution
26 min 50 sec ago - Deceptive Advertising and
1 hour 2 min ago - Let\'s declare that you have
1 hour 3 min ago - Alterations in Contest Due
1 hour 4 min ago - At a numbers mindset, your
1 hour 5 min ago - Do not get Just Almost any
1 hour 9 min ago - A fantastic rule-of-thumb to
1 hour 10 min ago - Keren mastah..
Penting,
2 hours 8 min ago - mini tablet compare
3 hours 27 min ago - Looking Good
7 hours 9 sec ago




Comments
Ptrace for multi-thread application
After struggled a long time, I got a true way to make my ptrace worked correct with multi-thread application. Here're my sample codes, hope it can help others whom have the same confusion.
char trapCode[] = {0, 0, 0, 0};
int status;
ptrace(PTRACE_ATTACH, childProcess, NULL, NULL); //childProcess is the main thread
wait(NULL);
printf("\nchild %d created\n", childProcess);
fflush(stdout);
long ptraceOption = PTRACE_O_TRACECLONE;
ptrace(PTRACE_SETOPTIONS, childProcess, NULL, ptraceOption);
struct user_regs_struct regs;
for(unsigned int i = 0; i < m_breakPoints.size(); i++)
{
BreakPoint_Info breakPointInfo = m_breakPoints[i];
if(!breakPointInfo.m_enabled)
continue;
unsigned int index = breakPointInfo.m_checkPointIndex;
if(m_bytesBackup.find(m_checkPoints[index].m_offset) != m_bytesBackup.end())
continue;
unsigned long readAddr = m_checkPoints[index].m_offset;
One_Byte_With_Result *oneByte = new One_Byte_With_Result;
getData(childProcess, readAddr, trapCode, 4);
oneByte->m_char = trapCode[0];
trapCode[0] = 0xcc;
putData(childProcess, readAddr, trapCode, 4);
m_bytesBackup.insert(std::make_pair(m_checkPoints[index].m_offset, oneByte));
}
std::set allThreads;
std::set::iterator allThreadsIter;
allThreads.insert(childProcess);
int rec = ptrace(PTRACE_CONT, childProcess, NULL, NULL);
while(true)
{
pid_t child_waited = waitpid(-1, &status, __WALL);
if(child_waited == -1)
break;
if(allThreads.find(child_waited) == allThreads.end())
{
printf("\nreceived unknown child %d\t", child_waited);
break;
}
if(WIFSTOPPED(status) && WSTOPSIG(status) == SIGTRAP)
{
pid_t new_child;
if(((status >> 16) & 0xffff) == PTRACE_EVENT_CLONE)
{
if(ptrace(PTRACE_GETEVENTMSG, child_waited, 0, &new_child) != -1)
{
allThreads.insert(new_child);
ptrace(PTRACE_CONT, new_child, 0, 0);
printf("\nchild %d created\t", new_child);
}
ptrace(PTRACE_CONT, child_waited, 0, 0);
continue;
}
}
if(WIFEXITED(status))
{
allThreads.erase(child_waited);
printf("\nchild %d exited with status %d\t", child_waited, WEXITSTATUS(status));
if(allThreads.size() == 0)
break;
}
else if(WIFSIGNALED(status))
{
allThreads.erase(child_waited);
printf("\nchild %d killed by signal %d\t", child_waited, WTERMSIG(status));
if(allThreads.size() == 0)
break;
}
else if(WIFSTOPPED(status))
{
int stopCode = WSTOPSIG(status);
if(stopCode == SIGTRAP)
{
ptrace(PTRACE_GETREGS, child_waited, NULL, ®s);
unsigned long currentEip = regs.eip;
//printf("%d\t%08x\n", child_waited, currentEip);
Address_Bytes_Map::iterator iter = m_bytesBackup.find(currentEip - 1);
if(iter != m_bytesBackup.end())
{
iter->second->m_result = true;
regs.eip = regs.eip - 1;
getData(child_waited, regs.eip, trapCode, 4);
trapCode[0] = iter->second->m_char;
putData(child_waited, regs.eip, trapCode, 4);
rec = ptrace(PTRACE_SETREGS, child_waited, NULL, ®s);
}
}
}
rec = ptrace(PTRACE_CONT, child_waited, 1, NULL);
continue;
}
Breakpoint at line number
Karan Verma asked how to put a breakpoint at a particular line number. This is exactly what a debugger does.
There are many nuances and details, but I'll simplify this to the bare minimum:
1) Find where the program is loaded in memory.
2) Read the executable and locate the debug data which corresponds to the source file containing the line at which you want to place the breakpoint.
3) Interpret the line number table in the debug data to locate the address which corresponds to the desired line.
4) Adjust the address from (3) to make it correspond with (1) if necessary.
5) Copy and save the original instruction at the breakpoint address.
6) Write the breakpoint instruction at the breakpoint address
Naturally, this is usually done when the child process is stopped. After inserting the breakpoint, the child is allowed to run.
When the breakpoint is executed, the child process will stop and the parent will receive a signal. The parent process needs to replace the breakpoint instruction the original instruction before it can allow the child process to continue.
GDB and LLDB are open source debuggers which give examples of how this is done. Reading GDB is not for the faint of heart -- there's a lot of complexity in handling many different object file formats and many different target architectures.
Michael Eager, Consultant, Embedded Systems, Compilers, Debuggers
Walking the call stack
Sandeep mentioned wanting to use ptrace() to walk the call stack.
Ptrace() provides access to the memory and registers of a child process. It doesn't tell you how that memory is organized.
Information on how the stack is organized is usually contained in the ABI (Application Binary Interface) for each processor. DWARF debugging information (see dwarfstd.org) Call Frame Information (CFI) describes where each call has saved registers.
If you want to write a routine which walks the call stack, I suggest that you start with one which will walk the stack in the current process and later convert it to accessing a child process. The first step is to find the start of the current stack frame, then find the previous frame.
Michael Eager, Consultant, Embedded Systems, Compilers, Debuggers
Answer: Where is ORIG_EAX?
ORIG_EAX is in . Replace with this path. (Oh, and add #include to avoid compiler complaints about printf definition conflicts.)
Michael Eager, Consultant, Embedded Systems, Compilers, Debuggers
Answer: Where is ORIG_EAX?
ORIG_EAX is in . Replace with this path. (Oh, and add #include to avoid compiler complaints about printf definition conflicts.)
Michael Eager, Consultant, Embedded Systems, Compilers, Debuggers
ptrace multi thread application
This article helps me a lot. I'm trying to create a line coverage tool using ptrace.
One problem is ptrace only resolve single thread, and I don't know how to deal with multi thread application.
I set option to catch clone event, it can help me to find all lwp's pid.
I also try to make all thread continue, but it seems only child thread will go on until sleep. The parent thread has no affect on continue command, /proc//status shows it in "tracing stop".
Could you tell me how to make all thread continue? (I have restore the breakpoint in runtime memory)
Thanks.
Pradeep, this example sucks!
This example is useless. The author try to impress with complicated function calls which are absolutely useless.
Joe
Sounds to me like your
Sounds to me like your frustrated with your incompetence
Compilation Errors for some constants
hi,
i am getting Compilation Errors for few constants, like "ORIG_EAX".
it is probably in User.h. but when i search for user.h, i dont fid it declared there.
can i define these variables to some value from my code? which values should i assign and what is the significance of those?
thanks.
Excellent article
Thanks Pradeep, great intro to ptrace().
I've used strace() for debugging for a couple of years and never knew this was what it used; I'm hoping to create a simulator using ptrace() soon for automatic integration testing of an embedded project and your article is a great start to see some real code :-)
--rob
C++ stack trace on linux
Hi,
i am working on an application which can dump call stack of C++ for me.
i am trying to use ptrace() for the same but not getting proper direction or the steps i must follow for the same.
could someone guide me on the same?
Thanks.
sandeep
Error in putdata()
Please be aware that putdata() contains a serious mistake. If len is not a multiple of four, then putdata() should read the final long value, replace one, two, or three bytes, and then write the value. This mistake causes the second example in Part II to seg fault.
Thanks
Great article, thanks!
One question though, why do you multiply the addresses of registers by 4 when reading them with PTRACE_PEEKDATA?
Indexes not addresses
The register "addresses" you're referring to (EAX, EBX, etc) are indexes:
into the user data:
struct user_regs_struct { long int ebx; long int ecx; long int edx; long int esi; long int edi; ...So to get an address, multiply by 4 (the "word" size on a x86 system).
Mitch Frazier is an Associate Editor for Linux Journal.
ptrace and threads
I'm posting this hoping the next fellow who encounters this gotcha can save a little time...
ptrace only works in the base thread of the parent process. ptrace(PTRACE_CONT, pid) will fail with ESRCH (process not found) if issued in a child thread on Linux.
If you are thinking of using a debugger thread to watch each child thread, give it up. It won't work. And unless you find this message or have a sudden epiphany, you are liable to spend a great deal of time bashing your poor head against the wall.
Google, take it from here!
line numbers ptrace
Hi
If we want to put a breakpoint at a particular line number, how would we accomplish that using ptrace?
Hi Pradeep, Thanks a
Hi Pradeep,
Thanks a lot for this article, this is the one which helped me to write my own tool, to capture all the system calls(including calls from forked/child processes too). Thanks again!!!
~Patel