blob: 66e822f8caeeb4bcfd7b4c0da04492dd276a3604 [file] [log] [blame]
Nicolas Palixe228b1e2010-06-06 17:15:02 +02001Copyright 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
Nicolas Palixec979462013-07-03 16:41:01 +02009The 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.
Nicolas Palixe228b1e2010-06-06 17:15:02 +020013
Nicolas Palixec979462013-07-03 16:41:01 +020014Coccinelle is available through the package manager
Nicolas Palixe228b1e2010-06-06 17:15:02 +020015of many distributions, e.g. :
16
Nicolas Palixec979462013-07-03 16:41:01 +020017 - Debian
18 - Fedora
19 - Ubuntu
Nicolas Palixe228b1e2010-06-06 17:15:02 +020020 - 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
Nicolas Palix32af0892010-10-13 00:49:07 +020029Information and tips about Coccinelle are also provided on the wiki
30pages at http://cocci.ekstranet.diku.dk/wiki/doku.php
31
Nicolas Palixe228b1e2010-06-06 17:15:02 +020032Once 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
Nicolas Palixe228b1e2010-06-06 17:15:02 +020041 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
Nicolas Palix78a95b92013-06-20 14:00:19 +020048Four basic modes are defined: patch, report, context, and org. The mode to
Nicolas Palixe228b1e2010-06-06 17:15:02 +020049use is specified by setting the MODE variable with 'MODE=<mode>'.
50
Nicolas Palix32af0892010-10-13 00:49:07 +020051'patch' proposes a fix, when possible.
52
Nicolas Palixe228b1e2010-06-06 17:15:02 +020053'report' generates a list in the following format:
54 file:line:column-column: message
55
Nicolas Palixe228b1e2010-06-06 17:15:02 +020056'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
Nicolas Palix32af0892010-10-13 00:49:07 +020061Note that not all semantic patches implement all modes. For easy use
Nicolas Palix78a95b92013-06-20 14:00:19 +020062of Coccinelle, the default mode is "report".
Nicolas Palixe228b1e2010-06-06 17:15:02 +020063
Nicolas Palix78a95b92013-06-20 14:00:19 +020064Two other modes provide some common combinations of these modes.
Nicolas Palixe228b1e2010-06-06 17:15:02 +020065
Nicolas Palix78a95b92013-06-20 14:00:19 +020066'chain' tries the previous modes in the order above until one succeeds.
Nicolas Palixe228b1e2010-06-06 17:15:02 +020067
Nicolas Palix78a95b92013-06-20 14:00:19 +020068'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.
Nicolas Palixe228b1e2010-06-06 17:15:02 +020071
Nicolas Palix78a95b92013-06-20 14:00:19 +020072Examples:
73 To make a report for every semantic patch, run the following command:
Nicolas Palixe228b1e2010-06-06 17:15:02 +020074
Nicolas Palix78a95b92013-06-20 14:00:19 +020075 make coccicheck MODE=report
76
77 To produce patches, run:
78
79 make coccicheck MODE=patch
Nicolas Palixe228b1e2010-06-06 17:15:02 +020080
81
82The coccicheck target applies every semantic patch available in the
Nicolas Palix32af0892010-10-13 00:49:07 +020083sub-directories of 'scripts/coccinelle' to the entire Linux kernel.
Nicolas Palixe228b1e2010-06-06 17:15:02 +020084
Nicolas Palix32af0892010-10-13 00:49:07 +020085For each semantic patch, a commit message is proposed. It gives a
Nicolas Palixe228b1e2010-06-06 17:15:02 +020086description 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
Bernd Schubert26e56722013-01-29 17:03:37 +010093To enable verbose messages set the V= variable, for example:
94
95 make coccicheck MODE=report V=1
96
Luis R. Rodriguezc930a1b2016-06-29 15:14:53 -070097 Coccinelle parallelization
98~~~~~~~~~~~~~~~~~~~~~~~~~~~~
99
Kees Cook90d06a42013-06-18 14:49:29 -0700100By 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
Luis R. Rodriguezc930a1b2016-06-29 15:14:53 -0700105As 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.
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200117
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
Greg Dietschef95ab202011-11-05 20:59:44 -0500132 Controlling Which Files are Processed by Coccinelle
133~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
134By default the entire kernel source tree is checked.
Nicolas Palix32af0892010-10-13 00:49:07 +0200135
Greg Dietschef95ab202011-11-05 20:59:44 -0500136To 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/
Nicolas Palixed621cc2013-03-02 22:36:27 +0100140
Nicolas Palix32af0892010-10-13 00:49:07 +0200141To 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
Nicolas Palix78a95b92013-06-20 14:00:19 +0200150In these modes, which works on a file basis, there is no information
151about semantic patches displayed, and no commit message proposed.
152
Nicolas Palix32af0892010-10-13 00:49:07 +0200153This 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
Nicolas Palix78a95b92013-06-20 14:00:19 +0200157The "report" mode is the default. You can select another one with the
Nicolas Palix32af0892010-10-13 00:49:07 +0200158MODE variable explained above.
159
Luis R. Rodriguezbe1fa902016-06-29 15:14:54 -0700160 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
Luis R. Rodriguez5c384db2016-06-29 15:14:55 -0700178You 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
Luis R. Rodriguezbe1fa902016-06-29 15:14:54 -0700190DEBUG_FILE support is only supported when using coccinelle >= 1.2.
191
Nicolas Palixed621cc2013-03-02 22:36:27 +0100192 Additional flags
193~~~~~~~~~~~~~~~~~~
194
195Additional flags can be passed to spatch through the SPFLAGS
Luis R. Rodriguez8e826ad2016-06-29 15:14:52 -0700196variable. This works as Coccinelle respects the last flags
197given to it when options are in conflict.
Nicolas Palixed621cc2013-03-02 22:36:27 +0100198
Nicolas Palix78a95b92013-06-20 14:00:19 +0200199 make SPFLAGS=--use-glimpse coccicheck
200 make SPFLAGS=--use-idutils coccicheck
Nicolas Palixed621cc2013-03-02 22:36:27 +0100201
202See spatch --help to learn more about spatch options.
Nicolas Palix32af0892010-10-13 00:49:07 +0200203
Nicolas Palix78a95b92013-06-20 14:00:19 +0200204Note that the '--use-glimpse' and '--use-idutils' options
205require external tools for indexing the code. None of them is
206thus active by default. However, by indexing the code with
207one of these tools, and according to the cocci file used,
208spatch could proceed the entire code base more quickly.
209
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200210 Proposing new semantic patches
211~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
212
213New semantic patches can be proposed and submitted by kernel
214developers. For sake of clarity, they should be organized in the
Nicolas Palix32af0892010-10-13 00:49:07 +0200215sub-directories of 'scripts/coccinelle/'.
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200216
217
218 Detailed description of the 'report' mode
219~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
220
221'report' generates a list in the following format:
222 file:line:column-column: message
223
224Example:
225
226Running
227
Nicolas Palix9dcf7992010-10-24 23:37:33 +0200228 make coccicheck MODE=report COCCI=scripts/coccinelle/api/err_cast.cocci
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200229
230will execute the following part of the SmPL script.
231
232<smpl>
233@r depends on !context && !patch && (org || report)@
234expression x;
235position p;
236@@
237
238 ERR_PTR@p(PTR_ERR(x))
239
240@script:python depends on report@
241p << r.p;
242x << r.x;
243@@
244
245msg="ERR_CAST can be used with %s" % (x)
246coccilib.report.print_report(p[0], msg)
247</smpl>
248
249This SmPL excerpt generates entries on the standard output, as
250illustrated below:
251
252/home/user/linux/crypto/ctr.c:188:9-16: ERR_CAST can be used with alg
253/home/user/linux/crypto/authenc.c:619:9-16: ERR_CAST can be used with auth
254/home/user/linux/crypto/xts.c:227:9-16: ERR_CAST can be used with alg
255
256
257 Detailed description of the 'patch' mode
258~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
259
260When the 'patch' mode is available, it proposes a fix for each problem
261identified.
262
263Example:
264
265Running
Nicolas Palix9dcf7992010-10-24 23:37:33 +0200266 make coccicheck MODE=patch COCCI=scripts/coccinelle/api/err_cast.cocci
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200267
268will execute the following part of the SmPL script.
269
270<smpl>
271@ depends on !context && patch && !org && !report @
272expression x;
273@@
274
275- ERR_PTR(PTR_ERR(x))
276+ ERR_CAST(x)
277</smpl>
278
279This SmPL excerpt generates patch hunks on the standard output, as
280illustrated below:
281
282diff -u -p a/crypto/ctr.c b/crypto/ctr.c
283--- a/crypto/ctr.c 2010-05-26 10:49:38.000000000 +0200
284+++ b/crypto/ctr.c 2010-06-03 23:44:49.000000000 +0200
285@@ -185,7 +185,7 @@ static struct crypto_instance *crypto_ct
286 alg = crypto_attr_alg(tb[1], CRYPTO_ALG_TYPE_CIPHER,
287 CRYPTO_ALG_TYPE_MASK);
288 if (IS_ERR(alg))
289- return ERR_PTR(PTR_ERR(alg));
290+ return ERR_CAST(alg);
291
292 /* Block size must be >= 4 bytes. */
293 err = -EINVAL;
294
295 Detailed description of the 'context' mode
296~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
297
298'context' highlights lines of interest and their context
299in a diff-like style.
300
301NOTE: The diff-like output generated is NOT an applicable patch. The
302 intent of the 'context' mode is to highlight the important lines
303 (annotated with minus, '-') and gives some surrounding context
304 lines around. This output can be used with the diff mode of
305 Emacs to review the code.
306
307Example:
308
309Running
Nicolas Palix9dcf7992010-10-24 23:37:33 +0200310 make coccicheck MODE=context COCCI=scripts/coccinelle/api/err_cast.cocci
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200311
312will execute the following part of the SmPL script.
313
314<smpl>
315@ depends on context && !patch && !org && !report@
316expression x;
317@@
318
319* ERR_PTR(PTR_ERR(x))
320</smpl>
321
322This SmPL excerpt generates diff hunks on the standard output, as
323illustrated below:
324
325diff -u -p /home/user/linux/crypto/ctr.c /tmp/nothing
326--- /home/user/linux/crypto/ctr.c 2010-05-26 10:49:38.000000000 +0200
327+++ /tmp/nothing
328@@ -185,7 +185,6 @@ static struct crypto_instance *crypto_ct
329 alg = crypto_attr_alg(tb[1], CRYPTO_ALG_TYPE_CIPHER,
330 CRYPTO_ALG_TYPE_MASK);
331 if (IS_ERR(alg))
332- return ERR_PTR(PTR_ERR(alg));
333
334 /* Block size must be >= 4 bytes. */
335 err = -EINVAL;
336
337 Detailed description of the 'org' mode
338~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
339
340'org' generates a report in the Org mode format of Emacs.
341
342Example:
343
344Running
Nicolas Palix9dcf7992010-10-24 23:37:33 +0200345 make coccicheck MODE=org COCCI=scripts/coccinelle/api/err_cast.cocci
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200346
347will execute the following part of the SmPL script.
348
349<smpl>
350@r depends on !context && !patch && (org || report)@
351expression x;
352position p;
353@@
354
355 ERR_PTR@p(PTR_ERR(x))
356
357@script:python depends on org@
358p << r.p;
359x << r.x;
360@@
361
362msg="ERR_CAST can be used with %s" % (x)
363msg_safe=msg.replace("[","@(").replace("]",")")
364coccilib.org.print_todo(p[0], msg_safe)
365</smpl>
366
367This SmPL excerpt generates Org entries on the standard output, as
368illustrated below:
369
370* TODO [[view:/home/user/linux/crypto/ctr.c::face=ovl-face1::linb=188::colb=9::cole=16][ERR_CAST can be used with alg]]
371* TODO [[view:/home/user/linux/crypto/authenc.c::face=ovl-face1::linb=619::colb=9::cole=16][ERR_CAST can be used with auth]]
372* TODO [[view:/home/user/linux/crypto/xts.c::face=ovl-face1::linb=227::colb=9::cole=16][ERR_CAST can be used with alg]]