2 * Copyright (C) 2014 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 * This file started out by saying that if you have:
21 * struct foo one, two;
25 * That's equivalent to saying:
30 * Turning an assignment like that into a bunch of small fake assignments is
33 * The call to memcpy(&one, &two, sizeof(foo)); is the same as "one = two;" so
34 * we can re-use the code. And we may as well use it for memset() too.
35 * Assigning pointers is almost the same:
44 * The problem is that you can go a bit crazy with pointers to pointers.
46 * p1->x->y->z->one->two->three = p2->x->y->z->one->two->three;
48 * I don't have a proper solution for this problem right now. I just copy one
49 * level and don't nest. It should handle limitted nesting but intelligently.
51 * The other thing is that you end up with a lot of garbage assignments where
52 * we record "x could be anything. x->y could be anything. x->y->z->a->b->c
53 * could *also* be anything!". There should be a better way to filter this
54 * useless information.
60 #include "smatch_slist.h"
61 #include "smatch_extra.h"
69 static struct symbol
*get_struct_type(struct expression
*expr
)
73 type
= get_type(expr
);
76 if (type
->type
== SYM_PTR
)
77 type
= get_real_base_type(type
);
78 if (type
&& type
->type
== SYM_STRUCT
)
83 static struct expression
*get_right_base_expr(struct symbol
*left_type
, struct expression
*right
)
85 struct symbol
*struct_type
;
90 struct_type
= get_struct_type(right
);
93 if (struct_type
!= left_type
)
96 if (right
->type
== EXPR_PREOP
&& right
->op
== '&')
97 right
= strip_expr(right
->unop
);
99 if (right
->type
== EXPR_CALL
)
102 if (is_pointer(right
))
103 right
= deref_expression(right
);
108 static struct expression
*remove_addr(struct expression
*expr
)
112 expr
= strip_expr(expr
);
116 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '&')
117 return strip_expr(expr
->unop
);
118 type
= get_type(expr
);
121 if (type
->type
!= SYM_PTR
&& type
->type
!= SYM_ARRAY
)
124 return deref_expression(expr
);
127 static struct expression
*faked_expression
;
128 struct expression
*get_faked_expression(void)
130 if (!__in_fake_assign
)
132 return faked_expression
;
135 static void split_fake_expr(struct expression
*expr
)
138 __in_fake_struct_assign
++;
140 __in_fake_struct_assign
--;
144 static void handle_non_struct_assignments(struct expression
*left
, struct expression
*right
)
147 struct expression
*assign
;
149 type
= get_type(left
);
152 if (type
->type
== SYM_PTR
) {
153 left
= deref_expression(left
);
155 right
= deref_expression(right
);
157 right
= unknown_value_expression(left
);
158 assign
= assign_expression(left
, '=', right
);
159 split_fake_expr(assign
);
162 if (type
->type
!= SYM_BASETYPE
)
164 right
= strip_expr(right
);
166 right
= unknown_value_expression(left
);
167 assign
= assign_expression(left
, '=', right
);
168 split_fake_expr(assign
);
171 static void set_inner_struct_members(int mode
, struct expression
*faked
, struct expression
*left
, struct expression
*right
, struct symbol
*member
)
173 struct expression
*left_member
;
174 struct expression
*right_member
= NULL
; /* silence GCC */
175 struct expression
*assign
;
176 struct symbol
*base
= get_real_base_type(member
);
180 left
= member_expression(left
, '.', member
->ident
);
181 if (mode
!= COPY_MEMSET
&& right
)
182 right
= member_expression(right
, '.', member
->ident
);
185 FOR_EACH_PTR(base
->symbol_list
, tmp
) {
188 type
= get_real_base_type(tmp
);
192 if (type
->type
== SYM_ARRAY
)
194 if (type
->type
== SYM_UNION
|| type
->type
== SYM_STRUCT
) {
195 set_inner_struct_members(mode
, faked
, left
, right
, tmp
);
201 left_member
= member_expression(left
, '.', tmp
->ident
);
207 right_member
= member_expression(right
, '.', tmp
->ident
);
209 right_member
= unknown_value_expression(left_member
);
212 right_member
= right
;
216 assign
= assign_expression(left_member
, '=', right_member
);
217 split_fake_expr(assign
);
218 } END_FOR_EACH_PTR(tmp
);
221 static void __struct_members_copy(int mode
, struct expression
*faked
,
222 struct expression
*left
,
223 struct expression
*right
)
225 struct symbol
*struct_type
, *tmp
, *type
;
226 struct expression
*left_member
;
227 struct expression
*right_member
;
228 struct expression
*assign
;
232 if (__in_fake_assign
)
234 faked_expression
= faked
;
236 left
= strip_expr(left
);
237 right
= strip_expr(right
);
239 struct_type
= get_struct_type(left
);
242 * This is not a struct assignment obviously. But this is where
243 * memcpy() is handled so it feels like a good place to add this
246 handle_non_struct_assignments(left
, right
);
250 if (is_pointer(left
)) {
251 left
= deref_expression(left
);
254 if (mode
!= COPY_MEMSET
)
255 right
= get_right_base_expr(struct_type
, right
);
257 FOR_EACH_PTR(struct_type
->symbol_list
, tmp
) {
258 type
= get_real_base_type(tmp
);
261 if (type
->type
== SYM_ARRAY
)
264 if (type
->type
== SYM_UNION
|| type
->type
== SYM_STRUCT
) {
265 set_inner_struct_members(mode
, faked
, left
, right
, tmp
);
272 left_member
= member_expression(left
, op
, tmp
->ident
);
279 right_member
= member_expression(right
, op
, tmp
->ident
);
281 right_member
= unknown_value_expression(left_member
);
284 right_member
= right
;
288 sm_msg("internal. No right member");
291 assign
= assign_expression(left_member
, '=', right_member
);
292 split_fake_expr(assign
);
293 } END_FOR_EACH_PTR(tmp
);
296 faked_expression
= NULL
;
299 static int returns_zeroed_mem(struct expression
*expr
)
303 if (expr
->type
!= EXPR_CALL
|| expr
->fn
->type
!= EXPR_SYMBOL
)
305 fn
= expr_to_var(expr
->fn
);
308 if (strcmp(fn
, "kcalloc") == 0)
310 if (option_project
== PROJ_KERNEL
&& strstr(fn
, "zalloc"))
315 static int copy_containter_states(struct expression
*left
, struct expression
*right
, int offset
)
317 char *left_name
= NULL
, *right_name
= NULL
;
318 struct symbol
*left_sym
, *right_sym
;
319 struct sm_state
*sm
, *new_sm
;
325 right_name
= expr_to_var_sym(right
, &right_sym
);
326 if (!right_name
|| !right_sym
)
328 left_name
= expr_to_var_sym(left
, &left_sym
);
329 if (!left_name
|| !left_sym
)
332 len
= snprintf(buf
, sizeof(buf
), "%s(-%d)", right_name
, offset
);
333 if (len
>= sizeof(buf
))
336 FOR_EACH_SM(__get_cur_stree(), sm
) {
337 if (sm
->sym
!= right_sym
)
339 if (strncmp(sm
->name
, buf
, len
) != 0)
341 snprintf(new_name
, sizeof(new_name
), "%s%s", left_name
, sm
->name
+ len
);
342 new_sm
= clone_sm(sm
);
343 new_sm
->name
= alloc_sname(new_name
);
344 new_sm
->sym
= left_sym
;
347 } END_FOR_EACH_SM(sm
);
349 free_string(left_name
);
350 free_string(right_name
);
354 static int handle_param_offsets(struct expression
*expr
)
356 struct expression
*right
;
359 right
= strip_expr(expr
->right
);
361 if (right
->type
!= EXPR_BINOP
|| right
->op
!= '-')
364 if (!get_value(right
->right
, &sval
))
367 right
= get_assigned_expr(right
->left
);
370 return copy_containter_states(expr
->left
, right
, sval
.value
);
373 static void returns_container_of(struct expression
*expr
, int param
, char *key
, char *value
)
375 struct expression
*call
, *arg
;
378 if (expr
->type
!= EXPR_ASSIGNMENT
|| expr
->op
!= '=')
380 call
= strip_expr(expr
->right
);
381 if (call
->type
!= EXPR_CALL
)
386 offset
= atoi(value
);
388 arg
= get_argument_from_call_expr(call
->args
, param
);
392 copy_containter_states(expr
->left
, arg
, -offset
);
395 void __fake_struct_member_assignments(struct expression
*expr
)
397 struct symbol
*left_type
;
402 if (is_zero(expr
->right
))
405 left_type
= get_type(expr
->left
);
407 (left_type
->type
!= SYM_PTR
&&
408 left_type
->type
!= SYM_STRUCT
))
411 if (handle_param_offsets(expr
))
414 if (returns_zeroed_mem(expr
->right
))
415 __struct_members_copy(COPY_MEMSET
, expr
, expr
->left
, zero_expr());
417 __struct_members_copy(COPY_NORMAL
, expr
, expr
->left
, expr
->right
);
420 static void match_memset(const char *fn
, struct expression
*expr
, void *_size_arg
)
422 struct expression
*buf
;
423 struct expression
*val
;
425 buf
= get_argument_from_call_expr(expr
->args
, 0);
426 val
= get_argument_from_call_expr(expr
->args
, 1);
428 buf
= strip_expr(buf
);
429 __struct_members_copy(COPY_MEMSET
, expr
, remove_addr(buf
), val
);
432 static void match_memcpy(const char *fn
, struct expression
*expr
, void *_arg
)
434 struct expression
*dest
;
435 struct expression
*src
;
437 dest
= get_argument_from_call_expr(expr
->args
, 0);
438 src
= get_argument_from_call_expr(expr
->args
, 1);
440 __struct_members_copy(COPY_MEMCPY
, expr
, remove_addr(dest
), remove_addr(src
));
443 static void match_memcpy_unknown(const char *fn
, struct expression
*expr
, void *_arg
)
445 struct expression
*dest
;
447 dest
= get_argument_from_call_expr(expr
->args
, 0);
448 __struct_members_copy(COPY_MEMCPY
, expr
, remove_addr(dest
), NULL
);
451 static void match_sscanf(const char *fn
, struct expression
*expr
, void *unused
)
453 struct expression
*arg
;
457 FOR_EACH_PTR(expr
->args
, arg
) {
460 __struct_members_copy(COPY_MEMCPY
, expr
, remove_addr(arg
), NULL
);
461 } END_FOR_EACH_PTR(arg
);
464 static void unop_expr(struct expression
*expr
)
466 if (expr
->op
!= SPECIAL_INCREMENT
&&
467 expr
->op
!= SPECIAL_DECREMENT
)
470 if (!is_pointer(expr
))
472 faked_expression
= expr
;
473 __struct_members_copy(COPY_MEMCPY
, expr
, expr
->unop
, NULL
);
474 faked_expression
= NULL
;
477 static void register_clears_param(void)
481 const char *function
;
484 if (option_project
== PROJ_NONE
)
487 snprintf(name
, 256, "%s.clears_argument", option_project_str
);
489 token
= get_tokens_file(name
);
492 if (token_type(token
) != TOKEN_STREAMBEGIN
)
495 while (token_type(token
) != TOKEN_STREAMEND
) {
496 if (token_type(token
) != TOKEN_IDENT
)
498 function
= show_ident(token
->ident
);
500 if (token_type(token
) != TOKEN_NUMBER
)
502 param
= atoi(token
->number
);
503 add_function_hook(function
, &match_memcpy_unknown
, INT_PTR(param
));
509 static void db_param_cleared(struct expression
*expr
, int param
, char *key
, char *value
)
511 struct expression
*arg
;
513 while (expr
->type
== EXPR_ASSIGNMENT
)
514 expr
= strip_expr(expr
->right
);
515 if (expr
->type
!= EXPR_CALL
)
519 * FIXME: __struct_members_copy() requires an expression but
520 * get_variable_from_key() returns a name/sym pair so that doesn't
523 if (strcmp(key
, "$") != 0)
526 arg
= get_argument_from_call_expr(expr
->args
, param
);
530 if (strcmp(value
, "0") == 0)
531 __struct_members_copy(COPY_MEMSET
, expr
, remove_addr(arg
), zero_expr());
533 __struct_members_copy(COPY_MEMCPY
, expr
, remove_addr(arg
), NULL
);
536 void register_struct_assignment(int id
)
538 add_function_hook("memset", &match_memset
, NULL
);
539 add_function_hook("__memset", &match_memset
, NULL
);
541 add_function_hook("memcpy", &match_memcpy
, INT_PTR(0));
542 add_function_hook("memmove", &match_memcpy
, INT_PTR(0));
543 add_function_hook("__memcpy", &match_memcpy
, INT_PTR(0));
544 add_function_hook("__memmove", &match_memcpy
, INT_PTR(0));
546 add_function_hook("sscanf", &match_sscanf
, NULL
);
548 add_hook(&unop_expr
, OP_HOOK
);
549 register_clears_param();
550 select_return_states_hook(PARAM_CLEARED
, &db_param_cleared
);
552 select_return_states_hook(CONTAINER
, &returns_container_of
);