ftrace
Like strace, but lists files the program accesses. Inspired by tracefile.
This tool's primary purpose is to assist in discovering which files/directories a program
accesses during its lifetime. It works by making use of strace and parsing its output to
find out which files and folders were accessed.
It supports various options, such as filtering based on file type (file, directory, symlink, pipe, socket, executable, etc).
Usage
See what files ls accesses during a normal run:
See all executable files:
See all paths that the program tried to access (even ones that didn't exist). This is sometimes useful to understand a search algorithm that a program uses to find linked libraries, etc.
Attach to an already running process (note that this requires elevated privileges):
Caveats
Since strace outputs via STDERR, if the program being run also emits output over STDERR it
can confuse ftrace. For this reason any line that ftrace doesn't recognise is ignored and not
parsed. You can print lines that weren't recognised with the --invalid flag.
Installation
First and foremost, make sure you've installed strace on your system.
It's almost always in your distribution's package manager.
Precompiled binaries
Coming Soon! (GitHub actions is yet to be configured for this repository.)
Via Cargo
NOTE: The minimum Rust version required is 1.46.0.
From Source (via Cargo)
NOTE: The minimum Rust version required is 1.46.0.
License: Unlicense OR MIT OR Apache-2.0