Cross-platform library for Rust to efficiently find out processes listening on network ports.
It turns out that associating open network ports with the processes that are using them is not a trivial task: this requires interacting with low-level system APIs that are platform-specific, written in C, not well documented, and expensive to call if not used properly.
Despite some Rust libraries to get process information already exist, none of them correlates process ID and name to open network ports in a cross-platform way.
This library wants to fill this gap, and it aims to be:
- Cross-platform: it currently supports Windows, Linux, macOS, FreeBSD, OpenBSD and NetBSD
- Fast: it focuses on performance (see benchmarks) by internally using caching and low-level system APIs
- Simple: it exposes intuitive APIs to get details about the listening processes
- Lightweight: it has only the strictly necessary dependencies
- Windows
- Linux
- macOS
- FreeBSD
- OpenBSD
- NetBSD
- Android
- iOS
- Other?
Add this to your Cargo.toml:
[dependencies]
listeners = "0.5"Get all the listening processes:
if let Ok(listeners) = listeners::get_all() {
for l in listeners {
println!("{l}");
}
}Output:
PID: 440 Process name: ControlCenter Socket: 0.0.0.0:0 Protocol: UDP
PID: 456 Process name: rapportd Socket: [::]:49158 Protocol: TCP
PID: 456 Process name: rapportd Socket: 0.0.0.0:49158 Protocol: TCP
PID: 456 Process name: rapportd Socket: 0.0.0.0:0 Protocol: UDP
PID: 485 Process name: sharingd Socket: 0.0.0.0:0 Protocol: UDP
PID: 516 Process name: WiFiAgent Socket: 0.0.0.0:0 Protocol: UDP
PID: 1480 Process name: rustrover Socket: [::7f00:1]:63342 Protocol: TCP
PID: 2123 Process name: Telegram Socket: 192.168.1.102:49659 Protocol: TCP
PID: 2123 Process name: Telegram Socket: 192.168.1.102:49656 Protocol: TCP
PID: 2156 Process name: Google Chrome Socket: 0.0.0.0:0 Protocol: UDP
PID: 2167 Process name: Google Chrome Helper Socket: 192.168.1.102:60834 Protocol: UDP
PID: 2167 Process name: Google Chrome Helper Socket: 192.168.1.102:53220 Protocol: UDP
PID: 2167 Process name: Google Chrome Helper Socket: 192.168.1.102:59216 Protocol: UDP
For more examples of usage, including how to get listening processes in a more granular way,
check the examples folder.
Below you can find exhaustive benchmarks measuring the performance of this library APIs on all supported platforms, varying the system load (number of running processes and open ports).
The benchmarks include:
listeners::get_all: get all the listening processes and their socketslisteners::get_process_by_port: get the process listening on a specific port- active port: the tested port is randomly selected among the open ports
- inactive port: the tested port is not open
Benchmarks are run on GitHub Actions runners, and results are generated with the help of criterion.
See benchmarks
| System load | listeners::get_all |
listeners::get_process_by_port(active port) |
listeners::get_process_by_port(inactive port) |
|---|---|---|---|
| low | |||
| medium | |||
| high |
See benchmarks
| System load | listeners::get_all |
listeners::get_process_by_port(active port) |
listeners::get_process_by_port(inactive port) |
|---|---|---|---|
| low | |||
| medium | |||
| high |
See benchmarks
| System load | listeners::get_all |
listeners::get_process_by_port(active port) |
listeners::get_process_by_port(inactive port) |
|---|---|---|---|
| low | |||
| medium | |||
| high |
See benchmarks
| System load | listeners::get_all |
listeners::get_process_by_port(active port) |
listeners::get_process_by_port(inactive port) |
|---|---|---|---|
| low | |||
| medium | |||
| high |
See benchmarks
Benchmarks for OpenBSD under high system load are currently unavailable due to the impossibility to further increase the maximum limit of open files within the GitHub Actions runner.
| System load | listeners::get_all |
listeners::get_process_by_port(active port) |
listeners::get_process_by_port(inactive port) |
|---|---|---|---|
| low | |||
| medium |