blob: a152c1a5c94c79dc03d85a1ce1b8d312276c1c66 [file] [log] [blame]
Jakub Kicinski71bb4282017-10-04 20:10:04 -07001/*
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};
70
71static unsigned int get_possible_cpus(void)
72{
73 static unsigned int result;
74 char buf[128];
75 long int n;
76 char *ptr;
77 int fd;
78
79 if (result)
80 return result;
81
82 fd = open("/sys/devices/system/cpu/possible", O_RDONLY);
83 if (fd < 0) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -070084 p_err("can't open sysfs possible cpus");
Jakub Kicinski71bb4282017-10-04 20:10:04 -070085 exit(-1);
86 }
87
88 n = read(fd, buf, sizeof(buf));
89 if (n < 2) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -070090 p_err("can't read sysfs possible cpus");
Jakub Kicinski71bb4282017-10-04 20:10:04 -070091 exit(-1);
92 }
93 close(fd);
94
95 if (n == sizeof(buf)) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -070096 p_err("read sysfs possible cpus overflow");
Jakub Kicinski71bb4282017-10-04 20:10:04 -070097 exit(-1);
98 }
99
100 ptr = buf;
101 n = 0;
102 while (*ptr && *ptr != '\n') {
103 unsigned int a, b;
104
105 if (sscanf(ptr, "%u-%u", &a, &b) == 2) {
106 n += b - a + 1;
107
108 ptr = strchr(ptr, '-') + 1;
109 } else if (sscanf(ptr, "%u", &a) == 1) {
110 n++;
111 } else {
112 assert(0);
113 }
114
115 while (isdigit(*ptr))
116 ptr++;
117 if (*ptr == ',')
118 ptr++;
119 }
120
121 result = n;
122
123 return result;
124}
125
126static bool map_is_per_cpu(__u32 type)
127{
128 return type == BPF_MAP_TYPE_PERCPU_HASH ||
129 type == BPF_MAP_TYPE_PERCPU_ARRAY ||
130 type == BPF_MAP_TYPE_LRU_PERCPU_HASH;
131}
132
133static bool map_is_map_of_maps(__u32 type)
134{
135 return type == BPF_MAP_TYPE_ARRAY_OF_MAPS ||
136 type == BPF_MAP_TYPE_HASH_OF_MAPS;
137}
138
139static bool map_is_map_of_progs(__u32 type)
140{
141 return type == BPF_MAP_TYPE_PROG_ARRAY;
142}
143
144static void *alloc_value(struct bpf_map_info *info)
145{
146 if (map_is_per_cpu(info->type))
147 return malloc(info->value_size * get_possible_cpus());
148 else
149 return malloc(info->value_size);
150}
151
152static int map_parse_fd(int *argc, char ***argv)
153{
154 int fd;
155
156 if (is_prefix(**argv, "id")) {
157 unsigned int id;
158 char *endptr;
159
160 NEXT_ARGP();
161
162 id = strtoul(**argv, &endptr, 0);
163 if (*endptr) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700164 p_err("can't parse %s as ID", **argv);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700165 return -1;
166 }
167 NEXT_ARGP();
168
169 fd = bpf_map_get_fd_by_id(id);
170 if (fd < 0)
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700171 p_err("get map by id (%u): %s", id, strerror(errno));
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700172 return fd;
173 } else if (is_prefix(**argv, "pinned")) {
174 char *path;
175
176 NEXT_ARGP();
177
178 path = **argv;
179 NEXT_ARGP();
180
181 return open_obj_pinned_any(path, BPF_OBJ_MAP);
182 }
183
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700184 p_err("expected 'id' or 'pinned', got: '%s'?", **argv);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700185 return -1;
186}
187
188static int
189map_parse_fd_and_info(int *argc, char ***argv, void *info, __u32 *info_len)
190{
191 int err;
192 int fd;
193
194 fd = map_parse_fd(argc, argv);
195 if (fd < 0)
196 return -1;
197
198 err = bpf_obj_get_info_by_fd(fd, info, info_len);
199 if (err) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700200 p_err("can't get map info: %s", strerror(errno));
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700201 close(fd);
202 return err;
203 }
204
205 return fd;
206}
207
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700208static void print_entry_json(struct bpf_map_info *info, unsigned char *key,
209 unsigned char *value)
210{
211 jsonw_start_object(json_wtr);
212
213 if (!map_is_per_cpu(info->type)) {
214 jsonw_name(json_wtr, "key");
215 print_hex_data_json(key, info->key_size);
216 jsonw_name(json_wtr, "value");
217 print_hex_data_json(value, info->value_size);
218 } else {
219 unsigned int i, n;
220
221 n = get_possible_cpus();
222
223 jsonw_name(json_wtr, "key");
224 print_hex_data_json(key, info->key_size);
225
226 jsonw_name(json_wtr, "values");
227 jsonw_start_array(json_wtr);
228 for (i = 0; i < n; i++) {
229 jsonw_start_object(json_wtr);
230
231 jsonw_int_field(json_wtr, "cpu", i);
232
233 jsonw_name(json_wtr, "value");
234 print_hex_data_json(value + i * info->value_size,
235 info->value_size);
236
237 jsonw_end_object(json_wtr);
238 }
239 jsonw_end_array(json_wtr);
240 }
241
242 jsonw_end_object(json_wtr);
243}
244
245static void print_entry_plain(struct bpf_map_info *info, unsigned char *key,
246 unsigned char *value)
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700247{
248 if (!map_is_per_cpu(info->type)) {
249 bool single_line, break_names;
250
251 break_names = info->key_size > 16 || info->value_size > 16;
252 single_line = info->key_size + info->value_size <= 24 &&
253 !break_names;
254
255 printf("key:%c", break_names ? '\n' : ' ');
Quentin Monnet9cbe1f582017-10-19 15:46:19 -0700256 fprint_hex(stdout, key, info->key_size, " ");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700257
258 printf(single_line ? " " : "\n");
259
260 printf("value:%c", break_names ? '\n' : ' ');
Quentin Monnet9cbe1f582017-10-19 15:46:19 -0700261 fprint_hex(stdout, value, info->value_size, " ");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700262
263 printf("\n");
264 } else {
265 unsigned int i, n;
266
267 n = get_possible_cpus();
268
269 printf("key:\n");
Quentin Monnet9cbe1f582017-10-19 15:46:19 -0700270 fprint_hex(stdout, key, info->key_size, " ");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700271 printf("\n");
272 for (i = 0; i < n; i++) {
273 printf("value (CPU %02d):%c",
274 i, info->value_size > 16 ? '\n' : ' ');
Quentin Monnet9cbe1f582017-10-19 15:46:19 -0700275 fprint_hex(stdout, value + i * info->value_size,
276 info->value_size, " ");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700277 printf("\n");
278 }
279 }
280}
281
282static char **parse_bytes(char **argv, const char *name, unsigned char *val,
283 unsigned int n)
284{
285 unsigned int i = 0;
286 char *endptr;
287
288 while (i < n && argv[i]) {
289 val[i] = strtoul(argv[i], &endptr, 0);
290 if (*endptr) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700291 p_err("error parsing byte: %s", argv[i]);
Quentin Monnetd9c0b482017-10-19 15:46:23 -0700292 return NULL;
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700293 }
294 i++;
295 }
296
297 if (i != n) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700298 p_err("%s expected %d bytes got %d", name, n, i);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700299 return NULL;
300 }
301
302 return argv + i;
303}
304
305static int parse_elem(char **argv, struct bpf_map_info *info,
306 void *key, void *value, __u32 key_size, __u32 value_size,
307 __u32 *flags, __u32 **value_fd)
308{
309 if (!*argv) {
310 if (!key && !value)
311 return 0;
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700312 p_err("did not find %s", key ? "key" : "value");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700313 return -1;
314 }
315
316 if (is_prefix(*argv, "key")) {
317 if (!key) {
318 if (key_size)
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700319 p_err("duplicate key");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700320 else
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700321 p_err("unnecessary key");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700322 return -1;
323 }
324
325 argv = parse_bytes(argv + 1, "key", key, key_size);
326 if (!argv)
327 return -1;
328
329 return parse_elem(argv, info, NULL, value, key_size, value_size,
330 flags, value_fd);
331 } else if (is_prefix(*argv, "value")) {
332 int fd;
333
334 if (!value) {
335 if (value_size)
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700336 p_err("duplicate value");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700337 else
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700338 p_err("unnecessary value");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700339 return -1;
340 }
341
342 argv++;
343
344 if (map_is_map_of_maps(info->type)) {
345 int argc = 2;
346
347 if (value_size != 4) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700348 p_err("value smaller than 4B for map in map?");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700349 return -1;
350 }
351 if (!argv[0] || !argv[1]) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700352 p_err("not enough value arguments for map in map");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700353 return -1;
354 }
355
356 fd = map_parse_fd(&argc, &argv);
357 if (fd < 0)
358 return -1;
359
360 *value_fd = value;
361 **value_fd = fd;
362 } else if (map_is_map_of_progs(info->type)) {
363 int argc = 2;
364
365 if (value_size != 4) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700366 p_err("value smaller than 4B for map of progs?");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700367 return -1;
368 }
369 if (!argv[0] || !argv[1]) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700370 p_err("not enough value arguments for map of progs");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700371 return -1;
372 }
373
374 fd = prog_parse_fd(&argc, &argv);
375 if (fd < 0)
376 return -1;
377
378 *value_fd = value;
379 **value_fd = fd;
380 } else {
381 argv = parse_bytes(argv, "value", value, value_size);
382 if (!argv)
383 return -1;
384 }
385
386 return parse_elem(argv, info, key, NULL, key_size, value_size,
387 flags, NULL);
388 } else if (is_prefix(*argv, "any") || is_prefix(*argv, "noexist") ||
389 is_prefix(*argv, "exist")) {
390 if (!flags) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700391 p_err("flags specified multiple times: %s", *argv);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700392 return -1;
393 }
394
395 if (is_prefix(*argv, "any"))
396 *flags = BPF_ANY;
397 else if (is_prefix(*argv, "noexist"))
398 *flags = BPF_NOEXIST;
399 else if (is_prefix(*argv, "exist"))
400 *flags = BPF_EXIST;
401
402 return parse_elem(argv + 1, info, key, value, key_size,
403 value_size, NULL, value_fd);
404 }
405
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700406 p_err("expected key or value, got: %s", *argv);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700407 return -1;
408}
409
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700410static int show_map_close_json(int fd, struct bpf_map_info *info)
411{
412 char *memlock;
413
414 memlock = get_fdinfo(fd, "memlock");
415 close(fd);
416
417 jsonw_start_object(json_wtr);
418
419 jsonw_uint_field(json_wtr, "id", info->id);
420 if (info->type < ARRAY_SIZE(map_type_name))
421 jsonw_string_field(json_wtr, "type",
422 map_type_name[info->type]);
423 else
424 jsonw_uint_field(json_wtr, "type", info->type);
425
426 if (*info->name)
427 jsonw_string_field(json_wtr, "name", info->name);
428
429 jsonw_name(json_wtr, "flags");
430 jsonw_printf(json_wtr, "%#x", info->map_flags);
Jakub Kicinski064a07c2018-01-17 19:13:29 -0800431
432 print_dev_json(info->ifindex, info->netns_dev, info->netns_ino);
433
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700434 jsonw_uint_field(json_wtr, "bytes_key", info->key_size);
435 jsonw_uint_field(json_wtr, "bytes_value", info->value_size);
436 jsonw_uint_field(json_wtr, "max_entries", info->max_entries);
437
438 if (memlock)
439 jsonw_int_field(json_wtr, "bytes_memlock", atoi(memlock));
440 free(memlock);
441
Prashant Bhole4990f1f2017-11-08 13:55:48 +0900442 if (!hash_empty(map_table.table)) {
443 struct pinned_obj *obj;
444
445 jsonw_name(json_wtr, "pinned");
446 jsonw_start_array(json_wtr);
447 hash_for_each_possible(map_table.table, obj, hash, info->id) {
448 if (obj->id == info->id)
449 jsonw_string(json_wtr, obj->path);
450 }
451 jsonw_end_array(json_wtr);
452 }
453
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700454 jsonw_end_object(json_wtr);
455
456 return 0;
457}
458
459static int show_map_close_plain(int fd, struct bpf_map_info *info)
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700460{
461 char *memlock;
462
463 memlock = get_fdinfo(fd, "memlock");
464 close(fd);
465
466 printf("%u: ", info->id);
467 if (info->type < ARRAY_SIZE(map_type_name))
468 printf("%s ", map_type_name[info->type]);
469 else
470 printf("type %u ", info->type);
471
472 if (*info->name)
473 printf("name %s ", info->name);
474
Jakub Kicinski064a07c2018-01-17 19:13:29 -0800475 printf("flags 0x%x", info->map_flags);
476 print_dev_plain(info->ifindex, info->netns_dev, info->netns_ino);
477 printf("\n");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700478 printf("\tkey %uB value %uB max_entries %u",
479 info->key_size, info->value_size, info->max_entries);
480
481 if (memlock)
482 printf(" memlock %sB", memlock);
483 free(memlock);
484
485 printf("\n");
Prashant Bhole4990f1f2017-11-08 13:55:48 +0900486 if (!hash_empty(map_table.table)) {
487 struct pinned_obj *obj;
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700488
Prashant Bhole4990f1f2017-11-08 13:55:48 +0900489 hash_for_each_possible(map_table.table, obj, hash, info->id) {
490 if (obj->id == info->id)
491 printf("\tpinned %s\n", obj->path);
492 }
493 }
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700494 return 0;
495}
496
497static int do_show(int argc, char **argv)
498{
499 struct bpf_map_info info = {};
500 __u32 len = sizeof(info);
501 __u32 id = 0;
502 int err;
503 int fd;
504
Prashant Bholec541b732017-11-08 13:55:49 +0900505 if (show_pinned)
506 build_pinned_obj_table(&map_table, BPF_OBJ_MAP);
Prashant Bhole4990f1f2017-11-08 13:55:48 +0900507
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700508 if (argc == 2) {
509 fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
510 if (fd < 0)
511 return -1;
512
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700513 if (json_output)
514 return show_map_close_json(fd, &info);
515 else
516 return show_map_close_plain(fd, &info);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700517 }
518
519 if (argc)
520 return BAD_ARG();
521
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700522 if (json_output)
523 jsonw_start_array(json_wtr);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700524 while (true) {
525 err = bpf_map_get_next_id(id, &id);
526 if (err) {
527 if (errno == ENOENT)
528 break;
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700529 p_err("can't get next map: %s%s", strerror(errno),
530 errno == EINVAL ? " -- kernel too old?" : "");
Jakub Kicinskib3b1b652017-12-22 11:36:05 -0800531 break;
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700532 }
533
534 fd = bpf_map_get_fd_by_id(id);
535 if (fd < 0) {
Jakub Kicinski8207c6d2017-12-22 11:36:06 -0800536 if (errno == ENOENT)
537 continue;
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700538 p_err("can't get map by id (%u): %s",
539 id, strerror(errno));
Jakub Kicinskib3b1b652017-12-22 11:36:05 -0800540 break;
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700541 }
542
543 err = bpf_obj_get_info_by_fd(fd, &info, &len);
544 if (err) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700545 p_err("can't get map info: %s", strerror(errno));
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700546 close(fd);
Jakub Kicinskib3b1b652017-12-22 11:36:05 -0800547 break;
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700548 }
549
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700550 if (json_output)
551 show_map_close_json(fd, &info);
552 else
553 show_map_close_plain(fd, &info);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700554 }
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700555 if (json_output)
556 jsonw_end_array(json_wtr);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700557
558 return errno == ENOENT ? 0 : -1;
559}
560
561static int do_dump(int argc, char **argv)
562{
563 void *key, *value, *prev_key;
564 unsigned int num_elems = 0;
565 struct bpf_map_info info = {};
566 __u32 len = sizeof(info);
567 int err;
568 int fd;
569
570 if (argc != 2)
571 usage();
572
573 fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
574 if (fd < 0)
575 return -1;
576
577 if (map_is_map_of_maps(info.type) || map_is_map_of_progs(info.type)) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700578 p_err("Dumping maps of maps and program maps not supported");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700579 close(fd);
580 return -1;
581 }
582
583 key = malloc(info.key_size);
584 value = alloc_value(&info);
585 if (!key || !value) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700586 p_err("mem alloc failed");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700587 err = -1;
588 goto exit_free;
589 }
590
591 prev_key = NULL;
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700592 if (json_output)
593 jsonw_start_array(json_wtr);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700594 while (true) {
595 err = bpf_map_get_next_key(fd, prev_key, key);
596 if (err) {
597 if (errno == ENOENT)
598 err = 0;
599 break;
600 }
601
602 if (!bpf_map_lookup_elem(fd, key, value)) {
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700603 if (json_output)
604 print_entry_json(&info, key, value);
605 else
606 print_entry_plain(&info, key, value);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700607 } else {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700608 if (json_output) {
609 jsonw_name(json_wtr, "key");
610 print_hex_data_json(key, info.key_size);
611 jsonw_name(json_wtr, "value");
612 jsonw_start_object(json_wtr);
613 jsonw_string_field(json_wtr, "error",
614 "can't lookup element");
615 jsonw_end_object(json_wtr);
616 } else {
617 p_info("can't lookup element with key: ");
618 fprint_hex(stderr, key, info.key_size, " ");
619 fprintf(stderr, "\n");
620 }
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700621 }
622
623 prev_key = key;
624 num_elems++;
625 }
626
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700627 if (json_output)
628 jsonw_end_array(json_wtr);
629 else
630 printf("Found %u element%s\n", num_elems,
631 num_elems != 1 ? "s" : "");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700632
633exit_free:
634 free(key);
635 free(value);
636 close(fd);
637
638 return err;
639}
640
641static int do_update(int argc, char **argv)
642{
643 struct bpf_map_info info = {};
644 __u32 len = sizeof(info);
645 __u32 *value_fd = NULL;
646 __u32 flags = BPF_ANY;
647 void *key, *value;
648 int fd, err;
649
650 if (argc < 2)
651 usage();
652
653 fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
654 if (fd < 0)
655 return -1;
656
657 key = malloc(info.key_size);
658 value = alloc_value(&info);
659 if (!key || !value) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700660 p_err("mem alloc failed");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700661 err = -1;
662 goto exit_free;
663 }
664
665 err = parse_elem(argv, &info, key, value, info.key_size,
666 info.value_size, &flags, &value_fd);
667 if (err)
668 goto exit_free;
669
670 err = bpf_map_update_elem(fd, key, value, flags);
671 if (err) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700672 p_err("update failed: %s", strerror(errno));
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700673 goto exit_free;
674 }
675
676exit_free:
677 if (value_fd)
678 close(*value_fd);
679 free(key);
680 free(value);
681 close(fd);
682
Quentin Monnet004b45c2017-10-23 09:24:14 -0700683 if (!err && json_output)
684 jsonw_null(json_wtr);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700685 return err;
686}
687
688static int do_lookup(int argc, char **argv)
689{
690 struct bpf_map_info info = {};
691 __u32 len = sizeof(info);
692 void *key, *value;
693 int err;
694 int fd;
695
696 if (argc < 2)
697 usage();
698
699 fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
700 if (fd < 0)
701 return -1;
702
703 key = malloc(info.key_size);
704 value = alloc_value(&info);
705 if (!key || !value) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700706 p_err("mem alloc failed");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700707 err = -1;
708 goto exit_free;
709 }
710
711 err = parse_elem(argv, &info, key, NULL, info.key_size, 0, NULL, NULL);
712 if (err)
713 goto exit_free;
714
715 err = bpf_map_lookup_elem(fd, key, value);
716 if (!err) {
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700717 if (json_output)
718 print_entry_json(&info, key, value);
719 else
720 print_entry_plain(&info, key, value);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700721 } else if (errno == ENOENT) {
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700722 if (json_output) {
723 jsonw_null(json_wtr);
724 } else {
725 printf("key:\n");
726 fprint_hex(stdout, key, info.key_size, " ");
727 printf("\n\nNot found\n");
728 }
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700729 } else {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700730 p_err("lookup failed: %s", strerror(errno));
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700731 }
732
733exit_free:
734 free(key);
735 free(value);
736 close(fd);
737
738 return err;
739}
740
741static int do_getnext(int argc, char **argv)
742{
743 struct bpf_map_info info = {};
744 __u32 len = sizeof(info);
745 void *key, *nextkey;
746 int err;
747 int fd;
748
749 if (argc < 2)
750 usage();
751
752 fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
753 if (fd < 0)
754 return -1;
755
756 key = malloc(info.key_size);
757 nextkey = malloc(info.key_size);
758 if (!key || !nextkey) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700759 p_err("mem alloc failed");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700760 err = -1;
761 goto exit_free;
762 }
763
764 if (argc) {
765 err = parse_elem(argv, &info, key, NULL, info.key_size, 0,
766 NULL, NULL);
767 if (err)
768 goto exit_free;
769 } else {
770 free(key);
771 key = NULL;
772 }
773
774 err = bpf_map_get_next_key(fd, key, nextkey);
775 if (err) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700776 p_err("can't get next key: %s", strerror(errno));
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700777 goto exit_free;
778 }
779
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700780 if (json_output) {
781 jsonw_start_object(json_wtr);
782 if (key) {
783 jsonw_name(json_wtr, "key");
784 print_hex_data_json(key, info.key_size);
785 } else {
786 jsonw_null_field(json_wtr, "key");
787 }
788 jsonw_name(json_wtr, "next_key");
789 print_hex_data_json(nextkey, info.key_size);
790 jsonw_end_object(json_wtr);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700791 } else {
Quentin Monnet831a0aa2017-10-23 09:24:11 -0700792 if (key) {
793 printf("key:\n");
794 fprint_hex(stdout, key, info.key_size, " ");
795 printf("\n");
796 } else {
797 printf("key: None\n");
798 }
799 printf("next key:\n");
800 fprint_hex(stdout, nextkey, info.key_size, " ");
801 printf("\n");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700802 }
803
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700804exit_free:
805 free(nextkey);
806 free(key);
807 close(fd);
808
809 return err;
810}
811
812static int do_delete(int argc, char **argv)
813{
814 struct bpf_map_info info = {};
815 __u32 len = sizeof(info);
816 void *key;
817 int err;
818 int fd;
819
820 if (argc < 2)
821 usage();
822
823 fd = map_parse_fd_and_info(&argc, &argv, &info, &len);
824 if (fd < 0)
825 return -1;
826
827 key = malloc(info.key_size);
828 if (!key) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700829 p_err("mem alloc failed");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700830 err = -1;
831 goto exit_free;
832 }
833
834 err = parse_elem(argv, &info, key, NULL, info.key_size, 0, NULL, NULL);
835 if (err)
836 goto exit_free;
837
838 err = bpf_map_delete_elem(fd, key);
839 if (err)
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700840 p_err("delete failed: %s", strerror(errno));
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700841
842exit_free:
843 free(key);
844 close(fd);
845
Quentin Monnet004b45c2017-10-23 09:24:14 -0700846 if (!err && json_output)
847 jsonw_null(json_wtr);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700848 return err;
849}
850
851static int do_pin(int argc, char **argv)
852{
Quentin Monnet004b45c2017-10-23 09:24:14 -0700853 int err;
854
855 err = do_pin_any(argc, argv, bpf_map_get_fd_by_id);
856 if (!err && json_output)
857 jsonw_null(json_wtr);
858 return err;
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700859}
860
861static int do_help(int argc, char **argv)
862{
Quentin Monnet004b45c2017-10-23 09:24:14 -0700863 if (json_output) {
864 jsonw_null(json_wtr);
865 return 0;
866 }
867
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700868 fprintf(stderr,
Jakub Kicinski6ebe6db2018-01-02 14:48:36 -0800869 "Usage: %s %s { show | list } [MAP]\n"
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700870 " %s %s dump MAP\n"
871 " %s %s update MAP key BYTES value VALUE [UPDATE_FLAGS]\n"
872 " %s %s lookup MAP key BYTES\n"
873 " %s %s getnext MAP [key BYTES]\n"
874 " %s %s delete MAP key BYTES\n"
875 " %s %s pin MAP FILE\n"
876 " %s %s help\n"
877 "\n"
878 " MAP := { id MAP_ID | pinned FILE }\n"
879 " " HELP_SPEC_PROGRAM "\n"
880 " VALUE := { BYTES | MAP | PROG }\n"
881 " UPDATE_FLAGS := { any | exist | noexist }\n"
Quentin Monnet0641c3c2017-10-23 09:24:16 -0700882 " " HELP_SPEC_OPTIONS "\n"
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700883 "",
884 bin_name, argv[-2], bin_name, argv[-2], bin_name, argv[-2],
885 bin_name, argv[-2], bin_name, argv[-2], bin_name, argv[-2],
886 bin_name, argv[-2], bin_name, argv[-2]);
887
888 return 0;
889}
890
891static const struct cmd cmds[] = {
892 { "show", do_show },
Jakub Kicinski6ebe6db2018-01-02 14:48:36 -0800893 { "list", do_show },
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700894 { "help", do_help },
895 { "dump", do_dump },
896 { "update", do_update },
897 { "lookup", do_lookup },
898 { "getnext", do_getnext },
899 { "delete", do_delete },
900 { "pin", do_pin },
901 { 0 }
902};
903
904int do_map(int argc, char **argv)
905{
906 return cmd_select(cmds, argc, argv, do_help);
907}