drm/tests: hdmi: Fix memory leaks in drm_display_mode_from_cea_vic()
[drm/drm-misc.git] / samples / bpf / syscall_tp_kern.c
blob58fef969a60ef29ad065ecd572d02243acf49608
1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (c) 2017 Facebook
3 */
4 #include <uapi/linux/bpf.h>
5 #include <bpf/bpf_helpers.h>
7 #if !defined(__aarch64__)
8 struct syscalls_enter_open_args {
9 unsigned long long unused;
10 long syscall_nr;
11 long filename_ptr;
12 long flags;
13 long mode;
15 #endif
17 struct syscalls_exit_open_args {
18 unsigned long long unused;
19 long syscall_nr;
20 long ret;
23 struct syscalls_enter_open_at_args {
24 unsigned long long unused;
25 long syscall_nr;
26 long long dfd;
27 long filename_ptr;
28 long flags;
29 long mode;
32 struct {
33 __uint(type, BPF_MAP_TYPE_ARRAY);
34 __type(key, u32);
35 __type(value, u32);
36 __uint(max_entries, 1);
37 } enter_open_map SEC(".maps");
39 struct {
40 __uint(type, BPF_MAP_TYPE_ARRAY);
41 __type(key, u32);
42 __type(value, u32);
43 __uint(max_entries, 1);
44 } exit_open_map SEC(".maps");
46 static __always_inline void count(void *map)
48 u32 key = 0;
49 u32 *value, init_val = 1;
51 value = bpf_map_lookup_elem(map, &key);
52 if (value)
53 *value += 1;
54 else
55 bpf_map_update_elem(map, &key, &init_val, BPF_NOEXIST);
58 #if !defined(__aarch64__)
59 SEC("tracepoint/syscalls/sys_enter_open")
60 int trace_enter_open(struct syscalls_enter_open_args *ctx)
62 count(&enter_open_map);
63 return 0;
65 #endif
67 SEC("tracepoint/syscalls/sys_enter_openat")
68 int trace_enter_open_at(struct syscalls_enter_open_at_args *ctx)
70 count(&enter_open_map);
71 return 0;
74 SEC("tracepoint/syscalls/sys_enter_openat2")
75 int trace_enter_open_at2(struct syscalls_enter_open_at_args *ctx)
77 count(&enter_open_map);
78 return 0;
81 #if !defined(__aarch64__)
82 SEC("tracepoint/syscalls/sys_exit_open")
83 int trace_enter_exit(struct syscalls_exit_open_args *ctx)
85 count(&exit_open_map);
86 return 0;
88 #endif
90 SEC("tracepoint/syscalls/sys_exit_openat")
91 int trace_enter_exit_at(struct syscalls_exit_open_args *ctx)
93 count(&exit_open_map);
94 return 0;
97 SEC("tracepoint/syscalls/sys_exit_openat2")
98 int trace_enter_exit_at2(struct syscalls_exit_open_args *ctx)
100 count(&exit_open_map);
101 return 0;