Blame SOURCES/find-requires.ksyms

7b79ae
#! /bin/bash
7b79ae
#
7b79ae
# This script is called during external module building to create dependencies
7b79ae
# both upon the RHEL kernel, and on additional external modules. Symbols that
7b79ae
# cannot be reconciled against those provided by the kernel are assumed to be
7b79ae
# provided by an external module and "ksym" replaces th regular "kernel" dep.
7b79ae
7b79ae
IFS=$'\n'
7b79ae
7b79ae
# Extract all of the symbols provided by this module.
7b79ae
all_provides() {
7b79ae
    for module in "$@"; do
7b79ae
        tmpfile=""
7b79ae
        if [ "x${module%.ko}" = "x${module}" ]; then
7b79ae
            tmpfile=$(mktemp -t ${0##*/}.XXXXXX.ko)
7b79ae
            proc_bin=
7b79ae
            case "${module##*.}" in
7b79ae
            xz)
7b79ae
                    proc_bin=xz
7b79ae
                    ;;
7b79ae
            bz2)
7b79ae
                    proc_bin=bzip2
7b79ae
                    ;;
7b79ae
            gz)
7b79ae
                    proc_bin=gzip
7b79ae
                    ;;
7b79ae
            esac
7b79ae
7b79ae
            [ -n "$proc_bin" ] || continue
7b79ae
7b79ae
            "$proc_bin" -d -c - < "$module" > "$tmpfile" || continue
7b79ae
            module="$tmpfile"
7b79ae
        fi
7b79ae
7b79ae
        if [[ -n $(nm "$module" | sed -r -ne 's:^0*([0-9a-f]+) A __crc_(.+):0x\1 \2:p') ]]; then
7b79ae
            nm "$module" \
7b79ae
            | sed -r -ne 's:^0*([0-9a-f]+) A __crc_(.+):0x\1 \2:p' \
7b79ae
            | awk --non-decimal-data '{printf("%s:0x%08x\n", $2, $1)}'
7b79ae
        else
7b79ae
            ELFRODATA=$(readelf -R .rodata "$module" | awk '/0x/{printf $2$3$4$5}')
7b79ae
            if [[ -n $(readelf -h "$module" | grep "little endian") ]]; then
7b79ae
                RODATA=$(echo $ELFRODATA | sed 's/\(..\)\(..\)\(..\)\(..\)/\4\3\2\1/g')
7b79ae
            else
7b79ae
                RODATA=$ELFRODATA
7b79ae
            fi
7b79ae
            for sym in $(nm "$module" | sed -r -ne 's:^0*([0-9a-f]+) R __crc_(.+):0x\1 \2:p'); do
7b79ae
                echo $sym $RODATA
7b79ae
            done \
7b79ae
            | awk --non-decimal-data '{printf("%s:0x%08s\n", $2, substr($3,($1*2)+1,8))}'
7b79ae
        fi
7b79ae
7b79ae
        [ -z "$tmpfile" ] || rm -f -- "$tmpfile"
7b79ae
    done \
7b79ae
    | LC_ALL=C sort -k1,1 -u
7b79ae
}
7b79ae
7b79ae
# Extract all of the requirements of this module.
7b79ae
all_requires() {
7b79ae
    for module in "$@"; do
7b79ae
        set -- $(/sbin/modinfo -F vermagic "$module" | sed -e 's: .*::' -e q)
7b79ae
        /sbin/modprobe --dump-modversions "$module" \
7b79ae
        | awk --non-decimal-data '
7b79ae
            BEGIN { FS = "\t" ; OFS = "\t" }
7b79ae
            {printf("%s:0x%08x\n", $2, $1)}' \
7b79ae
        | sed -r -e 's:$:\t'"$1"':'
7b79ae
    done \
7b79ae
    | LC_ALL=C sort -k1,1 -u
7b79ae
}
7b79ae
7b79ae
# Filter out requirements fulfilled by the module itself.
7b79ae
mod_requires() {
7b79ae
    LC_ALL=C join -t $'\t' -j 1 -v 1 \
7b79ae
        <(all_requires "$@") \
7b79ae
        <(all_provides "$@") \
7b79ae
    | LC_ALL=C sort -k1,1 -u
7b79ae
}
7b79ae
7b79ae
if ! [ -e /sbin/modinfo -a -e /sbin/modprobe ]; then
7b79ae
    cat > /dev/null
7b79ae
    exit 0
7b79ae
fi
7b79ae
7b79ae
check_kabi() {
7b79ae
    arch=$(uname -m)
7b79ae
    kabi_file="/lib/modules/kabi-current/kabi_whitelist_$arch"
7b79ae
7b79ae
    # If not installed, output a warning and return (continue)
7b79ae
    if [ ! -f "$kabi_file" ]; then
7b79ae
        echo "" >&2
7b79ae
        echo "********************************************************************************" >&2
7b79ae
        echo "*********************** KERNEL ABI COMPATIBILITY WARNING ***********************" >&2
7b79ae
        echo "********************************************************************************" >&2
7b79ae
        echo "The kernel ABI reference files (provided by "kabi-whitelists") were not found." >&2
7b79ae
        echo "No compatibility check was performed. Please install the kABI reference files" >&2
7b79ae
        echo "and rebuild if you would like to verify compatibility with kernel ABI." >&2
7b79ae
        echo "" >&2
7b79ae
        return
7b79ae
    fi
7b79ae
7b79ae
    unset non_kabi
7b79ae
    for symbol in "$@"; do
7b79ae
        if ! egrep "^[[:space:]]$symbol\$" $kabi_file >/dev/null; then
7b79ae
            non_kabi=("${non_kabi[@]}" "$symbol")
7b79ae
        fi
7b79ae
    done
7b79ae
7b79ae
    if [ ${#non_kabi[@]} -gt 0 ]; then
7b79ae
        echo "" >&2
7b79ae
        echo "********************************************************************************" >&2
7b79ae
        echo "*********************** KERNEL ABI COMPATIBILITY WARNING ***********************" >&2
7b79ae
        echo "********************************************************************************" >&2
7b79ae
        echo "The following kernel symbols are not guaranteed to remain compatible with" >&2
7b79ae
        echo "future kernel updates to this RHEL release:" >&2
7b79ae
        echo "" >&2
7b79ae
        for symbol in "${non_kabi[@]}"; do
7b79ae
            printf "\t$symbol\n" >&2
7b79ae
        done
7b79ae
        echo "" >&2
7b79ae
        echo "Red Hat recommends that you consider using only official kernel ABI symbols" >&2
7b79ae
        echo "where possible. Requests for additions to the kernel ABI can be filed with" >&2
7b79ae
        echo "your partner or customer representative (component: driver-update-program)." >&2
7b79ae
        echo "" >&2
7b79ae
    fi
7b79ae
}
7b79ae
7b79ae
modules=($(grep -E '/lib/modules/.+\.ko(\.gz|\.bz2|\.xz)?$'))
7b79ae
if [ ${#modules[@]} -gt 0 ]; then
7b79ae
    kernel=$(/sbin/modinfo -F vermagic "${modules[0]}" | sed -e 's: .*::' -e q)
7b79ae
7b79ae
    # get all that kernel provides
7b79ae
    symvers=$(mktemp -t ${0##*/}.XXXXX)
7b79ae
7b79ae
    cat /usr/src/kernels/$kernel/Module.symvers | awk '
7b79ae
        BEGIN { FS = "\t" ; OFS = "\t" }
7b79ae
        { print $2 ":" $1 }
7b79ae
    ' \
7b79ae
    | sed -r -e 's:$:\t'"$kernel"':' \
7b79ae
    | LC_ALL=C sort -k1,1 -u > $symvers
7b79ae
7b79ae
    # Symbols matching with the kernel get a "kernel" dependency
7b79ae
    mod_req=$(mktemp -t mod_req.XXXXX)
7b79ae
    mod_requires "${modules[@]}" > "$mod_req"
7b79ae
    LC_ALL=C join -t $'\t' -j 1 $symvers "$mod_req" | LC_ALL=C sort -u \
7b79ae
    | awk 'BEGIN { FS = "[\t:]" ; OFS = "\t" } { print "kernel(" $1 ") = " $2 }'
7b79ae
7b79ae
    # Symbols from elsewhere get a "ksym" dependency
7b79ae
    LC_ALL=C join -t $'\t' -j 1 -v 2 $symvers "$mod_req" | LC_ALL=C sort -u \
7b79ae
    | awk 'BEGIN { FS = "[\t:]" ; OFS = "\t" } { print "ksym(" $1 ") = " $2 }'
7b79ae
7b79ae
    # Check kABI if the kabi-whitelists package is installed
7b79ae
    # Do this last so we can try to output this error at the end
7b79ae
    kabi_check_symbols=($(LC_ALL=C join -t $'\t' -j 1 $symvers "$mod_req" | LC_ALL=C sort -u \
7b79ae
    | awk 'BEGIN { FS = "[\t:]" ; OFS = "\t" } { print $1 }'))
7b79ae
    check_kabi "${kabi_check_symbols[@]}"
7b79ae
fi