blob: 14ad54a1c404a8d7145b1646476d78d4a0c91f72 [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 <bfd.h>
37#include <ctype.h>
38#include <errno.h>
Quentin Monneta2bc2e52017-10-23 09:24:06 -070039#include <getopt.h>
Jakub Kicinski71bb4282017-10-04 20:10:04 -070040#include <linux/bpf.h>
Quentin Monnet821cfbb2017-10-19 15:46:26 -070041#include <linux/version.h>
Jakub Kicinski71bb4282017-10-04 20:10:04 -070042#include <stdio.h>
43#include <stdlib.h>
44#include <string.h>
45
46#include <bpf.h>
47
48#include "main.h"
49
50const char *bin_name;
51static int last_argc;
52static char **last_argv;
53static int (*last_do_help)(int argc, char **argv);
Quentin Monnetd35efba2017-10-23 09:24:07 -070054json_writer_t *json_wtr;
55bool pretty_output;
56bool json_output;
Prashant Bholec541b732017-11-08 13:55:49 +090057bool show_pinned;
Prashant Bhole4990f1f2017-11-08 13:55:48 +090058struct pinned_obj_table prog_table;
59struct pinned_obj_table map_table;
Jakub Kicinski71bb4282017-10-04 20:10:04 -070060
61void usage(void)
62{
63 last_do_help(last_argc - 1, last_argv + 1);
64
65 exit(-1);
66}
67
68static int do_help(int argc, char **argv)
69{
Quentin Monnet004b45c2017-10-23 09:24:14 -070070 if (json_output) {
71 jsonw_null(json_wtr);
72 return 0;
73 }
74
Jakub Kicinski71bb4282017-10-04 20:10:04 -070075 fprintf(stderr,
Quentin Monnet0641c3c2017-10-23 09:24:16 -070076 "Usage: %s [OPTIONS] OBJECT { COMMAND | help }\n"
Jakub Kicinski71bb4282017-10-04 20:10:04 -070077 " %s batch file FILE\n"
Quentin Monnet821cfbb2017-10-19 15:46:26 -070078 " %s version\n"
Jakub Kicinski71bb4282017-10-04 20:10:04 -070079 "\n"
Quentin Monnet0641c3c2017-10-23 09:24:16 -070080 " OBJECT := { prog | map }\n"
81 " " HELP_SPEC_OPTIONS "\n"
82 "",
Quentin Monnet821cfbb2017-10-19 15:46:26 -070083 bin_name, bin_name, bin_name);
Jakub Kicinski71bb4282017-10-04 20:10:04 -070084
85 return 0;
86}
87
Quentin Monnet821cfbb2017-10-19 15:46:26 -070088static int do_version(int argc, char **argv)
89{
Quentin Monnet004b45c2017-10-23 09:24:14 -070090 unsigned int version[3];
91
92 version[0] = LINUX_VERSION_CODE >> 16;
93 version[1] = LINUX_VERSION_CODE >> 8 & 0xf;
94 version[2] = LINUX_VERSION_CODE & 0xf;
95
96 if (json_output) {
97 jsonw_start_object(json_wtr);
98 jsonw_name(json_wtr, "version");
99 jsonw_printf(json_wtr, "\"%u.%u.%u\"",
100 version[0], version[1], version[2]);
101 jsonw_end_object(json_wtr);
102 } else {
103 printf("%s v%u.%u.%u\n", bin_name,
104 version[0], version[1], version[2]);
105 }
Quentin Monnet821cfbb2017-10-19 15:46:26 -0700106 return 0;
107}
108
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700109int cmd_select(const struct cmd *cmds, int argc, char **argv,
110 int (*help)(int argc, char **argv))
111{
112 unsigned int i;
113
114 last_argc = argc;
115 last_argv = argv;
116 last_do_help = help;
117
118 if (argc < 1 && cmds[0].func)
119 return cmds[0].func(argc, argv);
120
121 for (i = 0; cmds[i].func; i++)
122 if (is_prefix(*argv, cmds[i].cmd))
123 return cmds[i].func(argc - 1, argv + 1);
124
125 help(argc - 1, argv + 1);
126
127 return -1;
128}
129
130bool is_prefix(const char *pfx, const char *str)
131{
132 if (!pfx)
133 return false;
134 if (strlen(str) < strlen(pfx))
135 return false;
136
137 return !memcmp(str, pfx, strlen(pfx));
138}
139
Quentin Monnet9cbe1f582017-10-19 15:46:19 -0700140void fprint_hex(FILE *f, void *arg, unsigned int n, const char *sep)
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700141{
142 unsigned char *data = arg;
143 unsigned int i;
144
145 for (i = 0; i < n; i++) {
146 const char *pfx = "";
147
148 if (!i)
149 /* nothing */;
150 else if (!(i % 16))
Quentin Monnet9cbe1f582017-10-19 15:46:19 -0700151 fprintf(f, "\n");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700152 else if (!(i % 8))
Quentin Monnet9cbe1f582017-10-19 15:46:19 -0700153 fprintf(f, " ");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700154 else
155 pfx = sep;
156
Quentin Monnet9cbe1f582017-10-19 15:46:19 -0700157 fprintf(f, "%s%02hhx", i ? pfx : "", data[i]);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700158 }
159}
160
161static int do_batch(int argc, char **argv);
162
163static const struct cmd cmds[] = {
164 { "help", do_help },
165 { "batch", do_batch },
166 { "prog", do_prog },
167 { "map", do_map },
Quentin Monnet821cfbb2017-10-19 15:46:26 -0700168 { "version", do_version },
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700169 { 0 }
170};
171
172static int do_batch(int argc, char **argv)
173{
174 unsigned int lines = 0;
175 char *n_argv[4096];
176 char buf[65536];
177 int n_argc;
178 FILE *fp;
179 int err;
Quentin Monnet3aaca6b2017-10-23 09:24:12 -0700180 int i;
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700181
182 if (argc < 2) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700183 p_err("too few parameters for batch");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700184 return -1;
185 } else if (!is_prefix(*argv, "file")) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700186 p_err("expected 'file', got: %s", *argv);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700187 return -1;
188 } else if (argc > 2) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700189 p_err("too many parameters for batch");
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700190 return -1;
191 }
192 NEXT_ARG();
193
194 fp = fopen(*argv, "r");
195 if (!fp) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700196 p_err("Can't open file (%s): %s", *argv, strerror(errno));
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700197 return -1;
198 }
199
Quentin Monnet3aaca6b2017-10-23 09:24:12 -0700200 if (json_output)
201 jsonw_start_array(json_wtr);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700202 while (fgets(buf, sizeof(buf), fp)) {
203 if (strlen(buf) == sizeof(buf) - 1) {
204 errno = E2BIG;
205 break;
206 }
207
208 n_argc = 0;
209 n_argv[n_argc] = strtok(buf, " \t\n");
210
211 while (n_argv[n_argc]) {
212 n_argc++;
213 if (n_argc == ARRAY_SIZE(n_argv)) {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700214 p_err("line %d has too many arguments, skip",
215 lines);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700216 n_argc = 0;
217 break;
218 }
219 n_argv[n_argc] = strtok(NULL, " \t\n");
220 }
221
222 if (!n_argc)
223 continue;
224
Quentin Monnet3aaca6b2017-10-23 09:24:12 -0700225 if (json_output) {
226 jsonw_start_object(json_wtr);
227 jsonw_name(json_wtr, "command");
228 jsonw_start_array(json_wtr);
229 for (i = 0; i < n_argc; i++)
230 jsonw_string(json_wtr, n_argv[i]);
231 jsonw_end_array(json_wtr);
232 jsonw_name(json_wtr, "output");
233 }
234
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700235 err = cmd_select(cmds, n_argc, n_argv, do_help);
Quentin Monnet3aaca6b2017-10-23 09:24:12 -0700236
237 if (json_output)
238 jsonw_end_object(json_wtr);
239
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700240 if (err)
241 goto err_close;
242
243 lines++;
244 }
245
246 if (errno && errno != ENOENT) {
247 perror("reading batch file failed");
248 err = -1;
249 } else {
Quentin Monnet9a5ab8b2017-10-23 09:24:13 -0700250 p_info("processed %d lines", lines);
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700251 err = 0;
252 }
253err_close:
254 fclose(fp);
255
Quentin Monnet3aaca6b2017-10-23 09:24:12 -0700256 if (json_output)
257 jsonw_end_array(json_wtr);
258
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700259 return err;
260}
261
262int main(int argc, char **argv)
263{
Quentin Monneta2bc2e52017-10-23 09:24:06 -0700264 static const struct option options[] = {
Quentin Monnetd35efba2017-10-23 09:24:07 -0700265 { "json", no_argument, NULL, 'j' },
Quentin Monneta2bc2e52017-10-23 09:24:06 -0700266 { "help", no_argument, NULL, 'h' },
Quentin Monnetd35efba2017-10-23 09:24:07 -0700267 { "pretty", no_argument, NULL, 'p' },
Quentin Monneta2bc2e52017-10-23 09:24:06 -0700268 { "version", no_argument, NULL, 'V' },
Prashant Bholec541b732017-11-08 13:55:49 +0900269 { "bpffs", no_argument, NULL, 'f' },
Quentin Monneta2bc2e52017-10-23 09:24:06 -0700270 { 0 }
271 };
Quentin Monnetd35efba2017-10-23 09:24:07 -0700272 int opt, ret;
Quentin Monneta2bc2e52017-10-23 09:24:06 -0700273
274 last_do_help = do_help;
Quentin Monnetd35efba2017-10-23 09:24:07 -0700275 pretty_output = false;
276 json_output = false;
Prashant Bholec541b732017-11-08 13:55:49 +0900277 show_pinned = false;
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700278 bin_name = argv[0];
Quentin Monneta2bc2e52017-10-23 09:24:06 -0700279
Prashant Bhole4990f1f2017-11-08 13:55:48 +0900280 hash_init(prog_table.table);
281 hash_init(map_table.table);
282
Prashant Bholec541b732017-11-08 13:55:49 +0900283 while ((opt = getopt_long(argc, argv, "Vhpjf",
Quentin Monneta2bc2e52017-10-23 09:24:06 -0700284 options, NULL)) >= 0) {
285 switch (opt) {
286 case 'V':
287 return do_version(argc, argv);
288 case 'h':
289 return do_help(argc, argv);
Quentin Monnetd35efba2017-10-23 09:24:07 -0700290 case 'p':
291 pretty_output = true;
292 /* fall through */
293 case 'j':
Quentin Monnet9b85c2d2017-11-28 17:44:28 -0800294 if (!json_output) {
295 json_wtr = jsonw_new(stdout);
296 if (!json_wtr) {
297 p_err("failed to create JSON writer");
298 return -1;
299 }
300 json_output = true;
301 }
302 jsonw_pretty(json_wtr, pretty_output);
Quentin Monnetd35efba2017-10-23 09:24:07 -0700303 break;
Prashant Bholec541b732017-11-08 13:55:49 +0900304 case 'f':
305 show_pinned = true;
306 break;
Quentin Monneta2bc2e52017-10-23 09:24:06 -0700307 default:
308 usage();
309 }
310 }
311
312 argc -= optind;
313 argv += optind;
314 if (argc < 0)
315 usage();
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700316
317 bfd_init();
318
Quentin Monnetd35efba2017-10-23 09:24:07 -0700319 ret = cmd_select(cmds, argc, argv, do_help);
320
321 if (json_output)
322 jsonw_destroy(&json_wtr);
323
Prashant Bholec541b732017-11-08 13:55:49 +0900324 if (show_pinned) {
325 delete_pinned_obj_table(&prog_table);
326 delete_pinned_obj_table(&map_table);
327 }
Prashant Bhole4990f1f2017-11-08 13:55:48 +0900328
Quentin Monnetd35efba2017-10-23 09:24:07 -0700329 return ret;
Jakub Kicinski71bb4282017-10-04 20:10:04 -0700330}