1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 /* Copyright (C) 2020 Facebook */
12 #include <bpf/libbpf.h>
14 #include "json_writer.h"
17 #define STRUCT_OPS_VALUE_PREFIX "bpf_struct_ops_"
19 static const struct btf_type
*map_info_type
;
20 static __u32 map_info_alloc_len
;
21 static struct btf
*btf_vmlinux
;
22 static __s32 map_info_type_id
;
29 static const struct btf
*get_btf_vmlinux(void)
34 btf_vmlinux
= libbpf_find_kernel_btf();
36 p_err("struct_ops requires kernel CONFIG_DEBUG_INFO_BTF=y");
41 static const char *get_kern_struct_ops_name(const struct bpf_map_info
*info
)
43 const struct btf
*kern_btf
;
44 const struct btf_type
*t
;
45 const char *st_ops_name
;
47 kern_btf
= get_btf_vmlinux();
49 return "<btf_vmlinux_not_found>";
51 t
= btf__type_by_id(kern_btf
, info
->btf_vmlinux_value_type_id
);
52 st_ops_name
= btf__name_by_offset(kern_btf
, t
->name_off
);
53 st_ops_name
+= strlen(STRUCT_OPS_VALUE_PREFIX
);
58 static __s32
get_map_info_type_id(void)
60 const struct btf
*kern_btf
;
63 return map_info_type_id
;
65 kern_btf
= get_btf_vmlinux();
69 map_info_type_id
= btf__find_by_name_kind(kern_btf
, "bpf_map_info",
71 if (map_info_type_id
< 0) {
72 p_err("can't find bpf_map_info from btf_vmlinux");
73 return map_info_type_id
;
75 map_info_type
= btf__type_by_id(kern_btf
, map_info_type_id
);
77 /* Ensure map_info_alloc() has at least what the bpftool needs */
78 map_info_alloc_len
= map_info_type
->size
;
79 if (map_info_alloc_len
< sizeof(struct bpf_map_info
))
80 map_info_alloc_len
= sizeof(struct bpf_map_info
);
82 return map_info_type_id
;
85 /* If the subcmd needs to print out the bpf_map_info,
86 * it should always call map_info_alloc to allocate
87 * a bpf_map_info object instead of allocating it
90 * map_info_alloc() will take the running kernel's btf
91 * into account. i.e. it will consider the
92 * sizeof(struct bpf_map_info) of the running kernel.
94 * It will enable the "struct_ops" cmd to print the latest
95 * "struct bpf_map_info".
97 * [ Recall that "struct_ops" requires the kernel's btf to
100 static struct bpf_map_info
*map_info_alloc(__u32
*alloc_len
)
102 struct bpf_map_info
*info
;
104 if (get_map_info_type_id() < 0)
107 info
= calloc(1, map_info_alloc_len
);
109 p_err("mem alloc failed");
111 *alloc_len
= map_info_alloc_len
;
116 /* It iterates all struct_ops maps of the system.
117 * It returns the fd in "*res_fd" and map_info in "*info".
118 * In the very first iteration, info->id should be 0.
119 * An optional map "*name" filter can be specified.
120 * The filter can be made more flexible in the future.
121 * e.g. filter by kernel-struct-ops-name, regex-name, glob-name, ...etc.
124 * 1: A struct_ops map found. It is returned in "*res_fd" and "*info".
125 * The caller can continue to call get_next in the future.
126 * 0: No struct_ops map is returned.
127 * All struct_ops map has been found.
128 * -1: Error and the caller should abort the iteration.
130 static int get_next_struct_ops_map(const char *name
, int *res_fd
,
131 struct bpf_map_info
*info
, __u32 info_len
)
137 err
= bpf_map_get_next_id(id
, &id
);
141 p_err("can't get next map: %s", strerror(errno
));
145 fd
= bpf_map_get_fd_by_id(id
);
149 p_err("can't get map by id (%u): %s",
150 id
, strerror(errno
));
154 err
= bpf_map_get_info_by_fd(fd
, info
, &info_len
);
156 p_err("can't get map info: %s", strerror(errno
));
161 if (info
->type
== BPF_MAP_TYPE_STRUCT_OPS
&&
162 (!name
|| !strcmp(name
, info
->name
))) {
170 static int cmd_retval(const struct res
*res
, bool must_have_one_map
)
172 if (res
->nr_errs
|| (!res
->nr_maps
&& must_have_one_map
))
178 /* "data" is the work_func private storage */
179 typedef int (*work_func
)(int fd
, const struct bpf_map_info
*info
, void *data
,
180 struct json_writer
*wtr
);
182 /* Find all struct_ops map in the system.
183 * Filter out by "name" (if specified).
184 * Then call "func(fd, info, data, wtr)" on each struct_ops map found.
186 static struct res
do_search(const char *name
, work_func func
, void *data
,
187 struct json_writer
*wtr
)
189 struct bpf_map_info
*info
;
194 info
= map_info_alloc(&info_len
);
201 jsonw_start_array(wtr
);
202 while ((err
= get_next_struct_ops_map(name
, &fd
, info
, info_len
)) == 1) {
204 err
= func(fd
, info
, data
, wtr
);
210 jsonw_end_array(wtr
);
215 if (!wtr
&& name
&& !res
.nr_errs
&& !res
.nr_maps
)
216 /* It is not printing empty [].
217 * Thus, needs to specifically say nothing found
220 p_err("no struct_ops found for %s", name
);
221 else if (!wtr
&& json_output
&& !res
.nr_errs
)
222 /* The "func()" above is not writing any json (i.e. !wtr
225 * However, "-j" is enabled and there is no errs here,
226 * so call json_null() as the current convention of
229 jsonw_null(json_wtr
);
235 static struct res
do_one_id(const char *id_str
, work_func func
, void *data
,
236 struct json_writer
*wtr
)
238 struct bpf_map_info
*info
;
245 id
= strtoul(id_str
, &endptr
, 0);
246 if (*endptr
|| !id
|| id
> UINT32_MAX
) {
247 p_err("invalid id %s", id_str
);
252 fd
= bpf_map_get_fd_by_id(id
);
254 p_err("can't get map by id (%lu): %s", id
, strerror(errno
));
259 info
= map_info_alloc(&info_len
);
265 if (bpf_map_get_info_by_fd(fd
, info
, &info_len
)) {
266 p_err("can't get map info: %s", strerror(errno
));
271 if (info
->type
!= BPF_MAP_TYPE_STRUCT_OPS
) {
272 p_err("%s id %u is not a struct_ops map", info
->name
, info
->id
);
280 jsonw_start_array(wtr
);
282 if (func(fd
, info
, data
, wtr
))
284 else if (!wtr
&& json_output
)
285 /* The "func()" above is not writing any json (i.e. !wtr
288 * However, "-j" is enabled and there is no errs here,
289 * so call json_null() as the current convention of
292 jsonw_null(json_wtr
);
295 jsonw_end_array(wtr
);
304 static struct res
do_work_on_struct_ops(const char *search_type
,
305 const char *search_term
,
306 work_func func
, void *data
,
307 struct json_writer
*wtr
)
310 if (is_prefix(search_type
, "id"))
311 return do_one_id(search_term
, func
, data
, wtr
);
312 else if (!is_prefix(search_type
, "name"))
316 return do_search(search_term
, func
, data
, wtr
);
319 static int __do_show(int fd
, const struct bpf_map_info
*info
, void *data
,
320 struct json_writer
*wtr
)
323 jsonw_start_object(wtr
);
324 jsonw_uint_field(wtr
, "id", info
->id
);
325 jsonw_string_field(wtr
, "name", info
->name
);
326 jsonw_string_field(wtr
, "kernel_struct_ops",
327 get_kern_struct_ops_name(info
));
328 jsonw_end_object(wtr
);
330 printf("%u: %-15s %-32s\n", info
->id
, info
->name
,
331 get_kern_struct_ops_name(info
));
337 static int do_show(int argc
, char **argv
)
339 const char *search_type
= NULL
, *search_term
= NULL
;
342 if (argc
&& argc
!= 2)
346 search_type
= GET_ARG();
347 search_term
= GET_ARG();
350 res
= do_work_on_struct_ops(search_type
, search_term
, __do_show
,
353 return cmd_retval(&res
, !!search_term
);
356 static int __do_dump(int fd
, const struct bpf_map_info
*info
, void *data
,
357 struct json_writer
*wtr
)
359 struct btf_dumper
*d
= (struct btf_dumper
*)data
;
360 const struct btf_type
*struct_ops_type
;
361 const struct btf
*kern_btf
= d
->btf
;
362 const char *struct_ops_name
;
366 /* note: d->jw == wtr */
370 /* The kernel supporting BPF_MAP_TYPE_STRUCT_OPS must have
371 * btf_vmlinux_value_type_id.
373 struct_ops_type
= btf__type_by_id(kern_btf
,
374 info
->btf_vmlinux_value_type_id
);
375 struct_ops_name
= btf__name_by_offset(kern_btf
,
376 struct_ops_type
->name_off
);
377 value
= calloc(1, info
->value_size
);
379 p_err("mem alloc failed");
383 if (bpf_map_lookup_elem(fd
, &zero
, value
)) {
384 p_err("can't lookup struct_ops map %s id %u",
385 info
->name
, info
->id
);
390 jsonw_start_object(wtr
);
391 jsonw_name(wtr
, "bpf_map_info");
392 btf_dumper_type(d
, map_info_type_id
, (void *)info
);
393 jsonw_end_object(wtr
);
395 jsonw_start_object(wtr
);
396 jsonw_name(wtr
, struct_ops_name
);
397 btf_dumper_type(d
, info
->btf_vmlinux_value_type_id
, value
);
398 jsonw_end_object(wtr
);
405 static int do_dump(int argc
, char **argv
)
407 const char *search_type
= NULL
, *search_term
= NULL
;
408 json_writer_t
*wtr
= json_wtr
;
409 const struct btf
*kern_btf
;
410 struct btf_dumper d
= {};
413 if (argc
&& argc
!= 2)
417 search_type
= GET_ARG();
418 search_term
= GET_ARG();
421 kern_btf
= get_btf_vmlinux();
426 wtr
= jsonw_new(stdout
);
428 p_err("can't create json writer");
431 jsonw_pretty(wtr
, true);
436 d
.is_plain_text
= !json_output
;
437 d
.prog_id_as_func_ptr
= true;
439 res
= do_work_on_struct_ops(search_type
, search_term
, __do_dump
, &d
,
445 return cmd_retval(&res
, !!search_term
);
448 static int __do_unregister(int fd
, const struct bpf_map_info
*info
, void *data
,
449 struct json_writer
*wtr
)
453 if (bpf_map_delete_elem(fd
, &zero
)) {
454 p_err("can't unload %s %s id %u: %s",
455 get_kern_struct_ops_name(info
), info
->name
,
456 info
->id
, strerror(errno
));
460 p_info("Unregistered %s %s id %u",
461 get_kern_struct_ops_name(info
), info
->name
,
467 static int do_unregister(int argc
, char **argv
)
469 const char *search_type
, *search_term
;
475 search_type
= GET_ARG();
476 search_term
= GET_ARG();
478 res
= do_work_on_struct_ops(search_type
, search_term
,
479 __do_unregister
, NULL
, NULL
);
481 return cmd_retval(&res
, true);
484 static int pin_link(struct bpf_link
*link
, const char *pindir
,
487 char pinfile
[PATH_MAX
];
490 err
= pathname_concat(pinfile
, sizeof(pinfile
), pindir
, name
);
494 return bpf_link__pin(link
, pinfile
);
497 static int do_register(int argc
, char **argv
)
499 LIBBPF_OPTS(bpf_object_open_opts
, open_opts
);
500 __u32 link_info_len
= sizeof(struct bpf_link_info
);
501 struct bpf_link_info link_info
= {};
502 struct bpf_map_info info
= {};
503 __u32 info_len
= sizeof(info
);
504 int nr_errs
= 0, nr_maps
= 0;
505 const char *linkdir
= NULL
;
506 struct bpf_object
*obj
;
507 struct bpf_link
*link
;
511 if (argc
!= 1 && argc
!= 2)
518 if (linkdir
&& create_and_mount_bpffs_dir(linkdir
)) {
519 p_err("can't mount bpffs for pinning");
524 /* log_level1 + log_level2 + stats, but not stable UAPI */
525 open_opts
.kernel_log_level
= 1 + 2 + 4;
527 obj
= bpf_object__open_file(file
, &open_opts
);
533 if (bpf_object__load(obj
)) {
534 bpf_object__close(obj
);
538 bpf_object__for_each_map(map
, obj
) {
539 if (bpf_map__type(map
) != BPF_MAP_TYPE_STRUCT_OPS
)
542 link
= bpf_map__attach_struct_ops(map
);
544 p_err("can't register struct_ops %s: %s",
545 bpf_map__name(map
), strerror(errno
));
551 if (bpf_map_get_info_by_fd(bpf_map__fd(map
), &info
,
553 /* Not p_err. The struct_ops was attached
556 p_info("Registered %s but can't find id: %s",
557 bpf_map__name(map
), strerror(errno
));
560 if (!(bpf_map__map_flags(map
) & BPF_F_LINK
)) {
561 p_info("Registered %s %s id %u",
562 get_kern_struct_ops_name(&info
),
567 if (bpf_link_get_info_by_fd(bpf_link__fd(link
),
570 p_err("Registered %s but can't find link id: %s",
571 bpf_map__name(map
), strerror(errno
));
575 if (linkdir
&& pin_link(link
, linkdir
, info
.name
)) {
576 p_err("can't pin link %u for %s: %s",
577 link_info
.id
, info
.name
,
582 p_info("Registered %s %s map id %u link id %u",
583 get_kern_struct_ops_name(&info
),
584 info
.name
, info
.id
, link_info
.id
);
587 bpf_link__disconnect(link
);
588 bpf_link__destroy(link
);
591 bpf_object__close(obj
);
597 p_err("no struct_ops found in %s", file
);
602 jsonw_null(json_wtr
);
607 static int do_help(int argc
, char **argv
)
610 jsonw_null(json_wtr
);
615 "Usage: %1$s %2$s { show | list } [STRUCT_OPS_MAP]\n"
616 " %1$s %2$s dump [STRUCT_OPS_MAP]\n"
617 " %1$s %2$s register OBJ [LINK_DIR]\n"
618 " %1$s %2$s unregister STRUCT_OPS_MAP\n"
621 " STRUCT_OPS_MAP := [ id STRUCT_OPS_MAP_ID | name STRUCT_OPS_MAP_NAME ]\n"
622 " " HELP_SPEC_OPTIONS
" }\n"
629 static const struct cmd cmds
[] = {
632 { "register", do_register
},
633 { "unregister", do_unregister
},
639 int do_struct_ops(int argc
, char **argv
)
643 err
= cmd_select(cmds
, argc
, argv
, do_help
);
645 btf__free(btf_vmlinux
);