Linux Audio

Check our new training course

Loading...
v5.4
   1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
   2/* Copyright (C) 2017-2018 Netronome Systems, Inc. */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
   3
   4#include <assert.h>
 
   5#include <errno.h>
   6#include <fcntl.h>
   7#include <linux/err.h>
   8#include <linux/kernel.h>
   9#include <net/if.h>
  10#include <stdbool.h>
  11#include <stdio.h>
  12#include <stdlib.h>
  13#include <string.h>
  14#include <unistd.h>
  15#include <sys/types.h>
  16#include <sys/stat.h>
  17
  18#include <bpf.h>
  19
  20#include "btf.h"
  21#include "json_writer.h"
  22#include "main.h"
  23
  24const char * const map_type_name[] = {
  25	[BPF_MAP_TYPE_UNSPEC]			= "unspec",
  26	[BPF_MAP_TYPE_HASH]			= "hash",
  27	[BPF_MAP_TYPE_ARRAY]			= "array",
  28	[BPF_MAP_TYPE_PROG_ARRAY]		= "prog_array",
  29	[BPF_MAP_TYPE_PERF_EVENT_ARRAY]		= "perf_event_array",
  30	[BPF_MAP_TYPE_PERCPU_HASH]		= "percpu_hash",
  31	[BPF_MAP_TYPE_PERCPU_ARRAY]		= "percpu_array",
  32	[BPF_MAP_TYPE_STACK_TRACE]		= "stack_trace",
  33	[BPF_MAP_TYPE_CGROUP_ARRAY]		= "cgroup_array",
  34	[BPF_MAP_TYPE_LRU_HASH]			= "lru_hash",
  35	[BPF_MAP_TYPE_LRU_PERCPU_HASH]		= "lru_percpu_hash",
  36	[BPF_MAP_TYPE_LPM_TRIE]			= "lpm_trie",
  37	[BPF_MAP_TYPE_ARRAY_OF_MAPS]		= "array_of_maps",
  38	[BPF_MAP_TYPE_HASH_OF_MAPS]		= "hash_of_maps",
  39	[BPF_MAP_TYPE_DEVMAP]			= "devmap",
  40	[BPF_MAP_TYPE_DEVMAP_HASH]		= "devmap_hash",
  41	[BPF_MAP_TYPE_SOCKMAP]			= "sockmap",
  42	[BPF_MAP_TYPE_CPUMAP]			= "cpumap",
  43	[BPF_MAP_TYPE_XSKMAP]			= "xskmap",
  44	[BPF_MAP_TYPE_SOCKHASH]			= "sockhash",
  45	[BPF_MAP_TYPE_CGROUP_STORAGE]		= "cgroup_storage",
  46	[BPF_MAP_TYPE_REUSEPORT_SOCKARRAY]	= "reuseport_sockarray",
  47	[BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE]	= "percpu_cgroup_storage",
  48	[BPF_MAP_TYPE_QUEUE]			= "queue",
  49	[BPF_MAP_TYPE_STACK]			= "stack",
  50	[BPF_MAP_TYPE_SK_STORAGE]		= "sk_storage",
  51};
  52
  53const size_t map_type_name_size = ARRAY_SIZE(map_type_name);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  54
  55static bool map_is_per_cpu(__u32 type)
  56{
  57	return type == BPF_MAP_TYPE_PERCPU_HASH ||
  58	       type == BPF_MAP_TYPE_PERCPU_ARRAY ||
  59	       type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
  60	       type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE;
  61}
  62
  63static bool map_is_map_of_maps(__u32 type)
  64{
  65	return type == BPF_MAP_TYPE_ARRAY_OF_MAPS ||
  66	       type == BPF_MAP_TYPE_HASH_OF_MAPS;
  67}
  68
  69static bool map_is_map_of_progs(__u32 type)
  70{
  71	return type == BPF_MAP_TYPE_PROG_ARRAY;
  72}
  73
  74static int map_type_from_str(const char *type)
  75{
  76	unsigned int i;
  77
  78	for (i = 0; i < ARRAY_SIZE(map_type_name); i++)
  79		/* Don't allow prefixing in case of possible future shadowing */
  80		if (map_type_name[i] && !strcmp(map_type_name[i], type))
  81			return i;
  82	return -1;
  83}
  84
  85static void *alloc_value(struct bpf_map_info *info)
  86{
  87	if (map_is_per_cpu(info->type))
  88		return malloc(round_up(info->value_size, 8) *
  89			      get_possible_cpus());
  90	else
  91		return malloc(info->value_size);
  92}
  93
  94int map_parse_fd(int *argc, char ***argv)
  95{
  96	int fd;
  97
  98	if (is_prefix(**argv, "id")) {
  99		unsigned int id;
 100		char *endptr;
 101
 102		NEXT_ARGP();
 103
 104		id = strtoul(**argv, &endptr, 0);
 105		if (*endptr) {
 106			p_err("can't parse %s as ID", **argv);
 107			return -1;
 108		}
 109		NEXT_ARGP();
 110
 111		fd = bpf_map_get_fd_by_id(id);
 112		if (fd < 0)
 113			p_err("get map by id (%u): %s", id, strerror(errno));
 114		return fd;
 115	} else if (is_prefix(**argv, "pinned")) {
 116		char *path;
 117
 118		NEXT_ARGP();
 119
 120		path = **argv;
 121		NEXT_ARGP();
 122
 123		return open_obj_pinned_any(path, BPF_OBJ_MAP);
 124	}
 125
 126	p_err("expected 'id' or 'pinned', got: '%s'?", **argv);
 127	return -1;
 128}
 129
 130int map_parse_fd_and_info(int *argc, char ***argv, void *info, __u32 *info_len)
 
 131{
 132	int err;
 133	int fd;
 134
 135	fd = map_parse_fd(argc, argv);
 136	if (fd < 0)
 137		return -1;
 138
 139	err = bpf_obj_get_info_by_fd(fd, info, info_len);
 140	if (err) {
 141		p_err("can't get map info: %s", strerror(errno));
 142		close(fd);
 143		return err;
 144	}
 145
 146	return fd;
 147}
 148
 149static int do_dump_btf(const struct btf_dumper *d,
 150		       struct bpf_map_info *map_info, void *key,
 151		       void *value)
 152{
 153	int ret;
 154
 155	/* start of key-value pair */
 156	jsonw_start_object(d->jw);
 157
 158	if (map_info->btf_key_type_id) {
 159		jsonw_name(d->jw, "key");
 160
 161		ret = btf_dumper_type(d, map_info->btf_key_type_id, key);
 162		if (ret)
 163			goto err_end_obj;
 164	}
 165
 166	if (!map_is_per_cpu(map_info->type)) {
 167		jsonw_name(d->jw, "value");
 168		ret = btf_dumper_type(d, map_info->btf_value_type_id, value);
 169	} else {
 170		unsigned int i, n, step;
 171
 172		jsonw_name(d->jw, "values");
 173		jsonw_start_array(d->jw);
 174		n = get_possible_cpus();
 175		step = round_up(map_info->value_size, 8);
 176		for (i = 0; i < n; i++) {
 177			jsonw_start_object(d->jw);
 178			jsonw_int_field(d->jw, "cpu", i);
 179			jsonw_name(d->jw, "value");
 180			ret = btf_dumper_type(d, map_info->btf_value_type_id,
 181					      value + i * step);
 182			jsonw_end_object(d->jw);
 183			if (ret)
 184				break;
 185		}
 186		jsonw_end_array(d->jw);
 187	}
 188
 189err_end_obj:
 190	/* end of key-value pair */
 191	jsonw_end_object(d->jw);
 192
 193	return ret;
 194}
 195
 196static json_writer_t *get_btf_writer(void)
 197{
 198	json_writer_t *jw = jsonw_new(stdout);
 199
 200	if (!jw)
 201		return NULL;
 202	jsonw_pretty(jw, true);
 203
 204	return jw;
 205}
 206
 207static void print_entry_json(struct bpf_map_info *info, unsigned char *key,
 208			     unsigned char *value, struct btf *btf)
 209{
 210	jsonw_start_object(json_wtr);
 211
 212	if (!map_is_per_cpu(info->type)) {
 213		jsonw_name(json_wtr, "key");
 214		print_hex_data_json(key, info->key_size);
 215		jsonw_name(json_wtr, "value");
 216		print_hex_data_json(value, info->value_size);
 217		if (btf) {
 218			struct btf_dumper d = {
 219				.btf = btf,
 220				.jw = json_wtr,
 221				.is_plain_text = false,
 222			};
 223
 224			jsonw_name(json_wtr, "formatted");
 225			do_dump_btf(&d, info, key, value);
 226		}
 227	} else {
 228		unsigned int i, n, step;
 229
 230		n = get_possible_cpus();
 231		step = round_up(info->value_size, 8);
 232
 233		jsonw_name(json_wtr, "key");
 234		print_hex_data_json(key, info->key_size);
 235
 236		jsonw_name(json_wtr, "values");
 237		jsonw_start_array(json_wtr);
 238		for (i = 0; i < n; i++) {
 239			jsonw_start_object(json_wtr);
 240
 241			jsonw_int_field(json_wtr, "cpu", i);
 242
 243			jsonw_name(json_wtr, "value");
 244			print_hex_data_json(value + i * step,
 245					    info->value_size);
 246
 247			jsonw_end_object(json_wtr);
 248		}
 249		jsonw_end_array(json_wtr);
 250		if (btf) {
 251			struct btf_dumper d = {
 252				.btf = btf,
 253				.jw = json_wtr,
 254				.is_plain_text = false,
 255			};
 256
 257			jsonw_name(json_wtr, "formatted");
 258			do_dump_btf(&d, info, key, value);
 259		}
 260	}
 261
 262	jsonw_end_object(json_wtr);
 263}
 264
 265static void print_entry_error(struct bpf_map_info *info, unsigned char *key,
 266			      const char *error_msg)
 267{
 268	int msg_size = strlen(error_msg);
 269	bool single_line, break_names;
 270
 271	break_names = info->key_size > 16 || msg_size > 16;
 272	single_line = info->key_size + msg_size <= 24 && !break_names;
 273
 274	printf("key:%c", break_names ? '\n' : ' ');
 275	fprint_hex(stdout, key, info->key_size, " ");
 276
 277	printf(single_line ? "  " : "\n");
 278
 279	printf("value:%c%s", break_names ? '\n' : ' ', error_msg);
 280
 281	printf("\n");
 282}
 283
 284static void print_entry_plain(struct bpf_map_info *info, unsigned char *key,
 285			      unsigned char *value)
 286{
 287	if (!map_is_per_cpu(info->type)) {
 288		bool single_line, break_names;
 289
 290		break_names = info->key_size > 16 || info->value_size > 16;
 291		single_line = info->key_size + info->value_size <= 24 &&
 292			!break_names;
 293
 294		if (info->key_size) {
 295			printf("key:%c", break_names ? '\n' : ' ');
 296			fprint_hex(stdout, key, info->key_size, " ");
 297
 298			printf(single_line ? "  " : "\n");
 299		}
 300
 301		if (info->value_size) {
 302			printf("value:%c", break_names ? '\n' : ' ');
 303			fprint_hex(stdout, value, info->value_size, " ");
 304		}
 305
 306		printf("\n");
 307	} else {
 308		unsigned int i, n, step;
 309
 310		n = get_possible_cpus();
 311		step = round_up(info->value_size, 8);
 312
 313		if (info->key_size) {
 314			printf("key:\n");
 315			fprint_hex(stdout, key, info->key_size, " ");
 
 
 
 
 
 316			printf("\n");
 317		}
 318		if (info->value_size) {
 319			for (i = 0; i < n; i++) {
 320				printf("value (CPU %02d):%c",
 321				       i, info->value_size > 16 ? '\n' : ' ');
 322				fprint_hex(stdout, value + i * step,
 323					   info->value_size, " ");
 324				printf("\n");
 325			}
 326		}
 327	}
 328}
 329
 330static char **parse_bytes(char **argv, const char *name, unsigned char *val,
 331			  unsigned int n)
 332{
 333	unsigned int i = 0, base = 0;
 334	char *endptr;
 335
 336	if (is_prefix(*argv, "hex")) {
 337		base = 16;
 338		argv++;
 339	}
 340
 341	while (i < n && argv[i]) {
 342		val[i] = strtoul(argv[i], &endptr, base);
 343		if (*endptr) {
 344			p_err("error parsing byte: %s", argv[i]);
 345			return NULL;
 346		}
 347		i++;
 348	}
 349
 350	if (i != n) {
 351		p_err("%s expected %d bytes got %d", name, n, i);
 352		return NULL;
 353	}
 354
 355	return argv + i;
 356}
 357
 358/* on per cpu maps we must copy the provided value on all value instances */
 359static void fill_per_cpu_value(struct bpf_map_info *info, void *value)
 360{
 361	unsigned int i, n, step;
 362
 363	if (!map_is_per_cpu(info->type))
 364		return;
 365
 366	n = get_possible_cpus();
 367	step = round_up(info->value_size, 8);
 368	for (i = 1; i < n; i++)
 369		memcpy(value + i * step, value, info->value_size);
 370}
 371
 372static int parse_elem(char **argv, struct bpf_map_info *info,
 373		      void *key, void *value, __u32 key_size, __u32 value_size,
 374		      __u32 *flags, __u32 **value_fd)
 375{
 376	if (!*argv) {
 377		if (!key && !value)
 378			return 0;
 379		p_err("did not find %s", key ? "key" : "value");
 380		return -1;
 381	}
 382
 383	if (is_prefix(*argv, "key")) {
 384		if (!key) {
 385			if (key_size)
 386				p_err("duplicate key");
 387			else
 388				p_err("unnecessary key");
 389			return -1;
 390		}
 391
 392		argv = parse_bytes(argv + 1, "key", key, key_size);
 393		if (!argv)
 394			return -1;
 395
 396		return parse_elem(argv, info, NULL, value, key_size, value_size,
 397				  flags, value_fd);
 398	} else if (is_prefix(*argv, "value")) {
 399		int fd;
 400
 401		if (!value) {
 402			if (value_size)
 403				p_err("duplicate value");
 404			else
 405				p_err("unnecessary value");
 406			return -1;
 407		}
 408
 409		argv++;
 410
 411		if (map_is_map_of_maps(info->type)) {
 412			int argc = 2;
 413
 414			if (value_size != 4) {
 415				p_err("value smaller than 4B for map in map?");
 416				return -1;
 417			}
 418			if (!argv[0] || !argv[1]) {
 419				p_err("not enough value arguments for map in map");
 420				return -1;
 421			}
 422
 423			fd = map_parse_fd(&argc, &argv);
 424			if (fd < 0)
 425				return -1;
 426
 427			*value_fd = value;
 428			**value_fd = fd;
 429		} else if (map_is_map_of_progs(info->type)) {
 430			int argc = 2;
 431
 432			if (value_size != 4) {
 433				p_err("value smaller than 4B for map of progs?");
 434				return -1;
 435			}
 436			if (!argv[0] || !argv[1]) {
 437				p_err("not enough value arguments for map of progs");
 438				return -1;
 439			}
 440			if (is_prefix(*argv, "id"))
 441				p_info("Warning: updating program array via MAP_ID, make sure this map is kept open\n"
 442				       "         by some process or pinned otherwise update will be lost");
 443
 444			fd = prog_parse_fd(&argc, &argv);
 445			if (fd < 0)
 446				return -1;
 447
 448			*value_fd = value;
 449			**value_fd = fd;
 450		} else {
 451			argv = parse_bytes(argv, "value", value, value_size);
 452			if (!argv)
 453				return -1;
 454
 455			fill_per_cpu_value(info, value);
 456		}
 457
 458		return parse_elem(argv, info, key, NULL, key_size, value_size,
 459				  flags, NULL);
 460	} else if (is_prefix(*argv, "any") || is_prefix(*argv, "noexist") ||
 461		   is_prefix(*argv, "exist")) {
 462		if (!flags) {
 463			p_err("flags specified multiple times: %s", *argv);
 464			return -1;
 465		}
 466
 467		if (is_prefix(*argv, "any"))
 468			*flags = BPF_ANY;
 469		else if (is_prefix(*argv, "noexist"))
 470			*flags = BPF_NOEXIST;
 471		else if (is_prefix(*argv, "exist"))
 472			*flags = BPF_EXIST;
 473
 474		return parse_elem(argv + 1, info, key, value, key_size,
 475				  value_size, NULL, value_fd);
 476	}
 477
 478	p_err("expected key or value, got: %s", *argv);
 479	return -1;
 480}
 481
 482static int show_map_close_json(int fd, struct bpf_map_info *info)
 483{
 484	char *memlock, *frozen_str;
 485	int frozen = 0;
 486
 487	memlock = get_fdinfo(fd, "memlock");
 488	frozen_str = get_fdinfo(fd, "frozen");
 489
 490	jsonw_start_object(json_wtr);
 491
 492	jsonw_uint_field(json_wtr, "id", info->id);
 493	if (info->type < ARRAY_SIZE(map_type_name))
 494		jsonw_string_field(json_wtr, "type",
 495				   map_type_name[info->type]);
 496	else
 497		jsonw_uint_field(json_wtr, "type", info->type);
 498
 499	if (*info->name)
 500		jsonw_string_field(json_wtr, "name", info->name);
 501
 502	jsonw_name(json_wtr, "flags");
 503	jsonw_printf(json_wtr, "%d", info->map_flags);
 504
 505	print_dev_json(info->ifindex, info->netns_dev, info->netns_ino);
 506
 507	jsonw_uint_field(json_wtr, "bytes_key", info->key_size);
 508	jsonw_uint_field(json_wtr, "bytes_value", info->value_size);
 509	jsonw_uint_field(json_wtr, "max_entries", info->max_entries);
 510
 511	if (memlock)
 512		jsonw_int_field(json_wtr, "bytes_memlock", atoi(memlock));
 513	free(memlock);
 514
 515	if (info->type == BPF_MAP_TYPE_PROG_ARRAY) {
 516		char *owner_prog_type = get_fdinfo(fd, "owner_prog_type");
 517		char *owner_jited = get_fdinfo(fd, "owner_jited");
 518
 519		if (owner_prog_type) {
 520			unsigned int prog_type = atoi(owner_prog_type);
 521
 522			if (prog_type < ARRAY_SIZE(prog_type_name))
 523				jsonw_string_field(json_wtr, "owner_prog_type",
 524						   prog_type_name[prog_type]);
 525			else
 526				jsonw_uint_field(json_wtr, "owner_prog_type",
 527						 prog_type);
 528		}
 529		if (owner_jited)
 530			jsonw_bool_field(json_wtr, "owner_jited",
 531					 !!atoi(owner_jited));
 532
 533		free(owner_prog_type);
 534		free(owner_jited);
 535	}
 536	close(fd);
 537
 538	if (frozen_str) {
 539		frozen = atoi(frozen_str);
 540		free(frozen_str);
 541	}
 542	jsonw_int_field(json_wtr, "frozen", frozen);
 543
 544	if (info->btf_id)
 545		jsonw_int_field(json_wtr, "btf_id", info->btf_id);
 546
 547	if (!hash_empty(map_table.table)) {
 548		struct pinned_obj *obj;
 549
 550		jsonw_name(json_wtr, "pinned");
 551		jsonw_start_array(json_wtr);
 552		hash_for_each_possible(map_table.table, obj, hash, info->id) {
 553			if (obj->id == info->id)
 554				jsonw_string(json_wtr, obj->path);
 555		}
 556		jsonw_end_array(json_wtr);
 557	}
 558
 559	jsonw_end_object(json_wtr);
 560
 561	return 0;
 562}
 563
 564static int show_map_close_plain(int fd, struct bpf_map_info *info)
 565{
 566	char *memlock, *frozen_str;
 567	int frozen = 0;
 568
 569	memlock = get_fdinfo(fd, "memlock");
 570	frozen_str = get_fdinfo(fd, "frozen");
 571
 572	printf("%u: ", info->id);
 573	if (info->type < ARRAY_SIZE(map_type_name))
 574		printf("%s  ", map_type_name[info->type]);
 575	else
 576		printf("type %u  ", info->type);
 577
 578	if (*info->name)
 579		printf("name %s  ", info->name);
 580
 581	printf("flags 0x%x", info->map_flags);
 582	print_dev_plain(info->ifindex, info->netns_dev, info->netns_ino);
 583	printf("\n");
 584	printf("\tkey %uB  value %uB  max_entries %u",
 585	       info->key_size, info->value_size, info->max_entries);
 586
 587	if (memlock)
 588		printf("  memlock %sB", memlock);
 589	free(memlock);
 590
 591	if (info->type == BPF_MAP_TYPE_PROG_ARRAY) {
 592		char *owner_prog_type = get_fdinfo(fd, "owner_prog_type");
 593		char *owner_jited = get_fdinfo(fd, "owner_jited");
 594
 595		if (owner_prog_type || owner_jited)
 596			printf("\n\t");
 597		if (owner_prog_type) {
 598			unsigned int prog_type = atoi(owner_prog_type);
 599
 600			if (prog_type < ARRAY_SIZE(prog_type_name))
 601				printf("owner_prog_type %s  ",
 602				       prog_type_name[prog_type]);
 603			else
 604				printf("owner_prog_type %d  ", prog_type);
 605		}
 606		if (owner_jited)
 607			printf("owner%s jited",
 608			       atoi(owner_jited) ? "" : " not");
 609
 610		free(owner_prog_type);
 611		free(owner_jited);
 612	}
 613	close(fd);
 614
 615	if (!hash_empty(map_table.table)) {
 616		struct pinned_obj *obj;
 617
 618		hash_for_each_possible(map_table.table, obj, hash, info->id) {
 619			if (obj->id == info->id)
 620				printf("\n\tpinned %s", obj->path);
 621		}
 622	}
 623	printf("\n");
 624
 625	if (frozen_str) {
 626		frozen = atoi(frozen_str);
 627		free(frozen_str);
 628	}
 629
 630	if (!info->btf_id && !frozen)
 631		return 0;
 632
 633	printf("\t");
 634
 635	if (info->btf_id)
 636		printf("btf_id %d", info->btf_id);
 637
 638	if (frozen)
 639		printf("%sfrozen", info->btf_id ? "  " : "");
 640
 641	printf("\n");
 642	return 0;
 643}
 644
 645static int do_show(int argc, char **argv)
 646{
 647	struct bpf_map_info info = {};
 648	__u32 len = sizeof(info);
 649	__u32 id = 0;
 650	int err;
 651	int fd;
 652
 653	if (show_pinned)
 654		build_pinned_obj_table(&map_table, BPF_OBJ_MAP);
 655
 656	if (argc == 2) {
 657		fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
 658		if (fd < 0)
 659			return -1;
 660
 661		if (json_output)
 662			return show_map_close_json(fd, &info);
 663		else
 664			return show_map_close_plain(fd, &info);
 665	}
 666
 667	if (argc)
 668		return BAD_ARG();
 669
 670	if (json_output)
 671		jsonw_start_array(json_wtr);
 672	while (true) {
 673		err = bpf_map_get_next_id(id, &id);
 674		if (err) {
 675			if (errno == ENOENT)
 676				break;
 677			p_err("can't get next map: %s%s", strerror(errno),
 678			      errno == EINVAL ? " -- kernel too old?" : "");
 679			break;
 680		}
 681
 682		fd = bpf_map_get_fd_by_id(id);
 683		if (fd < 0) {
 684			if (errno == ENOENT)
 685				continue;
 686			p_err("can't get map by id (%u): %s",
 687			      id, strerror(errno));
 688			break;
 689		}
 690
 691		err = bpf_obj_get_info_by_fd(fd, &info, &len);
 692		if (err) {
 693			p_err("can't get map info: %s", strerror(errno));
 694			close(fd);
 695			break;
 696		}
 697
 698		if (json_output)
 699			show_map_close_json(fd, &info);
 700		else
 701			show_map_close_plain(fd, &info);
 702	}
 703	if (json_output)
 704		jsonw_end_array(json_wtr);
 705
 706	return errno == ENOENT ? 0 : -1;
 707}
 708
 709static int dump_map_elem(int fd, void *key, void *value,
 710			 struct bpf_map_info *map_info, struct btf *btf,
 711			 json_writer_t *btf_wtr)
 712{
 713	int num_elems = 0;
 714	int lookup_errno;
 715
 716	if (!bpf_map_lookup_elem(fd, key, value)) {
 717		if (json_output) {
 718			print_entry_json(map_info, key, value, btf);
 719		} else {
 720			if (btf) {
 721				struct btf_dumper d = {
 722					.btf = btf,
 723					.jw = btf_wtr,
 724					.is_plain_text = true,
 725				};
 726
 727				do_dump_btf(&d, map_info, key, value);
 728			} else {
 729				print_entry_plain(map_info, key, value);
 730			}
 731			num_elems++;
 732		}
 733		return num_elems;
 734	}
 735
 736	/* lookup error handling */
 737	lookup_errno = errno;
 738
 739	if (map_is_map_of_maps(map_info->type) ||
 740	    map_is_map_of_progs(map_info->type))
 741		return 0;
 742
 743	if (json_output) {
 744		jsonw_start_object(json_wtr);
 745		jsonw_name(json_wtr, "key");
 746		print_hex_data_json(key, map_info->key_size);
 747		jsonw_name(json_wtr, "value");
 748		jsonw_start_object(json_wtr);
 749		jsonw_string_field(json_wtr, "error", strerror(lookup_errno));
 750		jsonw_end_object(json_wtr);
 751		jsonw_end_object(json_wtr);
 752	} else {
 753		const char *msg = NULL;
 754
 755		if (lookup_errno == ENOENT)
 756			msg = "<no entry>";
 757		else if (lookup_errno == ENOSPC &&
 758			 map_info->type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY)
 759			msg = "<cannot read>";
 760
 761		print_entry_error(map_info, key,
 762				  msg ? : strerror(lookup_errno));
 763	}
 764
 765	return 0;
 766}
 767
 768static int do_dump(int argc, char **argv)
 769{
 770	struct bpf_map_info info = {};
 771	void *key, *value, *prev_key;
 772	unsigned int num_elems = 0;
 
 773	__u32 len = sizeof(info);
 774	json_writer_t *btf_wtr;
 775	struct btf *btf = NULL;
 776	int err;
 777	int fd;
 778
 779	if (argc != 2)
 780		usage();
 781
 782	fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
 783	if (fd < 0)
 784		return -1;
 785
 
 
 
 
 
 
 786	key = malloc(info.key_size);
 787	value = alloc_value(&info);
 788	if (!key || !value) {
 789		p_err("mem alloc failed");
 790		err = -1;
 791		goto exit_free;
 792	}
 793
 794	prev_key = NULL;
 795
 796	err = btf__get_from_id(info.btf_id, &btf);
 797	if (err) {
 798		p_err("failed to get btf");
 799		goto exit_free;
 800	}
 801
 802	if (json_output)
 803		jsonw_start_array(json_wtr);
 804	else
 805		if (btf) {
 806			btf_wtr = get_btf_writer();
 807			if (!btf_wtr) {
 808				p_info("failed to create json writer for btf. falling back to plain output");
 809				btf__free(btf);
 810				btf = NULL;
 811			} else {
 812				jsonw_start_array(btf_wtr);
 813			}
 814		}
 815
 816	if (info.type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY &&
 817	    info.value_size != 8)
 818		p_info("Warning: cannot read values from %s map with value_size != 8",
 819		       map_type_name[info.type]);
 820	while (true) {
 821		err = bpf_map_get_next_key(fd, prev_key, key);
 822		if (err) {
 823			if (errno == ENOENT)
 824				err = 0;
 825			break;
 826		}
 827		num_elems += dump_map_elem(fd, key, value, &info, btf, btf_wtr);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 828		prev_key = key;
 
 829	}
 830
 831	if (json_output)
 832		jsonw_end_array(json_wtr);
 833	else if (btf) {
 834		jsonw_end_array(btf_wtr);
 835		jsonw_destroy(&btf_wtr);
 836	} else {
 837		printf("Found %u element%s\n", num_elems,
 838		       num_elems != 1 ? "s" : "");
 839	}
 840
 841exit_free:
 842	free(key);
 843	free(value);
 844	close(fd);
 845	btf__free(btf);
 846
 847	return err;
 848}
 849
 850static int alloc_key_value(struct bpf_map_info *info, void **key, void **value)
 851{
 852	*key = NULL;
 853	*value = NULL;
 854
 855	if (info->key_size) {
 856		*key = malloc(info->key_size);
 857		if (!*key) {
 858			p_err("key mem alloc failed");
 859			return -1;
 860		}
 861	}
 862
 863	if (info->value_size) {
 864		*value = alloc_value(info);
 865		if (!*value) {
 866			p_err("value mem alloc failed");
 867			free(*key);
 868			*key = NULL;
 869			return -1;
 870		}
 871	}
 872
 873	return 0;
 874}
 875
 876static int do_update(int argc, char **argv)
 877{
 878	struct bpf_map_info info = {};
 879	__u32 len = sizeof(info);
 880	__u32 *value_fd = NULL;
 881	__u32 flags = BPF_ANY;
 882	void *key, *value;
 883	int fd, err;
 884
 885	if (argc < 2)
 886		usage();
 887
 888	fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
 889	if (fd < 0)
 890		return -1;
 891
 892	err = alloc_key_value(&info, &key, &value);
 893	if (err)
 
 
 
 894		goto exit_free;
 
 895
 896	err = parse_elem(argv, &info, key, value, info.key_size,
 897			 info.value_size, &flags, &value_fd);
 898	if (err)
 899		goto exit_free;
 900
 901	err = bpf_map_update_elem(fd, key, value, flags);
 902	if (err) {
 903		p_err("update failed: %s", strerror(errno));
 904		goto exit_free;
 905	}
 906
 907exit_free:
 908	if (value_fd)
 909		close(*value_fd);
 910	free(key);
 911	free(value);
 912	close(fd);
 913
 914	if (!err && json_output)
 915		jsonw_null(json_wtr);
 916	return err;
 917}
 918
 919static void print_key_value(struct bpf_map_info *info, void *key,
 920			    void *value)
 921{
 922	json_writer_t *btf_wtr;
 923	struct btf *btf = NULL;
 924	int err;
 925
 926	err = btf__get_from_id(info->btf_id, &btf);
 927	if (err) {
 928		p_err("failed to get btf");
 929		return;
 930	}
 931
 932	if (json_output) {
 933		print_entry_json(info, key, value, btf);
 934	} else if (btf) {
 935		/* if here json_wtr wouldn't have been initialised,
 936		 * so let's create separate writer for btf
 937		 */
 938		btf_wtr = get_btf_writer();
 939		if (!btf_wtr) {
 940			p_info("failed to create json writer for btf. falling back to plain output");
 941			btf__free(btf);
 942			btf = NULL;
 943			print_entry_plain(info, key, value);
 944		} else {
 945			struct btf_dumper d = {
 946				.btf = btf,
 947				.jw = btf_wtr,
 948				.is_plain_text = true,
 949			};
 950
 951			do_dump_btf(&d, info, key, value);
 952			jsonw_destroy(&btf_wtr);
 953		}
 954	} else {
 955		print_entry_plain(info, key, value);
 956	}
 957	btf__free(btf);
 958}
 959
 960static int do_lookup(int argc, char **argv)
 961{
 962	struct bpf_map_info info = {};
 963	__u32 len = sizeof(info);
 964	void *key, *value;
 965	int err;
 966	int fd;
 967
 968	if (argc < 2)
 969		usage();
 970
 971	fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
 972	if (fd < 0)
 973		return -1;
 974
 975	err = alloc_key_value(&info, &key, &value);
 976	if (err)
 
 
 
 977		goto exit_free;
 
 978
 979	err = parse_elem(argv, &info, key, NULL, info.key_size, 0, NULL, NULL);
 980	if (err)
 981		goto exit_free;
 982
 983	err = bpf_map_lookup_elem(fd, key, value);
 984	if (err) {
 985		if (errno == ENOENT) {
 986			if (json_output) {
 987				jsonw_null(json_wtr);
 988			} else {
 989				printf("key:\n");
 990				fprint_hex(stdout, key, info.key_size, " ");
 991				printf("\n\nNot found\n");
 992			}
 993		} else {
 994			p_err("lookup failed: %s", strerror(errno));
 
 
 995		}
 996
 997		goto exit_free;
 998	}
 999
1000	/* here means bpf_map_lookup_elem() succeeded */
1001	print_key_value(&info, key, value);
1002
1003exit_free:
1004	free(key);
1005	free(value);
1006	close(fd);
1007
1008	return err;
1009}
1010
1011static int do_getnext(int argc, char **argv)
1012{
1013	struct bpf_map_info info = {};
1014	__u32 len = sizeof(info);
1015	void *key, *nextkey;
1016	int err;
1017	int fd;
1018
1019	if (argc < 2)
1020		usage();
1021
1022	fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
1023	if (fd < 0)
1024		return -1;
1025
1026	key = malloc(info.key_size);
1027	nextkey = malloc(info.key_size);
1028	if (!key || !nextkey) {
1029		p_err("mem alloc failed");
1030		err = -1;
1031		goto exit_free;
1032	}
1033
1034	if (argc) {
1035		err = parse_elem(argv, &info, key, NULL, info.key_size, 0,
1036				 NULL, NULL);
1037		if (err)
1038			goto exit_free;
1039	} else {
1040		free(key);
1041		key = NULL;
1042	}
1043
1044	err = bpf_map_get_next_key(fd, key, nextkey);
1045	if (err) {
1046		p_err("can't get next key: %s", strerror(errno));
1047		goto exit_free;
1048	}
1049
1050	if (json_output) {
1051		jsonw_start_object(json_wtr);
1052		if (key) {
1053			jsonw_name(json_wtr, "key");
1054			print_hex_data_json(key, info.key_size);
1055		} else {
1056			jsonw_null_field(json_wtr, "key");
1057		}
1058		jsonw_name(json_wtr, "next_key");
1059		print_hex_data_json(nextkey, info.key_size);
1060		jsonw_end_object(json_wtr);
1061	} else {
1062		if (key) {
1063			printf("key:\n");
1064			fprint_hex(stdout, key, info.key_size, " ");
1065			printf("\n");
1066		} else {
1067			printf("key: None\n");
1068		}
1069		printf("next key:\n");
1070		fprint_hex(stdout, nextkey, info.key_size, " ");
1071		printf("\n");
1072	}
1073
1074exit_free:
1075	free(nextkey);
1076	free(key);
1077	close(fd);
1078
1079	return err;
1080}
1081
1082static int do_delete(int argc, char **argv)
1083{
1084	struct bpf_map_info info = {};
1085	__u32 len = sizeof(info);
1086	void *key;
1087	int err;
1088	int fd;
1089
1090	if (argc < 2)
1091		usage();
1092
1093	fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
1094	if (fd < 0)
1095		return -1;
1096
1097	key = malloc(info.key_size);
1098	if (!key) {
1099		p_err("mem alloc failed");
1100		err = -1;
1101		goto exit_free;
1102	}
1103
1104	err = parse_elem(argv, &info, key, NULL, info.key_size, 0, NULL, NULL);
1105	if (err)
1106		goto exit_free;
1107
1108	err = bpf_map_delete_elem(fd, key);
1109	if (err)
1110		p_err("delete failed: %s", strerror(errno));
1111
1112exit_free:
1113	free(key);
1114	close(fd);
1115
1116	if (!err && json_output)
1117		jsonw_null(json_wtr);
1118	return err;
1119}
1120
1121static int do_pin(int argc, char **argv)
1122{
1123	int err;
1124
1125	err = do_pin_any(argc, argv, bpf_map_get_fd_by_id);
1126	if (!err && json_output)
1127		jsonw_null(json_wtr);
1128	return err;
1129}
1130
1131static int do_create(int argc, char **argv)
1132{
1133	struct bpf_create_map_attr attr = { NULL, };
1134	const char *pinfile;
1135	int err, fd;
1136
1137	if (!REQ_ARGS(7))
1138		return -1;
1139	pinfile = GET_ARG();
1140
1141	while (argc) {
1142		if (!REQ_ARGS(2))
1143			return -1;
1144
1145		if (is_prefix(*argv, "type")) {
1146			NEXT_ARG();
1147
1148			if (attr.map_type) {
1149				p_err("map type already specified");
1150				return -1;
1151			}
1152
1153			attr.map_type = map_type_from_str(*argv);
1154			if ((int)attr.map_type < 0) {
1155				p_err("unrecognized map type: %s", *argv);
1156				return -1;
1157			}
1158			NEXT_ARG();
1159		} else if (is_prefix(*argv, "name")) {
1160			NEXT_ARG();
1161			attr.name = GET_ARG();
1162		} else if (is_prefix(*argv, "key")) {
1163			if (parse_u32_arg(&argc, &argv, &attr.key_size,
1164					  "key size"))
1165				return -1;
1166		} else if (is_prefix(*argv, "value")) {
1167			if (parse_u32_arg(&argc, &argv, &attr.value_size,
1168					  "value size"))
1169				return -1;
1170		} else if (is_prefix(*argv, "entries")) {
1171			if (parse_u32_arg(&argc, &argv, &attr.max_entries,
1172					  "max entries"))
1173				return -1;
1174		} else if (is_prefix(*argv, "flags")) {
1175			if (parse_u32_arg(&argc, &argv, &attr.map_flags,
1176					  "flags"))
1177				return -1;
1178		} else if (is_prefix(*argv, "dev")) {
1179			NEXT_ARG();
1180
1181			if (attr.map_ifindex) {
1182				p_err("offload device already specified");
1183				return -1;
1184			}
1185
1186			attr.map_ifindex = if_nametoindex(*argv);
1187			if (!attr.map_ifindex) {
1188				p_err("unrecognized netdevice '%s': %s",
1189				      *argv, strerror(errno));
1190				return -1;
1191			}
1192			NEXT_ARG();
1193		} else {
1194			p_err("unknown arg %s", *argv);
1195			return -1;
1196		}
1197	}
1198
1199	if (!attr.name) {
1200		p_err("map name not specified");
1201		return -1;
1202	}
1203
1204	set_max_rlimit();
1205
1206	fd = bpf_create_map_xattr(&attr);
1207	if (fd < 0) {
1208		p_err("map create failed: %s", strerror(errno));
1209		return -1;
1210	}
1211
1212	err = do_pin_fd(fd, pinfile);
1213	close(fd);
1214	if (err)
1215		return err;
1216
1217	if (json_output)
1218		jsonw_null(json_wtr);
1219	return 0;
1220}
1221
1222static int do_pop_dequeue(int argc, char **argv)
1223{
1224	struct bpf_map_info info = {};
1225	__u32 len = sizeof(info);
1226	void *key, *value;
1227	int err;
1228	int fd;
1229
1230	if (argc < 2)
1231		usage();
1232
1233	fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
1234	if (fd < 0)
1235		return -1;
1236
1237	err = alloc_key_value(&info, &key, &value);
1238	if (err)
1239		goto exit_free;
1240
1241	err = bpf_map_lookup_and_delete_elem(fd, key, value);
1242	if (err) {
1243		if (errno == ENOENT) {
1244			if (json_output)
1245				jsonw_null(json_wtr);
1246			else
1247				printf("Error: empty map\n");
1248		} else {
1249			p_err("pop failed: %s", strerror(errno));
1250		}
1251
1252		goto exit_free;
1253	}
1254
1255	print_key_value(&info, key, value);
1256
1257exit_free:
1258	free(key);
1259	free(value);
1260	close(fd);
1261
1262	return err;
1263}
1264
1265static int do_freeze(int argc, char **argv)
1266{
1267	int err, fd;
1268
1269	if (!REQ_ARGS(2))
1270		return -1;
1271
1272	fd = map_parse_fd(&argc, &argv);
1273	if (fd < 0)
1274		return -1;
1275
1276	if (argc) {
1277		close(fd);
1278		return BAD_ARG();
1279	}
1280
1281	err = bpf_map_freeze(fd);
1282	close(fd);
1283	if (err) {
1284		p_err("failed to freeze map: %s", strerror(errno));
1285		return err;
1286	}
1287
1288	if (json_output)
1289		jsonw_null(json_wtr);
1290
1291	return 0;
1292}
1293
1294static int do_help(int argc, char **argv)
1295{
1296	if (json_output) {
1297		jsonw_null(json_wtr);
1298		return 0;
1299	}
1300
1301	fprintf(stderr,
1302		"Usage: %s %s { show | list }   [MAP]\n"
1303		"       %s %s create     FILE type TYPE key KEY_SIZE value VALUE_SIZE \\\n"
1304		"                              entries MAX_ENTRIES name NAME [flags FLAGS] \\\n"
1305		"                              [dev NAME]\n"
1306		"       %s %s dump       MAP\n"
1307		"       %s %s update     MAP [key DATA] [value VALUE] [UPDATE_FLAGS]\n"
1308		"       %s %s lookup     MAP [key DATA]\n"
1309		"       %s %s getnext    MAP [key DATA]\n"
1310		"       %s %s delete     MAP  key DATA\n"
1311		"       %s %s pin        MAP  FILE\n"
1312		"       %s %s event_pipe MAP [cpu N index M]\n"
1313		"       %s %s peek       MAP\n"
1314		"       %s %s push       MAP value VALUE\n"
1315		"       %s %s pop        MAP\n"
1316		"       %s %s enqueue    MAP value VALUE\n"
1317		"       %s %s dequeue    MAP\n"
1318		"       %s %s freeze     MAP\n"
1319		"       %s %s help\n"
1320		"\n"
1321		"       " HELP_SPEC_MAP "\n"
1322		"       DATA := { [hex] BYTES }\n"
1323		"       " HELP_SPEC_PROGRAM "\n"
1324		"       VALUE := { DATA | MAP | PROG }\n"
1325		"       UPDATE_FLAGS := { any | exist | noexist }\n"
1326		"       TYPE := { hash | array | prog_array | perf_event_array | percpu_hash |\n"
1327		"                 percpu_array | stack_trace | cgroup_array | lru_hash |\n"
1328		"                 lru_percpu_hash | lpm_trie | array_of_maps | hash_of_maps |\n"
1329		"                 devmap | devmap_hash | sockmap | cpumap | xskmap | sockhash |\n"
1330		"                 cgroup_storage | reuseport_sockarray | percpu_cgroup_storage }\n"
1331		"       " HELP_SPEC_OPTIONS "\n"
1332		"",
1333		bin_name, argv[-2], bin_name, argv[-2], bin_name, argv[-2],
1334		bin_name, argv[-2], bin_name, argv[-2], bin_name, argv[-2],
1335		bin_name, argv[-2], bin_name, argv[-2], bin_name, argv[-2],
1336		bin_name, argv[-2], bin_name, argv[-2], bin_name, argv[-2],
1337		bin_name, argv[-2], bin_name, argv[-2], bin_name, argv[-2],
1338		bin_name, argv[-2]);
1339
1340	return 0;
1341}
1342
1343static const struct cmd cmds[] = {
1344	{ "show",	do_show },
1345	{ "list",	do_show },
1346	{ "help",	do_help },
1347	{ "dump",	do_dump },
1348	{ "update",	do_update },
1349	{ "lookup",	do_lookup },
1350	{ "getnext",	do_getnext },
1351	{ "delete",	do_delete },
1352	{ "pin",	do_pin },
1353	{ "event_pipe",	do_event_pipe },
1354	{ "create",	do_create },
1355	{ "peek",	do_lookup },
1356	{ "push",	do_update },
1357	{ "enqueue",	do_update },
1358	{ "pop",	do_pop_dequeue },
1359	{ "dequeue",	do_pop_dequeue },
1360	{ "freeze",	do_freeze },
1361	{ 0 }
1362};
1363
1364int do_map(int argc, char **argv)
1365{
1366	return cmd_select(cmds, argc, argv, do_help);
1367}
v4.17
  1/*
  2 * Copyright (C) 2017 Netronome Systems, Inc.
  3 *
  4 * This software is dual licensed under the GNU General License Version 2,
  5 * June 1991 as shown in the file COPYING in the top-level directory of this
  6 * source tree or the BSD 2-Clause License provided below.  You have the
  7 * option to license this software under the complete terms of either license.
  8 *
  9 * The BSD 2-Clause License:
 10 *
 11 *     Redistribution and use in source and binary forms, with or
 12 *     without modification, are permitted provided that the following
 13 *     conditions are met:
 14 *
 15 *      1. Redistributions of source code must retain the above
 16 *         copyright notice, this list of conditions and the following
 17 *         disclaimer.
 18 *
 19 *      2. Redistributions in binary form must reproduce the above
 20 *         copyright notice, this list of conditions and the following
 21 *         disclaimer in the documentation and/or other materials
 22 *         provided with the distribution.
 23 *
 24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 31 * SOFTWARE.
 32 */
 33
 34/* Author: Jakub Kicinski <kubakici@wp.pl> */
 35
 36#include <assert.h>
 37#include <ctype.h>
 38#include <errno.h>
 39#include <fcntl.h>
 
 
 
 40#include <stdbool.h>
 41#include <stdio.h>
 42#include <stdlib.h>
 43#include <string.h>
 44#include <unistd.h>
 45#include <sys/types.h>
 46#include <sys/stat.h>
 47
 48#include <bpf.h>
 49
 
 
 50#include "main.h"
 51
 52static const char * const map_type_name[] = {
 53	[BPF_MAP_TYPE_UNSPEC]		= "unspec",
 54	[BPF_MAP_TYPE_HASH]		= "hash",
 55	[BPF_MAP_TYPE_ARRAY]		= "array",
 56	[BPF_MAP_TYPE_PROG_ARRAY]	= "prog_array",
 57	[BPF_MAP_TYPE_PERF_EVENT_ARRAY]	= "perf_event_array",
 58	[BPF_MAP_TYPE_PERCPU_HASH]	= "percpu_hash",
 59	[BPF_MAP_TYPE_PERCPU_ARRAY]	= "percpu_array",
 60	[BPF_MAP_TYPE_STACK_TRACE]	= "stack_trace",
 61	[BPF_MAP_TYPE_CGROUP_ARRAY]	= "cgroup_array",
 62	[BPF_MAP_TYPE_LRU_HASH]		= "lru_hash",
 63	[BPF_MAP_TYPE_LRU_PERCPU_HASH]	= "lru_percpu_hash",
 64	[BPF_MAP_TYPE_LPM_TRIE]		= "lpm_trie",
 65	[BPF_MAP_TYPE_ARRAY_OF_MAPS]	= "array_of_maps",
 66	[BPF_MAP_TYPE_HASH_OF_MAPS]	= "hash_of_maps",
 67	[BPF_MAP_TYPE_DEVMAP]		= "devmap",
 68	[BPF_MAP_TYPE_SOCKMAP]		= "sockmap",
 69	[BPF_MAP_TYPE_CPUMAP]		= "cpumap",
 
 
 
 
 
 
 
 
 
 70};
 71
 72static unsigned int get_possible_cpus(void)
 73{
 74	static unsigned int result;
 75	char buf[128];
 76	long int n;
 77	char *ptr;
 78	int fd;
 79
 80	if (result)
 81		return result;
 82
 83	fd = open("/sys/devices/system/cpu/possible", O_RDONLY);
 84	if (fd < 0) {
 85		p_err("can't open sysfs possible cpus");
 86		exit(-1);
 87	}
 88
 89	n = read(fd, buf, sizeof(buf));
 90	if (n < 2) {
 91		p_err("can't read sysfs possible cpus");
 92		exit(-1);
 93	}
 94	close(fd);
 95
 96	if (n == sizeof(buf)) {
 97		p_err("read sysfs possible cpus overflow");
 98		exit(-1);
 99	}
100
101	ptr = buf;
102	n = 0;
103	while (*ptr && *ptr != '\n') {
104		unsigned int a, b;
105
106		if (sscanf(ptr, "%u-%u", &a, &b) == 2) {
107			n += b - a + 1;
108
109			ptr = strchr(ptr, '-') + 1;
110		} else if (sscanf(ptr, "%u", &a) == 1) {
111			n++;
112		} else {
113			assert(0);
114		}
115
116		while (isdigit(*ptr))
117			ptr++;
118		if (*ptr == ',')
119			ptr++;
120	}
121
122	result = n;
123
124	return result;
125}
126
127static bool map_is_per_cpu(__u32 type)
128{
129	return type == BPF_MAP_TYPE_PERCPU_HASH ||
130	       type == BPF_MAP_TYPE_PERCPU_ARRAY ||
131	       type == BPF_MAP_TYPE_LRU_PERCPU_HASH;
 
132}
133
134static bool map_is_map_of_maps(__u32 type)
135{
136	return type == BPF_MAP_TYPE_ARRAY_OF_MAPS ||
137	       type == BPF_MAP_TYPE_HASH_OF_MAPS;
138}
139
140static bool map_is_map_of_progs(__u32 type)
141{
142	return type == BPF_MAP_TYPE_PROG_ARRAY;
143}
144
 
 
 
 
 
 
 
 
 
 
 
145static void *alloc_value(struct bpf_map_info *info)
146{
147	if (map_is_per_cpu(info->type))
148		return malloc(info->value_size * get_possible_cpus());
 
149	else
150		return malloc(info->value_size);
151}
152
153static int map_parse_fd(int *argc, char ***argv)
154{
155	int fd;
156
157	if (is_prefix(**argv, "id")) {
158		unsigned int id;
159		char *endptr;
160
161		NEXT_ARGP();
162
163		id = strtoul(**argv, &endptr, 0);
164		if (*endptr) {
165			p_err("can't parse %s as ID", **argv);
166			return -1;
167		}
168		NEXT_ARGP();
169
170		fd = bpf_map_get_fd_by_id(id);
171		if (fd < 0)
172			p_err("get map by id (%u): %s", id, strerror(errno));
173		return fd;
174	} else if (is_prefix(**argv, "pinned")) {
175		char *path;
176
177		NEXT_ARGP();
178
179		path = **argv;
180		NEXT_ARGP();
181
182		return open_obj_pinned_any(path, BPF_OBJ_MAP);
183	}
184
185	p_err("expected 'id' or 'pinned', got: '%s'?", **argv);
186	return -1;
187}
188
189static int
190map_parse_fd_and_info(int *argc, char ***argv, void *info, __u32 *info_len)
191{
192	int err;
193	int fd;
194
195	fd = map_parse_fd(argc, argv);
196	if (fd < 0)
197		return -1;
198
199	err = bpf_obj_get_info_by_fd(fd, info, info_len);
200	if (err) {
201		p_err("can't get map info: %s", strerror(errno));
202		close(fd);
203		return err;
204	}
205
206	return fd;
207}
208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
209static void print_entry_json(struct bpf_map_info *info, unsigned char *key,
210			     unsigned char *value)
211{
212	jsonw_start_object(json_wtr);
213
214	if (!map_is_per_cpu(info->type)) {
215		jsonw_name(json_wtr, "key");
216		print_hex_data_json(key, info->key_size);
217		jsonw_name(json_wtr, "value");
218		print_hex_data_json(value, info->value_size);
 
 
 
 
 
 
 
 
 
 
219	} else {
220		unsigned int i, n;
221
222		n = get_possible_cpus();
 
223
224		jsonw_name(json_wtr, "key");
225		print_hex_data_json(key, info->key_size);
226
227		jsonw_name(json_wtr, "values");
228		jsonw_start_array(json_wtr);
229		for (i = 0; i < n; i++) {
230			jsonw_start_object(json_wtr);
231
232			jsonw_int_field(json_wtr, "cpu", i);
233
234			jsonw_name(json_wtr, "value");
235			print_hex_data_json(value + i * info->value_size,
236					    info->value_size);
237
238			jsonw_end_object(json_wtr);
239		}
240		jsonw_end_array(json_wtr);
 
 
 
 
 
 
 
 
 
 
241	}
242
243	jsonw_end_object(json_wtr);
244}
245
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246static void print_entry_plain(struct bpf_map_info *info, unsigned char *key,
247			      unsigned char *value)
248{
249	if (!map_is_per_cpu(info->type)) {
250		bool single_line, break_names;
251
252		break_names = info->key_size > 16 || info->value_size > 16;
253		single_line = info->key_size + info->value_size <= 24 &&
254			!break_names;
255
256		printf("key:%c", break_names ? '\n' : ' ');
257		fprint_hex(stdout, key, info->key_size, " ");
 
258
259		printf(single_line ? "  " : "\n");
 
260
261		printf("value:%c", break_names ? '\n' : ' ');
262		fprint_hex(stdout, value, info->value_size, " ");
 
 
263
264		printf("\n");
265	} else {
266		unsigned int i, n;
267
268		n = get_possible_cpus();
 
269
270		printf("key:\n");
271		fprint_hex(stdout, key, info->key_size, " ");
272		printf("\n");
273		for (i = 0; i < n; i++) {
274			printf("value (CPU %02d):%c",
275			       i, info->value_size > 16 ? '\n' : ' ');
276			fprint_hex(stdout, value + i * info->value_size,
277				   info->value_size, " ");
278			printf("\n");
279		}
 
 
 
 
 
 
 
 
 
280	}
281}
282
283static char **parse_bytes(char **argv, const char *name, unsigned char *val,
284			  unsigned int n)
285{
286	unsigned int i = 0;
287	char *endptr;
288
 
 
 
 
 
289	while (i < n && argv[i]) {
290		val[i] = strtoul(argv[i], &endptr, 0);
291		if (*endptr) {
292			p_err("error parsing byte: %s", argv[i]);
293			return NULL;
294		}
295		i++;
296	}
297
298	if (i != n) {
299		p_err("%s expected %d bytes got %d", name, n, i);
300		return NULL;
301	}
302
303	return argv + i;
304}
305
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306static int parse_elem(char **argv, struct bpf_map_info *info,
307		      void *key, void *value, __u32 key_size, __u32 value_size,
308		      __u32 *flags, __u32 **value_fd)
309{
310	if (!*argv) {
311		if (!key && !value)
312			return 0;
313		p_err("did not find %s", key ? "key" : "value");
314		return -1;
315	}
316
317	if (is_prefix(*argv, "key")) {
318		if (!key) {
319			if (key_size)
320				p_err("duplicate key");
321			else
322				p_err("unnecessary key");
323			return -1;
324		}
325
326		argv = parse_bytes(argv + 1, "key", key, key_size);
327		if (!argv)
328			return -1;
329
330		return parse_elem(argv, info, NULL, value, key_size, value_size,
331				  flags, value_fd);
332	} else if (is_prefix(*argv, "value")) {
333		int fd;
334
335		if (!value) {
336			if (value_size)
337				p_err("duplicate value");
338			else
339				p_err("unnecessary value");
340			return -1;
341		}
342
343		argv++;
344
345		if (map_is_map_of_maps(info->type)) {
346			int argc = 2;
347
348			if (value_size != 4) {
349				p_err("value smaller than 4B for map in map?");
350				return -1;
351			}
352			if (!argv[0] || !argv[1]) {
353				p_err("not enough value arguments for map in map");
354				return -1;
355			}
356
357			fd = map_parse_fd(&argc, &argv);
358			if (fd < 0)
359				return -1;
360
361			*value_fd = value;
362			**value_fd = fd;
363		} else if (map_is_map_of_progs(info->type)) {
364			int argc = 2;
365
366			if (value_size != 4) {
367				p_err("value smaller than 4B for map of progs?");
368				return -1;
369			}
370			if (!argv[0] || !argv[1]) {
371				p_err("not enough value arguments for map of progs");
372				return -1;
373			}
 
 
 
374
375			fd = prog_parse_fd(&argc, &argv);
376			if (fd < 0)
377				return -1;
378
379			*value_fd = value;
380			**value_fd = fd;
381		} else {
382			argv = parse_bytes(argv, "value", value, value_size);
383			if (!argv)
384				return -1;
 
 
385		}
386
387		return parse_elem(argv, info, key, NULL, key_size, value_size,
388				  flags, NULL);
389	} else if (is_prefix(*argv, "any") || is_prefix(*argv, "noexist") ||
390		   is_prefix(*argv, "exist")) {
391		if (!flags) {
392			p_err("flags specified multiple times: %s", *argv);
393			return -1;
394		}
395
396		if (is_prefix(*argv, "any"))
397			*flags = BPF_ANY;
398		else if (is_prefix(*argv, "noexist"))
399			*flags = BPF_NOEXIST;
400		else if (is_prefix(*argv, "exist"))
401			*flags = BPF_EXIST;
402
403		return parse_elem(argv + 1, info, key, value, key_size,
404				  value_size, NULL, value_fd);
405	}
406
407	p_err("expected key or value, got: %s", *argv);
408	return -1;
409}
410
411static int show_map_close_json(int fd, struct bpf_map_info *info)
412{
413	char *memlock;
 
414
415	memlock = get_fdinfo(fd, "memlock");
416	close(fd);
417
418	jsonw_start_object(json_wtr);
419
420	jsonw_uint_field(json_wtr, "id", info->id);
421	if (info->type < ARRAY_SIZE(map_type_name))
422		jsonw_string_field(json_wtr, "type",
423				   map_type_name[info->type]);
424	else
425		jsonw_uint_field(json_wtr, "type", info->type);
426
427	if (*info->name)
428		jsonw_string_field(json_wtr, "name", info->name);
429
430	jsonw_name(json_wtr, "flags");
431	jsonw_printf(json_wtr, "%d", info->map_flags);
432
433	print_dev_json(info->ifindex, info->netns_dev, info->netns_ino);
434
435	jsonw_uint_field(json_wtr, "bytes_key", info->key_size);
436	jsonw_uint_field(json_wtr, "bytes_value", info->value_size);
437	jsonw_uint_field(json_wtr, "max_entries", info->max_entries);
438
439	if (memlock)
440		jsonw_int_field(json_wtr, "bytes_memlock", atoi(memlock));
441	free(memlock);
442
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
443	if (!hash_empty(map_table.table)) {
444		struct pinned_obj *obj;
445
446		jsonw_name(json_wtr, "pinned");
447		jsonw_start_array(json_wtr);
448		hash_for_each_possible(map_table.table, obj, hash, info->id) {
449			if (obj->id == info->id)
450				jsonw_string(json_wtr, obj->path);
451		}
452		jsonw_end_array(json_wtr);
453	}
454
455	jsonw_end_object(json_wtr);
456
457	return 0;
458}
459
460static int show_map_close_plain(int fd, struct bpf_map_info *info)
461{
462	char *memlock;
 
463
464	memlock = get_fdinfo(fd, "memlock");
465	close(fd);
466
467	printf("%u: ", info->id);
468	if (info->type < ARRAY_SIZE(map_type_name))
469		printf("%s  ", map_type_name[info->type]);
470	else
471		printf("type %u  ", info->type);
472
473	if (*info->name)
474		printf("name %s  ", info->name);
475
476	printf("flags 0x%x", info->map_flags);
477	print_dev_plain(info->ifindex, info->netns_dev, info->netns_ino);
478	printf("\n");
479	printf("\tkey %uB  value %uB  max_entries %u",
480	       info->key_size, info->value_size, info->max_entries);
481
482	if (memlock)
483		printf("  memlock %sB", memlock);
484	free(memlock);
485
486	printf("\n");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
487	if (!hash_empty(map_table.table)) {
488		struct pinned_obj *obj;
489
490		hash_for_each_possible(map_table.table, obj, hash, info->id) {
491			if (obj->id == info->id)
492				printf("\tpinned %s\n", obj->path);
493		}
494	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
495	return 0;
496}
497
498static int do_show(int argc, char **argv)
499{
500	struct bpf_map_info info = {};
501	__u32 len = sizeof(info);
502	__u32 id = 0;
503	int err;
504	int fd;
505
506	if (show_pinned)
507		build_pinned_obj_table(&map_table, BPF_OBJ_MAP);
508
509	if (argc == 2) {
510		fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
511		if (fd < 0)
512			return -1;
513
514		if (json_output)
515			return show_map_close_json(fd, &info);
516		else
517			return show_map_close_plain(fd, &info);
518	}
519
520	if (argc)
521		return BAD_ARG();
522
523	if (json_output)
524		jsonw_start_array(json_wtr);
525	while (true) {
526		err = bpf_map_get_next_id(id, &id);
527		if (err) {
528			if (errno == ENOENT)
529				break;
530			p_err("can't get next map: %s%s", strerror(errno),
531			      errno == EINVAL ? " -- kernel too old?" : "");
532			break;
533		}
534
535		fd = bpf_map_get_fd_by_id(id);
536		if (fd < 0) {
537			if (errno == ENOENT)
538				continue;
539			p_err("can't get map by id (%u): %s",
540			      id, strerror(errno));
541			break;
542		}
543
544		err = bpf_obj_get_info_by_fd(fd, &info, &len);
545		if (err) {
546			p_err("can't get map info: %s", strerror(errno));
547			close(fd);
548			break;
549		}
550
551		if (json_output)
552			show_map_close_json(fd, &info);
553		else
554			show_map_close_plain(fd, &info);
555	}
556	if (json_output)
557		jsonw_end_array(json_wtr);
558
559	return errno == ENOENT ? 0 : -1;
560}
561
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
562static int do_dump(int argc, char **argv)
563{
 
564	void *key, *value, *prev_key;
565	unsigned int num_elems = 0;
566	struct bpf_map_info info = {};
567	__u32 len = sizeof(info);
 
 
568	int err;
569	int fd;
570
571	if (argc != 2)
572		usage();
573
574	fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
575	if (fd < 0)
576		return -1;
577
578	if (map_is_map_of_maps(info.type) || map_is_map_of_progs(info.type)) {
579		p_err("Dumping maps of maps and program maps not supported");
580		close(fd);
581		return -1;
582	}
583
584	key = malloc(info.key_size);
585	value = alloc_value(&info);
586	if (!key || !value) {
587		p_err("mem alloc failed");
588		err = -1;
589		goto exit_free;
590	}
591
592	prev_key = NULL;
 
 
 
 
 
 
 
593	if (json_output)
594		jsonw_start_array(json_wtr);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
595	while (true) {
596		err = bpf_map_get_next_key(fd, prev_key, key);
597		if (err) {
598			if (errno == ENOENT)
599				err = 0;
600			break;
601		}
602
603		if (!bpf_map_lookup_elem(fd, key, value)) {
604			if (json_output)
605				print_entry_json(&info, key, value);
606			else
607				print_entry_plain(&info, key, value);
608		} else {
609			if (json_output) {
610				jsonw_name(json_wtr, "key");
611				print_hex_data_json(key, info.key_size);
612				jsonw_name(json_wtr, "value");
613				jsonw_start_object(json_wtr);
614				jsonw_string_field(json_wtr, "error",
615						   "can't lookup element");
616				jsonw_end_object(json_wtr);
617			} else {
618				p_info("can't lookup element with key: ");
619				fprint_hex(stderr, key, info.key_size, " ");
620				fprintf(stderr, "\n");
621			}
622		}
623
624		prev_key = key;
625		num_elems++;
626	}
627
628	if (json_output)
629		jsonw_end_array(json_wtr);
630	else
 
 
 
631		printf("Found %u element%s\n", num_elems,
632		       num_elems != 1 ? "s" : "");
 
633
634exit_free:
635	free(key);
636	free(value);
637	close(fd);
 
638
639	return err;
640}
641
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
642static int do_update(int argc, char **argv)
643{
644	struct bpf_map_info info = {};
645	__u32 len = sizeof(info);
646	__u32 *value_fd = NULL;
647	__u32 flags = BPF_ANY;
648	void *key, *value;
649	int fd, err;
650
651	if (argc < 2)
652		usage();
653
654	fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
655	if (fd < 0)
656		return -1;
657
658	key = malloc(info.key_size);
659	value = alloc_value(&info);
660	if (!key || !value) {
661		p_err("mem alloc failed");
662		err = -1;
663		goto exit_free;
664	}
665
666	err = parse_elem(argv, &info, key, value, info.key_size,
667			 info.value_size, &flags, &value_fd);
668	if (err)
669		goto exit_free;
670
671	err = bpf_map_update_elem(fd, key, value, flags);
672	if (err) {
673		p_err("update failed: %s", strerror(errno));
674		goto exit_free;
675	}
676
677exit_free:
678	if (value_fd)
679		close(*value_fd);
680	free(key);
681	free(value);
682	close(fd);
683
684	if (!err && json_output)
685		jsonw_null(json_wtr);
686	return err;
687}
688
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
689static int do_lookup(int argc, char **argv)
690{
691	struct bpf_map_info info = {};
692	__u32 len = sizeof(info);
693	void *key, *value;
694	int err;
695	int fd;
696
697	if (argc < 2)
698		usage();
699
700	fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
701	if (fd < 0)
702		return -1;
703
704	key = malloc(info.key_size);
705	value = alloc_value(&info);
706	if (!key || !value) {
707		p_err("mem alloc failed");
708		err = -1;
709		goto exit_free;
710	}
711
712	err = parse_elem(argv, &info, key, NULL, info.key_size, 0, NULL, NULL);
713	if (err)
714		goto exit_free;
715
716	err = bpf_map_lookup_elem(fd, key, value);
717	if (!err) {
718		if (json_output)
719			print_entry_json(&info, key, value);
720		else
721			print_entry_plain(&info, key, value);
722	} else if (errno == ENOENT) {
723		if (json_output) {
724			jsonw_null(json_wtr);
 
725		} else {
726			printf("key:\n");
727			fprint_hex(stdout, key, info.key_size, " ");
728			printf("\n\nNot found\n");
729		}
730	} else {
731		p_err("lookup failed: %s", strerror(errno));
732	}
733
 
 
 
734exit_free:
735	free(key);
736	free(value);
737	close(fd);
738
739	return err;
740}
741
742static int do_getnext(int argc, char **argv)
743{
744	struct bpf_map_info info = {};
745	__u32 len = sizeof(info);
746	void *key, *nextkey;
747	int err;
748	int fd;
749
750	if (argc < 2)
751		usage();
752
753	fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
754	if (fd < 0)
755		return -1;
756
757	key = malloc(info.key_size);
758	nextkey = malloc(info.key_size);
759	if (!key || !nextkey) {
760		p_err("mem alloc failed");
761		err = -1;
762		goto exit_free;
763	}
764
765	if (argc) {
766		err = parse_elem(argv, &info, key, NULL, info.key_size, 0,
767				 NULL, NULL);
768		if (err)
769			goto exit_free;
770	} else {
771		free(key);
772		key = NULL;
773	}
774
775	err = bpf_map_get_next_key(fd, key, nextkey);
776	if (err) {
777		p_err("can't get next key: %s", strerror(errno));
778		goto exit_free;
779	}
780
781	if (json_output) {
782		jsonw_start_object(json_wtr);
783		if (key) {
784			jsonw_name(json_wtr, "key");
785			print_hex_data_json(key, info.key_size);
786		} else {
787			jsonw_null_field(json_wtr, "key");
788		}
789		jsonw_name(json_wtr, "next_key");
790		print_hex_data_json(nextkey, info.key_size);
791		jsonw_end_object(json_wtr);
792	} else {
793		if (key) {
794			printf("key:\n");
795			fprint_hex(stdout, key, info.key_size, " ");
796			printf("\n");
797		} else {
798			printf("key: None\n");
799		}
800		printf("next key:\n");
801		fprint_hex(stdout, nextkey, info.key_size, " ");
802		printf("\n");
803	}
804
805exit_free:
806	free(nextkey);
807	free(key);
808	close(fd);
809
810	return err;
811}
812
813static int do_delete(int argc, char **argv)
814{
815	struct bpf_map_info info = {};
816	__u32 len = sizeof(info);
817	void *key;
818	int err;
819	int fd;
820
821	if (argc < 2)
822		usage();
823
824	fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
825	if (fd < 0)
826		return -1;
827
828	key = malloc(info.key_size);
829	if (!key) {
830		p_err("mem alloc failed");
831		err = -1;
832		goto exit_free;
833	}
834
835	err = parse_elem(argv, &info, key, NULL, info.key_size, 0, NULL, NULL);
836	if (err)
837		goto exit_free;
838
839	err = bpf_map_delete_elem(fd, key);
840	if (err)
841		p_err("delete failed: %s", strerror(errno));
842
843exit_free:
844	free(key);
845	close(fd);
846
847	if (!err && json_output)
848		jsonw_null(json_wtr);
849	return err;
850}
851
852static int do_pin(int argc, char **argv)
853{
854	int err;
855
856	err = do_pin_any(argc, argv, bpf_map_get_fd_by_id);
857	if (!err && json_output)
858		jsonw_null(json_wtr);
859	return err;
860}
861
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
862static int do_help(int argc, char **argv)
863{
864	if (json_output) {
865		jsonw_null(json_wtr);
866		return 0;
867	}
868
869	fprintf(stderr,
870		"Usage: %s %s { show | list }   [MAP]\n"
871		"       %s %s dump    MAP\n"
872		"       %s %s update  MAP  key BYTES value VALUE [UPDATE_FLAGS]\n"
873		"       %s %s lookup  MAP  key BYTES\n"
874		"       %s %s getnext MAP [key BYTES]\n"
875		"       %s %s delete  MAP  key BYTES\n"
876		"       %s %s pin     MAP  FILE\n"
 
 
 
 
 
 
 
 
 
 
877		"       %s %s help\n"
878		"\n"
879		"       MAP := { id MAP_ID | pinned FILE }\n"
 
880		"       " HELP_SPEC_PROGRAM "\n"
881		"       VALUE := { BYTES | MAP | PROG }\n"
882		"       UPDATE_FLAGS := { any | exist | noexist }\n"
 
 
 
 
 
883		"       " HELP_SPEC_OPTIONS "\n"
884		"",
885		bin_name, argv[-2], bin_name, argv[-2], bin_name, argv[-2],
886		bin_name, argv[-2], bin_name, argv[-2], bin_name, argv[-2],
887		bin_name, argv[-2], bin_name, argv[-2]);
 
 
 
888
889	return 0;
890}
891
892static const struct cmd cmds[] = {
893	{ "show",	do_show },
894	{ "list",	do_show },
895	{ "help",	do_help },
896	{ "dump",	do_dump },
897	{ "update",	do_update },
898	{ "lookup",	do_lookup },
899	{ "getnext",	do_getnext },
900	{ "delete",	do_delete },
901	{ "pin",	do_pin },
 
 
 
 
 
 
 
 
902	{ 0 }
903};
904
905int do_map(int argc, char **argv)
906{
907	return cmd_select(cmds, argc, argv, do_help);
908}