blob: c52e3c8ca9b3b4505d5cccaf0c06f135cb3bfc3b [file] [log] [blame]
Thomas Gleixner7f904d72019-06-04 10:11:38 +02001// SPDX-License-Identifier: GPL-2.0-only
Julia Lawall4a05f062012-02-02 15:53:08 +01002/// PTR_ERR should be applied before its argument is reassigned, typically
3/// to NULL
4///
5// Confidence: High
Thomas Gleixner7f904d72019-06-04 10:11:38 +02006// Copyright: (C) 2012 Julia Lawall, INRIA/LIP6.
7// Copyright: (C) 2012 Gilles Muller, INRIA/LiP6.
Julia Lawall4a05f062012-02-02 15:53:08 +01008// URL: http://coccinelle.lip6.fr/
9// Comments:
Nicolas Palix93f14462013-06-20 13:10:56 +020010// Options: --no-includes --include-headers
Julia Lawall4a05f062012-02-02 15:53:08 +010011
12virtual org
13virtual report
14virtual context
15
16@r exists@
17expression e,e1;
18constant c;
19position p1,p2;
20@@
21
22*e@p1 = c
23... when != e = e1
24 when != &e
25 when != true IS_ERR(e)
26*PTR_ERR@p2(e)
27
28@script:python depends on org@
29p1 << r.p1;
30p2 << r.p2;
31@@
32
33cocci.print_main("PTR_ERR",p2)
34cocci.print_secs("assignment",p1)
35
36@script:python depends on report@
37p1 << r.p1;
38p2 << r.p2;
39@@
40
41msg = "ERROR: PTR_ERR applied after initialization to constant on line %s" % (p1[0].line)
42coccilib.report.print_report(p2[0],msg)