map_test.rs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // Socket Filter program for testing with an arbitrary program with maps.
  2. // This is mainly used in tests with consideration for old kernels.
  3. #![no_std]
  4. #![no_main]
  5. use aya_ebpf::{
  6. macros::{map, socket_filter},
  7. maps::{Array, HashMap},
  8. programs::SkBuffContext,
  9. };
  10. // Introduced in kernel v3.19.
  11. #[map]
  12. static FOO: Array<u32> = Array::<u32>::with_max_entries(10, 0);
  13. // Introduced in kernel v3.19.
  14. #[map(name = "BAR")]
  15. static BAZ: HashMap<u32, u8> = HashMap::<u32, u8>::with_max_entries(8, 0);
  16. // The limit of map names is 16 (including a NUL byte). Ensure that we are
  17. // able to create maps with names exceeding that limit by truncating them.
  18. #[map(name = "MAP_WITH_LOOOONG_NAAAAAAAAME")]
  19. static MAP_WITH_LOOOONG_NAAAAAAAAME: HashMap<u32, u8> = HashMap::<u32, u8>::with_max_entries(8, 0);
  20. // Introduced in kernel v3.19.
  21. #[socket_filter]
  22. pub fn simple_prog(_ctx: SkBuffContext) -> i64 {
  23. // So that these maps show up under the `map_ids` field.
  24. FOO.get(0);
  25. // If we use the literal value `0` instead of the local variable `i`, then an additional
  26. // `.rodata` map will be associated with the program.
  27. let i = 0;
  28. BAZ.get_ptr(&i);
  29. 0
  30. }
  31. #[cfg(not(test))]
  32. #[panic_handler]
  33. fn panic(_info: &core::panic::PanicInfo) -> ! {
  34. loop {}
  35. }