bpf-loader.h 3.5 KB
Newer Older
W
Wang Nan 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * Copyright (C) 2015, Wang Nan <wangnan0@huawei.com>
 * Copyright (C) 2015, Huawei Inc.
 */
#ifndef __BPF_LOADER_H
#define __BPF_LOADER_H

#include <linux/compiler.h>
#include <linux/err.h>
#include <string.h>
11
#include <bpf/libbpf.h>
12
#include "probe-event.h"
W
Wang Nan 已提交
13 14
#include "debug.h"

15 16 17 18 19 20 21 22
enum bpf_loader_errno {
	__BPF_LOADER_ERRNO__START = __LIBBPF_ERRNO__START - 100,
	/* Invalid config string */
	BPF_LOADER_ERRNO__CONFIG = __BPF_LOADER_ERRNO__START,
	BPF_LOADER_ERRNO__GROUP,	/* Invalid group name */
	BPF_LOADER_ERRNO__EVENTNAME,	/* Event name is missing */
	BPF_LOADER_ERRNO__INTERNAL,	/* BPF loader internal error */
	BPF_LOADER_ERRNO__COMPILE,	/* Error when compiling BPF scriptlet */
23
	BPF_LOADER_ERRNO__PROGCONF_TERM,/* Invalid program config term in config string */
24 25 26
	BPF_LOADER_ERRNO__PROLOGUE,	/* Failed to generate prologue */
	BPF_LOADER_ERRNO__PROLOGUE2BIG,	/* Prologue too big for program */
	BPF_LOADER_ERRNO__PROLOGUEOOB,	/* Offset out of bound for prologue */
27 28 29
	__BPF_LOADER_ERRNO__END,
};

W
Wang Nan 已提交
30
struct bpf_object;
31
#define PERF_BPF_PROBE_GROUP "perf_bpf_probe"
W
Wang Nan 已提交
32

33 34 35
typedef int (*bpf_prog_iter_callback_t)(struct probe_trace_event *tev,
					int fd, void *arg);

W
Wang Nan 已提交
36
#ifdef HAVE_LIBBPF_SUPPORT
37
struct bpf_object *bpf__prepare_load(const char *filename, bool source);
38 39
int bpf__strerror_prepare_load(const char *filename, bool source,
			       int err, char *buf, size_t size);
W
Wang Nan 已提交
40

W
Wang Nan 已提交
41 42 43
struct bpf_object *bpf__prepare_load_buffer(void *obj_buf, size_t obj_buf_sz,
					    const char *name);

W
Wang Nan 已提交
44
void bpf__clear(void);
45 46 47 48 49 50

int bpf__probe(struct bpf_object *obj);
int bpf__unprobe(struct bpf_object *obj);
int bpf__strerror_probe(struct bpf_object *obj, int err,
			char *buf, size_t size);

51 52 53
int bpf__load(struct bpf_object *obj);
int bpf__strerror_load(struct bpf_object *obj, int err,
		       char *buf, size_t size);
54 55
int bpf__foreach_tev(struct bpf_object *obj,
		     bpf_prog_iter_callback_t func, void *arg);
W
Wang Nan 已提交
56 57
#else
static inline struct bpf_object *
58 59
bpf__prepare_load(const char *filename __maybe_unused,
		  bool source __maybe_unused)
W
Wang Nan 已提交
60 61 62 63 64
{
	pr_debug("ERROR: eBPF object loading is disabled during compiling.\n");
	return ERR_PTR(-ENOTSUP);
}

W
Wang Nan 已提交
65 66 67 68 69 70 71
static inline struct bpf_object *
bpf__prepare_load_buffer(void *obj_buf __maybe_unused,
					   size_t obj_buf_sz __maybe_unused)
{
	return ERR_PTR(-ENOTSUP);
}

W
Wang Nan 已提交
72
static inline void bpf__clear(void) { }
73 74 75

static inline int bpf__probe(struct bpf_object *obj __maybe_unused) { return 0;}
static inline int bpf__unprobe(struct bpf_object *obj __maybe_unused) { return 0;}
76
static inline int bpf__load(struct bpf_object *obj __maybe_unused) { return 0; }
77

78 79 80 81 82 83 84 85
static inline int
bpf__foreach_tev(struct bpf_object *obj __maybe_unused,
		 bpf_prog_iter_callback_t func __maybe_unused,
		 void *arg __maybe_unused)
{
	return 0;
}

86 87 88 89 90 91 92 93 94 95 96 97
static inline int
__bpf_strerror(char *buf, size_t size)
{
	if (!size)
		return 0;
	strncpy(buf,
		"ERROR: eBPF object loading is disabled during compiling.\n",
		size);
	buf[size - 1] = '\0';
	return 0;
}

98 99 100 101 102 103 104 105 106
static inline
int bpf__strerror_prepare_load(const char *filename __maybe_unused,
			       bool source __maybe_unused,
			       int err __maybe_unused,
			       char *buf, size_t size)
{
	return __bpf_strerror(buf, size);
}

107 108 109 110 111 112 113
static inline int
bpf__strerror_probe(struct bpf_object *obj __maybe_unused,
		    int err __maybe_unused,
		    char *buf, size_t size)
{
	return __bpf_strerror(buf, size);
}
114 115 116 117 118 119 120

static inline int bpf__strerror_load(struct bpf_object *obj __maybe_unused,
				     int err __maybe_unused,
				     char *buf, size_t size)
{
	return __bpf_strerror(buf, size);
}
W
Wang Nan 已提交
121 122
#endif
#endif