Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / scripts / coccinelle / tests / odd_ptr_err.cocci
blob11d4e2b6deb8bbfabd0174bdbb03c67532807eda
1 // SPDX-License-Identifier: GPL-2.0-only
2 /// PTR_ERR should access the value just tested by IS_ERR
3 //# There can be false positives in the patch case, where it is the call to
4 //# IS_ERR that is wrong.
5 ///
6 // Confidence: High
7 // Copyright: (C) 2012, 2015 Julia Lawall, INRIA.
8 // Copyright: (C) 2012, 2015 Gilles Muller, INRIA.
9 // URL: http://coccinelle.lip6.fr/
10 // Options: --no-includes --include-headers
12 virtual patch
13 virtual context
14 virtual org
15 virtual report
17 @ok1 exists@
18 expression x,e;
19 position p;
22 if (IS_ERR(x=e) || ...) {
23   <...
24    PTR_ERR@p(x)
25   ...>
28 @ok2 exists@
29 expression x,e1,e2;
30 position p;
33 if (IS_ERR(x) || ...) {
34   <...
36    PTR_ERR@p(\(e1 ? e2 : x\|e1 ? x : e2\))
38    PTR_ERR@p(x)
40   ...>
43 @r1 depends on patch && !context && !org && !report exists@
44 expression x,y;
45 position p != {ok1.p,ok2.p};
48 if (IS_ERR(x) || ...) {
49   ... when any
50       when != IS_ERR(...)
52   PTR_ERR(x)
54   PTR_ERR@p(
55 -     y
56 +     x
57   )
59   ... when any
62 // ----------------------------------------------------------------------------
64 @r1_context depends on !patch && (context || org || report) exists@
65 position p != {ok1.p,ok2.p};
66 expression x, y;
67 position j0, j1;
70 if (IS_ERR@j0(x) || ...) {
71   ... when any
72       when != IS_ERR(...)
74   PTR_ERR(x)
76   PTR_ERR@j1@p(
77      y
78   )
80   ... when any
83 @r1_disj depends on !patch && (context || org || report) exists@
84 position p != {ok1.p,ok2.p};
85 expression x, y;
86 position r1_context.j0, r1_context.j1;
89 * if (IS_ERR@j0(x) || ...) {
90   ... when any
91       when != IS_ERR(...)
92 *   PTR_ERR@j1@p(
93      y
94   )
95   ... when any
98 // ----------------------------------------------------------------------------
100 @script:python r1_org depends on org@
101 j0 << r1_context.j0;
102 j1 << r1_context.j1;
105 msg = "inconsistent IS_ERR and PTR_ERR"
106 coccilib.org.print_todo(j0[0], msg)
107 coccilib.org.print_link(j1[0], "")
109 // ----------------------------------------------------------------------------
111 @script:python r1_report depends on report@
112 j0 << r1_context.j0;
113 j1 << r1_context.j1;
116 msg = "inconsistent IS_ERR and PTR_ERR on line %s." % (j1[0].line)
117 coccilib.report.print_report(j0[0], msg)