Tagged Questions
The strace tag has no wiki summary.
9
votes
3answers
566 views
How can get dtrace to run the traced command with non-root priviledges?
OS X lacks linux's strace, but it has dtrace which is supposed to be so much better.
However, I miss the ability to do simple tracing on individual commands. For example, on linux I can write strace ...
8
votes
3answers
1k views
Systrace for Windows
I'm looking for a Windows equivalent of Systrace or at least strace. I'm aware of
StraceNT, but wondering if there are any more alternatives out there. Specifically, I'm looking for a specific way to ...
8
votes
1answer
4k views
Equivalent of strace -feopen < command > on mac os X
This is useful for debugging (hence programming related). On linux, we can use the command
strace -feopen python myfile.py
to figure out which python modules and shared objects are loaded. Is ...
6
votes
3answers
2k views
ltrace equivalent for osx?
osx has the really powerful dtrace/ktrace/dtruss tools - however i'm not willing to invest the time necessary to learn dealing with them right now.
what's the easiest way to get the equivalent ...
5
votes
2answers
318 views
Adding custom struct types to strace
I'm trying to reverse-engineer a user-mode shared object that interacts with a kernel driver via ioctl syscalls. I have a header file with definitions for the kernel driver's ioctl interface (i.e. ...
4
votes
1answer
357 views
gdb: break when program opens specific file
Back story: While running a program under strace I notice that '/dev/urandom' is being open'ed. I would like to know where this call is coming from (it is not part of the program itself, it is part ...
4
votes
2answers
2k views
Unable to “strace -p” on a running JBoss process
I am trying to use "strace -p" to attach to an already running JBoss process. JBoss is using the 1.5.0_15 Java JDK. Unfortunately, this doesn't work - I only get a single futex() result:
# strace -p ...
4
votes
1answer
595 views
APC Enabled but Apache Still Opening Files?
I'm working on a high-traffic webserver farm serving dynamic PHP code which includes around 100 files on most requests. APC opcode cache is enabled, include_once_override is enabled, and I have ...
3
votes
1answer
94 views
Profiling for Wall-TIme
I have an application that I want to profile wrt how much time is spent in various activities. Since this application is I/O intensive, I want to get a report that will summarize how much time is ...
3
votes
1answer
223 views
Why apache is recv()-ing something for 15 sec every time?
I have ZendFramework based application that is using XMLRPC communication to other ZendFramework app. Both are on the same server (for development). That communication is very slow, and I am trying to ...
3
votes
4answers
607 views
What interprocess locking calls should I monitor?
I'm monitoring a process with strace/ltrace in the hope to find and intercept a call that checks, and potentially activates some kind of globally shared lock.
While I've dealt with and read about ...
2
votes
1answer
66 views
How does strace connect to an already running process?
I do know that strace uses ptrace to do the job,
but it needs to run the target process with TRACE_ME on,
which don't apply for the case of an already running process.
how does it work on an ...
2
votes
1answer
86 views
How can I pass multiple file names with spaces to a command via strace?
I have a script that uses strace, cp, awk, and stat, to create a cp with a progress bar. Here is the part of the code where it calls cp:
strace -q -ewrite cp -- `printf '%q ' $@` 2>&1 | ...
2
votes
1answer
162 views
Prevent strace from abbreviating arguments?
I'm trying to use strace to find out what commands a program executes using execve. Some of the arguments in these commands are quite long, and strace is abbreviating the arguments to execve (I see ...
2
votes
1answer
61 views
What kind of info are there in the first 832 bytes of .so file?
I saw many similar stuff like this:
open("/lib64/libpthread.so.0", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260W \0242\0\0\0"..., 832) = 832
What's there in the ...
2
votes
1answer
280 views
How do I interpret strace output?
I need to profile the performance of an application for which I am using strace. However, I do not really know how to interpret the various system calls the strace emits. Examples of a few of them are ...
2
votes
1answer
187 views
Strace: how to debug invalid argument error
I am writing a python program to mount the fuse filesystem through mount system call using ctypes. Now its giving invalid argument error in mount system call. I have checked all the arguments and they ...
2
votes
1answer
91 views
Are there any other ways to record iotcl calls besides strace?
I'm trying to see if certain ioctl calls get called when I call a function(this is on linux).There no way to cause the kernel to write a log with this sort of data, is there?
2
votes
3answers
158 views
Troubleshoot python daemon that quits unexpectedly?
What's the best way to monitor a python daemon to determine the cause of it quitting unexpectedly? Is strace my best option or is there something Python specific that does the job? Thanks!
2
votes
1answer
128 views
strace output question
I run a program on both CentOS and Debian. The output is exactly the same but in Centos I get the 3 lines in bold while in Debian I do not. What are those 3 lines about and how can I get them in ...
2
votes
2answers
342 views
Why are many system calls (getpid) captured only once using strace?
I invoked "getpid()" in a program for many times (to test the efficiency of system calls), however when I use strace to get the trace, only one getpid call is captured.
The code is simple:
#include ...
2
votes
2answers
237 views
What exactly does strace output?
Exact is what I'm focusing on here...
mmap(0x37aa74d000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14d000) = 0x37aa74d000
All are saying that strace returns all ...
2
votes
2answers
282 views
How does strace work?
It can trace all system calls used.
But what differs a sys_call from a normal call??
2
votes
1answer
375 views
How to use strace to only show calls that take a lot of time?
Is there a way to grep for only calls that over a certain amount of time?
2
votes
1answer
121 views
Print custom text into strace. Strace comments
We use strace a lot. We would like to output some text into strace to mark places the code has reached. The way i see people have done it so far is to stat an non-existent file. The filename is ...
2
votes
1answer
591 views
A lot of SIGSEGV while strace'ing java process
Interesting stuff occurred while I debug one of the unit tests on CI server (maven build actually). I connect to java process with strace -ff -e trace=network -p [pid] to trace network activity of ...
2
votes
2answers
152 views
Python file.read() grabs more data than necessary, under the hood
cat file_ro.py
import sys
def file_open(filename):
fo=open(filename,'r')
fo.seek(7)
read_data=fo.read(3)
fo.close()
print read_data
file_open("file.py")
But ...
1
vote
1answer
88 views
C++ Linux Multithread bottleneck. strace -f : `[pid 2646] mprotect(0x7ffe7c030000, 4096, PROT_READ|PROT_WRITE) = 0`
I have a parrallelized C++ program that does brute force optimization. For some reason I get diminishing returns per core up to ~6 cores, at which point I hit a wall where further cores add ~no speed. ...
1
vote
1answer
49 views
How does strace interpret syscall arguments?
I know it uses ptrace for implementation,
and it can get arguments in registers,
but they're numbers only,
how does strace convert them into literal information?
Is it just hard code for every ...
1
vote
2answers
120 views
Line Number Info in ltrace and strace tools
Is it possible that I can view the line number and file name (for my program running with ltrace/strace) along with the library call/system call information.
Eg:
code section :: ptr = ...
1
vote
1answer
67 views
strace/ltrace outputs inconsistent info
strace pwd:
getcwd("/root"..., 4096) = 6
ltrace pwd:
getcwd(NULL, 0) = "/root"
Why the 1st parameter is NULL in ltrace?
UPDATE
seems ...
1
vote
1answer
165 views
Long running PHP process stuck in loop - strace output included
I have a long running PHP process, that sometimes hangs in a loop. This is the strace output, but I don't know what it means:
nanosleep({1, 0}, {1, 0}) = 0
rt_sigprocmask(SIG_BLOCK, ...
1
vote
1answer
133 views
set_thread_area in strace
Using strace on a program: strace outputs the same extract output in Debian and CentOS except for set_thread_area. (The program's version is exactly the same on both Linuxes.)
Why are they different ...
1
vote
1answer
202 views
trying to understand strace output
I'm trying to get an understanding of strace.
So I figured a very hands on way would be to do the following:
strace ``echo "1"'' > echo1.txt
strace ``echo "2"'' > echo2.txt
Then:
diff ...
1
vote
2answers
199 views
Which is syscall, sys_open or open?
I think sys_open is the canonical syscall,
that is,those prefixed with sys_.
but strace which is supposed to log all syscalls, outputs open as the syscall(non prefixed version),and I'm confused...
...
1
vote
1answer
110 views
What does the number mean in the output of strace?
6331 execve("./a.out", ["./a.out"], [/* 22 vars */]) = 0
6331 brk(0) = 0x601000
What does 6331 mean here?
1
vote
4answers
1k views
Android ADB Linux problem
I'm trying to test Strace tool in Android Real device but I can't get any information from it.
I was trying the following command but the device still tell me "permission denied".
'$' adb shell su ...
1
vote
1answer
571 views
Android strace in Real device
I have the following situation, I want to monitor the system calls on Android phones so
I made an script to do that. With Android Emulator works perfectly (writes the traces of the application in a ...
1
vote
2answers
160 views
strace: SIGFPE before anything happens
I'm having trouble executing a C++ program on a particular machine. Here is the entire strace output:
26936 execve("/data1/xfm/bin/xfm", ["/data1/xfm/bin/xfm", "-d", "-s", "/data1/smail/", "-p", ...
1
vote
2answers
509 views
How to track child process using strace?
I used strace to attach to a process briefly. The process created 90 threads. When I found the offending thread, I had to tediously search for the parent thread, then the grandparent thread, and so on ...
1
vote
2answers
105 views
Unknown open() flag passed by execve()
When executing a bash script located on my FUSE filesystem, an open() call is made with these flags:
debug,cpfsfuse.c(62),cpfs_fuse_open: path "/make.sh", flags 0100040
The flags (0100040) should ...
1
vote
0answers
492 views
executing service (openoffice headless) in chroot is slow
I created an ubuntu chroot environment (using debootstrap) and started openoffice as a service to convert files using unoconv. It works but it spends about 20s to do conversions which are below 1s ...
1
vote
3answers
395 views
how do i use strace to know about system calls in my C program
I wanted to know how can i use strace function to trace system calls in my C program and also use it for debugging my code.
regs
adi
1
vote
4answers
1k views
how to intercept linux signals ? (in C)
I need to intercept and trace signals from any binaries, like strace does it under linux.
I don't need a so verbose output like the real one strace.
I just want to know how it works, how can I ...
1
vote
2answers
494 views
strace java applet
I'm trying to strace a java applet, and strace doesn't seem to be working. I'm calling the following function.
public static void testSTrace(){
long c = 0;
for (int i = 0; i < 1000; i++){
long ...
0
votes
0answers
17 views
HTTP Keep-Alive Hangs My Process On Linux 2.6.30 CentOS
I am developing a news crawler that wakes up to watch about 200 select news sites. Since my typical crawling requires at least 3 different but successive connections to each site, I am trying to send ...
0
votes
1answer
23 views
How to find out what these syscall_983045, syscall_322 syscalls in strace output?
I saw these two syscall in my strace log a lot.
What's the best way to found out what those syscall mean?
I tried include/linux/syscalls.h in the linux kernel source tree. But can't find ...
0
votes
2answers
80 views
Monitoring memory on linux via system calls
I have been looking around for a way to measure memory usage on Linux. I found out three main ways of doing it and I am not sure what should I use, therefore I am asking here for opinions.
It seems ...
0
votes
1answer
52 views
TCP messages getting coalesced
I have a Java application that is writing to the network. It is writing messages in the region of 764b, +/- 5b. A pcap shows that the stream is getting IP fragmented and we can't explain this.
Linux ...
0
votes
1answer
43 views
Trace the calls to pull_task() for running processes
I am trying to count the number of times pull_task() is called by processes in my system. pull_task() is a scheduling function that moves a task from runqueue of a busy CPU to the runqueue of an idle ...