release: 0.15.29 (eBPF execve parent-PID capture)#1124
Merged
Conversation
Carries #1123: the eBPF execve handler now reads task_struct->real_parent->tgid in-kernel (BTF-resolved TASK_OFFSETS map) so the fileless-systemd parent-lineage gate (0.15.28) actually engages in prod. The 0.15.28 re-audit found execve events carried ppid=0 in-kernel (4995/5000); every ppid came from a userspace /proc fallback that misses short-lived execs (systemd sealed-executor fexecve). Validated live on test001: comm=systemd /proc/self/fd/9 -> ppid=1 -> gate suppresses. Version bump (Cargo.toml + workspace lock + agents-install token) + CHANGELOG [0.15.29]. No code change beyond #1123 already on main. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
esteves-uk
approved these changes
Jun 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Carries #1123 (merged): the eBPF execve handler now reads
task_struct->real_parent->tgidin-kernel via a BTF-resolvedTASK_OFFSETSmap, so the fileless-systemd parent-lineage gate (0.15.28) actually engages in prod.Why
The 0.15.28 post-deploy re-audit found
fileless:systemdstill firing on Azure. Root cause: the eBPF execve handler hardcodedevent.ppid = 0; every prod execveppidcame from a userspace/proc/<pid>/statusfallback that misses short-lived execs — notably systemd's sealed-executorfexecveof/proc/self/fd/N(audit:ppid=0on 4995/5000 execve). So the 0.15.28 gate, which needs the parent, almost never engaged.Validated live (test001, x86_64 k6.x)
verifier accepts the program (27 hooks) ·
TASK_OFFSETSresolves from BTF (real_parent=2504 tgid=2492) ·comm=systemd cmd=/proc/self/fd/9→ppid=1→ gate resolves/proc/1/exe=systemd→ suppresses. aarch64 offsets BTF-resolve identically; verifier-load checked on the Oracle deploy.This PR
Version bump
0.15.28→0.15.29(Cargo.toml + workspace lock + agents-install token) + CHANGELOG[0.15.29]. No code change beyond #1123 already on main.After approval: tag
v0.15.29→ release.yml both arches → deploy Azure + Oracle → re-audit to confirmfileless:systemdfinally drops.🤖 Generated with Claude Code