xref: /DragonOS/docs/kernel/trace/eBPF.md (revision fae6e9ade46a52976ad5d099643d51cc20876448)
1# eBPF
2
3> 作者: 陈林峰
4>
5> Email: chenlinfeng25@outlook.com
6
7## 概述
8
9eBPF 是一项革命性的技术,起源于 Linux 内核,它可以在特权上下文中(如操作系统内核)运行沙盒程序。它用于安全有效地扩展内核的功能,而无需通过更改内核源代码或加载内核模块的方式来实现。
10
11从历史上看,由于内核具有监督和控制整个系统的特权,操作系统一直是实现可观测性、安全性和网络功能的理想场所。同时,由于操作系统内核的核心地位和对稳定性和安全性的高要求,操作系统内核很难快速迭代发展。因此在传统意义上,与在操作系统本身之外实现的功能相比,操作系统级别的创新速度要慢一些。
12
13eBPF 从根本上改变了这个方式。通过允许在操作系统中运行沙盒程序的方式,应用程序开发人员可以运行 eBPF 程序,以便在运行时向操作系统添加额外的功能。然后在 JIT 编译器和验证引擎的帮助下,操作系统确保它像本地编译的程序一样具备安全性和执行效率。这引发了一股基于 eBPF 的项目热潮,它们涵盖了广泛的用例,包括下一代网络实现、可观测性和安全功能等领域。
14
15## eBPF In DragonOS
16
17在一个新的OS上添加eBPF的支持需要了解eBPF的运行过程,通常,eBPF需要用户态工具和内核相关基础设施配合才能发挥其功能。而新的OS通常会兼容Linux上的应用程序,这可以进一步简化对用户态工具的移植工作,只要内核实现相关的系统调用和功能,就可以配合已有的工具完成eBPF的支持。
18
19## eBPF的运行流程
20
21![image-20240909165945192](./ebpf_flow.png)
22
23如图所示,eBPF程序的运行过程分为三个主要步骤:
24
251. 源代码->二进制
26    1. 用户可以使用python/C/Rust编写eBPF程序,并使用相关的工具链编译源代码到二进制程序
27    2. 这个步骤中,用户需要合理使用helper函数丰富eBPF程序功能
282. 加载eBPF程序
29    1. 用户态的工具库会封装内核提供的系统调用接口,以简化用户的工作。用户态工具对eBPF程序经过预处理后发出系统调用,请求内核加载eBPF程序。
30    1. 内核首先会对eBPF程序进行验证,检查程序的正确性和合法性,同时也会对程序做进一步的处理
31    1. 内核会根据用户请求,将eBPF程序附加到内核的挂载点上(kprobe/uprobe/trace_point)
32    1. 在内核运行期间,当这些挂载点被特定的事件触发, eBPF程序就会被执行
333. 数据交互
34    1. eBPF程序可以收集内核的信息,用户工具可以选择性的获取这些信息
35    2. eBPF程序可以直接将信息输出到文件中,用户工具通过读取和解析文件中的内容拿到信息
36    3. eBPF程序通过Map在内核和用户态之间共享和交换数据
37
38
39
40## 用户态支持
41
42用户态的eBPF工具库有很多,比如C的libbpf,python的bcc, Rust的Aya,总体来说,这些工具的处理流程都大致相同。DragonOS当前支持[Aya](https://github.com/aya-rs/aya)框架编写的eBPF程序,以Aya为例,用户态的工具的处理过程如下:
43
441. 提供eBPF使用的helper函数和Map抽象,方便实现eBPF程序
452. 处理编译出来的eBPF程序,调用系统调用创建Map,获得对应的文件描述符
463. 根据需要,更新Map的值(.data)
474. 根据重定位信息,对eBPF程序的相关指令做修改
485. 根据内核版本,对eBPF程序中的bpf to bpf call进行处理
496. 加载eBPF程序到内核中
507. 对系统调用封装,提供大量的函数帮助访问eBPF的信息并与内核交互
51
52DragonOS对Aya 库的支持并不完整。通过对Aya库的删减,我们实现了一个较小的[tiny-aya](https://github.com/DragonOS-Community/tiny-aya)。为了确保后期对Aya的兼容,tiny-aya只对Aya中的核心工具aya做了修改**,其中一些函数被禁用,因为这些函数的所需的系统调用或者文件在DragonOS中还未实现**。
53
54### Tokio
55
56Aya需要使用异步运行时,通过增加一些系统调用和修复一些错误DragonOS现在已经支持基本的tokio运行时。
57
58### 使用Aya创建eBPF程序
59
60与Aya官方提供的[文档](https://aya-rs.dev/book/start/development/)所述,只需要根据其流程安装对应的Rust工具链,就可以按照模板创建eBPF项目。以当前实现的`syscall_ebf`为例,这个程序的功能是统计系统调用的次数,并将其存储在一个HashMap中。
61
62```
63├── Cargo.toml
64├── README.md
65├── syscall_ebpf
66├── syscall_ebpf-common
67├── syscall_ebpf-ebpf
68└── xtask
69```
70
71user/app目录中,项目结构如上所示:
72
73- `syscall_ebpf-ebpf`是 eBPF代码的实现目录,其会被编译到字节码
74- `syscall_ebpf-common` 是公共库,方便内核和用户态进行信息交互
75- `syscall_ebpf` 是用户态程序,其负责加载eBPF程序并获取eBPF程序产生的数据
76- `xtask` 是一个命令行工具,方便用户编译和运行用户态程序
77
78为了在DragonOS中运行用户态程序,暂时还不能直接使用模板创建的项目:
79
801. 这个项目不符合DragonOS对用户程序的项目结构要求,当然这可以通过稍加修改完成
812. 因为DragonOS对tokio运行时的支持还不是完整体,需要稍微修改一下使用方式
82
83```
84#[tokio::main(flavor = "current_thread")]
85async fn main() -> Result<(), Box<dyn Error>> {
86```
87
883. 因为对Aya支持不是完整体,因此项目依赖的aya和aya-log需要换成tiny-aya中的实现。
89
90```
91[dependencies]
92aya = { git = "https://github.com/DragonOS-Community/tiny-aya.git" }
93aya-log = { git = "https://github.com/DragonOS-Community/tiny-aya.git" }
94```
95
96只需要稍加修改,就可以利用Aya现有的工具完成eBPF程序的实现。
97
98## 内核态支持
99
100内核态支持主要为三个部分:
101
1021. kprobe实现:位于目录`kernel/crates/kprobe`
1032. rbpf运行时:位于目录`kernel/crates/rbpf`
1043. 系统调用支持
1054. helper函数支持
106
107### rbpf
108
109由于rbpf之前只是用于运行一些简单的eBPF程序,其需要通过一些修改才能运行更复杂的程序。
110
1111. 增加bpf to bpf call 的支持:通过增加新的栈抽象和保存和恢复必要的寄存器数据
1122. 关闭内部不必要的内存检查,这通常由内核的验证器完成
1133. 增加带所有权的数据结构避免生命周期的限制
114
115
116
117### 系统调用
118
119eBPF相关的系统调用都集中在`bpf()` 上,通过参数cmd来进一步区分功能,目前对其支持如下:
120
121```rust
122pub fn bpf(cmd: bpf_cmd, attr: &bpf_attr) -> Result<usize> {
123    let res = match cmd {
124        // Map related commands
125        bpf_cmd::BPF_MAP_CREATE => map::bpf_map_create(attr),
126        bpf_cmd::BPF_MAP_UPDATE_ELEM => map::bpf_map_update_elem(attr),
127        bpf_cmd::BPF_MAP_LOOKUP_ELEM => map::bpf_lookup_elem(attr),
128        bpf_cmd::BPF_MAP_GET_NEXT_KEY => map::bpf_map_get_next_key(attr),
129        bpf_cmd::BPF_MAP_DELETE_ELEM => map::bpf_map_delete_elem(attr),
130        bpf_cmd::BPF_MAP_LOOKUP_AND_DELETE_ELEM => map::bpf_map_lookup_and_delete_elem(attr),
131        bpf_cmd::BPF_MAP_LOOKUP_BATCH => map::bpf_map_lookup_batch(attr),
132        bpf_cmd::BPF_MAP_FREEZE => map::bpf_map_freeze(attr),
133        // Program related commands
134        bpf_cmd::BPF_PROG_LOAD => prog::bpf_prog_load(attr),
135        // Object creation commands
136        bpf_cmd::BPF_BTF_LOAD => {
137            error!("bpf cmd {:?} not implemented", cmd);
138            return Err(SystemError::ENOSYS);
139        }
140        ty => {
141            unimplemented!("bpf cmd {:?} not implemented", ty)
142        }
143    };
144    res
145}
146```
147
148其中对创建Map命令会再次细分,以确定具体的Map类型,目前我们对通用的Map基本添加了支持:
149
150```rust
151bpf_map_type::BPF_MAP_TYPE_ARRAY
152bpf_map_type::BPF_MAP_TYPE_PERCPU_ARRAY
153bpf_map_type::BPF_MAP_TYPE_PERF_EVENT_ARRAY
154bpf_map_type::BPF_MAP_TYPE_HASH
155bpf_map_type::BPF_MAP_TYPE_PERCPU_HASH
156bpf_map_type::BPF_MAP_TYPE_QUEUE
157bpf_map_type::BPF_MAP_TYPE_STACK
158bpf_map_type::BPF_MAP_TYPE_LRU_HASH
159bpf_map_type::BPF_MAP_TYPE_LRU_PERCPU_HASH
160
161bpf_map_type::BPF_MAP_TYPE_CPUMAP
162| bpf_map_type::BPF_MAP_TYPE_DEVMAP
163| bpf_map_type::BPF_MAP_TYPE_DEVMAP_HASH => {
164    error!("bpf map type {:?} not implemented", map_meta.map_type);
165    Err(SystemError::EINVAL)?
166}
167```
168
169所有的Map都会实现定义好的接口,这个接口参考Linux的实现定义:
170
171```rust
172pub trait BpfMapCommonOps: Send + Sync + Debug + CastFromSync {
173    /// Lookup an element in the map.
174    ///
175    /// See https://ebpf-docs.dylanreimerink.nl/linux/helper-function/bpf_map_lookup_elem/
176    fn lookup_elem(&mut self, _key: &[u8]) -> Result<Option<&[u8]>> {
177        Err(SystemError::ENOSYS)
178    }
179    /// Update an element in the map.
180    ///
181    /// See https://ebpf-docs.dylanreimerink.nl/linux/helper-function/bpf_map_update_elem/
182    fn update_elem(&mut self, _key: &[u8], _value: &[u8], _flags: u64) -> Result<()> {
183        Err(SystemError::ENOSYS)
184    }
185    /// Delete an element from the map.
186    ///
187    /// See https://ebpf-docs.dylanreimerink.nl/linux/helper-function/bpf_map_delete_elem/
188    fn delete_elem(&mut self, _key: &[u8]) -> Result<()> {
189        Err(SystemError::ENOSYS)
190    }
191    /// For each element in map, call callback_fn function with map,
192    /// callback_ctx and other map-specific parameters.
193    ///
194    /// See https://ebpf-docs.dylanreimerink.nl/linux/helper-function/bpf_for_each_map_elem/
195    fn for_each_elem(&mut self, _cb: BpfCallBackFn, _ctx: *const u8, _flags: u64) -> Result<u32> {
196        Err(SystemError::ENOSYS)
197    }
198    /// Look up an element with the given key in the map referred to by the file descriptor fd,
199    /// and if found, delete the element.
200    fn lookup_and_delete_elem(&mut self, _key: &[u8], _value: &mut [u8]) -> Result<()> {
201        Err(SystemError::ENOSYS)
202    }
203    /// perform a lookup in percpu map for an entry associated to key on cpu.
204    fn lookup_percpu_elem(&mut self, _key: &[u8], cpu: u32) -> Result<Option<&[u8]>> {
205        Err(SystemError::ENOSYS)
206    }
207    /// Get the next key in the map. If key is None, get the first key.
208    ///
209    /// Called from syscall
210    fn get_next_key(&self, _key: Option<&[u8]>, _next_key: &mut [u8]) -> Result<()> {
211        Err(SystemError::ENOSYS)
212    }
213    /// Push an element value in map.
214    fn push_elem(&mut self, _value: &[u8], _flags: u64) -> Result<()> {
215        Err(SystemError::ENOSYS)
216    }
217    /// Pop an element value from map.
218    fn pop_elem(&mut self, _value: &mut [u8]) -> Result<()> {
219        Err(SystemError::ENOSYS)
220    }
221    /// Peek an element value from map.
222    fn peek_elem(&self, _value: &mut [u8]) -> Result<()> {
223        Err(SystemError::ENOSYS)
224    }
225    /// Freeze the map.
226    ///
227    /// It's useful for .rodata maps.
228    fn freeze(&self) -> Result<()> {
229        Err(SystemError::ENOSYS)
230    }
231    /// Get the first value pointer.
232    fn first_value_ptr(&self) -> *const u8 {
233        panic!("value_ptr not implemented")
234    }
235}
236```
237
238联通eBPF和kprobe的系统调用是[`perf_event_open`](https://man7.org/linux/man-pages/man2/perf_event_open.2.html),这个系统调用在Linux中非常复杂,因此Dragon中并没有按照Linux进行实现,目前只支持其中两个功能:
239
240
241
242```rust
243match args.type_ {
244    // Kprobe
245    // See /sys/bus/event_source/devices/kprobe/type
246    perf_type_id::PERF_TYPE_MAX => {
247        let kprobe_event = kprobe::perf_event_open_kprobe(args);
248        Box::new(kprobe_event)
249    }
250    perf_type_id::PERF_TYPE_SOFTWARE => {
251        // For bpf prog output
252        assert_eq!(args.config, perf_sw_ids::PERF_COUNT_SW_BPF_OUTPUT);
253        assert_eq!(
254            args.sample_type,
255            Some(perf_event_sample_format::PERF_SAMPLE_RAW)
256        );
257        let bpf_event = bpf::perf_event_open_bpf(args);
258        Box::new(bpf_event)
259    }
260}
261```
262
263- 其中一个`PERF_TYPE_SOFTWARE`是用来创建软件定义的事件,`PERF_COUNT_SW_BPF_OUTPUT` 确保这个事件用来采集bpf的输出。
264- `PERF_TYPE_MAX` 通常指示创建kprobe/uprobe事件,也就是用户程序使用kprobe的途径之一,用户程序可以将eBPF程序绑定在这个事件上
265
266同样的,perf不同的事件也实现定义的接口:
267
268```rust
269pub trait PerfEventOps: Send + Sync + Debug + CastFromSync + CastFrom {
270    fn mmap(&self, _start: usize, _len: usize, _offset: usize) -> Result<()> {
271        panic!("mmap not implemented for PerfEvent");
272    }
273    fn set_bpf_prog(&self, _bpf_prog: Arc<File>) -> Result<()> {
274        panic!("set_bpf_prog not implemented for PerfEvent");
275    }
276    fn enable(&self) -> Result<()> {
277        panic!("enable not implemented");
278    }
279    fn disable(&self) -> Result<()> {
280        panic!("disable not implemented");
281    }
282    fn readable(&self) -> bool {
283        panic!("readable not implemented");
284    }
285}
286```
287
288这个接口目前并不稳定。
289
290### helper函数支持
291
292用户态工具通过系统调用和内核进行通信,完成eBPF数据的设置、交换。在内核中,eBPF程序的运行也需要内核的帮助,单独的eBPF程序并没有什么太大的用处,因此其会调用内核提供的`helper` 函数完成对内核资源的访问。
293
294目前已经支持的大多数`helper` 函数是与Map操作相关:
295
296```rust
297/// Initialize the helper functions.
298pub fn init_helper_functions() {
299    let mut map = BTreeMap::new();
300    unsafe {
301        // Map helpers::Generic map helpers
302        map.insert(1, define_func!(raw_map_lookup_elem));
303        map.insert(2, define_func!(raw_map_update_elem));
304        map.insert(3, define_func!(raw_map_delete_elem));
305        map.insert(164, define_func!(raw_map_for_each_elem));
306        map.insert(195, define_func!(raw_map_lookup_percpu_elem));
307        // map.insert(93,define_func!(raw_bpf_spin_lock);
308        // map.insert(94,define_func!(raw_bpf_spin_unlock);
309        // Map helpers::Perf event array helpers
310        map.insert(25, define_func!(raw_perf_event_output));
311        // Probe and trace helpers::Memory helpers
312        map.insert(4, define_func!(raw_bpf_probe_read));
313        // Print helpers
314        map.insert(6, define_func!(trace_printf));
315
316        // Map helpers::Queue and stack helpers
317        map.insert(87, define_func!(raw_map_push_elem));
318        map.insert(88, define_func!(raw_map_pop_elem));
319        map.insert(89, define_func!(raw_map_peek_elem));
320    }
321    BPF_HELPER_FUN_SET.init(map);
322}
323```
324
325