tools: bpftool: add option parsing to bpftool, --help and --version
authorQuentin Monnet <quentin.monnet@netronome.com>
Mon, 23 Oct 2017 16:24:06 +0000 (09:24 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 24 Oct 2017 00:25:08 +0000 (01:25 +0100)
Add an option parsing facility to bpftool, in prevision of future
options for demanding JSON output. Currently, two options are added:
--help and --version, that act the same as the respective commands
`help` and `version`.

Signed-off-by: Quentin Monnet <quentin.monnet@netronome.com>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
tools/bpf/bpftool/Documentation/bpftool-map.rst
tools/bpf/bpftool/Documentation/bpftool-prog.rst
tools/bpf/bpftool/Documentation/bpftool.rst
tools/bpf/bpftool/main.c

index ff63e89e4b6c8f298d1bf299bf7b2f23354aa543..5210c4fab356d9faf2803556a7f7cdf3ddcd69a2 100644 (file)
@@ -68,6 +68,14 @@ DESCRIPTION
        **bpftool map help**
                  Print short help message.
 
+OPTIONS
+=======
+       -h, --help
+                 Print short generic help message (similar to **bpftool help**).
+
+       -v, --version
+                 Print version number (similar to **bpftool version**).
+
 EXAMPLES
 ========
 **# bpftool map show**
index 69b3770370c8ac73080b5ab2e27c693af44ac445..6620a81d9dc9731d6296a853727c23ae17dbae2f 100644 (file)
@@ -50,6 +50,14 @@ DESCRIPTION
        **bpftool prog help**
                  Print short help message.
 
+OPTIONS
+=======
+       -h, --help
+                 Print short generic help message (similar to **bpftool help**).
+
+       -v, --version
+                 Print version number (similar to **bpftool version**).
+
 EXAMPLES
 ========
 **# bpftool prog show**
index 45ad8baf1915973c3bd78a3ac89058ce5d1bc52c..9c04cd6677bdcc2ed6fc2d89e460076110fb423c 100644 (file)
@@ -31,6 +31,14 @@ DESCRIPTION
        Note that format of the output of all tools is not guaranteed to be
        stable and should not be depended upon.
 
+OPTIONS
+=======
+       -h, --help
+                 Print short help message (similar to **bpftool help**).
+
+       -v, --version
+                 Print version number (similar to **bpftool version**).
+
 SEE ALSO
 ========
        **bpftool-map**\ (8), **bpftool-prog**\ (8)
index 814d19e1b53f573f30e8e7f6dd8cc2572a2a5f4d..613e3c75f78a941b743c2e06ba8e948da0a551a4 100644 (file)
@@ -36,6 +36,7 @@
 #include <bfd.h>
 #include <ctype.h>
 #include <errno.h>
+#include <getopt.h>
 #include <linux/bpf.h>
 #include <linux/version.h>
 #include <stdio.h>
@@ -215,8 +216,32 @@ err_close:
 
 int main(int argc, char **argv)
 {
+       static const struct option options[] = {
+               { "help",       no_argument,    NULL,   'h' },
+               { "version",    no_argument,    NULL,   'V' },
+               { 0 }
+       };
+       int opt;
+
+       last_do_help = do_help;
        bin_name = argv[0];
-       NEXT_ARG();
+
+       while ((opt = getopt_long(argc, argv, "Vh",
+                                 options, NULL)) >= 0) {
+               switch (opt) {
+               case 'V':
+                       return do_version(argc, argv);
+               case 'h':
+                       return do_help(argc, argv);
+               default:
+                       usage();
+               }
+       }
+
+       argc -= optind;
+       argv += optind;
+       if (argc < 0)
+               usage();
 
        bfd_init();