|
@@ -7,6 +7,7 @@
|
|
|
|
|
|
#include <linux/bpf.h>
|
|
#include <linux/bpf.h>
|
|
#include <bpf/libbpf.h>
|
|
#include <bpf/libbpf.h>
|
|
|
|
+#include <bpf/bpf.h>
|
|
#include <linux/err.h>
|
|
#include <linux/err.h>
|
|
#include <linux/string.h>
|
|
#include <linux/string.h>
|
|
#include "perf.h"
|
|
#include "perf.h"
|
|
@@ -16,6 +17,7 @@
|
|
#include "llvm-utils.h"
|
|
#include "llvm-utils.h"
|
|
#include "probe-event.h"
|
|
#include "probe-event.h"
|
|
#include "probe-finder.h" // for MAX_PROBES
|
|
#include "probe-finder.h" // for MAX_PROBES
|
|
|
|
+#include "parse-events.h"
|
|
#include "llvm-utils.h"
|
|
#include "llvm-utils.h"
|
|
|
|
|
|
#define DEFINE_PRINT_FN(name, level) \
|
|
#define DEFINE_PRINT_FN(name, level) \
|
|
@@ -739,6 +741,682 @@ int bpf__foreach_tev(struct bpf_object *obj,
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+enum bpf_map_op_type {
|
|
|
|
+ BPF_MAP_OP_SET_VALUE,
|
|
|
|
+ BPF_MAP_OP_SET_EVSEL,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+enum bpf_map_key_type {
|
|
|
|
+ BPF_MAP_KEY_ALL,
|
|
|
|
+ BPF_MAP_KEY_RANGES,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+struct bpf_map_op {
|
|
|
|
+ struct list_head list;
|
|
|
|
+ enum bpf_map_op_type op_type;
|
|
|
|
+ enum bpf_map_key_type key_type;
|
|
|
|
+ union {
|
|
|
|
+ struct parse_events_array array;
|
|
|
|
+ } k;
|
|
|
|
+ union {
|
|
|
|
+ u64 value;
|
|
|
|
+ struct perf_evsel *evsel;
|
|
|
|
+ } v;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+struct bpf_map_priv {
|
|
|
|
+ struct list_head ops_list;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static void
|
|
|
|
+bpf_map_op__delete(struct bpf_map_op *op)
|
|
|
|
+{
|
|
|
|
+ if (!list_empty(&op->list))
|
|
|
|
+ list_del(&op->list);
|
|
|
|
+ if (op->key_type == BPF_MAP_KEY_RANGES)
|
|
|
|
+ parse_events__clear_array(&op->k.array);
|
|
|
|
+ free(op);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void
|
|
|
|
+bpf_map_priv__purge(struct bpf_map_priv *priv)
|
|
|
|
+{
|
|
|
|
+ struct bpf_map_op *pos, *n;
|
|
|
|
+
|
|
|
|
+ list_for_each_entry_safe(pos, n, &priv->ops_list, list) {
|
|
|
|
+ list_del_init(&pos->list);
|
|
|
|
+ bpf_map_op__delete(pos);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void
|
|
|
|
+bpf_map_priv__clear(struct bpf_map *map __maybe_unused,
|
|
|
|
+ void *_priv)
|
|
|
|
+{
|
|
|
|
+ struct bpf_map_priv *priv = _priv;
|
|
|
|
+
|
|
|
|
+ bpf_map_priv__purge(priv);
|
|
|
|
+ free(priv);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+bpf_map_op_setkey(struct bpf_map_op *op, struct parse_events_term *term)
|
|
|
|
+{
|
|
|
|
+ op->key_type = BPF_MAP_KEY_ALL;
|
|
|
|
+ if (!term)
|
|
|
|
+ return 0;
|
|
|
|
+
|
|
|
|
+ if (term->array.nr_ranges) {
|
|
|
|
+ size_t memsz = term->array.nr_ranges *
|
|
|
|
+ sizeof(op->k.array.ranges[0]);
|
|
|
|
+
|
|
|
|
+ op->k.array.ranges = memdup(term->array.ranges, memsz);
|
|
|
|
+ if (!op->k.array.ranges) {
|
|
|
|
+ pr_debug("No enough memory to alloc indices for map\n");
|
|
|
|
+ return -ENOMEM;
|
|
|
|
+ }
|
|
|
|
+ op->key_type = BPF_MAP_KEY_RANGES;
|
|
|
|
+ op->k.array.nr_ranges = term->array.nr_ranges;
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static struct bpf_map_op *
|
|
|
|
+bpf_map_op__new(struct parse_events_term *term)
|
|
|
|
+{
|
|
|
|
+ struct bpf_map_op *op;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ op = zalloc(sizeof(*op));
|
|
|
|
+ if (!op) {
|
|
|
|
+ pr_debug("Failed to alloc bpf_map_op\n");
|
|
|
|
+ return ERR_PTR(-ENOMEM);
|
|
|
|
+ }
|
|
|
|
+ INIT_LIST_HEAD(&op->list);
|
|
|
|
+
|
|
|
|
+ err = bpf_map_op_setkey(op, term);
|
|
|
|
+ if (err) {
|
|
|
|
+ free(op);
|
|
|
|
+ return ERR_PTR(err);
|
|
|
|
+ }
|
|
|
|
+ return op;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+bpf_map__add_op(struct bpf_map *map, struct bpf_map_op *op)
|
|
|
|
+{
|
|
|
|
+ struct bpf_map_priv *priv;
|
|
|
|
+ const char *map_name;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ map_name = bpf_map__get_name(map);
|
|
|
|
+ err = bpf_map__get_private(map, (void **)&priv);
|
|
|
|
+ if (err) {
|
|
|
|
+ pr_debug("Failed to get private from map %s\n", map_name);
|
|
|
|
+ return err;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (!priv) {
|
|
|
|
+ priv = zalloc(sizeof(*priv));
|
|
|
|
+ if (!priv) {
|
|
|
|
+ pr_debug("No enough memory to alloc map private\n");
|
|
|
|
+ return -ENOMEM;
|
|
|
|
+ }
|
|
|
|
+ INIT_LIST_HEAD(&priv->ops_list);
|
|
|
|
+
|
|
|
|
+ if (bpf_map__set_private(map, priv, bpf_map_priv__clear)) {
|
|
|
|
+ free(priv);
|
|
|
|
+ return -BPF_LOADER_ERRNO__INTERNAL;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ list_add_tail(&op->list, &priv->ops_list);
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static struct bpf_map_op *
|
|
|
|
+bpf_map__add_newop(struct bpf_map *map, struct parse_events_term *term)
|
|
|
|
+{
|
|
|
|
+ struct bpf_map_op *op;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ op = bpf_map_op__new(term);
|
|
|
|
+ if (IS_ERR(op))
|
|
|
|
+ return op;
|
|
|
|
+
|
|
|
|
+ err = bpf_map__add_op(map, op);
|
|
|
|
+ if (err) {
|
|
|
|
+ bpf_map_op__delete(op);
|
|
|
|
+ return ERR_PTR(err);
|
|
|
|
+ }
|
|
|
|
+ return op;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+__bpf_map__config_value(struct bpf_map *map,
|
|
|
|
+ struct parse_events_term *term)
|
|
|
|
+{
|
|
|
|
+ struct bpf_map_def def;
|
|
|
|
+ struct bpf_map_op *op;
|
|
|
|
+ const char *map_name;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ map_name = bpf_map__get_name(map);
|
|
|
|
+
|
|
|
|
+ err = bpf_map__get_def(map, &def);
|
|
|
|
+ if (err) {
|
|
|
|
+ pr_debug("Unable to get map definition from '%s'\n",
|
|
|
|
+ map_name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__INTERNAL;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (def.type != BPF_MAP_TYPE_ARRAY) {
|
|
|
|
+ pr_debug("Map %s type is not BPF_MAP_TYPE_ARRAY\n",
|
|
|
|
+ map_name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_TYPE;
|
|
|
|
+ }
|
|
|
|
+ if (def.key_size < sizeof(unsigned int)) {
|
|
|
|
+ pr_debug("Map %s has incorrect key size\n", map_name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_KEYSIZE;
|
|
|
|
+ }
|
|
|
|
+ switch (def.value_size) {
|
|
|
|
+ case 1:
|
|
|
|
+ case 2:
|
|
|
|
+ case 4:
|
|
|
|
+ case 8:
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ pr_debug("Map %s has incorrect value size\n", map_name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_VALUESIZE;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ op = bpf_map__add_newop(map, term);
|
|
|
|
+ if (IS_ERR(op))
|
|
|
|
+ return PTR_ERR(op);
|
|
|
|
+ op->op_type = BPF_MAP_OP_SET_VALUE;
|
|
|
|
+ op->v.value = term->val.num;
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+bpf_map__config_value(struct bpf_map *map,
|
|
|
|
+ struct parse_events_term *term,
|
|
|
|
+ struct perf_evlist *evlist __maybe_unused)
|
|
|
|
+{
|
|
|
|
+ if (!term->err_val) {
|
|
|
|
+ pr_debug("Config value not set\n");
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_CONF;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (term->type_val != PARSE_EVENTS__TERM_TYPE_NUM) {
|
|
|
|
+ pr_debug("ERROR: wrong value type for 'value'\n");
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_VALUE;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return __bpf_map__config_value(map, term);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+__bpf_map__config_event(struct bpf_map *map,
|
|
|
|
+ struct parse_events_term *term,
|
|
|
|
+ struct perf_evlist *evlist)
|
|
|
|
+{
|
|
|
|
+ struct perf_evsel *evsel;
|
|
|
|
+ struct bpf_map_def def;
|
|
|
|
+ struct bpf_map_op *op;
|
|
|
|
+ const char *map_name;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ map_name = bpf_map__get_name(map);
|
|
|
|
+ evsel = perf_evlist__find_evsel_by_str(evlist, term->val.str);
|
|
|
|
+ if (!evsel) {
|
|
|
|
+ pr_debug("Event (for '%s') '%s' doesn't exist\n",
|
|
|
|
+ map_name, term->val.str);
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_NOEVT;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ err = bpf_map__get_def(map, &def);
|
|
|
|
+ if (err) {
|
|
|
|
+ pr_debug("Unable to get map definition from '%s'\n",
|
|
|
|
+ map_name);
|
|
|
|
+ return err;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /*
|
|
|
|
+ * No need to check key_size and value_size:
|
|
|
|
+ * kernel has already checked them.
|
|
|
|
+ */
|
|
|
|
+ if (def.type != BPF_MAP_TYPE_PERF_EVENT_ARRAY) {
|
|
|
|
+ pr_debug("Map %s type is not BPF_MAP_TYPE_PERF_EVENT_ARRAY\n",
|
|
|
|
+ map_name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_TYPE;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ op = bpf_map__add_newop(map, term);
|
|
|
|
+ if (IS_ERR(op))
|
|
|
|
+ return PTR_ERR(op);
|
|
|
|
+ op->op_type = BPF_MAP_OP_SET_EVSEL;
|
|
|
|
+ op->v.evsel = evsel;
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+bpf_map__config_event(struct bpf_map *map,
|
|
|
|
+ struct parse_events_term *term,
|
|
|
|
+ struct perf_evlist *evlist)
|
|
|
|
+{
|
|
|
|
+ if (!term->err_val) {
|
|
|
|
+ pr_debug("Config value not set\n");
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_CONF;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (term->type_val != PARSE_EVENTS__TERM_TYPE_STR) {
|
|
|
|
+ pr_debug("ERROR: wrong value type for 'event'\n");
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_VALUE;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return __bpf_map__config_event(map, term, evlist);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+struct bpf_obj_config__map_func {
|
|
|
|
+ const char *config_opt;
|
|
|
|
+ int (*config_func)(struct bpf_map *, struct parse_events_term *,
|
|
|
|
+ struct perf_evlist *);
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+struct bpf_obj_config__map_func bpf_obj_config__map_funcs[] = {
|
|
|
|
+ {"value", bpf_map__config_value},
|
|
|
|
+ {"event", bpf_map__config_event},
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+config_map_indices_range_check(struct parse_events_term *term,
|
|
|
|
+ struct bpf_map *map,
|
|
|
|
+ const char *map_name)
|
|
|
|
+{
|
|
|
|
+ struct parse_events_array *array = &term->array;
|
|
|
|
+ struct bpf_map_def def;
|
|
|
|
+ unsigned int i;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ if (!array->nr_ranges)
|
|
|
|
+ return 0;
|
|
|
|
+ if (!array->ranges) {
|
|
|
|
+ pr_debug("ERROR: map %s: array->nr_ranges is %d but range array is NULL\n",
|
|
|
|
+ map_name, (int)array->nr_ranges);
|
|
|
|
+ return -BPF_LOADER_ERRNO__INTERNAL;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ err = bpf_map__get_def(map, &def);
|
|
|
|
+ if (err) {
|
|
|
|
+ pr_debug("ERROR: Unable to get map definition from '%s'\n",
|
|
|
|
+ map_name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__INTERNAL;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ for (i = 0; i < array->nr_ranges; i++) {
|
|
|
|
+ unsigned int start = array->ranges[i].start;
|
|
|
|
+ size_t length = array->ranges[i].length;
|
|
|
|
+ unsigned int idx = start + length - 1;
|
|
|
|
+
|
|
|
|
+ if (idx >= def.max_entries) {
|
|
|
|
+ pr_debug("ERROR: index %d too large\n", idx);
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_IDX2BIG;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+bpf__obj_config_map(struct bpf_object *obj,
|
|
|
|
+ struct parse_events_term *term,
|
|
|
|
+ struct perf_evlist *evlist,
|
|
|
|
+ int *key_scan_pos)
|
|
|
|
+{
|
|
|
|
+ /* key is "map:<mapname>.<config opt>" */
|
|
|
|
+ char *map_name = strdup(term->config + sizeof("map:") - 1);
|
|
|
|
+ struct bpf_map *map;
|
|
|
|
+ int err = -BPF_LOADER_ERRNO__OBJCONF_OPT;
|
|
|
|
+ char *map_opt;
|
|
|
|
+ size_t i;
|
|
|
|
+
|
|
|
|
+ if (!map_name)
|
|
|
|
+ return -ENOMEM;
|
|
|
|
+
|
|
|
|
+ map_opt = strchr(map_name, '.');
|
|
|
|
+ if (!map_opt) {
|
|
|
|
+ pr_debug("ERROR: Invalid map config: %s\n", map_name);
|
|
|
|
+ goto out;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ *map_opt++ = '\0';
|
|
|
|
+ if (*map_opt == '\0') {
|
|
|
|
+ pr_debug("ERROR: Invalid map option: %s\n", term->config);
|
|
|
|
+ goto out;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ map = bpf_object__get_map_by_name(obj, map_name);
|
|
|
|
+ if (!map) {
|
|
|
|
+ pr_debug("ERROR: Map %s doesn't exist\n", map_name);
|
|
|
|
+ err = -BPF_LOADER_ERRNO__OBJCONF_MAP_NOTEXIST;
|
|
|
|
+ goto out;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ *key_scan_pos += strlen(map_opt);
|
|
|
|
+ err = config_map_indices_range_check(term, map, map_name);
|
|
|
|
+ if (err)
|
|
|
|
+ goto out;
|
|
|
|
+ *key_scan_pos -= strlen(map_opt);
|
|
|
|
+
|
|
|
|
+ for (i = 0; i < ARRAY_SIZE(bpf_obj_config__map_funcs); i++) {
|
|
|
|
+ struct bpf_obj_config__map_func *func =
|
|
|
|
+ &bpf_obj_config__map_funcs[i];
|
|
|
|
+
|
|
|
|
+ if (strcmp(map_opt, func->config_opt) == 0) {
|
|
|
|
+ err = func->config_func(map, term, evlist);
|
|
|
|
+ goto out;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ pr_debug("ERROR: Invalid map config option '%s'\n", map_opt);
|
|
|
|
+ err = -BPF_LOADER_ERRNO__OBJCONF_MAP_OPT;
|
|
|
|
+out:
|
|
|
|
+ free(map_name);
|
|
|
|
+ if (!err)
|
|
|
|
+ key_scan_pos += strlen(map_opt);
|
|
|
|
+ return err;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+int bpf__config_obj(struct bpf_object *obj,
|
|
|
|
+ struct parse_events_term *term,
|
|
|
|
+ struct perf_evlist *evlist,
|
|
|
|
+ int *error_pos)
|
|
|
|
+{
|
|
|
|
+ int key_scan_pos = 0;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ if (!obj || !term || !term->config)
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ if (!prefixcmp(term->config, "map:")) {
|
|
|
|
+ key_scan_pos = sizeof("map:") - 1;
|
|
|
|
+ err = bpf__obj_config_map(obj, term, evlist, &key_scan_pos);
|
|
|
|
+ goto out;
|
|
|
|
+ }
|
|
|
|
+ err = -BPF_LOADER_ERRNO__OBJCONF_OPT;
|
|
|
|
+out:
|
|
|
|
+ if (error_pos)
|
|
|
|
+ *error_pos = key_scan_pos;
|
|
|
|
+ return err;
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+typedef int (*map_config_func_t)(const char *name, int map_fd,
|
|
|
|
+ struct bpf_map_def *pdef,
|
|
|
|
+ struct bpf_map_op *op,
|
|
|
|
+ void *pkey, void *arg);
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+foreach_key_array_all(map_config_func_t func,
|
|
|
|
+ void *arg, const char *name,
|
|
|
|
+ int map_fd, struct bpf_map_def *pdef,
|
|
|
|
+ struct bpf_map_op *op)
|
|
|
|
+{
|
|
|
|
+ unsigned int i;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ for (i = 0; i < pdef->max_entries; i++) {
|
|
|
|
+ err = func(name, map_fd, pdef, op, &i, arg);
|
|
|
|
+ if (err) {
|
|
|
|
+ pr_debug("ERROR: failed to insert value to %s[%u]\n",
|
|
|
|
+ name, i);
|
|
|
|
+ return err;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+foreach_key_array_ranges(map_config_func_t func, void *arg,
|
|
|
|
+ const char *name, int map_fd,
|
|
|
|
+ struct bpf_map_def *pdef,
|
|
|
|
+ struct bpf_map_op *op)
|
|
|
|
+{
|
|
|
|
+ unsigned int i, j;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ for (i = 0; i < op->k.array.nr_ranges; i++) {
|
|
|
|
+ unsigned int start = op->k.array.ranges[i].start;
|
|
|
|
+ size_t length = op->k.array.ranges[i].length;
|
|
|
|
+
|
|
|
|
+ for (j = 0; j < length; j++) {
|
|
|
|
+ unsigned int idx = start + j;
|
|
|
|
+
|
|
|
|
+ err = func(name, map_fd, pdef, op, &idx, arg);
|
|
|
|
+ if (err) {
|
|
|
|
+ pr_debug("ERROR: failed to insert value to %s[%u]\n",
|
|
|
|
+ name, idx);
|
|
|
|
+ return err;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+bpf_map_config_foreach_key(struct bpf_map *map,
|
|
|
|
+ map_config_func_t func,
|
|
|
|
+ void *arg)
|
|
|
|
+{
|
|
|
|
+ int err, map_fd;
|
|
|
|
+ const char *name;
|
|
|
|
+ struct bpf_map_op *op;
|
|
|
|
+ struct bpf_map_def def;
|
|
|
|
+ struct bpf_map_priv *priv;
|
|
|
|
+
|
|
|
|
+ name = bpf_map__get_name(map);
|
|
|
|
+
|
|
|
|
+ err = bpf_map__get_private(map, (void **)&priv);
|
|
|
|
+ if (err) {
|
|
|
|
+ pr_debug("ERROR: failed to get private from map %s\n", name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__INTERNAL;
|
|
|
|
+ }
|
|
|
|
+ if (!priv || list_empty(&priv->ops_list)) {
|
|
|
|
+ pr_debug("INFO: nothing to config for map %s\n", name);
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ err = bpf_map__get_def(map, &def);
|
|
|
|
+ if (err) {
|
|
|
|
+ pr_debug("ERROR: failed to get definition from map %s\n", name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__INTERNAL;
|
|
|
|
+ }
|
|
|
|
+ map_fd = bpf_map__get_fd(map);
|
|
|
|
+ if (map_fd < 0) {
|
|
|
|
+ pr_debug("ERROR: failed to get fd from map %s\n", name);
|
|
|
|
+ return map_fd;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ list_for_each_entry(op, &priv->ops_list, list) {
|
|
|
|
+ switch (def.type) {
|
|
|
|
+ case BPF_MAP_TYPE_ARRAY:
|
|
|
|
+ case BPF_MAP_TYPE_PERF_EVENT_ARRAY:
|
|
|
|
+ switch (op->key_type) {
|
|
|
|
+ case BPF_MAP_KEY_ALL:
|
|
|
|
+ err = foreach_key_array_all(func, arg, name,
|
|
|
|
+ map_fd, &def, op);
|
|
|
|
+ break;
|
|
|
|
+ case BPF_MAP_KEY_RANGES:
|
|
|
|
+ err = foreach_key_array_ranges(func, arg, name,
|
|
|
|
+ map_fd, &def,
|
|
|
|
+ op);
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ pr_debug("ERROR: keytype for map '%s' invalid\n",
|
|
|
|
+ name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__INTERNAL;
|
|
|
|
+ }
|
|
|
|
+ if (err)
|
|
|
|
+ return err;
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ pr_debug("ERROR: type of '%s' incorrect\n", name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_TYPE;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+apply_config_value_for_key(int map_fd, void *pkey,
|
|
|
|
+ size_t val_size, u64 val)
|
|
|
|
+{
|
|
|
|
+ int err = 0;
|
|
|
|
+
|
|
|
|
+ switch (val_size) {
|
|
|
|
+ case 1: {
|
|
|
|
+ u8 _val = (u8)(val);
|
|
|
|
+ err = bpf_map_update_elem(map_fd, pkey, &_val, BPF_ANY);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ case 2: {
|
|
|
|
+ u16 _val = (u16)(val);
|
|
|
|
+ err = bpf_map_update_elem(map_fd, pkey, &_val, BPF_ANY);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ case 4: {
|
|
|
|
+ u32 _val = (u32)(val);
|
|
|
|
+ err = bpf_map_update_elem(map_fd, pkey, &_val, BPF_ANY);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ case 8: {
|
|
|
|
+ err = bpf_map_update_elem(map_fd, pkey, &val, BPF_ANY);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ default:
|
|
|
|
+ pr_debug("ERROR: invalid value size\n");
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_VALUESIZE;
|
|
|
|
+ }
|
|
|
|
+ if (err && errno)
|
|
|
|
+ err = -errno;
|
|
|
|
+ return err;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+apply_config_evsel_for_key(const char *name, int map_fd, void *pkey,
|
|
|
|
+ struct perf_evsel *evsel)
|
|
|
|
+{
|
|
|
|
+ struct xyarray *xy = evsel->fd;
|
|
|
|
+ struct perf_event_attr *attr;
|
|
|
|
+ unsigned int key, events;
|
|
|
|
+ bool check_pass = false;
|
|
|
|
+ int *evt_fd;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ if (!xy) {
|
|
|
|
+ pr_debug("ERROR: evsel not ready for map %s\n", name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__INTERNAL;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (xy->row_size / xy->entry_size != 1) {
|
|
|
|
+ pr_debug("ERROR: Dimension of target event is incorrect for map %s\n",
|
|
|
|
+ name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_EVTDIM;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ attr = &evsel->attr;
|
|
|
|
+ if (attr->inherit) {
|
|
|
|
+ pr_debug("ERROR: Can't put inherit event into map %s\n", name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_EVTINH;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (perf_evsel__is_bpf_output(evsel))
|
|
|
|
+ check_pass = true;
|
|
|
|
+ if (attr->type == PERF_TYPE_RAW)
|
|
|
|
+ check_pass = true;
|
|
|
|
+ if (attr->type == PERF_TYPE_HARDWARE)
|
|
|
|
+ check_pass = true;
|
|
|
|
+ if (!check_pass) {
|
|
|
|
+ pr_debug("ERROR: Event type is wrong for map %s\n", name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_EVTTYPE;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ events = xy->entries / (xy->row_size / xy->entry_size);
|
|
|
|
+ key = *((unsigned int *)pkey);
|
|
|
|
+ if (key >= events) {
|
|
|
|
+ pr_debug("ERROR: there is no event %d for map %s\n",
|
|
|
|
+ key, name);
|
|
|
|
+ return -BPF_LOADER_ERRNO__OBJCONF_MAP_MAPSIZE;
|
|
|
|
+ }
|
|
|
|
+ evt_fd = xyarray__entry(xy, key, 0);
|
|
|
|
+ err = bpf_map_update_elem(map_fd, pkey, evt_fd, BPF_ANY);
|
|
|
|
+ if (err && errno)
|
|
|
|
+ err = -errno;
|
|
|
|
+ return err;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+apply_obj_config_map_for_key(const char *name, int map_fd,
|
|
|
|
+ struct bpf_map_def *pdef __maybe_unused,
|
|
|
|
+ struct bpf_map_op *op,
|
|
|
|
+ void *pkey, void *arg __maybe_unused)
|
|
|
|
+{
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ switch (op->op_type) {
|
|
|
|
+ case BPF_MAP_OP_SET_VALUE:
|
|
|
|
+ err = apply_config_value_for_key(map_fd, pkey,
|
|
|
|
+ pdef->value_size,
|
|
|
|
+ op->v.value);
|
|
|
|
+ break;
|
|
|
|
+ case BPF_MAP_OP_SET_EVSEL:
|
|
|
|
+ err = apply_config_evsel_for_key(name, map_fd, pkey,
|
|
|
|
+ op->v.evsel);
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ pr_debug("ERROR: unknown value type for '%s'\n", name);
|
|
|
|
+ err = -BPF_LOADER_ERRNO__INTERNAL;
|
|
|
|
+ }
|
|
|
|
+ return err;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+apply_obj_config_map(struct bpf_map *map)
|
|
|
|
+{
|
|
|
|
+ return bpf_map_config_foreach_key(map,
|
|
|
|
+ apply_obj_config_map_for_key,
|
|
|
|
+ NULL);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+apply_obj_config_object(struct bpf_object *obj)
|
|
|
|
+{
|
|
|
|
+ struct bpf_map *map;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ bpf_map__for_each(map, obj) {
|
|
|
|
+ err = apply_obj_config_map(map);
|
|
|
|
+ if (err)
|
|
|
|
+ return err;
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+int bpf__apply_obj_config(void)
|
|
|
|
+{
|
|
|
|
+ struct bpf_object *obj, *tmp;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ bpf_object__for_each_safe(obj, tmp) {
|
|
|
|
+ err = apply_obj_config_object(obj);
|
|
|
|
+ if (err)
|
|
|
|
+ return err;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
#define ERRNO_OFFSET(e) ((e) - __BPF_LOADER_ERRNO__START)
|
|
#define ERRNO_OFFSET(e) ((e) - __BPF_LOADER_ERRNO__START)
|
|
#define ERRCODE_OFFSET(c) ERRNO_OFFSET(BPF_LOADER_ERRNO__##c)
|
|
#define ERRCODE_OFFSET(c) ERRNO_OFFSET(BPF_LOADER_ERRNO__##c)
|
|
#define NR_ERRNO (__BPF_LOADER_ERRNO__END - __BPF_LOADER_ERRNO__START)
|
|
#define NR_ERRNO (__BPF_LOADER_ERRNO__END - __BPF_LOADER_ERRNO__START)
|
|
@@ -753,6 +1431,20 @@ static const char *bpf_loader_strerror_table[NR_ERRNO] = {
|
|
[ERRCODE_OFFSET(PROLOGUE)] = "Failed to generate prologue",
|
|
[ERRCODE_OFFSET(PROLOGUE)] = "Failed to generate prologue",
|
|
[ERRCODE_OFFSET(PROLOGUE2BIG)] = "Prologue too big for program",
|
|
[ERRCODE_OFFSET(PROLOGUE2BIG)] = "Prologue too big for program",
|
|
[ERRCODE_OFFSET(PROLOGUEOOB)] = "Offset out of bound for prologue",
|
|
[ERRCODE_OFFSET(PROLOGUEOOB)] = "Offset out of bound for prologue",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_OPT)] = "Invalid object config option",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_CONF)] = "Config value not set (missing '=')",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_MAP_OPT)] = "Invalid object map config option",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_MAP_NOTEXIST)] = "Target map doesn't exist",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_MAP_VALUE)] = "Incorrect value type for map",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_MAP_TYPE)] = "Incorrect map type",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_MAP_KEYSIZE)] = "Incorrect map key size",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_MAP_VALUESIZE)] = "Incorrect map value size",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_MAP_NOEVT)] = "Event not found for map setting",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_MAP_MAPSIZE)] = "Invalid map size for event setting",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_MAP_EVTDIM)] = "Event dimension too large",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_MAP_EVTINH)] = "Doesn't support inherit event",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_MAP_EVTTYPE)] = "Wrong event type for map",
|
|
|
|
+ [ERRCODE_OFFSET(OBJCONF_MAP_IDX2BIG)] = "Index too large",
|
|
};
|
|
};
|
|
|
|
|
|
static int
|
|
static int
|
|
@@ -872,3 +1564,29 @@ int bpf__strerror_load(struct bpf_object *obj,
|
|
bpf__strerror_end(buf, size);
|
|
bpf__strerror_end(buf, size);
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+int bpf__strerror_config_obj(struct bpf_object *obj __maybe_unused,
|
|
|
|
+ struct parse_events_term *term __maybe_unused,
|
|
|
|
+ struct perf_evlist *evlist __maybe_unused,
|
|
|
|
+ int *error_pos __maybe_unused, int err,
|
|
|
|
+ char *buf, size_t size)
|
|
|
|
+{
|
|
|
|
+ bpf__strerror_head(err, buf, size);
|
|
|
|
+ bpf__strerror_entry(BPF_LOADER_ERRNO__OBJCONF_MAP_TYPE,
|
|
|
|
+ "Can't use this config term with this map type");
|
|
|
|
+ bpf__strerror_end(buf, size);
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+int bpf__strerror_apply_obj_config(int err, char *buf, size_t size)
|
|
|
|
+{
|
|
|
|
+ bpf__strerror_head(err, buf, size);
|
|
|
|
+ bpf__strerror_entry(BPF_LOADER_ERRNO__OBJCONF_MAP_EVTDIM,
|
|
|
|
+ "Cannot set event to BPF map in multi-thread tracing");
|
|
|
|
+ bpf__strerror_entry(BPF_LOADER_ERRNO__OBJCONF_MAP_EVTINH,
|
|
|
|
+ "%s (Hint: use -i to turn off inherit)", emsg);
|
|
|
|
+ bpf__strerror_entry(BPF_LOADER_ERRNO__OBJCONF_MAP_EVTTYPE,
|
|
|
|
+ "Can only put raw, hardware and BPF output event into a BPF map");
|
|
|
|
+ bpf__strerror_end(buf, size);
|
|
|
|
+ return 0;
|
|
|
|
+}
|