2 * Copyright (C) 2013 Oracle.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
19 * Track how functions are saved as various struct members or passed as
26 #include "smatch_slist.h"
30 static char *get_from__symbol_get(struct expression
*expr
)
32 struct expression
*arg
;
35 * typeof(&dib0070_attach) __a =
36 * ((((typeof(&dib0070_attach)) (__symbol_get("dib0070_attach")))) ?:
37 * (__request_module(true, "symbol:" "dib0070_attach"), (((typeof(&dib0070_attach))(__symbol_get("dib0070_attach"))))));
40 expr
= strip_expr(expr
);
42 if (expr
->type
!= EXPR_CALL
)
44 if (!sym_name_is("__symbol_get", expr
->fn
))
46 arg
= get_argument_from_call_expr(expr
->args
, 0);
47 if (!arg
|| arg
->type
!= EXPR_STRING
)
50 return alloc_string(arg
->string
->data
);
53 static char *get_array_ptr(struct expression
*expr
)
55 struct expression
*array
;
60 array
= get_array_base(expr
);
63 name
= get_member_name(array
);
68 /* FIXME: is_array() should probably be is_array_element() */
69 type
= get_type(expr
);
70 if (!array
&& type
&& type
->type
== SYM_ARRAY
)
73 name
= expr_to_var(array
);
76 snprintf(buf
, sizeof(buf
), "%s[]", name
);
77 return alloc_string(buf
);
80 expr
= get_assigned_expr(expr
);
81 array
= get_array_base(expr
);
84 name
= expr_to_var(array
);
87 snprintf(buf
, sizeof(buf
), "%s[]", name
);
89 return alloc_string(buf
);
92 static int is_local_symbol(struct symbol
*sym
)
94 if (!sym
|| !sym
->scope
|| !sym
->scope
->token
)
96 if (positions_eq(sym
->scope
->token
->pos
, cur_func_sym
->pos
))
101 static char *ptr_prefix(struct symbol
*sym
)
103 static char buf
[128];
106 if (is_local_symbol(sym
))
107 snprintf(buf
, sizeof(buf
), "%s ptr", get_function());
108 else if (sym
&& toplevel(sym
->scope
))
109 snprintf(buf
, sizeof(buf
), "%s ptr", get_base_file());
111 snprintf(buf
, sizeof(buf
), "ptr");
116 char *get_returned_ptr(struct expression
*expr
)
122 if (expr
->type
!= EXPR_CALL
)
124 if (!expr
->fn
|| expr
->fn
->type
!= EXPR_SYMBOL
)
127 type
= get_type(expr
);
128 if (type
&& type
->type
== SYM_PTR
)
129 type
= get_real_base_type(type
);
130 if (!type
|| type
->type
!= SYM_FN
)
133 name
= expr_to_var(expr
->fn
);
136 snprintf(buf
, sizeof(buf
), "r %s()", name
);
138 return alloc_string(buf
);
141 char *get_fnptr_name(struct expression
*expr
)
145 expr
= strip_expr(expr
);
147 /* (*ptrs[0])(a, b, c) is the same as ptrs[0](a, b, c); */
148 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '*')
149 expr
= strip_expr(expr
->unop
);
151 name
= get_from__symbol_get(expr
);
155 name
= get_array_ptr(expr
);
159 name
= get_returned_ptr(expr
);
163 name
= get_member_name(expr
);
167 if (expr
->type
== EXPR_SYMBOL
) {
173 param
= get_param_num_from_sym(expr
->symbol
);
175 snprintf(buf
, sizeof(buf
), "%s param %d", get_function(), param
);
176 return alloc_string(buf
);
179 name
= expr_to_var_sym(expr
, &sym
);
182 type
= get_type(expr
);
183 if (type
&& type
->type
== SYM_PTR
) {
184 snprintf(buf
, sizeof(buf
), "%s %s", ptr_prefix(sym
), name
);
186 return alloc_string(buf
);
190 return expr_to_var(expr
);
193 static void match_passes_function_pointer(struct expression
*expr
)
195 struct expression
*arg
, *tmp
;
204 FOR_EACH_PTR(expr
->args
, arg
) {
207 tmp
= strip_expr(arg
);
208 if (tmp
->type
== EXPR_PREOP
&& tmp
->op
== '&')
209 tmp
= strip_expr(tmp
->unop
);
211 type
= get_type(tmp
);
212 if (type
&& type
->type
== SYM_PTR
)
213 type
= get_real_base_type(type
);
214 if (!type
|| type
->type
!= SYM_FN
)
217 called_name
= expr_to_var(expr
->fn
);
220 fn_name
= get_fnptr_name(tmp
);
224 snprintf(ptr_name
, sizeof(ptr_name
), "%s param %d", called_name
, i
);
225 sql_insert_function_ptr(fn_name
, ptr_name
);
227 free_string(fn_name
);
228 free_string(called_name
);
229 } END_FOR_EACH_PTR(arg
);
233 static void match_function_assign(struct expression
*expr
)
235 struct expression
*right
;
240 if (__in_fake_assign
)
243 right
= strip_expr(expr
->right
);
244 if (right
->type
== EXPR_PREOP
&& right
->op
== '&')
245 right
= strip_expr(right
->unop
);
246 if (right
->type
!= EXPR_SYMBOL
&& right
->type
!= EXPR_DEREF
&& right
->type
!= EXPR_CALL
)
248 sym
= get_type(right
);
251 if (sym
->type
== SYM_NODE
)
252 sym
= get_real_base_type(sym
);
253 if (sym
->type
!= SYM_FN
&& sym
->type
!= SYM_PTR
&& sym
->type
!= SYM_ARRAY
)
255 if (sym
->type
== SYM_PTR
) {
256 sym
= get_real_base_type(sym
);
259 if (sym
->type
!= SYM_FN
&& sym
!= &void_ctype
)
263 fn_name
= get_fnptr_name(right
);
264 ptr_name
= get_fnptr_name(expr
->left
);
265 if (!fn_name
|| !ptr_name
)
267 if (strcmp(fn_name
, ptr_name
) == 0)
270 sql_insert_function_ptr(fn_name
, ptr_name
);
273 free_string(fn_name
);
274 free_string(ptr_name
);
277 static void match_returns_function_pointer(struct expression
*expr
)
286 type
= get_real_base_type(cur_func_sym
);
287 if (!type
|| type
->type
!= SYM_FN
)
289 type
= get_real_base_type(type
);
290 if (!type
|| type
->type
!= SYM_PTR
)
292 type
= get_real_base_type(type
);
293 if (!type
|| type
->type
!= SYM_FN
)
296 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '&')
297 expr
= strip_expr(expr
->unop
);
299 fn_name
= get_fnptr_name(expr
);
302 snprintf(ptr_name
, sizeof(ptr_name
), "r %s()", get_function());
303 sql_insert_function_ptr(fn_name
, ptr_name
);
306 void register_function_ptrs(int id
)
313 add_hook(&match_passes_function_pointer
, FUNCTION_CALL_HOOK
);
314 add_hook(&match_returns_function_pointer
, RETURN_HOOK
);
315 add_hook(&match_function_assign
, ASSIGNMENT_HOOK
);
316 add_hook(&match_function_assign
, GLOBAL_ASSIGNMENT_HOOK
);