# fdf - High-Performance POSIX File Finder
[](https://github.com/alexcu2718/fdf/actions)
fdf is a high-performance POSIX file finder written in Rust with extensive C FFI. It serves as a lightweight alternative to tools such as fd and find, with a focus on speed, efficiency, and cross-platform compatibility. Benchmarks demonstrate fdf running up to 2x faster than comparable tools, achieved through low-level optimisation, SIMD techniques, and direct kernel interfacing.
PLEASE NOTE: This is due to undergo a rename before a 1.0
**Quick Installation:**
```bash
cargo install --git https://github.com/alexcu2718/fdf
```
## Project Status
This is primarily a learning and performance exploration project. Whilst already useful and performant, it remains under active development towards a stable 1.0 release. The name 'fdf' is a temporary placeholder.
The implemented subset performs exceptionally well, surpassing fd in equivalent feature sets, though fd offers broader functionality. This project focuses on exploring hardware-specific code optimisation rather than replicating fd's complete feature set.
While the CLI is usable, the internal library is not stable yet. Alas!
## Platform Support (64-bit only)
### Fully Supported and CI Tested
- Linux (x86_64, aarch64, s390x, RISC-V64, Alpine MUSL)
- macOS (Intel and Apple Silicon)
- FreeBSD (x86_64)
### Compiles with Limited Testing
*Note: GitHub Actions does not yet provide Rust 2024 support for some(most of these) platforms. Additional checks will be added when available.*
- OpenBSD, NetBSD, DragonflyBSD (tested occasionally, minor fixes expected if issues arise, tested on QEMU occasionally)
- Android (tested on my phone)
- Illumos and Solaris (x86_64, verified with QEMU)
### Not Yet Supported
- **Windows**: Requires significant rewrite due to architectural differences with libc. Planned once the POSIX feature set is stable. Windows already has highly effective tools such as [Everything](https://www.voidtools.com/). The plan is this to work on this after a 1.0.
### Non supported filesystems
This tool doesn't support reiserfs in any form, due to it's extremely long filename length, every other file system is supported, it's not worth sacrificing
the performance improvements to support an extremely niche fs that is used by 0.001% of people(if that...).
It's deliberately got a build script to stop building on reiser.
## Testing
The project includes comprehensive testing with 90+ Rust tests and 15+ correctness benchmarks comparing against fd.
Note: Miri validation (Rust's undefined behaviour detector) cannot be used due to the extensive libc calls. Intensive testing and valgrind validation are used instead. See the [valgrind script here](./scripts/valgrind-test.sh)
- Rust tests: [Available here](./src/test.rs)
- Shell scripts clone the LLVM repository to provide an accurate testing environment
- Tests run via GitHub Actions on all supported platforms
**Running the Full Test Suite:**
```bash
TMP_DIR="${TMP:-/tmp}"
git clone --depth 1 https://github.com/alexcu2718/fdf "$TMP_DIR/fdf_test"
cd "$TMP_DIR/fdf_test/fd_benchmarks"
# If on Android, ensure the script is executable
if [[ "$(uname -o)" == "Android" ]]; then
chmod +x run_all_tests_USE_ME.sh
fi
./run_all_tests_USE_ME.sh
```
This executes a comprehensive suite of internal library tests, CLI tests, and benchmarks.
## Performance Benchmarks
The benchmarks are fully repeatable using the testing code above and cover file type filtering, extension matching, file sizes, and many other scenarios. The following results were obtained on a local system and the LLVM repo to provide realistic usage examples:
(These are tests done via hyperfine and summarised to save space here.)
(*TESTED ON LINUX, other OS's will (probably) be lower due to specific linux optimisations)
(I cannot test accurately on qemu due to virtualisation overhead and I do not have a mac)
Rough tests indicate a significant 50%+ speedup on BSD's/Illumos/Solaris but macos has less optimisations, perhaps testing in QEMU is not ideal for mac!
| Depth-limited (depth=2, LLVM) | 396 | 9.9 ms | 18.1 ms | 1.82 ± 0.40 | No differences |
| File extension (.c, LLVM) | 12,801 | 13.7 ms | 27.4 ms | 2.00 ± 0.21 | No differences |
| No pattern (LLVM) | 176,841 | 15.9 ms | 31.2 ms | 1.96 ± 0.22 | No differences |
| Relative directory (..) | 178,794 | 17.3 ms | 28.9 ms | 1.67 ± 0.27 | No differences |
| Regex pattern (LLVM) | 4,439 | 14.6 ms | 29.5 ms | 2.02 ± 0.15 | No differences |
| Size >1MB (LLVM) | 118 | 32.4 ms | 65.0 ms | 2.01 ± 0.16 | No differences |
| Type filter (directory) | 15,224 | 15.6 ms | 29.7 ms | 1.90 ± 0.39 | No differences |
| Type filter (empty) | 2,843 | 39.5 ms | 62.5 ms | 1.58 ± 0.09 | No differences |
| Type filter (executable) | 929 | 25.5 ms | 44.8 ms | 1.76 ± 0.18 | No differences |
| Cold cache regex (LLVM) | — | 25.5 ms | 52.9 ms | 2.07 ± 0.21 | No differences |
| Depth-limited (depth=4, home dir) | 62,513 | 11.1 ms | 20.8 ms | 1.88 ± 0.25 | No differences |
| File extension (.c, home dir) | 99,393 | 257.4 ms | 508.6 ms | 1.98 ± 0.10 | No differences |
| No pattern (home dir) | 2,265,808 | 323.0 ms | 547.1 ms | 1.69 ± 0.09 | No differences |
| Regex pattern (home dir) | 70,264 | 282.1 ms | 460.5 ms | 1.63 ± 0.06 | No differences |
| Size >1MB (home dir) | 13,201 | 755.3 ms | 1.338 s | 1.77 ± 0.07 | No differences |
| Size <1MB (home dir) | 2,009,097 | 817.4 ms | 1.514 s | 1.85 ± 0.06 | No differences |
| Type filter (directory, home) | 237,603 | 307.7 ms | 519.5 ms | 1.69 ± 0.05 | No differences |
| Type filter (empty, home) | 27,361 | 921.8 ms | 1.258 s | 1.36 ± 0.03 | No differences |
| Type filter (executable, home) | 63,863 | 624.2 ms | 887.8 ms | 1.42 ± 0.05 | No differences |
**Average speedup:** **1.8× faster**
## Distinctions from fd/find
Symlink resolution in my method differs from fd and find. Although I generally advise against following symlinks, the option exists for completeness.
When following symlinks, behaviour will vary slightly. For example, fd can enter infinite loops with recursive symlinks
(see recursive_symlink_fs_test.sh) [Available here](./scripts/recursive_symlink_fs_test.sh)
whereas my implementation prevents hangs. It may, however, return more results than expected.
To avoid issues, use --same-file-system when traversing symlinks. Both fd and find also handle them poorly without such flags. My approach ensures the program always terminates safely, even in complex directories like ~/.steam, ~/.wine, /sys, and /proc.
## Technical Highlights
### Key Optimisations
- **getdents64: Optimised the Linux/Android-specific directory reading by significantly reducing the number of getdents system calls. This approach enables single-pass reads for small directories and reduces getdents invocations by roughly 50% in testing. See the skip code(or follow link) [in src/iter.rs](./src/iter.rs#L195)**
- **find_char_in_word/find_last_char_in_word**: Locates the first/last occurrence of a byte in a 64-bit word using SWAR (SIMD within a register), implemented as a const function
- **Compile-time colour mapping**: A compile-time perfect hashmap for colouring file paths, defined in a [separate repository](https://github.com/alexcu2718/compile_time_ls_colours)
### Constant-Time Directory Entry Processing
The following function provides an elegant solution to avoid branch mispredictions/SIMD instructions during directory entry parsing (a performance-critical loop):
Check source code for further explanation [in src/utils.rs](./src/utils.rs#L195)**
```rust
// Computational complexity: O(1) - truly constant time
// Used on Linux/Solaris/Illumos/Android systems; BSD systems/macOS store name length trivially
// SIMD within a register, so no architecture dependence
//http://www.icodeguru.com/Embedded/Hacker%27s-Delight/043.htm
#[cfg(any(target_os = "linux",target_os = "android",target_os = "emscripten", target_os = "illumos",target_os = "solaris",
target_os = "redox", target_os = "hermit", target_os = "fuchsia"))]
pub const unsafe fn dirent_const_time_strlen(drnt: *const dirent64) -> usize {
use core::num::NonZeroU64;
/*The only unsafe action is dereferencing the pointer; This MUST be validated beforehand */
const LO_U64: u64 = u64::from_ne_bytes([0x01; size_of::<u64>()]);
const HI_U64: u64 = u64::from_ne_bytes([0x80; size_of::<u64>()]);
// Create a mask for the first 3 bytes in the case where reclen==24
const MASK: u64 = u64::from_ne_bytes([0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00]);
const DIRENT_HEADER_START: usize = core::mem::offset_of!(dirent64, d_name);
let reclen = unsafe { (*drnt).d_reclen as usize };
// Access the last 8 bytes of the word (this is an aligned read due to kernel providing 8 byte aligned dirent structs!)
let last_word: u64 = unsafe { *(drnt.byte_add(reclen - 8).cast::<u64>()) };
// reclen is always multiple of 8 so alignment is guaranteed
let mask = MASK * ((reclen == 24) as u64); // branchless mask (multiply by 0 or 1)
let candidate_pos = last_word | mask; //Mask out the false nulls when d_name is short (when reclen==24)
//The idea is to convert each 0-byte to 0x80, and each nonzero byte to 0x00
let zero_bit = unsafe {
// Use specialised instructions (ctlz_nonzero)
//to avoid 0 check for bitscan forward so it compiles to tzcnt on most CPU's
NonZeroU64::new_unchecked(candidate_pos.wrapping_sub(LO_U64) & !candidate_pos & HI_U64)
};
// Find the position of the null terminator
#[cfg(target_endian = "little")]
let byte_pos = (zero_bit.trailing_zeros() >> 3) as usize;
#[cfg(target_endian = "big")]
let byte_pos = (zero_bit.leading_zeros() >> 3) as usize;
// reclen-DIRENT_HEADER start is the maximum size of the string
// we then use the position of the `true` null terminator and subtract the 8, it's junk.
reclen - DIRENT_HEADER_START + byte_pos - 8
}
```
## Why?
I started this project because I found find slow and wanted to learn how to interface directly with the kernel.
What began as a random experiment turned out to be a genuinely useful tool - one I'll probably use for the rest of my life, which is much more interesting than a project I'd just create and forget about.
At the core, this is about learning.
When I began I had barely used Linux/Rust for a few months, I didn't even know C, so there are some rough ABI edges. But along the way, I've picked up low-level skills and this project has been really useful for that!
### Performance Motivation
Even though fdf is already faster than fd in all cases, I'm planning to experiment with filtering before allocation(I don't stop at good enough!)
Rust's std::fs has some inefficiencies, too much heap allocation, file descriptor manipulation, constant strlen calculations, usage of readdir (not optimal because it implicitly stat calls every file it sees!). Rewriting all of it using libc was the ideal way to bypass that and learn in the process.
Notably the standard library will keep file descriptors open(UNIX specific) until the last reference to the inner `ReadDir` disappears, because UNIX has a limit on open file descriptors, this can cause a form of 'rate limiting', not ideal.
It will also tend to call 'stat' style calls heavily which is very! inefficient
(I do have a shell script documenting syscall differences here(it's crude but it works well)) [Available here](./fd_benchmarks/syscalltest.sh)
### Development Philosophy
** Feature stability before breakage - I won't push breaking changes or advertise this anywhere until I've got a good baseline.
** Open to contributions - Once the codebase stabilises, I welcome others to add features if they're extremely inclined anyway!
In short, this project is a personal exploration into performance, low-level programming, and building practical tools - with the side benefit of making a useful tool and learning a crazy amount!
## Acknowledgements/Disclaimers
I've directly taken code from [fnmatch-regex, found at the link](https://docs.rs/fnmatch-regex/latest/src/fnmatch_regex/glob.rs.html#3-574) and modified it so I could convert globs to regex patterns trivially, this simplifies the string filtering model by delegating it to rust's extremely fast regex crate.
Notably I modified it because it's quite old and has dependencies I was able to remove
(I have emailed and received approval from the author above)
I've also done so for some SWAR tricks from the standard library [(see link)](https://doc.rust-lang.org/src/core/slice/memchr.rs.html#111-161)
I've found a much more rigorous way of doing some bit tricks via this.
I additionally emailed the author of memchr and got some nice tips, great guy, someone I respect whole heartedly!
## Future Plans
### Feature Enhancements (Planned)
More elaborate improvements discussed [at this link]( ./IMPROVEMENTS.md )
**API cleanup, currently the CLI is the main focus but I'd like to fix that eventually!**
**POSIX Compliance**: Mostly done, I don't expect to extend this beyond Linux/BSD/MacOS/Illumos/Solaris/Android (the other ones are embedded mostly, correct me if i'm wrong!), I have tentative work for other OS'es, but ultimately it is hard to even emulate these! Such as l4re,horizon etc.
Some OS'es are plainly not supported, such as vita/nuttx (due to lacking inodes) and hurd (due to unbounded filenames)
Ultimately, these are an extremely fringe usecase and I think it is beyond pointless to focus on these.
### Platform Expansion
**Windows Support**: Acknowledged as a significant undertaking an almost entire separate codebase(portability ain't fun), but valuable for both usability and learning Windows internals.
## Installation and Usage
```bash
# Clone & build
git clone https://github.com/alexcu2718/fdf.git
cd fdf
cargo build --release
# Optional system install
cargo install --git https://github.com/alexcu2718/fdf
# Find all JPG files in the home directory (excluding hidden files)
fdf . ~ -e jpg
# Find all Python files in /usr/local (including hidden files)
fdf . /usr/local -e py -H
# Generate shell completions for Zsh/bash (also supports powershell/fish!)
# For Zsh
echo 'eval "$(fdf --generate zsh)"' >> ~/.zshrc
# For Bash
echo 'eval "$(fdf --generate bash)"' >> ~/.bashrc
## Options
Usage: fdf [OPTIONS] [PATTERN] [PATH]
Arguments:
[PATTERN]
Pattern to search for
[PATH]
Path to search (defaults to current working directory)
Options:
-H, --hidden
Shows hidden files eg .gitignore or .bashrc, defaults to off
-S, --sort
Sort the entries alphabetically (this has quite the performance cost)
-s, --case-sensitive
Enable case-sensitive matching, defaults to false
-e, --extension <EXTENSION>
filters based on extension, eg --extension .txt or -E txt
-j, --threads <THREAD_NUM>
Number of threads to use, defaults to available threads available on your computer
-a, --absolute-path
Starts with the directory entered being resolved to full
-I, --include-dirs
Include directories, defaults to off
-L, --follow
Include symlinks in traversal,defaults to false
--nocolour
Disable colouring output when sending to terminal
-g, --glob
Use a glob pattern,defaults to off
-n, --max-results <TOP_N>
Retrieves the first eg 10 results, 'fdf -n 10 '.cache' /
-d, --depth <DEPTH>
Retrieves only traverse to x depth
--generate <GENERATE>
Generate shell completions
[possible values: bash, elvish, fish, powershell, zsh]
-p, --full-path
Use a full path for regex matching, default to false
-F, --fixed-strings
Use a fixed string not a regex, defaults to false
--show-errors
Show errors when traversing
--same-file-system
Only traverse the same filesystem as the starting directory
--size <SIZE>
Filter by file size
PREFIXES:
+SIZE Find files larger than SIZE
-SIZE Find files smaller than SIZE
SIZE Find files exactly SIZE (default)
UNITS:
b Bytes (default if no unit specified)
k, kb Kilobytes (1000 bytes)
ki, kib Kibibytes (1024 bytes)
m, mb Megabytes (1000^2 bytes)
mi, mib Mebibytes (1024^2 bytes)
g, gb Gigabytes (1000^3 bytes)
gi, gib Gibibytes (1024^3 bytes)
t, tb Terabytes (1000^4 bytes)
ti, tib Tebibytes (1024^4 bytes)
EXAMPLES:
--size 100 Files exactly 100 bytes
--size +1k Files larger than 1000 bytes
--size -10mb Files smaller than 10 megabytes
--size +1gi Files larger than 1 gibibyte
--size 500ki Files exactly 500 kibibytes
Possible values:
- 100: exactly 100 bytes
- 1k: exactly 1 kilobyte (1000 bytes)
- 1ki: exactly 1 kibibyte (1024 bytes)
- 10mb: exactly 10 megabytes
- 1gb: exactly 1 gigabyte
- +1m: larger than 1MB
- +10mb: larger than 10MB
- +1gib: larger than 1GiB
- -500k: smaller than 500KB
- -10mb: smaller than 10MB
- -1gib: smaller than 1GiB
-T, --time <TIME>
Filter by file modification time
PREFIXES:
-TIME Find files modified within the last TIME (newer)
+TIME Find files modified more than TIME ago (older)
TIME Same as -TIME (default)
TIME RANGE:
TIME..TIME Find files modified between two times
UNITS:
s, sec, second, seconds - Seconds
m, min, minute, minutes - Minutes
h, hour, hours - Hours
d, day, days - Days
w, week, weeks - Weeks
y, year, years - Years
EXAMPLES:
--time -1h Files modified within the last hour
--time +2d Files modified more than 2 days ago
--time 1d..2h Files modified between 1 day and 2 hours ago
--time -30m Files modified within the last 30 minutes
Possible values:
- -1h: modified within the last hour
- -30m: modified within the last 30 minutes
- -1d: modified within the last day
- +2d: modified more than 2 days ago
- +1w: modified more than 1 week ago
- 1d..2h: modified between 1 day and 2 hours ago
-t, --type <TYPE_OF>
Filter by file type:
d, dir, directory - Directory
u, unknown - Unknown type
l, symlink, link - Symbolic link
f, file, regular - Regular file
p, pipe, fifo - Pipe/FIFO
c, char, chardev - Character device
b, block, blockdev - Block device
s, socket - Socket
e, empty - Empty file
x, exec, executable - Executable file
Possible values:
- d: Directory
- u: Unknown type
- l: Symbolic link
- f: Regular file
- p: Pipe/FIFO
- c: Character device
- b: Block device
- s: Socket
- e: Empty file
- x: Executable file
-h, --help
Print help (see a summary with '-h')
-V, --version
Print version
```
### Potential Future Enhancements
#### 1. io_uring System Call Batching
- Investigate batching of `stat` and similar operations.
- **Key challenges:**
- No native `getdents` support in `io_uring`.
- Would require async runtime integration (e.g. Tokio).
- Conflicts with the project’s minimal-dependency design.
- Linux-only feature, making it a low-priority and high-effort addition. **I will likely NOT do this**
#### 2. Native Threading Implementation
- Replace the Rayon dependency with a custom threading model. Honestly probably impossible for me to outperform it.
#### 3. Allocation-Optimised Iterator Adaptor
- Implement a filtering mechanism that avoids unnecessary directory allocations.
- Achieved via a closure-based approach triggered during `readdir` or `getdents` calls.
- Although the cost of allocations doesn't seem too bad, I will look at this again at some point.
- Maybe achieved via a lending iterator type approach? See [link for reference](https://docs.rs/lending-iterator/latest/lending_iterator/)