-
Notifications
You must be signed in to change notification settings - Fork 3
oliver/ptrace-sampler
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Note: this is pre-alpha software. Use cases, architecture, commands and data formats might change without further notice; also, it lacks documentation, is not suitable for end users, and might have undocumented pitfalls. = Overview = Ptrace-sampler is a simple profiling tool for C/C++ applications under Linux. It is based on the idea of the "poor man's profiler": it attaches to the to-be-profiled process using the Linux ptrace() interface (like a debugger) and periodically collects the current stack trace of the process. From these stack traces it can be seen where the process spent most of its time, using the excellent KCachegrind tool as analysis GUI. = License = GPL v3 (TODO: include full GPL text) = Requirements = * Linux * Python 2.4+ * several system tools (objdump, nm, readelf, addr2line) * only for initial building: g++, make * optionally: libbfd (this can improve backtraces where system functions are involved) ** for Ubuntu: install binutils-dev package * optionally: libunwind * only for profile data analysis: KCachegrind ** if necessary, the calltree file created by start_sampling.sh/samples2calltree.py can be copied to another system where KCachegrind is installed * for building OpenGL test apps: GLUT libraries (eg. freeglut) = Installation = Run "make" to compile. Run "make release" to create a .tgz which contains the complete profiling tool. = Basic Usage = Run "start_sampling.sh" followed by the PID or name of the running process to be profiled. This will create a trace file with periodic backtraces. Hit Ctrl+C after some seconds; this will stop profiling and will create a Calltree file which is then displayed in KCachegrind (note: this post- processing step might take some minutes on the first run). In KCachegrind, useful views are: * call graph * annotated source code (make sure the source code is available, and its location is specified in KCachegrind preferences) * assembly code * Flat Profile (sorted by Incl. or Self) = Undocumented Parts = * ptrace-sampler command line options * sample_reader.py, resolve_addr.py * ~/.cache/ptrace-sampler/ directory * threading support * libunwind support * frame pointer heuristic * glibc debug info generation * VDSO/syscall problems * test apps = FAQ = == Profiling fails with "failed to attach to PID ...: Operation not permitted" == * if you're using Ubuntu, the ptrace protection might be active (see https://wiki.ubuntu.com/SecurityTeam/Roadmap/KernelHardening#ptrace_Protection) ** either run start_sampling.sh with sudo ** or run this command to allow attaching to any process (this change will be lost after reboot): sudo bash -c 'echo 0 > /proc/sys/kernel/yama/ptrace_scope' == Call graphs show lots of "0x" numbers rather than functions names == * make sure the profiled application has "frame pointers". For GCC, use the -fno-omit-frame-pointer compiler option. * install debug infos for used libraries (at least for libc6 and libstdc++) ** for Ubuntu: -dbg packages; for Fedora/RHEL: -debuginfo packages
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published