interconnect: qcom: sdm845: Walk the list safely on node removal
[linux/fpc-iii.git] / scripts / coccinelle / free / devm_free.cocci
blob441799b5359b59dab4fd684ef6b88f8afca7b5c4
1 // SPDX-License-Identifier: GPL-2.0-only
2 /// Find uses of standard freeing functons on values allocated using devm_
3 /// functions.  Values allocated using the devm_functions are freed when
4 /// the device is detached, and thus the use of the standard freeing
5 /// function would cause a double free.
6 /// See Documentation/driver-api/driver-model/devres.rst for more information.
7 ///
8 /// A difficulty of detecting this problem is that the standard freeing
9 /// function might be called from a different function than the one
10 /// containing the allocation function.  It is thus necessary to make the
11 /// connection between the allocation function and the freeing function.
12 /// Here this is done using the specific argument text, which is prone to
13 /// false positives.  There is no rule for the request_region and
14 /// request_mem_region variants because this heuristic seems to be a bit
15 /// less reliable in these cases.
16 ///
17 // Confidence: Moderate
18 // Copyright: (C) 2011 Julia Lawall, INRIA/LIP6.
19 // Copyright: (C) 2011 Gilles Muller, INRIA/LiP6.
20 // URL: http://coccinelle.lip6.fr/
21 // Comments:
22 // Options: --no-includes --include-headers
24 virtual org
25 virtual report
26 virtual context
28 @r depends on context || org || report@
29 expression x;
33  x = devm_kmalloc(...)
35  x = devm_kvasprintf(...)
37  x = devm_kasprintf(...)
39  x = devm_kzalloc(...)
41  x = devm_kmalloc_array(...)
43  x = devm_kcalloc(...)
45  x = devm_kstrdup(...)
47  x = devm_kmemdup(...)
49  x = devm_get_free_pages(...)
51  x = devm_request_irq(...)
53  x = devm_ioremap(...)
55  x = devm_ioremap_nocache(...)
57  x = devm_ioport_map(...)
60 @safe depends on context || org || report exists@
61 expression x;
62 position p;
66  x = kmalloc(...)
68  x = kvasprintf(...)
70  x = kasprintf(...)
72  x = kzalloc(...)
74  x = kmalloc_array(...)
76  x = kcalloc(...)
78  x = kstrdup(...)
80  x = kmemdup(...)
82  x = get_free_pages(...)
84  x = request_irq(...)
86  x = ioremap(...)
88  x = ioremap_nocache(...)
90  x = ioport_map(...)
92 ...
94  kfree@p(x)
96  kzfree@p(x)
98  __krealloc@p(x, ...)
100  krealloc@p(x, ...)
102  free_pages@p(x, ...)
104  free_page@p(x)
106  free_irq@p(x)
108  iounmap@p(x)
110  ioport_unmap@p(x)
113 @pb@
114 expression r.x;
115 position p != safe.p;
119 * kfree@p(x)
121 * kzfree@p(x)
123 * __krealloc@p(x, ...)
125 * krealloc@p(x, ...)
127 * free_pages@p(x, ...)
129 * free_page@p(x)
131 * free_irq@p(x)
133 * iounmap@p(x)
135 * ioport_unmap@p(x)
138 @script:python depends on org@
139 p << pb.p;
142 msg="WARNING: invalid free of devm_ allocated data"
143 coccilib.org.print_todo(p[0], msg)
145 @script:python depends on report@
146 p << pb.p;
149 msg="WARNING: invalid free of devm_ allocated data"
150 coccilib.report.print_report(p[0], msg)