events

package
v0.0.0-...-dba8f14 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 8, 2024 License: Apache-2.0 Imports: 0 Imported by: 0

README

pkg/network/protocols/events

Motivation

The purpose of this package is to standardize the communication between user and kernel space across different Universal Service Monitoring (USM) protocols.

Some technical concerns that were factored in the code and are worth mentioning are:

  • eBPF programs of type BPF_PROG_TYPE_SOCKET_FILTER are not (for most Kernel versions) able to directly write events into perf buffers;
  • Reading events off-perf buffers can be quite CPU-intensive. This can be mitigated by properly configuring the watermark option when issuing the perf_event_open syscall. However, there is currently no way to synchronize (eg. flush all buffered events) at a given moment in time[^1], which is a requirement for us.

How to use the library

Kernel Side
#include "protocols/events.h"
USM_EVENTS_INIT(<protocol>, <event_type>, <batch_size>);

This will instantiate the necessary eBPF maps along with two functions:

  • <protocol>_batch_enqueue;
  • <protocol>_batch_flush;
  • is_<protocol>_monitoring_enabled;

Please note that <protocol>_batch_flush requires access to the bpf_perf_event_output helper, which is typically not available to socket filter programs. Because of that we recommend to call it from netif_receive_skb which is associated to the execution of socket filter programs:

SEC("tracepoint/net/netif_receive_skb")
int tracepoint__net__netif_receive_skb(struct pt_regs* ctx) {
    <protocol>_batch_flush(ctx);
    return 0;
}
Userspace Side

Just create a event.Consumer and supply it with a callback argument of type func([]V) that gets executed every time a batch of events is read..

Please also note that the callback must:

  1. copy the data it wishes to hold since the underlying byte array is reclaimed;
  2. be thread-safe, as the callback may be executed concurrently from multiple go-routines;

Aside from that, it is recommended (though not strictly necessary) to call Consumer.Sync() every time there is a connection check in system-probe, so all buffered USM events can be sent to backend.

For a complete integration example, please refer to pkg/network/protocols/http/monitor.go

[^1]: this may be available in the near future since we could probably force wake-up events on the fly via ioctl calls, but this will likely require us to upstream changes to the cilium/ebpf library. There is a Jira card owned by ebpf-platform tracking this, and once this is available we could greatly simplify this package.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL