Slide 15
Slide 15 text
struct
{
__uint(type, BPF_MAP_TYPE_LPM_TRIE);
__uint(max_entries, 256);
__type(key, struct ipv4_lpm_key);
__type(value, __u32);
__uint(map_flags, BPF_F_NO_PREALLOC);
} denied_ipaddr_map SEC(".maps");
int handle_security_socket_connect(struct pt_regs *ctx)
{
...
struct ipv4_lpm_key key = {
.prefixlen = 32,
.data = evt.dst.s_addr
};
if (bpf_map_lookup_elem(&denied_ipaddr_map, &key)) {
bpf_ringbuf_output(&events, &evt, sizeof(evt), 0);
}
...
}
err =
objs.DeniedIPAddrMap.Put(&socketConnectIpv4LpmKey{
Prefixlen: 32,
Data: network.IPToInt(exampleComIPAddr),
}, uint32(0))
https://github.com/mrtc0/ebpf-demo/blob/master/bpf/trace_connect.c
https://github.com/mrtc0/ebpf-demo/blob/master/pkg/tracer/socket_connect.go