#! /bin/bash # # This script is called during external module building to create dependencies # both upon the RHEL kernel, and on additional external modules. Symbols that # cannot be reconciled against those provided by the kernel are assumed to be # provided by an external module and "ksym" replaces th regular "kernel" dep. IFS=$'\n' # Extract all of the symbols provided by this module. all_provides() { nm "$@" \ | sed -r -ne 's:^0*([0-9a-f]+) A __crc_(.+):0x\1 \2:p' \ | awk --non-decimal-data '{printf("0x%08x\t%s\n", $1, $2)}' \ | LANG=C sort -k2,2 -u } # Extract all of the requirements of this module. all_requires() { for module in "$@"; do set -- $(/sbin/modinfo -F vermagic "$module" | sed -e 's: .*::' -e q) /sbin/modprobe --dump-modversions "$module" \ | awk --non-decimal-data ' BEGIN { FS = "\t" ; OFS = "\t" } {printf("0x%08x\t%s\n", $1, $2)}' \ | sed -r -e 's:$:\t'"$1"':' done \ | LANG=C sort -k2,2 -u } # Filter out requirements fulfilled by the module itself. mod_requires() { module=$1 LANG=C join -t $'\t' -j 2 -v 1 \ <(all_requires "$module") \ <(all_provides "$module") \ | LANG=C sort -k1,1 -u } if ! [ -e /sbin/modinfo -a -e /sbin/modprobe ]; then cat > /dev/null exit 0 fi modules=($(grep -E '/lib/modules/.+\.ko$')) if [ ${#modules[@]} -gt 0 ]; then kernel=$(/sbin/modinfo -F vermagic "${modules[0]}" | sed -e 's: .*::' -e q) symvers=$(mktemp -t ${0##*/}.XXXXX) cat /usr/src/kernels/$kernel/Module.symvers | awk ' BEGIN { FS = "\t" ; OFS = "\t" } { print $2 "\t" $1 } ' \ | sed -r -e 's:$:\t'"$kernel"':' \ | LANG=C sort -k1,1 -u > $symvers # Symbols matching with the kernel get a "kernel" dependency LANG=C join -t '\t' -j 1 $symvers <(mod_requires "${modules[@]}") | LANG=C sort -u \ | awk '{ FS = "\t" ; OFS = "\t" } { print "kernel(" $1 ") = " $2 }' # Symbols from elsewhere get a "ksym" dependency LANG=C join -t '\t' -j 1 -v 2 $symvers <(mod_requires "${modules[@]}") | LANG=C sort -u \ | awk '{ FS = "\t" ; OFS = "\t" } { print "ksym(" $1 ") = " $2 }' fi