]> code.ossystems Code Review - openembedded-core.git/commitdiff
busybox.inc: Add sanity check to test if the suid binary provides sh
authorNathan Rossi <nathan@nathanrossi.com>
Wed, 24 Jan 2018 12:59:28 +0000 (22:59 +1000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 29 Jan 2018 08:49:42 +0000 (08:49 +0000)
Add a sanity check during the do_compile task to fail if the suid
busybox provides /bin/sh. This is considered as a hard fail since not
only is providing sh as suid problematic for security reasons but also
because the sh configured for suid is less functional than the nosuid
configured sh and breaks a number of required features (e.g. 64-bit
test).

Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-core/busybox/busybox.inc

index 4012f921c6194d3cf474d593ccc5d0513e7726db..157aea3968a2c6401018f47ccca251221aa2b014 100644 (file)
@@ -183,6 +183,12 @@ do_compile() {
                        oe_runmake busybox.links
                        mv busybox.links busybox.links.$s
                done
+
+               # hard fail if sh is being linked to the suid busybox (detects bug 10346)
+               if grep -q -x "/bin/sh" busybox.links.suid; then
+                       bbfatal "busybox suid binary incorrectly provides /bin/sh"
+               fi
+
                # copy .config.orig back to .config, because the install process may check this file
                cp .config.orig .config
                # cleanup