buf_size: allow strncmp("foo", bar, 100) where 100 is larger than "foo"
[smatch.git] / smatch_struct_assignment.c
blob14c578feaef38297747e07438acf395b3d1e0d30
1 /*
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;
22 * ...
23 * one = two;
25 * That's equivalent to saying:
27 * one.x = two.x;
28 * one.y = two.y;
30 * Turning an assignment like that into a bunch of small fake assignments is
31 * really useful.
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:
37 * p1 = p2;
39 * Is the same as:
41 * p1->x = p2->x;
42 * p1->y = p2->y;
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.
58 #include "scope.h"
59 #include "smatch.h"
60 #include "smatch_slist.h"
61 #include "smatch_extra.h"
63 static struct symbol *get_struct_type(struct expression *expr)
65 struct symbol *type;
67 type = get_type(expr);
68 if (!type)
69 return NULL;
70 if (type->type == SYM_PTR)
71 type = get_real_base_type(type);
72 if (type && type->type == SYM_STRUCT)
73 return type;
74 return NULL;
77 static struct expression *get_matching_member_expr(struct symbol *left_type, struct expression *right, struct symbol *left_member)
79 struct symbol *struct_type;
80 int op = '.';
82 if (!left_member->ident)
83 return NULL;
85 struct_type = get_struct_type(right);
86 if (!struct_type)
87 return NULL;
88 if (struct_type != left_type)
89 return NULL;
91 if (right->type == EXPR_PREOP && right->op == '&')
92 right = strip_expr(right->unop);
94 if (is_pointer(right)) {
95 right = deref_expression(right);
96 op = '*';
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;
108 int op = '.';
111 if (__in_fake_assign)
112 return;
114 left = strip_expr(left);
115 right = strip_expr(right);
117 struct_type = get_struct_type(left);
118 if (!struct_type)
119 return;
121 if (is_pointer(left)) {
122 left = deref_expression(left);
123 op = '*';
126 FOR_EACH_PTR(struct_type->symbol_list, tmp) {
127 type = get_real_base_type(tmp);
128 if (type && type->type == SYM_ARRAY)
129 continue;
131 left_member = member_expression(left, op, tmp->ident);
133 switch (mode) {
134 case COPY_NORMAL:
135 case COPY_MEMCPY:
136 right_member = get_matching_member_expr(struct_type, right, tmp);
137 break;
138 case COPY_MEMSET:
139 right_member = right;
140 break;
142 if (!right_member)
143 right_member = unknown_value_expression(left_member);
144 assign = assign_expression(left_member, right_member);
145 __in_fake_assign++;
146 __split_expr(assign);
147 __in_fake_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);
162 return expr;
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)
198 struct token *token;
199 char name[256];
200 const char *function;
201 int param;
203 if (option_project == PROJ_NONE)
204 return;
206 snprintf(name, 256, "%s.clears_argument", option_project_str);
208 token = get_tokens_file(name);
209 if (!token)
210 return;
211 if (token_type(token) != TOKEN_STREAMBEGIN)
212 return;
213 token = token->next;
214 while (token_type(token) != TOKEN_STREAMEND) {
215 if (token_type(token) != TOKEN_IDENT)
216 return;
217 function = show_ident(token->ident);
218 token = token->next;
219 if (token_type(token) != TOKEN_NUMBER)
220 return;
221 param = atoi(token->number);
222 add_function_hook(function, &match_memcpy_unknown, INT_PTR(param));
223 token = token->next;
225 clear_token_alloc();
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();