blob: 04c4b96e95ec481f40f8a8d46812c94de79b26ee [file] [log] [blame]
Masahiro Yamada40997fb2019-10-03 16:58:25 +09001#!/bin/sh
Matthias Maennicheb8305a2019-09-06 11:32:32 +01002# SPDX-License-Identifier: GPL-2.0
3# Linux kernel symbol namespace import generator
4#
5# This script requires a minimum spatch version.
6SPATCH_REQ_VERSION="1.0.4"
7
8DIR="$(dirname $(readlink -f $0))/.."
9SPATCH="`which ${SPATCH:=spatch}`"
10if [ ! -x "$SPATCH" ]; then
11 echo 'spatch is part of the Coccinelle project and is available at http://coccinelle.lip6.fr/'
12 exit 1
13fi
14
Matthias Maennicheb8305a2019-09-06 11:32:32 +010015SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
Matthias Maennicheb8305a2019-09-06 11:32:32 +010016
Masahiro Yamada33114c42020-12-13 01:54:29 +090017if ! { echo "$SPATCH_REQ_VERSION"; echo "$SPATCH_VERSION"; } | sort -CV ; then
Matthias Maennicheb8305a2019-09-06 11:32:32 +010018 echo "spatch needs to be version $SPATCH_REQ_VERSION or higher"
19 exit 1
20fi
21
Masahiro Yamadabc35d4b2019-10-29 21:38:08 +090022if [ "$KBUILD_EXTMOD" ]; then
23 src_prefix=
24else
25 src_prefix=$srctree/
26fi
27
Matthias Maennicheb8305a2019-09-06 11:32:32 +010028generate_deps_for_ns() {
29 $SPATCH --very-quiet --in-place --sp-file \
Matthias Maennich55c75492020-06-04 18:41:45 +020030 $srctree/scripts/coccinelle/misc/add_namespace.cocci -D nsdeps -D ns=$1 $2
Matthias Maennicheb8305a2019-09-06 11:32:32 +010031}
32
33generate_deps() {
Masahiro Yamadabbc55bd2019-10-29 21:38:07 +090034 local mod=${1%.ko:}
35 shift
36 local namespaces="$*"
37 local mod_source_files="`cat $mod.mod | sed -n 1p \
Matthias Maennicheb8305a2019-09-06 11:32:32 +010038 | sed -e 's/\.o/\.c/g' \
Masahiro Yamadabc35d4b2019-10-29 21:38:08 +090039 | sed "s|[^ ]* *|${src_prefix}&|g"`"
Masahiro Yamadabbc55bd2019-10-29 21:38:07 +090040 for ns in $namespaces; do
41 echo "Adding namespace $ns to module $mod.ko."
Jessica Yu57baec72019-11-05 11:10:23 +010042 generate_deps_for_ns $ns "$mod_source_files"
Matthias Maennicheb8305a2019-09-06 11:32:32 +010043 # sort the imports
44 for source_file in $mod_source_files; do
45 sed '/MODULE_IMPORT_NS/Q' $source_file > ${source_file}.tmp
46 offset=$(wc -l ${source_file}.tmp | awk '{print $1;}')
Masahiro Yamada77a88272021-04-30 10:56:27 +090047 cat $source_file | grep MODULE_IMPORT_NS | LC_ALL=C sort -u >> ${source_file}.tmp
Matthias Maennicheb8305a2019-09-06 11:32:32 +010048 tail -n +$((offset +1)) ${source_file} | grep -v MODULE_IMPORT_NS >> ${source_file}.tmp
49 if ! diff -q ${source_file} ${source_file}.tmp; then
50 mv ${source_file}.tmp ${source_file}
51 else
52 rm ${source_file}.tmp
53 fi
54 done
55 done
56}
57
Masahiro Yamadabbc55bd2019-10-29 21:38:07 +090058while read line
59do
60 generate_deps $line
Masahiro Yamadabc35d4b2019-10-29 21:38:08 +090061done < $MODULES_NSDEPS