nsdeps 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #!/bin/sh
  2. # SPDX-License-Identifier: GPL-2.0
  3. # Linux kernel symbol namespace import generator
  4. #
  5. # This script requires a minimum spatch version.
  6. SPATCH_REQ_VERSION="1.0.4"
  7. DIR="$(dirname $(readlink -f $0))/.."
  8. SPATCH="`which ${SPATCH:=spatch}`"
  9. if [ ! -x "$SPATCH" ]; then
  10. echo 'spatch is part of the Coccinelle project and is available at http://coccinelle.lip6.fr/'
  11. exit 1
  12. fi
  13. SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
  14. if ! { echo "$SPATCH_REQ_VERSION"; echo "$SPATCH_VERSION"; } | sort -CV ; then
  15. echo "spatch needs to be version $SPATCH_REQ_VERSION or higher"
  16. exit 1
  17. fi
  18. if [ "$KBUILD_EXTMOD" ]; then
  19. src_prefix=
  20. else
  21. src_prefix=$srctree/
  22. fi
  23. generate_deps_for_ns() {
  24. $SPATCH --very-quiet --in-place --sp-file \
  25. $srctree/scripts/coccinelle/misc/add_namespace.cocci -D nsdeps -D ns=$1 $2
  26. }
  27. generate_deps() {
  28. local mod=${1%.ko:}
  29. shift
  30. local namespaces="$*"
  31. local mod_source_files=$(sed "s|^\(.*\)\.o$|${src_prefix}\1.c|" $mod.mod)
  32. for ns in $namespaces; do
  33. echo "Adding namespace $ns to module $mod.ko."
  34. generate_deps_for_ns $ns "$mod_source_files"
  35. # sort the imports
  36. for source_file in $mod_source_files; do
  37. sed '/MODULE_IMPORT_NS/Q' $source_file > ${source_file}.tmp
  38. offset=$(wc -l ${source_file}.tmp | awk '{print $1;}')
  39. cat $source_file | grep MODULE_IMPORT_NS | LC_ALL=C sort -u >> ${source_file}.tmp
  40. tail -n +$((offset +1)) ${source_file} | grep -v MODULE_IMPORT_NS >> ${source_file}.tmp
  41. if ! diff -q ${source_file} ${source_file}.tmp; then
  42. mv ${source_file}.tmp ${source_file}
  43. else
  44. rm ${source_file}.tmp
  45. fi
  46. done
  47. done
  48. }
  49. while read line
  50. do
  51. generate_deps $line
  52. done < $MODULES_NSDEPS