1 /* Copyright (c) 2017 Facebook
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
12 #include <linux/bpf.h>
14 #include <linux/perf_event.h>
18 #include <sys/resource.h>
22 /* This program verifies bpf attachment to tracepoint sys_enter_* and sys_exit_*.
23 * This requires kernel CONFIG_FTRACE_SYSCALLS to be set.
26 static void usage(const char *cmd
)
28 printf("USAGE: %s [-i num_progs] [-h]\n", cmd
);
29 printf(" -i num_progs # number of progs of the test\n");
30 printf(" -h # help\n");
33 static void verify_map(int map_id
)
38 if (bpf_map_lookup_elem(map_id
, &key
, &val
) != 0) {
39 fprintf(stderr
, "map_lookup failed: %s\n", strerror(errno
));
43 fprintf(stderr
, "failed: map #%d returns value 0\n", map_id
);
47 if (bpf_map_update_elem(map_id
, &key
, &val
, BPF_ANY
) != 0) {
48 fprintf(stderr
, "map_update failed: %s\n", strerror(errno
));
53 static int test(char *filename
, int num_progs
)
55 int i
, fd
, map0_fds
[num_progs
], map1_fds
[num_progs
];
57 for (i
= 0; i
< num_progs
; i
++) {
58 if (load_bpf_file(filename
)) {
59 fprintf(stderr
, "%s", bpf_log_buf
);
62 printf("prog #%d: map ids %d %d\n", i
, map_fd
[0], map_fd
[1]);
63 map0_fds
[i
] = map_fd
[0];
64 map1_fds
[i
] = map_fd
[1];
67 /* current load_bpf_file has perf_event_open default pid = -1
68 * and cpu = 0, which permits attached bpf execution on
69 * all cpus for all pid's. bpf program execution ignores
72 /* trigger some "open" operations */
73 fd
= open(filename
, O_RDONLY
);
75 fprintf(stderr
, "open failed: %s\n", strerror(errno
));
81 for (i
= 0; i
< num_progs
; i
++) {
82 verify_map(map0_fds
[i
]);
83 verify_map(map1_fds
[i
]);
89 int main(int argc
, char **argv
)
91 struct rlimit r
= {RLIM_INFINITY
, RLIM_INFINITY
};
92 int opt
, num_progs
= 1;
95 while ((opt
= getopt(argc
, argv
, "i:h")) != -1) {
98 num_progs
= atoi(optarg
);
107 setrlimit(RLIMIT_MEMLOCK
, &r
);
108 snprintf(filename
, sizeof(filename
), "%s_kern.o", argv
[0]);
110 return test(filename
, num_progs
);