Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 1 | /* |
| 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 Nan | d3e0ce3 | 2015-11-06 13:58:09 +0000 | [diff] [blame] | 11 | #include <bpf/libbpf.h> |
Wang Nan | 4edf30e | 2015-10-14 12:41:17 +0000 | [diff] [blame] | 12 | #include "probe-event.h" |
Wang Nan | 066dacb | 2016-02-22 09:10:30 +0000 | [diff] [blame] | 13 | #include "evlist.h" |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 14 | #include "debug.h" |
| 15 | |
Wang Nan | d3e0ce3 | 2015-11-06 13:58:09 +0000 | [diff] [blame] | 16 | enum 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 Nan | 0bb9349 | 2015-11-27 08:47:37 +0000 | [diff] [blame] | 24 | BPF_LOADER_ERRNO__PROGCONF_TERM,/* Invalid program config term in config string */ |
He Kuang | bfc077b | 2015-11-16 12:10:12 +0000 | [diff] [blame] | 25 | 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 Nan | 066dacb | 2016-02-22 09:10:30 +0000 | [diff] [blame] | 28 | 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 Nan | 7630b3e | 2016-02-22 09:10:33 +0000 | [diff] [blame] | 36 | 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 Nan | 2d055bf | 2016-02-22 09:10:34 +0000 | [diff] [blame] | 41 | BPF_LOADER_ERRNO__OBJCONF_MAP_IDX2BIG, /* Index too large */ |
Wang Nan | d3e0ce3 | 2015-11-06 13:58:09 +0000 | [diff] [blame] | 42 | __BPF_LOADER_ERRNO__END, |
| 43 | }; |
| 44 | |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 45 | struct bpf_object; |
Wang Nan | 066dacb | 2016-02-22 09:10:30 +0000 | [diff] [blame] | 46 | struct parse_events_term; |
Wang Nan | aa3abf3 | 2015-10-14 12:41:15 +0000 | [diff] [blame] | 47 | #define PERF_BPF_PROBE_GROUP "perf_bpf_probe" |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 48 | |
Wang Nan | 4edf30e | 2015-10-14 12:41:17 +0000 | [diff] [blame] | 49 | typedef int (*bpf_prog_iter_callback_t)(struct probe_trace_event *tev, |
| 50 | int fd, void *arg); |
| 51 | |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 52 | #ifdef HAVE_LIBBPF_SUPPORT |
Wang Nan | d509db0 | 2015-10-14 12:41:20 +0000 | [diff] [blame] | 53 | struct bpf_object *bpf__prepare_load(const char *filename, bool source); |
Wang Nan | d3e0ce3 | 2015-11-06 13:58:09 +0000 | [diff] [blame] | 54 | int bpf__strerror_prepare_load(const char *filename, bool source, |
| 55 | int err, char *buf, size_t size); |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 56 | |
Wang Nan | ba1fae4 | 2015-11-06 13:49:43 +0000 | [diff] [blame] | 57 | struct bpf_object *bpf__prepare_load_buffer(void *obj_buf, size_t obj_buf_sz, |
| 58 | const char *name); |
| 59 | |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 60 | void bpf__clear(void); |
Wang Nan | aa3abf3 | 2015-10-14 12:41:15 +0000 | [diff] [blame] | 61 | |
| 62 | int bpf__probe(struct bpf_object *obj); |
| 63 | int bpf__unprobe(struct bpf_object *obj); |
| 64 | int bpf__strerror_probe(struct bpf_object *obj, int err, |
| 65 | char *buf, size_t size); |
| 66 | |
Wang Nan | 1e5e3ee | 2015-10-14 12:41:16 +0000 | [diff] [blame] | 67 | int bpf__load(struct bpf_object *obj); |
| 68 | int bpf__strerror_load(struct bpf_object *obj, int err, |
| 69 | char *buf, size_t size); |
Wang Nan | 4edf30e | 2015-10-14 12:41:17 +0000 | [diff] [blame] | 70 | int bpf__foreach_tev(struct bpf_object *obj, |
| 71 | bpf_prog_iter_callback_t func, void *arg); |
Wang Nan | 066dacb | 2016-02-22 09:10:30 +0000 | [diff] [blame] | 72 | |
| 73 | int bpf__config_obj(struct bpf_object *obj, struct parse_events_term *term, |
| 74 | struct perf_evlist *evlist, int *error_pos); |
| 75 | int bpf__strerror_config_obj(struct bpf_object *obj, |
| 76 | struct parse_events_term *term, |
| 77 | struct perf_evlist *evlist, |
| 78 | int *error_pos, int err, char *buf, |
| 79 | size_t size); |
Wang Nan | 8690a2a | 2016-02-22 09:10:32 +0000 | [diff] [blame] | 80 | int bpf__apply_obj_config(void); |
| 81 | int bpf__strerror_apply_obj_config(int err, char *buf, size_t size); |
Wang Nan | d788857 | 2016-04-08 15:07:24 +0000 | [diff] [blame] | 82 | |
| 83 | int bpf__setup_stdout(struct perf_evlist *evlist); |
| 84 | int bpf__strerror_setup_stdout(struct perf_evlist *evlist, int err, |
| 85 | char *buf, size_t size); |
| 86 | |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 87 | #else |
| 88 | static inline struct bpf_object * |
Wang Nan | d509db0 | 2015-10-14 12:41:20 +0000 | [diff] [blame] | 89 | bpf__prepare_load(const char *filename __maybe_unused, |
| 90 | bool source __maybe_unused) |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 91 | { |
| 92 | pr_debug("ERROR: eBPF object loading is disabled during compiling.\n"); |
| 93 | return ERR_PTR(-ENOTSUP); |
| 94 | } |
| 95 | |
Wang Nan | ba1fae4 | 2015-11-06 13:49:43 +0000 | [diff] [blame] | 96 | static inline struct bpf_object * |
| 97 | bpf__prepare_load_buffer(void *obj_buf __maybe_unused, |
| 98 | size_t obj_buf_sz __maybe_unused) |
| 99 | { |
| 100 | return ERR_PTR(-ENOTSUP); |
| 101 | } |
| 102 | |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 103 | static inline void bpf__clear(void) { } |
Wang Nan | aa3abf3 | 2015-10-14 12:41:15 +0000 | [diff] [blame] | 104 | |
| 105 | static inline int bpf__probe(struct bpf_object *obj __maybe_unused) { return 0;} |
| 106 | static inline int bpf__unprobe(struct bpf_object *obj __maybe_unused) { return 0;} |
Wang Nan | 1e5e3ee | 2015-10-14 12:41:16 +0000 | [diff] [blame] | 107 | static inline int bpf__load(struct bpf_object *obj __maybe_unused) { return 0; } |
Wang Nan | aa3abf3 | 2015-10-14 12:41:15 +0000 | [diff] [blame] | 108 | |
| 109 | static inline int |
Wang Nan | 4edf30e | 2015-10-14 12:41:17 +0000 | [diff] [blame] | 110 | bpf__foreach_tev(struct bpf_object *obj __maybe_unused, |
| 111 | bpf_prog_iter_callback_t func __maybe_unused, |
| 112 | void *arg __maybe_unused) |
| 113 | { |
| 114 | return 0; |
| 115 | } |
| 116 | |
| 117 | static inline int |
Wang Nan | 066dacb | 2016-02-22 09:10:30 +0000 | [diff] [blame] | 118 | bpf__config_obj(struct bpf_object *obj __maybe_unused, |
| 119 | struct parse_events_term *term __maybe_unused, |
| 120 | struct perf_evlist *evlist __maybe_unused, |
| 121 | int *error_pos __maybe_unused) |
| 122 | { |
| 123 | return 0; |
| 124 | } |
| 125 | |
| 126 | static inline int |
Wang Nan | 8690a2a | 2016-02-22 09:10:32 +0000 | [diff] [blame] | 127 | bpf__apply_obj_config(void) |
| 128 | { |
| 129 | return 0; |
| 130 | } |
| 131 | |
| 132 | static inline int |
Wang Nan | d788857 | 2016-04-08 15:07:24 +0000 | [diff] [blame] | 133 | bpf__setup_stdout(struct perf_evlist *evlist __maybe_unused) |
| 134 | { |
| 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | static inline int |
Wang Nan | aa3abf3 | 2015-10-14 12:41:15 +0000 | [diff] [blame] | 139 | __bpf_strerror(char *buf, size_t size) |
| 140 | { |
| 141 | if (!size) |
| 142 | return 0; |
| 143 | strncpy(buf, |
| 144 | "ERROR: eBPF object loading is disabled during compiling.\n", |
| 145 | size); |
| 146 | buf[size - 1] = '\0'; |
| 147 | return 0; |
| 148 | } |
| 149 | |
Wang Nan | d3e0ce3 | 2015-11-06 13:58:09 +0000 | [diff] [blame] | 150 | static inline |
| 151 | int bpf__strerror_prepare_load(const char *filename __maybe_unused, |
| 152 | bool source __maybe_unused, |
| 153 | int err __maybe_unused, |
| 154 | char *buf, size_t size) |
| 155 | { |
| 156 | return __bpf_strerror(buf, size); |
| 157 | } |
| 158 | |
Wang Nan | aa3abf3 | 2015-10-14 12:41:15 +0000 | [diff] [blame] | 159 | static inline int |
| 160 | bpf__strerror_probe(struct bpf_object *obj __maybe_unused, |
| 161 | int err __maybe_unused, |
| 162 | char *buf, size_t size) |
| 163 | { |
| 164 | return __bpf_strerror(buf, size); |
| 165 | } |
Wang Nan | 1e5e3ee | 2015-10-14 12:41:16 +0000 | [diff] [blame] | 166 | |
| 167 | static inline int bpf__strerror_load(struct bpf_object *obj __maybe_unused, |
| 168 | int err __maybe_unused, |
| 169 | char *buf, size_t size) |
| 170 | { |
| 171 | return __bpf_strerror(buf, size); |
| 172 | } |
Wang Nan | 066dacb | 2016-02-22 09:10:30 +0000 | [diff] [blame] | 173 | |
| 174 | static inline int |
| 175 | bpf__strerror_config_obj(struct bpf_object *obj __maybe_unused, |
| 176 | struct parse_events_term *term __maybe_unused, |
| 177 | struct perf_evlist *evlist __maybe_unused, |
| 178 | int *error_pos __maybe_unused, |
| 179 | int err __maybe_unused, |
| 180 | char *buf, size_t size) |
| 181 | { |
| 182 | return __bpf_strerror(buf, size); |
| 183 | } |
Wang Nan | 8690a2a | 2016-02-22 09:10:32 +0000 | [diff] [blame] | 184 | |
| 185 | static inline int |
| 186 | bpf__strerror_apply_obj_config(int err __maybe_unused, |
| 187 | char *buf, size_t size) |
| 188 | { |
| 189 | return __bpf_strerror(buf, size); |
| 190 | } |
Wang Nan | d788857 | 2016-04-08 15:07:24 +0000 | [diff] [blame] | 191 | |
| 192 | static inline int |
| 193 | bpf__strerror_setup_stdout(struct perf_evlist *evlist __maybe_unused, |
| 194 | int err __maybe_unused, char *buf, |
| 195 | size_t size) |
| 196 | { |
| 197 | return __bpf_strerror(buf, size); |
| 198 | } |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 199 | #endif |
| 200 | #endif |