Files
wolfssl/linuxkm/linuxkm-fips-hash-wrapper.sh
2026-05-05 11:02:13 -05:00

133 lines
5.0 KiB
Bash
Executable File

#!/bin/bash
# linuxkm-fips-hash-wrapper.sh -- Wrapper for linuxkm-fips-hash -- looks up the
# fencepost values using readelf, and assembles the argument list from them.
#
# Copyright (C) 2006-2026 wolfSSL Inc.
#
# This file is part of wolfSSL.
#
# wolfSSL is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# wolfSSL is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
set -o noclobber -o nounset -o pipefail -o errexit
mod_path=$1
shift
# require Gnu Awk, for strtonum().
if [[ -v AWK ]] && ! "$AWK" --version 2>&1 | grep -F -q 'GNU Awk'; then
unset AWK
fi
if [[ ! -v AWK ]]; then
if command -v gawk >/dev/null; then
AWK='gawk'
else
AWK='awk'
fi
fi
if ! "$AWK" --version 2>&1 | grep -F -q 'GNU Awk'; then
echo "Couldn't find required GNU Awk executable." >&2
exit 1
fi
if [[ ! -v COREKEY ]]; then
if [[ ! -v LIBWOLFSSL ]]; then
LIBWOLFSSL=./libwolfssl-user-build/src/.libs/libwolfssl.so
fi
read -a coreKey_a < <("${READELF-readelf}" --symbols --wide "$LIBWOLFSSL" | grep --max-count=1 -E -e '[[:space:]]coreKey$') || exit $?
if [[ ${#coreKey_a[@]} != 8 || "${coreKey_a[2]}" != "65" ]]; then
echo "unexpected readelf output: \"${coreKey_a[*]}\" (${#coreKey_a[@]})" >&2
exit 1
fi
coreKey_offset=$((0x${coreKey_a[1]}))
COREKEY=$(dd if="$LIBWOLFSSL" bs=64 iflag=skip_bytes,count_bytes skip="$coreKey_offset" count=64 status=none) || exit $?
if [[ "$COREKEY" =~ ^[0-9A-Fa-f]{64}$ ]]; then
:
else
echo "unexpected value for coreKey \"${COREKEY}\"." >&2
exit 1
fi
fi
# shellcheck disable=SC2016 # using $AWK instead of awk confuses shellcheck.
readarray -t fenceposts < <(readelf --wide --sections --symbols "$mod_path" | "$AWK" '
BEGIN {
fips_fenceposts["wc_linuxkm_pie_text_reloc_tab"] = "text_reloc_tab.start";
fips_fenceposts["wc_linuxkm_pie_text_reloc_tab_length"] = "text_reloc_tab.len_start";
fips_fenceposts["wc_linuxkm_pie_rodata_reloc_tab"] = "rodata_reloc_tab.start";
fips_fenceposts["wc_linuxkm_pie_rodata_reloc_tab_length"] = "rodata_reloc_tab.len_start";
fips_fenceposts["verifyCore"] = "verifyCore_start";
fips_fenceposts["wolfCrypt_FIPS_first"] = "fips_text_start";
fips_fenceposts["wolfCrypt_FIPS_last"] = "fips_text_end";
fips_fenceposts["wolfCrypt_FIPS_ro_start"] = "fips_rodata_start";
fips_fenceposts["wolfCrypt_FIPS_ro_end"] = "fips_rodata_end";
singleton_ends["wc_linuxkm_pie_text_reloc_tab"] = "text_reloc_tab.end";
singleton_ends["wc_linuxkm_pie_text_reloc_tab_length"] = "text_reloc_tab.len_end";
singleton_ends["wc_linuxkm_pie_rodata_reloc_tab"] = "rodata_reloc_tab.end";
singleton_ends["wc_linuxkm_pie_rodata_reloc_tab_length"] = "rodata_reloc_tab.len_end";
singleton_ends["verifyCore"] = "verifyCore_end";
}
/^Section Headers:/ {
in_sections = 1;
in_symbols = 0;
next;
}
/^Symbol table / {
if (! in_sections) {
print "symbol table appeared before section headers." >"/dev/stderr";
exit(1);
}
in_sections = 0;
in_symbols = 1;
next;
}
{
if (in_sections) {
if (match($0,
"^[[:space:]]*\\[([^]]+)\\][[:space:]]+\\.([^[:space:].]+)_wolfcrypt[[:space:]]+[^[:space:]]+[[:space:]]+[^[:space:]]+[[:space:]]+([0-9a-f]+)[[:space:]]+([0-9a-f]+)[[:space:]]",
section_line_a)) {
segnum = strtonum(section_line_a[1]);
segname = section_line_a[2];
segstart = section_line_a[3];
segsize = section_line_a[4];
seg_starts_by_id[segnum] = strtonum("0x" segstart);
printf("--%s_start\n0x%x\n--%s_end\n0x%x\n", segname, strtonum("0x" segstart), segname, strtonum("0x" segstart) + strtonum("0x" segsize));
next;
}
}
if (in_symbols) {
if ($7 !~ "^[0-9]+$")
next;
if (($4 != "NOTYPE") && ($4 != "OBJECT") && ($4 != "FUNC"))
next;
if (! ($8 in fips_fenceposts))
next;
if (! ($7 in seg_starts_by_id)) {
print "segment offset missing for segment " $7 " for symbol " $8 "." >"/dev/stderr";
exit(1);
}
printf("--%s\n0x%x\n", fips_fenceposts[$8], seg_starts_by_id[$7] + strtonum("0x" $2));
if ($8 in singleton_ends)
printf("--%s\n0x%x\n", singleton_ends[$8], seg_starts_by_id[$7] + strtonum("0x" $2) + strtonum($3));
}
}')
./linuxkm-fips-hash "${fenceposts[@]}" --mod-path "$mod_path" --in-place --core-key="$COREKEY" "$@"