shell: add OPTARG poisoning to getopt_optarg.tests
authorDenys Vlasenko <vda.linux@googlemail.com>
Fri, 11 Aug 2017 00:37:48 +0000 (02:37 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 11 Aug 2017 00:37:48 +0000 (02:37 +0200)
ash fails this!

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash_test/ash-getopts/getopt_optarg.tests
shell/hush.c
shell/hush_test/hush-getopts/getopt_optarg.tests

index b346284f0e9888c671bb1e2a535079cc3a7d2b3d..33682e8682bd09c329f16d49bab97534aceef914 100755 (executable)
@@ -4,6 +4,7 @@ var=QWERTY
 OPTARG=ASDFGH
 while getopts "w:et" var; do
        echo "var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
+       OPTARG=ASDFGH
 done
 echo "exited: var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
 
@@ -12,5 +13,6 @@ echo "*** OPTIND=0, optstring:'w:et' args:$*"
 OPTIND=0
 while getopts "w:et" var; do
        echo "var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
+       OPTARG=ASDFGH
 done
 echo "exited: var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
index f9a8de423ba8daa6b23837ed0e6ee8432e5d880c..dc05f24b9cd81f39780732aeb4b338f5b6f334f1 100644 (file)
@@ -9872,7 +9872,8 @@ static int FAST_FUNC builtin_shift(char **argv)
 #if ENABLE_HUSH_GETOPTS
 static int FAST_FUNC builtin_getopts(char **argv)
 {
-/*
+/* http://pubs.opengroup.org/onlinepubs/9699919799/utilities/getopts.html
+
 TODO:
 If an invalid option is seen, getopts places ? into VAR and, if
 not silent, prints an error message and unsets OPTARG. If
@@ -9886,6 +9887,8 @@ colon (:) is placed in VAR and OPTARG is set to the option
 character found.
 
 Test that VAR is a valid variable name?
+
+"Whenever the shell is invoked, OPTIND shall be initialized to 1"
 */
        char cbuf[2];
        const char *cp, *optstring, *var;
@@ -9920,14 +9923,20 @@ Test that VAR is a valid variable name?
                exitcode = EXIT_FAILURE;
                c = '?';
        }
-       if (optarg)
-               set_local_var_from_halves("OPTARG", optarg);
-       else
-               unset_local_var("OPTARG");
        cbuf[0] = c;
        cbuf[1] = '\0';
        set_local_var_from_halves(var, cbuf);
        set_local_var_from_halves("OPTIND", utoa(optind));
+
+       /* Always set or unset, never left as-is, even on exit/error:
+        * "If no option was found, or if the option that was found
+        * does not have an option-argument, OPTARG shall be unset."
+        */
+       if (optarg)
+               set_local_var_from_halves("OPTARG", optarg);
+       else
+               unset_local_var("OPTARG");
+
        return exitcode;
 }
 #endif
index b346284f0e9888c671bb1e2a535079cc3a7d2b3d..33682e8682bd09c329f16d49bab97534aceef914 100755 (executable)
@@ -4,6 +4,7 @@ var=QWERTY
 OPTARG=ASDFGH
 while getopts "w:et" var; do
        echo "var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
+       OPTARG=ASDFGH
 done
 echo "exited: var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
 
@@ -12,5 +13,6 @@ echo "*** OPTIND=0, optstring:'w:et' args:$*"
 OPTIND=0
 while getopts "w:et" var; do
        echo "var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
+       OPTARG=ASDFGH
 done
 echo "exited: var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"