1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (C) 2023. Huawei Technologies Co., Ltd */
5 #include <bpf/bpf_helpers.h>
9 struct inner_map_type {
10 __uint(type, BPF_MAP_TYPE_ARRAY);
12 __uint(value_size, 4);
13 __uint(max_entries, 1);
14 } inner_map SEC(".maps");
17 __uint(type, BPF_MAP_TYPE_ARRAY_OF_MAPS);
20 __uint(max_entries, 1);
21 __array(values, struct inner_map_type);
22 } outer_array_map SEC(".maps") = {
29 __uint(type, BPF_MAP_TYPE_HASH_OF_MAPS);
32 __uint(max_entries, 1);
33 __array(values, struct inner_map_type);
34 } outer_htab_map SEC(".maps") = {
40 char _license[] SEC("license") = "GPL";
44 static int acc_map_in_map(void *outer_map)
46 int i, key, value = 0xdeadbeef;
49 if ((bpf_get_current_pid_tgid() >> 32) != tgid)
52 /* Find nonexistent inner map */
54 inner_map = bpf_map_lookup_elem(outer_map, &key);
58 /* Find the old inner map */
60 inner_map = bpf_map_lookup_elem(outer_map, &key);
64 /* Wait for the old inner map to be replaced */
65 for (i = 0; i < 2048; i++)
66 bpf_map_update_elem(inner_map, &key, &value, 0);
71 SEC("?kprobe/" SYS_PREFIX "sys_getpgid")
72 int access_map_in_array(void *ctx)
74 return acc_map_in_map(&outer_array_map);
77 SEC("?fentry.s/" SYS_PREFIX "sys_getpgid")
78 int sleepable_access_map_in_array(void *ctx)
80 return acc_map_in_map(&outer_array_map);
83 SEC("?kprobe/" SYS_PREFIX "sys_getpgid")
84 int access_map_in_htab(void *ctx)
86 return acc_map_in_map(&outer_htab_map);
89 SEC("?fentry.s/" SYS_PREFIX "sys_getpgid")
90 int sleepable_access_map_in_htab(void *ctx)
92 return acc_map_in_map(&outer_htab_map);