blob: 32c7252f734e42f9895c4686c4236f4b259d99a3 [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.
Wang Nan203d1ca2016-07-04 11:02:42 +00007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation;
11 * version 2.1 of the License (not later!)
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this program; if not, see <http://www.gnu.org/licenses>
Wang Nan1b76c132015-07-01 02:13:51 +000020 */
21#ifndef __BPF_LIBBPF_H
22#define __BPF_LIBBPF_H
23
Wang Nan1a5e3fb2015-07-01 02:13:53 +000024#include <stdio.h>
Joe Stringere28ff1a2017-01-22 17:11:25 -080025#include <stdint.h>
Wang Nanaa9b1ac2015-07-01 02:14:08 +000026#include <stdbool.h>
Wang Nan5a6acad2016-11-26 07:03:27 +000027#include <sys/types.h> // for size_t
Alexei Starovoitovdd26b7f2017-03-30 21:45:40 -070028#include <linux/bpf.h>
Wang Nan6371ca32015-11-06 13:49:37 +000029
30enum libbpf_errno {
31 __LIBBPF_ERRNO__START = 4000,
32
33 /* Something wrong in libelf */
34 LIBBPF_ERRNO__LIBELF = __LIBBPF_ERRNO__START,
35 LIBBPF_ERRNO__FORMAT, /* BPF object format invalid */
36 LIBBPF_ERRNO__KVERSION, /* Incorrect or no 'version' section */
Colin Ian Kingde8a63b2016-06-28 13:23:37 +010037 LIBBPF_ERRNO__ENDIAN, /* Endian mismatch */
Wang Nan6371ca32015-11-06 13:49:37 +000038 LIBBPF_ERRNO__INTERNAL, /* Internal error in libbpf */
39 LIBBPF_ERRNO__RELOC, /* Relocation failed */
40 LIBBPF_ERRNO__LOAD, /* Load program failure for unknown reason */
41 LIBBPF_ERRNO__VERIFY, /* Kernel verifier blocks program loading */
42 LIBBPF_ERRNO__PROG2BIG, /* Program too big */
43 LIBBPF_ERRNO__KVER, /* Incorrect kernel version */
Wang Nan705fa212016-07-13 10:44:02 +000044 LIBBPF_ERRNO__PROGTYPE, /* Kernel doesn't support this program type */
Wang Nan6371ca32015-11-06 13:49:37 +000045 __LIBBPF_ERRNO__END,
46};
47
48int libbpf_strerror(int err, char *buf, size_t size);
Wang Nan1a5e3fb2015-07-01 02:13:53 +000049
Wang Nanb3f59d62015-07-01 02:13:52 +000050/*
51 * In include/linux/compiler-gcc.h, __printf is defined. However
52 * it should be better if libbpf.h doesn't depend on Linux header file.
53 * So instead of __printf, here we use gcc attribute directly.
54 */
55typedef int (*libbpf_print_fn_t)(const char *, ...)
56 __attribute__((format(printf, 1, 2)));
57
58void libbpf_set_print(libbpf_print_fn_t warn,
59 libbpf_print_fn_t info,
60 libbpf_print_fn_t debug);
61
Wang Nan1a5e3fb2015-07-01 02:13:53 +000062/* Hide internal to user */
63struct bpf_object;
64
65struct bpf_object *bpf_object__open(const char *path);
Wang Nan6c956392015-07-01 02:13:54 +000066struct bpf_object *bpf_object__open_buffer(void *obj_buf,
Wang Nanacf860a2015-08-27 02:30:55 +000067 size_t obj_buf_sz,
68 const char *name);
Joe Stringerd5148d82017-01-26 13:19:58 -080069int bpf_object__pin(struct bpf_object *object, const char *path);
Wang Nan1a5e3fb2015-07-01 02:13:53 +000070void bpf_object__close(struct bpf_object *object);
71
Wang Nan52d33522015-07-01 02:14:04 +000072/* Load/unload object into/from kernel */
73int bpf_object__load(struct bpf_object *obj);
74int bpf_object__unload(struct bpf_object *obj);
Arnaldo Carvalho de Meloa7fe0452016-06-03 12:22:51 -030075const char *bpf_object__name(struct bpf_object *obj);
76unsigned int bpf_object__kversion(struct bpf_object *obj);
Wang Nan52d33522015-07-01 02:14:04 +000077
Wang Nan9a208ef2015-07-01 02:14:10 +000078struct bpf_object *bpf_object__next(struct bpf_object *prev);
79#define bpf_object__for_each_safe(pos, tmp) \
80 for ((pos) = bpf_object__next(NULL), \
81 (tmp) = bpf_object__next(pos); \
82 (pos) != NULL; \
83 (pos) = (tmp), (tmp) = bpf_object__next(tmp))
84
Wang Nan10931d22016-11-26 07:03:26 +000085typedef void (*bpf_object_clear_priv_t)(struct bpf_object *, void *);
86int bpf_object__set_priv(struct bpf_object *obj, void *priv,
87 bpf_object_clear_priv_t clear_priv);
88void *bpf_object__priv(struct bpf_object *prog);
89
Wang Nanaa9b1ac2015-07-01 02:14:08 +000090/* Accessors of bpf_program. */
91struct bpf_program;
92struct bpf_program *bpf_program__next(struct bpf_program *prog,
93 struct bpf_object *obj);
94
95#define bpf_object__for_each_program(pos, obj) \
96 for ((pos) = bpf_program__next(NULL, (obj)); \
97 (pos) != NULL; \
98 (pos) = bpf_program__next((pos), (obj)))
99
100typedef void (*bpf_program_clear_priv_t)(struct bpf_program *,
101 void *);
102
Arnaldo Carvalho de Meloedb13ed2016-06-03 12:38:21 -0300103int bpf_program__set_priv(struct bpf_program *prog, void *priv,
104 bpf_program_clear_priv_t clear_priv);
Wang Nanaa9b1ac2015-07-01 02:14:08 +0000105
Arnaldo Carvalho de Melobe834ff2016-06-03 12:36:39 -0300106void *bpf_program__priv(struct bpf_program *prog);
Wang Nanaa9b1ac2015-07-01 02:14:08 +0000107
Namhyung Kim715f8db2015-11-03 20:21:05 +0900108const char *bpf_program__title(struct bpf_program *prog, bool needs_copy);
Wang Nanaa9b1ac2015-07-01 02:14:08 +0000109
110int bpf_program__fd(struct bpf_program *prog);
Joe Stringerf3675402017-01-26 13:19:56 -0800111int bpf_program__pin_instance(struct bpf_program *prog, const char *path,
112 int instance);
113int bpf_program__pin(struct bpf_program *prog, const char *path);
Wang Nanaa9b1ac2015-07-01 02:14:08 +0000114
Wang Nanb5805632015-11-16 12:10:09 +0000115struct bpf_insn;
116
117/*
118 * Libbpf allows callers to adjust BPF programs before being loaded
119 * into kernel. One program in an object file can be transform into
120 * multiple variants to be attached to different code.
121 *
122 * bpf_program_prep_t, bpf_program__set_prep and bpf_program__nth_fd
123 * are APIs for this propose.
124 *
125 * - bpf_program_prep_t:
126 * It defines 'preprocessor', which is a caller defined function
127 * passed to libbpf through bpf_program__set_prep(), and will be
128 * called before program is loaded. The processor should adjust
129 * the program one time for each instances according to the number
130 * passed to it.
131 *
132 * - bpf_program__set_prep:
133 * Attachs a preprocessor to a BPF program. The number of instances
134 * whould be created is also passed through this function.
135 *
136 * - bpf_program__nth_fd:
137 * After the program is loaded, get resuling fds from bpf program for
138 * each instances.
139 *
140 * If bpf_program__set_prep() is not used, the program whould be loaded
141 * without adjustment during bpf_object__load(). The program has only
142 * one instance. In this case bpf_program__fd(prog) is equal to
143 * bpf_program__nth_fd(prog, 0).
144 */
145
146struct bpf_prog_prep_result {
147 /*
148 * If not NULL, load new instruction array.
149 * If set to NULL, don't load this instance.
150 */
151 struct bpf_insn *new_insn_ptr;
152 int new_insn_cnt;
153
154 /* If not NULL, result fd is set to it */
155 int *pfd;
156};
157
158/*
159 * Parameters of bpf_program_prep_t:
160 * - prog: The bpf_program being loaded.
161 * - n: Index of instance being generated.
162 * - insns: BPF instructions array.
163 * - insns_cnt:Number of instructions in insns.
164 * - res: Output parameter, result of transformation.
165 *
166 * Return value:
167 * - Zero: pre-processing success.
168 * - Non-zero: pre-processing, stop loading.
169 */
170typedef int (*bpf_program_prep_t)(struct bpf_program *prog, int n,
171 struct bpf_insn *insns, int insns_cnt,
172 struct bpf_prog_prep_result *res);
173
174int bpf_program__set_prep(struct bpf_program *prog, int nr_instance,
175 bpf_program_prep_t prep);
176
177int bpf_program__nth_fd(struct bpf_program *prog, int n);
178
Wang Nan34090912015-07-01 02:14:02 +0000179/*
Wang Nan5f44e4c82016-07-13 10:44:01 +0000180 * Adjust type of bpf program. Default is kprobe.
181 */
Joe Stringer7803ba72017-01-22 17:11:24 -0800182int bpf_program__set_socket_filter(struct bpf_program *prog);
Wang Nan5f44e4c82016-07-13 10:44:01 +0000183int bpf_program__set_tracepoint(struct bpf_program *prog);
184int bpf_program__set_kprobe(struct bpf_program *prog);
Joe Stringer7803ba72017-01-22 17:11:24 -0800185int bpf_program__set_sched_cls(struct bpf_program *prog);
186int bpf_program__set_sched_act(struct bpf_program *prog);
187int bpf_program__set_xdp(struct bpf_program *prog);
188int bpf_program__set_perf_event(struct bpf_program *prog);
Alexei Starovoitovdd26b7f2017-03-30 21:45:40 -0700189void bpf_program__set_type(struct bpf_program *prog, enum bpf_prog_type type);
Wang Nan5f44e4c82016-07-13 10:44:01 +0000190
Joe Stringer7803ba72017-01-22 17:11:24 -0800191bool bpf_program__is_socket_filter(struct bpf_program *prog);
Wang Nan5f44e4c82016-07-13 10:44:01 +0000192bool bpf_program__is_tracepoint(struct bpf_program *prog);
193bool bpf_program__is_kprobe(struct bpf_program *prog);
Joe Stringer7803ba72017-01-22 17:11:24 -0800194bool bpf_program__is_sched_cls(struct bpf_program *prog);
195bool bpf_program__is_sched_act(struct bpf_program *prog);
196bool bpf_program__is_xdp(struct bpf_program *prog);
197bool bpf_program__is_perf_event(struct bpf_program *prog);
Wang Nan5f44e4c82016-07-13 10:44:01 +0000198
199/*
Wang Nan34090912015-07-01 02:14:02 +0000200 * We don't need __attribute__((packed)) now since it is
201 * unnecessary for 'bpf_map_def' because they are all aligned.
202 * In addition, using it will trigger -Wpacked warning message,
203 * and will be treated as an error due to -Werror.
204 */
205struct bpf_map_def {
206 unsigned int type;
207 unsigned int key_size;
208 unsigned int value_size;
209 unsigned int max_entries;
210};
211
Wang Nan9d759a92015-11-27 08:47:35 +0000212/*
213 * There is another 'struct bpf_map' in include/linux/map.h. However,
214 * it is not a uapi header so no need to consider name clash.
215 */
216struct bpf_map;
Wang Nan561bbcc2015-11-27 08:47:36 +0000217struct bpf_map *
Arnaldo Carvalho de Meloa7fe0452016-06-03 12:22:51 -0300218bpf_object__find_map_by_name(struct bpf_object *obj, const char *name);
Wang Nan9d759a92015-11-27 08:47:35 +0000219
Wang Nan5a6acad2016-11-26 07:03:27 +0000220/*
221 * Get bpf_map through the offset of corresponding struct bpf_map_def
222 * in the bpf object file.
223 */
224struct bpf_map *
225bpf_object__find_map_by_offset(struct bpf_object *obj, size_t offset);
226
Wang Nan9d759a92015-11-27 08:47:35 +0000227struct bpf_map *
228bpf_map__next(struct bpf_map *map, struct bpf_object *obj);
229#define bpf_map__for_each(pos, obj) \
230 for ((pos) = bpf_map__next(NULL, (obj)); \
231 (pos) != NULL; \
232 (pos) = bpf_map__next((pos), (obj)))
233
Arnaldo Carvalho de Melo6e009e62016-06-03 12:15:52 -0300234int bpf_map__fd(struct bpf_map *map);
Arnaldo Carvalho de Melo53897a72016-06-02 14:21:06 -0300235const struct bpf_map_def *bpf_map__def(struct bpf_map *map);
Arnaldo Carvalho de Melo009ad5d2016-06-02 11:02:05 -0300236const char *bpf_map__name(struct bpf_map *map);
Wang Nan9d759a92015-11-27 08:47:35 +0000237
238typedef void (*bpf_map_clear_priv_t)(struct bpf_map *, void *);
Arnaldo Carvalho de Meloedb13ed2016-06-03 12:38:21 -0300239int bpf_map__set_priv(struct bpf_map *map, void *priv,
240 bpf_map_clear_priv_t clear_priv);
Arnaldo Carvalho de Melob4cbfa52016-06-02 10:51:59 -0300241void *bpf_map__priv(struct bpf_map *map);
Joe Stringerb6989f32017-01-26 13:19:57 -0800242int bpf_map__pin(struct bpf_map *map, const char *path);
Wang Nan9d759a92015-11-27 08:47:35 +0000243
Joe Stringere28ff1a2017-01-22 17:11:25 -0800244long libbpf_get_error(const void *ptr);
245
Wang Nan1b76c132015-07-01 02:13:51 +0000246#endif