| Nicolas Palix | 9e39555 | 2013-03-02 22:36:26 +0100 | [diff] [blame] | 1 | #!/bin/bash | 
| Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 2 |  | 
 | 3 | SPATCH="`which ${SPATCH:=spatch}`" | 
 | 4 |  | 
| Bernd Schubert | 26e5672 | 2013-01-29 17:03:37 +0100 | [diff] [blame] | 5 | # The verbosity may be set by the environmental parameter V= | 
 | 6 | # as for example with 'make V=1 coccicheck' | 
 | 7 |  | 
 | 8 | if [ -n "$V" -a "$V" != "0" ]; then | 
 | 9 | 	VERBOSE=1 | 
 | 10 | else | 
 | 11 | 	VERBOSE=0 | 
 | 12 | fi | 
 | 13 |  | 
| Nicolas Palix | ed621cc | 2013-03-02 22:36:27 +0100 | [diff] [blame] | 14 | FLAGS="$SPFLAGS -very_quiet" | 
| Nicolas Palix | 9e39555 | 2013-03-02 22:36:26 +0100 | [diff] [blame] | 15 |  | 
 | 16 | # spatch only allows include directories with the syntax "-I include" | 
 | 17 | # while gcc also allows "-Iinclude" and "-include include" | 
 | 18 | COCCIINCLUDE=${LINUXINCLUDE//-I/-I } | 
 | 19 | COCCIINCLUDE=${COCCIINCLUDE//-include/-I} | 
 | 20 |  | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 21 | if [ "$C" = "1" -o "$C" = "2" ]; then | 
 | 22 |     ONLINE=1 | 
 | 23 |  | 
| Nicolas Palix | 9e39555 | 2013-03-02 22:36:26 +0100 | [diff] [blame] | 24 |     # Take only the last argument, which is the C file to test | 
 | 25 |     shift $(( $# - 1 )) | 
 | 26 |     OPTIONS="$COCCIINCLUDE $1" | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 27 | else | 
 | 28 |     ONLINE=0 | 
| Greg Dietsche | d0bc1fb | 2011-11-05 20:59:43 -0500 | [diff] [blame] | 29 |     if [ "$KBUILD_EXTMOD" = "" ] ; then | 
| Nicolas Palix | 9e39555 | 2013-03-02 22:36:26 +0100 | [diff] [blame] | 30 |         OPTIONS="-dir $srctree $COCCIINCLUDE" | 
| Greg Dietsche | d0bc1fb | 2011-11-05 20:59:43 -0500 | [diff] [blame] | 31 |     else | 
| Nicolas Palix | bad6a40 | 2013-03-02 22:36:28 +0100 | [diff] [blame] | 32 |         OPTIONS="-dir $KBUILD_EXTMOD $COCCIINCLUDE" | 
| Greg Dietsche | d0bc1fb | 2011-11-05 20:59:43 -0500 | [diff] [blame] | 33 |     fi | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 34 | fi | 
 | 35 |  | 
| Nicolas Palix | bad6a40 | 2013-03-02 22:36:28 +0100 | [diff] [blame] | 36 | if [ "$KBUILD_EXTMOD" != "" ] ; then | 
 | 37 |     OPTIONS="-patch $srctree $OPTIONS" | 
 | 38 | fi | 
 | 39 |  | 
| Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 40 | if [ ! -x "$SPATCH" ]; then | 
 | 41 |     echo 'spatch is part of the Coccinelle project and is available at http://coccinelle.lip6.fr/' | 
 | 42 |     exit 1 | 
 | 43 | fi | 
 | 44 |  | 
 | 45 | if [ "$MODE" = "" ] ; then | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 46 |     if [ "$ONLINE" = "0" ] ; then | 
| Nicolas Palix | 2c1160c | 2010-10-08 21:27:40 +0200 | [diff] [blame] | 47 | 	echo 'You have not explicitly specified the mode to use. Using default "chain" mode.' | 
 | 48 | 	echo 'All available modes will be tried (in that order): patch, report, context, org' | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 49 | 	echo 'You can specify the mode with "make coccicheck MODE=<mode>"' | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 50 |     fi | 
| Nicolas Palix | 2c1160c | 2010-10-08 21:27:40 +0200 | [diff] [blame] | 51 |     MODE="chain" | 
| Nicolas Palix | 03ee0c4 | 2010-10-08 21:27:41 +0200 | [diff] [blame] | 52 | elif [ "$MODE" = "report" -o "$MODE" = "org" ] ; then | 
| Nicolas Palix | 062c182 | 2010-10-24 23:37:34 +0200 | [diff] [blame] | 53 |     FLAGS="$FLAGS -no_show_diff" | 
| Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 54 | fi | 
 | 55 |  | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 56 | if [ "$ONLINE" = "0" ] ; then | 
 | 57 |     echo '' | 
 | 58 |     echo 'Please check for false positives in the output before submitting a patch.' | 
 | 59 |     echo 'When using "patch" mode, carefully review the patch before submitting it.' | 
 | 60 |     echo '' | 
 | 61 | fi | 
| Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 62 |  | 
| Bernd Schubert | 5303265 | 2013-01-29 17:03:42 +0100 | [diff] [blame] | 63 | run_cmd() { | 
 | 64 | 	if [ $VERBOSE -ne 0 ] ; then | 
 | 65 | 		echo "Running: $@" | 
 | 66 | 	fi | 
 | 67 | 	eval $@ | 
 | 68 | } | 
 | 69 |  | 
 | 70 |  | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 71 | coccinelle () { | 
| Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 72 |     COCCI="$1" | 
| Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 73 |  | 
 | 74 |     OPT=`grep "Option" $COCCI | cut -d':' -f2` | 
| Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 75 |  | 
| Nicolas Palix | 062c182 | 2010-10-24 23:37:34 +0200 | [diff] [blame] | 76 | #   The option '-parse_cocci' can be used to syntactically check the SmPL files. | 
| Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 77 | # | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 78 | #    $SPATCH -D $MODE $FLAGS -parse_cocci $COCCI $OPT > /dev/null | 
| Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 79 |  | 
| Nicolas Palix | 35d88a3 | 2013-03-02 22:36:25 +0100 | [diff] [blame] | 80 |     if [ $VERBOSE -ne 0 -a $ONLINE -eq 0 ] ; then | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 81 |  | 
 | 82 | 	FILE=`echo $COCCI | sed "s|$srctree/||"` | 
 | 83 |  | 
| Nicolas Palix | 3c90841 | 2010-10-08 21:27:38 +0200 | [diff] [blame] | 84 | 	echo "Processing `basename $COCCI`" | 
 | 85 | 	echo "with option(s) \"$OPT\"" | 
 | 86 | 	echo '' | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 87 | 	echo 'Message example to submit a patch:' | 
 | 88 |  | 
| Nicolas Palix | 3c90841 | 2010-10-08 21:27:38 +0200 | [diff] [blame] | 89 | 	sed -ne 's|^///||p' $COCCI | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 90 |  | 
| Nicolas Palix | 062c182 | 2010-10-24 23:37:34 +0200 | [diff] [blame] | 91 | 	if [ "$MODE" = "patch" ] ; then | 
 | 92 | 	    echo ' The semantic patch that makes this change is available' | 
 | 93 | 	elif [ "$MODE" = "report" ] ; then | 
 | 94 | 	    echo ' The semantic patch that makes this report is available' | 
 | 95 | 	elif [ "$MODE" = "context" ] ; then | 
 | 96 | 	    echo ' The semantic patch that spots this code is available' | 
 | 97 | 	elif [ "$MODE" = "org" ] ; then | 
 | 98 | 	    echo ' The semantic patch that makes this Org report is available' | 
 | 99 | 	else | 
 | 100 | 	    echo ' The semantic patch that makes this output is available' | 
 | 101 | 	fi | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 102 | 	echo " in $FILE." | 
 | 103 | 	echo '' | 
 | 104 | 	echo ' More information about semantic patching is available at' | 
 | 105 | 	echo ' http://coccinelle.lip6.fr/' | 
 | 106 | 	echo '' | 
 | 107 |  | 
| Nicolas Palix | 3c90841 | 2010-10-08 21:27:38 +0200 | [diff] [blame] | 108 | 	if [ "`sed -ne 's|^//#||p' $COCCI`" ] ; then | 
 | 109 | 	    echo 'Semantic patch information:' | 
 | 110 | 	    sed -ne 's|^//#||p' $COCCI | 
 | 111 | 	    echo '' | 
 | 112 | 	fi | 
| Nicolas Palix | 2c1160c | 2010-10-08 21:27:40 +0200 | [diff] [blame] | 113 |     fi | 
| Nicolas Palix | 3c90841 | 2010-10-08 21:27:38 +0200 | [diff] [blame] | 114 |  | 
| Nicolas Palix | 2c1160c | 2010-10-08 21:27:40 +0200 | [diff] [blame] | 115 |     if [ "$MODE" = "chain" ] ; then | 
| Bernd Schubert | 5303265 | 2013-01-29 17:03:42 +0100 | [diff] [blame] | 116 | 	run_cmd $SPATCH -D patch   \ | 
 | 117 | 		$FLAGS -sp_file $COCCI $OPT $OPTIONS               || \ | 
 | 118 | 	run_cmd $SPATCH -D report  \ | 
 | 119 | 		$FLAGS -sp_file $COCCI $OPT $OPTIONS -no_show_diff || \ | 
 | 120 | 	run_cmd $SPATCH -D context \ | 
 | 121 | 		$FLAGS -sp_file $COCCI $OPT $OPTIONS               || \ | 
 | 122 | 	run_cmd $SPATCH -D org     \ | 
 | 123 | 		$FLAGS -sp_file $COCCI $OPT $OPTIONS -no_show_diff || exit 1 | 
| Nicolas Palix | c05cd6d | 2012-09-20 22:30:46 +0200 | [diff] [blame] | 124 |     elif [ "$MODE" = "rep+ctxt" ] ; then | 
| Bernd Schubert | 5303265 | 2013-01-29 17:03:42 +0100 | [diff] [blame] | 125 | 	run_cmd $SPATCH -D report  \ | 
 | 126 | 		$FLAGS -sp_file $COCCI $OPT $OPTIONS -no_show_diff && \ | 
 | 127 | 	run_cmd $SPATCH -D context \ | 
 | 128 | 		$FLAGS -sp_file $COCCI $OPT $OPTIONS || exit 1 | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 129 |     else | 
| Bernd Schubert | 5303265 | 2013-01-29 17:03:42 +0100 | [diff] [blame] | 130 | 	run_cmd $SPATCH -D $MODE   $FLAGS -sp_file $COCCI $OPT $OPTIONS || exit 1 | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 131 |     fi | 
 | 132 |  | 
| Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 133 | } | 
 | 134 |  | 
 | 135 | if [ "$COCCI" = "" ] ; then | 
 | 136 |     for f in `find $srctree/scripts/coccinelle/ -name '*.cocci' -type f | sort`; do | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 137 | 	coccinelle $f | 
| Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 138 |     done | 
 | 139 | else | 
| Nicolas Palix | 1e9dea2 | 2010-06-13 09:26:34 +0200 | [diff] [blame] | 140 |     coccinelle $COCCI | 
| Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 141 | fi |