fs/adfs: move append_filetype_suffix() into adfs_object_fixup()
[linux-2.6/linux-2.6-arm.git] / scripts / coccinelle / api / stream_open.cocci
blob350145da76691f0c4b111360a9fe2df30fbb1a24
1 // SPDX-License-Identifier: GPL-2.0
2 // Author: Kirill Smelkov (kirr@nexedi.com)
3 //
4 // Search for stream-like files that are using nonseekable_open and convert
5 // them to stream_open. A stream-like file is a file that does not use ppos in
6 // its read and write. Rationale for the conversion is to avoid deadlock in
7 // between read and write.
9 virtual report
10 virtual patch
11 virtual explain  // explain decisions in the patch (SPFLAGS="-D explain")
13 // stream-like reader & writer - ones that do not depend on f_pos.
14 @ stream_reader @
15 identifier readstream, ppos;
16 identifier f, buf, len;
17 type loff_t;
19   ssize_t readstream(struct file *f, char *buf, size_t len, loff_t *ppos)
20   {
21     ... when != ppos
22   }
24 @ stream_writer @
25 identifier writestream, ppos;
26 identifier f, buf, len;
27 type loff_t;
29   ssize_t writestream(struct file *f, const char *buf, size_t len, loff_t *ppos)
30   {
31     ... when != ppos
32   }
35 // a function that blocks
36 @ blocks @
37 identifier block_f;
38 identifier wait_event =~ "^wait_event_.*";
40   block_f(...) {
41     ... when exists
42     wait_event(...)
43     ... when exists
44   }
46 // stream_reader that can block inside.
48 // XXX wait_* can be called not directly from current function (e.g. func -> f -> g -> wait())
49 // XXX currently reader_blocks supports only direct and 1-level indirect cases.
50 @ reader_blocks_direct @
51 identifier stream_reader.readstream;
52 identifier wait_event =~ "^wait_event_.*";
54   readstream(...)
55   {
56     ... when exists
57     wait_event(...)
58     ... when exists
59   }
61 @ reader_blocks_1 @
62 identifier stream_reader.readstream;
63 identifier blocks.block_f;
65   readstream(...)
66   {
67     ... when exists
68     block_f(...)
69     ... when exists
70   }
72 @ reader_blocks depends on reader_blocks_direct || reader_blocks_1 @
73 identifier stream_reader.readstream;
75   readstream(...) {
76     ...
77   }
80 // file_operations + whether they have _any_ .read, .write, .llseek ... at all.
82 // XXX add support for file_operations xxx[N] = ...     (sound/core/pcm_native.c)
83 @ fops0 @
84 identifier fops;
86   struct file_operations fops = {
87     ...
88   };
90 @ has_read @
91 identifier fops0.fops;
92 identifier read_f;
94   struct file_operations fops = {
95     .read = read_f,
96   };
98 @ has_read_iter @
99 identifier fops0.fops;
100 identifier read_iter_f;
102   struct file_operations fops = {
103     .read_iter = read_iter_f,
104   };
106 @ has_write @
107 identifier fops0.fops;
108 identifier write_f;
110   struct file_operations fops = {
111     .write = write_f,
112   };
114 @ has_write_iter @
115 identifier fops0.fops;
116 identifier write_iter_f;
118   struct file_operations fops = {
119     .write_iter = write_iter_f,
120   };
122 @ has_llseek @
123 identifier fops0.fops;
124 identifier llseek_f;
126   struct file_operations fops = {
127     .llseek = llseek_f,
128   };
130 @ has_no_llseek @
131 identifier fops0.fops;
133   struct file_operations fops = {
134     .llseek = no_llseek,
135   };
137 @ has_mmap @
138 identifier fops0.fops;
139 identifier mmap_f;
141   struct file_operations fops = {
142     .mmap = mmap_f,
143   };
145 @ has_copy_file_range @
146 identifier fops0.fops;
147 identifier copy_file_range_f;
149   struct file_operations fops = {
150     .copy_file_range = copy_file_range_f,
151   };
153 @ has_remap_file_range @
154 identifier fops0.fops;
155 identifier remap_file_range_f;
157   struct file_operations fops = {
158     .remap_file_range = remap_file_range_f,
159   };
161 @ has_splice_read @
162 identifier fops0.fops;
163 identifier splice_read_f;
165   struct file_operations fops = {
166     .splice_read = splice_read_f,
167   };
169 @ has_splice_write @
170 identifier fops0.fops;
171 identifier splice_write_f;
173   struct file_operations fops = {
174     .splice_write = splice_write_f,
175   };
178 // file_operations that is candidate for stream_open conversion - it does not
179 // use mmap and other methods that assume @offset access to file.
181 // XXX for simplicity require no .{read/write}_iter and no .splice_{read/write} for now.
182 // XXX maybe_steam.fops cannot be used in other rules - it gives "bad rule maybe_stream or bad variable fops".
183 @ maybe_stream depends on (!has_llseek || has_no_llseek) && !has_mmap && !has_copy_file_range && !has_remap_file_range && !has_read_iter && !has_write_iter && !has_splice_read && !has_splice_write @
184 identifier fops0.fops;
186   struct file_operations fops = {
187   };
190 // ---- conversions ----
192 // XXX .open = nonseekable_open -> .open = stream_open
193 // XXX .open = func -> openfunc -> nonseekable_open
195 // read & write
197 // if both are used in the same file_operations together with an opener -
198 // under that conditions we can use stream_open instead of nonseekable_open.
199 @ fops_rw depends on maybe_stream @
200 identifier fops0.fops, openfunc;
201 identifier stream_reader.readstream;
202 identifier stream_writer.writestream;
204   struct file_operations fops = {
205       .open  = openfunc,
206       .read  = readstream,
207       .write = writestream,
208   };
210 @ report_rw depends on report @
211 identifier fops_rw.openfunc;
212 position p1;
214   openfunc(...) {
215     <...
216      nonseekable_open@p1
217     ...>
218   }
220 @ script:python depends on report && reader_blocks @
221 fops << fops0.fops;
222 p << report_rw.p1;
224 coccilib.report.print_report(p[0],
225   "ERROR: %s: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix." % (fops,))
227 @ script:python depends on report && !reader_blocks @
228 fops << fops0.fops;
229 p << report_rw.p1;
231 coccilib.report.print_report(p[0],
232   "WARNING: %s: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open." % (fops,))
235 @ explain_rw_deadlocked depends on explain && reader_blocks @
236 identifier fops_rw.openfunc;
238   openfunc(...) {
239     <...
240 -    nonseekable_open
241 +    nonseekable_open /* read & write (was deadlock) */
242     ...>
243   }
246 @ explain_rw_nodeadlock depends on explain && !reader_blocks @
247 identifier fops_rw.openfunc;
249   openfunc(...) {
250     <...
251 -    nonseekable_open
252 +    nonseekable_open /* read & write (no direct deadlock) */
253     ...>
254   }
256 @ patch_rw depends on patch @
257 identifier fops_rw.openfunc;
259   openfunc(...) {
260     <...
261 -   nonseekable_open
262 +   stream_open
263     ...>
264   }
267 // read, but not write
268 @ fops_r depends on maybe_stream && !has_write @
269 identifier fops0.fops, openfunc;
270 identifier stream_reader.readstream;
272   struct file_operations fops = {
273       .open  = openfunc,
274       .read  = readstream,
275   };
277 @ report_r depends on report @
278 identifier fops_r.openfunc;
279 position p1;
281   openfunc(...) {
282     <...
283     nonseekable_open@p1
284     ...>
285   }
287 @ script:python depends on report @
288 fops << fops0.fops;
289 p << report_r.p1;
291 coccilib.report.print_report(p[0],
292   "WARNING: %s: .read() has stream semantic; safe to change nonseekable_open -> stream_open." % (fops,))
294 @ explain_r depends on explain @
295 identifier fops_r.openfunc;
297   openfunc(...) {
298     <...
299 -   nonseekable_open
300 +   nonseekable_open /* read only */
301     ...>
302   }
304 @ patch_r depends on patch @
305 identifier fops_r.openfunc;
307   openfunc(...) {
308     <...
309 -   nonseekable_open
310 +   stream_open
311     ...>
312   }
315 // write, but not read
316 @ fops_w depends on maybe_stream && !has_read @
317 identifier fops0.fops, openfunc;
318 identifier stream_writer.writestream;
320   struct file_operations fops = {
321       .open  = openfunc,
322       .write = writestream,
323   };
325 @ report_w depends on report @
326 identifier fops_w.openfunc;
327 position p1;
329   openfunc(...) {
330     <...
331     nonseekable_open@p1
332     ...>
333   }
335 @ script:python depends on report @
336 fops << fops0.fops;
337 p << report_w.p1;
339 coccilib.report.print_report(p[0],
340   "WARNING: %s: .write() has stream semantic; safe to change nonseekable_open -> stream_open." % (fops,))
342 @ explain_w depends on explain @
343 identifier fops_w.openfunc;
345   openfunc(...) {
346     <...
347 -   nonseekable_open
348 +   nonseekable_open /* write only */
349     ...>
350   }
352 @ patch_w depends on patch @
353 identifier fops_w.openfunc;
355   openfunc(...) {
356     <...
357 -   nonseekable_open
358 +   stream_open
359     ...>
360   }
363 // no read, no write - don't change anything