Documentation
¶
Overview ¶
Package probes provides BPF features checks based on bpftool.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Features ¶
type Features struct {
SystemConfig `json:"system_config"`
}
Features contains BPF feature checks returned by bpftool.
type KernelParam ¶
type KernelParam string
KernelParam is a type based on string which represents CONFIG_* kernel parameters which usually have values "y", "n" or "m".
func (KernelParam) Enabled ¶
func (kp KernelParam) Enabled() bool
Enabled checks whether the kernel parameter is enabled.
func (KernelParam) Module ¶
func (kp KernelParam) Module() bool
Module checks whether the kernel parameter is enabled as a module.
type ProbeManager ¶
type ProbeManager struct {
// contains filtered or unexported fields
}
ProbeManager is a manager of BPF feature checks.
func NewProbeManager ¶
func NewProbeManager() (*ProbeManager, error)
NewProbeManager returns a new instance of ProbeManager - a manager of BPF feature checks.
func (*ProbeManager) SystemConfigProbes ¶
func (p *ProbeManager) SystemConfigProbes() error
SystemConfigProbes performs a check of kernel configuration parameters. It returns an error when parameters required by Cilium are not enabled. It logs warnings when optional parameters are not enabled.
type SystemConfig ¶
type SystemConfig struct {
UnprivilegedBpfDisabled int `json:"unprivileged_bpf_disabled"`
BpfJitEnable int `json:"bpf_jit_enable"`
BpfJitHarden int `json:"bpf_jit_harden"`
BpfJitKallsyms int `json:"bpf_jit_kallsyms"`
BpfJitLimit int `json:"bpf_jit_limit"`
ConfigBpf KernelParam `json:"CONFIG_BPF"`
ConfigBpfSyscall KernelParam `json:"CONFIG_BPF_SYSCALL"`
ConfigHaveEbpfJit KernelParam `json:"CONFIG_HAVE_EBPF_JIT"`
ConfigBpfJit KernelParam `json:"CONFIG_BPF_JIT"`
ConfigBpfJitAlwaysOn KernelParam `json:"CONFIG_BPF_JIT_ALWAYS_ON"`
ConfigCgroups KernelParam `json:"CONFIG_CGROUPS"`
ConfigCgroupBpf KernelParam `json:"CONFIG_CGROUP_BPF"`
ConfigCgroupNetClassID KernelParam `json:"CONFIG_CGROUP_NET_CLASSID"`
ConfigSockCgroupData KernelParam `json:"CONFIG_SOCK_CGROUP_DATA"`
ConfigBpfEvents KernelParam `json:"CONFIG_BPF_EVENTS"`
ConfigKprobeEvents KernelParam `json:"CONFIG_KPROBE_EVENTS"`
ConfigUprobeEvents KernelParam `json:"CONFIG_UPROBE_EVENTS"`
ConfigTracing KernelParam `json:"CONFIG_TRACING"`
ConfigFtraceSyscalls KernelParam `json:"CONFIG_FTRACE_SYSCALLS"`
ConfigFunctionErrorInjection KernelParam `json:"CONFIG_FUNCTION_ERROR_INJECTION"`
ConfigBpfKprobeOverride KernelParam `json:"CONFIG_BPF_KPROBE_OVERRIDE"`
ConfigNet KernelParam `json:"CONFIG_NET"`
ConfigXdpSockets KernelParam `json:"CONFIG_XDP_SOCKETS"`
ConfigLwtunnelBpf KernelParam `json:"CONFIG_LWTUNNEL_BPF"`
ConfigNetActBpf KernelParam `json:"CONFIG_NET_ACT_BPF"`
ConfigNetClsBpf KernelParam `json:"CONFIG_NET_CLS_BPF"`
ConfigNetClsAct KernelParam `json:"CONFIG_NET_CLS_ACT"`
ConfigNetSchIngress KernelParam `json:"CONFIG_NET_SCH_INGRESS"`
ConfigXfrm KernelParam `json:"CONFIG_XFRM"`
ConfigIPRouteClassID KernelParam `json:"CONFIG_IP_ROUTE_CLASSID"`
ConfigIPv6Seg6Bpf KernelParam `json:"CONFIG_IPV6_SEG6_BPF"`
ConfigBpfLircMode2 KernelParam `json:"CONFIG_BPF_LIRC_MODE2"`
ConfigBpfStreamParser KernelParam `json:"CONFIG_BPF_STREAM_PARSER"`
ConfigNetfilterXtMatchBpf KernelParam `json:"CONFIG_NETFILTER_XT_MATCH_BPF"`
ConfigBpfilter KernelParam `json:"CONFIG_BPFILTER"`
ConfigBpfilterUmh KernelParam `json:"CONFIG_BPFILTER_UMH"`
ConfigTestBpf KernelParam `json:"CONFIG_TEST_BPF"`
}
SystemConfig contains kernel configuration and sysctl parameters related to BPF functionality.