Browse Source

aya: HashMap: add support for LRU maps

Alessandro Decina 4 years ago
parent
commit
7c6ae76975
1 changed files with 23 additions and 2 deletions
  1. 23 2
      aya/src/maps/hash_map.rs

+ 23 - 2
aya/src/maps/hash_map.rs

@@ -8,7 +8,7 @@ use std::{
 };
 
 use crate::{
-    generated::bpf_map_type::BPF_MAP_TYPE_HASH,
+    generated::bpf_map_type::{BPF_MAP_TYPE_HASH, BPF_MAP_TYPE_LRU_HASH},
     maps::{IterableMap, Map, MapError, MapIter, MapKeys, MapRef, MapRefMut},
     sys::{bpf_map_delete_elem, bpf_map_lookup_elem, bpf_map_update_elem},
     Pod,
@@ -44,7 +44,7 @@ impl<T: Deref<Target = Map>, K: Pod, V: Pod> HashMap<T, K, V> {
         let map_type = map.obj.def.map_type;
 
         // validate the map definition
-        if map_type != BPF_MAP_TYPE_HASH as u32 {
+        if map_type != BPF_MAP_TYPE_HASH as u32 && map_type != BPF_MAP_TYPE_LRU_HASH as u32 {
             return Err(MapError::InvalidMapType {
                 map_type: map_type as u32,
             })?;
@@ -286,6 +286,27 @@ mod tests {
         assert!(HashMap::<_, u32, u32>::try_from(&map).is_ok())
     }
 
+    #[test]
+    fn test_try_from_ok_lru() {
+        let map = Map {
+            obj: obj::Map {
+                name: "TEST".to_string(),
+                def: bpf_map_def {
+                    map_type: BPF_MAP_TYPE_LRU_HASH as u32,
+                    key_size: 4,
+                    value_size: 4,
+                    max_entries: 1024,
+                    map_flags: 0,
+                },
+                section_index: 0,
+                data: Vec::new(),
+            },
+            fd: Some(42),
+        };
+
+        assert!(HashMap::<_, u32, u32>::try_from(&map).is_ok())
+    }
+
     #[test]
     fn test_insert_syscall_error() {
         override_syscall(|_| sys_error(EFAULT));