Linux Audio

Check our new training course

Loading...
v6.2
   1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
   2/* Copyright (c) 2019 Netronome Systems, Inc. */
   3
   4#include <ctype.h>
   5#include <errno.h>
   6#include <fcntl.h>
   7#include <string.h>
   8#include <unistd.h>
   9#include <net/if.h>
  10#ifdef USE_LIBCAP
  11#include <sys/capability.h>
  12#endif
  13#include <sys/utsname.h>
  14#include <sys/vfs.h>
  15
  16#include <linux/filter.h>
  17#include <linux/limits.h>
  18
  19#include <bpf/bpf.h>
  20#include <bpf/libbpf.h>
  21#include <zlib.h>
  22
  23#include "main.h"
  24
  25#ifndef PROC_SUPER_MAGIC
  26# define PROC_SUPER_MAGIC	0x9fa0
  27#endif
  28
  29enum probe_component {
  30	COMPONENT_UNSPEC,
  31	COMPONENT_KERNEL,
  32	COMPONENT_DEVICE,
  33};
  34
  35#define BPF_HELPER_MAKE_ENTRY(name)	[BPF_FUNC_ ## name] = "bpf_" # name
  36static const char * const helper_name[] = {
  37	__BPF_FUNC_MAPPER(BPF_HELPER_MAKE_ENTRY)
  38};
  39
  40#undef BPF_HELPER_MAKE_ENTRY
  41
  42static bool full_mode;
  43#ifdef USE_LIBCAP
  44static bool run_as_unprivileged;
  45#endif
  46
  47/* Miscellaneous utility functions */
  48
  49static bool grep(const char *buffer, const char *pattern)
  50{
  51	return !!strstr(buffer, pattern);
  52}
  53
  54static bool check_procfs(void)
  55{
  56	struct statfs st_fs;
  57
  58	if (statfs("/proc", &st_fs) < 0)
  59		return false;
  60	if ((unsigned long)st_fs.f_type != PROC_SUPER_MAGIC)
  61		return false;
  62
  63	return true;
  64}
  65
  66static void uppercase(char *str, size_t len)
  67{
  68	size_t i;
  69
  70	for (i = 0; i < len && str[i] != '\0'; i++)
  71		str[i] = toupper(str[i]);
  72}
  73
  74/* Printing utility functions */
  75
  76static void
  77print_bool_feature(const char *feat_name, const char *plain_name,
  78		   const char *define_name, bool res, const char *define_prefix)
  79{
  80	if (json_output)
  81		jsonw_bool_field(json_wtr, feat_name, res);
  82	else if (define_prefix)
  83		printf("#define %s%sHAVE_%s\n", define_prefix,
  84		       res ? "" : "NO_", define_name);
  85	else
  86		printf("%s is %savailable\n", plain_name, res ? "" : "NOT ");
  87}
  88
  89static void print_kernel_option(const char *name, const char *value,
  90				const char *define_prefix)
  91{
  92	char *endptr;
  93	int res;
  94
 
 
  95	if (json_output) {
  96		if (!value) {
  97			jsonw_null_field(json_wtr, name);
  98			return;
  99		}
 100		errno = 0;
 101		res = strtol(value, &endptr, 0);
 102		if (!errno && *endptr == '\n')
 103			jsonw_int_field(json_wtr, name, res);
 104		else
 105			jsonw_string_field(json_wtr, name, value);
 106	} else if (define_prefix) {
 107		if (value)
 108			printf("#define %s%s %s\n", define_prefix,
 109			       name, value);
 110		else
 111			printf("/* %s%s is not set */\n", define_prefix, name);
 112	} else {
 113		if (value)
 114			printf("%s is set to %s\n", name, value);
 115		else
 116			printf("%s is not set\n", name);
 117	}
 118}
 119
 120static void
 121print_start_section(const char *json_title, const char *plain_title,
 122		    const char *define_comment, const char *define_prefix)
 123{
 124	if (json_output) {
 125		jsonw_name(json_wtr, json_title);
 126		jsonw_start_object(json_wtr);
 127	} else if (define_prefix) {
 128		printf("%s\n", define_comment);
 129	} else {
 130		printf("%s\n", plain_title);
 131	}
 132}
 133
 134static void print_end_section(void)
 
 
 
 135{
 136	if (json_output)
 137		jsonw_end_object(json_wtr);
 138	else
 139		printf("\n");
 
 
 
 140}
 141
 142/* Probing functions */
 143
 144static int get_vendor_id(int ifindex)
 145{
 146	char ifname[IF_NAMESIZE], path[64], buf[8];
 147	ssize_t len;
 148	int fd;
 149
 150	if (!if_indextoname(ifindex, ifname))
 151		return -1;
 152
 153	snprintf(path, sizeof(path), "/sys/class/net/%s/device/vendor", ifname);
 154
 155	fd = open(path, O_RDONLY | O_CLOEXEC);
 156	if (fd < 0)
 157		return -1;
 158
 159	len = read(fd, buf, sizeof(buf));
 160	close(fd);
 161	if (len < 0)
 162		return -1;
 163	if (len >= (ssize_t)sizeof(buf))
 164		return -1;
 165	buf[len] = '\0';
 166
 167	return strtol(buf, NULL, 0);
 168}
 169
 170static int read_procfs(const char *path)
 171{
 172	char *endptr, *line = NULL;
 173	size_t len = 0;
 174	FILE *fd;
 175	int res;
 176
 177	fd = fopen(path, "r");
 178	if (!fd)
 179		return -1;
 180
 181	res = getline(&line, &len, fd);
 182	fclose(fd);
 183	if (res < 0)
 184		return -1;
 185
 186	errno = 0;
 187	res = strtol(line, &endptr, 10);
 188	if (errno || *line == '\0' || *endptr != '\n')
 189		res = -1;
 190	free(line);
 191
 192	return res;
 193}
 194
 195static void probe_unprivileged_disabled(void)
 196{
 197	int res;
 198
 199	/* No support for C-style ouptut */
 200
 201	res = read_procfs("/proc/sys/kernel/unprivileged_bpf_disabled");
 202	if (json_output) {
 203		jsonw_int_field(json_wtr, "unprivileged_bpf_disabled", res);
 204	} else {
 205		switch (res) {
 206		case 0:
 207			printf("bpf() syscall for unprivileged users is enabled\n");
 208			break;
 209		case 1:
 210			printf("bpf() syscall restricted to privileged users (without recovery)\n");
 211			break;
 212		case 2:
 213			printf("bpf() syscall restricted to privileged users (admin can change)\n");
 214			break;
 215		case -1:
 216			printf("Unable to retrieve required privileges for bpf() syscall\n");
 217			break;
 218		default:
 219			printf("bpf() syscall restriction has unknown value %d\n", res);
 220		}
 221	}
 222}
 223
 224static void probe_jit_enable(void)
 225{
 226	int res;
 227
 228	/* No support for C-style ouptut */
 229
 230	res = read_procfs("/proc/sys/net/core/bpf_jit_enable");
 231	if (json_output) {
 232		jsonw_int_field(json_wtr, "bpf_jit_enable", res);
 233	} else {
 234		switch (res) {
 235		case 0:
 236			printf("JIT compiler is disabled\n");
 237			break;
 238		case 1:
 239			printf("JIT compiler is enabled\n");
 240			break;
 241		case 2:
 242			printf("JIT compiler is enabled with debugging traces in kernel logs\n");
 243			break;
 244		case -1:
 245			printf("Unable to retrieve JIT-compiler status\n");
 246			break;
 247		default:
 248			printf("JIT-compiler status has unknown value %d\n",
 249			       res);
 250		}
 251	}
 252}
 253
 254static void probe_jit_harden(void)
 255{
 256	int res;
 257
 258	/* No support for C-style ouptut */
 259
 260	res = read_procfs("/proc/sys/net/core/bpf_jit_harden");
 261	if (json_output) {
 262		jsonw_int_field(json_wtr, "bpf_jit_harden", res);
 263	} else {
 264		switch (res) {
 265		case 0:
 266			printf("JIT compiler hardening is disabled\n");
 267			break;
 268		case 1:
 269			printf("JIT compiler hardening is enabled for unprivileged users\n");
 270			break;
 271		case 2:
 272			printf("JIT compiler hardening is enabled for all users\n");
 273			break;
 274		case -1:
 275			printf("Unable to retrieve JIT hardening status\n");
 276			break;
 277		default:
 278			printf("JIT hardening status has unknown value %d\n",
 279			       res);
 280		}
 281	}
 282}
 283
 284static void probe_jit_kallsyms(void)
 285{
 286	int res;
 287
 288	/* No support for C-style ouptut */
 289
 290	res = read_procfs("/proc/sys/net/core/bpf_jit_kallsyms");
 291	if (json_output) {
 292		jsonw_int_field(json_wtr, "bpf_jit_kallsyms", res);
 293	} else {
 294		switch (res) {
 295		case 0:
 296			printf("JIT compiler kallsyms exports are disabled\n");
 297			break;
 298		case 1:
 299			printf("JIT compiler kallsyms exports are enabled for root\n");
 300			break;
 301		case -1:
 302			printf("Unable to retrieve JIT kallsyms export status\n");
 303			break;
 304		default:
 305			printf("JIT kallsyms exports status has unknown value %d\n", res);
 306		}
 307	}
 308}
 309
 310static void probe_jit_limit(void)
 311{
 312	int res;
 313
 314	/* No support for C-style ouptut */
 315
 316	res = read_procfs("/proc/sys/net/core/bpf_jit_limit");
 317	if (json_output) {
 318		jsonw_int_field(json_wtr, "bpf_jit_limit", res);
 319	} else {
 320		switch (res) {
 321		case -1:
 322			printf("Unable to retrieve global memory limit for JIT compiler for unprivileged users\n");
 323			break;
 324		default:
 325			printf("Global memory limit for JIT compiler for unprivileged users is %d bytes\n", res);
 326		}
 327	}
 328}
 329
 330static bool read_next_kernel_config_option(gzFile file, char *buf, size_t n,
 331					   char **value)
 332{
 333	char *sep;
 334
 335	while (gzgets(file, buf, n)) {
 336		if (strncmp(buf, "CONFIG_", 7))
 337			continue;
 338
 339		sep = strchr(buf, '=');
 340		if (!sep)
 341			continue;
 342
 343		/* Trim ending '\n' */
 344		buf[strlen(buf) - 1] = '\0';
 345
 346		/* Split on '=' and ensure that a value is present. */
 347		*sep = '\0';
 348		if (!sep[1])
 349			continue;
 350
 351		*value = sep + 1;
 352		return true;
 353	}
 354
 355	return false;
 356}
 357
 358static void probe_kernel_image_config(const char *define_prefix)
 359{
 360	static const struct {
 361		const char * const name;
 362		bool macro_dump;
 363	} options[] = {
 364		/* Enable BPF */
 365		{ "CONFIG_BPF", },
 366		/* Enable bpf() syscall */
 367		{ "CONFIG_BPF_SYSCALL", },
 368		/* Does selected architecture support eBPF JIT compiler */
 369		{ "CONFIG_HAVE_EBPF_JIT", },
 370		/* Compile eBPF JIT compiler */
 371		{ "CONFIG_BPF_JIT", },
 372		/* Avoid compiling eBPF interpreter (use JIT only) */
 373		{ "CONFIG_BPF_JIT_ALWAYS_ON", },
 374		/* Kernel BTF debug information available */
 375		{ "CONFIG_DEBUG_INFO_BTF", },
 376		/* Kernel module BTF debug information available */
 377		{ "CONFIG_DEBUG_INFO_BTF_MODULES", },
 378
 379		/* cgroups */
 380		{ "CONFIG_CGROUPS", },
 381		/* BPF programs attached to cgroups */
 382		{ "CONFIG_CGROUP_BPF", },
 383		/* bpf_get_cgroup_classid() helper */
 384		{ "CONFIG_CGROUP_NET_CLASSID", },
 385		/* bpf_skb_{,ancestor_}cgroup_id() helpers */
 386		{ "CONFIG_SOCK_CGROUP_DATA", },
 387
 388		/* Tracing: attach BPF to kprobes, tracepoints, etc. */
 389		{ "CONFIG_BPF_EVENTS", },
 390		/* Kprobes */
 391		{ "CONFIG_KPROBE_EVENTS", },
 392		/* Uprobes */
 393		{ "CONFIG_UPROBE_EVENTS", },
 394		/* Tracepoints */
 395		{ "CONFIG_TRACING", },
 396		/* Syscall tracepoints */
 397		{ "CONFIG_FTRACE_SYSCALLS", },
 398		/* bpf_override_return() helper support for selected arch */
 399		{ "CONFIG_FUNCTION_ERROR_INJECTION", },
 400		/* bpf_override_return() helper */
 401		{ "CONFIG_BPF_KPROBE_OVERRIDE", },
 402
 403		/* Network */
 404		{ "CONFIG_NET", },
 405		/* AF_XDP sockets */
 406		{ "CONFIG_XDP_SOCKETS", },
 407		/* BPF_PROG_TYPE_LWT_* and related helpers */
 408		{ "CONFIG_LWTUNNEL_BPF", },
 409		/* BPF_PROG_TYPE_SCHED_ACT, TC (traffic control) actions */
 410		{ "CONFIG_NET_ACT_BPF", },
 411		/* BPF_PROG_TYPE_SCHED_CLS, TC filters */
 412		{ "CONFIG_NET_CLS_BPF", },
 413		/* TC clsact qdisc */
 414		{ "CONFIG_NET_CLS_ACT", },
 415		/* Ingress filtering with TC */
 416		{ "CONFIG_NET_SCH_INGRESS", },
 417		/* bpf_skb_get_xfrm_state() helper */
 418		{ "CONFIG_XFRM", },
 419		/* bpf_get_route_realm() helper */
 420		{ "CONFIG_IP_ROUTE_CLASSID", },
 421		/* BPF_PROG_TYPE_LWT_SEG6_LOCAL and related helpers */
 422		{ "CONFIG_IPV6_SEG6_BPF", },
 423		/* BPF_PROG_TYPE_LIRC_MODE2 and related helpers */
 424		{ "CONFIG_BPF_LIRC_MODE2", },
 425		/* BPF stream parser and BPF socket maps */
 426		{ "CONFIG_BPF_STREAM_PARSER", },
 427		/* xt_bpf module for passing BPF programs to netfilter  */
 428		{ "CONFIG_NETFILTER_XT_MATCH_BPF", },
 429		/* bpfilter back-end for iptables */
 430		{ "CONFIG_BPFILTER", },
 431		/* bpftilter module with "user mode helper" */
 432		{ "CONFIG_BPFILTER_UMH", },
 433
 434		/* test_bpf module for BPF tests */
 435		{ "CONFIG_TEST_BPF", },
 436
 437		/* Misc configs useful in BPF C programs */
 438		/* jiffies <-> sec conversion for bpf_jiffies64() helper */
 439		{ "CONFIG_HZ", true, }
 440	};
 441	char *values[ARRAY_SIZE(options)] = { };
 442	struct utsname utsn;
 443	char path[PATH_MAX];
 444	gzFile file = NULL;
 445	char buf[4096];
 446	char *value;
 447	size_t i;
 448
 449	if (!uname(&utsn)) {
 450		snprintf(path, sizeof(path), "/boot/config-%s", utsn.release);
 451
 452		/* gzopen also accepts uncompressed files. */
 453		file = gzopen(path, "r");
 454	}
 455
 456	if (!file) {
 457		/* Some distributions build with CONFIG_IKCONFIG=y and put the
 458		 * config file at /proc/config.gz.
 459		 */
 460		file = gzopen("/proc/config.gz", "r");
 461	}
 462	if (!file) {
 463		p_info("skipping kernel config, can't open file: %s",
 464		       strerror(errno));
 465		goto end_parse;
 466	}
 467	/* Sanity checks */
 468	if (!gzgets(file, buf, sizeof(buf)) ||
 469	    !gzgets(file, buf, sizeof(buf))) {
 470		p_info("skipping kernel config, can't read from file: %s",
 471		       strerror(errno));
 472		goto end_parse;
 473	}
 474	if (strcmp(buf, "# Automatically generated file; DO NOT EDIT.\n")) {
 475		p_info("skipping kernel config, can't find correct file");
 476		goto end_parse;
 477	}
 478
 479	while (read_next_kernel_config_option(file, buf, sizeof(buf), &value)) {
 480		for (i = 0; i < ARRAY_SIZE(options); i++) {
 481			if ((define_prefix && !options[i].macro_dump) ||
 482			    values[i] || strcmp(buf, options[i].name))
 483				continue;
 484
 485			values[i] = strdup(value);
 486		}
 487	}
 488
 489end_parse:
 490	if (file)
 491		gzclose(file);
 492
 493	for (i = 0; i < ARRAY_SIZE(options); i++) {
 494		if (define_prefix && !options[i].macro_dump)
 495			continue;
 496		print_kernel_option(options[i].name, values[i], define_prefix);
 497		free(values[i]);
 498	}
 499}
 500
 501static bool probe_bpf_syscall(const char *define_prefix)
 502{
 503	bool res;
 504
 505	bpf_prog_load(BPF_PROG_TYPE_UNSPEC, NULL, NULL, NULL, 0, NULL);
 506	res = (errno != ENOSYS);
 507
 508	print_bool_feature("have_bpf_syscall",
 509			   "bpf() syscall",
 510			   "BPF_SYSCALL",
 511			   res, define_prefix);
 512
 513	return res;
 514}
 515
 516static bool
 517probe_prog_load_ifindex(enum bpf_prog_type prog_type,
 518			const struct bpf_insn *insns, size_t insns_cnt,
 519			char *log_buf, size_t log_buf_sz,
 520			__u32 ifindex)
 521{
 522	LIBBPF_OPTS(bpf_prog_load_opts, opts,
 523		    .log_buf = log_buf,
 524		    .log_size = log_buf_sz,
 525		    .log_level = log_buf ? 1 : 0,
 526		    .prog_ifindex = ifindex,
 527		   );
 528	int fd;
 529
 530	errno = 0;
 531	fd = bpf_prog_load(prog_type, NULL, "GPL", insns, insns_cnt, &opts);
 532	if (fd >= 0)
 533		close(fd);
 534
 535	return fd >= 0 && errno != EINVAL && errno != EOPNOTSUPP;
 536}
 537
 538static bool probe_prog_type_ifindex(enum bpf_prog_type prog_type, __u32 ifindex)
 539{
 540	/* nfp returns -EINVAL on exit(0) with TC offload */
 541	struct bpf_insn insns[2] = {
 542		BPF_MOV64_IMM(BPF_REG_0, 2),
 543		BPF_EXIT_INSN()
 544	};
 545
 546	return probe_prog_load_ifindex(prog_type, insns, ARRAY_SIZE(insns),
 547				       NULL, 0, ifindex);
 548}
 549
 550static void
 551probe_prog_type(enum bpf_prog_type prog_type, const char *prog_type_str,
 552		bool *supported_types, const char *define_prefix, __u32 ifindex)
 553{
 554	char feat_name[128], plain_desc[128], define_name[128];
 555	const char *plain_comment = "eBPF program_type ";
 556	size_t maxlen;
 557	bool res;
 558
 559	if (ifindex) {
 
 560		switch (prog_type) {
 561		case BPF_PROG_TYPE_SCHED_CLS:
 562		case BPF_PROG_TYPE_XDP:
 563			break;
 564		default:
 565			return;
 566		}
 567
 568		res = probe_prog_type_ifindex(prog_type, ifindex);
 569	} else {
 570		res = libbpf_probe_bpf_prog_type(prog_type, NULL) > 0;
 571	}
 572
 573#ifdef USE_LIBCAP
 574	/* Probe may succeed even if program load fails, for unprivileged users
 575	 * check that we did not fail because of insufficient permissions
 576	 */
 577	if (run_as_unprivileged && errno == EPERM)
 578		res = false;
 579#endif
 580
 581	supported_types[prog_type] |= res;
 582
 583	maxlen = sizeof(plain_desc) - strlen(plain_comment) - 1;
 584	if (strlen(prog_type_str) > maxlen) {
 585		p_info("program type name too long");
 586		return;
 587	}
 588
 589	sprintf(feat_name, "have_%s_prog_type", prog_type_str);
 590	sprintf(define_name, "%s_prog_type", prog_type_str);
 591	uppercase(define_name, sizeof(define_name));
 592	sprintf(plain_desc, "%s%s", plain_comment, prog_type_str);
 593	print_bool_feature(feat_name, plain_desc, define_name, res,
 594			   define_prefix);
 595}
 596
 597static bool probe_map_type_ifindex(enum bpf_map_type map_type, __u32 ifindex)
 598{
 599	LIBBPF_OPTS(bpf_map_create_opts, opts);
 600	int key_size, value_size, max_entries;
 601	int fd;
 602
 603	opts.map_ifindex = ifindex;
 604
 605	key_size = sizeof(__u32);
 606	value_size = sizeof(__u32);
 607	max_entries = 1;
 608
 609	fd = bpf_map_create(map_type, NULL, key_size, value_size, max_entries,
 610			    &opts);
 611	if (fd >= 0)
 612		close(fd);
 613
 614	return fd >= 0;
 615}
 616
 617static void
 618probe_map_type(enum bpf_map_type map_type, char const *map_type_str,
 619	       const char *define_prefix, __u32 ifindex)
 620{
 621	char feat_name[128], plain_desc[128], define_name[128];
 622	const char *plain_comment = "eBPF map_type ";
 623	size_t maxlen;
 624	bool res;
 625
 626	if (ifindex) {
 627		switch (map_type) {
 628		case BPF_MAP_TYPE_HASH:
 629		case BPF_MAP_TYPE_ARRAY:
 630			break;
 631		default:
 632			return;
 633		}
 634
 635		res = probe_map_type_ifindex(map_type, ifindex);
 636	} else {
 637		res = libbpf_probe_bpf_map_type(map_type, NULL) > 0;
 638	}
 639
 640	/* Probe result depends on the success of map creation, no additional
 641	 * check required for unprivileged users
 642	 */
 643
 644	maxlen = sizeof(plain_desc) - strlen(plain_comment) - 1;
 645	if (strlen(map_type_str) > maxlen) {
 646		p_info("map type name too long");
 647		return;
 648	}
 649
 650	sprintf(feat_name, "have_%s_map_type", map_type_str);
 651	sprintf(define_name, "%s_map_type", map_type_str);
 652	uppercase(define_name, sizeof(define_name));
 653	sprintf(plain_desc, "%s%s", plain_comment, map_type_str);
 654	print_bool_feature(feat_name, plain_desc, define_name, res,
 655			   define_prefix);
 656}
 657
 658static bool
 659probe_helper_ifindex(enum bpf_func_id id, enum bpf_prog_type prog_type,
 660		     __u32 ifindex)
 661{
 662	struct bpf_insn insns[2] = {
 663		BPF_EMIT_CALL(id),
 664		BPF_EXIT_INSN()
 665	};
 666	char buf[4096] = {};
 667	bool res;
 668
 669	probe_prog_load_ifindex(prog_type, insns, ARRAY_SIZE(insns), buf,
 670				sizeof(buf), ifindex);
 671	res = !grep(buf, "invalid func ") && !grep(buf, "unknown func ");
 672
 673	switch (get_vendor_id(ifindex)) {
 674	case 0x19ee: /* Netronome specific */
 675		res = res && !grep(buf, "not supported by FW") &&
 676			!grep(buf, "unsupported function id");
 677		break;
 678	default:
 679		break;
 680	}
 681
 682	return res;
 683}
 684
 685static bool
 686probe_helper_for_progtype(enum bpf_prog_type prog_type, bool supported_type,
 687			  const char *define_prefix, unsigned int id,
 688			  const char *ptype_name, __u32 ifindex)
 689{
 690	bool res = false;
 691
 692	if (supported_type) {
 693		if (ifindex)
 694			res = probe_helper_ifindex(id, prog_type, ifindex);
 695		else
 696			res = libbpf_probe_bpf_helper(prog_type, id, NULL) > 0;
 697#ifdef USE_LIBCAP
 698		/* Probe may succeed even if program load fails, for
 699		 * unprivileged users check that we did not fail because of
 700		 * insufficient permissions
 701		 */
 702		if (run_as_unprivileged && errno == EPERM)
 703			res = false;
 704#endif
 705	}
 706
 707	if (json_output) {
 708		if (res)
 709			jsonw_string(json_wtr, helper_name[id]);
 710	} else if (define_prefix) {
 711		printf("#define %sBPF__PROG_TYPE_%s__HELPER_%s %s\n",
 712		       define_prefix, ptype_name, helper_name[id],
 713		       res ? "1" : "0");
 714	} else {
 715		if (res)
 716			printf("\n\t- %s", helper_name[id]);
 717	}
 718
 719	return res;
 720}
 721
 722static void
 723probe_helpers_for_progtype(enum bpf_prog_type prog_type,
 724			   const char *prog_type_str, bool supported_type,
 725			   const char *define_prefix, __u32 ifindex)
 726{
 
 727	char feat_name[128];
 728	unsigned int id;
 729	bool probe_res = false;
 730
 731	if (ifindex)
 732		/* Only test helpers for offload-able program types */
 733		switch (prog_type) {
 734		case BPF_PROG_TYPE_SCHED_CLS:
 735		case BPF_PROG_TYPE_XDP:
 736			break;
 737		default:
 738			return;
 739		}
 740
 741	if (json_output) {
 742		sprintf(feat_name, "%s_available_helpers", prog_type_str);
 743		jsonw_name(json_wtr, feat_name);
 744		jsonw_start_array(json_wtr);
 745	} else if (!define_prefix) {
 746		printf("eBPF helpers supported for program type %s:",
 747		       prog_type_str);
 748	}
 749
 750	for (id = 1; id < ARRAY_SIZE(helper_name); id++) {
 751		/* Skip helper functions which emit dmesg messages when not in
 752		 * the full mode.
 753		 */
 754		switch (id) {
 755		case BPF_FUNC_trace_printk:
 756		case BPF_FUNC_trace_vprintk:
 757		case BPF_FUNC_probe_write_user:
 758			if (!full_mode)
 759				continue;
 760			/* fallthrough */
 761		default:
 762			probe_res |= probe_helper_for_progtype(prog_type, supported_type,
 763						  define_prefix, id, prog_type_str,
 764						  ifindex);
 
 765		}
 766	}
 767
 768	if (json_output)
 769		jsonw_end_array(json_wtr);
 770	else if (!define_prefix) {
 771		printf("\n");
 772		if (!probe_res) {
 773			if (!supported_type)
 774				printf("\tProgram type not supported\n");
 775			else
 776				printf("\tCould not determine which helpers are available\n");
 777		}
 778	}
 779
 780
 781}
 782
 783static void
 784probe_misc_feature(struct bpf_insn *insns, size_t len,
 785		   const char *define_prefix, __u32 ifindex,
 786		   const char *feat_name, const char *plain_name,
 787		   const char *define_name)
 788{
 789	LIBBPF_OPTS(bpf_prog_load_opts, opts,
 790		.prog_ifindex = ifindex,
 791	);
 792	bool res;
 793	int fd;
 794
 795	errno = 0;
 796	fd = bpf_prog_load(BPF_PROG_TYPE_SOCKET_FILTER, NULL, "GPL",
 797			   insns, len, &opts);
 798	res = fd >= 0 || !errno;
 799
 800	if (fd >= 0)
 801		close(fd);
 802
 803	print_bool_feature(feat_name, plain_name, define_name, res,
 804			   define_prefix);
 805}
 806
 807/*
 808 * Probe for availability of kernel commit (5.3):
 809 *
 810 * c04c0d2b968a ("bpf: increase complexity limit and maximum program size")
 811 */
 812static void probe_large_insn_limit(const char *define_prefix, __u32 ifindex)
 813{
 814	struct bpf_insn insns[BPF_MAXINSNS + 1];
 815	int i;
 816
 817	for (i = 0; i < BPF_MAXINSNS; i++)
 818		insns[i] = BPF_MOV64_IMM(BPF_REG_0, 1);
 819	insns[BPF_MAXINSNS] = BPF_EXIT_INSN();
 820
 821	probe_misc_feature(insns, ARRAY_SIZE(insns),
 822			   define_prefix, ifindex,
 823			   "have_large_insn_limit",
 824			   "Large program size limit",
 825			   "LARGE_INSN_LIMIT");
 826}
 827
 828/*
 829 * Probe for bounded loop support introduced in commit 2589726d12a1
 830 * ("bpf: introduce bounded loops").
 831 */
 832static void
 833probe_bounded_loops(const char *define_prefix, __u32 ifindex)
 834{
 835	struct bpf_insn insns[4] = {
 836		BPF_MOV64_IMM(BPF_REG_0, 10),
 837		BPF_ALU64_IMM(BPF_SUB, BPF_REG_0, 1),
 838		BPF_JMP_IMM(BPF_JNE, BPF_REG_0, 0, -2),
 839		BPF_EXIT_INSN()
 840	};
 841
 842	probe_misc_feature(insns, ARRAY_SIZE(insns),
 843			   define_prefix, ifindex,
 844			   "have_bounded_loops",
 845			   "Bounded loop support",
 846			   "BOUNDED_LOOPS");
 847}
 848
 849/*
 850 * Probe for the v2 instruction set extension introduced in commit 92b31a9af73b
 851 * ("bpf: add BPF_J{LT,LE,SLT,SLE} instructions").
 852 */
 853static void
 854probe_v2_isa_extension(const char *define_prefix, __u32 ifindex)
 855{
 856	struct bpf_insn insns[4] = {
 857		BPF_MOV64_IMM(BPF_REG_0, 0),
 858		BPF_JMP_IMM(BPF_JLT, BPF_REG_0, 0, 1),
 859		BPF_MOV64_IMM(BPF_REG_0, 1),
 860		BPF_EXIT_INSN()
 861	};
 862
 863	probe_misc_feature(insns, ARRAY_SIZE(insns),
 864			   define_prefix, ifindex,
 865			   "have_v2_isa_extension",
 866			   "ISA extension v2",
 867			   "V2_ISA_EXTENSION");
 868}
 869
 870/*
 871 * Probe for the v3 instruction set extension introduced in commit 092ed0968bb6
 872 * ("bpf: verifier support JMP32").
 873 */
 874static void
 875probe_v3_isa_extension(const char *define_prefix, __u32 ifindex)
 876{
 877	struct bpf_insn insns[4] = {
 878		BPF_MOV64_IMM(BPF_REG_0, 0),
 879		BPF_JMP32_IMM(BPF_JLT, BPF_REG_0, 0, 1),
 880		BPF_MOV64_IMM(BPF_REG_0, 1),
 881		BPF_EXIT_INSN()
 882	};
 883
 884	probe_misc_feature(insns, ARRAY_SIZE(insns),
 885			   define_prefix, ifindex,
 886			   "have_v3_isa_extension",
 887			   "ISA extension v3",
 888			   "V3_ISA_EXTENSION");
 889}
 890
 891static void
 892section_system_config(enum probe_component target, const char *define_prefix)
 893{
 894	switch (target) {
 895	case COMPONENT_KERNEL:
 896	case COMPONENT_UNSPEC:
 897		print_start_section("system_config",
 898				    "Scanning system configuration...",
 899				    "/*** Misc kernel config items ***/",
 900				    define_prefix);
 901		if (!define_prefix) {
 902			if (check_procfs()) {
 903				probe_unprivileged_disabled();
 904				probe_jit_enable();
 905				probe_jit_harden();
 906				probe_jit_kallsyms();
 907				probe_jit_limit();
 908			} else {
 909				p_info("/* procfs not mounted, skipping related probes */");
 910			}
 911		}
 912		probe_kernel_image_config(define_prefix);
 913		print_end_section();
 914		break;
 915	default:
 916		break;
 917	}
 918}
 919
 920static bool section_syscall_config(const char *define_prefix)
 921{
 922	bool res;
 923
 924	print_start_section("syscall_config",
 925			    "Scanning system call availability...",
 926			    "/*** System call availability ***/",
 927			    define_prefix);
 928	res = probe_bpf_syscall(define_prefix);
 929	print_end_section();
 930
 931	return res;
 932}
 933
 934static void
 935section_program_types(bool *supported_types, const char *define_prefix,
 936		      __u32 ifindex)
 937{
 938	unsigned int prog_type = BPF_PROG_TYPE_UNSPEC;
 939	const char *prog_type_str;
 940
 941	print_start_section("program_types",
 942			    "Scanning eBPF program types...",
 943			    "/*** eBPF program types ***/",
 944			    define_prefix);
 945
 946	while (true) {
 947		prog_type++;
 948		prog_type_str = libbpf_bpf_prog_type_str(prog_type);
 949		/* libbpf will return NULL for variants unknown to it. */
 950		if (!prog_type_str)
 951			break;
 952
 953		probe_prog_type(prog_type, prog_type_str, supported_types, define_prefix,
 954				ifindex);
 955	}
 956
 957	print_end_section();
 958}
 959
 960static void section_map_types(const char *define_prefix, __u32 ifindex)
 961{
 962	unsigned int map_type = BPF_MAP_TYPE_UNSPEC;
 963	const char *map_type_str;
 964
 965	print_start_section("map_types",
 966			    "Scanning eBPF map types...",
 967			    "/*** eBPF map types ***/",
 968			    define_prefix);
 969
 970	while (true) {
 971		map_type++;
 972		map_type_str = libbpf_bpf_map_type_str(map_type);
 973		/* libbpf will return NULL for variants unknown to it. */
 974		if (!map_type_str)
 975			break;
 976
 977		probe_map_type(map_type, map_type_str, define_prefix, ifindex);
 978	}
 979
 980	print_end_section();
 981}
 982
 983static void
 984section_helpers(bool *supported_types, const char *define_prefix, __u32 ifindex)
 985{
 986	unsigned int prog_type = BPF_PROG_TYPE_UNSPEC;
 987	const char *prog_type_str;
 988
 989	print_start_section("helpers",
 990			    "Scanning eBPF helper functions...",
 991			    "/*** eBPF helper functions ***/",
 992			    define_prefix);
 993
 994	if (define_prefix)
 995		printf("/*\n"
 996		       " * Use %sHAVE_PROG_TYPE_HELPER(prog_type_name, helper_name)\n"
 997		       " * to determine if <helper_name> is available for <prog_type_name>,\n"
 998		       " * e.g.\n"
 999		       " *	#if %sHAVE_PROG_TYPE_HELPER(xdp, bpf_redirect)\n"
1000		       " *		// do stuff with this helper\n"
1001		       " *	#elif\n"
1002		       " *		// use a workaround\n"
1003		       " *	#endif\n"
1004		       " */\n"
1005		       "#define %sHAVE_PROG_TYPE_HELPER(prog_type, helper)	\\\n"
1006		       "	%sBPF__PROG_TYPE_ ## prog_type ## __HELPER_ ## helper\n",
1007		       define_prefix, define_prefix, define_prefix,
1008		       define_prefix);
1009	while (true) {
1010		prog_type++;
1011		prog_type_str = libbpf_bpf_prog_type_str(prog_type);
1012		/* libbpf will return NULL for variants unknown to it. */
1013		if (!prog_type_str)
1014			break;
1015
1016		probe_helpers_for_progtype(prog_type, prog_type_str,
1017					   supported_types[prog_type],
1018					   define_prefix,
1019					   ifindex);
1020	}
1021
1022	print_end_section();
1023}
1024
1025static void section_misc(const char *define_prefix, __u32 ifindex)
1026{
1027	print_start_section("misc",
1028			    "Scanning miscellaneous eBPF features...",
1029			    "/*** eBPF misc features ***/",
1030			    define_prefix);
1031	probe_large_insn_limit(define_prefix, ifindex);
1032	probe_bounded_loops(define_prefix, ifindex);
1033	probe_v2_isa_extension(define_prefix, ifindex);
1034	probe_v3_isa_extension(define_prefix, ifindex);
1035	print_end_section();
1036}
1037
1038#ifdef USE_LIBCAP
1039#define capability(c) { c, false, #c }
1040#define capability_msg(a, i) a[i].set ? "" : a[i].name, a[i].set ? "" : ", "
1041#endif
1042
1043static int handle_perms(void)
1044{
1045#ifdef USE_LIBCAP
1046	struct {
1047		cap_value_t cap;
1048		bool set;
1049		char name[14];	/* strlen("CAP_SYS_ADMIN") */
1050	} bpf_caps[] = {
1051		capability(CAP_SYS_ADMIN),
1052#ifdef CAP_BPF
1053		capability(CAP_BPF),
1054		capability(CAP_NET_ADMIN),
1055		capability(CAP_PERFMON),
1056#endif
1057	};
1058	cap_value_t cap_list[ARRAY_SIZE(bpf_caps)];
1059	unsigned int i, nb_bpf_caps = 0;
1060	bool cap_sys_admin_only = true;
1061	cap_flag_value_t val;
1062	int res = -1;
1063	cap_t caps;
1064
1065	caps = cap_get_proc();
1066	if (!caps) {
1067		p_err("failed to get capabilities for process: %s",
1068		      strerror(errno));
1069		return -1;
1070	}
1071
1072#ifdef CAP_BPF
1073	if (CAP_IS_SUPPORTED(CAP_BPF))
1074		cap_sys_admin_only = false;
1075#endif
1076
1077	for (i = 0; i < ARRAY_SIZE(bpf_caps); i++) {
1078		const char *cap_name = bpf_caps[i].name;
1079		cap_value_t cap = bpf_caps[i].cap;
1080
1081		if (cap_get_flag(caps, cap, CAP_EFFECTIVE, &val)) {
1082			p_err("bug: failed to retrieve %s status: %s", cap_name,
1083			      strerror(errno));
1084			goto exit_free;
1085		}
1086
1087		if (val == CAP_SET) {
1088			bpf_caps[i].set = true;
1089			cap_list[nb_bpf_caps++] = cap;
1090		}
1091
1092		if (cap_sys_admin_only)
1093			/* System does not know about CAP_BPF, meaning that
1094			 * CAP_SYS_ADMIN is the only capability required. We
1095			 * just checked it, break.
1096			 */
1097			break;
1098	}
1099
1100	if ((run_as_unprivileged && !nb_bpf_caps) ||
1101	    (!run_as_unprivileged && nb_bpf_caps == ARRAY_SIZE(bpf_caps)) ||
1102	    (!run_as_unprivileged && cap_sys_admin_only && nb_bpf_caps)) {
1103		/* We are all good, exit now */
1104		res = 0;
1105		goto exit_free;
1106	}
1107
1108	if (!run_as_unprivileged) {
1109		if (cap_sys_admin_only)
1110			p_err("missing %s, required for full feature probing; run as root or use 'unprivileged'",
1111			      bpf_caps[0].name);
1112		else
1113			p_err("missing %s%s%s%s%s%s%s%srequired for full feature probing; run as root or use 'unprivileged'",
1114			      capability_msg(bpf_caps, 0),
1115#ifdef CAP_BPF
1116			      capability_msg(bpf_caps, 1),
1117			      capability_msg(bpf_caps, 2),
1118			      capability_msg(bpf_caps, 3)
1119#else
1120				"", "", "", "", "", ""
1121#endif /* CAP_BPF */
1122				);
1123		goto exit_free;
1124	}
1125
1126	/* if (run_as_unprivileged && nb_bpf_caps > 0), drop capabilities. */
1127	if (cap_set_flag(caps, CAP_EFFECTIVE, nb_bpf_caps, cap_list,
1128			 CAP_CLEAR)) {
1129		p_err("bug: failed to clear capabilities: %s", strerror(errno));
1130		goto exit_free;
1131	}
1132
1133	if (cap_set_proc(caps)) {
1134		p_err("failed to drop capabilities: %s", strerror(errno));
1135		goto exit_free;
1136	}
1137
1138	res = 0;
1139
1140exit_free:
1141	if (cap_free(caps) && !res) {
1142		p_err("failed to clear storage object for capabilities: %s",
1143		      strerror(errno));
1144		res = -1;
1145	}
1146
1147	return res;
1148#else
1149	/* Detection assumes user has specific privileges.
1150	 * We do not use libcap so let's approximate, and restrict usage to
1151	 * root user only.
1152	 */
1153	if (geteuid()) {
1154		p_err("full feature probing requires root privileges");
1155		return -1;
1156	}
1157
1158	return 0;
1159#endif /* USE_LIBCAP */
1160}
1161
1162static int do_probe(int argc, char **argv)
1163{
1164	enum probe_component target = COMPONENT_UNSPEC;
1165	const char *define_prefix = NULL;
1166	bool supported_types[128] = {};
1167	__u32 ifindex = 0;
 
1168	char *ifname;
1169
 
 
 
 
 
 
 
 
1170	set_max_rlimit();
1171
1172	while (argc) {
1173		if (is_prefix(*argv, "kernel")) {
1174			if (target != COMPONENT_UNSPEC) {
1175				p_err("component to probe already specified");
1176				return -1;
1177			}
1178			target = COMPONENT_KERNEL;
1179			NEXT_ARG();
1180		} else if (is_prefix(*argv, "dev")) {
1181			NEXT_ARG();
1182
1183			if (target != COMPONENT_UNSPEC || ifindex) {
1184				p_err("component to probe already specified");
1185				return -1;
1186			}
1187			if (!REQ_ARGS(1))
1188				return -1;
1189
1190			target = COMPONENT_DEVICE;
1191			ifname = GET_ARG();
1192			ifindex = if_nametoindex(ifname);
1193			if (!ifindex) {
1194				p_err("unrecognized netdevice '%s': %s", ifname,
1195				      strerror(errno));
1196				return -1;
1197			}
1198		} else if (is_prefix(*argv, "full")) {
1199			full_mode = true;
1200			NEXT_ARG();
1201		} else if (is_prefix(*argv, "macros") && !define_prefix) {
1202			define_prefix = "";
1203			NEXT_ARG();
1204		} else if (is_prefix(*argv, "prefix")) {
1205			if (!define_prefix) {
1206				p_err("'prefix' argument can only be use after 'macros'");
1207				return -1;
1208			}
1209			if (strcmp(define_prefix, "")) {
1210				p_err("'prefix' already defined");
1211				return -1;
1212			}
1213			NEXT_ARG();
1214
1215			if (!REQ_ARGS(1))
1216				return -1;
1217			define_prefix = GET_ARG();
1218		} else if (is_prefix(*argv, "unprivileged")) {
1219#ifdef USE_LIBCAP
1220			run_as_unprivileged = true;
1221			NEXT_ARG();
1222#else
1223			p_err("unprivileged run not supported, recompile bpftool with libcap");
1224			return -1;
1225#endif
1226		} else {
1227			p_err("expected no more arguments, 'kernel', 'dev', 'macros' or 'prefix', got: '%s'?",
1228			      *argv);
1229			return -1;
1230		}
1231	}
1232
1233	/* Full feature detection requires specific privileges.
1234	 * Let's approximate, and warn if user is not root.
1235	 */
1236	if (handle_perms())
1237		return -1;
1238
1239	if (json_output) {
1240		define_prefix = NULL;
1241		jsonw_start_object(json_wtr);
1242	}
1243
1244	section_system_config(target, define_prefix);
1245	if (!section_syscall_config(define_prefix))
1246		/* bpf() syscall unavailable, don't probe other BPF features */
1247		goto exit_close_json;
1248	section_program_types(supported_types, define_prefix, ifindex);
1249	section_map_types(define_prefix, ifindex);
1250	section_helpers(supported_types, define_prefix, ifindex);
1251	section_misc(define_prefix, ifindex);
1252
1253exit_close_json:
1254	if (json_output)
1255		/* End root object */
1256		jsonw_end_object(json_wtr);
1257
1258	return 0;
1259}
1260
1261static const char *get_helper_name(unsigned int id)
1262{
1263	if (id >= ARRAY_SIZE(helper_name))
1264		return NULL;
1265
1266	return helper_name[id];
1267}
1268
1269static int do_list_builtins(int argc, char **argv)
1270{
1271	const char *(*get_name)(unsigned int id);
1272	unsigned int id = 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1273
1274	if (argc < 1)
1275		usage();
 
 
1276
1277	if (is_prefix(*argv, "prog_types")) {
1278		get_name = (const char *(*)(unsigned int))libbpf_bpf_prog_type_str;
1279	} else if (is_prefix(*argv, "map_types")) {
1280		get_name = (const char *(*)(unsigned int))libbpf_bpf_map_type_str;
1281	} else if (is_prefix(*argv, "attach_types")) {
1282		get_name = (const char *(*)(unsigned int))libbpf_bpf_attach_type_str;
1283	} else if (is_prefix(*argv, "link_types")) {
1284		get_name = (const char *(*)(unsigned int))libbpf_bpf_link_type_str;
1285	} else if (is_prefix(*argv, "helpers")) {
1286		get_name = get_helper_name;
1287	} else {
1288		p_err("expected 'prog_types', 'map_types', 'attach_types', 'link_types' or 'helpers', got: %s", *argv);
1289		return -1;
1290	}
1291
1292	if (json_output)
1293		jsonw_start_array(json_wtr);	/* root array */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1294
1295	while (true) {
1296		const char *name;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1297
1298		name = get_name(id++);
1299		if (!name)
1300			break;
1301		if (json_output)
1302			jsonw_string(json_wtr, name);
1303		else
1304			printf("%s\n", name);
1305	}
1306
1307	if (json_output)
1308		jsonw_end_array(json_wtr);	/* root array */
1309
1310	return 0;
1311}
1312
1313static int do_help(int argc, char **argv)
1314{
1315	if (json_output) {
1316		jsonw_null(json_wtr);
1317		return 0;
1318	}
1319
1320	fprintf(stderr,
1321		"Usage: %1$s %2$s probe [COMPONENT] [full] [unprivileged] [macros [prefix PREFIX]]\n"
1322		"       %1$s %2$s list_builtins GROUP\n"
1323		"       %1$s %2$s help\n"
1324		"\n"
1325		"       COMPONENT := { kernel | dev NAME }\n"
1326		"       GROUP := { prog_types | map_types | attach_types | link_types | helpers }\n"
1327		"       " HELP_SPEC_OPTIONS " }\n"
1328		"",
1329		bin_name, argv[-2]);
1330
1331	return 0;
1332}
1333
1334static const struct cmd cmds[] = {
1335	{ "probe",		do_probe },
1336	{ "list_builtins",	do_list_builtins },
1337	{ "help",		do_help },
1338	{ 0 }
1339};
1340
1341int do_feature(int argc, char **argv)
1342{
1343	return cmd_select(cmds, argc, argv, do_help);
1344}
v5.4
  1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2/* Copyright (c) 2019 Netronome Systems, Inc. */
  3
  4#include <ctype.h>
  5#include <errno.h>
 
  6#include <string.h>
  7#include <unistd.h>
  8#include <net/if.h>
 
 
 
  9#include <sys/utsname.h>
 10#include <sys/vfs.h>
 11
 12#include <linux/filter.h>
 13#include <linux/limits.h>
 14
 15#include <bpf.h>
 16#include <libbpf.h>
 17#include <zlib.h>
 18
 19#include "main.h"
 20
 21#ifndef PROC_SUPER_MAGIC
 22# define PROC_SUPER_MAGIC	0x9fa0
 23#endif
 24
 25enum probe_component {
 26	COMPONENT_UNSPEC,
 27	COMPONENT_KERNEL,
 28	COMPONENT_DEVICE,
 29};
 30
 31#define BPF_HELPER_MAKE_ENTRY(name)	[BPF_FUNC_ ## name] = "bpf_" # name
 32static const char * const helper_name[] = {
 33	__BPF_FUNC_MAPPER(BPF_HELPER_MAKE_ENTRY)
 34};
 35
 36#undef BPF_HELPER_MAKE_ENTRY
 37
 
 
 
 
 
 38/* Miscellaneous utility functions */
 39
 
 
 
 
 
 40static bool check_procfs(void)
 41{
 42	struct statfs st_fs;
 43
 44	if (statfs("/proc", &st_fs) < 0)
 45		return false;
 46	if ((unsigned long)st_fs.f_type != PROC_SUPER_MAGIC)
 47		return false;
 48
 49	return true;
 50}
 51
 52static void uppercase(char *str, size_t len)
 53{
 54	size_t i;
 55
 56	for (i = 0; i < len && str[i] != '\0'; i++)
 57		str[i] = toupper(str[i]);
 58}
 59
 60/* Printing utility functions */
 61
 62static void
 63print_bool_feature(const char *feat_name, const char *plain_name,
 64		   const char *define_name, bool res, const char *define_prefix)
 65{
 66	if (json_output)
 67		jsonw_bool_field(json_wtr, feat_name, res);
 68	else if (define_prefix)
 69		printf("#define %s%sHAVE_%s\n", define_prefix,
 70		       res ? "" : "NO_", define_name);
 71	else
 72		printf("%s is %savailable\n", plain_name, res ? "" : "NOT ");
 73}
 74
 75static void print_kernel_option(const char *name, const char *value)
 
 76{
 77	char *endptr;
 78	int res;
 79
 80	/* No support for C-style ouptut */
 81
 82	if (json_output) {
 83		if (!value) {
 84			jsonw_null_field(json_wtr, name);
 85			return;
 86		}
 87		errno = 0;
 88		res = strtol(value, &endptr, 0);
 89		if (!errno && *endptr == '\n')
 90			jsonw_int_field(json_wtr, name, res);
 91		else
 92			jsonw_string_field(json_wtr, name, value);
 
 
 
 
 
 
 93	} else {
 94		if (value)
 95			printf("%s is set to %s\n", name, value);
 96		else
 97			printf("%s is not set\n", name);
 98	}
 99}
100
101static void
102print_start_section(const char *json_title, const char *plain_title,
103		    const char *define_comment, const char *define_prefix)
104{
105	if (json_output) {
106		jsonw_name(json_wtr, json_title);
107		jsonw_start_object(json_wtr);
108	} else if (define_prefix) {
109		printf("%s\n", define_comment);
110	} else {
111		printf("%s\n", plain_title);
112	}
113}
114
115static void
116print_end_then_start_section(const char *json_title, const char *plain_title,
117			     const char *define_comment,
118			     const char *define_prefix)
119{
120	if (json_output)
121		jsonw_end_object(json_wtr);
122	else
123		printf("\n");
124
125	print_start_section(json_title, plain_title, define_comment,
126			    define_prefix);
127}
128
129/* Probing functions */
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131static int read_procfs(const char *path)
132{
133	char *endptr, *line = NULL;
134	size_t len = 0;
135	FILE *fd;
136	int res;
137
138	fd = fopen(path, "r");
139	if (!fd)
140		return -1;
141
142	res = getline(&line, &len, fd);
143	fclose(fd);
144	if (res < 0)
145		return -1;
146
147	errno = 0;
148	res = strtol(line, &endptr, 10);
149	if (errno || *line == '\0' || *endptr != '\n')
150		res = -1;
151	free(line);
152
153	return res;
154}
155
156static void probe_unprivileged_disabled(void)
157{
158	int res;
159
160	/* No support for C-style ouptut */
161
162	res = read_procfs("/proc/sys/kernel/unprivileged_bpf_disabled");
163	if (json_output) {
164		jsonw_int_field(json_wtr, "unprivileged_bpf_disabled", res);
165	} else {
166		switch (res) {
167		case 0:
168			printf("bpf() syscall for unprivileged users is enabled\n");
169			break;
170		case 1:
171			printf("bpf() syscall restricted to privileged users\n");
 
 
 
172			break;
173		case -1:
174			printf("Unable to retrieve required privileges for bpf() syscall\n");
175			break;
176		default:
177			printf("bpf() syscall restriction has unknown value %d\n", res);
178		}
179	}
180}
181
182static void probe_jit_enable(void)
183{
184	int res;
185
186	/* No support for C-style ouptut */
187
188	res = read_procfs("/proc/sys/net/core/bpf_jit_enable");
189	if (json_output) {
190		jsonw_int_field(json_wtr, "bpf_jit_enable", res);
191	} else {
192		switch (res) {
193		case 0:
194			printf("JIT compiler is disabled\n");
195			break;
196		case 1:
197			printf("JIT compiler is enabled\n");
198			break;
199		case 2:
200			printf("JIT compiler is enabled with debugging traces in kernel logs\n");
201			break;
202		case -1:
203			printf("Unable to retrieve JIT-compiler status\n");
204			break;
205		default:
206			printf("JIT-compiler status has unknown value %d\n",
207			       res);
208		}
209	}
210}
211
212static void probe_jit_harden(void)
213{
214	int res;
215
216	/* No support for C-style ouptut */
217
218	res = read_procfs("/proc/sys/net/core/bpf_jit_harden");
219	if (json_output) {
220		jsonw_int_field(json_wtr, "bpf_jit_harden", res);
221	} else {
222		switch (res) {
223		case 0:
224			printf("JIT compiler hardening is disabled\n");
225			break;
226		case 1:
227			printf("JIT compiler hardening is enabled for unprivileged users\n");
228			break;
229		case 2:
230			printf("JIT compiler hardening is enabled for all users\n");
231			break;
232		case -1:
233			printf("Unable to retrieve JIT hardening status\n");
234			break;
235		default:
236			printf("JIT hardening status has unknown value %d\n",
237			       res);
238		}
239	}
240}
241
242static void probe_jit_kallsyms(void)
243{
244	int res;
245
246	/* No support for C-style ouptut */
247
248	res = read_procfs("/proc/sys/net/core/bpf_jit_kallsyms");
249	if (json_output) {
250		jsonw_int_field(json_wtr, "bpf_jit_kallsyms", res);
251	} else {
252		switch (res) {
253		case 0:
254			printf("JIT compiler kallsyms exports are disabled\n");
255			break;
256		case 1:
257			printf("JIT compiler kallsyms exports are enabled for root\n");
258			break;
259		case -1:
260			printf("Unable to retrieve JIT kallsyms export status\n");
261			break;
262		default:
263			printf("JIT kallsyms exports status has unknown value %d\n", res);
264		}
265	}
266}
267
268static void probe_jit_limit(void)
269{
270	int res;
271
272	/* No support for C-style ouptut */
273
274	res = read_procfs("/proc/sys/net/core/bpf_jit_limit");
275	if (json_output) {
276		jsonw_int_field(json_wtr, "bpf_jit_limit", res);
277	} else {
278		switch (res) {
279		case -1:
280			printf("Unable to retrieve global memory limit for JIT compiler for unprivileged users\n");
281			break;
282		default:
283			printf("Global memory limit for JIT compiler for unprivileged users is %d bytes\n", res);
284		}
285	}
286}
287
288static bool read_next_kernel_config_option(gzFile file, char *buf, size_t n,
289					   char **value)
290{
291	char *sep;
292
293	while (gzgets(file, buf, n)) {
294		if (strncmp(buf, "CONFIG_", 7))
295			continue;
296
297		sep = strchr(buf, '=');
298		if (!sep)
299			continue;
300
301		/* Trim ending '\n' */
302		buf[strlen(buf) - 1] = '\0';
303
304		/* Split on '=' and ensure that a value is present. */
305		*sep = '\0';
306		if (!sep[1])
307			continue;
308
309		*value = sep + 1;
310		return true;
311	}
312
313	return false;
314}
315
316static void probe_kernel_image_config(void)
317{
318	static const char * const options[] = {
 
 
 
319		/* Enable BPF */
320		"CONFIG_BPF",
321		/* Enable bpf() syscall */
322		"CONFIG_BPF_SYSCALL",
323		/* Does selected architecture support eBPF JIT compiler */
324		"CONFIG_HAVE_EBPF_JIT",
325		/* Compile eBPF JIT compiler */
326		"CONFIG_BPF_JIT",
327		/* Avoid compiling eBPF interpreter (use JIT only) */
328		"CONFIG_BPF_JIT_ALWAYS_ON",
 
 
 
 
329
330		/* cgroups */
331		"CONFIG_CGROUPS",
332		/* BPF programs attached to cgroups */
333		"CONFIG_CGROUP_BPF",
334		/* bpf_get_cgroup_classid() helper */
335		"CONFIG_CGROUP_NET_CLASSID",
336		/* bpf_skb_{,ancestor_}cgroup_id() helpers */
337		"CONFIG_SOCK_CGROUP_DATA",
338
339		/* Tracing: attach BPF to kprobes, tracepoints, etc. */
340		"CONFIG_BPF_EVENTS",
341		/* Kprobes */
342		"CONFIG_KPROBE_EVENTS",
343		/* Uprobes */
344		"CONFIG_UPROBE_EVENTS",
345		/* Tracepoints */
346		"CONFIG_TRACING",
347		/* Syscall tracepoints */
348		"CONFIG_FTRACE_SYSCALLS",
349		/* bpf_override_return() helper support for selected arch */
350		"CONFIG_FUNCTION_ERROR_INJECTION",
351		/* bpf_override_return() helper */
352		"CONFIG_BPF_KPROBE_OVERRIDE",
353
354		/* Network */
355		"CONFIG_NET",
356		/* AF_XDP sockets */
357		"CONFIG_XDP_SOCKETS",
358		/* BPF_PROG_TYPE_LWT_* and related helpers */
359		"CONFIG_LWTUNNEL_BPF",
360		/* BPF_PROG_TYPE_SCHED_ACT, TC (traffic control) actions */
361		"CONFIG_NET_ACT_BPF",
362		/* BPF_PROG_TYPE_SCHED_CLS, TC filters */
363		"CONFIG_NET_CLS_BPF",
364		/* TC clsact qdisc */
365		"CONFIG_NET_CLS_ACT",
366		/* Ingress filtering with TC */
367		"CONFIG_NET_SCH_INGRESS",
368		/* bpf_skb_get_xfrm_state() helper */
369		"CONFIG_XFRM",
370		/* bpf_get_route_realm() helper */
371		"CONFIG_IP_ROUTE_CLASSID",
372		/* BPF_PROG_TYPE_LWT_SEG6_LOCAL and related helpers */
373		"CONFIG_IPV6_SEG6_BPF",
374		/* BPF_PROG_TYPE_LIRC_MODE2 and related helpers */
375		"CONFIG_BPF_LIRC_MODE2",
376		/* BPF stream parser and BPF socket maps */
377		"CONFIG_BPF_STREAM_PARSER",
378		/* xt_bpf module for passing BPF programs to netfilter  */
379		"CONFIG_NETFILTER_XT_MATCH_BPF",
380		/* bpfilter back-end for iptables */
381		"CONFIG_BPFILTER",
382		/* bpftilter module with "user mode helper" */
383		"CONFIG_BPFILTER_UMH",
384
385		/* test_bpf module for BPF tests */
386		"CONFIG_TEST_BPF",
 
 
 
 
387	};
388	char *values[ARRAY_SIZE(options)] = { };
389	struct utsname utsn;
390	char path[PATH_MAX];
391	gzFile file = NULL;
392	char buf[4096];
393	char *value;
394	size_t i;
395
396	if (!uname(&utsn)) {
397		snprintf(path, sizeof(path), "/boot/config-%s", utsn.release);
398
399		/* gzopen also accepts uncompressed files. */
400		file = gzopen(path, "r");
401	}
402
403	if (!file) {
404		/* Some distributions build with CONFIG_IKCONFIG=y and put the
405		 * config file at /proc/config.gz.
406		 */
407		file = gzopen("/proc/config.gz", "r");
408	}
409	if (!file) {
410		p_info("skipping kernel config, can't open file: %s",
411		       strerror(errno));
412		goto end_parse;
413	}
414	/* Sanity checks */
415	if (!gzgets(file, buf, sizeof(buf)) ||
416	    !gzgets(file, buf, sizeof(buf))) {
417		p_info("skipping kernel config, can't read from file: %s",
418		       strerror(errno));
419		goto end_parse;
420	}
421	if (strcmp(buf, "# Automatically generated file; DO NOT EDIT.\n")) {
422		p_info("skipping kernel config, can't find correct file");
423		goto end_parse;
424	}
425
426	while (read_next_kernel_config_option(file, buf, sizeof(buf), &value)) {
427		for (i = 0; i < ARRAY_SIZE(options); i++) {
428			if (values[i] || strcmp(buf, options[i]))
 
429				continue;
430
431			values[i] = strdup(value);
432		}
433	}
434
435end_parse:
436	if (file)
437		gzclose(file);
438
439	for (i = 0; i < ARRAY_SIZE(options); i++) {
440		print_kernel_option(options[i], values[i]);
 
 
441		free(values[i]);
442	}
443}
444
445static bool probe_bpf_syscall(const char *define_prefix)
446{
447	bool res;
448
449	bpf_load_program(BPF_PROG_TYPE_UNSPEC, NULL, 0, NULL, 0, NULL, 0);
450	res = (errno != ENOSYS);
451
452	print_bool_feature("have_bpf_syscall",
453			   "bpf() syscall",
454			   "BPF_SYSCALL",
455			   res, define_prefix);
456
457	return res;
458}
459
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
460static void
461probe_prog_type(enum bpf_prog_type prog_type, bool *supported_types,
462		const char *define_prefix, __u32 ifindex)
463{
464	char feat_name[128], plain_desc[128], define_name[128];
465	const char *plain_comment = "eBPF program_type ";
466	size_t maxlen;
467	bool res;
468
469	if (ifindex)
470		/* Only test offload-able program types */
471		switch (prog_type) {
472		case BPF_PROG_TYPE_SCHED_CLS:
473		case BPF_PROG_TYPE_XDP:
474			break;
475		default:
476			return;
477		}
478
479	res = bpf_probe_prog_type(prog_type, ifindex);
 
 
 
 
 
 
 
 
 
 
 
480
481	supported_types[prog_type] |= res;
482
483	maxlen = sizeof(plain_desc) - strlen(plain_comment) - 1;
484	if (strlen(prog_type_name[prog_type]) > maxlen) {
485		p_info("program type name too long");
486		return;
487	}
488
489	sprintf(feat_name, "have_%s_prog_type", prog_type_name[prog_type]);
490	sprintf(define_name, "%s_prog_type", prog_type_name[prog_type]);
491	uppercase(define_name, sizeof(define_name));
492	sprintf(plain_desc, "%s%s", plain_comment, prog_type_name[prog_type]);
493	print_bool_feature(feat_name, plain_desc, define_name, res,
494			   define_prefix);
495}
496
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
497static void
498probe_map_type(enum bpf_map_type map_type, const char *define_prefix,
499	       __u32 ifindex)
500{
501	char feat_name[128], plain_desc[128], define_name[128];
502	const char *plain_comment = "eBPF map_type ";
503	size_t maxlen;
504	bool res;
505
506	res = bpf_probe_map_type(map_type, ifindex);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
507
508	maxlen = sizeof(plain_desc) - strlen(plain_comment) - 1;
509	if (strlen(map_type_name[map_type]) > maxlen) {
510		p_info("map type name too long");
511		return;
512	}
513
514	sprintf(feat_name, "have_%s_map_type", map_type_name[map_type]);
515	sprintf(define_name, "%s_map_type", map_type_name[map_type]);
516	uppercase(define_name, sizeof(define_name));
517	sprintf(plain_desc, "%s%s", plain_comment, map_type_name[map_type]);
518	print_bool_feature(feat_name, plain_desc, define_name, res,
519			   define_prefix);
520}
521
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
522static void
523probe_helpers_for_progtype(enum bpf_prog_type prog_type, bool supported_type,
 
524			   const char *define_prefix, __u32 ifindex)
525{
526	const char *ptype_name = prog_type_name[prog_type];
527	char feat_name[128];
528	unsigned int id;
529	bool res;
530
531	if (ifindex)
532		/* Only test helpers for offload-able program types */
533		switch (prog_type) {
534		case BPF_PROG_TYPE_SCHED_CLS:
535		case BPF_PROG_TYPE_XDP:
536			break;
537		default:
538			return;
539		}
540
541	if (json_output) {
542		sprintf(feat_name, "%s_available_helpers", ptype_name);
543		jsonw_name(json_wtr, feat_name);
544		jsonw_start_array(json_wtr);
545	} else if (!define_prefix) {
546		printf("eBPF helpers supported for program type %s:",
547		       ptype_name);
548	}
549
550	for (id = 1; id < ARRAY_SIZE(helper_name); id++) {
551		if (!supported_type)
552			res = false;
553		else
554			res = bpf_probe_helper(id, prog_type, ifindex);
555
556		if (json_output) {
557			if (res)
558				jsonw_string(json_wtr, helper_name[id]);
559		} else if (define_prefix) {
560			printf("#define %sBPF__PROG_TYPE_%s__HELPER_%s %s\n",
561			       define_prefix, ptype_name, helper_name[id],
562			       res ? "1" : "0");
563		} else {
564			if (res)
565				printf("\n\t- %s", helper_name[id]);
566		}
567	}
568
569	if (json_output)
570		jsonw_end_array(json_wtr);
571	else if (!define_prefix)
572		printf("\n");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
573}
574
575static int do_probe(int argc, char **argv)
576{
577	enum probe_component target = COMPONENT_UNSPEC;
578	const char *define_prefix = NULL;
579	bool supported_types[128] = {};
580	__u32 ifindex = 0;
581	unsigned int i;
582	char *ifname;
583
584	/* Detection assumes user has sufficient privileges (CAP_SYS_ADMIN).
585	 * Let's approximate, and restrict usage to root user only.
586	 */
587	if (geteuid()) {
588		p_err("please run this command as root user");
589		return -1;
590	}
591
592	set_max_rlimit();
593
594	while (argc) {
595		if (is_prefix(*argv, "kernel")) {
596			if (target != COMPONENT_UNSPEC) {
597				p_err("component to probe already specified");
598				return -1;
599			}
600			target = COMPONENT_KERNEL;
601			NEXT_ARG();
602		} else if (is_prefix(*argv, "dev")) {
603			NEXT_ARG();
604
605			if (target != COMPONENT_UNSPEC || ifindex) {
606				p_err("component to probe already specified");
607				return -1;
608			}
609			if (!REQ_ARGS(1))
610				return -1;
611
612			target = COMPONENT_DEVICE;
613			ifname = GET_ARG();
614			ifindex = if_nametoindex(ifname);
615			if (!ifindex) {
616				p_err("unrecognized netdevice '%s': %s", ifname,
617				      strerror(errno));
618				return -1;
619			}
 
 
 
620		} else if (is_prefix(*argv, "macros") && !define_prefix) {
621			define_prefix = "";
622			NEXT_ARG();
623		} else if (is_prefix(*argv, "prefix")) {
624			if (!define_prefix) {
625				p_err("'prefix' argument can only be use after 'macros'");
626				return -1;
627			}
628			if (strcmp(define_prefix, "")) {
629				p_err("'prefix' already defined");
630				return -1;
631			}
632			NEXT_ARG();
633
634			if (!REQ_ARGS(1))
635				return -1;
636			define_prefix = GET_ARG();
 
 
 
 
 
 
 
 
637		} else {
638			p_err("expected no more arguments, 'kernel', 'dev', 'macros' or 'prefix', got: '%s'?",
639			      *argv);
640			return -1;
641		}
642	}
643
 
 
 
 
 
 
644	if (json_output) {
645		define_prefix = NULL;
646		jsonw_start_object(json_wtr);
647	}
648
649	switch (target) {
650	case COMPONENT_KERNEL:
651	case COMPONENT_UNSPEC:
652		if (define_prefix)
653			break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
654
655		print_start_section("system_config",
656				    "Scanning system configuration...",
657				    NULL, /* define_comment never used here */
658				    NULL); /* define_prefix always NULL here */
659		if (check_procfs()) {
660			probe_unprivileged_disabled();
661			probe_jit_enable();
662			probe_jit_harden();
663			probe_jit_kallsyms();
664			probe_jit_limit();
665		} else {
666			p_info("/* procfs not mounted, skipping related probes */");
667		}
668		probe_kernel_image_config();
669		if (json_output)
670			jsonw_end_object(json_wtr);
671		else
672			printf("\n");
673		break;
674	default:
675		break;
676	}
677
678	print_start_section("syscall_config",
679			    "Scanning system call availability...",
680			    "/*** System call availability ***/",
681			    define_prefix);
682
683	if (!probe_bpf_syscall(define_prefix))
684		/* bpf() syscall unavailable, don't probe other BPF features */
685		goto exit_close_json;
 
 
 
 
 
 
 
 
 
 
 
686
687	print_end_then_start_section("program_types",
688				     "Scanning eBPF program types...",
689				     "/*** eBPF program types ***/",
690				     define_prefix);
691
692	for (i = BPF_PROG_TYPE_UNSPEC + 1; i < ARRAY_SIZE(prog_type_name); i++)
693		probe_prog_type(i, supported_types, define_prefix, ifindex);
694
695	print_end_then_start_section("map_types",
696				     "Scanning eBPF map types...",
697				     "/*** eBPF map types ***/",
698				     define_prefix);
699
700	for (i = BPF_MAP_TYPE_UNSPEC + 1; i < map_type_name_size; i++)
701		probe_map_type(i, define_prefix, ifindex);
702
703	print_end_then_start_section("helpers",
704				     "Scanning eBPF helper functions...",
705				     "/*** eBPF helper functions ***/",
706				     define_prefix);
707
708	if (define_prefix)
709		printf("/*\n"
710		       " * Use %sHAVE_PROG_TYPE_HELPER(prog_type_name, helper_name)\n"
711		       " * to determine if <helper_name> is available for <prog_type_name>,\n"
712		       " * e.g.\n"
713		       " *	#if %sHAVE_PROG_TYPE_HELPER(xdp, bpf_redirect)\n"
714		       " *		// do stuff with this helper\n"
715		       " *	#elif\n"
716		       " *		// use a workaround\n"
717		       " *	#endif\n"
718		       " */\n"
719		       "#define %sHAVE_PROG_TYPE_HELPER(prog_type, helper)	\\\n"
720		       "	%sBPF__PROG_TYPE_ ## prog_type ## __HELPER_ ## helper\n",
721		       define_prefix, define_prefix, define_prefix,
722		       define_prefix);
723	for (i = BPF_PROG_TYPE_UNSPEC + 1; i < ARRAY_SIZE(prog_type_name); i++)
724		probe_helpers_for_progtype(i, supported_types[i],
725					   define_prefix, ifindex);
726
727exit_close_json:
728	if (json_output) {
729		/* End current "section" of probes */
730		jsonw_end_object(json_wtr);
731		/* End root object */
732		jsonw_end_object(json_wtr);
 
733	}
734
 
 
 
735	return 0;
736}
737
738static int do_help(int argc, char **argv)
739{
740	if (json_output) {
741		jsonw_null(json_wtr);
742		return 0;
743	}
744
745	fprintf(stderr,
746		"Usage: %s %s probe [COMPONENT] [macros [prefix PREFIX]]\n"
747		"       %s %s help\n"
 
748		"\n"
749		"       COMPONENT := { kernel | dev NAME }\n"
 
 
750		"",
751		bin_name, argv[-2], bin_name, argv[-2]);
752
753	return 0;
754}
755
756static const struct cmd cmds[] = {
757	{ "probe",	do_probe },
758	{ "help",	do_help },
 
759	{ 0 }
760};
761
762int do_feature(int argc, char **argv)
763{
764	return cmd_select(cmds, argc, argv, do_help);
765}