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"
63 static struct symbol
*get_struct_type(struct expression
*expr
)
67 type
= get_type(expr
);
70 if (type
->type
== SYM_PTR
)
71 type
= get_real_base_type(type
);
72 if (type
&& type
->type
== SYM_STRUCT
)
77 static struct expression
*get_matching_member_expr(struct symbol
*left_type
, struct expression
*right
, struct symbol
*left_member
)
79 struct symbol
*struct_type
;
82 if (!left_member
->ident
)
85 struct_type
= get_struct_type(right
);
88 if (struct_type
!= left_type
)
91 if (right
->type
== EXPR_PREOP
&& right
->op
== '&')
92 right
= strip_expr(right
->unop
);
94 if (is_pointer(right
)) {
95 right
= deref_expression(right
);
99 return member_expression(right
, op
, left_member
->ident
);
102 void __struct_members_copy(int mode
, struct expression
*left
, struct expression
*right
)
104 struct symbol
*struct_type
, *tmp
, *type
;
105 struct expression
*left_member
;
106 struct expression
*right_member
= NULL
;
107 struct expression
*assign
;
111 if (__in_fake_assign
)
114 left
= strip_expr(left
);
115 right
= strip_expr(right
);
117 struct_type
= get_struct_type(left
);
121 if (is_pointer(left
)) {
122 left
= deref_expression(left
);
126 FOR_EACH_PTR(struct_type
->symbol_list
, tmp
) {
127 type
= get_real_base_type(tmp
);
128 if (type
&& type
->type
== SYM_ARRAY
)
131 left_member
= member_expression(left
, op
, tmp
->ident
);
136 right_member
= get_matching_member_expr(struct_type
, right
, tmp
);
139 right_member
= right
;
143 right_member
= unknown_value_expression(left_member
);
144 assign
= assign_expression(left_member
, right_member
);
146 __split_expr(assign
);
148 } END_FOR_EACH_PTR(tmp
);
151 void __fake_struct_member_assignments(struct expression
*expr
)
153 __struct_members_copy(COPY_NORMAL
, expr
->left
, expr
->right
);
156 static struct expression
*remove_addr(struct expression
*expr
)
158 expr
= strip_expr(expr
);
160 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '&')
161 return strip_expr(expr
->unop
);
165 static void match_memset(const char *fn
, struct expression
*expr
, void *_size_arg
)
167 struct expression
*buf
;
168 struct expression
*val
;
170 buf
= get_argument_from_call_expr(expr
->args
, 0);
171 val
= get_argument_from_call_expr(expr
->args
, 1);
173 buf
= strip_expr(buf
);
174 __struct_members_copy(COPY_MEMSET
, remove_addr(buf
), val
);
177 static void match_memcpy(const char *fn
, struct expression
*expr
, void *_arg
)
179 struct expression
*dest
;
180 struct expression
*src
;
182 dest
= get_argument_from_call_expr(expr
->args
, 0);
183 src
= get_argument_from_call_expr(expr
->args
, 1);
185 __struct_members_copy(COPY_MEMCPY
, remove_addr(dest
), remove_addr(src
));
188 static void match_memcpy_unknown(const char *fn
, struct expression
*expr
, void *_arg
)
190 struct expression
*dest
;
192 dest
= get_argument_from_call_expr(expr
->args
, 0);
193 __struct_members_copy(COPY_MEMCPY
, remove_addr(dest
), NULL
);
196 static void register_clears_param(void)
200 const char *function
;
203 if (option_project
== PROJ_NONE
)
206 snprintf(name
, 256, "%s.clears_argument", option_project_str
);
208 token
= get_tokens_file(name
);
211 if (token_type(token
) != TOKEN_STREAMBEGIN
)
214 while (token_type(token
) != TOKEN_STREAMEND
) {
215 if (token_type(token
) != TOKEN_IDENT
)
217 function
= show_ident(token
->ident
);
219 if (token_type(token
) != TOKEN_NUMBER
)
221 param
= atoi(token
->number
);
222 add_function_hook(function
, &match_memcpy_unknown
, INT_PTR(param
));
228 void register_struct_assignment(int id
)
230 add_function_hook("memset", &match_memset
, NULL
);
232 add_function_hook("memcpy", &match_memcpy
, INT_PTR(0));
233 add_function_hook("memmove", &match_memcpy
, INT_PTR(0));
235 register_clears_param();