2016-01-08 10:32:25 +00:00
|
|
|
# ltrace
|
|
|
|
|
2016-01-20 00:37:46 +00:00
|
|
|
> Display dynamic library calls of a process.
|
2021-04-16 15:42:14 +01:00
|
|
|
> More information: <https://manned.org/ltrace>.
|
2016-01-08 10:32:25 +00:00
|
|
|
|
2016-01-20 00:37:46 +00:00
|
|
|
- Print (trace) library calls of a program binary:
|
2016-01-08 10:32:25 +00:00
|
|
|
|
|
|
|
`ltrace ./{{program}}`
|
|
|
|
|
2016-01-20 00:37:46 +00:00
|
|
|
- Count library calls. Print a handy summary at the bottom:
|
2016-01-08 10:32:25 +00:00
|
|
|
|
2020-10-28 17:19:43 +00:00
|
|
|
`ltrace -c {{path/to/program}}`
|
2016-01-08 10:32:25 +00:00
|
|
|
|
2016-01-20 00:37:46 +00:00
|
|
|
- Trace calls to malloc and free, omit those done by libc:
|
2016-01-08 10:32:25 +00:00
|
|
|
|
2020-10-28 17:19:43 +00:00
|
|
|
`ltrace -e malloc+free-@libc.so* {{path/to/program}}`
|
2016-01-08 10:32:25 +00:00
|
|
|
|
2016-01-20 00:37:46 +00:00
|
|
|
- Write to file instead of terminal:
|
2016-01-08 10:32:25 +00:00
|
|
|
|
2020-10-28 17:19:43 +00:00
|
|
|
`ltrace -o {{file}} {{path/to/program}}`
|