blob: ea8adc206b6242ec08dfcc0659b839f7cc79145d [file] [log] [blame]
Wang Nan1b76c132015-07-01 02:13:51 +00001/*
2 * Common eBPF ELF object loading operations.
3 *
4 * Copyright (C) 2013-2015 Alexei Starovoitov <ast@kernel.org>
5 * Copyright (C) 2015 Wang Nan <wangnan0@huawei.com>
6 * Copyright (C) 2015 Huawei Inc.
7 */
8#ifndef __BPF_LIBBPF_H
9#define __BPF_LIBBPF_H
10
Wang Nan1a5e3fb2015-07-01 02:13:53 +000011#include <stdio.h>
Wang Nanaa9b1ac2015-07-01 02:14:08 +000012#include <stdbool.h>
Wang Nan1a5e3fb2015-07-01 02:13:53 +000013
Wang Nanb3f59d62015-07-01 02:13:52 +000014/*
15 * In include/linux/compiler-gcc.h, __printf is defined. However
16 * it should be better if libbpf.h doesn't depend on Linux header file.
17 * So instead of __printf, here we use gcc attribute directly.
18 */
19typedef int (*libbpf_print_fn_t)(const char *, ...)
20 __attribute__((format(printf, 1, 2)));
21
22void libbpf_set_print(libbpf_print_fn_t warn,
23 libbpf_print_fn_t info,
24 libbpf_print_fn_t debug);
25
Wang Nan1a5e3fb2015-07-01 02:13:53 +000026/* Hide internal to user */
27struct bpf_object;
28
29struct bpf_object *bpf_object__open(const char *path);
Wang Nan6c956392015-07-01 02:13:54 +000030struct bpf_object *bpf_object__open_buffer(void *obj_buf,
31 size_t obj_buf_sz);
Wang Nan1a5e3fb2015-07-01 02:13:53 +000032void bpf_object__close(struct bpf_object *object);
33
Wang Nan52d33522015-07-01 02:14:04 +000034/* Load/unload object into/from kernel */
35int bpf_object__load(struct bpf_object *obj);
36int bpf_object__unload(struct bpf_object *obj);
37
Wang Nan9a208ef2015-07-01 02:14:10 +000038struct bpf_object *bpf_object__next(struct bpf_object *prev);
39#define bpf_object__for_each_safe(pos, tmp) \
40 for ((pos) = bpf_object__next(NULL), \
41 (tmp) = bpf_object__next(pos); \
42 (pos) != NULL; \
43 (pos) = (tmp), (tmp) = bpf_object__next(tmp))
44
Wang Nanaa9b1ac2015-07-01 02:14:08 +000045/* Accessors of bpf_program. */
46struct bpf_program;
47struct bpf_program *bpf_program__next(struct bpf_program *prog,
48 struct bpf_object *obj);
49
50#define bpf_object__for_each_program(pos, obj) \
51 for ((pos) = bpf_program__next(NULL, (obj)); \
52 (pos) != NULL; \
53 (pos) = bpf_program__next((pos), (obj)))
54
55typedef void (*bpf_program_clear_priv_t)(struct bpf_program *,
56 void *);
57
58int bpf_program__set_private(struct bpf_program *prog, void *priv,
59 bpf_program_clear_priv_t clear_priv);
60
61int bpf_program__get_private(struct bpf_program *prog,
62 void **ppriv);
63
64const char *bpf_program__title(struct bpf_program *prog, bool dup);
65
66int bpf_program__fd(struct bpf_program *prog);
67
Wang Nan34090912015-07-01 02:14:02 +000068/*
69 * We don't need __attribute__((packed)) now since it is
70 * unnecessary for 'bpf_map_def' because they are all aligned.
71 * In addition, using it will trigger -Wpacked warning message,
72 * and will be treated as an error due to -Werror.
73 */
74struct bpf_map_def {
75 unsigned int type;
76 unsigned int key_size;
77 unsigned int value_size;
78 unsigned int max_entries;
79};
80
Wang Nan1b76c132015-07-01 02:13:51 +000081#endif