coccicheck: add support for requring a coccinelle version
[linux-2.6-block.git] / Documentation / coccinelle.txt
... / ...
CommitLineData
1Copyright 2010 Nicolas Palix <npalix@diku.dk>
2Copyright 2010 Julia Lawall <julia@diku.dk>
3Copyright 2010 Gilles Muller <Gilles.Muller@lip6.fr>
4
5
6 Getting Coccinelle
7~~~~~~~~~~~~~~~~~~~~
8
9The semantic patches included in the kernel use features and options
10which are provided by Coccinelle version 1.0.0-rc11 and above.
11Using earlier versions will fail as the option names used by
12the Coccinelle files and coccicheck have been updated.
13
14Coccinelle is available through the package manager
15of many distributions, e.g. :
16
17 - Debian
18 - Fedora
19 - Ubuntu
20 - OpenSUSE
21 - Arch Linux
22 - NetBSD
23 - FreeBSD
24
25
26You can get the latest version released from the Coccinelle homepage at
27http://coccinelle.lip6.fr/
28
29Information and tips about Coccinelle are also provided on the wiki
30pages at http://cocci.ekstranet.diku.dk/wiki/doku.php
31
32Once you have it, run the following command:
33
34 ./configure
35 make
36
37as a regular user, and install it with
38
39 sudo make install
40
41 Using Coccinelle on the Linux kernel
42~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
43
44A Coccinelle-specific target is defined in the top level
45Makefile. This target is named 'coccicheck' and calls the 'coccicheck'
46front-end in the 'scripts' directory.
47
48Four basic modes are defined: patch, report, context, and org. The mode to
49use is specified by setting the MODE variable with 'MODE=<mode>'.
50
51'patch' proposes a fix, when possible.
52
53'report' generates a list in the following format:
54 file:line:column-column: message
55
56'context' highlights lines of interest and their context in a
57diff-like style.Lines of interest are indicated with '-'.
58
59'org' generates a report in the Org mode format of Emacs.
60
61Note that not all semantic patches implement all modes. For easy use
62of Coccinelle, the default mode is "report".
63
64Two other modes provide some common combinations of these modes.
65
66'chain' tries the previous modes in the order above until one succeeds.
67
68'rep+ctxt' runs successively the report mode and the context mode.
69 It should be used with the C option (described later)
70 which checks the code on a file basis.
71
72Examples:
73 To make a report for every semantic patch, run the following command:
74
75 make coccicheck MODE=report
76
77 To produce patches, run:
78
79 make coccicheck MODE=patch
80
81
82The coccicheck target applies every semantic patch available in the
83sub-directories of 'scripts/coccinelle' to the entire Linux kernel.
84
85For each semantic patch, a commit message is proposed. It gives a
86description of the problem being checked by the semantic patch, and
87includes a reference to Coccinelle.
88
89As any static code analyzer, Coccinelle produces false
90positives. Thus, reports must be carefully checked, and patches
91reviewed.
92
93To enable verbose messages set the V= variable, for example:
94
95 make coccicheck MODE=report V=1
96
97 Coccinelle parallelization
98~~~~~~~~~~~~~~~~~~~~~~~~~~~~
99
100By default, coccicheck tries to run as parallel as possible. To change
101the parallelism, set the J= variable. For example, to run across 4 CPUs:
102
103 make coccicheck MODE=report J=4
104
105As of Coccinelle 1.0.2 Coccinelle uses Ocaml parmap for parallelization,
106if support for this is detected you will benefit from parmap parallelization.
107
108When parmap is enabled coccicheck will enable dynamic load balancing by using
109'--chunksize 1' argument, this ensures we keep feeding threads with work
110one by one, so that we avoid the situation where most work gets done by only
111a few threads. With dynamic load balancing, if a thread finishes early we keep
112feeding it more work.
113
114When parmap is enabled, if an error occurs in Coccinelle, this error
115value is propagated back, the return value of the 'make coccicheck'
116captures this return value.
117
118 Using Coccinelle with a single semantic patch
119~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
120
121The optional make variable COCCI can be used to check a single
122semantic patch. In that case, the variable must be initialized with
123the name of the semantic patch to apply.
124
125For instance:
126
127 make coccicheck COCCI=<my_SP.cocci> MODE=patch
128or
129 make coccicheck COCCI=<my_SP.cocci> MODE=report
130
131
132 Controlling Which Files are Processed by Coccinelle
133~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
134By default the entire kernel source tree is checked.
135
136To apply Coccinelle to a specific directory, M= can be used.
137For example, to check drivers/net/wireless/ one may write:
138
139 make coccicheck M=drivers/net/wireless/
140
141To apply Coccinelle on a file basis, instead of a directory basis, the
142following command may be used:
143
144 make C=1 CHECK="scripts/coccicheck"
145
146To check only newly edited code, use the value 2 for the C flag, i.e.
147
148 make C=2 CHECK="scripts/coccicheck"
149
150In these modes, which works on a file basis, there is no information
151about semantic patches displayed, and no commit message proposed.
152
153This runs every semantic patch in scripts/coccinelle by default. The
154COCCI variable may additionally be used to only apply a single
155semantic patch as shown in the previous section.
156
157The "report" mode is the default. You can select another one with the
158MODE variable explained above.
159
160 Debugging Coccinelle SmPL patches
161~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
162
163Using coccicheck is best as it provides in the spatch command line
164include options matching the options used when we compile the kernel.
165You can learn what these options are by using V=1, you could then
166manually run Coccinelle with debug options added.
167
168Alternatively you can debug running Coccinelle against SmPL patches
169by asking for stderr to be redirected to stderr, by default stderr
170is redirected to /dev/null, if you'd like to capture stderr you
171can specify the DEBUG_FILE="file.txt" option to coccicheck. For
172instance:
173
174 rm -f cocci.err
175 make coccicheck COCCI=scripts/coccinelle/free/kfree.cocci MODE=report DEBUG_FILE=cocci.err
176 cat cocci.err
177
178You can use SPFLAGS to add debugging flags, for instance you may want to
179add both --profile --show-trying to SPFLAGS when debugging. For instance
180you may want to use:
181
182 rm -f err.log
183 export COCCI=scripts/coccinelle/misc/irqf_oneshot.cocci
184 make coccicheck DEBUG_FILE="err.log" MODE=report SPFLAGS="--profile --show-trying" M=./drivers/mfd/arizona-irq.c
185
186err.log will now have the profiling information, while stdout will
187provide some progress information as Coccinelle moves forward with
188work.
189
190DEBUG_FILE support is only supported when using coccinelle >= 1.2.
191
192 .cocciconfig support
193~~~~~~~~~~~~~~~~~~~~~~
194
195Coccinelle supports reading .cocciconfig for default Coccinelle options that
196should be used every time spatch is spawned, the order of precedence for
197variables for .cocciconfig is as follows:
198
199 o Your current user's home directory is processed first
200 o Your directory from which spatch is called is processed next
201 o The directory provided with the --dir option is processed last, if used
202
203Since coccicheck runs through make, it naturally runs from the kernel
204proper dir, as such the second rule above would be implied for picking up a
205.cocciconfig when using 'make coccicheck'.
206
207'make coccicheck' also supports using M= targets.If you do not supply
208any M= target, it is assumed you want to target the entire kernel.
209The kernel coccicheck script has:
210
211 if [ "$KBUILD_EXTMOD" = "" ] ; then
212 OPTIONS="--dir $srctree $COCCIINCLUDE"
213 else
214 OPTIONS="--dir $KBUILD_EXTMOD $COCCIINCLUDE"
215 fi
216
217KBUILD_EXTMOD is set when an explicit target with M= is used. For both cases
218the spatch --dir argument is used, as such third rule applies when whether M=
219is used or not, and when M= is used the target directory can have its own
220.cocciconfig file. When M= is not passed as an argument to coccicheck the
221target directory is the same as the directory from where spatch was called.
222
223If not using the kernel's coccicheck target, keep the above precedence
224order logic of .cocciconfig reading. If using the kernel's coccicheck target,
225override any of the kernel's .coccicheck's settings using SPFLAGS.
226
227We help Coccinelle when used against Linux with a set of sensible defaults
228options for Linux with our own Linux .cocciconfig. This hints to coccinelle
229git can be used for 'git grep' queries over coccigrep. A timeout of 200
230seconds should suffice for now.
231
232The options picked up by coccinelle when reading a .cocciconfig do not appear
233as arguments to spatch processes running on your system, to confirm what
234options will be used by Coccinelle run:
235
236 spatch --print-options-only
237
238You can override with your own preferred index option by using SPFLAGS. Take
239note that when there are conflicting options Coccinelle takes precedence for
240the last options passed. Using .cocciconfig is possible to use idutils, however
241given the order of precedence followed by Coccinelle, since the kernel now
242carries its own .cocciconfig, you will need to use SPFLAGS to use idutils if
243desired. See below section "Additional flags" for more details on how to use
244idutils.
245
246 Additional flags
247~~~~~~~~~~~~~~~~~~
248
249Additional flags can be passed to spatch through the SPFLAGS
250variable. This works as Coccinelle respects the last flags
251given to it when options are in conflict.
252
253 make SPFLAGS=--use-glimpse coccicheck
254
255Coccinelle supports idutils as well but requires coccinelle >= 1.0.6.
256When no ID file is specified coccinelle assumes your ID database file
257is in the file .id-utils.index on the top level of the kernel, coccinelle
258carries a script scripts/idutils_index.sh which creates the database with
259
260 mkid -i C --output .id-utils.index
261
262If you have another database filename you can also just symlink with this
263name.
264
265 make SPFLAGS=--use-idutils coccicheck
266
267Alternatively you can specify the database filename explicitly, for
268instance:
269
270 make SPFLAGS="--use-idutils /full-path/to/ID" coccicheck
271
272See spatch --help to learn more about spatch options.
273
274Note that the '--use-glimpse' and '--use-idutils' options
275require external tools for indexing the code. None of them is
276thus active by default. However, by indexing the code with
277one of these tools, and according to the cocci file used,
278spatch could proceed the entire code base more quickly.
279
280 SmPL patch specific options
281~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
282
283SmPL patches can have their own requirements for options passed
284to Coccinelle. SmPL patch specific options can be provided by
285providing them at the top of the SmPL patch, for instance:
286
287// Options: --no-includes --include-headers
288
289 SmPL patch Coccinelle requirements
290~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
291
292As Coccinelle features get added some more advanced SmPL patches
293may require newer versions of Coccinelle. If an SmPL patch requires
294at least a version of Coccinelle, this can be specified as follows,
295as an example if requiring at least Coccinelle >= 1.0.5:
296
297// Requires: 1.0.5
298
299 Proposing new semantic patches
300~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
301
302New semantic patches can be proposed and submitted by kernel
303developers. For sake of clarity, they should be organized in the
304sub-directories of 'scripts/coccinelle/'.
305
306
307 Detailed description of the 'report' mode
308~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
309
310'report' generates a list in the following format:
311 file:line:column-column: message
312
313Example:
314
315Running
316
317 make coccicheck MODE=report COCCI=scripts/coccinelle/api/err_cast.cocci
318
319will execute the following part of the SmPL script.
320
321<smpl>
322@r depends on !context && !patch && (org || report)@
323expression x;
324position p;
325@@
326
327 ERR_PTR@p(PTR_ERR(x))
328
329@script:python depends on report@
330p << r.p;
331x << r.x;
332@@
333
334msg="ERR_CAST can be used with %s" % (x)
335coccilib.report.print_report(p[0], msg)
336</smpl>
337
338This SmPL excerpt generates entries on the standard output, as
339illustrated below:
340
341/home/user/linux/crypto/ctr.c:188:9-16: ERR_CAST can be used with alg
342/home/user/linux/crypto/authenc.c:619:9-16: ERR_CAST can be used with auth
343/home/user/linux/crypto/xts.c:227:9-16: ERR_CAST can be used with alg
344
345
346 Detailed description of the 'patch' mode
347~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
348
349When the 'patch' mode is available, it proposes a fix for each problem
350identified.
351
352Example:
353
354Running
355 make coccicheck MODE=patch COCCI=scripts/coccinelle/api/err_cast.cocci
356
357will execute the following part of the SmPL script.
358
359<smpl>
360@ depends on !context && patch && !org && !report @
361expression x;
362@@
363
364- ERR_PTR(PTR_ERR(x))
365+ ERR_CAST(x)
366</smpl>
367
368This SmPL excerpt generates patch hunks on the standard output, as
369illustrated below:
370
371diff -u -p a/crypto/ctr.c b/crypto/ctr.c
372--- a/crypto/ctr.c 2010-05-26 10:49:38.000000000 +0200
373+++ b/crypto/ctr.c 2010-06-03 23:44:49.000000000 +0200
374@@ -185,7 +185,7 @@ static struct crypto_instance *crypto_ct
375 alg = crypto_attr_alg(tb[1], CRYPTO_ALG_TYPE_CIPHER,
376 CRYPTO_ALG_TYPE_MASK);
377 if (IS_ERR(alg))
378- return ERR_PTR(PTR_ERR(alg));
379+ return ERR_CAST(alg);
380
381 /* Block size must be >= 4 bytes. */
382 err = -EINVAL;
383
384 Detailed description of the 'context' mode
385~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
386
387'context' highlights lines of interest and their context
388in a diff-like style.
389
390NOTE: The diff-like output generated is NOT an applicable patch. The
391 intent of the 'context' mode is to highlight the important lines
392 (annotated with minus, '-') and gives some surrounding context
393 lines around. This output can be used with the diff mode of
394 Emacs to review the code.
395
396Example:
397
398Running
399 make coccicheck MODE=context COCCI=scripts/coccinelle/api/err_cast.cocci
400
401will execute the following part of the SmPL script.
402
403<smpl>
404@ depends on context && !patch && !org && !report@
405expression x;
406@@
407
408* ERR_PTR(PTR_ERR(x))
409</smpl>
410
411This SmPL excerpt generates diff hunks on the standard output, as
412illustrated below:
413
414diff -u -p /home/user/linux/crypto/ctr.c /tmp/nothing
415--- /home/user/linux/crypto/ctr.c 2010-05-26 10:49:38.000000000 +0200
416+++ /tmp/nothing
417@@ -185,7 +185,6 @@ static struct crypto_instance *crypto_ct
418 alg = crypto_attr_alg(tb[1], CRYPTO_ALG_TYPE_CIPHER,
419 CRYPTO_ALG_TYPE_MASK);
420 if (IS_ERR(alg))
421- return ERR_PTR(PTR_ERR(alg));
422
423 /* Block size must be >= 4 bytes. */
424 err = -EINVAL;
425
426 Detailed description of the 'org' mode
427~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
428
429'org' generates a report in the Org mode format of Emacs.
430
431Example:
432
433Running
434 make coccicheck MODE=org COCCI=scripts/coccinelle/api/err_cast.cocci
435
436will execute the following part of the SmPL script.
437
438<smpl>
439@r depends on !context && !patch && (org || report)@
440expression x;
441position p;
442@@
443
444 ERR_PTR@p(PTR_ERR(x))
445
446@script:python depends on org@
447p << r.p;
448x << r.x;
449@@
450
451msg="ERR_CAST can be used with %s" % (x)
452msg_safe=msg.replace("[","@(").replace("]",")")
453coccilib.org.print_todo(p[0], msg_safe)
454</smpl>
455
456This SmPL excerpt generates Org entries on the standard output, as
457illustrated below:
458
459* TODO [[view:/home/user/linux/crypto/ctr.c::face=ovl-face1::linb=188::colb=9::cole=16][ERR_CAST can be used with alg]]
460* TODO [[view:/home/user/linux/crypto/authenc.c::face=ovl-face1::linb=619::colb=9::cole=16][ERR_CAST can be used with auth]]
461* TODO [[view:/home/user/linux/crypto/xts.c::face=ovl-face1::linb=227::colb=9::cole=16][ERR_CAST can be used with alg]]