-
Notifications
You must be signed in to change notification settings - Fork 286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
aya: skip map creation and relocation for maps that should be ignored #968
Open
martinsoees
wants to merge
19
commits into
aya-rs:main
Choose a base branch
from
martinsoees:ebpfloader_disable_unsupported_maps
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
74f5acf
Ignore relocation of maps that should be ignored.
martinsoees 3525560
Added documentation to
martinsoees 5276a91
Remove println import, added code comments and re-added patch_map_dat…
martinsoees c725b9d
All tests are passing now
martinsoees aad4ad4
Changed name to 'ignore_map_by_type' and created a similar function t…
martinsoees b49c300
Added integration tests for ignoring maps by type and by name
martinsoees 0e35566
indentation
martinsoees ad2dc1b
Fixed doc test
martinsoees c3084fd
removed newline at end of file
martinsoees b05ab15
Applied cargo fmt to fix formatting
martinsoees d9cd8de
Properly cfg gate std and non-std
martinsoees 7b9f1d2
Review comments
martinsoees 2e0bc82
Review comments
martinsoees 71ec04e
Proper rustdoc reference to Ebpfloader::set_global
martinsoees 37de0d1
Merge branch 'main' into ebpfloader_disable_unsupported_maps
martinsoees 0b0d4c7
Map import unused in usage example
martinsoees 787d08b
remove unintended explicit type declaration in code unrelated to this PR
martinsoees 492feb2
Remove relocation test by type
martinsoees d7e5f31
cargo fmt
martinsoees File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#![no_std] | ||
#![no_main] | ||
|
||
use aya_ebpf::{ | ||
macros::{map, uprobe}, | ||
maps::{PerfEventArray, RingBuf}, | ||
programs::ProbeContext, | ||
}; | ||
|
||
#[no_mangle] | ||
pub static RINGBUF_SUPPORTED: i32 = 0; | ||
|
||
#[map] | ||
static mut RINGBUF: RingBuf = RingBuf::with_byte_size(0, 0); | ||
|
||
#[map] | ||
static mut PERFBUF: PerfEventArray<u64> = PerfEventArray::with_max_entries(1, 0); | ||
|
||
#[uprobe] | ||
pub fn test_ignored_map_relocation(ctx: ProbeContext) { | ||
if unsafe { core::ptr::read_volatile(&RINGBUF_SUPPORTED) == 1 } { | ||
let _ = unsafe { RINGBUF.output(&1, 0).map_err(|_| 1u32) }; | ||
} else { | ||
unsafe { PERFBUF.output(&ctx, &1, 0) }; | ||
} | ||
} | ||
|
||
#[cfg(not(test))] | ||
#[panic_handler] | ||
fn panic(_info: &core::panic::PanicInfo) -> ! { | ||
loop {} | ||
} |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this is correct, it's just not getting exercised by the test because we do have symbols. We switched to putting all maps in the same section (like libbpf does), so I think that this would skip all the maps?