blob: 7c7689f800cfaa37fb976ecc13311c9a206bef7c [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 Nan066dacb2016-02-22 09:10:30 +000013#include "evlist.h"
Wang Nan69d262a2015-10-14 12:41:13 +000014#include "debug.h"
15
Wang Nand3e0ce32015-11-06 13:58:09 +000016enum bpf_loader_errno {
17 __BPF_LOADER_ERRNO__START = __LIBBPF_ERRNO__START - 100,
18 /* Invalid config string */
19 BPF_LOADER_ERRNO__CONFIG = __BPF_LOADER_ERRNO__START,
20 BPF_LOADER_ERRNO__GROUP, /* Invalid group name */
21 BPF_LOADER_ERRNO__EVENTNAME, /* Event name is missing */
22 BPF_LOADER_ERRNO__INTERNAL, /* BPF loader internal error */
23 BPF_LOADER_ERRNO__COMPILE, /* Error when compiling BPF scriptlet */
Wang Nan0bb93492015-11-27 08:47:37 +000024 BPF_LOADER_ERRNO__PROGCONF_TERM,/* Invalid program config term in config string */
He Kuangbfc077b2015-11-16 12:10:12 +000025 BPF_LOADER_ERRNO__PROLOGUE, /* Failed to generate prologue */
26 BPF_LOADER_ERRNO__PROLOGUE2BIG, /* Prologue too big for program */
27 BPF_LOADER_ERRNO__PROLOGUEOOB, /* Offset out of bound for prologue */
Wang Nan066dacb2016-02-22 09:10:30 +000028 BPF_LOADER_ERRNO__OBJCONF_OPT, /* Invalid object config option */
29 BPF_LOADER_ERRNO__OBJCONF_CONF, /* Config value not set (lost '=')) */
30 BPF_LOADER_ERRNO__OBJCONF_MAP_OPT, /* Invalid object map config option */
31 BPF_LOADER_ERRNO__OBJCONF_MAP_NOTEXIST, /* Target map not exist */
32 BPF_LOADER_ERRNO__OBJCONF_MAP_VALUE, /* Incorrect value type for map */
33 BPF_LOADER_ERRNO__OBJCONF_MAP_TYPE, /* Incorrect map type */
34 BPF_LOADER_ERRNO__OBJCONF_MAP_KEYSIZE, /* Incorrect map key size */
35 BPF_LOADER_ERRNO__OBJCONF_MAP_VALUESIZE,/* Incorrect map value size */
Wang Nan7630b3e2016-02-22 09:10:33 +000036 BPF_LOADER_ERRNO__OBJCONF_MAP_NOEVT, /* Event not found for map setting */
37 BPF_LOADER_ERRNO__OBJCONF_MAP_MAPSIZE, /* Invalid map size for event setting */
38 BPF_LOADER_ERRNO__OBJCONF_MAP_EVTDIM, /* Event dimension too large */
39 BPF_LOADER_ERRNO__OBJCONF_MAP_EVTINH, /* Doesn't support inherit event */
40 BPF_LOADER_ERRNO__OBJCONF_MAP_EVTTYPE, /* Wrong event type for map */
Wang Nand3e0ce32015-11-06 13:58:09 +000041 __BPF_LOADER_ERRNO__END,
42};
43
Wang Nan69d262a2015-10-14 12:41:13 +000044struct bpf_object;
Wang Nan066dacb2016-02-22 09:10:30 +000045struct parse_events_term;
Wang Nanaa3abf32015-10-14 12:41:15 +000046#define PERF_BPF_PROBE_GROUP "perf_bpf_probe"
Wang Nan69d262a2015-10-14 12:41:13 +000047
Wang Nan4edf30e2015-10-14 12:41:17 +000048typedef int (*bpf_prog_iter_callback_t)(struct probe_trace_event *tev,
49 int fd, void *arg);
50
Wang Nan69d262a2015-10-14 12:41:13 +000051#ifdef HAVE_LIBBPF_SUPPORT
Wang Nand509db02015-10-14 12:41:20 +000052struct bpf_object *bpf__prepare_load(const char *filename, bool source);
Wang Nand3e0ce32015-11-06 13:58:09 +000053int bpf__strerror_prepare_load(const char *filename, bool source,
54 int err, char *buf, size_t size);
Wang Nan69d262a2015-10-14 12:41:13 +000055
Wang Nanba1fae42015-11-06 13:49:43 +000056struct bpf_object *bpf__prepare_load_buffer(void *obj_buf, size_t obj_buf_sz,
57 const char *name);
58
Wang Nan69d262a2015-10-14 12:41:13 +000059void bpf__clear(void);
Wang Nanaa3abf32015-10-14 12:41:15 +000060
61int bpf__probe(struct bpf_object *obj);
62int bpf__unprobe(struct bpf_object *obj);
63int bpf__strerror_probe(struct bpf_object *obj, int err,
64 char *buf, size_t size);
65
Wang Nan1e5e3ee2015-10-14 12:41:16 +000066int bpf__load(struct bpf_object *obj);
67int bpf__strerror_load(struct bpf_object *obj, int err,
68 char *buf, size_t size);
Wang Nan4edf30e2015-10-14 12:41:17 +000069int bpf__foreach_tev(struct bpf_object *obj,
70 bpf_prog_iter_callback_t func, void *arg);
Wang Nan066dacb2016-02-22 09:10:30 +000071
72int bpf__config_obj(struct bpf_object *obj, struct parse_events_term *term,
73 struct perf_evlist *evlist, int *error_pos);
74int bpf__strerror_config_obj(struct bpf_object *obj,
75 struct parse_events_term *term,
76 struct perf_evlist *evlist,
77 int *error_pos, int err, char *buf,
78 size_t size);
Wang Nan8690a2a2016-02-22 09:10:32 +000079int bpf__apply_obj_config(void);
80int bpf__strerror_apply_obj_config(int err, char *buf, size_t size);
Wang Nan69d262a2015-10-14 12:41:13 +000081#else
82static inline struct bpf_object *
Wang Nand509db02015-10-14 12:41:20 +000083bpf__prepare_load(const char *filename __maybe_unused,
84 bool source __maybe_unused)
Wang Nan69d262a2015-10-14 12:41:13 +000085{
86 pr_debug("ERROR: eBPF object loading is disabled during compiling.\n");
87 return ERR_PTR(-ENOTSUP);
88}
89
Wang Nanba1fae42015-11-06 13:49:43 +000090static inline struct bpf_object *
91bpf__prepare_load_buffer(void *obj_buf __maybe_unused,
92 size_t obj_buf_sz __maybe_unused)
93{
94 return ERR_PTR(-ENOTSUP);
95}
96
Wang Nan69d262a2015-10-14 12:41:13 +000097static inline void bpf__clear(void) { }
Wang Nanaa3abf32015-10-14 12:41:15 +000098
99static inline int bpf__probe(struct bpf_object *obj __maybe_unused) { return 0;}
100static inline int bpf__unprobe(struct bpf_object *obj __maybe_unused) { return 0;}
Wang Nan1e5e3ee2015-10-14 12:41:16 +0000101static inline int bpf__load(struct bpf_object *obj __maybe_unused) { return 0; }
Wang Nanaa3abf32015-10-14 12:41:15 +0000102
103static inline int
Wang Nan4edf30e2015-10-14 12:41:17 +0000104bpf__foreach_tev(struct bpf_object *obj __maybe_unused,
105 bpf_prog_iter_callback_t func __maybe_unused,
106 void *arg __maybe_unused)
107{
108 return 0;
109}
110
111static inline int
Wang Nan066dacb2016-02-22 09:10:30 +0000112bpf__config_obj(struct bpf_object *obj __maybe_unused,
113 struct parse_events_term *term __maybe_unused,
114 struct perf_evlist *evlist __maybe_unused,
115 int *error_pos __maybe_unused)
116{
117 return 0;
118}
119
120static inline int
Wang Nan8690a2a2016-02-22 09:10:32 +0000121bpf__apply_obj_config(void)
122{
123 return 0;
124}
125
126static inline int
Wang Nanaa3abf32015-10-14 12:41:15 +0000127__bpf_strerror(char *buf, size_t size)
128{
129 if (!size)
130 return 0;
131 strncpy(buf,
132 "ERROR: eBPF object loading is disabled during compiling.\n",
133 size);
134 buf[size - 1] = '\0';
135 return 0;
136}
137
Wang Nand3e0ce32015-11-06 13:58:09 +0000138static inline
139int bpf__strerror_prepare_load(const char *filename __maybe_unused,
140 bool source __maybe_unused,
141 int err __maybe_unused,
142 char *buf, size_t size)
143{
144 return __bpf_strerror(buf, size);
145}
146
Wang Nanaa3abf32015-10-14 12:41:15 +0000147static inline int
148bpf__strerror_probe(struct bpf_object *obj __maybe_unused,
149 int err __maybe_unused,
150 char *buf, size_t size)
151{
152 return __bpf_strerror(buf, size);
153}
Wang Nan1e5e3ee2015-10-14 12:41:16 +0000154
155static inline int bpf__strerror_load(struct bpf_object *obj __maybe_unused,
156 int err __maybe_unused,
157 char *buf, size_t size)
158{
159 return __bpf_strerror(buf, size);
160}
Wang Nan066dacb2016-02-22 09:10:30 +0000161
162static inline int
163bpf__strerror_config_obj(struct bpf_object *obj __maybe_unused,
164 struct parse_events_term *term __maybe_unused,
165 struct perf_evlist *evlist __maybe_unused,
166 int *error_pos __maybe_unused,
167 int err __maybe_unused,
168 char *buf, size_t size)
169{
170 return __bpf_strerror(buf, size);
171}
Wang Nan8690a2a2016-02-22 09:10:32 +0000172
173static inline int
174bpf__strerror_apply_obj_config(int err __maybe_unused,
175 char *buf, size_t size)
176{
177 return __bpf_strerror(buf, size);
178}
Wang Nan69d262a2015-10-14 12:41:13 +0000179#endif
180#endif