| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298 |
- // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
- /* Copyright (C) 2020 Facebook */
- #include <errno.h>
- #include <linux/err.h>
- #include <linux/netfilter.h>
- #include <linux/netfilter_arp.h>
- #include <linux/perf_event.h>
- #include <net/if.h>
- #include <stdio.h>
- #include <unistd.h>
- #include <bpf/bpf.h>
- #include <bpf/hashmap.h>
- #include "json_writer.h"
- #include "main.h"
- #include "xlated_dumper.h"
- #define PERF_HW_CACHE_LEN 128
- static struct hashmap *link_table;
- static struct dump_data dd;
- static const char *perf_type_name[PERF_TYPE_MAX] = {
- [PERF_TYPE_HARDWARE] = "hardware",
- [PERF_TYPE_SOFTWARE] = "software",
- [PERF_TYPE_TRACEPOINT] = "tracepoint",
- [PERF_TYPE_HW_CACHE] = "hw-cache",
- [PERF_TYPE_RAW] = "raw",
- [PERF_TYPE_BREAKPOINT] = "breakpoint",
- };
- const char *event_symbols_hw[PERF_COUNT_HW_MAX] = {
- [PERF_COUNT_HW_CPU_CYCLES] = "cpu-cycles",
- [PERF_COUNT_HW_INSTRUCTIONS] = "instructions",
- [PERF_COUNT_HW_CACHE_REFERENCES] = "cache-references",
- [PERF_COUNT_HW_CACHE_MISSES] = "cache-misses",
- [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = "branch-instructions",
- [PERF_COUNT_HW_BRANCH_MISSES] = "branch-misses",
- [PERF_COUNT_HW_BUS_CYCLES] = "bus-cycles",
- [PERF_COUNT_HW_STALLED_CYCLES_FRONTEND] = "stalled-cycles-frontend",
- [PERF_COUNT_HW_STALLED_CYCLES_BACKEND] = "stalled-cycles-backend",
- [PERF_COUNT_HW_REF_CPU_CYCLES] = "ref-cycles",
- };
- const char *event_symbols_sw[PERF_COUNT_SW_MAX] = {
- [PERF_COUNT_SW_CPU_CLOCK] = "cpu-clock",
- [PERF_COUNT_SW_TASK_CLOCK] = "task-clock",
- [PERF_COUNT_SW_PAGE_FAULTS] = "page-faults",
- [PERF_COUNT_SW_CONTEXT_SWITCHES] = "context-switches",
- [PERF_COUNT_SW_CPU_MIGRATIONS] = "cpu-migrations",
- [PERF_COUNT_SW_PAGE_FAULTS_MIN] = "minor-faults",
- [PERF_COUNT_SW_PAGE_FAULTS_MAJ] = "major-faults",
- [PERF_COUNT_SW_ALIGNMENT_FAULTS] = "alignment-faults",
- [PERF_COUNT_SW_EMULATION_FAULTS] = "emulation-faults",
- [PERF_COUNT_SW_DUMMY] = "dummy",
- [PERF_COUNT_SW_BPF_OUTPUT] = "bpf-output",
- [PERF_COUNT_SW_CGROUP_SWITCHES] = "cgroup-switches",
- };
- const char *evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX] = {
- [PERF_COUNT_HW_CACHE_L1D] = "L1-dcache",
- [PERF_COUNT_HW_CACHE_L1I] = "L1-icache",
- [PERF_COUNT_HW_CACHE_LL] = "LLC",
- [PERF_COUNT_HW_CACHE_DTLB] = "dTLB",
- [PERF_COUNT_HW_CACHE_ITLB] = "iTLB",
- [PERF_COUNT_HW_CACHE_BPU] = "branch",
- [PERF_COUNT_HW_CACHE_NODE] = "node",
- };
- const char *evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX] = {
- [PERF_COUNT_HW_CACHE_OP_READ] = "load",
- [PERF_COUNT_HW_CACHE_OP_WRITE] = "store",
- [PERF_COUNT_HW_CACHE_OP_PREFETCH] = "prefetch",
- };
- const char *evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX] = {
- [PERF_COUNT_HW_CACHE_RESULT_ACCESS] = "refs",
- [PERF_COUNT_HW_CACHE_RESULT_MISS] = "misses",
- };
- #define perf_event_name(array, id) ({ \
- const char *event_str = NULL; \
- \
- if ((id) < ARRAY_SIZE(array)) \
- event_str = array[id]; \
- event_str; \
- })
- static int link_parse_fd(int *argc, char ***argv)
- {
- int fd;
- if (is_prefix(**argv, "id")) {
- unsigned int id;
- char *endptr;
- NEXT_ARGP();
- id = strtoul(**argv, &endptr, 0);
- if (*endptr) {
- p_err("can't parse %s as ID", **argv);
- return -1;
- }
- NEXT_ARGP();
- fd = bpf_link_get_fd_by_id(id);
- if (fd < 0)
- p_err("failed to get link with ID %u: %s", id, strerror(errno));
- return fd;
- } else if (is_prefix(**argv, "pinned")) {
- char *path;
- NEXT_ARGP();
- path = **argv;
- NEXT_ARGP();
- return open_obj_pinned_any(path, BPF_OBJ_LINK, NULL);
- }
- p_err("expected 'id' or 'pinned', got: '%s'?", **argv);
- return -1;
- }
- static void
- show_link_header_json(struct bpf_link_info *info, json_writer_t *wtr)
- {
- const char *link_type_str;
- jsonw_uint_field(wtr, "id", info->id);
- link_type_str = libbpf_bpf_link_type_str(info->type);
- if (link_type_str)
- jsonw_string_field(wtr, "type", link_type_str);
- else
- jsonw_uint_field(wtr, "type", info->type);
- jsonw_uint_field(json_wtr, "prog_id", info->prog_id);
- }
- static void show_link_attach_type_json(__u32 attach_type, json_writer_t *wtr)
- {
- const char *attach_type_str;
- attach_type_str = libbpf_bpf_attach_type_str(attach_type);
- if (attach_type_str)
- jsonw_string_field(wtr, "attach_type", attach_type_str);
- else
- jsonw_uint_field(wtr, "attach_type", attach_type);
- }
- static void show_link_ifindex_json(__u32 ifindex, json_writer_t *wtr)
- {
- char devname[IF_NAMESIZE] = "(unknown)";
- if (ifindex)
- if_indextoname(ifindex, devname);
- else
- snprintf(devname, sizeof(devname), "(detached)");
- jsonw_string_field(wtr, "devname", devname);
- jsonw_uint_field(wtr, "ifindex", ifindex);
- }
- static bool is_iter_map_target(const char *target_name)
- {
- return strcmp(target_name, "bpf_map_elem") == 0 ||
- strcmp(target_name, "bpf_sk_storage_map") == 0;
- }
- static bool is_iter_cgroup_target(const char *target_name)
- {
- return strcmp(target_name, "cgroup") == 0;
- }
- static const char *cgroup_order_string(__u32 order)
- {
- switch (order) {
- case BPF_CGROUP_ITER_ORDER_UNSPEC:
- return "order_unspec";
- case BPF_CGROUP_ITER_SELF_ONLY:
- return "self_only";
- case BPF_CGROUP_ITER_DESCENDANTS_PRE:
- return "descendants_pre";
- case BPF_CGROUP_ITER_DESCENDANTS_POST:
- return "descendants_post";
- case BPF_CGROUP_ITER_ANCESTORS_UP:
- return "ancestors_up";
- default: /* won't happen */
- return "unknown";
- }
- }
- static bool is_iter_task_target(const char *target_name)
- {
- return strcmp(target_name, "task") == 0 ||
- strcmp(target_name, "task_file") == 0 ||
- strcmp(target_name, "task_vma") == 0;
- }
- static void show_iter_json(struct bpf_link_info *info, json_writer_t *wtr)
- {
- const char *target_name = u64_to_ptr(info->iter.target_name);
- jsonw_string_field(wtr, "target_name", target_name);
- if (is_iter_map_target(target_name))
- jsonw_uint_field(wtr, "map_id", info->iter.map.map_id);
- else if (is_iter_task_target(target_name)) {
- if (info->iter.task.tid)
- jsonw_uint_field(wtr, "tid", info->iter.task.tid);
- else if (info->iter.task.pid)
- jsonw_uint_field(wtr, "pid", info->iter.task.pid);
- }
- if (is_iter_cgroup_target(target_name)) {
- jsonw_lluint_field(wtr, "cgroup_id", info->iter.cgroup.cgroup_id);
- jsonw_string_field(wtr, "order",
- cgroup_order_string(info->iter.cgroup.order));
- }
- }
- void netfilter_dump_json(const struct bpf_link_info *info, json_writer_t *wtr)
- {
- jsonw_uint_field(json_wtr, "pf",
- info->netfilter.pf);
- jsonw_uint_field(json_wtr, "hook",
- info->netfilter.hooknum);
- jsonw_int_field(json_wtr, "prio",
- info->netfilter.priority);
- jsonw_uint_field(json_wtr, "flags",
- info->netfilter.flags);
- }
- static int get_prog_info(int prog_id, struct bpf_prog_info *info)
- {
- __u32 len = sizeof(*info);
- int err, prog_fd;
- prog_fd = bpf_prog_get_fd_by_id(prog_id);
- if (prog_fd < 0)
- return prog_fd;
- memset(info, 0, sizeof(*info));
- err = bpf_prog_get_info_by_fd(prog_fd, info, &len);
- if (err)
- p_err("can't get prog info: %s", strerror(errno));
- close(prog_fd);
- return err;
- }
- struct addr_cookie {
- __u64 addr;
- __u64 cookie;
- };
- static int cmp_addr_cookie(const void *A, const void *B)
- {
- const struct addr_cookie *a = A, *b = B;
- if (a->addr == b->addr)
- return 0;
- return a->addr < b->addr ? -1 : 1;
- }
- static struct addr_cookie *
- get_addr_cookie_array(__u64 *addrs, __u64 *cookies, __u32 count)
- {
- struct addr_cookie *data;
- __u32 i;
- data = calloc(count, sizeof(data[0]));
- if (!data) {
- p_err("mem alloc failed");
- return NULL;
- }
- for (i = 0; i < count; i++) {
- data[i].addr = addrs[i];
- data[i].cookie = cookies[i];
- }
- qsort(data, count, sizeof(data[0]), cmp_addr_cookie);
- return data;
- }
- static bool is_x86_ibt_enabled(void)
- {
- #if defined(__x86_64__)
- struct kernel_config_option options[] = {
- { "CONFIG_X86_KERNEL_IBT", },
- };
- char *values[ARRAY_SIZE(options)] = { };
- bool ret;
- if (read_kernel_config(options, ARRAY_SIZE(options), values, NULL))
- return false;
- ret = !!values[0];
- free(values[0]);
- return ret;
- #else
- return false;
- #endif
- }
- static bool
- symbol_matches_target(__u64 sym_addr, __u64 target_addr, bool is_ibt_enabled)
- {
- if (sym_addr == target_addr)
- return true;
- /*
- * On x86_64 architectures with CET (Control-flow Enforcement Technology),
- * function entry points have a 4-byte 'endbr' instruction prefix.
- * This causes kprobe hooks to target the address *after* 'endbr'
- * (symbol address + 4), preserving the CET instruction.
- * Here we check if the symbol address matches the hook target address
- * minus 4, indicating a CET-enabled function entry point.
- */
- if (is_ibt_enabled && sym_addr == target_addr - 4)
- return true;
- return false;
- }
- static void
- show_kprobe_multi_json(struct bpf_link_info *info, json_writer_t *wtr)
- {
- struct addr_cookie *data;
- __u32 i, j = 0;
- bool is_ibt_enabled;
- jsonw_bool_field(json_wtr, "retprobe",
- info->kprobe_multi.flags & BPF_F_KPROBE_MULTI_RETURN);
- jsonw_uint_field(json_wtr, "func_cnt", info->kprobe_multi.count);
- jsonw_uint_field(json_wtr, "missed", info->kprobe_multi.missed);
- jsonw_name(json_wtr, "funcs");
- jsonw_start_array(json_wtr);
- data = get_addr_cookie_array(u64_to_ptr(info->kprobe_multi.addrs),
- u64_to_ptr(info->kprobe_multi.cookies),
- info->kprobe_multi.count);
- if (!data)
- return;
- /* Load it once for all. */
- if (!dd.sym_count)
- kernel_syms_load(&dd);
- if (!dd.sym_count)
- goto error;
- is_ibt_enabled = is_x86_ibt_enabled();
- for (i = 0; i < dd.sym_count; i++) {
- if (!symbol_matches_target(dd.sym_mapping[i].address,
- data[j].addr, is_ibt_enabled))
- continue;
- jsonw_start_object(json_wtr);
- jsonw_uint_field(json_wtr, "addr", (unsigned long)data[j].addr);
- jsonw_string_field(json_wtr, "func", dd.sym_mapping[i].name);
- /* Print null if it is vmlinux */
- if (dd.sym_mapping[i].module[0] == '\0') {
- jsonw_name(json_wtr, "module");
- jsonw_null(json_wtr);
- } else {
- jsonw_string_field(json_wtr, "module", dd.sym_mapping[i].module);
- }
- jsonw_uint_field(json_wtr, "cookie", data[j].cookie);
- jsonw_end_object(json_wtr);
- if (j++ == info->kprobe_multi.count)
- break;
- }
- jsonw_end_array(json_wtr);
- error:
- free(data);
- }
- static __u64 *u64_to_arr(__u64 val)
- {
- return (__u64 *) u64_to_ptr(val);
- }
- static void
- show_uprobe_multi_json(struct bpf_link_info *info, json_writer_t *wtr)
- {
- __u32 i;
- jsonw_bool_field(json_wtr, "retprobe",
- info->uprobe_multi.flags & BPF_F_UPROBE_MULTI_RETURN);
- jsonw_string_field(json_wtr, "path", (char *) u64_to_ptr(info->uprobe_multi.path));
- jsonw_uint_field(json_wtr, "func_cnt", info->uprobe_multi.count);
- jsonw_int_field(json_wtr, "pid", (int) info->uprobe_multi.pid);
- jsonw_name(json_wtr, "funcs");
- jsonw_start_array(json_wtr);
- for (i = 0; i < info->uprobe_multi.count; i++) {
- jsonw_start_object(json_wtr);
- jsonw_uint_field(json_wtr, "offset",
- u64_to_arr(info->uprobe_multi.offsets)[i]);
- jsonw_uint_field(json_wtr, "ref_ctr_offset",
- u64_to_arr(info->uprobe_multi.ref_ctr_offsets)[i]);
- jsonw_uint_field(json_wtr, "cookie",
- u64_to_arr(info->uprobe_multi.cookies)[i]);
- jsonw_end_object(json_wtr);
- }
- jsonw_end_array(json_wtr);
- }
- static void
- show_perf_event_kprobe_json(struct bpf_link_info *info, json_writer_t *wtr)
- {
- jsonw_bool_field(wtr, "retprobe", info->perf_event.type == BPF_PERF_EVENT_KRETPROBE);
- jsonw_uint_field(wtr, "addr", info->perf_event.kprobe.addr);
- jsonw_string_field(wtr, "func",
- u64_to_ptr(info->perf_event.kprobe.func_name));
- jsonw_uint_field(wtr, "offset", info->perf_event.kprobe.offset);
- jsonw_uint_field(wtr, "missed", info->perf_event.kprobe.missed);
- jsonw_uint_field(wtr, "cookie", info->perf_event.kprobe.cookie);
- }
- static void
- show_perf_event_uprobe_json(struct bpf_link_info *info, json_writer_t *wtr)
- {
- jsonw_bool_field(wtr, "retprobe", info->perf_event.type == BPF_PERF_EVENT_URETPROBE);
- jsonw_string_field(wtr, "file",
- u64_to_ptr(info->perf_event.uprobe.file_name));
- jsonw_uint_field(wtr, "offset", info->perf_event.uprobe.offset);
- jsonw_uint_field(wtr, "cookie", info->perf_event.uprobe.cookie);
- jsonw_uint_field(wtr, "ref_ctr_offset", info->perf_event.uprobe.ref_ctr_offset);
- }
- static void
- show_perf_event_tracepoint_json(struct bpf_link_info *info, json_writer_t *wtr)
- {
- jsonw_string_field(wtr, "tracepoint",
- u64_to_ptr(info->perf_event.tracepoint.tp_name));
- jsonw_uint_field(wtr, "cookie", info->perf_event.tracepoint.cookie);
- }
- static char *perf_config_hw_cache_str(__u64 config)
- {
- const char *hw_cache, *result, *op;
- char *str = malloc(PERF_HW_CACHE_LEN);
- if (!str) {
- p_err("mem alloc failed");
- return NULL;
- }
- hw_cache = perf_event_name(evsel__hw_cache, config & 0xff);
- if (hw_cache)
- snprintf(str, PERF_HW_CACHE_LEN, "%s-", hw_cache);
- else
- snprintf(str, PERF_HW_CACHE_LEN, "%llu-", config & 0xff);
- op = perf_event_name(evsel__hw_cache_op, (config >> 8) & 0xff);
- if (op)
- snprintf(str + strlen(str), PERF_HW_CACHE_LEN - strlen(str),
- "%s-", op);
- else
- snprintf(str + strlen(str), PERF_HW_CACHE_LEN - strlen(str),
- "%llu-", (config >> 8) & 0xff);
- result = perf_event_name(evsel__hw_cache_result, config >> 16);
- if (result)
- snprintf(str + strlen(str), PERF_HW_CACHE_LEN - strlen(str),
- "%s", result);
- else
- snprintf(str + strlen(str), PERF_HW_CACHE_LEN - strlen(str),
- "%llu", config >> 16);
- return str;
- }
- static const char *perf_config_str(__u32 type, __u64 config)
- {
- const char *perf_config;
- switch (type) {
- case PERF_TYPE_HARDWARE:
- perf_config = perf_event_name(event_symbols_hw, config);
- break;
- case PERF_TYPE_SOFTWARE:
- perf_config = perf_event_name(event_symbols_sw, config);
- break;
- case PERF_TYPE_HW_CACHE:
- perf_config = perf_config_hw_cache_str(config);
- break;
- default:
- perf_config = NULL;
- break;
- }
- return perf_config;
- }
- static void
- show_perf_event_event_json(struct bpf_link_info *info, json_writer_t *wtr)
- {
- __u64 config = info->perf_event.event.config;
- __u32 type = info->perf_event.event.type;
- const char *perf_type, *perf_config;
- perf_type = perf_event_name(perf_type_name, type);
- if (perf_type)
- jsonw_string_field(wtr, "event_type", perf_type);
- else
- jsonw_uint_field(wtr, "event_type", type);
- perf_config = perf_config_str(type, config);
- if (perf_config)
- jsonw_string_field(wtr, "event_config", perf_config);
- else
- jsonw_uint_field(wtr, "event_config", config);
- jsonw_uint_field(wtr, "cookie", info->perf_event.event.cookie);
- if (type == PERF_TYPE_HW_CACHE && perf_config)
- free((void *)perf_config);
- }
- static int show_link_close_json(int fd, struct bpf_link_info *info)
- {
- struct bpf_prog_info prog_info;
- const char *prog_type_str;
- int err;
- jsonw_start_object(json_wtr);
- show_link_header_json(info, json_wtr);
- switch (info->type) {
- case BPF_LINK_TYPE_RAW_TRACEPOINT:
- jsonw_string_field(json_wtr, "tp_name",
- u64_to_ptr(info->raw_tracepoint.tp_name));
- jsonw_uint_field(json_wtr, "cookie", info->raw_tracepoint.cookie);
- break;
- case BPF_LINK_TYPE_TRACING:
- err = get_prog_info(info->prog_id, &prog_info);
- if (err)
- return err;
- prog_type_str = libbpf_bpf_prog_type_str(prog_info.type);
- /* libbpf will return NULL for variants unknown to it. */
- if (prog_type_str)
- jsonw_string_field(json_wtr, "prog_type", prog_type_str);
- else
- jsonw_uint_field(json_wtr, "prog_type", prog_info.type);
- show_link_attach_type_json(info->tracing.attach_type,
- json_wtr);
- jsonw_uint_field(json_wtr, "target_obj_id", info->tracing.target_obj_id);
- jsonw_uint_field(json_wtr, "target_btf_id", info->tracing.target_btf_id);
- jsonw_uint_field(json_wtr, "cookie", info->tracing.cookie);
- break;
- case BPF_LINK_TYPE_CGROUP:
- jsonw_lluint_field(json_wtr, "cgroup_id",
- info->cgroup.cgroup_id);
- show_link_attach_type_json(info->cgroup.attach_type, json_wtr);
- break;
- case BPF_LINK_TYPE_ITER:
- show_iter_json(info, json_wtr);
- break;
- case BPF_LINK_TYPE_NETNS:
- jsonw_uint_field(json_wtr, "netns_ino",
- info->netns.netns_ino);
- show_link_attach_type_json(info->netns.attach_type, json_wtr);
- break;
- case BPF_LINK_TYPE_NETFILTER:
- netfilter_dump_json(info, json_wtr);
- break;
- case BPF_LINK_TYPE_TCX:
- show_link_ifindex_json(info->tcx.ifindex, json_wtr);
- show_link_attach_type_json(info->tcx.attach_type, json_wtr);
- break;
- case BPF_LINK_TYPE_NETKIT:
- show_link_ifindex_json(info->netkit.ifindex, json_wtr);
- show_link_attach_type_json(info->netkit.attach_type, json_wtr);
- break;
- case BPF_LINK_TYPE_SOCKMAP:
- jsonw_uint_field(json_wtr, "map_id", info->sockmap.map_id);
- show_link_attach_type_json(info->sockmap.attach_type, json_wtr);
- break;
- case BPF_LINK_TYPE_XDP:
- show_link_ifindex_json(info->xdp.ifindex, json_wtr);
- break;
- case BPF_LINK_TYPE_STRUCT_OPS:
- jsonw_uint_field(json_wtr, "map_id",
- info->struct_ops.map_id);
- break;
- case BPF_LINK_TYPE_KPROBE_MULTI:
- show_kprobe_multi_json(info, json_wtr);
- break;
- case BPF_LINK_TYPE_UPROBE_MULTI:
- show_uprobe_multi_json(info, json_wtr);
- break;
- case BPF_LINK_TYPE_PERF_EVENT:
- switch (info->perf_event.type) {
- case BPF_PERF_EVENT_EVENT:
- show_perf_event_event_json(info, json_wtr);
- break;
- case BPF_PERF_EVENT_TRACEPOINT:
- show_perf_event_tracepoint_json(info, json_wtr);
- break;
- case BPF_PERF_EVENT_KPROBE:
- case BPF_PERF_EVENT_KRETPROBE:
- show_perf_event_kprobe_json(info, json_wtr);
- break;
- case BPF_PERF_EVENT_UPROBE:
- case BPF_PERF_EVENT_URETPROBE:
- show_perf_event_uprobe_json(info, json_wtr);
- break;
- default:
- break;
- }
- break;
- default:
- break;
- }
- if (!hashmap__empty(link_table)) {
- struct hashmap_entry *entry;
- jsonw_name(json_wtr, "pinned");
- jsonw_start_array(json_wtr);
- hashmap__for_each_key_entry(link_table, entry, info->id)
- jsonw_string(json_wtr, entry->pvalue);
- jsonw_end_array(json_wtr);
- }
- emit_obj_refs_json(refs_table, info->id, json_wtr);
- jsonw_end_object(json_wtr);
- return 0;
- }
- static void show_link_header_plain(struct bpf_link_info *info)
- {
- const char *link_type_str;
- printf("%u: ", info->id);
- link_type_str = libbpf_bpf_link_type_str(info->type);
- if (link_type_str)
- printf("%s ", link_type_str);
- else
- printf("type %u ", info->type);
- if (info->type == BPF_LINK_TYPE_STRUCT_OPS)
- printf("map %u ", info->struct_ops.map_id);
- else
- printf("prog %u ", info->prog_id);
- }
- static void show_link_attach_type_plain(__u32 attach_type)
- {
- const char *attach_type_str;
- attach_type_str = libbpf_bpf_attach_type_str(attach_type);
- if (attach_type_str)
- printf("attach_type %s ", attach_type_str);
- else
- printf("attach_type %u ", attach_type);
- }
- static void show_link_ifindex_plain(__u32 ifindex)
- {
- char devname[IF_NAMESIZE * 2] = "(unknown)";
- char tmpname[IF_NAMESIZE];
- char *ret = NULL;
- if (ifindex)
- ret = if_indextoname(ifindex, tmpname);
- else
- snprintf(devname, sizeof(devname), "(detached)");
- if (ret)
- snprintf(devname, sizeof(devname), "%s(%u)",
- tmpname, ifindex);
- printf("ifindex %s ", devname);
- }
- static void show_iter_plain(struct bpf_link_info *info)
- {
- const char *target_name = u64_to_ptr(info->iter.target_name);
- printf("target_name %s ", target_name);
- if (is_iter_map_target(target_name))
- printf("map_id %u ", info->iter.map.map_id);
- else if (is_iter_task_target(target_name)) {
- if (info->iter.task.tid)
- printf("tid %u ", info->iter.task.tid);
- else if (info->iter.task.pid)
- printf("pid %u ", info->iter.task.pid);
- }
- if (is_iter_cgroup_target(target_name)) {
- printf("cgroup_id %llu ", info->iter.cgroup.cgroup_id);
- printf("order %s ",
- cgroup_order_string(info->iter.cgroup.order));
- }
- }
- static const char * const pf2name[] = {
- [NFPROTO_INET] = "inet",
- [NFPROTO_IPV4] = "ip",
- [NFPROTO_ARP] = "arp",
- [NFPROTO_NETDEV] = "netdev",
- [NFPROTO_BRIDGE] = "bridge",
- [NFPROTO_IPV6] = "ip6",
- };
- static const char * const inethook2name[] = {
- [NF_INET_PRE_ROUTING] = "prerouting",
- [NF_INET_LOCAL_IN] = "input",
- [NF_INET_FORWARD] = "forward",
- [NF_INET_LOCAL_OUT] = "output",
- [NF_INET_POST_ROUTING] = "postrouting",
- };
- static const char * const arphook2name[] = {
- [NF_ARP_IN] = "input",
- [NF_ARP_OUT] = "output",
- };
- void netfilter_dump_plain(const struct bpf_link_info *info)
- {
- const char *hookname = NULL, *pfname = NULL;
- unsigned int hook = info->netfilter.hooknum;
- unsigned int pf = info->netfilter.pf;
- if (pf < ARRAY_SIZE(pf2name))
- pfname = pf2name[pf];
- switch (pf) {
- case NFPROTO_BRIDGE: /* bridge shares numbers with enum nf_inet_hooks */
- case NFPROTO_IPV4:
- case NFPROTO_IPV6:
- case NFPROTO_INET:
- if (hook < ARRAY_SIZE(inethook2name))
- hookname = inethook2name[hook];
- break;
- case NFPROTO_ARP:
- if (hook < ARRAY_SIZE(arphook2name))
- hookname = arphook2name[hook];
- default:
- break;
- }
- if (pfname)
- printf("\n\t%s", pfname);
- else
- printf("\n\tpf: %u", pf);
- if (hookname)
- printf(" %s", hookname);
- else
- printf(", hook %u,", hook);
- printf(" prio %d", info->netfilter.priority);
- if (info->netfilter.flags)
- printf(" flags 0x%x", info->netfilter.flags);
- }
- static void show_kprobe_multi_plain(struct bpf_link_info *info)
- {
- struct addr_cookie *data;
- __u32 i, j = 0;
- bool is_ibt_enabled;
- if (!info->kprobe_multi.count)
- return;
- if (info->kprobe_multi.flags & BPF_F_KPROBE_MULTI_RETURN)
- printf("\n\tkretprobe.multi ");
- else
- printf("\n\tkprobe.multi ");
- printf("func_cnt %u ", info->kprobe_multi.count);
- if (info->kprobe_multi.missed)
- printf("missed %llu ", info->kprobe_multi.missed);
- data = get_addr_cookie_array(u64_to_ptr(info->kprobe_multi.addrs),
- u64_to_ptr(info->kprobe_multi.cookies),
- info->kprobe_multi.count);
- if (!data)
- return;
- /* Load it once for all. */
- if (!dd.sym_count)
- kernel_syms_load(&dd);
- if (!dd.sym_count)
- goto error;
- is_ibt_enabled = is_x86_ibt_enabled();
- printf("\n\t%-16s %-16s %s", "addr", "cookie", "func [module]");
- for (i = 0; i < dd.sym_count; i++) {
- if (!symbol_matches_target(dd.sym_mapping[i].address,
- data[j].addr, is_ibt_enabled))
- continue;
- printf("\n\t%016lx %-16llx %s",
- (unsigned long)data[j].addr, data[j].cookie, dd.sym_mapping[i].name);
- if (dd.sym_mapping[i].module[0] != '\0')
- printf(" [%s] ", dd.sym_mapping[i].module);
- else
- printf(" ");
- if (j++ == info->kprobe_multi.count)
- break;
- }
- error:
- free(data);
- }
- static void show_uprobe_multi_plain(struct bpf_link_info *info)
- {
- __u32 i;
- if (!info->uprobe_multi.count)
- return;
- if (info->uprobe_multi.flags & BPF_F_UPROBE_MULTI_RETURN)
- printf("\n\turetprobe.multi ");
- else
- printf("\n\tuprobe.multi ");
- printf("path %s ", (char *) u64_to_ptr(info->uprobe_multi.path));
- printf("func_cnt %u ", info->uprobe_multi.count);
- if (info->uprobe_multi.pid)
- printf("pid %u ", info->uprobe_multi.pid);
- printf("\n\t%-16s %-16s %-16s", "offset", "ref_ctr_offset", "cookies");
- for (i = 0; i < info->uprobe_multi.count; i++) {
- printf("\n\t0x%-16llx 0x%-16llx 0x%-16llx",
- u64_to_arr(info->uprobe_multi.offsets)[i],
- u64_to_arr(info->uprobe_multi.ref_ctr_offsets)[i],
- u64_to_arr(info->uprobe_multi.cookies)[i]);
- }
- }
- static void show_perf_event_kprobe_plain(struct bpf_link_info *info)
- {
- const char *buf;
- buf = u64_to_ptr(info->perf_event.kprobe.func_name);
- if (buf[0] == '\0' && !info->perf_event.kprobe.addr)
- return;
- if (info->perf_event.type == BPF_PERF_EVENT_KRETPROBE)
- printf("\n\tkretprobe ");
- else
- printf("\n\tkprobe ");
- if (info->perf_event.kprobe.addr)
- printf("%llx ", info->perf_event.kprobe.addr);
- printf("%s", buf);
- if (info->perf_event.kprobe.offset)
- printf("+%#x", info->perf_event.kprobe.offset);
- if (info->perf_event.kprobe.missed)
- printf(" missed %llu", info->perf_event.kprobe.missed);
- if (info->perf_event.kprobe.cookie)
- printf(" cookie %llu", info->perf_event.kprobe.cookie);
- printf(" ");
- }
- static void show_perf_event_uprobe_plain(struct bpf_link_info *info)
- {
- const char *buf;
- buf = u64_to_ptr(info->perf_event.uprobe.file_name);
- if (buf[0] == '\0')
- return;
- if (info->perf_event.type == BPF_PERF_EVENT_URETPROBE)
- printf("\n\turetprobe ");
- else
- printf("\n\tuprobe ");
- printf("%s+%#x ", buf, info->perf_event.uprobe.offset);
- if (info->perf_event.uprobe.cookie)
- printf("cookie %llu ", info->perf_event.uprobe.cookie);
- if (info->perf_event.uprobe.ref_ctr_offset)
- printf("ref_ctr_offset 0x%llx ", info->perf_event.uprobe.ref_ctr_offset);
- }
- static void show_perf_event_tracepoint_plain(struct bpf_link_info *info)
- {
- const char *buf;
- buf = u64_to_ptr(info->perf_event.tracepoint.tp_name);
- if (buf[0] == '\0')
- return;
- printf("\n\ttracepoint %s ", buf);
- if (info->perf_event.tracepoint.cookie)
- printf("cookie %llu ", info->perf_event.tracepoint.cookie);
- }
- static void show_perf_event_event_plain(struct bpf_link_info *info)
- {
- __u64 config = info->perf_event.event.config;
- __u32 type = info->perf_event.event.type;
- const char *perf_type, *perf_config;
- printf("\n\tevent ");
- perf_type = perf_event_name(perf_type_name, type);
- if (perf_type)
- printf("%s:", perf_type);
- else
- printf("%u :", type);
- perf_config = perf_config_str(type, config);
- if (perf_config)
- printf("%s ", perf_config);
- else
- printf("%llu ", config);
- if (info->perf_event.event.cookie)
- printf("cookie %llu ", info->perf_event.event.cookie);
- if (type == PERF_TYPE_HW_CACHE && perf_config)
- free((void *)perf_config);
- }
- static int show_link_close_plain(int fd, struct bpf_link_info *info)
- {
- struct bpf_prog_info prog_info;
- const char *prog_type_str;
- int err;
- show_link_header_plain(info);
- switch (info->type) {
- case BPF_LINK_TYPE_RAW_TRACEPOINT:
- printf("\n\ttp '%s' ",
- (const char *)u64_to_ptr(info->raw_tracepoint.tp_name));
- if (info->raw_tracepoint.cookie)
- printf("cookie %llu ", info->raw_tracepoint.cookie);
- break;
- case BPF_LINK_TYPE_TRACING:
- err = get_prog_info(info->prog_id, &prog_info);
- if (err)
- return err;
- prog_type_str = libbpf_bpf_prog_type_str(prog_info.type);
- /* libbpf will return NULL for variants unknown to it. */
- if (prog_type_str)
- printf("\n\tprog_type %s ", prog_type_str);
- else
- printf("\n\tprog_type %u ", prog_info.type);
- show_link_attach_type_plain(info->tracing.attach_type);
- if (info->tracing.target_obj_id || info->tracing.target_btf_id)
- printf("\n\ttarget_obj_id %u target_btf_id %u ",
- info->tracing.target_obj_id,
- info->tracing.target_btf_id);
- if (info->tracing.cookie)
- printf("\n\tcookie %llu ", info->tracing.cookie);
- break;
- case BPF_LINK_TYPE_CGROUP:
- printf("\n\tcgroup_id %zu ", (size_t)info->cgroup.cgroup_id);
- show_link_attach_type_plain(info->cgroup.attach_type);
- break;
- case BPF_LINK_TYPE_ITER:
- show_iter_plain(info);
- break;
- case BPF_LINK_TYPE_NETNS:
- printf("\n\tnetns_ino %u ", info->netns.netns_ino);
- show_link_attach_type_plain(info->netns.attach_type);
- break;
- case BPF_LINK_TYPE_NETFILTER:
- netfilter_dump_plain(info);
- break;
- case BPF_LINK_TYPE_TCX:
- printf("\n\t");
- show_link_ifindex_plain(info->tcx.ifindex);
- show_link_attach_type_plain(info->tcx.attach_type);
- break;
- case BPF_LINK_TYPE_NETKIT:
- printf("\n\t");
- show_link_ifindex_plain(info->netkit.ifindex);
- show_link_attach_type_plain(info->netkit.attach_type);
- break;
- case BPF_LINK_TYPE_SOCKMAP:
- printf("\n\t");
- printf("map_id %u ", info->sockmap.map_id);
- show_link_attach_type_plain(info->sockmap.attach_type);
- break;
- case BPF_LINK_TYPE_XDP:
- printf("\n\t");
- show_link_ifindex_plain(info->xdp.ifindex);
- break;
- case BPF_LINK_TYPE_KPROBE_MULTI:
- show_kprobe_multi_plain(info);
- break;
- case BPF_LINK_TYPE_UPROBE_MULTI:
- show_uprobe_multi_plain(info);
- break;
- case BPF_LINK_TYPE_PERF_EVENT:
- switch (info->perf_event.type) {
- case BPF_PERF_EVENT_EVENT:
- show_perf_event_event_plain(info);
- break;
- case BPF_PERF_EVENT_TRACEPOINT:
- show_perf_event_tracepoint_plain(info);
- break;
- case BPF_PERF_EVENT_KPROBE:
- case BPF_PERF_EVENT_KRETPROBE:
- show_perf_event_kprobe_plain(info);
- break;
- case BPF_PERF_EVENT_UPROBE:
- case BPF_PERF_EVENT_URETPROBE:
- show_perf_event_uprobe_plain(info);
- break;
- default:
- break;
- }
- break;
- default:
- break;
- }
- if (!hashmap__empty(link_table)) {
- struct hashmap_entry *entry;
- hashmap__for_each_key_entry(link_table, entry, info->id)
- printf("\n\tpinned %s", (char *)entry->pvalue);
- }
- emit_obj_refs_plain(refs_table, info->id, "\n\tpids ");
- printf("\n");
- return 0;
- }
- static int do_show_link(int fd)
- {
- __u64 *ref_ctr_offsets = NULL, *offsets = NULL, *cookies = NULL;
- struct bpf_link_info info;
- __u32 len = sizeof(info);
- char path_buf[PATH_MAX];
- __u64 *addrs = NULL;
- char buf[PATH_MAX];
- int count;
- int err;
- memset(&info, 0, sizeof(info));
- buf[0] = '\0';
- again:
- err = bpf_link_get_info_by_fd(fd, &info, &len);
- if (err) {
- p_err("can't get link info: %s",
- strerror(errno));
- close(fd);
- return err;
- }
- if (info.type == BPF_LINK_TYPE_RAW_TRACEPOINT &&
- !info.raw_tracepoint.tp_name) {
- info.raw_tracepoint.tp_name = ptr_to_u64(&buf);
- info.raw_tracepoint.tp_name_len = sizeof(buf);
- goto again;
- }
- if (info.type == BPF_LINK_TYPE_ITER &&
- !info.iter.target_name) {
- info.iter.target_name = ptr_to_u64(&buf);
- info.iter.target_name_len = sizeof(buf);
- goto again;
- }
- if (info.type == BPF_LINK_TYPE_KPROBE_MULTI &&
- !info.kprobe_multi.addrs) {
- count = info.kprobe_multi.count;
- if (count) {
- addrs = calloc(count, sizeof(__u64));
- if (!addrs) {
- p_err("mem alloc failed");
- close(fd);
- return -ENOMEM;
- }
- info.kprobe_multi.addrs = ptr_to_u64(addrs);
- cookies = calloc(count, sizeof(__u64));
- if (!cookies) {
- p_err("mem alloc failed");
- free(addrs);
- close(fd);
- return -ENOMEM;
- }
- info.kprobe_multi.cookies = ptr_to_u64(cookies);
- goto again;
- }
- }
- if (info.type == BPF_LINK_TYPE_UPROBE_MULTI &&
- !info.uprobe_multi.offsets) {
- count = info.uprobe_multi.count;
- if (count) {
- offsets = calloc(count, sizeof(__u64));
- if (!offsets) {
- p_err("mem alloc failed");
- close(fd);
- return -ENOMEM;
- }
- info.uprobe_multi.offsets = ptr_to_u64(offsets);
- ref_ctr_offsets = calloc(count, sizeof(__u64));
- if (!ref_ctr_offsets) {
- p_err("mem alloc failed");
- free(offsets);
- close(fd);
- return -ENOMEM;
- }
- info.uprobe_multi.ref_ctr_offsets = ptr_to_u64(ref_ctr_offsets);
- cookies = calloc(count, sizeof(__u64));
- if (!cookies) {
- p_err("mem alloc failed");
- free(ref_ctr_offsets);
- free(offsets);
- close(fd);
- return -ENOMEM;
- }
- info.uprobe_multi.cookies = ptr_to_u64(cookies);
- info.uprobe_multi.path = ptr_to_u64(path_buf);
- info.uprobe_multi.path_size = sizeof(path_buf);
- goto again;
- }
- }
- if (info.type == BPF_LINK_TYPE_PERF_EVENT) {
- switch (info.perf_event.type) {
- case BPF_PERF_EVENT_TRACEPOINT:
- if (!info.perf_event.tracepoint.tp_name) {
- info.perf_event.tracepoint.tp_name = ptr_to_u64(&buf);
- info.perf_event.tracepoint.name_len = sizeof(buf);
- goto again;
- }
- break;
- case BPF_PERF_EVENT_KPROBE:
- case BPF_PERF_EVENT_KRETPROBE:
- if (!info.perf_event.kprobe.func_name) {
- info.perf_event.kprobe.func_name = ptr_to_u64(&buf);
- info.perf_event.kprobe.name_len = sizeof(buf);
- goto again;
- }
- break;
- case BPF_PERF_EVENT_UPROBE:
- case BPF_PERF_EVENT_URETPROBE:
- if (!info.perf_event.uprobe.file_name) {
- info.perf_event.uprobe.file_name = ptr_to_u64(&buf);
- info.perf_event.uprobe.name_len = sizeof(buf);
- goto again;
- }
- break;
- default:
- break;
- }
- }
- if (json_output)
- show_link_close_json(fd, &info);
- else
- show_link_close_plain(fd, &info);
- free(ref_ctr_offsets);
- free(cookies);
- free(offsets);
- free(addrs);
- close(fd);
- return 0;
- }
- static int do_show(int argc, char **argv)
- {
- __u32 id = 0;
- int err, fd;
- if (show_pinned) {
- link_table = hashmap__new(hash_fn_for_key_as_id,
- equal_fn_for_key_as_id, NULL);
- if (IS_ERR(link_table)) {
- p_err("failed to create hashmap for pinned paths");
- return -1;
- }
- build_pinned_obj_table(link_table, BPF_OBJ_LINK);
- }
- build_obj_refs_table(&refs_table, BPF_OBJ_LINK);
- if (argc == 2) {
- fd = link_parse_fd(&argc, &argv);
- if (fd < 0)
- return fd;
- do_show_link(fd);
- goto out;
- }
- if (argc)
- return BAD_ARG();
- if (json_output)
- jsonw_start_array(json_wtr);
- while (true) {
- err = bpf_link_get_next_id(id, &id);
- if (err) {
- if (errno == ENOENT)
- break;
- p_err("can't get next link: %s%s", strerror(errno),
- errno == EINVAL ? " -- kernel too old?" : "");
- break;
- }
- fd = bpf_link_get_fd_by_id(id);
- if (fd < 0) {
- if (errno == ENOENT)
- continue;
- p_err("can't get link by id (%u): %s",
- id, strerror(errno));
- break;
- }
- err = do_show_link(fd);
- if (err)
- break;
- }
- if (json_output)
- jsonw_end_array(json_wtr);
- delete_obj_refs_table(refs_table);
- if (show_pinned)
- delete_pinned_obj_table(link_table);
- out:
- if (dd.sym_count)
- kernel_syms_destroy(&dd);
- return errno == ENOENT ? 0 : -1;
- }
- static int do_pin(int argc, char **argv)
- {
- int err;
- err = do_pin_any(argc, argv, link_parse_fd);
- if (!err && json_output)
- jsonw_null(json_wtr);
- return err;
- }
- static int do_detach(int argc, char **argv)
- {
- int err, fd;
- if (argc != 2) {
- p_err("link specifier is invalid or missing\n");
- return 1;
- }
- fd = link_parse_fd(&argc, &argv);
- if (fd < 0)
- return 1;
- err = bpf_link_detach(fd);
- if (err)
- err = -errno;
- close(fd);
- if (err) {
- p_err("failed link detach: %s", strerror(-err));
- return 1;
- }
- if (json_output)
- jsonw_null(json_wtr);
- return 0;
- }
- static int do_help(int argc, char **argv)
- {
- if (json_output) {
- jsonw_null(json_wtr);
- return 0;
- }
- fprintf(stderr,
- "Usage: %1$s %2$s { show | list } [LINK]\n"
- " %1$s %2$s pin LINK FILE\n"
- " %1$s %2$s detach LINK\n"
- " %1$s %2$s help\n"
- "\n"
- " " HELP_SPEC_LINK "\n"
- " " HELP_SPEC_OPTIONS " |\n"
- " {-f|--bpffs} | {-n|--nomount} }\n"
- "",
- bin_name, argv[-2]);
- return 0;
- }
- static const struct cmd cmds[] = {
- { "show", do_show },
- { "list", do_show },
- { "help", do_help },
- { "pin", do_pin },
- { "detach", do_detach },
- { 0 }
- };
- int do_link(int argc, char **argv)
- {
- return cmd_select(cmds, argc, argv, do_help);
- }
|