strace is a Linux/UNIX tool for logging and analysing the system calls made by a user-side process.

learn more… | top users | synonyms

0
votes
0answers
27 views

PHP Strace result - mysql sleeping connections

So, after running a strace on some sleeping connections, I have come across a few things which I have fixed (removed from the strace) But was wondering if anyone can notice anything else from this ...
0
votes
0answers
18 views

How to trace IOCTL graphics card syscalls from userspace programs to the kernel?

I tried strace to capture IOCTL syscalls to the graphics card when opening a GUI app like gedit doing a strace -ttT gedit. But they do not appear, I assume this is because the kernel does not give ...
1
vote
1answer
21 views

Why doesn't strace show HDD IOCTL syscalls?

When doing an strace -ttT date I miss a lot of syscalls right after the lauch of the executable. After the execve() there are no further syscalls where the date ELF is copied from HDD to memory, does ...
0
votes
1answer
32 views

Hanging on rake db:migrate ts:conf

I have Jenkins running a deploy script on all of our app machines. Lately, half my builds don't finish and keep hanging while trying to run the same thing. The last of the output looks like this: ** ...
1
vote
0answers
18 views

strace EPERM for cloned subprocess

I am trying to strace some binary but encounter on strange problem strace -f ./ioncube_encoder53 it traces main process ok, but when trying to trace child subprocess it failed with clone(Process ...
0
votes
3answers
28 views

Get the output of multiple strace calls in one file

I want to get the Output of multiple strace calls in one file, but i do not know how. At the moment i am using: strace -o tmpfile, but this just puts the output of one file in and then overrites ...
0
votes
2answers
27 views

How can I monitor network connections by maven and childs?

We have a Maven project that runs several integration tests. Some of the tests involve spawning child processes like a HSQLDB database, but it could also be that any of the maven plugins might be ...
0
votes
1answer
80 views

How to use strace on Android?

I'm trying to use strace on Android platform. Since strace is not a default binary on Android, I downloaded an pre-built version on the website [here]. But when I tried to run it on a rooted ...
0
votes
0answers
12 views

How can i access the pid of a newly added process in Ubuntu

The main task i have to carry out is trace the system call of processes in ubuntu. Problem is i am unable to trace them continuously, i.e. as soon as they are added to system they should get traced. ...
1
vote
1answer
40 views

How to track down what Apache process is doing

I occasionally have Apache processes that go to 100% of CPU usage and never quit. When this happens 8 times (8 CPUs), the server becomes unusable. According to server-status, the "hung" process is a ...
0
votes
0answers
42 views

How to run strace command on an Android device from java application

I can't run strace command from my java application . I tried the code above try { // Executes the command. java.lang.Process process = Runtime.getRuntime().exec("strace -p 2545 -o ...
2
votes
1answer
69 views

Counting syscalls of a program and checking validity of the results with strace

I am using ptrace to count the syscalls of a program. The problem is that given a program A, my program prints out the number of the syscalls made (open, close, read, write). The results of my ...
1
vote
0answers
83 views

Difference between gdb, valgrind, strace, ltrace and apport [closed]

I'm looking for the difference between the following debugging tools. What are those? E: On the off chance that somebody stumbles in here and was wondering about the same thing the "differences" are ...
0
votes
0answers
26 views

getting the mutex variable from strace

I am using strace to get information about my application. I am interested in function for threading like the one below. futex(0xf70d34, FUTEX_WAIT_PRIVATE, 23853, NULL <unfinished ...> If ...
1
vote
0answers
34 views

strace hang on system call read

I exectued command: strace -ttt /bin/cat to get system calls on Ubuntu 11.04. However strace got hang on command "read" and could not finish. I have to press ctrl+c to stop it. The output is something ...
0
votes
0answers
26 views

Decoding ptrace Registers

I'm wondering where in the contents/members of `struct user_regs_struct ur` which is filled in by a call to ptrace(PTRACE_GETREGS, pid, 0, &ur); // get registers I can extract the ...
1
vote
0answers
42 views

Ways to get strace-like output for Heisenbug

I'm chasing a Heisenbug in a linux x64 process. (Attaching to a the process with a debugger or strace makes the problem never occur.) I've been able to put in an infinite loop when the code detects ...
1
vote
1answer
35 views

strace print asound ioctl

my strace tends to confuse some ioctl values (I'm sure that the SNDRV ioctls is not recognized well...) how I can recognize the right ioctl value? a little example: $ strace aplay -l ... ...
0
votes
0answers
133 views

Java on CentOS in VM crashes, stacktrace confusing

I hire a CentOS 6 VPS where I wish to deploy a java webapplication. Tomcat and Glassfish both crash without much feedback. I created a simple hello world application, independent of network activity ...
0
votes
1answer
53 views

php process LD_LIBRARY_PATH big cpu usage

i'm finding the causes of php process using so much cpu , server is apache mpm worker + suphp below is some output of 'strace php', as u can see, the process is looking for dso in 'incorrect' path, ...
0
votes
2answers
297 views

Failure to connect to SQl Server from Linux

I am trying to connect to SQL Server 2008 on CentOS 5.8. I am using unixODBC 2.3.0 and SQL Server ODBC Driver (www.microsoft.com/en-us/download/details.aspx?id=28160). When I try to test the ...
1
vote
1answer
97 views

How to execute strace for a particular time period

I'm logging the system call execution associated with an Android app using 'strace' command. Process process = Runtime.getRuntime().exec("su"); OutputStream os; os = process.getOutputStream(); ...
0
votes
1answer
171 views

Strace command from Android app writes empty file [duplicate]

I'm trying to exceute strace command for a PID from the android app. the code segment is below: Runtime.getRuntime().exec("strace -p 20436 -o /mnt/sdcard/sampleTrace11.txt"); The file ...
0
votes
0answers
82 views

php-cgi hangs under heavy load

We have a website using nginx and php. Under heavy load php-cgi processes hang. When we did an strace it hangs at the end of each request marked recv syscall: write(5, "\1\0\0\0\1", 5) ...
0
votes
1answer
113 views

strace shell command issue in Android

I'm building a monitor app, which runs in background and logs the system calls executed by currently running application using the strace command. String cmd="strace -p "+processID+" -o ...
0
votes
1answer
63 views

Does strace print argument values before or after the system call?

When a system call modifies its arguments, does strace print the modified values, or the original values that were passed in? For example, here is some strace output for the epoll_wait system call: ...
2
votes
0answers
107 views

Stracing to attach to a multi-threaded process

If I want to strace a multi-threaded process (of all of its threads), how should I do it? I know that one can do strace -f to follow forked process? But how about attaching to a process which is ...
0
votes
0answers
76 views

strace: invalid use of undefined type ‘struct pt_regs’

I was using built-in strace given in /system/xbin/ directory in the emulator and it was giving me wrong set of system calls such as msgget() and msgrcv() which are not supported by Android even. I ...
1
vote
0answers
66 views

Android strace error: “strace: 2: Syntax error: ”&“ unexpected”

I was using built-in strace given in /system/xbin/ directory in the emulator and it was giving me wrong set of system calls such as msgget() and msgrecv() which are not supported by Android even. I ...
-2
votes
1answer
95 views

why would running cygwin ssh commands be faster using strace? [closed]

I'm trying to diagnose my server to see why commands are behaving slowly. For example, ls take > 10 min to come back for a normal small directory (12 entries) So, I thought, let's try running this ...
-1
votes
1answer
78 views

Strace equivalent for windows? [closed]

I am looking for a strace like utility for windows. Are there any(preferably free) alternatives on windows?
2
votes
1answer
153 views

infuriating heisenbug in Java/WAS 8.5 liberty profile on socket binding

I get socket bind error on Java 6/Websphere 8.5 (Liberty profile, a cut down, usable version of Websphere). When killing and starting app server immediately again I get: [ERROR ] CWWKO0221E: TCP ...
0
votes
1answer
126 views

cpu pegged, memory pegged, strace output

All of the sudden an application that I've been working on is hammering the server's cpu and memory. I have not had any code changes since this "pegging" has started. I did some digging into strace ...
0
votes
1answer
78 views

What are the differences between LD_PRELOAD and strace?

Both methods are used to gather system calls also parameters and return values of them. When we prefer LD_PRELOAD and why? Maybe we can say that we can only gather syscalls via strace but we can ...
0
votes
2answers
124 views

Environment for a Qt Program

I have a Qt executable file. When this program runs on a Ubuntu 11.04 virtual machine, the GUI is ugly though you can still tell it is the GUI that you want. When it runs on Ubuntu 12.04 of my ...
2
votes
2answers
59 views

Why do NSS modules have to end in .so.2 on Linux?

I've built a Name Service Switch Module for Red Hat Linux. Using strace, I've determined that the OS looks for the library in various directories, but only for files with the extension .so.2 (e.g. ...
0
votes
1answer
97 views

Android app for strace

I am using an Android tablet and am looking to debug an app which is causing random reboots. Is there an app I can install to perform the equivalent of a background strace or equivalent ? How is ...
0
votes
2answers
160 views

strace output processing

I am using strace in this way: strace -xf -eopen -o out_configure.log ./configure strace -xf -eopen -o out_make.log make Then I am getting clear file list with sed: sed -n ...
1
vote
1answer
61 views

Understanding Execution Environment of a Process

How do I know the difference in the 'execution env' of a process in two different contexts? To articulate the question properly, I have plan9port installed in /opt/plan9/ and when I run the fortune ...
1
vote
2answers
157 views

Determine what's blocking a process on OSX using command line tools?

The title says it most, really. On Linux it would be easy with strace and possibly lsof or /proc, and it used to be easy on OSX until truss was removed from OSX Leopard, along with underlying system ...
0
votes
1answer
760 views

poll system call timeout

Attaching starce shows a lot of these messages poll([{fd=5, events=POLLIN}, {fd=6, events=POLLIN}, {fd=7, events=POLLIN}, {fd=8, events=POLLIN}, {fd=9, events=POLLIN}, {fd=10, events=POLLIN}], 6, 0) ...
0
votes
2answers
44 views

Two simultaneous sends locks up both programs

I'm debugging my application (sort of a follow up to an earlier question), which is essentially a toy peer to peer client. It works as follows: Peer 1 requests a block (or several blocks) from Peer ...
0
votes
1answer
146 views

strace tmux output redirected to a file

I want to check which files does tmux touch when it is launched (not just the list of open files when tmux is running). Strace tmux seemed like the best option. When trying to redirect the output to ...
0
votes
1answer
151 views

Memory Allocation without mmap2 system call strace?

Is it possible to allocate memory without the mmap2 call? I was working on A10 board video player, where I have a huge memory leak. possibly in each frame displayer. There is a library libvecore ...
1
vote
1answer
2k views

Android: How to strace an app using ADB shell am start

I need help on stracing Android apps in the SDK emulator. Here is my setup: I have an Android SDK emulator running the Android API 4.03 ADB shell connected to emulator. I am able to install an APK ...
2
votes
1answer
706 views

How to strace adb shell am start myandroidapp

I need to lean on you for some help on stracing android apps in the sdk emulator here is my setup android sdk emulator running android api 4.03 adb shell connected to emulator. I am able to install ...
0
votes
1answer
76 views

Coro + Coro::LWP freezes

I have script using Coro, Coro::LWP and LWP::UserAgent. I make an array of requests and run them by Coro's async {}. Then i use results from them and save to file. Script runs for hours or sometimes ...
2
votes
2answers
220 views

Can strace prevent the proper execution of a program?

I would like to know whether strace can cause anomaly for the program it is tracing. Currently, I am trying to trace a random segmentation fault error (but it seems like the program never crashes that ...
1
vote
0answers
61 views

Interpreting strace for characterizing delays/latencies

I have a daemon running on my embedded system on Linux Kernel 2.6.27.45. One of the processes is not performing as it is supposed to and I tried to use strace for further analysis.( I added some ...
0
votes
1answer
381 views

nohup process dies on xterm close but not on exit

I have an issue where a simple nohup command seems to be behaving oddly. I have boiled this down to a small java app named Sleep that does a while (true) Thread.sleep(10000). I'm running ...

1 2 3