Require go 1.25, Update cilium/ebpf to 0.22.0 and golang.org/x dependencies - #75
Merged
Conversation
It's currently the oldest supported release.
The API has changed a bit: - ebpf.SanitizeName() is done automatically, and has been removed. - ebpf.CollectionSpec.RewriteMaps() has been replaced by ebpf.CollectionOptions.MapReplacements. To avoid breaking our API, keep a slimmed down version of RewriteMaps(), and add a new PatchOpts() function that uses MapReplacements. - asm.StoreImm(DWord) has been incorrectly removed. cilium/ebpf#2066 fixes it upstream, in the mean time we can work around it with a temporary register.
Newer kernels have started rejecting BPF_PROG_RUN calls with an empty packet. Pass in an empty 14 byte buffer.
Dhiver
approved these changes
Jul 25, 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.
Housekeeping: switch to the last supported golang version, and update our dependencies. cilium/ebpf had a few breaking changes:
ebpf.SanitizeName()is done automatically, and has been removed.ebpf.CollectionSpec.RewriteMaps()has been replaced byebpf.CollectionOptions.MapReplacements. To avoid breaking our API, keep a slimmed down version ofRewriteMaps(), and add a newPatchOpts()function that usesMapReplacements.asm.StoreImm(DWord)has been incorrectly removed. asm: Allow StoreImm with DWord size cilium/ebpf#2066 fixes it upstream, in the mean time we can work around it with a temporary register.