ver_linux: Drop redundant calls to system() to test if file is readable
authorAlexander Kapshuk <alexander.kapshuk@gmail.com>
Sat, 12 May 2018 09:02:31 +0000 (12:02 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 14 May 2018 14:36:39 +0000 (16:36 +0200)
Running 'test -r' on an awk variable name whose value is an empty
string results in test being run with no arguments, and causes system()
to return 0, which indicates success when used to test values returned
by function calls. This results in code within the if blocks being run
when it should not be.
Instead of testing if a file is accessible and readable via calls to
system("test -r " file), rely on the value returned by getline to perform
this kind of testing. Getline returns -1 on error, with the code within
the while loops not being run.

Signed-off-by: Alexander Kapshuk <alexander.kapshuk@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
scripts/ver_linux

index 0b301bd..7227994 100755 (executable)
@@ -31,14 +31,12 @@ BEGIN {
        printversion("Isdn4k-utils", version("isdnctrl"))
        printversion("Nfs-utils", version("showmount --version"))
 
-       if (system("test -r /proc/self/maps") == 0) {
-               while (getline <"/proc/self/maps" > 0) {
-                       n = split($0, procmaps, "/")
-                       if (/libc.*so$/ && match(procmaps[n], /[0-9]+([.]?[0-9]+)+/)) {
-                               ver = substr(procmaps[n], RSTART, RLENGTH)
-                               printversion("Linux C Library", ver)
-                               break
-                       }
+       while (getline <"/proc/self/maps" > 0) {
+               n = split($0, procmaps, "/")
+               if (/libc.*so$/ && match(procmaps[n], /[0-9]+([.]?[0-9]+)+/)) {
+                       ver = substr(procmaps[n], RSTART, RLENGTH)
+                       printversion("Linux C Library", ver)
+                       break
                }
        }
 
@@ -50,9 +48,7 @@ BEGIN {
                        break
                }
        }
-       if (system("test -r " libcpp) == 0)
-               printversion("Linux C++ Library", version("readlink " libcpp))
-
+       printversion("Linux C++ Library", version("readlink " libcpp))
        printversion("Procps", version("ps --version"))
        printversion("Net-tools", version("ifconfig --version"))
        printversion("Kbd", version("loadkeys -V"))
@@ -62,13 +58,11 @@ BEGIN {
        printversion("Udev", version("udevadm --version"))
        printversion("Wireless-tools", version("iwconfig --version"))
 
-       if (system("test -r /proc/modules") == 0) {
-               while ("sort /proc/modules" | getline > 0) {
-                       mods = mods sep $1
-                       sep = " "
-               }
-               printversion("Modules Loaded", mods)
+       while ("sort /proc/modules" | getline > 0) {
+               mods = mods sep $1
+               sep = " "
        }
+       printversion("Modules Loaded", mods)
 }
 
 function version(cmd,    ver) {