blob: 3f0bb3f0fddc56edabff70147bf5153d7d2b5f7b [file] [log] [blame]
Nicolas Palix9e395552013-03-02 22:36:26 +01001#!/bin/bash
Nicolas Palix74425ee2010-06-06 17:15:01 +02002
Nicolas Palixec979462013-07-03 16:41:01 +02003#
4# This script requires at least spatch
5# version 1.0.0-rc11.
6#
7
Nicolas Palix74425ee2010-06-06 17:15:01 +02008SPATCH="`which ${SPATCH:=spatch}`"
9
Luis R. Rodriguez13d94862016-06-29 15:14:51 -070010if [ ! -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
Luis R. Rodriguezc930a1b2016-06-29 15:14:53 -070015USE_JOBS="no"
16$SPATCH --help | grep "\-\-jobs" > /dev/null && USE_JOBS="yes"
Kees Cook90d06a42013-06-18 14:49:29 -070017
Bernd Schubert26e56722013-01-29 17:03:37 +010018# The verbosity may be set by the environmental parameter V=
19# as for example with 'make V=1 coccicheck'
20
21if [ -n "$V" -a "$V" != "0" ]; then
Kees Cook90d06a42013-06-18 14:49:29 -070022 VERBOSE="$V"
Bernd Schubert26e56722013-01-29 17:03:37 +010023else
24 VERBOSE=0
25fi
26
Kees Cook90d06a42013-06-18 14:49:29 -070027if [ -z "$J" ]; then
28 NPROC=$(getconf _NPROCESSORS_ONLN)
29else
30 NPROC="$J"
31fi
32
Luis R. Rodriguez8e826ad2016-06-29 15:14:52 -070033FLAGS="--very-quiet"
Nicolas Palix9e395552013-03-02 22:36:26 +010034
35# spatch only allows include directories with the syntax "-I include"
36# while gcc also allows "-Iinclude" and "-include include"
37COCCIINCLUDE=${LINUXINCLUDE//-I/-I }
Andrzej Hajda5b169102015-09-22 15:15:30 +020038COCCIINCLUDE=${COCCIINCLUDE// -include/ --include}
Nicolas Palix9e395552013-03-02 22:36:26 +010039
Nicolas Palix1e9dea22010-06-13 09:26:34 +020040if [ "$C" = "1" -o "$C" = "2" ]; then
41 ONLINE=1
42
Nicolas Palix9e395552013-03-02 22:36:26 +010043 # Take only the last argument, which is the C file to test
44 shift $(( $# - 1 ))
45 OPTIONS="$COCCIINCLUDE $1"
Nicolas Palix1e9dea22010-06-13 09:26:34 +020046else
47 ONLINE=0
Greg Dietsched0bc1fb2011-11-05 20:59:43 -050048 if [ "$KBUILD_EXTMOD" = "" ] ; then
Nicolas Palix93f14462013-06-20 13:10:56 +020049 OPTIONS="--dir $srctree $COCCIINCLUDE"
Greg Dietsched0bc1fb2011-11-05 20:59:43 -050050 else
Nicolas Palix93f14462013-06-20 13:10:56 +020051 OPTIONS="--dir $KBUILD_EXTMOD $COCCIINCLUDE"
Greg Dietsched0bc1fb2011-11-05 20:59:43 -050052 fi
Nicolas Palix1e9dea22010-06-13 09:26:34 +020053fi
54
Nicolas Palixbad6a402013-03-02 22:36:28 +010055if [ "$KBUILD_EXTMOD" != "" ] ; then
Nicolas Palix93f14462013-06-20 13:10:56 +020056 OPTIONS="--patch $srctree $OPTIONS"
Nicolas Palixbad6a402013-03-02 22:36:28 +010057fi
58
Luis R. Rodriguezc930a1b2016-06-29 15:14:53 -070059# You can override by using SPFLAGS
60if [ "$USE_JOBS" = "no" ]; then
61 trap kill_running SIGTERM SIGINT
62 declare -a SPATCH_PID
63elif [ "$NPROC" != "1" ]; then
64 # Using 0 should work as well, refer to _SC_NPROCESSORS_ONLN use on
65 # https://github.com/rdicosmo/parmap/blob/master/setcore_stubs.c
66 OPTIONS="$OPTIONS --jobs $NPROC --chunksize 1"
67fi
68
Nicolas Palix74425ee2010-06-06 17:15:01 +020069if [ "$MODE" = "" ] ; then
Nicolas Palix1e9dea22010-06-13 09:26:34 +020070 if [ "$ONLINE" = "0" ] ; then
Nicolas Palix1f0a6742013-06-06 23:39:52 +020071 echo 'You have not explicitly specified the mode to use. Using default "report" mode.'
72 echo 'Available modes are the following: patch, report, context, org'
Nicolas Palix1e9dea22010-06-13 09:26:34 +020073 echo 'You can specify the mode with "make coccicheck MODE=<mode>"'
Nicolas Palix1f0a6742013-06-06 23:39:52 +020074 echo 'Note however that some modes are not implemented by some semantic patches.'
Nicolas Palix1e9dea22010-06-13 09:26:34 +020075 fi
Nicolas Palix1f0a6742013-06-06 23:39:52 +020076 MODE="report"
77fi
78
79if [ "$MODE" = "chain" ] ; then
80 if [ "$ONLINE" = "0" ] ; then
81 echo 'You have selected the "chain" mode.'
82 echo 'All available modes will be tried (in that order): patch, report, context, org'
83 fi
Nicolas Palix03ee0c42010-10-08 21:27:41 +020084elif [ "$MODE" = "report" -o "$MODE" = "org" ] ; then
Deepa Dinamani7a2358b2016-06-12 12:04:39 -070085 FLAGS="--no-show-diff $FLAGS"
Nicolas Palix74425ee2010-06-06 17:15:01 +020086fi
87
Nicolas Palix1e9dea22010-06-13 09:26:34 +020088if [ "$ONLINE" = "0" ] ; then
89 echo ''
90 echo 'Please check for false positives in the output before submitting a patch.'
91 echo 'When using "patch" mode, carefully review the patch before submitting it.'
92 echo ''
93fi
Nicolas Palix74425ee2010-06-06 17:15:01 +020094
Luis R. Rodriguezc930a1b2016-06-29 15:14:53 -070095run_cmd_parmap() {
96 if [ $VERBOSE -ne 0 ] ; then
97 echo "Running ($NPROC in parallel): $@"
98 fi
Luis R. Rodriguezbe1fa902016-06-29 15:14:54 -070099 if [ "$DEBUG_FILE" != "/dev/null" -a "$DEBUG_FILE" != "" ]; then
100 if [ -f $DEBUG_FILE ]; then
101 echo "Debug file $DEBUG_FILE exists, bailing"
102 exit
103 fi
104 else
105 DEBUG_FILE="/dev/null"
106 fi
107 $@ 2>$DEBUG_FILE
Luis R. Rodriguezc930a1b2016-06-29 15:14:53 -0700108 if [[ $? -ne 0 ]]; then
109 echo "coccicheck failed"
110 exit $?
111 fi
112}
113
114run_cmd_old() {
Kees Cook90d06a42013-06-18 14:49:29 -0700115 local i
Bernd Schubert53032652013-01-29 17:03:42 +0100116 if [ $VERBOSE -ne 0 ] ; then
Kees Cook90d06a42013-06-18 14:49:29 -0700117 echo "Running ($NPROC in parallel): $@"
Bernd Schubert53032652013-01-29 17:03:42 +0100118 fi
Kees Cook90d06a42013-06-18 14:49:29 -0700119 for i in $(seq 0 $(( NPROC - 1)) ); do
Nicolas Palix93f14462013-06-20 13:10:56 +0200120 eval "$@ --max $NPROC --index $i &"
Kees Cook90d06a42013-06-18 14:49:29 -0700121 SPATCH_PID[$i]=$!
122 if [ $VERBOSE -eq 2 ] ; then
123 echo "${SPATCH_PID[$i]} running"
124 fi
125 done
126 wait
Bernd Schubert53032652013-01-29 17:03:42 +0100127}
128
Luis R. Rodriguezc930a1b2016-06-29 15:14:53 -0700129run_cmd() {
130 if [ "$USE_JOBS" = "yes" ]; then
131 run_cmd_parmap $@
132 else
133 run_cmd_old $@
134 fi
135}
136
Kees Cook90d06a42013-06-18 14:49:29 -0700137kill_running() {
Kees Cook2552a392016-05-16 05:55:58 -0700138 for i in $(seq 0 $(( NPROC - 1 )) ); do
Kees Cook90d06a42013-06-18 14:49:29 -0700139 if [ $VERBOSE -eq 2 ] ; then
140 echo "Killing ${SPATCH_PID[$i]}"
141 fi
142 kill ${SPATCH_PID[$i]} 2>/dev/null
143 done
144}
Bernd Schubert53032652013-01-29 17:03:42 +0100145
Luis R. Rodriguez8e826ad2016-06-29 15:14:52 -0700146# You can override heuristics with SPFLAGS, these must always go last
147OPTIONS="$OPTIONS $SPFLAGS"
148
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200149coccinelle () {
Nicolas Palix74425ee2010-06-06 17:15:01 +0200150 COCCI="$1"
Nicolas Palix74425ee2010-06-06 17:15:01 +0200151
152 OPT=`grep "Option" $COCCI | cut -d':' -f2`
Nicolas Palix74425ee2010-06-06 17:15:01 +0200153
Nicolas Palix93f14462013-06-20 13:10:56 +0200154# The option '--parse-cocci' can be used to syntactically check the SmPL files.
Nicolas Palix74425ee2010-06-06 17:15:01 +0200155#
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200156# $SPATCH -D $MODE $FLAGS -parse_cocci $COCCI $OPT > /dev/null
Nicolas Palix74425ee2010-06-06 17:15:01 +0200157
Nicolas Palix35d88a32013-03-02 22:36:25 +0100158 if [ $VERBOSE -ne 0 -a $ONLINE -eq 0 ] ; then
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200159
160 FILE=`echo $COCCI | sed "s|$srctree/||"`
161
Nicolas Palix3c908412010-10-08 21:27:38 +0200162 echo "Processing `basename $COCCI`"
163 echo "with option(s) \"$OPT\""
164 echo ''
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200165 echo 'Message example to submit a patch:'
166
Nicolas Palix3c908412010-10-08 21:27:38 +0200167 sed -ne 's|^///||p' $COCCI
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200168
Nicolas Palix062c1822010-10-24 23:37:34 +0200169 if [ "$MODE" = "patch" ] ; then
170 echo ' The semantic patch that makes this change is available'
171 elif [ "$MODE" = "report" ] ; then
172 echo ' The semantic patch that makes this report is available'
173 elif [ "$MODE" = "context" ] ; then
174 echo ' The semantic patch that spots this code is available'
175 elif [ "$MODE" = "org" ] ; then
176 echo ' The semantic patch that makes this Org report is available'
177 else
178 echo ' The semantic patch that makes this output is available'
179 fi
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200180 echo " in $FILE."
181 echo ''
182 echo ' More information about semantic patching is available at'
183 echo ' http://coccinelle.lip6.fr/'
184 echo ''
185
Nicolas Palix3c908412010-10-08 21:27:38 +0200186 if [ "`sed -ne 's|^//#||p' $COCCI`" ] ; then
187 echo 'Semantic patch information:'
188 sed -ne 's|^//#||p' $COCCI
189 echo ''
190 fi
Nicolas Palix2c1160c82010-10-08 21:27:40 +0200191 fi
Nicolas Palix3c908412010-10-08 21:27:38 +0200192
Nicolas Palix2c1160c82010-10-08 21:27:40 +0200193 if [ "$MODE" = "chain" ] ; then
Bernd Schubert53032652013-01-29 17:03:42 +0100194 run_cmd $SPATCH -D patch \
Nicolas Palix93f14462013-06-20 13:10:56 +0200195 $FLAGS --cocci-file $COCCI $OPT $OPTIONS || \
Bernd Schubert53032652013-01-29 17:03:42 +0100196 run_cmd $SPATCH -D report \
Nicolas Palix93f14462013-06-20 13:10:56 +0200197 $FLAGS --cocci-file $COCCI $OPT $OPTIONS --no-show-diff || \
Bernd Schubert53032652013-01-29 17:03:42 +0100198 run_cmd $SPATCH -D context \
Nicolas Palix93f14462013-06-20 13:10:56 +0200199 $FLAGS --cocci-file $COCCI $OPT $OPTIONS || \
Bernd Schubert53032652013-01-29 17:03:42 +0100200 run_cmd $SPATCH -D org \
Nicolas Palix93f14462013-06-20 13:10:56 +0200201 $FLAGS --cocci-file $COCCI $OPT $OPTIONS --no-show-diff || exit 1
Nicolas Palixc05cd6d2012-09-20 22:30:46 +0200202 elif [ "$MODE" = "rep+ctxt" ] ; then
Bernd Schubert53032652013-01-29 17:03:42 +0100203 run_cmd $SPATCH -D report \
Nicolas Palix93f14462013-06-20 13:10:56 +0200204 $FLAGS --cocci-file $COCCI $OPT $OPTIONS --no-show-diff && \
Bernd Schubert53032652013-01-29 17:03:42 +0100205 run_cmd $SPATCH -D context \
Nicolas Palix93f14462013-06-20 13:10:56 +0200206 $FLAGS --cocci-file $COCCI $OPT $OPTIONS || exit 1
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200207 else
Nicolas Palix93f14462013-06-20 13:10:56 +0200208 run_cmd $SPATCH -D $MODE $FLAGS --cocci-file $COCCI $OPT $OPTIONS || exit 1
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200209 fi
210
Nicolas Palix74425ee2010-06-06 17:15:01 +0200211}
212
213if [ "$COCCI" = "" ] ; then
214 for f in `find $srctree/scripts/coccinelle/ -name '*.cocci' -type f | sort`; do
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200215 coccinelle $f
Nicolas Palix74425ee2010-06-06 17:15:01 +0200216 done
217else
Nicolas Palix1e9dea22010-06-13 09:26:34 +0200218 coccinelle $COCCI
Nicolas Palix74425ee2010-06-06 17:15:01 +0200219fi