blob: 81a329fcd532d2fd572641d158b6760a35085d92 [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
9The semantic patches included in the kernel use the 'virtual rule'
10feature which was introduced in Coccinelle version 0.1.11.
11
12Coccinelle (>=0.2.0) is available through the package manager
13of many distributions, e.g. :
14
15 - Debian (>=squeeze)
16 - Fedora (>=13)
Kulikov Vasiliyfbe32902010-06-29 16:31:16 +040017 - Ubuntu (>=10.04 Lucid Lynx)
Nicolas Palixe228b1e2010-06-06 17:15:02 +020018 - OpenSUSE
19 - Arch Linux
20 - NetBSD
21 - FreeBSD
22
23
24You can get the latest version released from the Coccinelle homepage at
25http://coccinelle.lip6.fr/
26
Nicolas Palix32af0892010-10-13 00:49:07 +020027Information and tips about Coccinelle are also provided on the wiki
28pages at http://cocci.ekstranet.diku.dk/wiki/doku.php
29
Nicolas Palixe228b1e2010-06-06 17:15:02 +020030Once you have it, run the following command:
31
32 ./configure
33 make
34
35as a regular user, and install it with
36
37 sudo make install
38
Julia Lawalla1087ef2010-11-24 15:54:18 +010039The semantic patches in the kernel will work best with Coccinelle version
400.2.4 or later. Using earlier versions may incur some parse errors in the
41semantic patch code, but any results that are obtained should still be
42correct.
Nicolas Palixe228b1e2010-06-06 17:15:02 +020043
44 Using Coccinelle on the Linux kernel
45~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
46
47A Coccinelle-specific target is defined in the top level
48Makefile. This target is named 'coccicheck' and calls the 'coccicheck'
49front-end in the 'scripts' directory.
50
Nicolas Palix78a95b92013-06-20 14:00:19 +020051Four basic modes are defined: patch, report, context, and org. The mode to
Nicolas Palixe228b1e2010-06-06 17:15:02 +020052use is specified by setting the MODE variable with 'MODE=<mode>'.
53
Nicolas Palix32af0892010-10-13 00:49:07 +020054'patch' proposes a fix, when possible.
55
Nicolas Palixe228b1e2010-06-06 17:15:02 +020056'report' generates a list in the following format:
57 file:line:column-column: message
58
Nicolas Palixe228b1e2010-06-06 17:15:02 +020059'context' highlights lines of interest and their context in a
60diff-like style.Lines of interest are indicated with '-'.
61
62'org' generates a report in the Org mode format of Emacs.
63
Nicolas Palix32af0892010-10-13 00:49:07 +020064Note that not all semantic patches implement all modes. For easy use
Nicolas Palix78a95b92013-06-20 14:00:19 +020065of Coccinelle, the default mode is "report".
Nicolas Palixe228b1e2010-06-06 17:15:02 +020066
Nicolas Palix78a95b92013-06-20 14:00:19 +020067Two other modes provide some common combinations of these modes.
Nicolas Palixe228b1e2010-06-06 17:15:02 +020068
Nicolas Palix78a95b92013-06-20 14:00:19 +020069'chain' tries the previous modes in the order above until one succeeds.
Nicolas Palixe228b1e2010-06-06 17:15:02 +020070
Nicolas Palix78a95b92013-06-20 14:00:19 +020071'rep+ctxt' runs successively the report mode and the context mode.
72 It should be used with the C option (described later)
73 which checks the code on a file basis.
Nicolas Palixe228b1e2010-06-06 17:15:02 +020074
Nicolas Palix78a95b92013-06-20 14:00:19 +020075Examples:
76 To make a report for every semantic patch, run the following command:
Nicolas Palixe228b1e2010-06-06 17:15:02 +020077
Nicolas Palix78a95b92013-06-20 14:00:19 +020078 make coccicheck MODE=report
79
80 To produce patches, run:
81
82 make coccicheck MODE=patch
Nicolas Palixe228b1e2010-06-06 17:15:02 +020083
84
85The coccicheck target applies every semantic patch available in the
Nicolas Palix32af0892010-10-13 00:49:07 +020086sub-directories of 'scripts/coccinelle' to the entire Linux kernel.
Nicolas Palixe228b1e2010-06-06 17:15:02 +020087
Nicolas Palix32af0892010-10-13 00:49:07 +020088For each semantic patch, a commit message is proposed. It gives a
Nicolas Palixe228b1e2010-06-06 17:15:02 +020089description of the problem being checked by the semantic patch, and
90includes a reference to Coccinelle.
91
92As any static code analyzer, Coccinelle produces false
93positives. Thus, reports must be carefully checked, and patches
94reviewed.
95
Bernd Schubert26e56722013-01-29 17:03:37 +010096To enable verbose messages set the V= variable, for example:
97
98 make coccicheck MODE=report V=1
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
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200105
106 Using Coccinelle with a single semantic patch
107~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
108
109The optional make variable COCCI can be used to check a single
110semantic patch. In that case, the variable must be initialized with
111the name of the semantic patch to apply.
112
113For instance:
114
115 make coccicheck COCCI=<my_SP.cocci> MODE=patch
116or
117 make coccicheck COCCI=<my_SP.cocci> MODE=report
118
119
Greg Dietschef95ab202011-11-05 20:59:44 -0500120 Controlling Which Files are Processed by Coccinelle
121~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
122By default the entire kernel source tree is checked.
Nicolas Palix32af0892010-10-13 00:49:07 +0200123
Greg Dietschef95ab202011-11-05 20:59:44 -0500124To apply Coccinelle to a specific directory, M= can be used.
125For example, to check drivers/net/wireless/ one may write:
126
127 make coccicheck M=drivers/net/wireless/
Nicolas Palixed621cc2013-03-02 22:36:27 +0100128
Nicolas Palix32af0892010-10-13 00:49:07 +0200129To apply Coccinelle on a file basis, instead of a directory basis, the
130following command may be used:
131
132 make C=1 CHECK="scripts/coccicheck"
133
134To check only newly edited code, use the value 2 for the C flag, i.e.
135
136 make C=2 CHECK="scripts/coccicheck"
137
Nicolas Palix78a95b92013-06-20 14:00:19 +0200138In these modes, which works on a file basis, there is no information
139about semantic patches displayed, and no commit message proposed.
140
Nicolas Palix32af0892010-10-13 00:49:07 +0200141This runs every semantic patch in scripts/coccinelle by default. The
142COCCI variable may additionally be used to only apply a single
143semantic patch as shown in the previous section.
144
Nicolas Palix78a95b92013-06-20 14:00:19 +0200145The "report" mode is the default. You can select another one with the
Nicolas Palix32af0892010-10-13 00:49:07 +0200146MODE variable explained above.
147
Nicolas Palixed621cc2013-03-02 22:36:27 +0100148 Additional flags
149~~~~~~~~~~~~~~~~~~
150
151Additional flags can be passed to spatch through the SPFLAGS
152variable.
153
Nicolas Palix78a95b92013-06-20 14:00:19 +0200154 make SPFLAGS=--use-glimpse coccicheck
155 make SPFLAGS=--use-idutils coccicheck
Nicolas Palixed621cc2013-03-02 22:36:27 +0100156
157See spatch --help to learn more about spatch options.
Nicolas Palix32af0892010-10-13 00:49:07 +0200158
Nicolas Palix78a95b92013-06-20 14:00:19 +0200159Note that the '--use-glimpse' and '--use-idutils' options
160require external tools for indexing the code. None of them is
161thus active by default. However, by indexing the code with
162one of these tools, and according to the cocci file used,
163spatch could proceed the entire code base more quickly.
164
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200165 Proposing new semantic patches
166~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
167
168New semantic patches can be proposed and submitted by kernel
169developers. For sake of clarity, they should be organized in the
Nicolas Palix32af0892010-10-13 00:49:07 +0200170sub-directories of 'scripts/coccinelle/'.
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200171
172
173 Detailed description of the 'report' mode
174~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
175
176'report' generates a list in the following format:
177 file:line:column-column: message
178
179Example:
180
181Running
182
Nicolas Palix9dcf7992010-10-24 23:37:33 +0200183 make coccicheck MODE=report COCCI=scripts/coccinelle/api/err_cast.cocci
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200184
185will execute the following part of the SmPL script.
186
187<smpl>
188@r depends on !context && !patch && (org || report)@
189expression x;
190position p;
191@@
192
193 ERR_PTR@p(PTR_ERR(x))
194
195@script:python depends on report@
196p << r.p;
197x << r.x;
198@@
199
200msg="ERR_CAST can be used with %s" % (x)
201coccilib.report.print_report(p[0], msg)
202</smpl>
203
204This SmPL excerpt generates entries on the standard output, as
205illustrated below:
206
207/home/user/linux/crypto/ctr.c:188:9-16: ERR_CAST can be used with alg
208/home/user/linux/crypto/authenc.c:619:9-16: ERR_CAST can be used with auth
209/home/user/linux/crypto/xts.c:227:9-16: ERR_CAST can be used with alg
210
211
212 Detailed description of the 'patch' mode
213~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
214
215When the 'patch' mode is available, it proposes a fix for each problem
216identified.
217
218Example:
219
220Running
Nicolas Palix9dcf7992010-10-24 23:37:33 +0200221 make coccicheck MODE=patch COCCI=scripts/coccinelle/api/err_cast.cocci
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200222
223will execute the following part of the SmPL script.
224
225<smpl>
226@ depends on !context && patch && !org && !report @
227expression x;
228@@
229
230- ERR_PTR(PTR_ERR(x))
231+ ERR_CAST(x)
232</smpl>
233
234This SmPL excerpt generates patch hunks on the standard output, as
235illustrated below:
236
237diff -u -p a/crypto/ctr.c b/crypto/ctr.c
238--- a/crypto/ctr.c 2010-05-26 10:49:38.000000000 +0200
239+++ b/crypto/ctr.c 2010-06-03 23:44:49.000000000 +0200
240@@ -185,7 +185,7 @@ static struct crypto_instance *crypto_ct
241 alg = crypto_attr_alg(tb[1], CRYPTO_ALG_TYPE_CIPHER,
242 CRYPTO_ALG_TYPE_MASK);
243 if (IS_ERR(alg))
244- return ERR_PTR(PTR_ERR(alg));
245+ return ERR_CAST(alg);
246
247 /* Block size must be >= 4 bytes. */
248 err = -EINVAL;
249
250 Detailed description of the 'context' mode
251~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
252
253'context' highlights lines of interest and their context
254in a diff-like style.
255
256NOTE: The diff-like output generated is NOT an applicable patch. The
257 intent of the 'context' mode is to highlight the important lines
258 (annotated with minus, '-') and gives some surrounding context
259 lines around. This output can be used with the diff mode of
260 Emacs to review the code.
261
262Example:
263
264Running
Nicolas Palix9dcf7992010-10-24 23:37:33 +0200265 make coccicheck MODE=context COCCI=scripts/coccinelle/api/err_cast.cocci
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200266
267will execute the following part of the SmPL script.
268
269<smpl>
270@ depends on context && !patch && !org && !report@
271expression x;
272@@
273
274* ERR_PTR(PTR_ERR(x))
275</smpl>
276
277This SmPL excerpt generates diff hunks on the standard output, as
278illustrated below:
279
280diff -u -p /home/user/linux/crypto/ctr.c /tmp/nothing
281--- /home/user/linux/crypto/ctr.c 2010-05-26 10:49:38.000000000 +0200
282+++ /tmp/nothing
283@@ -185,7 +185,6 @@ static struct crypto_instance *crypto_ct
284 alg = crypto_attr_alg(tb[1], CRYPTO_ALG_TYPE_CIPHER,
285 CRYPTO_ALG_TYPE_MASK);
286 if (IS_ERR(alg))
287- return ERR_PTR(PTR_ERR(alg));
288
289 /* Block size must be >= 4 bytes. */
290 err = -EINVAL;
291
292 Detailed description of the 'org' mode
293~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
294
295'org' generates a report in the Org mode format of Emacs.
296
297Example:
298
299Running
Nicolas Palix9dcf7992010-10-24 23:37:33 +0200300 make coccicheck MODE=org COCCI=scripts/coccinelle/api/err_cast.cocci
Nicolas Palixe228b1e2010-06-06 17:15:02 +0200301
302will execute the following part of the SmPL script.
303
304<smpl>
305@r depends on !context && !patch && (org || report)@
306expression x;
307position p;
308@@
309
310 ERR_PTR@p(PTR_ERR(x))
311
312@script:python depends on org@
313p << r.p;
314x << r.x;
315@@
316
317msg="ERR_CAST can be used with %s" % (x)
318msg_safe=msg.replace("[","@(").replace("]",")")
319coccilib.org.print_todo(p[0], msg_safe)
320</smpl>
321
322This SmPL excerpt generates Org entries on the standard output, as
323illustrated below:
324
325* TODO [[view:/home/user/linux/crypto/ctr.c::face=ovl-face1::linb=188::colb=9::cole=16][ERR_CAST can be used with alg]]
326* TODO [[view:/home/user/linux/crypto/authenc.c::face=ovl-face1::linb=619::colb=9::cole=16][ERR_CAST can be used with auth]]
327* TODO [[view:/home/user/linux/crypto/xts.c::face=ovl-face1::linb=227::colb=9::cole=16][ERR_CAST can be used with alg]]