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