blob: a58740b0f31e05651291fef0588c0325ee904977 [file] [log] [blame]
Wang Nan69d262a2015-10-14 12:41:13 +00001/*
2 * Copyright (C) 2015, Wang Nan <wangnan0@huawei.com>
3 * Copyright (C) 2015, Huawei Inc.
4 */
5#ifndef __BPF_LOADER_H
6#define __BPF_LOADER_H
7
8#include <linux/compiler.h>
9#include <linux/err.h>
10#include <string.h>
Wang Nand3e0ce32015-11-06 13:58:09 +000011#include <bpf/libbpf.h>
Wang Nan4edf30e2015-10-14 12:41:17 +000012#include "probe-event.h"
Wang Nan69d262a2015-10-14 12:41:13 +000013#include "debug.h"
14
Wang Nand3e0ce32015-11-06 13:58:09 +000015enum bpf_loader_errno {
16 __BPF_LOADER_ERRNO__START = __LIBBPF_ERRNO__START - 100,
17 /* Invalid config string */
18 BPF_LOADER_ERRNO__CONFIG = __BPF_LOADER_ERRNO__START,
19 BPF_LOADER_ERRNO__GROUP, /* Invalid group name */
20 BPF_LOADER_ERRNO__EVENTNAME, /* Event name is missing */
21 BPF_LOADER_ERRNO__INTERNAL, /* BPF loader internal error */
22 BPF_LOADER_ERRNO__COMPILE, /* Error when compiling BPF scriptlet */
Wang Nan361f2b12015-11-16 12:10:05 +000023 BPF_LOADER_ERRNO__CONFIG_TERM, /* Invalid config term in config term */
He Kuangbfc077b2015-11-16 12:10:12 +000024 BPF_LOADER_ERRNO__PROLOGUE, /* Failed to generate prologue */
25 BPF_LOADER_ERRNO__PROLOGUE2BIG, /* Prologue too big for program */
26 BPF_LOADER_ERRNO__PROLOGUEOOB, /* Offset out of bound for prologue */
Wang Nand3e0ce32015-11-06 13:58:09 +000027 __BPF_LOADER_ERRNO__END,
28};
29
Wang Nan69d262a2015-10-14 12:41:13 +000030struct bpf_object;
Wang Nanaa3abf32015-10-14 12:41:15 +000031#define PERF_BPF_PROBE_GROUP "perf_bpf_probe"
Wang Nan69d262a2015-10-14 12:41:13 +000032
Wang Nan4edf30e2015-10-14 12:41:17 +000033typedef int (*bpf_prog_iter_callback_t)(struct probe_trace_event *tev,
34 int fd, void *arg);
35
Wang Nan69d262a2015-10-14 12:41:13 +000036#ifdef HAVE_LIBBPF_SUPPORT
Wang Nand509db02015-10-14 12:41:20 +000037struct bpf_object *bpf__prepare_load(const char *filename, bool source);
Wang Nand3e0ce32015-11-06 13:58:09 +000038int bpf__strerror_prepare_load(const char *filename, bool source,
39 int err, char *buf, size_t size);
Wang Nan69d262a2015-10-14 12:41:13 +000040
Wang Nanba1fae42015-11-06 13:49:43 +000041struct bpf_object *bpf__prepare_load_buffer(void *obj_buf, size_t obj_buf_sz,
42 const char *name);
43
Wang Nan69d262a2015-10-14 12:41:13 +000044void bpf__clear(void);
Wang Nanaa3abf32015-10-14 12:41:15 +000045
46int bpf__probe(struct bpf_object *obj);
47int bpf__unprobe(struct bpf_object *obj);
48int bpf__strerror_probe(struct bpf_object *obj, int err,
49 char *buf, size_t size);
50
Wang Nan1e5e3ee2015-10-14 12:41:16 +000051int bpf__load(struct bpf_object *obj);
52int bpf__strerror_load(struct bpf_object *obj, int err,
53 char *buf, size_t size);
Wang Nan4edf30e2015-10-14 12:41:17 +000054int bpf__foreach_tev(struct bpf_object *obj,
55 bpf_prog_iter_callback_t func, void *arg);
Wang Nan69d262a2015-10-14 12:41:13 +000056#else
57static inline struct bpf_object *
Wang Nand509db02015-10-14 12:41:20 +000058bpf__prepare_load(const char *filename __maybe_unused,
59 bool source __maybe_unused)
Wang Nan69d262a2015-10-14 12:41:13 +000060{
61 pr_debug("ERROR: eBPF object loading is disabled during compiling.\n");
62 return ERR_PTR(-ENOTSUP);
63}
64
Wang Nanba1fae42015-11-06 13:49:43 +000065static inline struct bpf_object *
66bpf__prepare_load_buffer(void *obj_buf __maybe_unused,
67 size_t obj_buf_sz __maybe_unused)
68{
69 return ERR_PTR(-ENOTSUP);
70}
71
Wang Nan69d262a2015-10-14 12:41:13 +000072static inline void bpf__clear(void) { }
Wang Nanaa3abf32015-10-14 12:41:15 +000073
74static inline int bpf__probe(struct bpf_object *obj __maybe_unused) { return 0;}
75static inline int bpf__unprobe(struct bpf_object *obj __maybe_unused) { return 0;}
Wang Nan1e5e3ee2015-10-14 12:41:16 +000076static inline int bpf__load(struct bpf_object *obj __maybe_unused) { return 0; }
Wang Nanaa3abf32015-10-14 12:41:15 +000077
78static inline int
Wang Nan4edf30e2015-10-14 12:41:17 +000079bpf__foreach_tev(struct bpf_object *obj __maybe_unused,
80 bpf_prog_iter_callback_t func __maybe_unused,
81 void *arg __maybe_unused)
82{
83 return 0;
84}
85
86static inline int
Wang Nanaa3abf32015-10-14 12:41:15 +000087__bpf_strerror(char *buf, size_t size)
88{
89 if (!size)
90 return 0;
91 strncpy(buf,
92 "ERROR: eBPF object loading is disabled during compiling.\n",
93 size);
94 buf[size - 1] = '\0';
95 return 0;
96}
97
Wang Nand3e0ce32015-11-06 13:58:09 +000098static inline
99int bpf__strerror_prepare_load(const char *filename __maybe_unused,
100 bool source __maybe_unused,
101 int err __maybe_unused,
102 char *buf, size_t size)
103{
104 return __bpf_strerror(buf, size);
105}
106
Wang Nanaa3abf32015-10-14 12:41:15 +0000107static inline int
108bpf__strerror_probe(struct bpf_object *obj __maybe_unused,
109 int err __maybe_unused,
110 char *buf, size_t size)
111{
112 return __bpf_strerror(buf, size);
113}
Wang Nan1e5e3ee2015-10-14 12:41:16 +0000114
115static inline int bpf__strerror_load(struct bpf_object *obj __maybe_unused,
116 int err __maybe_unused,
117 char *buf, size_t size)
118{
119 return __bpf_strerror(buf, size);
120}
Wang Nan69d262a2015-10-14 12:41:13 +0000121#endif
122#endif