blob: 51edf6cd390ed5e39c0c747b65018f5975e19052 [file] [log] [blame]
Eric Leblond6061a3d2018-01-30 21:55:03 +01001// SPDX-License-Identifier: LGPL-2.1
2
Wang Nan1b76c132015-07-01 02:13:51 +00003/*
4 * Common eBPF ELF object loading operations.
5 *
6 * Copyright (C) 2013-2015 Alexei Starovoitov <ast@kernel.org>
7 * Copyright (C) 2015 Wang Nan <wangnan0@huawei.com>
8 * Copyright (C) 2015 Huawei Inc.
Joe Stringerf3675402017-01-26 13:19:56 -08009 * Copyright (C) 2017 Nicira, Inc.
Wang Nan203d1ca2016-07-04 11:02:42 +000010 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation;
14 * version 2.1 of the License (not later!)
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this program; if not, see <http://www.gnu.org/licenses>
Wang Nan1b76c132015-07-01 02:13:51 +000023 */
24
Jakub Kicinski531b0142018-07-10 14:43:05 -070025#define _GNU_SOURCE
Wang Nan1b76c132015-07-01 02:13:51 +000026#include <stdlib.h>
Wang Nanb3f59d62015-07-01 02:13:52 +000027#include <stdio.h>
28#include <stdarg.h>
Joe Stringerf3675402017-01-26 13:19:56 -080029#include <libgen.h>
Wang Nan34090912015-07-01 02:14:02 +000030#include <inttypes.h>
Wang Nanb3f59d62015-07-01 02:13:52 +000031#include <string.h>
Wang Nan1b76c132015-07-01 02:13:51 +000032#include <unistd.h>
Wang Nan1a5e3fb2015-07-01 02:13:53 +000033#include <fcntl.h>
34#include <errno.h>
Jakub Kicinskid0cabbb2018-05-10 10:24:40 -070035#include <perf-sys.h>
Wang Nan1b76c132015-07-01 02:13:51 +000036#include <asm/unistd.h>
Joe Stringere28ff1a2017-01-22 17:11:25 -080037#include <linux/err.h>
Wang Nancb1e5e92015-07-01 02:13:57 +000038#include <linux/kernel.h>
Wang Nan1b76c132015-07-01 02:13:51 +000039#include <linux/bpf.h>
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -070040#include <linux/btf.h>
Wang Nan9a208ef2015-07-01 02:14:10 +000041#include <linux/list.h>
Joe Stringerf3675402017-01-26 13:19:56 -080042#include <linux/limits.h>
43#include <sys/stat.h>
44#include <sys/types.h>
45#include <sys/vfs.h>
Jakub Kicinski531b0142018-07-10 14:43:05 -070046#include <tools/libc_compat.h>
Wang Nan1a5e3fb2015-07-01 02:13:53 +000047#include <libelf.h>
48#include <gelf.h>
Wang Nan1b76c132015-07-01 02:13:51 +000049
50#include "libbpf.h"
Wang Nan52d33522015-07-01 02:14:04 +000051#include "bpf.h"
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -070052#include "btf.h"
Arnaldo Carvalho de Melo6d419072018-09-14 16:47:14 -030053#include "str_error.h"
Wang Nanb3f59d62015-07-01 02:13:52 +000054
Wang Nan9b161372016-07-18 06:01:08 +000055#ifndef EM_BPF
56#define EM_BPF 247
57#endif
58
Joe Stringerf3675402017-01-26 13:19:56 -080059#ifndef BPF_FS_MAGIC
60#define BPF_FS_MAGIC 0xcafe4a11
61#endif
62
Wang Nanb3f59d62015-07-01 02:13:52 +000063#define __printf(a, b) __attribute__((format(printf, a, b)))
64
65__printf(1, 2)
66static int __base_pr(const char *format, ...)
67{
68 va_list args;
69 int err;
70
71 va_start(args, format);
72 err = vfprintf(stderr, format, args);
73 va_end(args);
74 return err;
75}
76
77static __printf(1, 2) libbpf_print_fn_t __pr_warning = __base_pr;
78static __printf(1, 2) libbpf_print_fn_t __pr_info = __base_pr;
79static __printf(1, 2) libbpf_print_fn_t __pr_debug;
80
81#define __pr(func, fmt, ...) \
82do { \
83 if ((func)) \
84 (func)("libbpf: " fmt, ##__VA_ARGS__); \
85} while (0)
86
87#define pr_warning(fmt, ...) __pr(__pr_warning, fmt, ##__VA_ARGS__)
88#define pr_info(fmt, ...) __pr(__pr_info, fmt, ##__VA_ARGS__)
89#define pr_debug(fmt, ...) __pr(__pr_debug, fmt, ##__VA_ARGS__)
90
91void libbpf_set_print(libbpf_print_fn_t warn,
92 libbpf_print_fn_t info,
93 libbpf_print_fn_t debug)
94{
95 __pr_warning = warn;
96 __pr_info = info;
97 __pr_debug = debug;
98}
Wang Nan1a5e3fb2015-07-01 02:13:53 +000099
Wang Nan6371ca3b2015-11-06 13:49:37 +0000100#define STRERR_BUFSIZE 128
101
Wang Nan6371ca3b2015-11-06 13:49:37 +0000102#define CHECK_ERR(action, err, out) do { \
103 err = action; \
104 if (err) \
105 goto out; \
106} while(0)
107
108
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000109/* Copied from tools/perf/util/util.h */
110#ifndef zfree
111# define zfree(ptr) ({ free(*ptr); *ptr = NULL; })
112#endif
113
114#ifndef zclose
115# define zclose(fd) ({ \
116 int ___err = 0; \
117 if ((fd) >= 0) \
118 ___err = close((fd)); \
119 fd = -1; \
120 ___err; })
121#endif
122
123#ifdef HAVE_LIBELF_MMAP_SUPPORT
124# define LIBBPF_ELF_C_READ_MMAP ELF_C_READ_MMAP
125#else
126# define LIBBPF_ELF_C_READ_MMAP ELF_C_READ
127#endif
128
Wang Nana5b8bd42015-07-01 02:14:00 +0000129/*
130 * bpf_prog should be a better name but it has been used in
131 * linux/filter.h.
132 */
133struct bpf_program {
134 /* Index in elf obj file, for relocation use. */
135 int idx;
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700136 char *name;
David Beckettf0307a72018-05-16 14:02:49 -0700137 int prog_ifindex;
Wang Nana5b8bd42015-07-01 02:14:00 +0000138 char *section_name;
139 struct bpf_insn *insns;
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -0800140 size_t insns_cnt, main_prog_cnt;
Wang Nan5f44e4c82016-07-13 10:44:01 +0000141 enum bpf_prog_type type;
Wang Nan34090912015-07-01 02:14:02 +0000142
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -0800143 struct reloc_desc {
144 enum {
145 RELO_LD64,
146 RELO_CALL,
147 } type;
Wang Nan34090912015-07-01 02:14:02 +0000148 int insn_idx;
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -0800149 union {
150 int map_idx;
151 int text_off;
152 };
Wang Nan34090912015-07-01 02:14:02 +0000153 } *reloc_desc;
154 int nr_reloc;
Wang Nan55cffde2015-07-01 02:14:07 +0000155
Wang Nanb5805632015-11-16 12:10:09 +0000156 struct {
157 int nr;
158 int *fds;
159 } instances;
160 bpf_program_prep_t preprocessor;
Wang Nanaa9b1ac2015-07-01 02:14:08 +0000161
162 struct bpf_object *obj;
163 void *priv;
164 bpf_program_clear_priv_t clear_priv;
Andrey Ignatovd7be1432018-03-30 15:08:01 -0700165
166 enum bpf_attach_type expected_attach_type;
Wang Nana5b8bd42015-07-01 02:14:00 +0000167};
168
Wang Nan9d759a92015-11-27 08:47:35 +0000169struct bpf_map {
170 int fd;
Wang Nan561bbcc2015-11-27 08:47:36 +0000171 char *name;
Eric Leblond4708bbd2016-11-15 04:05:47 +0000172 size_t offset;
David Beckettf0307a72018-05-16 14:02:49 -0700173 int map_ifindex;
Wang Nan9d759a92015-11-27 08:47:35 +0000174 struct bpf_map_def def;
Martin KaFai Lau5b891af2018-07-24 08:40:21 -0700175 __u32 btf_key_type_id;
176 __u32 btf_value_type_id;
Wang Nan9d759a92015-11-27 08:47:35 +0000177 void *priv;
178 bpf_map_clear_priv_t clear_priv;
179};
180
Wang Nan9a208ef2015-07-01 02:14:10 +0000181static LIST_HEAD(bpf_objects_list);
182
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000183struct bpf_object {
Wang Nancb1e5e92015-07-01 02:13:57 +0000184 char license[64];
185 u32 kern_version;
Wang Nan0b3d1ef2015-07-01 02:13:58 +0000186
Wang Nana5b8bd42015-07-01 02:14:00 +0000187 struct bpf_program *programs;
188 size_t nr_programs;
Wang Nan9d759a92015-11-27 08:47:35 +0000189 struct bpf_map *maps;
190 size_t nr_maps;
191
Wang Nan52d33522015-07-01 02:14:04 +0000192 bool loaded;
Jakub Kicinski9a94f272018-06-28 14:41:38 -0700193 bool has_pseudo_calls;
Wang Nana5b8bd42015-07-01 02:14:00 +0000194
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000195 /*
196 * Information when doing elf related work. Only valid if fd
197 * is valid.
198 */
199 struct {
200 int fd;
Wang Nan6c956392015-07-01 02:13:54 +0000201 void *obj_buf;
202 size_t obj_buf_sz;
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000203 Elf *elf;
204 GElf_Ehdr ehdr;
Wang Nanbec7d682015-07-01 02:13:59 +0000205 Elf_Data *symbols;
Wang Nan77ba9a52015-12-08 02:25:30 +0000206 size_t strtabidx;
Wang Nanb62f06e2015-07-01 02:14:01 +0000207 struct {
208 GElf_Shdr shdr;
209 Elf_Data *data;
210 } *reloc;
211 int nr_reloc;
Wang Nan666810e2016-01-25 09:55:49 +0000212 int maps_shndx;
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -0800213 int text_shndx;
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000214 } efile;
Wang Nan9a208ef2015-07-01 02:14:10 +0000215 /*
216 * All loaded bpf_object is linked in a list, which is
217 * hidden to caller. bpf_objects__<func> handlers deal with
218 * all objects.
219 */
220 struct list_head list;
Wang Nan10931d22016-11-26 07:03:26 +0000221
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -0700222 struct btf *btf;
223
Wang Nan10931d22016-11-26 07:03:26 +0000224 void *priv;
225 bpf_object_clear_priv_t clear_priv;
226
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000227 char path[];
228};
229#define obj_elf_valid(o) ((o)->efile.elf)
230
Wang Nan55cffde2015-07-01 02:14:07 +0000231static void bpf_program__unload(struct bpf_program *prog)
232{
Wang Nanb5805632015-11-16 12:10:09 +0000233 int i;
234
Wang Nan55cffde2015-07-01 02:14:07 +0000235 if (!prog)
236 return;
237
Wang Nanb5805632015-11-16 12:10:09 +0000238 /*
239 * If the object is opened but the program was never loaded,
240 * it is possible that prog->instances.nr == -1.
241 */
242 if (prog->instances.nr > 0) {
243 for (i = 0; i < prog->instances.nr; i++)
244 zclose(prog->instances.fds[i]);
245 } else if (prog->instances.nr != -1) {
246 pr_warning("Internal error: instances.nr is %d\n",
247 prog->instances.nr);
248 }
249
250 prog->instances.nr = -1;
251 zfree(&prog->instances.fds);
Wang Nan55cffde2015-07-01 02:14:07 +0000252}
253
Wang Nana5b8bd42015-07-01 02:14:00 +0000254static void bpf_program__exit(struct bpf_program *prog)
255{
256 if (!prog)
257 return;
258
Wang Nanaa9b1ac2015-07-01 02:14:08 +0000259 if (prog->clear_priv)
260 prog->clear_priv(prog, prog->priv);
261
262 prog->priv = NULL;
263 prog->clear_priv = NULL;
264
Wang Nan55cffde2015-07-01 02:14:07 +0000265 bpf_program__unload(prog);
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700266 zfree(&prog->name);
Wang Nana5b8bd42015-07-01 02:14:00 +0000267 zfree(&prog->section_name);
268 zfree(&prog->insns);
Wang Nan34090912015-07-01 02:14:02 +0000269 zfree(&prog->reloc_desc);
270
271 prog->nr_reloc = 0;
Wang Nana5b8bd42015-07-01 02:14:00 +0000272 prog->insns_cnt = 0;
273 prog->idx = -1;
274}
275
276static int
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700277bpf_program__init(void *data, size_t size, char *section_name, int idx,
278 struct bpf_program *prog)
Wang Nana5b8bd42015-07-01 02:14:00 +0000279{
280 if (size < sizeof(struct bpf_insn)) {
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700281 pr_warning("corrupted section '%s'\n", section_name);
Wang Nana5b8bd42015-07-01 02:14:00 +0000282 return -EINVAL;
283 }
284
285 bzero(prog, sizeof(*prog));
286
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700287 prog->section_name = strdup(section_name);
Wang Nana5b8bd42015-07-01 02:14:00 +0000288 if (!prog->section_name) {
Jesper Dangaard Brouer077c0662018-02-08 12:48:17 +0100289 pr_warning("failed to alloc name for prog under section(%d) %s\n",
290 idx, section_name);
Wang Nana5b8bd42015-07-01 02:14:00 +0000291 goto errout;
292 }
293
294 prog->insns = malloc(size);
295 if (!prog->insns) {
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700296 pr_warning("failed to alloc insns for prog under section %s\n",
297 section_name);
Wang Nana5b8bd42015-07-01 02:14:00 +0000298 goto errout;
299 }
300 prog->insns_cnt = size / sizeof(struct bpf_insn);
301 memcpy(prog->insns, data,
302 prog->insns_cnt * sizeof(struct bpf_insn));
303 prog->idx = idx;
Wang Nanb5805632015-11-16 12:10:09 +0000304 prog->instances.fds = NULL;
305 prog->instances.nr = -1;
Wang Nan5f44e4c82016-07-13 10:44:01 +0000306 prog->type = BPF_PROG_TYPE_KPROBE;
Wang Nana5b8bd42015-07-01 02:14:00 +0000307
308 return 0;
309errout:
310 bpf_program__exit(prog);
311 return -ENOMEM;
312}
313
314static int
315bpf_object__add_program(struct bpf_object *obj, void *data, size_t size,
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700316 char *section_name, int idx)
Wang Nana5b8bd42015-07-01 02:14:00 +0000317{
318 struct bpf_program prog, *progs;
319 int nr_progs, err;
320
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700321 err = bpf_program__init(data, size, section_name, idx, &prog);
Wang Nana5b8bd42015-07-01 02:14:00 +0000322 if (err)
323 return err;
324
325 progs = obj->programs;
326 nr_progs = obj->nr_programs;
327
Jakub Kicinski531b0142018-07-10 14:43:05 -0700328 progs = reallocarray(progs, nr_progs + 1, sizeof(progs[0]));
Wang Nana5b8bd42015-07-01 02:14:00 +0000329 if (!progs) {
330 /*
331 * In this case the original obj->programs
332 * is still valid, so don't need special treat for
333 * bpf_close_object().
334 */
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700335 pr_warning("failed to alloc a new program under section '%s'\n",
336 section_name);
Wang Nana5b8bd42015-07-01 02:14:00 +0000337 bpf_program__exit(&prog);
338 return -ENOMEM;
339 }
340
341 pr_debug("found program %s\n", prog.section_name);
342 obj->programs = progs;
343 obj->nr_programs = nr_progs + 1;
Wang Nanaa9b1ac2015-07-01 02:14:08 +0000344 prog.obj = obj;
Wang Nana5b8bd42015-07-01 02:14:00 +0000345 progs[nr_progs] = prog;
346 return 0;
347}
348
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700349static int
350bpf_object__init_prog_names(struct bpf_object *obj)
351{
352 Elf_Data *symbols = obj->efile.symbols;
353 struct bpf_program *prog;
354 size_t pi, si;
355
356 for (pi = 0; pi < obj->nr_programs; pi++) {
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -0800357 const char *name = NULL;
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700358
359 prog = &obj->programs[pi];
360
361 for (si = 0; si < symbols->d_size / sizeof(GElf_Sym) && !name;
362 si++) {
363 GElf_Sym sym;
364
365 if (!gelf_getsym(symbols, si, &sym))
366 continue;
367 if (sym.st_shndx != prog->idx)
368 continue;
Roman Gushchinfe4d44b2017-12-13 15:18:52 +0000369 if (GELF_ST_BIND(sym.st_info) != STB_GLOBAL)
370 continue;
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700371
372 name = elf_strptr(obj->efile.elf,
373 obj->efile.strtabidx,
374 sym.st_name);
375 if (!name) {
376 pr_warning("failed to get sym name string for prog %s\n",
377 prog->section_name);
378 return -LIBBPF_ERRNO__LIBELF;
379 }
380 }
381
Jakub Kicinski9a94f272018-06-28 14:41:38 -0700382 if (!name && prog->idx == obj->efile.text_shndx)
383 name = ".text";
384
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700385 if (!name) {
386 pr_warning("failed to find sym for prog %s\n",
387 prog->section_name);
388 return -EINVAL;
389 }
Jakub Kicinski9a94f272018-06-28 14:41:38 -0700390
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700391 prog->name = strdup(name);
392 if (!prog->name) {
393 pr_warning("failed to allocate memory for prog sym %s\n",
394 name);
395 return -ENOMEM;
396 }
397 }
398
399 return 0;
400}
401
Wang Nan6c956392015-07-01 02:13:54 +0000402static struct bpf_object *bpf_object__new(const char *path,
403 void *obj_buf,
404 size_t obj_buf_sz)
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000405{
406 struct bpf_object *obj;
407
408 obj = calloc(1, sizeof(struct bpf_object) + strlen(path) + 1);
409 if (!obj) {
410 pr_warning("alloc memory failed for %s\n", path);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000411 return ERR_PTR(-ENOMEM);
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000412 }
413
414 strcpy(obj->path, path);
415 obj->efile.fd = -1;
Wang Nan6c956392015-07-01 02:13:54 +0000416
417 /*
418 * Caller of this function should also calls
419 * bpf_object__elf_finish() after data collection to return
420 * obj_buf to user. If not, we should duplicate the buffer to
421 * avoid user freeing them before elf finish.
422 */
423 obj->efile.obj_buf = obj_buf;
424 obj->efile.obj_buf_sz = obj_buf_sz;
Wang Nan666810e2016-01-25 09:55:49 +0000425 obj->efile.maps_shndx = -1;
Wang Nan6c956392015-07-01 02:13:54 +0000426
Wang Nan52d33522015-07-01 02:14:04 +0000427 obj->loaded = false;
Wang Nan9a208ef2015-07-01 02:14:10 +0000428
429 INIT_LIST_HEAD(&obj->list);
430 list_add(&obj->list, &bpf_objects_list);
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000431 return obj;
432}
433
434static void bpf_object__elf_finish(struct bpf_object *obj)
435{
436 if (!obj_elf_valid(obj))
437 return;
438
439 if (obj->efile.elf) {
440 elf_end(obj->efile.elf);
441 obj->efile.elf = NULL;
442 }
Wang Nanbec7d682015-07-01 02:13:59 +0000443 obj->efile.symbols = NULL;
Wang Nanb62f06e2015-07-01 02:14:01 +0000444
445 zfree(&obj->efile.reloc);
446 obj->efile.nr_reloc = 0;
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000447 zclose(obj->efile.fd);
Wang Nan6c956392015-07-01 02:13:54 +0000448 obj->efile.obj_buf = NULL;
449 obj->efile.obj_buf_sz = 0;
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000450}
451
452static int bpf_object__elf_init(struct bpf_object *obj)
453{
454 int err = 0;
455 GElf_Ehdr *ep;
456
457 if (obj_elf_valid(obj)) {
458 pr_warning("elf init: internal error\n");
Wang Nan6371ca3b2015-11-06 13:49:37 +0000459 return -LIBBPF_ERRNO__LIBELF;
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000460 }
461
Wang Nan6c956392015-07-01 02:13:54 +0000462 if (obj->efile.obj_buf_sz > 0) {
463 /*
464 * obj_buf should have been validated by
465 * bpf_object__open_buffer().
466 */
467 obj->efile.elf = elf_memory(obj->efile.obj_buf,
468 obj->efile.obj_buf_sz);
469 } else {
470 obj->efile.fd = open(obj->path, O_RDONLY);
471 if (obj->efile.fd < 0) {
Thomas Richter1ce6a9f2018-07-30 10:53:23 +0200472 char errmsg[STRERR_BUFSIZE];
Arnaldo Carvalho de Melo6d419072018-09-14 16:47:14 -0300473 char *cp = str_error(errno, errmsg, sizeof(errmsg));
Thomas Richter1ce6a9f2018-07-30 10:53:23 +0200474
475 pr_warning("failed to open %s: %s\n", obj->path, cp);
Wang Nan6c956392015-07-01 02:13:54 +0000476 return -errno;
477 }
478
479 obj->efile.elf = elf_begin(obj->efile.fd,
480 LIBBPF_ELF_C_READ_MMAP,
481 NULL);
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000482 }
483
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000484 if (!obj->efile.elf) {
485 pr_warning("failed to open %s as ELF file\n",
486 obj->path);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000487 err = -LIBBPF_ERRNO__LIBELF;
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000488 goto errout;
489 }
490
491 if (!gelf_getehdr(obj->efile.elf, &obj->efile.ehdr)) {
492 pr_warning("failed to get EHDR from %s\n",
493 obj->path);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000494 err = -LIBBPF_ERRNO__FORMAT;
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000495 goto errout;
496 }
497 ep = &obj->efile.ehdr;
498
Wang Nan9b161372016-07-18 06:01:08 +0000499 /* Old LLVM set e_machine to EM_NONE */
500 if ((ep->e_type != ET_REL) || (ep->e_machine && (ep->e_machine != EM_BPF))) {
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000501 pr_warning("%s is not an eBPF object file\n",
502 obj->path);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000503 err = -LIBBPF_ERRNO__FORMAT;
Wang Nan1a5e3fb2015-07-01 02:13:53 +0000504 goto errout;
505 }
506
507 return 0;
508errout:
509 bpf_object__elf_finish(obj);
510 return err;
511}
512
Wang Nancc4228d2015-07-01 02:13:55 +0000513static int
514bpf_object__check_endianness(struct bpf_object *obj)
515{
516 static unsigned int const endian = 1;
517
518 switch (obj->efile.ehdr.e_ident[EI_DATA]) {
519 case ELFDATA2LSB:
520 /* We are big endian, BPF obj is little endian. */
521 if (*(unsigned char const *)&endian != 1)
522 goto mismatch;
523 break;
524
525 case ELFDATA2MSB:
526 /* We are little endian, BPF obj is big endian. */
527 if (*(unsigned char const *)&endian != 0)
528 goto mismatch;
529 break;
530 default:
Wang Nan6371ca3b2015-11-06 13:49:37 +0000531 return -LIBBPF_ERRNO__ENDIAN;
Wang Nancc4228d2015-07-01 02:13:55 +0000532 }
533
534 return 0;
535
536mismatch:
537 pr_warning("Error: endianness mismatch.\n");
Wang Nan6371ca3b2015-11-06 13:49:37 +0000538 return -LIBBPF_ERRNO__ENDIAN;
Wang Nancc4228d2015-07-01 02:13:55 +0000539}
540
Wang Nancb1e5e92015-07-01 02:13:57 +0000541static int
542bpf_object__init_license(struct bpf_object *obj,
543 void *data, size_t size)
544{
545 memcpy(obj->license, data,
546 min(size, sizeof(obj->license) - 1));
547 pr_debug("license of %s is %s\n", obj->path, obj->license);
548 return 0;
549}
550
551static int
552bpf_object__init_kversion(struct bpf_object *obj,
553 void *data, size_t size)
554{
555 u32 kver;
556
557 if (size != sizeof(kver)) {
558 pr_warning("invalid kver section in %s\n", obj->path);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000559 return -LIBBPF_ERRNO__FORMAT;
Wang Nancb1e5e92015-07-01 02:13:57 +0000560 }
561 memcpy(&kver, data, sizeof(kver));
562 obj->kern_version = kver;
563 pr_debug("kernel version of %s is %x\n", obj->path,
564 obj->kern_version);
565 return 0;
566}
567
Eric Leblond4708bbd2016-11-15 04:05:47 +0000568static int compare_bpf_map(const void *_a, const void *_b)
569{
570 const struct bpf_map *a = _a;
571 const struct bpf_map *b = _b;
572
573 return a->offset - b->offset;
574}
575
576static int
577bpf_object__init_maps(struct bpf_object *obj)
578{
Craig Gallekb13c5c12017-10-05 10:41:57 -0400579 int i, map_idx, map_def_sz, nr_maps = 0;
Eric Leblond4708bbd2016-11-15 04:05:47 +0000580 Elf_Scn *scn;
581 Elf_Data *data;
582 Elf_Data *symbols = obj->efile.symbols;
583
584 if (obj->efile.maps_shndx < 0)
585 return -EINVAL;
586 if (!symbols)
587 return -EINVAL;
588
589 scn = elf_getscn(obj->efile.elf, obj->efile.maps_shndx);
590 if (scn)
591 data = elf_getdata(scn, NULL);
592 if (!scn || !data) {
593 pr_warning("failed to get Elf_Data from map section %d\n",
594 obj->efile.maps_shndx);
595 return -EINVAL;
Wang Nan0b3d1ef2015-07-01 02:13:58 +0000596 }
597
Eric Leblond4708bbd2016-11-15 04:05:47 +0000598 /*
599 * Count number of maps. Each map has a name.
600 * Array of maps is not supported: only the first element is
601 * considered.
602 *
603 * TODO: Detect array of map and report error.
604 */
605 for (i = 0; i < symbols->d_size / sizeof(GElf_Sym); i++) {
606 GElf_Sym sym;
607
608 if (!gelf_getsym(symbols, i, &sym))
609 continue;
610 if (sym.st_shndx != obj->efile.maps_shndx)
611 continue;
612 nr_maps++;
613 }
614
615 /* Alloc obj->maps and fill nr_maps. */
616 pr_debug("maps in %s: %d maps in %zd bytes\n", obj->path,
617 nr_maps, data->d_size);
618
619 if (!nr_maps)
620 return 0;
Wang Nan9d759a92015-11-27 08:47:35 +0000621
Craig Gallekb13c5c12017-10-05 10:41:57 -0400622 /* Assume equally sized map definitions */
623 map_def_sz = data->d_size / nr_maps;
624 if (!data->d_size || (data->d_size % nr_maps) != 0) {
625 pr_warning("unable to determine map definition size "
626 "section %s, %d maps in %zd bytes\n",
627 obj->path, nr_maps, data->d_size);
628 return -EINVAL;
629 }
630
Wang Nan9d759a92015-11-27 08:47:35 +0000631 obj->maps = calloc(nr_maps, sizeof(obj->maps[0]));
632 if (!obj->maps) {
633 pr_warning("alloc maps for object failed\n");
Wang Nan0b3d1ef2015-07-01 02:13:58 +0000634 return -ENOMEM;
635 }
Wang Nan9d759a92015-11-27 08:47:35 +0000636 obj->nr_maps = nr_maps;
Wang Nan0b3d1ef2015-07-01 02:13:58 +0000637
Eric Leblond4708bbd2016-11-15 04:05:47 +0000638 /*
639 * fill all fd with -1 so won't close incorrect
640 * fd (fd=0 is stdin) when failure (zclose won't close
641 * negative fd)).
642 */
643 for (i = 0; i < nr_maps; i++)
Wang Nan9d759a92015-11-27 08:47:35 +0000644 obj->maps[i].fd = -1;
645
Eric Leblond4708bbd2016-11-15 04:05:47 +0000646 /*
647 * Fill obj->maps using data in "maps" section.
648 */
649 for (i = 0, map_idx = 0; i < symbols->d_size / sizeof(GElf_Sym); i++) {
Wang Nan561bbcc2015-11-27 08:47:36 +0000650 GElf_Sym sym;
Wang Nan561bbcc2015-11-27 08:47:36 +0000651 const char *map_name;
Eric Leblond4708bbd2016-11-15 04:05:47 +0000652 struct bpf_map_def *def;
Wang Nan561bbcc2015-11-27 08:47:36 +0000653
654 if (!gelf_getsym(symbols, i, &sym))
655 continue;
Wang Nan666810e2016-01-25 09:55:49 +0000656 if (sym.st_shndx != obj->efile.maps_shndx)
Wang Nan561bbcc2015-11-27 08:47:36 +0000657 continue;
658
659 map_name = elf_strptr(obj->efile.elf,
Wang Nan77ba9a52015-12-08 02:25:30 +0000660 obj->efile.strtabidx,
Wang Nan561bbcc2015-11-27 08:47:36 +0000661 sym.st_name);
Eric Leblond4708bbd2016-11-15 04:05:47 +0000662 obj->maps[map_idx].offset = sym.st_value;
Craig Gallekb13c5c12017-10-05 10:41:57 -0400663 if (sym.st_value + map_def_sz > data->d_size) {
Eric Leblond4708bbd2016-11-15 04:05:47 +0000664 pr_warning("corrupted maps section in %s: last map \"%s\" too small\n",
665 obj->path, map_name);
666 return -EINVAL;
Wang Nan561bbcc2015-11-27 08:47:36 +0000667 }
Eric Leblond4708bbd2016-11-15 04:05:47 +0000668
Wang Nan561bbcc2015-11-27 08:47:36 +0000669 obj->maps[map_idx].name = strdup(map_name);
Wang Nan973170e2015-12-08 02:25:29 +0000670 if (!obj->maps[map_idx].name) {
671 pr_warning("failed to alloc map name\n");
672 return -ENOMEM;
673 }
Eric Leblond4708bbd2016-11-15 04:05:47 +0000674 pr_debug("map %d is \"%s\"\n", map_idx,
Wang Nan561bbcc2015-11-27 08:47:36 +0000675 obj->maps[map_idx].name);
Eric Leblond4708bbd2016-11-15 04:05:47 +0000676 def = (struct bpf_map_def *)(data->d_buf + sym.st_value);
Craig Gallekb13c5c12017-10-05 10:41:57 -0400677 /*
678 * If the definition of the map in the object file fits in
679 * bpf_map_def, copy it. Any extra fields in our version
680 * of bpf_map_def will default to zero as a result of the
681 * calloc above.
682 */
683 if (map_def_sz <= sizeof(struct bpf_map_def)) {
684 memcpy(&obj->maps[map_idx].def, def, map_def_sz);
685 } else {
686 /*
687 * Here the map structure being read is bigger than what
688 * we expect, truncate if the excess bits are all zero.
689 * If they are not zero, reject this map as
690 * incompatible.
691 */
692 char *b;
693 for (b = ((char *)def) + sizeof(struct bpf_map_def);
694 b < ((char *)def) + map_def_sz; b++) {
695 if (*b != 0) {
696 pr_warning("maps section in %s: \"%s\" "
697 "has unrecognized, non-zero "
698 "options\n",
699 obj->path, map_name);
700 return -EINVAL;
701 }
702 }
703 memcpy(&obj->maps[map_idx].def, def,
704 sizeof(struct bpf_map_def));
705 }
Eric Leblond4708bbd2016-11-15 04:05:47 +0000706 map_idx++;
Wang Nan561bbcc2015-11-27 08:47:36 +0000707 }
Eric Leblond4708bbd2016-11-15 04:05:47 +0000708
709 qsort(obj->maps, obj->nr_maps, sizeof(obj->maps[0]), compare_bpf_map);
Craig Gallekb13c5c12017-10-05 10:41:57 -0400710 return 0;
Wang Nan561bbcc2015-11-27 08:47:36 +0000711}
712
Jesper Dangaard Brouere3d91b02018-02-08 12:48:32 +0100713static bool section_have_execinstr(struct bpf_object *obj, int idx)
714{
715 Elf_Scn *scn;
716 GElf_Shdr sh;
717
718 scn = elf_getscn(obj->efile.elf, idx);
719 if (!scn)
720 return false;
721
722 if (gelf_getshdr(scn, &sh) != &sh)
723 return false;
724
725 if (sh.sh_flags & SHF_EXECINSTR)
726 return true;
727
728 return false;
729}
730
Wang Nan29603662015-07-01 02:13:56 +0000731static int bpf_object__elf_collect(struct bpf_object *obj)
732{
733 Elf *elf = obj->efile.elf;
734 GElf_Ehdr *ep = &obj->efile.ehdr;
735 Elf_Scn *scn = NULL;
Wang Nan666810e2016-01-25 09:55:49 +0000736 int idx = 0, err = 0;
Wang Nan29603662015-07-01 02:13:56 +0000737
738 /* Elf is corrupted/truncated, avoid calling elf_strptr. */
739 if (!elf_rawdata(elf_getscn(elf, ep->e_shstrndx), NULL)) {
740 pr_warning("failed to get e_shstrndx from %s\n",
741 obj->path);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000742 return -LIBBPF_ERRNO__FORMAT;
Wang Nan29603662015-07-01 02:13:56 +0000743 }
744
745 while ((scn = elf_nextscn(elf, scn)) != NULL) {
746 char *name;
747 GElf_Shdr sh;
748 Elf_Data *data;
749
750 idx++;
751 if (gelf_getshdr(scn, &sh) != &sh) {
Jesper Dangaard Brouer077c0662018-02-08 12:48:17 +0100752 pr_warning("failed to get section(%d) header from %s\n",
753 idx, obj->path);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000754 err = -LIBBPF_ERRNO__FORMAT;
Wang Nan29603662015-07-01 02:13:56 +0000755 goto out;
756 }
757
758 name = elf_strptr(elf, ep->e_shstrndx, sh.sh_name);
759 if (!name) {
Jesper Dangaard Brouer077c0662018-02-08 12:48:17 +0100760 pr_warning("failed to get section(%d) name from %s\n",
761 idx, obj->path);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000762 err = -LIBBPF_ERRNO__FORMAT;
Wang Nan29603662015-07-01 02:13:56 +0000763 goto out;
764 }
765
766 data = elf_getdata(scn, 0);
767 if (!data) {
Jesper Dangaard Brouer077c0662018-02-08 12:48:17 +0100768 pr_warning("failed to get section(%d) data from %s(%s)\n",
769 idx, name, obj->path);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000770 err = -LIBBPF_ERRNO__FORMAT;
Wang Nan29603662015-07-01 02:13:56 +0000771 goto out;
772 }
Jesper Dangaard Brouer077c0662018-02-08 12:48:17 +0100773 pr_debug("section(%d) %s, size %ld, link %d, flags %lx, type=%d\n",
774 idx, name, (unsigned long)data->d_size,
Wang Nan29603662015-07-01 02:13:56 +0000775 (int)sh.sh_link, (unsigned long)sh.sh_flags,
776 (int)sh.sh_type);
Wang Nancb1e5e92015-07-01 02:13:57 +0000777
778 if (strcmp(name, "license") == 0)
779 err = bpf_object__init_license(obj,
780 data->d_buf,
781 data->d_size);
782 else if (strcmp(name, "version") == 0)
783 err = bpf_object__init_kversion(obj,
784 data->d_buf,
785 data->d_size);
Eric Leblond4708bbd2016-11-15 04:05:47 +0000786 else if (strcmp(name, "maps") == 0)
Wang Nan666810e2016-01-25 09:55:49 +0000787 obj->efile.maps_shndx = idx;
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -0700788 else if (strcmp(name, BTF_ELF_SEC) == 0) {
789 obj->btf = btf__new(data->d_buf, data->d_size,
790 __pr_debug);
791 if (IS_ERR(obj->btf)) {
792 pr_warning("Error loading ELF section %s: %ld. Ignored and continue.\n",
793 BTF_ELF_SEC, PTR_ERR(obj->btf));
794 obj->btf = NULL;
795 }
796 } else if (sh.sh_type == SHT_SYMTAB) {
Wang Nanbec7d682015-07-01 02:13:59 +0000797 if (obj->efile.symbols) {
798 pr_warning("bpf: multiple SYMTAB in %s\n",
799 obj->path);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000800 err = -LIBBPF_ERRNO__FORMAT;
Wang Nan77ba9a52015-12-08 02:25:30 +0000801 } else {
Wang Nanbec7d682015-07-01 02:13:59 +0000802 obj->efile.symbols = data;
Wang Nan77ba9a52015-12-08 02:25:30 +0000803 obj->efile.strtabidx = sh.sh_link;
804 }
Wang Nana5b8bd42015-07-01 02:14:00 +0000805 } else if ((sh.sh_type == SHT_PROGBITS) &&
806 (sh.sh_flags & SHF_EXECINSTR) &&
807 (data->d_size > 0)) {
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -0800808 if (strcmp(name, ".text") == 0)
809 obj->efile.text_shndx = idx;
Wang Nana5b8bd42015-07-01 02:14:00 +0000810 err = bpf_object__add_program(obj, data->d_buf,
811 data->d_size, name, idx);
812 if (err) {
Wang Nan6371ca3b2015-11-06 13:49:37 +0000813 char errmsg[STRERR_BUFSIZE];
Arnaldo Carvalho de Melo6d419072018-09-14 16:47:14 -0300814 char *cp = str_error(-err, errmsg, sizeof(errmsg));
Wang Nan6371ca3b2015-11-06 13:49:37 +0000815
Wang Nana5b8bd42015-07-01 02:14:00 +0000816 pr_warning("failed to alloc program %s (%s): %s",
Thomas Richter1ce6a9f2018-07-30 10:53:23 +0200817 name, obj->path, cp);
Wang Nana5b8bd42015-07-01 02:14:00 +0000818 }
Wang Nanb62f06e2015-07-01 02:14:01 +0000819 } else if (sh.sh_type == SHT_REL) {
820 void *reloc = obj->efile.reloc;
821 int nr_reloc = obj->efile.nr_reloc + 1;
Jesper Dangaard Brouere3d91b02018-02-08 12:48:32 +0100822 int sec = sh.sh_info; /* points to other section */
823
824 /* Only do relo for section with exec instructions */
825 if (!section_have_execinstr(obj, sec)) {
826 pr_debug("skip relo %s(%d) for section(%d)\n",
827 name, idx, sec);
828 continue;
829 }
Wang Nanb62f06e2015-07-01 02:14:01 +0000830
Jakub Kicinski531b0142018-07-10 14:43:05 -0700831 reloc = reallocarray(reloc, nr_reloc,
832 sizeof(*obj->efile.reloc));
Wang Nanb62f06e2015-07-01 02:14:01 +0000833 if (!reloc) {
834 pr_warning("realloc failed\n");
835 err = -ENOMEM;
836 } else {
837 int n = nr_reloc - 1;
838
839 obj->efile.reloc = reloc;
840 obj->efile.nr_reloc = nr_reloc;
841
842 obj->efile.reloc[n].shdr = sh;
843 obj->efile.reloc[n].data = data;
844 }
Jesper Dangaard Brouer077c0662018-02-08 12:48:17 +0100845 } else {
846 pr_debug("skip section(%d) %s\n", idx, name);
Wang Nanbec7d682015-07-01 02:13:59 +0000847 }
Wang Nancb1e5e92015-07-01 02:13:57 +0000848 if (err)
849 goto out;
Wang Nan29603662015-07-01 02:13:56 +0000850 }
Wang Nan561bbcc2015-11-27 08:47:36 +0000851
Wang Nan77ba9a52015-12-08 02:25:30 +0000852 if (!obj->efile.strtabidx || obj->efile.strtabidx >= idx) {
853 pr_warning("Corrupted ELF file: index of strtab invalid\n");
854 return LIBBPF_ERRNO__FORMAT;
855 }
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700856 if (obj->efile.maps_shndx >= 0) {
Eric Leblond4708bbd2016-11-15 04:05:47 +0000857 err = bpf_object__init_maps(obj);
Martin KaFai Lau88cda1c2017-09-27 14:37:54 -0700858 if (err)
859 goto out;
860 }
861 err = bpf_object__init_prog_names(obj);
Wang Nan29603662015-07-01 02:13:56 +0000862out:
863 return err;
864}
865
Wang Nan34090912015-07-01 02:14:02 +0000866static struct bpf_program *
867bpf_object__find_prog_by_idx(struct bpf_object *obj, int idx)
868{
869 struct bpf_program *prog;
870 size_t i;
871
872 for (i = 0; i < obj->nr_programs; i++) {
873 prog = &obj->programs[i];
874 if (prog->idx == idx)
875 return prog;
876 }
877 return NULL;
878}
879
Jakub Kicinski6d4b1982018-07-26 14:32:19 -0700880struct bpf_program *
881bpf_object__find_program_by_title(struct bpf_object *obj, const char *title)
882{
883 struct bpf_program *pos;
884
885 bpf_object__for_each_program(pos, obj) {
886 if (pos->section_name && !strcmp(pos->section_name, title))
887 return pos;
888 }
889 return NULL;
890}
891
Wang Nan34090912015-07-01 02:14:02 +0000892static int
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -0800893bpf_program__collect_reloc(struct bpf_program *prog, GElf_Shdr *shdr,
894 Elf_Data *data, struct bpf_object *obj)
Wang Nan34090912015-07-01 02:14:02 +0000895{
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -0800896 Elf_Data *symbols = obj->efile.symbols;
897 int text_shndx = obj->efile.text_shndx;
898 int maps_shndx = obj->efile.maps_shndx;
899 struct bpf_map *maps = obj->maps;
900 size_t nr_maps = obj->nr_maps;
Wang Nan34090912015-07-01 02:14:02 +0000901 int i, nrels;
902
903 pr_debug("collecting relocating info for: '%s'\n",
904 prog->section_name);
905 nrels = shdr->sh_size / shdr->sh_entsize;
906
907 prog->reloc_desc = malloc(sizeof(*prog->reloc_desc) * nrels);
908 if (!prog->reloc_desc) {
909 pr_warning("failed to alloc memory in relocation\n");
910 return -ENOMEM;
911 }
912 prog->nr_reloc = nrels;
913
914 for (i = 0; i < nrels; i++) {
915 GElf_Sym sym;
916 GElf_Rel rel;
917 unsigned int insn_idx;
918 struct bpf_insn *insns = prog->insns;
919 size_t map_idx;
920
921 if (!gelf_getrel(data, i, &rel)) {
922 pr_warning("relocation: failed to get %d reloc\n", i);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000923 return -LIBBPF_ERRNO__FORMAT;
Wang Nan34090912015-07-01 02:14:02 +0000924 }
925
Wang Nan34090912015-07-01 02:14:02 +0000926 if (!gelf_getsym(symbols,
927 GELF_R_SYM(rel.r_info),
928 &sym)) {
929 pr_warning("relocation: symbol %"PRIx64" not found\n",
930 GELF_R_SYM(rel.r_info));
Wang Nan6371ca3b2015-11-06 13:49:37 +0000931 return -LIBBPF_ERRNO__FORMAT;
Wang Nan34090912015-07-01 02:14:02 +0000932 }
David Miller7d9890e2017-12-19 15:53:11 -0500933 pr_debug("relo for %lld value %lld name %d\n",
934 (long long) (rel.r_info >> 32),
935 (long long) sym.st_value, sym.st_name);
Wang Nan34090912015-07-01 02:14:02 +0000936
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -0800937 if (sym.st_shndx != maps_shndx && sym.st_shndx != text_shndx) {
Wang Nan666810e2016-01-25 09:55:49 +0000938 pr_warning("Program '%s' contains non-map related relo data pointing to section %u\n",
939 prog->section_name, sym.st_shndx);
940 return -LIBBPF_ERRNO__RELOC;
941 }
942
943 insn_idx = rel.r_offset / sizeof(struct bpf_insn);
944 pr_debug("relocation: insn_idx=%u\n", insn_idx);
945
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -0800946 if (insns[insn_idx].code == (BPF_JMP | BPF_CALL)) {
947 if (insns[insn_idx].src_reg != BPF_PSEUDO_CALL) {
948 pr_warning("incorrect bpf_call opcode\n");
949 return -LIBBPF_ERRNO__RELOC;
950 }
951 prog->reloc_desc[i].type = RELO_CALL;
952 prog->reloc_desc[i].insn_idx = insn_idx;
953 prog->reloc_desc[i].text_off = sym.st_value;
Jakub Kicinski9a94f272018-06-28 14:41:38 -0700954 obj->has_pseudo_calls = true;
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -0800955 continue;
956 }
957
Wang Nan34090912015-07-01 02:14:02 +0000958 if (insns[insn_idx].code != (BPF_LD | BPF_IMM | BPF_DW)) {
959 pr_warning("bpf: relocation: invalid relo for insns[%d].code 0x%x\n",
960 insn_idx, insns[insn_idx].code);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000961 return -LIBBPF_ERRNO__RELOC;
Wang Nan34090912015-07-01 02:14:02 +0000962 }
963
Joe Stringer94e5ade2017-01-22 17:11:22 -0800964 /* TODO: 'maps' is sorted. We can use bsearch to make it faster. */
965 for (map_idx = 0; map_idx < nr_maps; map_idx++) {
966 if (maps[map_idx].offset == sym.st_value) {
967 pr_debug("relocation: find map %zd (%s) for insn %u\n",
968 map_idx, maps[map_idx].name, insn_idx);
969 break;
970 }
971 }
972
Wang Nan34090912015-07-01 02:14:02 +0000973 if (map_idx >= nr_maps) {
974 pr_warning("bpf relocation: map_idx %d large than %d\n",
975 (int)map_idx, (int)nr_maps - 1);
Wang Nan6371ca3b2015-11-06 13:49:37 +0000976 return -LIBBPF_ERRNO__RELOC;
Wang Nan34090912015-07-01 02:14:02 +0000977 }
978
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -0800979 prog->reloc_desc[i].type = RELO_LD64;
Wang Nan34090912015-07-01 02:14:02 +0000980 prog->reloc_desc[i].insn_idx = insn_idx;
981 prog->reloc_desc[i].map_idx = map_idx;
982 }
983 return 0;
984}
985
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -0700986static int bpf_map_find_btf_info(struct bpf_map *map, const struct btf *btf)
987{
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -0700988 const struct btf_type *container_type;
989 const struct btf_member *key, *value;
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -0700990 struct bpf_map_def *def = &map->def;
991 const size_t max_name = 256;
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -0700992 char container_name[max_name];
Martin KaFai Lau5b891af2018-07-24 08:40:21 -0700993 __s64 key_size, value_size;
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -0700994 __s32 container_id;
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -0700995
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -0700996 if (snprintf(container_name, max_name, "____btf_map_%s", map->name) ==
997 max_name) {
998 pr_warning("map:%s length of '____btf_map_%s' is too long\n",
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -0700999 map->name, map->name);
1000 return -EINVAL;
1001 }
1002
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -07001003 container_id = btf__find_by_name(btf, container_name);
1004 if (container_id < 0) {
1005 pr_debug("map:%s container_name:%s cannot be found in BTF. Missing BPF_ANNOTATE_KV_PAIR?\n",
1006 map->name, container_name);
1007 return container_id;
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001008 }
1009
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -07001010 container_type = btf__type_by_id(btf, container_id);
1011 if (!container_type) {
1012 pr_warning("map:%s cannot find BTF type for container_id:%u\n",
1013 map->name, container_id);
1014 return -EINVAL;
1015 }
1016
1017 if (BTF_INFO_KIND(container_type->info) != BTF_KIND_STRUCT ||
1018 BTF_INFO_VLEN(container_type->info) < 2) {
1019 pr_warning("map:%s container_name:%s is an invalid container struct\n",
1020 map->name, container_name);
1021 return -EINVAL;
1022 }
1023
1024 key = (struct btf_member *)(container_type + 1);
1025 value = key + 1;
1026
1027 key_size = btf__resolve_size(btf, key->type);
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001028 if (key_size < 0) {
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -07001029 pr_warning("map:%s invalid BTF key_type_size\n",
1030 map->name);
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001031 return key_size;
1032 }
1033
1034 if (def->key_size != key_size) {
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -07001035 pr_warning("map:%s btf_key_type_size:%u != map_def_key_size:%u\n",
1036 map->name, (__u32)key_size, def->key_size);
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001037 return -EINVAL;
1038 }
1039
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -07001040 value_size = btf__resolve_size(btf, value->type);
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001041 if (value_size < 0) {
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -07001042 pr_warning("map:%s invalid BTF value_type_size\n", map->name);
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001043 return value_size;
1044 }
1045
1046 if (def->value_size != value_size) {
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -07001047 pr_warning("map:%s btf_value_type_size:%u != map_def_value_size:%u\n",
1048 map->name, (__u32)value_size, def->value_size);
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001049 return -EINVAL;
1050 }
1051
Martin KaFai Lau38d5d3b2018-07-24 08:40:22 -07001052 map->btf_key_type_id = key->type;
1053 map->btf_value_type_id = value->type;
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001054
1055 return 0;
1056}
1057
Jakub Kicinski26736eb2018-07-10 14:43:06 -07001058int bpf_map__reuse_fd(struct bpf_map *map, int fd)
1059{
1060 struct bpf_map_info info = {};
1061 __u32 len = sizeof(info);
1062 int new_fd, err;
1063 char *new_name;
1064
1065 err = bpf_obj_get_info_by_fd(fd, &info, &len);
1066 if (err)
1067 return err;
1068
1069 new_name = strdup(info.name);
1070 if (!new_name)
1071 return -errno;
1072
1073 new_fd = open("/", O_RDONLY | O_CLOEXEC);
1074 if (new_fd < 0)
1075 goto err_free_new_name;
1076
1077 new_fd = dup3(fd, new_fd, O_CLOEXEC);
1078 if (new_fd < 0)
1079 goto err_close_new_fd;
1080
1081 err = zclose(map->fd);
1082 if (err)
1083 goto err_close_new_fd;
1084 free(map->name);
1085
1086 map->fd = new_fd;
1087 map->name = new_name;
1088 map->def.type = info.type;
1089 map->def.key_size = info.key_size;
1090 map->def.value_size = info.value_size;
1091 map->def.max_entries = info.max_entries;
1092 map->def.map_flags = info.map_flags;
1093 map->btf_key_type_id = info.btf_key_type_id;
1094 map->btf_value_type_id = info.btf_value_type_id;
1095
1096 return 0;
1097
1098err_close_new_fd:
1099 close(new_fd);
1100err_free_new_name:
1101 free(new_name);
1102 return -errno;
1103}
1104
Wang Nan52d33522015-07-01 02:14:04 +00001105static int
1106bpf_object__create_maps(struct bpf_object *obj)
1107{
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001108 struct bpf_create_map_attr create_attr = {};
Wang Nan52d33522015-07-01 02:14:04 +00001109 unsigned int i;
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001110 int err;
Wang Nan52d33522015-07-01 02:14:04 +00001111
Wang Nan9d759a92015-11-27 08:47:35 +00001112 for (i = 0; i < obj->nr_maps; i++) {
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001113 struct bpf_map *map = &obj->maps[i];
1114 struct bpf_map_def *def = &map->def;
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001115 char *cp, errmsg[STRERR_BUFSIZE];
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001116 int *pfd = &map->fd;
Wang Nan52d33522015-07-01 02:14:04 +00001117
Jakub Kicinski26736eb2018-07-10 14:43:06 -07001118 if (map->fd >= 0) {
1119 pr_debug("skip map create (preset) %s: fd=%d\n",
1120 map->name, map->fd);
1121 continue;
1122 }
1123
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001124 create_attr.name = map->name;
David Beckettf0307a72018-05-16 14:02:49 -07001125 create_attr.map_ifindex = map->map_ifindex;
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001126 create_attr.map_type = def->type;
1127 create_attr.map_flags = def->map_flags;
1128 create_attr.key_size = def->key_size;
1129 create_attr.value_size = def->value_size;
1130 create_attr.max_entries = def->max_entries;
1131 create_attr.btf_fd = 0;
Martin KaFai Lau61746dbe2018-05-22 15:04:24 -07001132 create_attr.btf_key_type_id = 0;
1133 create_attr.btf_value_type_id = 0;
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001134
1135 if (obj->btf && !bpf_map_find_btf_info(map, obj->btf)) {
1136 create_attr.btf_fd = btf__fd(obj->btf);
Martin KaFai Lau61746dbe2018-05-22 15:04:24 -07001137 create_attr.btf_key_type_id = map->btf_key_type_id;
1138 create_attr.btf_value_type_id = map->btf_value_type_id;
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001139 }
1140
1141 *pfd = bpf_create_map_xattr(&create_attr);
Martin KaFai Lau61746dbe2018-05-22 15:04:24 -07001142 if (*pfd < 0 && create_attr.btf_key_type_id) {
Arnaldo Carvalho de Melo6d419072018-09-14 16:47:14 -03001143 cp = str_error(errno, errmsg, sizeof(errmsg));
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001144 pr_warning("Error in bpf_create_map_xattr(%s):%s(%d). Retrying without BTF.\n",
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001145 map->name, cp, errno);
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001146 create_attr.btf_fd = 0;
Martin KaFai Lau61746dbe2018-05-22 15:04:24 -07001147 create_attr.btf_key_type_id = 0;
1148 create_attr.btf_value_type_id = 0;
1149 map->btf_key_type_id = 0;
1150 map->btf_value_type_id = 0;
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001151 *pfd = bpf_create_map_xattr(&create_attr);
1152 }
1153
Wang Nan52d33522015-07-01 02:14:04 +00001154 if (*pfd < 0) {
1155 size_t j;
Wang Nan52d33522015-07-01 02:14:04 +00001156
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001157 err = *pfd;
Arnaldo Carvalho de Melo6d419072018-09-14 16:47:14 -03001158 cp = str_error(errno, errmsg, sizeof(errmsg));
Eric Leblond49bf4b32017-08-20 21:48:14 +02001159 pr_warning("failed to create map (name: '%s'): %s\n",
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001160 map->name, cp);
Wang Nan52d33522015-07-01 02:14:04 +00001161 for (j = 0; j < i; j++)
Wang Nan9d759a92015-11-27 08:47:35 +00001162 zclose(obj->maps[j].fd);
Wang Nan52d33522015-07-01 02:14:04 +00001163 return err;
1164 }
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001165 pr_debug("create map %s: fd=%d\n", map->name, *pfd);
Wang Nan52d33522015-07-01 02:14:04 +00001166 }
1167
Wang Nan52d33522015-07-01 02:14:04 +00001168 return 0;
1169}
1170
Wang Nan8a47a6c2015-07-01 02:14:05 +00001171static int
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08001172bpf_program__reloc_text(struct bpf_program *prog, struct bpf_object *obj,
1173 struct reloc_desc *relo)
1174{
1175 struct bpf_insn *insn, *new_insn;
1176 struct bpf_program *text;
1177 size_t new_cnt;
1178
1179 if (relo->type != RELO_CALL)
1180 return -LIBBPF_ERRNO__RELOC;
1181
1182 if (prog->idx == obj->efile.text_shndx) {
1183 pr_warning("relo in .text insn %d into off %d\n",
1184 relo->insn_idx, relo->text_off);
1185 return -LIBBPF_ERRNO__RELOC;
1186 }
1187
1188 if (prog->main_prog_cnt == 0) {
1189 text = bpf_object__find_prog_by_idx(obj, obj->efile.text_shndx);
1190 if (!text) {
1191 pr_warning("no .text section found yet relo into text exist\n");
1192 return -LIBBPF_ERRNO__RELOC;
1193 }
1194 new_cnt = prog->insns_cnt + text->insns_cnt;
Jakub Kicinski531b0142018-07-10 14:43:05 -07001195 new_insn = reallocarray(prog->insns, new_cnt, sizeof(*insn));
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08001196 if (!new_insn) {
1197 pr_warning("oom in prog realloc\n");
1198 return -ENOMEM;
1199 }
1200 memcpy(new_insn + prog->insns_cnt, text->insns,
1201 text->insns_cnt * sizeof(*insn));
1202 prog->insns = new_insn;
1203 prog->main_prog_cnt = prog->insns_cnt;
1204 prog->insns_cnt = new_cnt;
Jeremy Clineb1a2ce82018-02-20 01:00:07 +00001205 pr_debug("added %zd insn from %s to prog %s\n",
1206 text->insns_cnt, text->section_name,
1207 prog->section_name);
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08001208 }
1209 insn = &prog->insns[relo->insn_idx];
1210 insn->imm += prog->main_prog_cnt - relo->insn_idx;
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08001211 return 0;
1212}
1213
1214static int
Wang Nan9d759a92015-11-27 08:47:35 +00001215bpf_program__relocate(struct bpf_program *prog, struct bpf_object *obj)
Wang Nan8a47a6c2015-07-01 02:14:05 +00001216{
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08001217 int i, err;
Wang Nan8a47a6c2015-07-01 02:14:05 +00001218
1219 if (!prog || !prog->reloc_desc)
1220 return 0;
1221
1222 for (i = 0; i < prog->nr_reloc; i++) {
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08001223 if (prog->reloc_desc[i].type == RELO_LD64) {
1224 struct bpf_insn *insns = prog->insns;
1225 int insn_idx, map_idx;
Wang Nan8a47a6c2015-07-01 02:14:05 +00001226
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08001227 insn_idx = prog->reloc_desc[i].insn_idx;
1228 map_idx = prog->reloc_desc[i].map_idx;
Wang Nan8a47a6c2015-07-01 02:14:05 +00001229
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08001230 if (insn_idx >= (int)prog->insns_cnt) {
1231 pr_warning("relocation out of range: '%s'\n",
1232 prog->section_name);
1233 return -LIBBPF_ERRNO__RELOC;
1234 }
1235 insns[insn_idx].src_reg = BPF_PSEUDO_MAP_FD;
1236 insns[insn_idx].imm = obj->maps[map_idx].fd;
1237 } else {
1238 err = bpf_program__reloc_text(prog, obj,
1239 &prog->reloc_desc[i]);
1240 if (err)
1241 return err;
Wang Nan8a47a6c2015-07-01 02:14:05 +00001242 }
Wang Nan8a47a6c2015-07-01 02:14:05 +00001243 }
1244
1245 zfree(&prog->reloc_desc);
1246 prog->nr_reloc = 0;
1247 return 0;
1248}
1249
1250
1251static int
1252bpf_object__relocate(struct bpf_object *obj)
1253{
1254 struct bpf_program *prog;
1255 size_t i;
1256 int err;
1257
1258 for (i = 0; i < obj->nr_programs; i++) {
1259 prog = &obj->programs[i];
1260
Wang Nan9d759a92015-11-27 08:47:35 +00001261 err = bpf_program__relocate(prog, obj);
Wang Nan8a47a6c2015-07-01 02:14:05 +00001262 if (err) {
1263 pr_warning("failed to relocate '%s'\n",
1264 prog->section_name);
1265 return err;
1266 }
1267 }
1268 return 0;
1269}
1270
Wang Nan34090912015-07-01 02:14:02 +00001271static int bpf_object__collect_reloc(struct bpf_object *obj)
1272{
1273 int i, err;
1274
1275 if (!obj_elf_valid(obj)) {
1276 pr_warning("Internal error: elf object is closed\n");
Wang Nan6371ca3b2015-11-06 13:49:37 +00001277 return -LIBBPF_ERRNO__INTERNAL;
Wang Nan34090912015-07-01 02:14:02 +00001278 }
1279
1280 for (i = 0; i < obj->efile.nr_reloc; i++) {
1281 GElf_Shdr *shdr = &obj->efile.reloc[i].shdr;
1282 Elf_Data *data = obj->efile.reloc[i].data;
1283 int idx = shdr->sh_info;
1284 struct bpf_program *prog;
Wang Nan34090912015-07-01 02:14:02 +00001285
1286 if (shdr->sh_type != SHT_REL) {
1287 pr_warning("internal error at %d\n", __LINE__);
Wang Nan6371ca3b2015-11-06 13:49:37 +00001288 return -LIBBPF_ERRNO__INTERNAL;
Wang Nan34090912015-07-01 02:14:02 +00001289 }
1290
1291 prog = bpf_object__find_prog_by_idx(obj, idx);
1292 if (!prog) {
Jesper Dangaard Brouer077c0662018-02-08 12:48:17 +01001293 pr_warning("relocation failed: no section(%d)\n", idx);
Wang Nan6371ca3b2015-11-06 13:49:37 +00001294 return -LIBBPF_ERRNO__RELOC;
Wang Nan34090912015-07-01 02:14:02 +00001295 }
1296
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08001297 err = bpf_program__collect_reloc(prog,
Wang Nan34090912015-07-01 02:14:02 +00001298 shdr, data,
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08001299 obj);
Wang Nan34090912015-07-01 02:14:02 +00001300 if (err)
Wang Nan6371ca3b2015-11-06 13:49:37 +00001301 return err;
Wang Nan34090912015-07-01 02:14:02 +00001302 }
1303 return 0;
1304}
1305
Wang Nan55cffde2015-07-01 02:14:07 +00001306static int
Andrey Ignatovd7be1432018-03-30 15:08:01 -07001307load_program(enum bpf_prog_type type, enum bpf_attach_type expected_attach_type,
1308 const char *name, struct bpf_insn *insns, int insns_cnt,
David Beckettf0307a72018-05-16 14:02:49 -07001309 char *license, u32 kern_version, int *pfd, int prog_ifindex)
Wang Nan55cffde2015-07-01 02:14:07 +00001310{
Andrey Ignatovd7be1432018-03-30 15:08:01 -07001311 struct bpf_load_program_attr load_attr;
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001312 char *cp, errmsg[STRERR_BUFSIZE];
Wang Nan55cffde2015-07-01 02:14:07 +00001313 char *log_buf;
Andrey Ignatovd7be1432018-03-30 15:08:01 -07001314 int ret;
Wang Nan55cffde2015-07-01 02:14:07 +00001315
Andrey Ignatovd7be1432018-03-30 15:08:01 -07001316 memset(&load_attr, 0, sizeof(struct bpf_load_program_attr));
1317 load_attr.prog_type = type;
1318 load_attr.expected_attach_type = expected_attach_type;
1319 load_attr.name = name;
1320 load_attr.insns = insns;
1321 load_attr.insns_cnt = insns_cnt;
1322 load_attr.license = license;
1323 load_attr.kern_version = kern_version;
David Beckettf0307a72018-05-16 14:02:49 -07001324 load_attr.prog_ifindex = prog_ifindex;
Andrey Ignatovd7be1432018-03-30 15:08:01 -07001325
1326 if (!load_attr.insns || !load_attr.insns_cnt)
Wang Nan55cffde2015-07-01 02:14:07 +00001327 return -EINVAL;
1328
1329 log_buf = malloc(BPF_LOG_BUF_SIZE);
1330 if (!log_buf)
1331 pr_warning("Alloc log buffer for bpf loader error, continue without log\n");
1332
Andrey Ignatovd7be1432018-03-30 15:08:01 -07001333 ret = bpf_load_program_xattr(&load_attr, log_buf, BPF_LOG_BUF_SIZE);
Wang Nan55cffde2015-07-01 02:14:07 +00001334
1335 if (ret >= 0) {
1336 *pfd = ret;
1337 ret = 0;
1338 goto out;
1339 }
1340
Wang Nan6371ca3b2015-11-06 13:49:37 +00001341 ret = -LIBBPF_ERRNO__LOAD;
Arnaldo Carvalho de Melo6d419072018-09-14 16:47:14 -03001342 cp = str_error(errno, errmsg, sizeof(errmsg));
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001343 pr_warning("load bpf program failed: %s\n", cp);
Wang Nan55cffde2015-07-01 02:14:07 +00001344
Wang Nan6371ca3b2015-11-06 13:49:37 +00001345 if (log_buf && log_buf[0] != '\0') {
1346 ret = -LIBBPF_ERRNO__VERIFY;
Wang Nan55cffde2015-07-01 02:14:07 +00001347 pr_warning("-- BEGIN DUMP LOG ---\n");
1348 pr_warning("\n%s\n", log_buf);
1349 pr_warning("-- END LOG --\n");
Andrey Ignatovd7be1432018-03-30 15:08:01 -07001350 } else if (load_attr.insns_cnt >= BPF_MAXINSNS) {
1351 pr_warning("Program too large (%zu insns), at most %d insns\n",
1352 load_attr.insns_cnt, BPF_MAXINSNS);
Wang Nan705fa212016-07-13 10:44:02 +00001353 ret = -LIBBPF_ERRNO__PROG2BIG;
Wang Nan6371ca3b2015-11-06 13:49:37 +00001354 } else {
Wang Nan705fa212016-07-13 10:44:02 +00001355 /* Wrong program type? */
Andrey Ignatovd7be1432018-03-30 15:08:01 -07001356 if (load_attr.prog_type != BPF_PROG_TYPE_KPROBE) {
Wang Nan705fa212016-07-13 10:44:02 +00001357 int fd;
1358
Andrey Ignatovd7be1432018-03-30 15:08:01 -07001359 load_attr.prog_type = BPF_PROG_TYPE_KPROBE;
1360 load_attr.expected_attach_type = 0;
1361 fd = bpf_load_program_xattr(&load_attr, NULL, 0);
Wang Nan705fa212016-07-13 10:44:02 +00001362 if (fd >= 0) {
1363 close(fd);
1364 ret = -LIBBPF_ERRNO__PROGTYPE;
1365 goto out;
1366 }
Wang Nan6371ca3b2015-11-06 13:49:37 +00001367 }
Wang Nan705fa212016-07-13 10:44:02 +00001368
1369 if (log_buf)
1370 ret = -LIBBPF_ERRNO__KVER;
Wang Nan55cffde2015-07-01 02:14:07 +00001371 }
1372
1373out:
1374 free(log_buf);
1375 return ret;
1376}
1377
1378static int
1379bpf_program__load(struct bpf_program *prog,
1380 char *license, u32 kern_version)
1381{
Wang Nanb5805632015-11-16 12:10:09 +00001382 int err = 0, fd, i;
Wang Nan55cffde2015-07-01 02:14:07 +00001383
Wang Nanb5805632015-11-16 12:10:09 +00001384 if (prog->instances.nr < 0 || !prog->instances.fds) {
1385 if (prog->preprocessor) {
1386 pr_warning("Internal error: can't load program '%s'\n",
1387 prog->section_name);
1388 return -LIBBPF_ERRNO__INTERNAL;
1389 }
Wang Nan55cffde2015-07-01 02:14:07 +00001390
Wang Nanb5805632015-11-16 12:10:09 +00001391 prog->instances.fds = malloc(sizeof(int));
1392 if (!prog->instances.fds) {
1393 pr_warning("Not enough memory for BPF fds\n");
1394 return -ENOMEM;
1395 }
1396 prog->instances.nr = 1;
1397 prog->instances.fds[0] = -1;
1398 }
1399
1400 if (!prog->preprocessor) {
1401 if (prog->instances.nr != 1) {
1402 pr_warning("Program '%s' is inconsistent: nr(%d) != 1\n",
1403 prog->section_name, prog->instances.nr);
1404 }
Andrey Ignatovd7be1432018-03-30 15:08:01 -07001405 err = load_program(prog->type, prog->expected_attach_type,
1406 prog->name, prog->insns, prog->insns_cnt,
David Beckettf0307a72018-05-16 14:02:49 -07001407 license, kern_version, &fd,
1408 prog->prog_ifindex);
Wang Nanb5805632015-11-16 12:10:09 +00001409 if (!err)
1410 prog->instances.fds[0] = fd;
1411 goto out;
1412 }
1413
1414 for (i = 0; i < prog->instances.nr; i++) {
1415 struct bpf_prog_prep_result result;
1416 bpf_program_prep_t preprocessor = prog->preprocessor;
1417
1418 bzero(&result, sizeof(result));
1419 err = preprocessor(prog, i, prog->insns,
1420 prog->insns_cnt, &result);
1421 if (err) {
1422 pr_warning("Preprocessing the %dth instance of program '%s' failed\n",
1423 i, prog->section_name);
1424 goto out;
1425 }
1426
1427 if (!result.new_insn_ptr || !result.new_insn_cnt) {
1428 pr_debug("Skip loading the %dth instance of program '%s'\n",
1429 i, prog->section_name);
1430 prog->instances.fds[i] = -1;
1431 if (result.pfd)
1432 *result.pfd = -1;
1433 continue;
1434 }
1435
Andrey Ignatovd7be1432018-03-30 15:08:01 -07001436 err = load_program(prog->type, prog->expected_attach_type,
1437 prog->name, result.new_insn_ptr,
Wang Nanb5805632015-11-16 12:10:09 +00001438 result.new_insn_cnt,
David Beckettf0307a72018-05-16 14:02:49 -07001439 license, kern_version, &fd,
1440 prog->prog_ifindex);
Wang Nanb5805632015-11-16 12:10:09 +00001441
1442 if (err) {
1443 pr_warning("Loading the %dth instance of program '%s' failed\n",
1444 i, prog->section_name);
1445 goto out;
1446 }
1447
1448 if (result.pfd)
1449 *result.pfd = fd;
1450 prog->instances.fds[i] = fd;
1451 }
1452out:
Wang Nan55cffde2015-07-01 02:14:07 +00001453 if (err)
1454 pr_warning("failed to load program '%s'\n",
1455 prog->section_name);
1456 zfree(&prog->insns);
1457 prog->insns_cnt = 0;
1458 return err;
1459}
1460
Jakub Kicinski9a94f272018-06-28 14:41:38 -07001461static bool bpf_program__is_function_storage(struct bpf_program *prog,
1462 struct bpf_object *obj)
1463{
1464 return prog->idx == obj->efile.text_shndx && obj->has_pseudo_calls;
1465}
1466
Wang Nan55cffde2015-07-01 02:14:07 +00001467static int
1468bpf_object__load_progs(struct bpf_object *obj)
1469{
1470 size_t i;
1471 int err;
1472
1473 for (i = 0; i < obj->nr_programs; i++) {
Jakub Kicinski9a94f272018-06-28 14:41:38 -07001474 if (bpf_program__is_function_storage(&obj->programs[i], obj))
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08001475 continue;
Wang Nan55cffde2015-07-01 02:14:07 +00001476 err = bpf_program__load(&obj->programs[i],
1477 obj->license,
1478 obj->kern_version);
1479 if (err)
1480 return err;
1481 }
1482 return 0;
1483}
1484
Jakub Kicinski17387dd2018-05-10 10:24:42 -07001485static bool bpf_prog_type__needs_kver(enum bpf_prog_type type)
Wang Nancb1e5e92015-07-01 02:13:57 +00001486{
Jakub Kicinski17387dd2018-05-10 10:24:42 -07001487 switch (type) {
1488 case BPF_PROG_TYPE_SOCKET_FILTER:
1489 case BPF_PROG_TYPE_SCHED_CLS:
1490 case BPF_PROG_TYPE_SCHED_ACT:
1491 case BPF_PROG_TYPE_XDP:
1492 case BPF_PROG_TYPE_CGROUP_SKB:
1493 case BPF_PROG_TYPE_CGROUP_SOCK:
1494 case BPF_PROG_TYPE_LWT_IN:
1495 case BPF_PROG_TYPE_LWT_OUT:
1496 case BPF_PROG_TYPE_LWT_XMIT:
Mathieu Xhonneux004d4b22018-05-20 14:58:16 +01001497 case BPF_PROG_TYPE_LWT_SEG6LOCAL:
Jakub Kicinski17387dd2018-05-10 10:24:42 -07001498 case BPF_PROG_TYPE_SOCK_OPS:
1499 case BPF_PROG_TYPE_SK_SKB:
1500 case BPF_PROG_TYPE_CGROUP_DEVICE:
1501 case BPF_PROG_TYPE_SK_MSG:
1502 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
Sean Young6bdd5332018-05-27 12:24:10 +01001503 case BPF_PROG_TYPE_LIRC_MODE2:
Martin KaFai Lau6bc8529c2018-08-08 01:01:30 -07001504 case BPF_PROG_TYPE_SK_REUSEPORT:
Petar Penkovc22fbae2018-09-14 07:46:20 -07001505 case BPF_PROG_TYPE_FLOW_DISSECTOR:
Jakub Kicinski17387dd2018-05-10 10:24:42 -07001506 return false;
1507 case BPF_PROG_TYPE_UNSPEC:
1508 case BPF_PROG_TYPE_KPROBE:
1509 case BPF_PROG_TYPE_TRACEPOINT:
1510 case BPF_PROG_TYPE_PERF_EVENT:
1511 case BPF_PROG_TYPE_RAW_TRACEPOINT:
1512 default:
1513 return true;
1514 }
1515}
1516
1517static int bpf_object__validate(struct bpf_object *obj, bool needs_kver)
1518{
1519 if (needs_kver && obj->kern_version == 0) {
Wang Nancb1e5e92015-07-01 02:13:57 +00001520 pr_warning("%s doesn't provide kernel version\n",
1521 obj->path);
Wang Nan6371ca3b2015-11-06 13:49:37 +00001522 return -LIBBPF_ERRNO__KVERSION;
Wang Nancb1e5e92015-07-01 02:13:57 +00001523 }
1524 return 0;
1525}
1526
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001527static struct bpf_object *
Jakub Kicinski17387dd2018-05-10 10:24:42 -07001528__bpf_object__open(const char *path, void *obj_buf, size_t obj_buf_sz,
1529 bool needs_kver)
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001530{
1531 struct bpf_object *obj;
Wang Nan6371ca3b2015-11-06 13:49:37 +00001532 int err;
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001533
1534 if (elf_version(EV_CURRENT) == EV_NONE) {
1535 pr_warning("failed to init libelf for %s\n", path);
Wang Nan6371ca3b2015-11-06 13:49:37 +00001536 return ERR_PTR(-LIBBPF_ERRNO__LIBELF);
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001537 }
1538
Wang Nan6c956392015-07-01 02:13:54 +00001539 obj = bpf_object__new(path, obj_buf, obj_buf_sz);
Wang Nan6371ca3b2015-11-06 13:49:37 +00001540 if (IS_ERR(obj))
1541 return obj;
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001542
Wang Nan6371ca3b2015-11-06 13:49:37 +00001543 CHECK_ERR(bpf_object__elf_init(obj), err, out);
1544 CHECK_ERR(bpf_object__check_endianness(obj), err, out);
1545 CHECK_ERR(bpf_object__elf_collect(obj), err, out);
1546 CHECK_ERR(bpf_object__collect_reloc(obj), err, out);
Jakub Kicinski17387dd2018-05-10 10:24:42 -07001547 CHECK_ERR(bpf_object__validate(obj, needs_kver), err, out);
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001548
1549 bpf_object__elf_finish(obj);
1550 return obj;
1551out:
1552 bpf_object__close(obj);
Wang Nan6371ca3b2015-11-06 13:49:37 +00001553 return ERR_PTR(err);
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001554}
1555
Jakub Kicinski07f2d4e2018-07-10 14:43:02 -07001556struct bpf_object *bpf_object__open_xattr(struct bpf_object_open_attr *attr)
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001557{
1558 /* param validation */
Jakub Kicinski07f2d4e2018-07-10 14:43:02 -07001559 if (!attr->file)
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001560 return NULL;
1561
Jakub Kicinski07f2d4e2018-07-10 14:43:02 -07001562 pr_debug("loading %s\n", attr->file);
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001563
Jakub Kicinski07f2d4e2018-07-10 14:43:02 -07001564 return __bpf_object__open(attr->file, NULL, 0,
1565 bpf_prog_type__needs_kver(attr->prog_type));
1566}
1567
1568struct bpf_object *bpf_object__open(const char *path)
1569{
1570 struct bpf_object_open_attr attr = {
1571 .file = path,
1572 .prog_type = BPF_PROG_TYPE_UNSPEC,
1573 };
1574
1575 return bpf_object__open_xattr(&attr);
Wang Nan6c956392015-07-01 02:13:54 +00001576}
1577
1578struct bpf_object *bpf_object__open_buffer(void *obj_buf,
Wang Nanacf860a2015-08-27 02:30:55 +00001579 size_t obj_buf_sz,
1580 const char *name)
Wang Nan6c956392015-07-01 02:13:54 +00001581{
Wang Nanacf860a2015-08-27 02:30:55 +00001582 char tmp_name[64];
1583
Wang Nan6c956392015-07-01 02:13:54 +00001584 /* param validation */
1585 if (!obj_buf || obj_buf_sz <= 0)
1586 return NULL;
1587
Wang Nanacf860a2015-08-27 02:30:55 +00001588 if (!name) {
1589 snprintf(tmp_name, sizeof(tmp_name), "%lx-%lx",
1590 (unsigned long)obj_buf,
1591 (unsigned long)obj_buf_sz);
1592 tmp_name[sizeof(tmp_name) - 1] = '\0';
1593 name = tmp_name;
1594 }
1595 pr_debug("loading object '%s' from buffer\n",
1596 name);
Wang Nan6c956392015-07-01 02:13:54 +00001597
Jakub Kicinski17387dd2018-05-10 10:24:42 -07001598 return __bpf_object__open(name, obj_buf, obj_buf_sz, true);
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001599}
1600
Wang Nan52d33522015-07-01 02:14:04 +00001601int bpf_object__unload(struct bpf_object *obj)
1602{
1603 size_t i;
1604
1605 if (!obj)
1606 return -EINVAL;
1607
Wang Nan9d759a92015-11-27 08:47:35 +00001608 for (i = 0; i < obj->nr_maps; i++)
1609 zclose(obj->maps[i].fd);
Wang Nan52d33522015-07-01 02:14:04 +00001610
Wang Nan55cffde2015-07-01 02:14:07 +00001611 for (i = 0; i < obj->nr_programs; i++)
1612 bpf_program__unload(&obj->programs[i]);
1613
Wang Nan52d33522015-07-01 02:14:04 +00001614 return 0;
1615}
1616
1617int bpf_object__load(struct bpf_object *obj)
1618{
Wang Nan6371ca3b2015-11-06 13:49:37 +00001619 int err;
1620
Wang Nan52d33522015-07-01 02:14:04 +00001621 if (!obj)
1622 return -EINVAL;
1623
1624 if (obj->loaded) {
1625 pr_warning("object should not be loaded twice\n");
1626 return -EINVAL;
1627 }
1628
1629 obj->loaded = true;
Wang Nan6371ca3b2015-11-06 13:49:37 +00001630
1631 CHECK_ERR(bpf_object__create_maps(obj), err, out);
1632 CHECK_ERR(bpf_object__relocate(obj), err, out);
1633 CHECK_ERR(bpf_object__load_progs(obj), err, out);
Wang Nan52d33522015-07-01 02:14:04 +00001634
1635 return 0;
1636out:
1637 bpf_object__unload(obj);
1638 pr_warning("failed to load object '%s'\n", obj->path);
Wang Nan6371ca3b2015-11-06 13:49:37 +00001639 return err;
Wang Nan52d33522015-07-01 02:14:04 +00001640}
1641
Joe Stringerf3675402017-01-26 13:19:56 -08001642static int check_path(const char *path)
1643{
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001644 char *cp, errmsg[STRERR_BUFSIZE];
Joe Stringerf3675402017-01-26 13:19:56 -08001645 struct statfs st_fs;
1646 char *dname, *dir;
1647 int err = 0;
1648
1649 if (path == NULL)
1650 return -EINVAL;
1651
1652 dname = strdup(path);
1653 if (dname == NULL)
1654 return -ENOMEM;
1655
1656 dir = dirname(dname);
1657 if (statfs(dir, &st_fs)) {
Arnaldo Carvalho de Melo6d419072018-09-14 16:47:14 -03001658 cp = str_error(errno, errmsg, sizeof(errmsg));
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001659 pr_warning("failed to statfs %s: %s\n", dir, cp);
Joe Stringerf3675402017-01-26 13:19:56 -08001660 err = -errno;
1661 }
1662 free(dname);
1663
1664 if (!err && st_fs.f_type != BPF_FS_MAGIC) {
1665 pr_warning("specified path %s is not on BPF FS\n", path);
1666 err = -EINVAL;
1667 }
1668
1669 return err;
1670}
1671
1672int bpf_program__pin_instance(struct bpf_program *prog, const char *path,
1673 int instance)
1674{
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001675 char *cp, errmsg[STRERR_BUFSIZE];
Joe Stringerf3675402017-01-26 13:19:56 -08001676 int err;
1677
1678 err = check_path(path);
1679 if (err)
1680 return err;
1681
1682 if (prog == NULL) {
1683 pr_warning("invalid program pointer\n");
1684 return -EINVAL;
1685 }
1686
1687 if (instance < 0 || instance >= prog->instances.nr) {
1688 pr_warning("invalid prog instance %d of prog %s (max %d)\n",
1689 instance, prog->section_name, prog->instances.nr);
1690 return -EINVAL;
1691 }
1692
1693 if (bpf_obj_pin(prog->instances.fds[instance], path)) {
Arnaldo Carvalho de Melo6d419072018-09-14 16:47:14 -03001694 cp = str_error(errno, errmsg, sizeof(errmsg));
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001695 pr_warning("failed to pin program: %s\n", cp);
Joe Stringerf3675402017-01-26 13:19:56 -08001696 return -errno;
1697 }
1698 pr_debug("pinned program '%s'\n", path);
1699
1700 return 0;
1701}
1702
1703static int make_dir(const char *path)
1704{
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001705 char *cp, errmsg[STRERR_BUFSIZE];
Joe Stringerf3675402017-01-26 13:19:56 -08001706 int err = 0;
1707
1708 if (mkdir(path, 0700) && errno != EEXIST)
1709 err = -errno;
1710
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001711 if (err) {
Arnaldo Carvalho de Melo6d419072018-09-14 16:47:14 -03001712 cp = str_error(-err, errmsg, sizeof(errmsg));
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001713 pr_warning("failed to mkdir %s: %s\n", path, cp);
1714 }
Joe Stringerf3675402017-01-26 13:19:56 -08001715 return err;
1716}
1717
1718int bpf_program__pin(struct bpf_program *prog, const char *path)
1719{
1720 int i, err;
1721
1722 err = check_path(path);
1723 if (err)
1724 return err;
1725
1726 if (prog == NULL) {
1727 pr_warning("invalid program pointer\n");
1728 return -EINVAL;
1729 }
1730
1731 if (prog->instances.nr <= 0) {
1732 pr_warning("no instances of prog %s to pin\n",
1733 prog->section_name);
1734 return -EINVAL;
1735 }
1736
1737 err = make_dir(path);
1738 if (err)
1739 return err;
1740
1741 for (i = 0; i < prog->instances.nr; i++) {
1742 char buf[PATH_MAX];
1743 int len;
1744
1745 len = snprintf(buf, PATH_MAX, "%s/%d", path, i);
1746 if (len < 0)
1747 return -EINVAL;
1748 else if (len >= PATH_MAX)
1749 return -ENAMETOOLONG;
1750
1751 err = bpf_program__pin_instance(prog, buf, i);
1752 if (err)
1753 return err;
1754 }
1755
1756 return 0;
1757}
1758
Joe Stringerb6989f32017-01-26 13:19:57 -08001759int bpf_map__pin(struct bpf_map *map, const char *path)
1760{
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001761 char *cp, errmsg[STRERR_BUFSIZE];
Joe Stringerb6989f32017-01-26 13:19:57 -08001762 int err;
1763
1764 err = check_path(path);
1765 if (err)
1766 return err;
1767
1768 if (map == NULL) {
1769 pr_warning("invalid map pointer\n");
1770 return -EINVAL;
1771 }
1772
1773 if (bpf_obj_pin(map->fd, path)) {
Arnaldo Carvalho de Melo6d419072018-09-14 16:47:14 -03001774 cp = str_error(errno, errmsg, sizeof(errmsg));
Thomas Richter1ce6a9f2018-07-30 10:53:23 +02001775 pr_warning("failed to pin map: %s\n", cp);
Joe Stringerb6989f32017-01-26 13:19:57 -08001776 return -errno;
1777 }
1778
1779 pr_debug("pinned map '%s'\n", path);
1780 return 0;
1781}
1782
Joe Stringerd5148d82017-01-26 13:19:58 -08001783int bpf_object__pin(struct bpf_object *obj, const char *path)
1784{
1785 struct bpf_program *prog;
1786 struct bpf_map *map;
1787 int err;
1788
1789 if (!obj)
1790 return -ENOENT;
1791
1792 if (!obj->loaded) {
1793 pr_warning("object not yet loaded; load it first\n");
1794 return -ENOENT;
1795 }
1796
1797 err = make_dir(path);
1798 if (err)
1799 return err;
1800
1801 bpf_map__for_each(map, obj) {
1802 char buf[PATH_MAX];
1803 int len;
1804
1805 len = snprintf(buf, PATH_MAX, "%s/%s", path,
1806 bpf_map__name(map));
1807 if (len < 0)
1808 return -EINVAL;
1809 else if (len >= PATH_MAX)
1810 return -ENAMETOOLONG;
1811
1812 err = bpf_map__pin(map, buf);
1813 if (err)
1814 return err;
1815 }
1816
1817 bpf_object__for_each_program(prog, obj) {
1818 char buf[PATH_MAX];
1819 int len;
1820
1821 len = snprintf(buf, PATH_MAX, "%s/%s", path,
1822 prog->section_name);
1823 if (len < 0)
1824 return -EINVAL;
1825 else if (len >= PATH_MAX)
1826 return -ENAMETOOLONG;
1827
1828 err = bpf_program__pin(prog, buf);
1829 if (err)
1830 return err;
1831 }
1832
1833 return 0;
1834}
1835
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001836void bpf_object__close(struct bpf_object *obj)
1837{
Wang Nana5b8bd42015-07-01 02:14:00 +00001838 size_t i;
1839
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001840 if (!obj)
1841 return;
1842
Wang Nan10931d22016-11-26 07:03:26 +00001843 if (obj->clear_priv)
1844 obj->clear_priv(obj, obj->priv);
1845
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001846 bpf_object__elf_finish(obj);
Wang Nan52d33522015-07-01 02:14:04 +00001847 bpf_object__unload(obj);
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001848 btf__free(obj->btf);
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001849
Wang Nan9d759a92015-11-27 08:47:35 +00001850 for (i = 0; i < obj->nr_maps; i++) {
Wang Nan561bbcc2015-11-27 08:47:36 +00001851 zfree(&obj->maps[i].name);
Wang Nan9d759a92015-11-27 08:47:35 +00001852 if (obj->maps[i].clear_priv)
1853 obj->maps[i].clear_priv(&obj->maps[i],
1854 obj->maps[i].priv);
1855 obj->maps[i].priv = NULL;
1856 obj->maps[i].clear_priv = NULL;
1857 }
1858 zfree(&obj->maps);
1859 obj->nr_maps = 0;
Wang Nana5b8bd42015-07-01 02:14:00 +00001860
1861 if (obj->programs && obj->nr_programs) {
1862 for (i = 0; i < obj->nr_programs; i++)
1863 bpf_program__exit(&obj->programs[i]);
1864 }
1865 zfree(&obj->programs);
1866
Wang Nan9a208ef2015-07-01 02:14:10 +00001867 list_del(&obj->list);
Wang Nan1a5e3fb2015-07-01 02:13:53 +00001868 free(obj);
1869}
Wang Nanaa9b1ac2015-07-01 02:14:08 +00001870
Wang Nan9a208ef2015-07-01 02:14:10 +00001871struct bpf_object *
1872bpf_object__next(struct bpf_object *prev)
1873{
1874 struct bpf_object *next;
1875
1876 if (!prev)
1877 next = list_first_entry(&bpf_objects_list,
1878 struct bpf_object,
1879 list);
1880 else
1881 next = list_next_entry(prev, list);
1882
1883 /* Empty list is noticed here so don't need checking on entry. */
1884 if (&next->list == &bpf_objects_list)
1885 return NULL;
1886
1887 return next;
1888}
1889
Arnaldo Carvalho de Meloa7fe0452016-06-03 12:22:51 -03001890const char *bpf_object__name(struct bpf_object *obj)
Wang Nanacf860a2015-08-27 02:30:55 +00001891{
Arnaldo Carvalho de Meloa7fe0452016-06-03 12:22:51 -03001892 return obj ? obj->path : ERR_PTR(-EINVAL);
Wang Nanacf860a2015-08-27 02:30:55 +00001893}
1894
Arnaldo Carvalho de Meloa7fe0452016-06-03 12:22:51 -03001895unsigned int bpf_object__kversion(struct bpf_object *obj)
Wang Nan45825d82015-11-06 13:49:38 +00001896{
Arnaldo Carvalho de Meloa7fe0452016-06-03 12:22:51 -03001897 return obj ? obj->kern_version : 0;
Wang Nan45825d82015-11-06 13:49:38 +00001898}
1899
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07001900int bpf_object__btf_fd(const struct bpf_object *obj)
1901{
1902 return obj->btf ? btf__fd(obj->btf) : -1;
1903}
1904
Wang Nan10931d22016-11-26 07:03:26 +00001905int bpf_object__set_priv(struct bpf_object *obj, void *priv,
1906 bpf_object_clear_priv_t clear_priv)
1907{
1908 if (obj->priv && obj->clear_priv)
1909 obj->clear_priv(obj, obj->priv);
1910
1911 obj->priv = priv;
1912 obj->clear_priv = clear_priv;
1913 return 0;
1914}
1915
1916void *bpf_object__priv(struct bpf_object *obj)
1917{
1918 return obj ? obj->priv : ERR_PTR(-EINVAL);
1919}
1920
Jakub Kicinskieac7d842018-06-28 14:41:39 -07001921static struct bpf_program *
1922__bpf_program__next(struct bpf_program *prev, struct bpf_object *obj)
Wang Nanaa9b1ac2015-07-01 02:14:08 +00001923{
1924 size_t idx;
1925
1926 if (!obj->programs)
1927 return NULL;
1928 /* First handler */
1929 if (prev == NULL)
1930 return &obj->programs[0];
1931
1932 if (prev->obj != obj) {
1933 pr_warning("error: program handler doesn't match object\n");
1934 return NULL;
1935 }
1936
1937 idx = (prev - obj->programs) + 1;
1938 if (idx >= obj->nr_programs)
1939 return NULL;
1940 return &obj->programs[idx];
1941}
1942
Jakub Kicinskieac7d842018-06-28 14:41:39 -07001943struct bpf_program *
1944bpf_program__next(struct bpf_program *prev, struct bpf_object *obj)
1945{
1946 struct bpf_program *prog = prev;
1947
1948 do {
1949 prog = __bpf_program__next(prog, obj);
1950 } while (prog && bpf_program__is_function_storage(prog, obj));
1951
1952 return prog;
1953}
1954
Arnaldo Carvalho de Meloedb13ed2016-06-03 12:38:21 -03001955int bpf_program__set_priv(struct bpf_program *prog, void *priv,
1956 bpf_program_clear_priv_t clear_priv)
Wang Nanaa9b1ac2015-07-01 02:14:08 +00001957{
1958 if (prog->priv && prog->clear_priv)
1959 prog->clear_priv(prog, prog->priv);
1960
1961 prog->priv = priv;
1962 prog->clear_priv = clear_priv;
1963 return 0;
1964}
1965
Arnaldo Carvalho de Melobe834ff2016-06-03 12:36:39 -03001966void *bpf_program__priv(struct bpf_program *prog)
Wang Nanaa9b1ac2015-07-01 02:14:08 +00001967{
Arnaldo Carvalho de Melobe834ff2016-06-03 12:36:39 -03001968 return prog ? prog->priv : ERR_PTR(-EINVAL);
Wang Nanaa9b1ac2015-07-01 02:14:08 +00001969}
1970
Jakub Kicinski9aba3612018-06-28 14:41:37 -07001971void bpf_program__set_ifindex(struct bpf_program *prog, __u32 ifindex)
1972{
1973 prog->prog_ifindex = ifindex;
1974}
1975
Namhyung Kim715f8db2015-11-03 20:21:05 +09001976const char *bpf_program__title(struct bpf_program *prog, bool needs_copy)
Wang Nanaa9b1ac2015-07-01 02:14:08 +00001977{
1978 const char *title;
1979
1980 title = prog->section_name;
Namhyung Kim715f8db2015-11-03 20:21:05 +09001981 if (needs_copy) {
Wang Nanaa9b1ac2015-07-01 02:14:08 +00001982 title = strdup(title);
1983 if (!title) {
1984 pr_warning("failed to strdup program title\n");
Wang Nan6371ca3b2015-11-06 13:49:37 +00001985 return ERR_PTR(-ENOMEM);
Wang Nanaa9b1ac2015-07-01 02:14:08 +00001986 }
1987 }
1988
1989 return title;
1990}
1991
1992int bpf_program__fd(struct bpf_program *prog)
1993{
Wang Nanb5805632015-11-16 12:10:09 +00001994 return bpf_program__nth_fd(prog, 0);
1995}
1996
1997int bpf_program__set_prep(struct bpf_program *prog, int nr_instances,
1998 bpf_program_prep_t prep)
1999{
2000 int *instances_fds;
2001
2002 if (nr_instances <= 0 || !prep)
2003 return -EINVAL;
2004
2005 if (prog->instances.nr > 0 || prog->instances.fds) {
2006 pr_warning("Can't set pre-processor after loading\n");
2007 return -EINVAL;
2008 }
2009
2010 instances_fds = malloc(sizeof(int) * nr_instances);
2011 if (!instances_fds) {
2012 pr_warning("alloc memory failed for fds\n");
2013 return -ENOMEM;
2014 }
2015
2016 /* fill all fd with -1 */
2017 memset(instances_fds, -1, sizeof(int) * nr_instances);
2018
2019 prog->instances.nr = nr_instances;
2020 prog->instances.fds = instances_fds;
2021 prog->preprocessor = prep;
2022 return 0;
2023}
2024
2025int bpf_program__nth_fd(struct bpf_program *prog, int n)
2026{
2027 int fd;
2028
Jakub Kicinski1e960042018-07-26 14:32:18 -07002029 if (!prog)
2030 return -EINVAL;
2031
Wang Nanb5805632015-11-16 12:10:09 +00002032 if (n >= prog->instances.nr || n < 0) {
2033 pr_warning("Can't get the %dth fd from program %s: only %d instances\n",
2034 n, prog->section_name, prog->instances.nr);
2035 return -EINVAL;
2036 }
2037
2038 fd = prog->instances.fds[n];
2039 if (fd < 0) {
2040 pr_warning("%dth instance of program '%s' is invalid\n",
2041 n, prog->section_name);
2042 return -ENOENT;
2043 }
2044
2045 return fd;
Wang Nanaa9b1ac2015-07-01 02:14:08 +00002046}
Wang Nan9d759a92015-11-27 08:47:35 +00002047
Alexei Starovoitovdd26b7f2017-03-30 21:45:40 -07002048void bpf_program__set_type(struct bpf_program *prog, enum bpf_prog_type type)
Wang Nan5f44e4c82016-07-13 10:44:01 +00002049{
2050 prog->type = type;
2051}
2052
Wang Nan5f44e4c82016-07-13 10:44:01 +00002053static bool bpf_program__is_type(struct bpf_program *prog,
2054 enum bpf_prog_type type)
2055{
2056 return prog ? (prog->type == type) : false;
2057}
2058
Joe Stringered794072017-01-22 17:11:23 -08002059#define BPF_PROG_TYPE_FNS(NAME, TYPE) \
2060int bpf_program__set_##NAME(struct bpf_program *prog) \
2061{ \
2062 if (!prog) \
2063 return -EINVAL; \
2064 bpf_program__set_type(prog, TYPE); \
2065 return 0; \
2066} \
2067 \
2068bool bpf_program__is_##NAME(struct bpf_program *prog) \
2069{ \
2070 return bpf_program__is_type(prog, TYPE); \
2071} \
Wang Nan5f44e4c82016-07-13 10:44:01 +00002072
Joe Stringer7803ba72017-01-22 17:11:24 -08002073BPF_PROG_TYPE_FNS(socket_filter, BPF_PROG_TYPE_SOCKET_FILTER);
Joe Stringered794072017-01-22 17:11:23 -08002074BPF_PROG_TYPE_FNS(kprobe, BPF_PROG_TYPE_KPROBE);
Joe Stringer7803ba72017-01-22 17:11:24 -08002075BPF_PROG_TYPE_FNS(sched_cls, BPF_PROG_TYPE_SCHED_CLS);
2076BPF_PROG_TYPE_FNS(sched_act, BPF_PROG_TYPE_SCHED_ACT);
Joe Stringered794072017-01-22 17:11:23 -08002077BPF_PROG_TYPE_FNS(tracepoint, BPF_PROG_TYPE_TRACEPOINT);
Andrey Ignatove14c93fd2018-04-17 10:28:46 -07002078BPF_PROG_TYPE_FNS(raw_tracepoint, BPF_PROG_TYPE_RAW_TRACEPOINT);
Joe Stringer7803ba72017-01-22 17:11:24 -08002079BPF_PROG_TYPE_FNS(xdp, BPF_PROG_TYPE_XDP);
2080BPF_PROG_TYPE_FNS(perf_event, BPF_PROG_TYPE_PERF_EVENT);
Wang Nan5f44e4c82016-07-13 10:44:01 +00002081
John Fastabend16962b22018-04-23 14:30:38 -07002082void bpf_program__set_expected_attach_type(struct bpf_program *prog,
2083 enum bpf_attach_type type)
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002084{
2085 prog->expected_attach_type = type;
2086}
2087
Andrey Ignatov956b6202018-09-26 15:24:53 -07002088#define BPF_PROG_SEC_IMPL(string, ptype, eatype, atype) \
2089 { string, sizeof(string) - 1, ptype, eatype, atype }
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002090
Andrey Ignatov956b6202018-09-26 15:24:53 -07002091/* Programs that can NOT be attached. */
2092#define BPF_PROG_SEC(string, ptype) BPF_PROG_SEC_IMPL(string, ptype, 0, -EINVAL)
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002093
Andrey Ignatov956b6202018-09-26 15:24:53 -07002094/* Programs that can be attached. */
2095#define BPF_APROG_SEC(string, ptype, atype) \
2096 BPF_PROG_SEC_IMPL(string, ptype, 0, atype)
Andrey Ignatov81efee72018-04-17 10:28:45 -07002097
Andrey Ignatov956b6202018-09-26 15:24:53 -07002098/* Programs that must specify expected attach type at load time. */
2099#define BPF_EAPROG_SEC(string, ptype, eatype) \
2100 BPF_PROG_SEC_IMPL(string, ptype, eatype, eatype)
2101
2102/* Programs that can be attached but attach type can't be identified by section
2103 * name. Kept for backward compatibility.
2104 */
2105#define BPF_APROG_COMPAT(string, ptype) BPF_PROG_SEC(string, ptype)
Andrey Ignatove50b0a62018-03-30 15:08:03 -07002106
Roman Gushchin583c9002017-12-13 15:18:51 +00002107static const struct {
2108 const char *sec;
2109 size_t len;
2110 enum bpf_prog_type prog_type;
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002111 enum bpf_attach_type expected_attach_type;
Andrey Ignatov956b6202018-09-26 15:24:53 -07002112 enum bpf_attach_type attach_type;
Roman Gushchin583c9002017-12-13 15:18:51 +00002113} section_names[] = {
Andrey Ignatov956b6202018-09-26 15:24:53 -07002114 BPF_PROG_SEC("socket", BPF_PROG_TYPE_SOCKET_FILTER),
2115 BPF_PROG_SEC("kprobe/", BPF_PROG_TYPE_KPROBE),
2116 BPF_PROG_SEC("kretprobe/", BPF_PROG_TYPE_KPROBE),
2117 BPF_PROG_SEC("classifier", BPF_PROG_TYPE_SCHED_CLS),
2118 BPF_PROG_SEC("action", BPF_PROG_TYPE_SCHED_ACT),
2119 BPF_PROG_SEC("tracepoint/", BPF_PROG_TYPE_TRACEPOINT),
2120 BPF_PROG_SEC("raw_tracepoint/", BPF_PROG_TYPE_RAW_TRACEPOINT),
2121 BPF_PROG_SEC("xdp", BPF_PROG_TYPE_XDP),
2122 BPF_PROG_SEC("perf_event", BPF_PROG_TYPE_PERF_EVENT),
2123 BPF_PROG_SEC("lwt_in", BPF_PROG_TYPE_LWT_IN),
2124 BPF_PROG_SEC("lwt_out", BPF_PROG_TYPE_LWT_OUT),
2125 BPF_PROG_SEC("lwt_xmit", BPF_PROG_TYPE_LWT_XMIT),
2126 BPF_PROG_SEC("lwt_seg6local", BPF_PROG_TYPE_LWT_SEG6LOCAL),
Andrey Ignatovbafa7af2018-09-26 15:24:54 -07002127 BPF_APROG_SEC("cgroup_skb/ingress", BPF_PROG_TYPE_CGROUP_SKB,
2128 BPF_CGROUP_INET_INGRESS),
2129 BPF_APROG_SEC("cgroup_skb/egress", BPF_PROG_TYPE_CGROUP_SKB,
2130 BPF_CGROUP_INET_EGRESS),
Andrey Ignatov956b6202018-09-26 15:24:53 -07002131 BPF_APROG_COMPAT("cgroup/skb", BPF_PROG_TYPE_CGROUP_SKB),
2132 BPF_APROG_SEC("cgroup/sock", BPF_PROG_TYPE_CGROUP_SOCK,
2133 BPF_CGROUP_INET_SOCK_CREATE),
2134 BPF_EAPROG_SEC("cgroup/post_bind4", BPF_PROG_TYPE_CGROUP_SOCK,
2135 BPF_CGROUP_INET4_POST_BIND),
2136 BPF_EAPROG_SEC("cgroup/post_bind6", BPF_PROG_TYPE_CGROUP_SOCK,
2137 BPF_CGROUP_INET6_POST_BIND),
2138 BPF_APROG_SEC("cgroup/dev", BPF_PROG_TYPE_CGROUP_DEVICE,
2139 BPF_CGROUP_DEVICE),
2140 BPF_APROG_SEC("sockops", BPF_PROG_TYPE_SOCK_OPS,
2141 BPF_CGROUP_SOCK_OPS),
2142 BPF_APROG_COMPAT("sk_skb", BPF_PROG_TYPE_SK_SKB),
2143 BPF_APROG_SEC("sk_msg", BPF_PROG_TYPE_SK_MSG,
2144 BPF_SK_MSG_VERDICT),
2145 BPF_APROG_SEC("lirc_mode2", BPF_PROG_TYPE_LIRC_MODE2,
2146 BPF_LIRC_MODE2),
2147 BPF_APROG_SEC("flow_dissector", BPF_PROG_TYPE_FLOW_DISSECTOR,
2148 BPF_FLOW_DISSECTOR),
2149 BPF_EAPROG_SEC("cgroup/bind4", BPF_PROG_TYPE_CGROUP_SOCK_ADDR,
2150 BPF_CGROUP_INET4_BIND),
2151 BPF_EAPROG_SEC("cgroup/bind6", BPF_PROG_TYPE_CGROUP_SOCK_ADDR,
2152 BPF_CGROUP_INET6_BIND),
2153 BPF_EAPROG_SEC("cgroup/connect4", BPF_PROG_TYPE_CGROUP_SOCK_ADDR,
2154 BPF_CGROUP_INET4_CONNECT),
2155 BPF_EAPROG_SEC("cgroup/connect6", BPF_PROG_TYPE_CGROUP_SOCK_ADDR,
2156 BPF_CGROUP_INET6_CONNECT),
2157 BPF_EAPROG_SEC("cgroup/sendmsg4", BPF_PROG_TYPE_CGROUP_SOCK_ADDR,
2158 BPF_CGROUP_UDP4_SENDMSG),
2159 BPF_EAPROG_SEC("cgroup/sendmsg6", BPF_PROG_TYPE_CGROUP_SOCK_ADDR,
2160 BPF_CGROUP_UDP6_SENDMSG),
Roman Gushchin583c9002017-12-13 15:18:51 +00002161};
Roman Gushchin583c9002017-12-13 15:18:51 +00002162
Andrey Ignatov956b6202018-09-26 15:24:53 -07002163#undef BPF_PROG_SEC_IMPL
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002164#undef BPF_PROG_SEC
Andrey Ignatov956b6202018-09-26 15:24:53 -07002165#undef BPF_APROG_SEC
2166#undef BPF_EAPROG_SEC
2167#undef BPF_APROG_COMPAT
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002168
Jakub Kicinskib60df2a2018-07-10 14:42:59 -07002169int libbpf_prog_type_by_name(const char *name, enum bpf_prog_type *prog_type,
2170 enum bpf_attach_type *expected_attach_type)
Roman Gushchin583c9002017-12-13 15:18:51 +00002171{
2172 int i;
2173
Jakub Kicinskib60df2a2018-07-10 14:42:59 -07002174 if (!name)
2175 return -EINVAL;
Roman Gushchin583c9002017-12-13 15:18:51 +00002176
Jakub Kicinskib60df2a2018-07-10 14:42:59 -07002177 for (i = 0; i < ARRAY_SIZE(section_names); i++) {
2178 if (strncmp(name, section_names[i].sec, section_names[i].len))
2179 continue;
2180 *prog_type = section_names[i].prog_type;
2181 *expected_attach_type = section_names[i].expected_attach_type;
2182 return 0;
2183 }
2184 return -EINVAL;
2185}
Roman Gushchin583c9002017-12-13 15:18:51 +00002186
Andrey Ignatov956b6202018-09-26 15:24:53 -07002187int libbpf_attach_type_by_name(const char *name,
2188 enum bpf_attach_type *attach_type)
2189{
2190 int i;
2191
2192 if (!name)
2193 return -EINVAL;
2194
2195 for (i = 0; i < ARRAY_SIZE(section_names); i++) {
2196 if (strncmp(name, section_names[i].sec, section_names[i].len))
2197 continue;
2198 if (section_names[i].attach_type == -EINVAL)
2199 return -EINVAL;
2200 *attach_type = section_names[i].attach_type;
2201 return 0;
2202 }
2203 return -EINVAL;
2204}
2205
Jakub Kicinskib60df2a2018-07-10 14:42:59 -07002206static int
2207bpf_program__identify_section(struct bpf_program *prog,
2208 enum bpf_prog_type *prog_type,
2209 enum bpf_attach_type *expected_attach_type)
2210{
2211 return libbpf_prog_type_by_name(prog->section_name, prog_type,
2212 expected_attach_type);
Roman Gushchin583c9002017-12-13 15:18:51 +00002213}
2214
Arnaldo Carvalho de Melo6e009e652016-06-03 12:15:52 -03002215int bpf_map__fd(struct bpf_map *map)
Wang Nan9d759a92015-11-27 08:47:35 +00002216{
Arnaldo Carvalho de Melo6e009e652016-06-03 12:15:52 -03002217 return map ? map->fd : -EINVAL;
Wang Nan9d759a92015-11-27 08:47:35 +00002218}
2219
Arnaldo Carvalho de Melo53897a72016-06-02 14:21:06 -03002220const struct bpf_map_def *bpf_map__def(struct bpf_map *map)
Wang Nan9d759a92015-11-27 08:47:35 +00002221{
Arnaldo Carvalho de Melo53897a72016-06-02 14:21:06 -03002222 return map ? &map->def : ERR_PTR(-EINVAL);
Wang Nan9d759a92015-11-27 08:47:35 +00002223}
2224
Arnaldo Carvalho de Melo009ad5d2016-06-02 11:02:05 -03002225const char *bpf_map__name(struct bpf_map *map)
Wang Nan561bbcc2015-11-27 08:47:36 +00002226{
Arnaldo Carvalho de Melo009ad5d2016-06-02 11:02:05 -03002227 return map ? map->name : NULL;
Wang Nan561bbcc2015-11-27 08:47:36 +00002228}
2229
Martin KaFai Lau5b891af2018-07-24 08:40:21 -07002230__u32 bpf_map__btf_key_type_id(const struct bpf_map *map)
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07002231{
Martin KaFai Lau61746dbe2018-05-22 15:04:24 -07002232 return map ? map->btf_key_type_id : 0;
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07002233}
2234
Martin KaFai Lau5b891af2018-07-24 08:40:21 -07002235__u32 bpf_map__btf_value_type_id(const struct bpf_map *map)
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07002236{
Martin KaFai Lau61746dbe2018-05-22 15:04:24 -07002237 return map ? map->btf_value_type_id : 0;
Martin KaFai Lau8a138ae2018-04-18 15:56:05 -07002238}
2239
Arnaldo Carvalho de Meloedb13ed2016-06-03 12:38:21 -03002240int bpf_map__set_priv(struct bpf_map *map, void *priv,
2241 bpf_map_clear_priv_t clear_priv)
Wang Nan9d759a92015-11-27 08:47:35 +00002242{
2243 if (!map)
2244 return -EINVAL;
2245
2246 if (map->priv) {
2247 if (map->clear_priv)
2248 map->clear_priv(map, map->priv);
2249 }
2250
2251 map->priv = priv;
2252 map->clear_priv = clear_priv;
2253 return 0;
2254}
2255
Arnaldo Carvalho de Melob4cbfa52016-06-02 10:51:59 -03002256void *bpf_map__priv(struct bpf_map *map)
Wang Nan9d759a92015-11-27 08:47:35 +00002257{
Arnaldo Carvalho de Melob4cbfa52016-06-02 10:51:59 -03002258 return map ? map->priv : ERR_PTR(-EINVAL);
Wang Nan9d759a92015-11-27 08:47:35 +00002259}
2260
Jakub Kicinskif83fb222018-07-10 14:43:01 -07002261bool bpf_map__is_offload_neutral(struct bpf_map *map)
2262{
2263 return map->def.type == BPF_MAP_TYPE_PERF_EVENT_ARRAY;
2264}
2265
Jakub Kicinski9aba3612018-06-28 14:41:37 -07002266void bpf_map__set_ifindex(struct bpf_map *map, __u32 ifindex)
2267{
2268 map->map_ifindex = ifindex;
2269}
2270
Wang Nan9d759a92015-11-27 08:47:35 +00002271struct bpf_map *
2272bpf_map__next(struct bpf_map *prev, struct bpf_object *obj)
2273{
2274 size_t idx;
2275 struct bpf_map *s, *e;
2276
2277 if (!obj || !obj->maps)
2278 return NULL;
2279
2280 s = obj->maps;
2281 e = obj->maps + obj->nr_maps;
2282
2283 if (prev == NULL)
2284 return s;
2285
2286 if ((prev < s) || (prev >= e)) {
2287 pr_warning("error in %s: map handler doesn't belong to object\n",
2288 __func__);
2289 return NULL;
2290 }
2291
2292 idx = (prev - obj->maps) + 1;
2293 if (idx >= obj->nr_maps)
2294 return NULL;
2295 return &obj->maps[idx];
2296}
Wang Nan561bbcc2015-11-27 08:47:36 +00002297
2298struct bpf_map *
Arnaldo Carvalho de Meloa7fe0452016-06-03 12:22:51 -03002299bpf_object__find_map_by_name(struct bpf_object *obj, const char *name)
Wang Nan561bbcc2015-11-27 08:47:36 +00002300{
2301 struct bpf_map *pos;
2302
2303 bpf_map__for_each(pos, obj) {
Wang Nan973170e2015-12-08 02:25:29 +00002304 if (pos->name && !strcmp(pos->name, name))
Wang Nan561bbcc2015-11-27 08:47:36 +00002305 return pos;
2306 }
2307 return NULL;
2308}
Wang Nan5a6acad2016-11-26 07:03:27 +00002309
2310struct bpf_map *
2311bpf_object__find_map_by_offset(struct bpf_object *obj, size_t offset)
2312{
2313 int i;
2314
2315 for (i = 0; i < obj->nr_maps; i++) {
2316 if (obj->maps[i].offset == offset)
2317 return &obj->maps[i];
2318 }
2319 return ERR_PTR(-ENOENT);
2320}
Joe Stringere28ff1a2017-01-22 17:11:25 -08002321
2322long libbpf_get_error(const void *ptr)
2323{
2324 if (IS_ERR(ptr))
2325 return PTR_ERR(ptr);
2326 return 0;
2327}
John Fastabend6f6d33f2017-08-15 22:34:22 -07002328
2329int bpf_prog_load(const char *file, enum bpf_prog_type type,
2330 struct bpf_object **pobj, int *prog_fd)
2331{
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002332 struct bpf_prog_load_attr attr;
2333
2334 memset(&attr, 0, sizeof(struct bpf_prog_load_attr));
2335 attr.file = file;
2336 attr.prog_type = type;
2337 attr.expected_attach_type = 0;
2338
2339 return bpf_prog_load_xattr(&attr, pobj, prog_fd);
2340}
2341
2342int bpf_prog_load_xattr(const struct bpf_prog_load_attr *attr,
2343 struct bpf_object **pobj, int *prog_fd)
2344{
Jakub Kicinski07f2d4e2018-07-10 14:43:02 -07002345 struct bpf_object_open_attr open_attr = {
2346 .file = attr->file,
2347 .prog_type = attr->prog_type,
2348 };
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08002349 struct bpf_program *prog, *first_prog = NULL;
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002350 enum bpf_attach_type expected_attach_type;
2351 enum bpf_prog_type prog_type;
John Fastabend6f6d33f2017-08-15 22:34:22 -07002352 struct bpf_object *obj;
David Beckettf0307a72018-05-16 14:02:49 -07002353 struct bpf_map *map;
John Fastabend6f6d33f2017-08-15 22:34:22 -07002354 int err;
2355
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002356 if (!attr)
2357 return -EINVAL;
Jakub Kicinski17387dd2018-05-10 10:24:42 -07002358 if (!attr->file)
2359 return -EINVAL;
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002360
Jakub Kicinski07f2d4e2018-07-10 14:43:02 -07002361 obj = bpf_object__open_xattr(&open_attr);
Jakub Kicinski35976832018-05-10 10:09:34 -07002362 if (IS_ERR_OR_NULL(obj))
John Fastabend6f6d33f2017-08-15 22:34:22 -07002363 return -ENOENT;
2364
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08002365 bpf_object__for_each_program(prog, obj) {
2366 /*
2367 * If type is not specified, try to guess it based on
2368 * section name.
2369 */
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002370 prog_type = attr->prog_type;
David Beckettf0307a72018-05-16 14:02:49 -07002371 prog->prog_ifindex = attr->ifindex;
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002372 expected_attach_type = attr->expected_attach_type;
2373 if (prog_type == BPF_PROG_TYPE_UNSPEC) {
Jakub Kicinskib60df2a2018-07-10 14:42:59 -07002374 err = bpf_program__identify_section(prog, &prog_type,
2375 &expected_attach_type);
2376 if (err < 0) {
2377 pr_warning("failed to guess program type based on section name %s\n",
2378 prog->section_name);
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08002379 bpf_object__close(obj);
2380 return -EINVAL;
2381 }
2382 }
2383
Andrey Ignatovd7be1432018-03-30 15:08:01 -07002384 bpf_program__set_type(prog, prog_type);
2385 bpf_program__set_expected_attach_type(prog,
2386 expected_attach_type);
2387
Taeung Song69495d22018-09-03 08:30:07 +09002388 if (!first_prog)
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08002389 first_prog = prog;
2390 }
2391
David Beckettf0307a72018-05-16 14:02:49 -07002392 bpf_map__for_each(map, obj) {
Jakub Kicinskif83fb222018-07-10 14:43:01 -07002393 if (!bpf_map__is_offload_neutral(map))
2394 map->map_ifindex = attr->ifindex;
David Beckettf0307a72018-05-16 14:02:49 -07002395 }
2396
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08002397 if (!first_prog) {
2398 pr_warning("object file doesn't contain bpf program\n");
John Fastabend6f6d33f2017-08-15 22:34:22 -07002399 bpf_object__close(obj);
2400 return -ENOENT;
2401 }
2402
John Fastabend6f6d33f2017-08-15 22:34:22 -07002403 err = bpf_object__load(obj);
2404 if (err) {
2405 bpf_object__close(obj);
2406 return -EINVAL;
2407 }
2408
2409 *pobj = obj;
Alexei Starovoitov48cca7e2017-12-14 17:55:10 -08002410 *prog_fd = bpf_program__fd(first_prog);
John Fastabend6f6d33f2017-08-15 22:34:22 -07002411 return 0;
2412}
Jakub Kicinskid0cabbb2018-05-10 10:24:40 -07002413
2414enum bpf_perf_event_ret
2415bpf_perf_event_read_simple(void *mem, unsigned long size,
2416 unsigned long page_size, void **buf, size_t *buf_len,
2417 bpf_perf_event_print_t fn, void *priv)
2418{
2419 volatile struct perf_event_mmap_page *header = mem;
2420 __u64 data_tail = header->data_tail;
2421 __u64 data_head = header->data_head;
Thomas Richterb611da42018-07-27 10:21:26 +02002422 int ret = LIBBPF_PERF_EVENT_ERROR;
Jakub Kicinskid0cabbb2018-05-10 10:24:40 -07002423 void *base, *begin, *end;
Jakub Kicinskid0cabbb2018-05-10 10:24:40 -07002424
2425 asm volatile("" ::: "memory"); /* in real code it should be smp_rmb() */
2426 if (data_head == data_tail)
2427 return LIBBPF_PERF_EVENT_CONT;
2428
2429 base = ((char *)header) + page_size;
2430
2431 begin = base + data_tail % size;
2432 end = base + data_head % size;
2433
2434 while (begin != end) {
2435 struct perf_event_header *ehdr;
2436
2437 ehdr = begin;
2438 if (begin + ehdr->size > base + size) {
2439 long len = base + size - begin;
2440
2441 if (*buf_len < ehdr->size) {
2442 free(*buf);
2443 *buf = malloc(ehdr->size);
2444 if (!*buf) {
2445 ret = LIBBPF_PERF_EVENT_ERROR;
2446 break;
2447 }
2448 *buf_len = ehdr->size;
2449 }
2450
2451 memcpy(*buf, begin, len);
2452 memcpy(*buf + len, base, ehdr->size - len);
2453 ehdr = (void *)*buf;
2454 begin = base + ehdr->size - len;
2455 } else if (begin + ehdr->size == base + size) {
2456 begin = base;
2457 } else {
2458 begin += ehdr->size;
2459 }
2460
2461 ret = fn(ehdr, priv);
2462 if (ret != LIBBPF_PERF_EVENT_CONT)
2463 break;
2464
2465 data_tail += ehdr->size;
2466 }
2467
2468 __sync_synchronize(); /* smp_mb() */
2469 header->data_tail = data_tail;
2470
2471 return ret;
2472}