setpriv: prepare option parsing logic for additional opts
authorPatrick Steinhardt <ps@pks.im>
Sun, 2 Jul 2017 13:42:51 +0000 (15:42 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 4 Jul 2017 15:15:32 +0000 (17:15 +0200)
The current option parsing logic of setpriv only supports the case where
we want to execute a sub-program and have at most one argument. Refactor
handling of options to solve these shortcomings to make it easy to
support 'setpriv --dump', which does not accept any additional
arguments, as well as the case where additional options are passed to
setpriv. This is done by handling 'argc' ourselves, throwing an error
when no program is specified, as well as introducing an enum for the
different option bitmasks.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
util-linux/setpriv.c

index 686ad45d5fdc1f90d20fd18261964f10459188bc..d15e0d84ec237ec0bcb9ed5fd78506ca8a99a7a1 100644 (file)
 #define PR_SET_NO_NEW_PRIVS 38
 #endif
 
+enum {
+       OPTBIT_NNP,
+
+       OPT_NNP = (1 << OPTBIT_NNP),
+};
+
 int setpriv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
 int setpriv_main(int argc UNUSED_PARAM, char **argv)
 {
@@ -60,15 +66,17 @@ int setpriv_main(int argc UNUSED_PARAM, char **argv)
                ;
        int opts;
 
-       opt_complementary = "-1";
        applet_long_options = setpriv_longopts;
        opts = getopt32(argv, "+");
 
-       if (opts) {
+       argv += optind;
+
+       if (opts & OPT_NNP) {
                if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0))
                        bb_simple_perror_msg_and_die("prctl: NO_NEW_PRIVS");
        }
 
-       argv += optind;
+       if (!argv[0])
+               bb_show_usage();
        BB_EXECVP_or_die(argv);
 }