-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkernel.c
36 lines (29 loc) · 894 Bytes
/
kernel.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
BPF_RINGBUF_OUTPUT(buffer, 1 << 10);
struct event {
unsigned long time;
u32 pid;
u32 tgid;
};
int foo(struct pt_regs *ctx) {
u64 pid_tgid = bpf_get_current_pid_tgid();
u32 pid = (u32) pid_tgid;
//bpf_trace_printk("pid is: %ui", pid);
/** Exclude the PID of the userspace tracing program.
This number gets replaced before BPF compilation.
Since the tracing program also does the compilation before
before the probe gets inserted, the PID is known ahead.
*/
if(pid == 12345){
return 0;
}
struct event *event = buffer.ringbuf_reserve(sizeof(struct event));
if (!event) {
return 1;
}
event->tgid = pid_tgid >> 32;
event->pid = (u32) pid_tgid;
event->time = bpf_ktime_get_ns();
buffer.ringbuf_submit(event, 0);
// or, to discard: buffer.ringbuf_discard(event, 0);
return 0;
}