]> asedeno.scripts.mit.edu Git - linux.git/blob - tools/bpf/bpftool/main.c
bpftool: implement cgroup bpf operations
[linux.git] / tools / bpf / bpftool / main.c
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 <bfd.h>
37 #include <ctype.h>
38 #include <errno.h>
39 #include <getopt.h>
40 #include <linux/bpf.h>
41 #include <linux/version.h>
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45
46 #include <bpf.h>
47
48 #include "main.h"
49
50 const char *bin_name;
51 static int last_argc;
52 static char **last_argv;
53 static int (*last_do_help)(int argc, char **argv);
54 json_writer_t *json_wtr;
55 bool pretty_output;
56 bool json_output;
57 bool show_pinned;
58 struct pinned_obj_table prog_table;
59 struct pinned_obj_table map_table;
60
61 static void __noreturn clean_and_exit(int i)
62 {
63         if (json_output)
64                 jsonw_destroy(&json_wtr);
65
66         exit(i);
67 }
68
69 void usage(void)
70 {
71         last_do_help(last_argc - 1, last_argv + 1);
72
73         clean_and_exit(-1);
74 }
75
76 static int do_help(int argc, char **argv)
77 {
78         if (json_output) {
79                 jsonw_null(json_wtr);
80                 return 0;
81         }
82
83         fprintf(stderr,
84                 "Usage: %s [OPTIONS] OBJECT { COMMAND | help }\n"
85                 "       %s batch file FILE\n"
86                 "       %s version\n"
87                 "\n"
88                 "       OBJECT := { prog | map | cgroup }\n"
89                 "       " HELP_SPEC_OPTIONS "\n"
90                 "",
91                 bin_name, bin_name, bin_name);
92
93         return 0;
94 }
95
96 static int do_version(int argc, char **argv)
97 {
98         unsigned int version[3];
99
100         version[0] = LINUX_VERSION_CODE >> 16;
101         version[1] = LINUX_VERSION_CODE >> 8 & 0xf;
102         version[2] = LINUX_VERSION_CODE & 0xf;
103
104         if (json_output) {
105                 jsonw_start_object(json_wtr);
106                 jsonw_name(json_wtr, "version");
107                 jsonw_printf(json_wtr, "\"%u.%u.%u\"",
108                              version[0], version[1], version[2]);
109                 jsonw_end_object(json_wtr);
110         } else {
111                 printf("%s v%u.%u.%u\n", bin_name,
112                        version[0], version[1], version[2]);
113         }
114         return 0;
115 }
116
117 int cmd_select(const struct cmd *cmds, int argc, char **argv,
118                int (*help)(int argc, char **argv))
119 {
120         unsigned int i;
121
122         last_argc = argc;
123         last_argv = argv;
124         last_do_help = help;
125
126         if (argc < 1 && cmds[0].func)
127                 return cmds[0].func(argc, argv);
128
129         for (i = 0; cmds[i].func; i++)
130                 if (is_prefix(*argv, cmds[i].cmd))
131                         return cmds[i].func(argc - 1, argv + 1);
132
133         help(argc - 1, argv + 1);
134
135         return -1;
136 }
137
138 bool is_prefix(const char *pfx, const char *str)
139 {
140         if (!pfx)
141                 return false;
142         if (strlen(str) < strlen(pfx))
143                 return false;
144
145         return !memcmp(str, pfx, strlen(pfx));
146 }
147
148 void fprint_hex(FILE *f, void *arg, unsigned int n, const char *sep)
149 {
150         unsigned char *data = arg;
151         unsigned int i;
152
153         for (i = 0; i < n; i++) {
154                 const char *pfx = "";
155
156                 if (!i)
157                         /* nothing */;
158                 else if (!(i % 16))
159                         fprintf(f, "\n");
160                 else if (!(i % 8))
161                         fprintf(f, "  ");
162                 else
163                         pfx = sep;
164
165                 fprintf(f, "%s%02hhx", i ? pfx : "", data[i]);
166         }
167 }
168
169 static int do_batch(int argc, char **argv);
170
171 static const struct cmd cmds[] = {
172         { "help",       do_help },
173         { "batch",      do_batch },
174         { "prog",       do_prog },
175         { "map",        do_map },
176         { "cgroup",     do_cgroup },
177         { "version",    do_version },
178         { 0 }
179 };
180
181 static int do_batch(int argc, char **argv)
182 {
183         unsigned int lines = 0;
184         char *n_argv[4096];
185         char buf[65536];
186         int n_argc;
187         FILE *fp;
188         int err;
189         int i;
190
191         if (argc < 2) {
192                 p_err("too few parameters for batch");
193                 return -1;
194         } else if (!is_prefix(*argv, "file")) {
195                 p_err("expected 'file', got: %s", *argv);
196                 return -1;
197         } else if (argc > 2) {
198                 p_err("too many parameters for batch");
199                 return -1;
200         }
201         NEXT_ARG();
202
203         fp = fopen(*argv, "r");
204         if (!fp) {
205                 p_err("Can't open file (%s): %s", *argv, strerror(errno));
206                 return -1;
207         }
208
209         if (json_output)
210                 jsonw_start_array(json_wtr);
211         while (fgets(buf, sizeof(buf), fp)) {
212                 if (strlen(buf) == sizeof(buf) - 1) {
213                         errno = E2BIG;
214                         break;
215                 }
216
217                 n_argc = 0;
218                 n_argv[n_argc] = strtok(buf, " \t\n");
219
220                 while (n_argv[n_argc]) {
221                         n_argc++;
222                         if (n_argc == ARRAY_SIZE(n_argv)) {
223                                 p_err("line %d has too many arguments, skip",
224                                       lines);
225                                 n_argc = 0;
226                                 break;
227                         }
228                         n_argv[n_argc] = strtok(NULL, " \t\n");
229                 }
230
231                 if (!n_argc)
232                         continue;
233
234                 if (json_output) {
235                         jsonw_start_object(json_wtr);
236                         jsonw_name(json_wtr, "command");
237                         jsonw_start_array(json_wtr);
238                         for (i = 0; i < n_argc; i++)
239                                 jsonw_string(json_wtr, n_argv[i]);
240                         jsonw_end_array(json_wtr);
241                         jsonw_name(json_wtr, "output");
242                 }
243
244                 err = cmd_select(cmds, n_argc, n_argv, do_help);
245
246                 if (json_output)
247                         jsonw_end_object(json_wtr);
248
249                 if (err)
250                         goto err_close;
251
252                 lines++;
253         }
254
255         if (errno && errno != ENOENT) {
256                 perror("reading batch file failed");
257                 err = -1;
258         } else {
259                 p_info("processed %d lines", lines);
260                 err = 0;
261         }
262 err_close:
263         fclose(fp);
264
265         if (json_output)
266                 jsonw_end_array(json_wtr);
267
268         return err;
269 }
270
271 int main(int argc, char **argv)
272 {
273         static const struct option options[] = {
274                 { "json",       no_argument,    NULL,   'j' },
275                 { "help",       no_argument,    NULL,   'h' },
276                 { "pretty",     no_argument,    NULL,   'p' },
277                 { "version",    no_argument,    NULL,   'V' },
278                 { "bpffs",      no_argument,    NULL,   'f' },
279                 { 0 }
280         };
281         int opt, ret;
282
283         last_do_help = do_help;
284         pretty_output = false;
285         json_output = false;
286         show_pinned = false;
287         bin_name = argv[0];
288
289         hash_init(prog_table.table);
290         hash_init(map_table.table);
291
292         opterr = 0;
293         while ((opt = getopt_long(argc, argv, "Vhpjf",
294                                   options, NULL)) >= 0) {
295                 switch (opt) {
296                 case 'V':
297                         return do_version(argc, argv);
298                 case 'h':
299                         return do_help(argc, argv);
300                 case 'p':
301                         pretty_output = true;
302                         /* fall through */
303                 case 'j':
304                         if (!json_output) {
305                                 json_wtr = jsonw_new(stdout);
306                                 if (!json_wtr) {
307                                         p_err("failed to create JSON writer");
308                                         return -1;
309                                 }
310                                 json_output = true;
311                         }
312                         jsonw_pretty(json_wtr, pretty_output);
313                         break;
314                 case 'f':
315                         show_pinned = true;
316                         break;
317                 default:
318                         p_err("unrecognized option '%s'", argv[optind - 1]);
319                         if (json_output)
320                                 clean_and_exit(-1);
321                         else
322                                 usage();
323                 }
324         }
325
326         argc -= optind;
327         argv += optind;
328         if (argc < 0)
329                 usage();
330
331         bfd_init();
332
333         ret = cmd_select(cmds, argc, argv, do_help);
334
335         if (json_output)
336                 jsonw_destroy(&json_wtr);
337
338         if (show_pinned) {
339                 delete_pinned_obj_table(&prog_table);
340                 delete_pinned_obj_table(&map_table);
341         }
342
343         return ret;
344 }