I am trying to access fmap which is already present in cgroup skb bpf object file, from tc egress ebpf hook.
By default, the map is getting created in /sys/fs/bpf/tc/globals/fmap. But i want to access the /sys/fs/bpf/fmap in tc egress cgroup. How to pass fmap path to tc program.
tc filter add dev egress bpf object-file ./parse_simple.o section simple direct-action
struct flow
{
__be32 saddr;
__be32 daddr;
};
struct bpf_elf_map SEC("maps") fmap = {
.type = BPF_MAP_TYPE_LRU_HASH,
.size_key = sizeof(struct flow),
.size_value = sizeof(u32),
.pinning = PIN_GLOBAL_NS,
.max_elem = 100,
};
libbpf bpf_map__pin()
can be used to set the pin path. So if I set the path asPIN_GLOBAL_NS
(/sys/fs/bpf/tc/globals
) in thecgroup skb
loading program,tc
is able to access the same map. But I don't know the reverse (access the map which is pinned in nontc
base path [example:/sys/fs/bpf/fmap
]).Reference