adapt libbpf-0.8.1
(cherry picked from commit f703657b433a4053745e7bc3ae2b293dbd461794)
This commit is contained in:
parent
bba7469fc2
commit
14381bd859
144
0001-adapt-libbpf-0.8.1.patch
Normal file
144
0001-adapt-libbpf-0.8.1.patch
Normal file
@ -0,0 +1,144 @@
|
|||||||
|
From 0460a04fd537dffc527788613b03202191e10e8d Mon Sep 17 00:00:00 2001
|
||||||
|
From: JofDiamonds <kwb0523@163.com>
|
||||||
|
Date: Tue, 15 Nov 2022 11:32:42 +0800
|
||||||
|
Subject: [PATCH] adapt libbpf-0.8.1
|
||||||
|
|
||||||
|
---
|
||||||
|
bpf/bwm_prio_kern.c | 14 ++++++-------
|
||||||
|
bwmcli.c | 50 ++++++++++++++++++++++++++++++---------------
|
||||||
|
2 files changed, 40 insertions(+), 24 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/bpf/bwm_prio_kern.c b/bpf/bwm_prio_kern.c
|
||||||
|
index 1c59322..68127f9 100644
|
||||||
|
--- a/bpf/bwm_prio_kern.c
|
||||||
|
+++ b/bpf/bwm_prio_kern.c
|
||||||
|
@@ -20,13 +20,13 @@
|
||||||
|
|
||||||
|
#define DEFAULT_CGP_PRIO 0
|
||||||
|
|
||||||
|
-struct bpf_map_def cgrp_prio SEC("maps") = {
|
||||||
|
- .type = BPF_MAP_TYPE_ARRAY,
|
||||||
|
- .key_size = sizeof(unsigned int),
|
||||||
|
- .value_size = sizeof(unsigned int),
|
||||||
|
- .max_entries = 1,
|
||||||
|
- .map_flags = 0,
|
||||||
|
-};
|
||||||
|
+struct {
|
||||||
|
+ __uint(type, BPF_MAP_TYPE_ARRAY);
|
||||||
|
+ __type(key, unsigned int);
|
||||||
|
+ __type(value, unsigned int);
|
||||||
|
+ __uint(max_entries, 1);
|
||||||
|
+ __uint(map_flags, 0);
|
||||||
|
+} cgrp_prio SEC(".maps");
|
||||||
|
|
||||||
|
SEC("cgroup_skb/egress")
|
||||||
|
int _bwm_out_cg(struct __sk_buff *skb)
|
||||||
|
diff --git a/bwmcli.c b/bwmcli.c
|
||||||
|
index f087ea6..75fbfab 100644
|
||||||
|
--- a/bwmcli.c
|
||||||
|
+++ b/bwmcli.c
|
||||||
|
@@ -212,40 +212,59 @@ static int BreakArgs(char *s, char *arg1, char *arg2, unsigned long arg1Len, uns
|
||||||
|
return EXIT_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
-static int ProgLoad(char *prog, struct bpf_object ** obj, int * bpfprogFd)
|
||||||
|
+static int ProgLoad(char *prog, int * bpfprogFd)
|
||||||
|
{
|
||||||
|
- struct bpf_prog_load_attr progLoadAttr = {
|
||||||
|
- .prog_type = BPF_PROG_TYPE_CGROUP_SKB,
|
||||||
|
- .file = prog,
|
||||||
|
- .expected_attach_type = BPF_CGROUP_INET_EGRESS,
|
||||||
|
- .ifindex = 0,
|
||||||
|
- .log_level = 0,
|
||||||
|
- };
|
||||||
|
int mapFd;
|
||||||
|
struct bpf_map *map = NULL;
|
||||||
|
+ struct bpf_object *obj = NULL;
|
||||||
|
+ struct bpf_program *program = NULL;
|
||||||
|
|
||||||
|
if (access(prog, O_RDONLY) < 0) {
|
||||||
|
BWM_LOG_ERR("Error accessing file %s\n", prog);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
- if (bpf_prog_load_xattr(&progLoadAttr, &(*obj), bpfprogFd)) {
|
||||||
|
- BWM_LOG_ERR("ERROR: bpf_prog_load_xattr failed for: %s. errno:%d\n", prog, errno);
|
||||||
|
+
|
||||||
|
+ obj = bpf_object__open(prog);
|
||||||
|
+ if (libbpf_get_error(obj)) {
|
||||||
|
+ BWM_LOG_ERR("ERROR: bpf_object__open failed for: %s. errno:%d\n", prog, errno);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
- map = bpf_object__find_map_by_name(*obj, "cgrp_prio");
|
||||||
|
+ program = bpf_object__next_program(obj, NULL);
|
||||||
|
+ if (!program) {
|
||||||
|
+ BWM_LOG_ERR("ERROR: bpf_object__next_program failed for: %s. errno:%d\n", prog, errno);
|
||||||
|
+ goto err;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ bpf_program__set_type(program, BPF_PROG_TYPE_CGROUP_SKB);
|
||||||
|
+
|
||||||
|
+ if (bpf_object__load(obj)) {
|
||||||
|
+ BWM_LOG_ERR("ERROR: bpf_object__load failed for: %s. errno:%d\n", prog, errno);
|
||||||
|
+ goto err;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ *bpfprogFd = bpf_program__fd(program);
|
||||||
|
+ if (*bpfprogFd < 0) {
|
||||||
|
+ BWM_LOG_ERR("Failed to get program fd. errno:%d\n", errno);
|
||||||
|
+ goto err;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ map = bpf_object__find_map_by_name(obj, "cgrp_prio");
|
||||||
|
if (!map) {
|
||||||
|
BWM_LOG_ERR("Failed to load map cgrp_prio from bpf prog. errno:%d\n", errno);
|
||||||
|
- return -1;
|
||||||
|
+ goto err;
|
||||||
|
}
|
||||||
|
|
||||||
|
mapFd = bpf_map__fd(map);
|
||||||
|
if (mapFd < 0) {
|
||||||
|
BWM_LOG_ERR("Map not found: %d. errno:%d\n", mapFd, errno);
|
||||||
|
- return -1;
|
||||||
|
+ goto err;
|
||||||
|
}
|
||||||
|
|
||||||
|
return mapFd;
|
||||||
|
+err:
|
||||||
|
+ bpf_object__close(obj);
|
||||||
|
+ return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int GetMapFdByProgId(__u32 progId)
|
||||||
|
@@ -377,7 +396,6 @@ static int CgrpV2PrioSet(const char *cgrpPath, int prio)
|
||||||
|
int key = 0;
|
||||||
|
int cgFd;
|
||||||
|
int mapFd;
|
||||||
|
- struct bpf_object *obj = NULL;
|
||||||
|
int bpfprogFd;
|
||||||
|
|
||||||
|
cgFd = open(cgrpPath, O_RDONLY);
|
||||||
|
@@ -392,7 +410,7 @@ static int CgrpV2PrioSet(const char *cgrpPath, int prio)
|
||||||
|
return EXIT_FAIL;
|
||||||
|
}
|
||||||
|
|
||||||
|
- mapFd = ProgLoad(CGRP_PRIO_PROG, &obj, &bpfprogFd);
|
||||||
|
+ mapFd = ProgLoad(CGRP_PRIO_PROG, &bpfprogFd);
|
||||||
|
if (mapFd == -1) {
|
||||||
|
goto err;
|
||||||
|
}
|
||||||
|
@@ -416,11 +434,9 @@ static int CgrpV2PrioSet(const char *cgrpPath, int prio)
|
||||||
|
|
||||||
|
BWM_LOG_INFO("set prio success\n");
|
||||||
|
(void)close(cgFd);
|
||||||
|
- bpf_object__close(obj);
|
||||||
|
return EXIT_OK;
|
||||||
|
err:
|
||||||
|
(void)close(cgFd);
|
||||||
|
- bpf_object__close(obj);
|
||||||
|
return EXIT_FAIL_BPF;
|
||||||
|
}
|
||||||
|
|
||||||
|
--
|
||||||
|
2.33.0
|
||||||
|
|
||||||
@ -1,6 +1,6 @@
|
|||||||
Name: oncn-bwm
|
Name: oncn-bwm
|
||||||
Version: 1.0
|
Version: 1.0
|
||||||
Release: 2
|
Release: 3
|
||||||
Summary: Pod bandwidth management in mixed deployment scenarios of online and offline services
|
Summary: Pod bandwidth management in mixed deployment scenarios of online and offline services
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
URL: https://gitee.com/src-openeuler/oncn-bwm
|
URL: https://gitee.com/src-openeuler/oncn-bwm
|
||||||
@ -10,6 +10,8 @@ BuildRequires: libbpf-devel cmake gcc clang
|
|||||||
Requires: iproute libbpf
|
Requires: iproute libbpf
|
||||||
Requires(preun): bpftool
|
Requires(preun): bpftool
|
||||||
|
|
||||||
|
Patch9001: 0001-adapt-libbpf-0.8.1.patch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Pod bandwidth management in mixed deployment scenarios of online and offline services
|
Pod bandwidth management in mixed deployment scenarios of online and offline services
|
||||||
|
|
||||||
@ -87,6 +89,9 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Nov 15 2022 JofDiamonds <kwb0523@163.com> - 1.0-3
|
||||||
|
- adapt libbpf-0.8.1
|
||||||
|
|
||||||
* Wed Jul 20 2022 wo_cow <niuiqianqian@huawei.com> - 1.0-2
|
* Wed Jul 20 2022 wo_cow <niuiqianqian@huawei.com> - 1.0-2
|
||||||
- add permission to dir
|
- add permission to dir
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user