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 | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 13 | #include "debug.h" |
| 14 | |
Wang Nan | d3e0ce3 | 2015-11-06 13:58:09 +0000 | [diff] [blame] | 15 | enum 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 Nan | 361f2b1 | 2015-11-16 12:10:05 +0000 | [diff] [blame] | 23 | BPF_LOADER_ERRNO__CONFIG_TERM, /* Invalid config term in config term */ |
Wang Nan | d3e0ce3 | 2015-11-06 13:58:09 +0000 | [diff] [blame] | 24 | __BPF_LOADER_ERRNO__END, |
| 25 | }; |
| 26 | |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 27 | struct bpf_object; |
Wang Nan | aa3abf3 | 2015-10-14 12:41:15 +0000 | [diff] [blame] | 28 | #define PERF_BPF_PROBE_GROUP "perf_bpf_probe" |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 29 | |
Wang Nan | 4edf30e | 2015-10-14 12:41:17 +0000 | [diff] [blame] | 30 | typedef int (*bpf_prog_iter_callback_t)(struct probe_trace_event *tev, |
| 31 | int fd, void *arg); |
| 32 | |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 33 | #ifdef HAVE_LIBBPF_SUPPORT |
Wang Nan | d509db0 | 2015-10-14 12:41:20 +0000 | [diff] [blame] | 34 | struct bpf_object *bpf__prepare_load(const char *filename, bool source); |
Wang Nan | d3e0ce3 | 2015-11-06 13:58:09 +0000 | [diff] [blame] | 35 | int bpf__strerror_prepare_load(const char *filename, bool source, |
| 36 | int err, char *buf, size_t size); |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 37 | |
Wang Nan | ba1fae4 | 2015-11-06 13:49:43 +0000 | [diff] [blame] | 38 | struct bpf_object *bpf__prepare_load_buffer(void *obj_buf, size_t obj_buf_sz, |
| 39 | const char *name); |
| 40 | |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 41 | void bpf__clear(void); |
Wang Nan | aa3abf3 | 2015-10-14 12:41:15 +0000 | [diff] [blame] | 42 | |
| 43 | int bpf__probe(struct bpf_object *obj); |
| 44 | int bpf__unprobe(struct bpf_object *obj); |
| 45 | int bpf__strerror_probe(struct bpf_object *obj, int err, |
| 46 | char *buf, size_t size); |
| 47 | |
Wang Nan | 1e5e3ee | 2015-10-14 12:41:16 +0000 | [diff] [blame] | 48 | int bpf__load(struct bpf_object *obj); |
| 49 | int bpf__strerror_load(struct bpf_object *obj, int err, |
| 50 | char *buf, size_t size); |
Wang Nan | 4edf30e | 2015-10-14 12:41:17 +0000 | [diff] [blame] | 51 | int bpf__foreach_tev(struct bpf_object *obj, |
| 52 | bpf_prog_iter_callback_t func, void *arg); |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 53 | #else |
| 54 | static inline struct bpf_object * |
Wang Nan | d509db0 | 2015-10-14 12:41:20 +0000 | [diff] [blame] | 55 | bpf__prepare_load(const char *filename __maybe_unused, |
| 56 | bool source __maybe_unused) |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 57 | { |
| 58 | pr_debug("ERROR: eBPF object loading is disabled during compiling.\n"); |
| 59 | return ERR_PTR(-ENOTSUP); |
| 60 | } |
| 61 | |
Wang Nan | ba1fae4 | 2015-11-06 13:49:43 +0000 | [diff] [blame] | 62 | static inline struct bpf_object * |
| 63 | bpf__prepare_load_buffer(void *obj_buf __maybe_unused, |
| 64 | size_t obj_buf_sz __maybe_unused) |
| 65 | { |
| 66 | return ERR_PTR(-ENOTSUP); |
| 67 | } |
| 68 | |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 69 | static inline void bpf__clear(void) { } |
Wang Nan | aa3abf3 | 2015-10-14 12:41:15 +0000 | [diff] [blame] | 70 | |
| 71 | static inline int bpf__probe(struct bpf_object *obj __maybe_unused) { return 0;} |
| 72 | 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] | 73 | 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] | 74 | |
| 75 | static inline int |
Wang Nan | 4edf30e | 2015-10-14 12:41:17 +0000 | [diff] [blame] | 76 | bpf__foreach_tev(struct bpf_object *obj __maybe_unused, |
| 77 | bpf_prog_iter_callback_t func __maybe_unused, |
| 78 | void *arg __maybe_unused) |
| 79 | { |
| 80 | return 0; |
| 81 | } |
| 82 | |
| 83 | static inline int |
Wang Nan | aa3abf3 | 2015-10-14 12:41:15 +0000 | [diff] [blame] | 84 | __bpf_strerror(char *buf, size_t size) |
| 85 | { |
| 86 | if (!size) |
| 87 | return 0; |
| 88 | strncpy(buf, |
| 89 | "ERROR: eBPF object loading is disabled during compiling.\n", |
| 90 | size); |
| 91 | buf[size - 1] = '\0'; |
| 92 | return 0; |
| 93 | } |
| 94 | |
Wang Nan | d3e0ce3 | 2015-11-06 13:58:09 +0000 | [diff] [blame] | 95 | static inline |
| 96 | int bpf__strerror_prepare_load(const char *filename __maybe_unused, |
| 97 | bool source __maybe_unused, |
| 98 | int err __maybe_unused, |
| 99 | char *buf, size_t size) |
| 100 | { |
| 101 | return __bpf_strerror(buf, size); |
| 102 | } |
| 103 | |
Wang Nan | aa3abf3 | 2015-10-14 12:41:15 +0000 | [diff] [blame] | 104 | static inline int |
| 105 | bpf__strerror_probe(struct bpf_object *obj __maybe_unused, |
| 106 | int err __maybe_unused, |
| 107 | char *buf, size_t size) |
| 108 | { |
| 109 | return __bpf_strerror(buf, size); |
| 110 | } |
Wang Nan | 1e5e3ee | 2015-10-14 12:41:16 +0000 | [diff] [blame] | 111 | |
| 112 | static inline int bpf__strerror_load(struct bpf_object *obj __maybe_unused, |
| 113 | int err __maybe_unused, |
| 114 | char *buf, size_t size) |
| 115 | { |
| 116 | return __bpf_strerror(buf, size); |
| 117 | } |
Wang Nan | 69d262a | 2015-10-14 12:41:13 +0000 | [diff] [blame] | 118 | #endif |
| 119 | #endif |