libbpf 开发指南:自动加载BPF程序所需的内核模块

文章介绍了如何使用BPF_program__autoload函数自动加载内核模块的BPF程序,并提供了C代码示例展示加载过程。同时,给出了Makefile和CMakeLists.txt两个构建工具的配置示例,帮助编译和链接BPF相关项目。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

目录

函数原型与解释

代码demo

makefile

cmake

期望输出


函数原型与解释

bool bpf_program__autoload(const struct bpf_program *prog);

参数说明:

  • prog:指向 struct bpf_program 的指针,表示要自动加载内核模块的BPF程序。

返回值:

  • 成功返回 true,失败返回 false。

代码demo

#include <bpf/bpf_helpers.h>
#include <linux/bpf.h>

SEC("kprobe/__x64_sys_getpid")
int bpf_prog1(struct pt_regs *ctx) {
    return 0;
}

char _license[] SEC("license") = "GPL";
#include <stdio.h>
#include <stdlib.h>
#include <bpf/libbpf.h>

int main() {
    struct bpf_object *obj;
    struct bpf_program *prog;
    const char *section_name;

    obj = bpf_object__open_file("example.o", NULL);
    if (!obj) {
        printf("Failed to open BPF object file\n");
        return 1;
    }

    prog = bpf_program__next(NULL, obj);
    if (!prog) {
        printf("Failed to find BPF program\n");
        bpf_object__close(obj);
        return 1;
    }

    section_name = bpf_program__section_name(prog);
    printf("BPF program section name: %s\n", section_name);

    bpf_object__close(obj);
    return 0;
}

makefile

CC=gcc
CFLAGS=-I/usr/include/bpf -I./include
LDFLAGS=-lbpf

all: test

test: test.c
	$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)

clean:
	rm -f test

cmake

cmake_minimum_required(VERSION 2.8)
project(test)

set(CMAKE_C_FLAGS "-I/usr/include/bpf -I./include")

add_executable(test test.c)
target_link_libraries(test bpf)

期望输出

make

./demo

BPF program loaded successfully

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Ym影子

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值