3 SPATCH="`which ${SPATCH:=spatch}`"
5 if [ "$C" = "1" -o "$C" = "2" ]; then
8 # This requires Coccinelle >= 0.2.3
9 # FLAGS="-ignore_unknown_options -very_quiet"
12 # Workaround for Coccinelle < 0.2.3
13 FLAGS="-I $srctree/include -very_quiet"
19 OPTIONS="-dir $srctree"
22 if [ ! -x "$SPATCH" ]; then
23 echo 'spatch is part of the Coccinelle project and is available at http://coccinelle.lip6.fr/'
27 if [ "$MODE" = "" ] ; then
28 if [ "$ONLINE" = "0" ] ; then
29 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'
31 echo 'You can specify the mode with "make coccicheck MODE=<mode>"'
34 elif [ "$MODE" = "report" -o "$MODE" = "org" ] ; then
35 FLAGS="$FLAGS -no_show_diff"
38 if [ "$ONLINE" = "0" ] ; then
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.'
48 OPT=`grep "Option" $COCCI | cut -d':' -f2`
50 # The option '-parse_cocci' can be used to syntactically check the SmPL files.
52 # $SPATCH -D $MODE $FLAGS -parse_cocci $COCCI $OPT > /dev/null
54 if [ "$ONLINE" = "0" ] ; then
56 FILE=`echo $COCCI | sed "s|$srctree/||"`
58 echo "Processing `basename $COCCI`"
59 echo "with option(s) \"$OPT\""
61 echo 'Message example to submit a patch:'
63 sed -ne 's|^///||p' $COCCI
65 if [ "$MODE" = "patch" ] ; then
66 echo ' The semantic patch that makes this change is available'
67 elif [ "$MODE" = "report" ] ; then
68 echo ' The semantic patch that makes this report is available'
69 elif [ "$MODE" = "context" ] ; then
70 echo ' The semantic patch that spots this code is available'
71 elif [ "$MODE" = "org" ] ; then
72 echo ' The semantic patch that makes this Org report is available'
74 echo ' The semantic patch that makes this output is available'
78 echo ' More information about semantic patching is available at'
79 echo ' http://coccinelle.lip6.fr/'
82 if [ "`sed -ne 's|^//#||p' $COCCI`" ] ; then
83 echo 'Semantic patch information:'
84 sed -ne 's|^//#||p' $COCCI
89 if [ "$MODE" = "chain" ] ; then
90 $SPATCH -D patch $FLAGS -sp_file $COCCI $OPT $OPTIONS || \
91 $SPATCH -D report $FLAGS -sp_file $COCCI $OPT $OPTIONS -no_show_diff || \
92 $SPATCH -D context $FLAGS -sp_file $COCCI $OPT $OPTIONS || \
93 $SPATCH -D org $FLAGS -sp_file $COCCI $OPT $OPTIONS -no_show_diff || exit 1
95 $SPATCH -D $MODE $FLAGS -sp_file $COCCI $OPT $OPTIONS || exit 1
100 if [ "$COCCI" = "" ] ; then
101 for f in `find $srctree/scripts/coccinelle/ -name '*.cocci' -type f | sort`; do