1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (C) 2015, Wang Nan <wangnan0@huawei.com>
4 * Copyright (C) 2015, Huawei Inc.
9 #include <linux/compiler.h>
10 #include <linux/err.h>
12 #include <bpf/libbpf.h>
13 #include "probe-event.h"
17 enum bpf_loader_errno
{
18 __BPF_LOADER_ERRNO__START
= __LIBBPF_ERRNO__START
- 100,
19 /* Invalid config string */
20 BPF_LOADER_ERRNO__CONFIG
= __BPF_LOADER_ERRNO__START
,
21 BPF_LOADER_ERRNO__GROUP
, /* Invalid group name */
22 BPF_LOADER_ERRNO__EVENTNAME
, /* Event name is missing */
23 BPF_LOADER_ERRNO__INTERNAL
, /* BPF loader internal error */
24 BPF_LOADER_ERRNO__COMPILE
, /* Error when compiling BPF scriptlet */
25 BPF_LOADER_ERRNO__PROGCONF_TERM
,/* Invalid program config term in config string */
26 BPF_LOADER_ERRNO__PROLOGUE
, /* Failed to generate prologue */
27 BPF_LOADER_ERRNO__PROLOGUE2BIG
, /* Prologue too big for program */
28 BPF_LOADER_ERRNO__PROLOGUEOOB
, /* Offset out of bound for prologue */
29 BPF_LOADER_ERRNO__OBJCONF_OPT
, /* Invalid object config option */
30 BPF_LOADER_ERRNO__OBJCONF_CONF
, /* Config value not set (lost '=')) */
31 BPF_LOADER_ERRNO__OBJCONF_MAP_OPT
, /* Invalid object map config option */
32 BPF_LOADER_ERRNO__OBJCONF_MAP_NOTEXIST
, /* Target map not exist */
33 BPF_LOADER_ERRNO__OBJCONF_MAP_VALUE
, /* Incorrect value type for map */
34 BPF_LOADER_ERRNO__OBJCONF_MAP_TYPE
, /* Incorrect map type */
35 BPF_LOADER_ERRNO__OBJCONF_MAP_KEYSIZE
, /* Incorrect map key size */
36 BPF_LOADER_ERRNO__OBJCONF_MAP_VALUESIZE
,/* Incorrect map value size */
37 BPF_LOADER_ERRNO__OBJCONF_MAP_NOEVT
, /* Event not found for map setting */
38 BPF_LOADER_ERRNO__OBJCONF_MAP_MAPSIZE
, /* Invalid map size for event setting */
39 BPF_LOADER_ERRNO__OBJCONF_MAP_EVTDIM
, /* Event dimension too large */
40 BPF_LOADER_ERRNO__OBJCONF_MAP_EVTINH
, /* Doesn't support inherit event */
41 BPF_LOADER_ERRNO__OBJCONF_MAP_EVTTYPE
, /* Wrong event type for map */
42 BPF_LOADER_ERRNO__OBJCONF_MAP_IDX2BIG
, /* Index too large */
43 __BPF_LOADER_ERRNO__END
,
47 struct parse_events_term
;
48 #define PERF_BPF_PROBE_GROUP "perf_bpf_probe"
50 typedef int (*bpf_prog_iter_callback_t
)(const char *group
, const char *event
,
53 #ifdef HAVE_LIBBPF_SUPPORT
54 struct bpf_object
*bpf__prepare_load(const char *filename
, bool source
);
55 int bpf__strerror_prepare_load(const char *filename
, bool source
,
56 int err
, char *buf
, size_t size
);
58 struct bpf_object
*bpf__prepare_load_buffer(void *obj_buf
, size_t obj_buf_sz
,
61 void bpf__clear(void);
63 int bpf__probe(struct bpf_object
*obj
);
64 int bpf__unprobe(struct bpf_object
*obj
);
65 int bpf__strerror_probe(struct bpf_object
*obj
, int err
,
66 char *buf
, size_t size
);
68 int bpf__load(struct bpf_object
*obj
);
69 int bpf__strerror_load(struct bpf_object
*obj
, int err
,
70 char *buf
, size_t size
);
71 int bpf__foreach_event(struct bpf_object
*obj
,
72 bpf_prog_iter_callback_t func
, void *arg
);
74 int bpf__config_obj(struct bpf_object
*obj
, struct parse_events_term
*term
,
75 struct perf_evlist
*evlist
, int *error_pos
);
76 int bpf__strerror_config_obj(struct bpf_object
*obj
,
77 struct parse_events_term
*term
,
78 struct perf_evlist
*evlist
,
79 int *error_pos
, int err
, char *buf
,
81 int bpf__apply_obj_config(void);
82 int bpf__strerror_apply_obj_config(int err
, char *buf
, size_t size
);
84 int bpf__setup_stdout(struct perf_evlist
*evlist
);
85 int bpf__strerror_setup_stdout(struct perf_evlist
*evlist
, int err
,
86 char *buf
, size_t size
);
91 static inline struct bpf_object
*
92 bpf__prepare_load(const char *filename __maybe_unused
,
93 bool source __maybe_unused
)
95 pr_debug("ERROR: eBPF object loading is disabled during compiling.\n");
96 return ERR_PTR(-ENOTSUP
);
99 static inline struct bpf_object
*
100 bpf__prepare_load_buffer(void *obj_buf __maybe_unused
,
101 size_t obj_buf_sz __maybe_unused
)
103 return ERR_PTR(-ENOTSUP
);
106 static inline void bpf__clear(void) { }
108 static inline int bpf__probe(struct bpf_object
*obj __maybe_unused
) { return 0;}
109 static inline int bpf__unprobe(struct bpf_object
*obj __maybe_unused
) { return 0;}
110 static inline int bpf__load(struct bpf_object
*obj __maybe_unused
) { return 0; }
113 bpf__foreach_event(struct bpf_object
*obj __maybe_unused
,
114 bpf_prog_iter_callback_t func __maybe_unused
,
115 void *arg __maybe_unused
)
121 bpf__config_obj(struct bpf_object
*obj __maybe_unused
,
122 struct parse_events_term
*term __maybe_unused
,
123 struct perf_evlist
*evlist __maybe_unused
,
124 int *error_pos __maybe_unused
)
130 bpf__apply_obj_config(void)
136 bpf__setup_stdout(struct perf_evlist
*evlist __maybe_unused
)
142 __bpf_strerror(char *buf
, size_t size
)
147 "ERROR: eBPF object loading is disabled during compiling.\n",
149 buf
[size
- 1] = '\0';
154 int bpf__strerror_prepare_load(const char *filename __maybe_unused
,
155 bool source __maybe_unused
,
156 int err __maybe_unused
,
157 char *buf
, size_t size
)
159 return __bpf_strerror(buf
, size
);
163 bpf__strerror_probe(struct bpf_object
*obj __maybe_unused
,
164 int err __maybe_unused
,
165 char *buf
, size_t size
)
167 return __bpf_strerror(buf
, size
);
170 static inline int bpf__strerror_load(struct bpf_object
*obj __maybe_unused
,
171 int err __maybe_unused
,
172 char *buf
, size_t size
)
174 return __bpf_strerror(buf
, size
);
178 bpf__strerror_config_obj(struct bpf_object
*obj __maybe_unused
,
179 struct parse_events_term
*term __maybe_unused
,
180 struct perf_evlist
*evlist __maybe_unused
,
181 int *error_pos __maybe_unused
,
182 int err __maybe_unused
,
183 char *buf
, size_t size
)
185 return __bpf_strerror(buf
, size
);
189 bpf__strerror_apply_obj_config(int err __maybe_unused
,
190 char *buf
, size_t size
)
192 return __bpf_strerror(buf
, size
);
196 bpf__strerror_setup_stdout(struct perf_evlist
*evlist __maybe_unused
,
197 int err __maybe_unused
, char *buf
,
200 return __bpf_strerror(buf
, size
);