printenv: ignore bogus variable names
authorEric Blake <ebb9@byu.net>
Wed, 28 Oct 2009 12:21:24 +0000 (06:21 -0600)
committerEric Blake <ebb9@byu.net>
Wed, 28 Oct 2009 12:24:52 +0000 (06:24 -0600)
Exposed by env a=b=c printenv a=b.

* src/printenv.c (main): Silently reject = in names.
* tests/misc/printenv: Test for it.
* NEWS: Document this.

NEWS
src/printenv.c
tests/misc/printenv

diff --git a/NEWS b/NEWS
index 442ce13..35d1413 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -9,7 +9,8 @@ GNU coreutils NEWS                                    -*- outline -*-
   [bug introduced in coreutils-8.0]
 
   env -u A=B now fails, rather than silently adding A to the
-  environment.  [the bug dates back to the initial implementation]
+  environment.  Likewise, printenv A=B silently ignores the invalid
+  name.  [the bugs date back to the initial implementation]
 
   md5sum now prints checksums atomically so that concurrent
   processes will not intersperse their output.
index b0f0154..acf09bd 100644 (file)
@@ -125,6 +125,10 @@ main (int argc, char **argv)
         {
           bool matched = false;
 
+          /* 'printenv a=b' is silent, even if 'a=b=c' is in environ.  */
+          if (strchr (argv[i], '='))
+            continue;
+
           for (env = environ; *env; ++env)
             {
               ep = *env;
index bbda1db..bc51fca 100755 (executable)
@@ -77,4 +77,10 @@ echo b > exp || framework_failure
 env -- -a=b printenv -- -a > out || fail=1
 compare exp out || fail=1
 
+# Silently reject invalid env-var names.
+# Bug present through coreutils 8.0.
+env a=b=c printenv a=b > out
+test $? = 1 || fail=1
+test -s out && fail=1
+
 Exit $fail