blob: f8f15a269e1a3201ba7c067a4f75627928b5abc5 [file] [log] [blame]
Nicolas Palix74425ee2010-06-06 17:15:01 +02001#!/bin/sh
2
3SPATCH="`which ${SPATCH:=spatch}`"
4
Bernd Schubert26e56722013-01-29 17:03:37 +01005# The verbosity may be set by the environmental parameter V=
6# as for example with 'make V=1 coccicheck'
7
8if [ -n "$V" -a "$V" != "0" ]; then
9 VERBOSE=1
10else
11 VERBOSE=0
12fi
13
Nicolas Palix1e9dea22010-06-13 09:26:34 +020014if [ "$C" = "1" -o "$C" = "2" ]; then
15 ONLINE=1
16
17# This requires Coccinelle >= 0.2.3
18# FLAGS="-ignore_unknown_options -very_quiet"
19# OPTIONS=$*
20
Greg Dietsche42f1c012012-01-20 17:10:35 -060021# Workaround for Coccinelle < 0.2.3
22 FLAGS="-I $srctree/include -very_quiet"
23 shift $(( $# - 1 ))
24 OPTIONS=$1
Nicolas Palix1e9dea22010-06-13 09:26:34 +020025else
26 ONLINE=0
27 FLAGS="-very_quiet"
Greg Dietsched0bc1fb2011-11-05 20:59:43 -050028 if [ "$KBUILD_EXTMOD" = "" ] ; then
29 OPTIONS="-dir $srctree"
30 else
31 OPTIONS="-dir $KBUILD_EXTMOD -patch $srctree -I $srctree/include -I $KBUILD_EXTMOD/include"
32 fi
Nicolas Palix1e9dea22010-06-13 09:26:34 +020033fi
34
Nicolas Palix74425ee2010-06-06 17:15:01 +020035if [ ! -x "$SPATCH" ]; then
36 echo 'spatch is part of the Coccinelle project and is available at http://coccinelle.lip6.fr/'
37 exit 1
38fi
39
40if [ "$MODE" = "" ] ; then
Nicolas Palix1e9dea22010-06-13 09:26:34 +020041 if [ "$ONLINE" = "0" ] ; then
Nicolas Palix2c1160c82010-10-08 21:27:40 +020042 echo 'You have not explicitly specified the mode to use. Using default "chain" mode.'
43 echo 'All available modes will be tried (in that order): patch, report, context, org'
Nicolas Palix1e9dea22010-06-13 09:26:34 +020044 echo 'You can specify the mode with "make coccicheck MODE=<mode>"'
Nicolas Palix1e9dea22010-06-13 09:26:34 +020045 fi
Nicolas Palix2c1160c82010-10-08 21:27:40 +020046 MODE="chain"
Nicolas Palix03ee0c42010-10-08 21:27:41 +020047elif [ "$MODE" = "report" -o "$MODE" = "org" ] ; then
Nicolas Palix062c1822010-10-24 23:37:34 +020048 FLAGS="$FLAGS -no_show_diff"
Nicolas Palix74425ee2010-06-06 17:15:01 +020049fi
50
Nicolas Palix1e9dea22010-06-13 09:26:34 +020051if [ "$ONLINE" = "0" ] ; then
52 echo ''
53 echo 'Please check for false positives in the output before submitting a patch.'
54 echo 'When using "patch" mode, carefully review the patch before submitting it.'
55 echo ''
56fi
Nicolas Palix74425ee2010-06-06 17:15:01 +020057
Nicolas Palix1e9dea22010-06-13 09:26:34 +020058coccinelle () {
Nicolas Palix74425ee2010-06-06 17:15:01 +020059 COCCI="$1"
Nicolas Palix74425ee2010-06-06 17:15:01 +020060
61 OPT=`grep "Option" $COCCI | cut -d':' -f2`
Nicolas Palix74425ee2010-06-06 17:15:01 +020062
Nicolas Palix062c1822010-10-24 23:37:34 +020063# The option '-parse_cocci' can be used to syntactically check the SmPL files.
Nicolas Palix74425ee2010-06-06 17:15:01 +020064#
Nicolas Palix1e9dea22010-06-13 09:26:34 +020065# $SPATCH -D $MODE $FLAGS -parse_cocci $COCCI $OPT > /dev/null
Nicolas Palix74425ee2010-06-06 17:15:01 +020066
Bernd Schubert26e56722013-01-29 17:03:37 +010067 if [ $VERBOSE -ne 0 ] ; then
Nicolas Palix1e9dea22010-06-13 09:26:34 +020068
69 FILE=`echo $COCCI | sed "s|$srctree/||"`
70
Nicolas Palix3c908412010-10-08 21:27:38 +020071 echo "Processing `basename $COCCI`"
72 echo "with option(s) \"$OPT\""
73 echo ''
Nicolas Palix1e9dea22010-06-13 09:26:34 +020074 echo 'Message example to submit a patch:'
75
Nicolas Palix3c908412010-10-08 21:27:38 +020076 sed -ne 's|^///||p' $COCCI
Nicolas Palix1e9dea22010-06-13 09:26:34 +020077
Nicolas Palix062c1822010-10-24 23:37:34 +020078 if [ "$MODE" = "patch" ] ; then
79 echo ' The semantic patch that makes this change is available'
80 elif [ "$MODE" = "report" ] ; then
81 echo ' The semantic patch that makes this report is available'
82 elif [ "$MODE" = "context" ] ; then
83 echo ' The semantic patch that spots this code is available'
84 elif [ "$MODE" = "org" ] ; then
85 echo ' The semantic patch that makes this Org report is available'
86 else
87 echo ' The semantic patch that makes this output is available'
88 fi
Nicolas Palix1e9dea22010-06-13 09:26:34 +020089 echo " in $FILE."
90 echo ''
91 echo ' More information about semantic patching is available at'
92 echo ' http://coccinelle.lip6.fr/'
93 echo ''
94
Nicolas Palix3c908412010-10-08 21:27:38 +020095 if [ "`sed -ne 's|^//#||p' $COCCI`" ] ; then
96 echo 'Semantic patch information:'
97 sed -ne 's|^//#||p' $COCCI
98 echo ''
99 fi
Nicolas Palix2c1160c82010-10-08 21:27:40 +0200100 fi
Nicolas Palix3c908412010-10-08 21:27:38 +0200101
Nicolas Palix2c1160c82010-10-08 21:27:40 +0200102 if [ "$MODE" = "chain" ] ; then
Nicolas Palix03ee0c42010-10-08 21:27:41 +0200103 $SPATCH -D patch $FLAGS -sp_file $COCCI $OPT $OPTIONS || \
104 $SPATCH -D report $FLAGS -sp_file $COCCI $OPT $OPTIONS -no_show_diff || \
105 $SPATCH -D context $FLAGS -sp_file $COCCI $OPT $OPTIONS || \
106 $SPATCH -D org $FLAGS -sp_file $COCCI $OPT $OPTIONS -no_show_diff || exit 1
Nicolas Palixc05cd6d2012-09-20 22:30:46 +0200107 elif [ "$MODE" = "rep+ctxt" ] ; then
108 $SPATCH -D report $FLAGS -sp_file $COCCI $OPT $OPTIONS -no_show_diff && \
109 $SPATCH -D context $FLAGS -sp_file $COCCI $OPT $OPTIONS || exit 1
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200110 else
Nicolas Palix2c1160c82010-10-08 21:27:40 +0200111 $SPATCH -D $MODE $FLAGS -sp_file $COCCI $OPT $OPTIONS || exit 1
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200112 fi
113
Nicolas Palix74425ee2010-06-06 17:15:01 +0200114}
115
116if [ "$COCCI" = "" ] ; then
117 for f in `find $srctree/scripts/coccinelle/ -name '*.cocci' -type f | sort`; do
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200118 coccinelle $f
Nicolas Palix74425ee2010-06-06 17:15:01 +0200119 done
120else
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200121 coccinelle $COCCI
Nicolas Palix74425ee2010-06-06 17:15:01 +0200122fi