67f74148a6d55050ef95f9c982988717ddd0d4a1
[bpt/coccinelle.git] / engine / pattern_c.ml
1 (*
2 * Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
3 * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
4 * This file is part of Coccinelle.
5 *
6 * Coccinelle is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, according to version 2 of the License.
9 *
10 * Coccinelle is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * The authors reserve the right to distribute this or future versions of
19 * Coccinelle under other licenses.
20 *)
21
22
23 (* Yoann Padioleau
24 *
25 * Copyright (C) 2006, 2007 Ecole des Mines de Nantes
26 *
27 * This program is free software; you can redistribute it and/or
28 * modify it under the terms of the GNU General Public License (GPL)
29 * version 2 as published by the Free Software Foundation.
30 *
31 * This program is distributed in the hope that it will be useful,
32 * but WITHOUT ANY WARRANTY; without even the implied warranty of
33 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 * file license.txt for more details.
35 *
36 * This file was part of Coccinelle.
37 *)
38 open Common
39
40 module Flag_engine = Flag_matcher
41 (*****************************************************************************)
42 (* The functor argument *)
43 (*****************************************************************************)
44
45 (* info passed recursively in monad in addition to binding *)
46 type xinfo = {
47 optional_storage_iso : bool;
48 optional_qualifier_iso : bool;
49 value_format_iso : bool;
50 }
51
52 module XMATCH = struct
53
54 (* ------------------------------------------------------------------------*)
55 (* Combinators history *)
56 (* ------------------------------------------------------------------------*)
57 (*
58 * version0:
59 * type ('a, 'b) matcher = 'a -> 'b -> bool
60 *
61 * version1: same but with a global variable holding the current binding
62 * BUT bug
63 * - can have multiple possibilities
64 * - globals sux
65 * - sometimes have to undo, cos if start match, then it binds,
66 * and if later it does not match, then must undo the first binds.
67 * ex: when match parameters, can try to match, but then we found far
68 * later that the last argument of a function does not match
69 * => have to uando the binding !!!
70 * (can handle that too with a global, by saving the
71 * global, ... but sux)
72 * => better not use global
73 *
74 * version2:
75 * type ('a, 'b) matcher = binding -> 'a -> 'b -> binding list
76 *
77 * Empty list mean failure (let matchfailure = []).
78 * To be able to have pretty code, have to use partial application
79 * powa, and so the type is in fact
80 *
81 * version3:
82 * type ('a, 'b) matcher = 'a -> 'b -> binding -> binding list
83 *
84 * Then by defining the correct combinators, can have quite pretty code (that
85 * looks like the clean code of version0).
86 *
87 * opti: return a lazy list of possible matchs ?
88 *
89 * version4: type tin = Lib_engine.metavars_binding
90 *)
91
92 (* ------------------------------------------------------------------------*)
93 (* Standard type and operators *)
94 (* ------------------------------------------------------------------------*)
95
96 type tin = {
97 extra: xinfo;
98 binding: Lib_engine.metavars_binding;
99 binding0: Lib_engine.metavars_binding; (* inherited bindings *)
100 }
101 (* 'x is a ('a * 'b) but in fact dont care about 'b, we just tag the SP *)
102 (* opti? use set instead of list *)
103 type 'x tout = ('x * Lib_engine.metavars_binding) list
104
105 type ('a, 'b) matcher = 'a -> 'b -> tin -> ('a * 'b) tout
106
107 (* was >&&> *)
108 let (>>=) m1 m2 = fun tin ->
109 let xs = m1 tin in
110 let xxs = xs +> List.map (fun ((a,b), binding) ->
111 m2 a b {tin with binding = binding}
112 ) in
113 List.flatten xxs
114
115 (* Je compare les bindings retournés par les differentes branches.
116 * Si la deuxieme branche amene a des bindings qui sont deja presents
117 * dans la premiere branche, alors je ne les accepte pas.
118 *
119 * update: still useful now that julia better handle Exp directly via
120 * ctl tricks using positions ?
121 *)
122 let (>|+|>) m1 m2 = fun tin ->
123 (* CHOICE
124 let xs = m1 tin in
125 if null xs
126 then m2 tin
127 else xs
128 *)
129 let res1 = m1 tin in
130 let res2 = m2 tin in
131 let list_bindings_already = List.map snd res1 in
132 res1 ++
133 (res2 +> List.filter (fun (x, binding) ->
134 not
135 (list_bindings_already +> List.exists (fun already ->
136 Lib_engine.equal_binding binding already))
137 ))
138
139
140
141
142 let (>||>) m1 m2 = fun tin ->
143 (* CHOICE
144 let xs = m1 tin in
145 if null xs
146 then m2 tin
147 else xs
148 *)
149 (* opti? use set instead of list *)
150 m1 tin ++ m2 tin
151
152
153 let return res = fun tin ->
154 [res, tin.binding]
155
156 let fail = fun tin ->
157 []
158
159 let (>&&>) f m = fun tin ->
160 if f tin
161 then m tin
162 else fail tin
163
164
165 let mode = Cocci_vs_c.PatternMode
166
167 (* ------------------------------------------------------------------------*)
168 (* Exp *)
169 (* ------------------------------------------------------------------------*)
170 let cocciExp = fun expf expa node -> fun tin ->
171
172 let globals = ref [] in
173 let bigf = {
174 (* julia's style *)
175 Visitor_c.default_visitor_c with
176 Visitor_c.kexpr = (fun (k, bigf) expb ->
177 match expf expa expb tin with
178 | [] -> (* failed *) k expb
179 | xs ->
180 globals := xs @ !globals;
181 if not !Flag_engine.disallow_nested_exps then k expb (* CHOICE *)
182 );
183 (* pad's style.
184 * push2 expr globals; k expr
185 * ...
186 * !globals +> List.fold_left (fun acc e -> acc >||> match_e_e expr e)
187 * (return false)
188 *
189 *)
190 }
191 in
192 Visitor_c.vk_node bigf node;
193 !globals +> List.map (fun ((a, _exp), binding) ->
194 (a, node), binding
195 )
196
197 (* same as cocciExp, but for expressions in an expression, not expressions
198 in a node *)
199 let cocciExpExp = fun expf expa expb -> fun tin ->
200
201 let globals = ref [] in
202 let bigf = {
203 (* julia's style *)
204 Visitor_c.default_visitor_c with
205 Visitor_c.kexpr = (fun (k, bigf) expb ->
206 match expf expa expb tin with
207 | [] -> (* failed *) k expb
208 | xs ->
209 globals := xs @ !globals;
210 if not !Flag_engine.disallow_nested_exps then k expb (* CHOICE *)
211 );
212 (* pad's style.
213 * push2 expr globals; k expr
214 * ...
215 * !globals +> List.fold_left (fun acc e -> acc >||> match_e_e expr e)
216 * (return false)
217 *
218 *)
219 }
220 in
221 Visitor_c.vk_expr bigf expb;
222 !globals +> List.map (fun ((a, _exp), binding) ->
223 (a, expb), binding
224 )
225
226 let cocciTy = fun expf expa node -> fun tin ->
227
228 let globals = ref [] in
229 let bigf = {
230 Visitor_c.default_visitor_c with
231 Visitor_c.ktype = (fun (k, bigf) expb ->
232 match expf expa expb tin with
233 | [] -> (* failed *) k expb
234 | xs -> globals := xs @ !globals);
235
236 }
237 in
238 Visitor_c.vk_node bigf node;
239 !globals +> List.map (fun ((a, _exp), binding) ->
240 (a, node), binding
241 )
242
243 let cocciInit = fun expf expa node -> fun tin ->
244
245 let globals = ref [] in
246 let bigf = {
247 Visitor_c.default_visitor_c with
248 Visitor_c.kini = (fun (k, bigf) expb ->
249 match expf expa expb tin with
250 | [] -> (* failed *) k expb
251 | xs -> globals := xs @ !globals);
252
253 }
254 in
255 Visitor_c.vk_node bigf node;
256 !globals +> List.map (fun ((a, _exp), binding) ->
257 (a, node), binding
258 )
259
260
261 (* ------------------------------------------------------------------------*)
262 (* Distribute mcode *)
263 (* ------------------------------------------------------------------------*)
264 let tag_mck_pos mck posmck =
265 match mck with
266 | Ast_cocci.PLUS c -> Ast_cocci.PLUS c
267 | Ast_cocci.CONTEXT (pos, xs) ->
268 assert (pos =*= Ast_cocci.NoPos || pos =*= Ast_cocci.DontCarePos);
269 Ast_cocci.CONTEXT (posmck, xs)
270 | Ast_cocci.MINUS (pos, inst, adj, xs) ->
271 assert (pos =*= Ast_cocci.NoPos || pos =*= Ast_cocci.DontCarePos);
272 Ast_cocci.MINUS (posmck, inst, adj, xs)
273
274
275 let tag_mck_pos_mcode (x,info,mck,pos) posmck stuff = fun tin ->
276 [((x, info, tag_mck_pos mck posmck, pos),stuff), tin.binding]
277
278
279 let distrf (ii_of_x_f) =
280 fun mcode x -> fun tin ->
281 let (max, min) = Lib_parsing_c.max_min_by_pos (ii_of_x_f x)
282 in
283 let posmck = Ast_cocci.FixPos (min, max) (* subtil: and not max, min !!*)
284 in
285 tag_mck_pos_mcode mcode posmck x tin
286
287 let distrf_e = distrf (Lib_parsing_c.ii_of_expr)
288 let distrf_args = distrf (Lib_parsing_c.ii_of_args)
289 let distrf_type = distrf (Lib_parsing_c.ii_of_type)
290 let distrf_param = distrf (Lib_parsing_c.ii_of_param)
291 let distrf_params = distrf (Lib_parsing_c.ii_of_params)
292 let distrf_ini = distrf (Lib_parsing_c.ii_of_ini)
293 let distrf_node = distrf (Lib_parsing_c.ii_of_node)
294 let distrf_struct_fields = distrf (Lib_parsing_c.ii_of_struct_fields)
295 let distrf_cst = distrf (Lib_parsing_c.ii_of_cst)
296 let distrf_define_params = distrf (Lib_parsing_c.ii_of_define_params)
297
298
299 (* ------------------------------------------------------------------------*)
300 (* Constraints on metavariable values *)
301 (* ------------------------------------------------------------------------*)
302 let check_idconstraint matcher c id = fun f tin ->
303 if matcher c id then
304 (* success *)
305 f () tin
306 else
307 (* failure *)
308 fail tin
309
310 let check_constraints_ne matcher constraints exp = fun f tin ->
311 let rec loop = function
312 [] -> f () tin (* success *)
313 | c::cs ->
314 match matcher c exp tin with
315 [] (* failure *) -> loop cs
316 | _ (* success *) -> fail tin in
317 loop constraints
318
319 let check_pos_constraints constraints pvalu f tin =
320 check_constraints_ne
321 (fun c exp tin ->
322 let success = [[]] in
323 let failure = [] in
324 (* relies on the fact that constraints on pos variables must refer to
325 inherited variables *)
326 (match Common.optionise (fun () -> tin.binding0 +> List.assoc c) with
327 Some valu' ->
328 if Cocci_vs_c.equal_inh_metavarval exp valu'
329 then success else failure
330 | None ->
331 (* if the variable is not there, it puts no constraints *)
332 (* not sure this is still useful *)
333 failure))
334 constraints pvalu f tin
335
336 (* ------------------------------------------------------------------------*)
337 (* Environment *)
338 (* ------------------------------------------------------------------------*)
339 (* pre: if have declared a new metavar that hide another one, then
340 * must be passed with a binding that deleted this metavar
341 *
342 * Here we dont use the keep argument of julia. cf f(X,X), J'ai
343 * besoin de garder le X en interne, meme si julia s'en fout elle du
344 * X et qu'elle a mis X a DontSaved.
345 *)
346 let check_add_metavars_binding strip _keep inherited = fun (k, valu) tin ->
347 if inherited
348 then
349 match Common.optionise (fun () -> tin.binding0 +> List.assoc k) with
350 | Some (valu') ->
351 if Cocci_vs_c.equal_inh_metavarval valu valu'
352 then Some tin.binding
353 else None
354 | None -> None
355 else
356 match Common.optionise (fun () -> tin.binding +> List.assoc k) with
357 | Some (valu') ->
358 if Cocci_vs_c.equal_metavarval valu valu'
359 then Some tin.binding
360 else None
361
362 | None ->
363 let valu' =
364 match valu with
365 Ast_c.MetaIdVal a -> Ast_c.MetaIdVal a
366 | Ast_c.MetaFuncVal a -> Ast_c.MetaFuncVal a
367 | Ast_c.MetaLocalFuncVal a -> Ast_c.MetaLocalFuncVal a (*more?*)
368 | Ast_c.MetaExprVal a ->
369 Ast_c.MetaExprVal
370 (if strip
371 then Lib_parsing_c.al_expr a
372 else Lib_parsing_c.semi_al_expr a)
373 | Ast_c.MetaExprListVal a ->
374 Ast_c.MetaExprListVal
375 (if strip
376 then Lib_parsing_c.al_arguments a
377 else Lib_parsing_c.semi_al_arguments a)
378
379 | Ast_c.MetaStmtVal a ->
380 Ast_c.MetaStmtVal
381 (if strip
382 then Lib_parsing_c.al_statement a
383 else Lib_parsing_c.semi_al_statement a)
384 | Ast_c.MetaTypeVal a ->
385 Ast_c.MetaTypeVal
386 (if strip
387 then Lib_parsing_c.al_type a
388 else Lib_parsing_c.semi_al_type a)
389
390 | Ast_c.MetaInitVal a ->
391 Ast_c.MetaInitVal
392 (if strip
393 then Lib_parsing_c.al_init a
394 else Lib_parsing_c.semi_al_init a)
395
396 | Ast_c.MetaListlenVal a -> Ast_c.MetaListlenVal a
397
398 | Ast_c.MetaParamVal a -> failwith "not handling MetaParamVal"
399 | Ast_c.MetaParamListVal a ->
400 Ast_c.MetaParamListVal
401 (if strip
402 then Lib_parsing_c.al_params a
403 else Lib_parsing_c.semi_al_params a)
404
405 | Ast_c.MetaPosVal (pos1,pos2) -> Ast_c.MetaPosVal (pos1,pos2)
406 | Ast_c.MetaPosValList l -> Ast_c.MetaPosValList l
407 in Some (tin.binding +> Common.insert_assoc (k, valu'))
408
409 let envf keep inherited = fun (k, valu, get_max_min) f tin ->
410 let x = Ast_cocci.unwrap_mcode k in
411 match check_add_metavars_binding true keep inherited (x, valu) tin with
412 | Some binding ->
413 let new_tin = {tin with binding = binding} in
414 (match Ast_cocci.get_pos_var k with
415 Ast_cocci.MetaPos(name,constraints,per,keep,inherited) ->
416 let pvalu =
417 let (file,current_element,min,max) = get_max_min() in
418 Ast_c.MetaPosValList[(file,current_element,min,max)] in
419 (* check constraints. success means that there is a match with
420 one of the constraints, which will ultimately result in
421 failure. *)
422 check_pos_constraints constraints pvalu
423 (function () ->
424 (* constraints are satisfied, now see if we are compatible
425 with existing bindings *)
426 function new_tin ->
427 let x = Ast_cocci.unwrap_mcode name in
428 (match
429 check_add_metavars_binding false keep inherited (x, pvalu)
430 new_tin with
431 | Some binding ->
432 f () {new_tin with binding = binding}
433 | None -> fail tin))
434 new_tin
435 | Ast_cocci.NoMetaPos -> f () new_tin)
436 | None -> fail tin
437
438 (* ------------------------------------------------------------------------*)
439 (* Environment, allbounds *)
440 (* ------------------------------------------------------------------------*)
441 (* all referenced inherited variables have to be bound. This would
442 * be naturally checked for the minus or context ones in the
443 * matching process, but have to check the plus ones as well. The
444 * result of get_inherited contains all of these, but the potential
445 * redundant checking for the minus and context ones is probably not
446 * a big deal. If it's a problem, could fix free_vars to distinguish
447 * between + variables and the other ones. *)
448
449 let (all_bound : Ast_cocci.meta_name list -> tin -> bool) = fun l tin ->
450 l +> List.for_all (fun inhvar ->
451 match Common.optionise (fun () -> tin.binding0 +> List.assoc inhvar) with
452 | Some _ -> true
453 | None -> false
454 )
455
456 let optional_storage_flag f = fun tin ->
457 f (tin.extra.optional_storage_iso) tin
458
459 let optional_qualifier_flag f = fun tin ->
460 f (tin.extra.optional_qualifier_iso) tin
461
462 let value_format_flag f = fun tin ->
463 f (tin.extra.value_format_iso) tin
464
465
466 (* ------------------------------------------------------------------------*)
467 (* Tokens *)
468 (* ------------------------------------------------------------------------*)
469 let tokenf ia ib = fun tin ->
470 let pos = Ast_c.info_to_fixpos ib in
471 let posmck = Ast_cocci.FixPos (pos, pos) in
472 let finish tin = tag_mck_pos_mcode ia posmck ib tin in
473 match Ast_cocci.get_pos_var ia with
474 Ast_cocci.MetaPos(name,constraints,per,keep,inherited) ->
475 let mpos = Lib_parsing_c.lin_col_by_pos [ib] in
476 let pvalu = Ast_c.MetaPosValList [mpos] in
477 check_pos_constraints constraints pvalu
478 (function () ->
479 (* constraints are satisfied, now see if we are compatible
480 with existing bindings *)
481 function new_tin ->
482 let x = Ast_cocci.unwrap_mcode name in
483 (match
484 check_add_metavars_binding false keep inherited (x, pvalu) tin
485 with
486 Some binding -> finish {tin with binding = binding}
487 | None -> fail tin))
488 tin
489 | _ -> finish tin
490
491 let tokenf_mck mck ib = fun tin ->
492 let pos = Ast_c.info_to_fixpos ib in
493 let posmck = Ast_cocci.FixPos (pos, pos) in
494 [(tag_mck_pos mck posmck, ib), tin.binding]
495
496 end
497
498 (*****************************************************************************)
499 (* Entry point *)
500 (*****************************************************************************)
501 module MATCH = Cocci_vs_c.COCCI_VS_C (XMATCH)
502
503
504 let match_re_node2 dropped_isos a b binding0 =
505
506 let tin = {
507 XMATCH.extra = {
508 optional_storage_iso = not(List.mem "optional_storage" dropped_isos);
509 optional_qualifier_iso = not(List.mem "optional_qualifier" dropped_isos);
510 value_format_iso = not(List.mem "value_format" dropped_isos);
511 };
512 XMATCH.binding = [];
513 XMATCH.binding0 = binding0;
514 } in
515
516 MATCH.rule_elem_node a b tin
517 (* take only the tagged-SP, the 'a' *)
518 +> List.map (fun ((a,_b), binding) -> a, binding)
519
520
521 let match_re_node a b c d =
522 Common.profile_code "Pattern3.match_re_node"
523 (fun () -> match_re_node2 a b c d)