Fix issue where params which are sub-strings of other params caused problems e.g. ro and cros_secure

Change-Id: Ic6dd5a883646103b32cfb58712df7d34725c5f62

BUG=chromium-os:12285
TEST=Ran ./ensure_secure_kernelparams.sh chromiumos_base_image.bin on today's mario build which had repro'd the bug

Review URL: http://codereview.chromium.org/6538034
This commit is contained in:
Jim Hebert
2011-02-17 16:54:24 -08:00
parent b944534edd
commit 00b7d48f39

View File

@@ -32,6 +32,12 @@ dmparams_mangle_sha1() {
echo "$1" | sed 's/sha1 [0-9a-fA-F]*/sha1 MAGIC_HASH/' echo "$1" | sed 's/sha1 [0-9a-fA-F]*/sha1 MAGIC_HASH/'
} }
# This escapes any non-alphanum character, since many such characters
# are regex metacharacters.
escape_regexmetas() {
echo "$1" | sed 's/\([^a-zA-Z0-9]\)/\\\1/g'
}
usage() { usage() {
echo "Usage $PROG image [config]" echo "Usage $PROG image [config]"
} }
@@ -86,20 +92,22 @@ main() {
fi fi
# Ensure all other required params are present. # Ensure all other required params are present.
for param in ${required_kparams[@]}; do : for param in ${required_kparams[@]}; do
if [[ "$kparams_nodm" != *$param* ]]; then if [[ "$kparams_nodm" != *$param* ]]; then
echo "Kernel parameters missing required value: $param" echo "Kernel parameters missing required value: $param"
testfail=1 testfail=1
else else
# Remove matched params as we go. If all goes well, kparams_nodm # Remove matched params as we go. If all goes well, kparams_nodm
# will be nothing left but whitespace by the end. # will be nothing left but whitespace by the end.
kparams_nodm=${kparams_nodm/$param/} param=$(escape_regexmetas "$param")
kparams_nodm=$(echo "$kparams_nodm" | sed "s/\b$param\b//")
fi fi
done done
# Check-off each of the allowed-but-optional params that were present. # Check-off each of the allowed-but-optional params that were present.
for param in ${optional_kparams[@]}; do : for param in ${optional_kparams[@]}; do
kparams_nodm=${kparams_nodm/$param/} param=$(escape_regexmetas "$param")
kparams_nodm=$(echo "$kparams_nodm" | sed "s/\b$param\b//")
done done
# This section enforces the default-deny for any unexpected params # This section enforces the default-deny for any unexpected params