blob: 7529af15672d0c16738715e47c55258693c319e6 [file] [log] [blame]
Nicolas Palix74425ee2010-06-06 17:15:01 +02001#!/bin/sh
2
3SPATCH="`which ${SPATCH:=spatch}`"
4
Nicolas Palix1e9dea22010-06-13 09:26:34 +02005if [ "$C" = "1" -o "$C" = "2" ]; then
6 ONLINE=1
7
8# This requires Coccinelle >= 0.2.3
9# FLAGS="-ignore_unknown_options -very_quiet"
10# OPTIONS=$*
11
12# Workaround for Coccinelle < 0.2.3
13 FLAGS="-I $srctree/include -very_quiet"
14 shift $(( $# - 1 ))
15 OPTIONS=$1
16else
17 ONLINE=0
18 FLAGS="-very_quiet"
Nicolas Palix2c1160c82010-10-08 21:27:40 +020019 OPTIONS="-dir $srctree"
Nicolas Palix1e9dea22010-06-13 09:26:34 +020020fi
21
Nicolas Palix74425ee2010-06-06 17:15:01 +020022if [ ! -x "$SPATCH" ]; then
23 echo 'spatch is part of the Coccinelle project and is available at http://coccinelle.lip6.fr/'
24 exit 1
25fi
26
27if [ "$MODE" = "" ] ; then
Nicolas Palix1e9dea22010-06-13 09:26:34 +020028 if [ "$ONLINE" = "0" ] ; then
Nicolas Palix2c1160c82010-10-08 21:27:40 +020029 echo 'You have not explicitly specified the mode to use. Using default "chain" mode.'
30 echo 'All available modes will be tried (in that order): patch, report, context, org'
Nicolas Palix1e9dea22010-06-13 09:26:34 +020031 echo 'You can specify the mode with "make coccicheck MODE=<mode>"'
Nicolas Palix1e9dea22010-06-13 09:26:34 +020032 fi
Nicolas Palix2c1160c82010-10-08 21:27:40 +020033 MODE="chain"
Nicolas Palix03ee0c42010-10-08 21:27:41 +020034elif [ "$MODE" = "report" -o "$MODE" = "org" ] ; then
35 FLAGS="$FLAGS -no_show_diff"
Nicolas Palix74425ee2010-06-06 17:15:01 +020036fi
37
Nicolas Palix1e9dea22010-06-13 09:26:34 +020038if [ "$ONLINE" = "0" ] ; then
39 echo ''
40 echo 'Please check for false positives in the output before submitting a patch.'
41 echo 'When using "patch" mode, carefully review the patch before submitting it.'
42 echo ''
43fi
Nicolas Palix74425ee2010-06-06 17:15:01 +020044
Nicolas Palix1e9dea22010-06-13 09:26:34 +020045coccinelle () {
Nicolas Palix74425ee2010-06-06 17:15:01 +020046 COCCI="$1"
Nicolas Palix74425ee2010-06-06 17:15:01 +020047
48 OPT=`grep "Option" $COCCI | cut -d':' -f2`
Nicolas Palix74425ee2010-06-06 17:15:01 +020049
50# The option '-parse_cocci' can be used to syntaxically check the SmPL files.
51#
Nicolas Palix1e9dea22010-06-13 09:26:34 +020052# $SPATCH -D $MODE $FLAGS -parse_cocci $COCCI $OPT > /dev/null
Nicolas Palix74425ee2010-06-06 17:15:01 +020053
Nicolas Palix1e9dea22010-06-13 09:26:34 +020054 if [ "$ONLINE" = "0" ] ; then
55
56 FILE=`echo $COCCI | sed "s|$srctree/||"`
57
Nicolas Palix3c908412010-10-08 21:27:38 +020058 echo "Processing `basename $COCCI`"
59 echo "with option(s) \"$OPT\""
60 echo ''
Nicolas Palix1e9dea22010-06-13 09:26:34 +020061 echo 'Message example to submit a patch:'
62
Nicolas Palix3c908412010-10-08 21:27:38 +020063 sed -ne 's|^///||p' $COCCI
Nicolas Palix1e9dea22010-06-13 09:26:34 +020064
65 echo ' The semantic patch that makes this change is available'
66 echo " in $FILE."
67 echo ''
68 echo ' More information about semantic patching is available at'
69 echo ' http://coccinelle.lip6.fr/'
70 echo ''
71
Nicolas Palix3c908412010-10-08 21:27:38 +020072 if [ "`sed -ne 's|^//#||p' $COCCI`" ] ; then
73 echo 'Semantic patch information:'
74 sed -ne 's|^//#||p' $COCCI
75 echo ''
76 fi
Nicolas Palix2c1160c82010-10-08 21:27:40 +020077 fi
Nicolas Palix3c908412010-10-08 21:27:38 +020078
Nicolas Palix2c1160c82010-10-08 21:27:40 +020079 if [ "$MODE" = "chain" ] ; then
Nicolas Palix03ee0c42010-10-08 21:27:41 +020080 $SPATCH -D patch $FLAGS -sp_file $COCCI $OPT $OPTIONS || \
81 $SPATCH -D report $FLAGS -sp_file $COCCI $OPT $OPTIONS -no_show_diff || \
82 $SPATCH -D context $FLAGS -sp_file $COCCI $OPT $OPTIONS || \
83 $SPATCH -D org $FLAGS -sp_file $COCCI $OPT $OPTIONS -no_show_diff || exit 1
Nicolas Palix1e9dea22010-06-13 09:26:34 +020084 else
Nicolas Palix2c1160c82010-10-08 21:27:40 +020085 $SPATCH -D $MODE $FLAGS -sp_file $COCCI $OPT $OPTIONS || exit 1
Nicolas Palix1e9dea22010-06-13 09:26:34 +020086 fi
87
Nicolas Palix74425ee2010-06-06 17:15:01 +020088}
89
90if [ "$COCCI" = "" ] ; then
91 for f in `find $srctree/scripts/coccinelle/ -name '*.cocci' -type f | sort`; do
Nicolas Palix1e9dea22010-06-13 09:26:34 +020092 coccinelle $f
Nicolas Palix74425ee2010-06-06 17:15:01 +020093 done
94else
Nicolas Palix1e9dea22010-06-13 09:26:34 +020095 coccinelle $COCCI
Nicolas Palix74425ee2010-06-06 17:15:01 +020096fi