linux syscall tracer

Technologies
c, linux, shell script, make, awk
Topics
debugging, tracing, diagnostic
linux syscall tracer

strace is a diagnostic, debugging and instructional userspace utility with a traditional command-line interface for Linux. It is used to monitor and tamper with interactions between processes and the Linux kernel, which include system calls, signal deliveries, and changes of process state. The operation of strace is made possible by the kernel feature known as ptrace.

strace is one of the longest running free software projects and started even before Linux started.

strace is an important tool for debugging and tracing deployed on most Linux distributions with a small community of active contributors.

2019 Program

Successful Projects

Contributor
Zhibin Li
Mentor
Eugene Syromyatnikov, ldv
Organization
strace
DRM ioctl decoding
Direct Rendering Manager subsystem has pretty elaborate ioctl interface, and it might be useful to be able to support its decoding.
Contributor
Paul Chaignon
Mentor
Eugene Syromyatnikov, ldv
Organization
strace
Efficient syscall tracing for strace
strace currently adds significant overhead to any application it traces. Even when users are interested in a handful of syscalls, strace will...