blob: e6307bada88f16c9da604f567c48dd6aaa1d4ab1 (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
|
//+build ignore
#define TEMP_MAP_SIZES 1024 // Adjust size as needed
#define MAX_FILENAME_LENGTH 256
#define MAX_PROGNAME_LENGTH 16
struct flags {
__u32 uid_filter;
};
// To pass command line flags from userspace to BPF kernel space.
struct {
__uint(type, BPF_MAP_TYPE_HASH);
__type(key, u32);
__type(value, struct flags);
__uint(max_entries, 1 << 24);
} flags_map SEC(".maps");
#define OPENAT_ENTER_OP_ID 1
#define OPENAT_EXIT_OP_ID 2
#define CLOSE_ENTER_OP_ID 1
#define CLOSE_EXIT_OP_ID 2
struct openat_enter_event {
__u32 op_id;
__u32 tid;
__u64 time;
char filename[MAX_FILENAME_LENGTH];
char comm[MAX_PROGNAME_LENGTH];
};
struct fd_event {
__u32 op_id;
__u32 tid;
__u64 time;
__s32 fd;
};
struct null_event {
__u32 op_id;
__u32 tid;
__u64 time;
};
struct {
__uint(type, BPF_MAP_TYPE_RINGBUF);
__uint(max_entries, 1 << 24);
} event_map SEC(".maps");
|