1 // SPDX-License-Identifier: GPL-2.0
2 /* eBPF example program:
6 * The eBPF program loads a filter from file and attaches the
7 * program to a cgroup using BPF_PROG_ATTACH
21 #include <linux/bpf.h>
27 static int usage(const char *argv0
)
29 printf("Usage: %s cg-path filter-path [filter-id]\n", argv0
);
33 int main(int argc
, char **argv
)
35 int cg_fd
, ret
, filter_id
= 0;
38 return usage(argv
[0]);
40 cg_fd
= open(argv
[1], O_DIRECTORY
| O_RDONLY
);
42 printf("Failed to open cgroup path: '%s'\n", strerror(errno
));
46 if (load_bpf_file(argv
[2]))
49 printf("Output from kernel verifier:\n%s\n-------\n", bpf_log_buf
);
52 filter_id
= atoi(argv
[3]);
54 if (filter_id
>= prog_cnt
) {
55 printf("Invalid program id; program not found in file\n");
59 ret
= bpf_prog_attach(prog_fd
[filter_id
], cg_fd
,
60 BPF_CGROUP_INET_SOCK_CREATE
, 0);
62 printf("Failed to attach prog to cgroup: '%s'\n",