Masahiro Yamada | 40997fb | 2019-10-03 16:58:25 +0900 | [diff] [blame] | 1 | #!/bin/sh |
Matthias Maennich | eb8305a | 2019-09-06 11:32:32 +0100 | [diff] [blame] | 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 | |
| 8 | DIR="$(dirname $(readlink -f $0))/.." |
| 9 | SPATCH="`which ${SPATCH:=spatch}`" |
| 10 | if [ ! -x "$SPATCH" ]; then |
| 11 | echo 'spatch is part of the Coccinelle project and is available at http://coccinelle.lip6.fr/' |
| 12 | exit 1 |
| 13 | fi |
| 14 | |
| 15 | SPATCH_REQ_VERSION_NUM=$(echo $SPATCH_REQ_VERSION | ${DIR}/scripts/ld-version.sh) |
| 16 | SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}') |
| 17 | SPATCH_VERSION_NUM=$(echo $SPATCH_VERSION | ${DIR}/scripts/ld-version.sh) |
| 18 | |
| 19 | if [ "$SPATCH_VERSION_NUM" -lt "$SPATCH_REQ_VERSION_NUM" ] ; then |
| 20 | echo "spatch needs to be version $SPATCH_REQ_VERSION or higher" |
| 21 | exit 1 |
| 22 | fi |
| 23 | |
| 24 | generate_deps_for_ns() { |
| 25 | $SPATCH --very-quiet --in-place --sp-file \ |
| 26 | $srctree/scripts/coccinelle/misc/add_namespace.cocci -D ns=$1 $2 |
| 27 | } |
| 28 | |
| 29 | generate_deps() { |
Masahiro Yamada | bbc55bd | 2019-10-29 21:38:07 +0900 | [diff] [blame^] | 30 | local mod=${1%.ko:} |
| 31 | shift |
| 32 | local namespaces="$*" |
| 33 | local mod_source_files="`cat $mod.mod | sed -n 1p \ |
Matthias Maennich | eb8305a | 2019-09-06 11:32:32 +0100 | [diff] [blame] | 34 | | sed -e 's/\.o/\.c/g' \ |
Jessica Yu | 57baec7 | 2019-11-05 11:10:23 +0100 | [diff] [blame] | 35 | | sed "s|[^ ]* *|${srctree}/&|g"`" |
Masahiro Yamada | bbc55bd | 2019-10-29 21:38:07 +0900 | [diff] [blame^] | 36 | for ns in $namespaces; do |
| 37 | echo "Adding namespace $ns to module $mod.ko." |
Jessica Yu | 57baec7 | 2019-11-05 11:10:23 +0100 | [diff] [blame] | 38 | generate_deps_for_ns $ns "$mod_source_files" |
Matthias Maennich | eb8305a | 2019-09-06 11:32:32 +0100 | [diff] [blame] | 39 | # sort the imports |
| 40 | for source_file in $mod_source_files; do |
| 41 | sed '/MODULE_IMPORT_NS/Q' $source_file > ${source_file}.tmp |
| 42 | offset=$(wc -l ${source_file}.tmp | awk '{print $1;}') |
Masahiro Yamada | df6f098 | 2019-10-03 16:58:26 +0900 | [diff] [blame] | 43 | cat $source_file | grep MODULE_IMPORT_NS | LANG=C sort -u >> ${source_file}.tmp |
Matthias Maennich | eb8305a | 2019-09-06 11:32:32 +0100 | [diff] [blame] | 44 | tail -n +$((offset +1)) ${source_file} | grep -v MODULE_IMPORT_NS >> ${source_file}.tmp |
| 45 | if ! diff -q ${source_file} ${source_file}.tmp; then |
| 46 | mv ${source_file}.tmp ${source_file} |
| 47 | else |
| 48 | rm ${source_file}.tmp |
| 49 | fi |
| 50 | done |
| 51 | done |
| 52 | } |
| 53 | |
Masahiro Yamada | bbc55bd | 2019-10-29 21:38:07 +0900 | [diff] [blame^] | 54 | while read line |
| 55 | do |
| 56 | generate_deps $line |
| 57 | done < modules.nsdeps |