Levi Zim

Results 91 issues of Levi Zim

Semicolons are unnecessary when there's only one statement on a single line.

This patch introduces a "plain" cross-compilation mode that cross compiles directly using cargo build and target-specific linker(gcc). It can be used for architectures where cargo-zigbuild is broken(e.g. riscv64 #1793, loongarch64...

First, Thanks for this awesome project. I have read the documentation and didn't figure out how to disable cargo-zigbuild. For some targets, zigbuild is broken(riscv64, loongarch64 #1645). I simply want...

Mostly a work in progress. Closes #81

I have bisected a performance regression of log mode. It is introduced in #60 which uses weak hash table for implementing garbage collection. My current guess is that in log...

bug
priority-high
log
difficulty-medium
perf

We can export exec data as https://opentelemetry.io/docs/concepts/signals/traces/, which can then be visualized by https://grafana.com/docs/grafana/latest/panels-visualizations/visualizations/traces/, https://github.com/ymtdzzz/otel-tui or https://tracelens.io/

enhancement
priority-normal
tracer
difficulty-difficult

This issue tracks blockers for the stabilization of the currently experimental eBPF backend. ## Blockers - [x] Evaluate if the eBPF code handles all error cases correctly and reports back...

tracer
tech-debt

We can use G6(like what I did in https://github.com/kxxt/cargo-visualize) to create online visualization of exec graph. The nodes are filenames and the edges carry extra information like args and environment...

enhancement
priority-low
difficulty-hard

Currently we show path fds obtained from operations with `open_tree + OPEN_TREE_CLONE` as `/` if they get used in a later execveat. - https://man7.org/linux/man-pages/man2/open.2.html - https://lwn.net/Articles/829496/ ```c #define _GNU_SOURCE #include...

bug

We could add a sanitizer command that catches issues related to fork-exec e.g. - FD leak - inherited signal mask - argv is null

enhancement
log
difficulty-medium