Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cppcoffee/c-fdleak
https://github.com/cppcoffee/c-fdleak
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cppcoffee/c-fdleak
- Owner: cppcoffee
- Created: 2024-11-30T14:07:40.000Z (23 days ago)
- Default Branch: main
- Last Pushed: 2024-11-30T14:15:59.000Z (23 days ago)
- Last Synced: 2024-11-30T15:24:27.896Z (23 days ago)
- Language: Rust
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# c-fdleak
## Prerequisites
1. stable rust toolchains: `rustup toolchain install stable`
1. nightly rust toolchains: `rustup toolchain install nightly --component rust-src`
1. (if cross-compiling) rustup target: `rustup target add ${ARCH}-unknown-linux-musl`
1. (if cross-compiling) LLVM: (e.g.) `brew install llvm` (on macOS)
1. (if cross-compiling) C toolchain: (e.g.) [`brew install filosottile/musl-cross/musl-cross`](https://github.com/FiloSottile/homebrew-musl-cross) (on macOS)
1. bpf-linker: `cargo install bpf-linker` (`--no-default-features` on macOS)## Build
```shell
$ AYA_BUILD_EBPF=true cargo build --release
```or
```shell
$ make
```## Cross-compiling on macOS
Cross compilation should work on both Intel and Apple Silicon Macs.
```shell
CC=${ARCH}-linux-musl-gcc cargo build --package c-fdleak --release \
--target=${ARCH}-unknown-linux-musl \
--config=target.${ARCH}-unknown-linux-musl.linker=\"${ARCH}-linux-musl-gcc\"
```
The cross-compiled program `target/${ARCH}-unknown-linux-musl/release/c-fdleak` can be
copied to a Linux server or VM and run there.## Usage
```shell
Usage: c-fdleak [OPTIONS] --pidOptions:
-p, --pid pid of the process
-t, --timeout timeout in seconds [default: 30]
-o, --output output file [default: /tmp/fdleak.out]
-v, --verbose verbose mode
-h, --help Print help
-V, --version Print version
```### Example:
```shell
# ./target/release/c-fdleak --pid 5382
```Generating flame graphs:
```shell
# ./FlameGraph/flamegraph.pl /tmp/fdleak.out > /tmp/1.svg
```