2 * Copyright (C) 2016 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 * What we're doing here is saving all the possible values for static variables.
20 * Later on we might do globals as well.
25 #include "smatch_slist.h"
26 #include "smatch_extra.h"
29 static struct stree
*vals
;
31 static int save_rl(void *_rl
, int argc
, char **argv
, char **azColName
)
33 unsigned long *rl
= _rl
;
35 *rl
= strtoul(argv
[0], NULL
, 10);
39 static struct range_list
*select_orig(mtag_t tag
, int offset
)
41 struct range_list
*rl
= NULL
;
43 mem_sql(&save_rl
, &rl
, "select value from mtag_data where tag = %lld and offset = %d;",
48 static int is_kernel_param(const char *name
)
54 * I'm ignoring these because otherwise Smatch thinks that kernel
55 * parameters are always set to the default.
59 if (option_project
!= PROJ_KERNEL
)
62 snprintf(buf
, sizeof(buf
), "__param_%s.arg", name
);
64 FOR_EACH_SM(vals
, tmp
) {
65 if (strcmp(tmp
->name
, buf
) == 0)
67 } END_FOR_EACH_SM(tmp
);
72 static bool is_ignored_macro(struct expression
*expr
)
76 macro
= get_macro_name(expr
->pos
);
79 if (strcmp(macro
, "EXPORT_SYMBOL") == 0)
84 static bool is_head_next(struct expression
*expr
)
88 /* Smatch thinks head->next == head is always true. *sad face* */
90 if (option_project
!= PROJ_KERNEL
)
93 if (expr
->type
!= EXPR_DEREF
)
95 if (!expr
->member
|| strcmp(expr
->member
->name
, "next") != 0)
98 type
= get_type(expr
->deref
);
101 if (type
->type
== SYM_PTR
)
102 type
= get_real_base_type(type
);
103 if (type
->type
!= SYM_STRUCT
)
105 if (!type
->ident
|| strcmp(type
->ident
->name
, "list_head") != 0)
111 static bool is_ignored_tag(mtag_t tag
)
113 if (tag
== ignored_mtag
)
118 static void insert_mtag_data(mtag_t tag
, int offset
, struct range_list
*rl
)
122 if (is_ignored_tag(tag
))
125 rl
= clone_rl_permanent(rl
);
127 mem_sql(NULL
, NULL
, "delete from mtag_data where tag = %lld and offset = %d and type = %d",
128 tag
, offset
, DATA_VALUE
);
129 mem_sql(NULL
, NULL
, "insert into mtag_data values (%lld, %d, %d, '%lu');",
130 tag
, offset
, DATA_VALUE
, (unsigned long)rl
);
133 static bool invalid_type(struct symbol
*type
)
137 if (type
== &void_ctype
)
139 if (type
->type
== SYM_STRUCT
||
140 type
->type
== SYM_ARRAY
||
141 type
->type
== SYM_UNION
)
146 static bool parent_is_fresh_alloc(struct expression
*expr
)
150 sym
= expr_to_sym(expr
);
151 if (!sym
|| !sym
->ident
)
153 return is_fresh_alloc_var_sym(sym
->ident
->name
, sym
);
156 void update_mtag_data(struct expression
*expr
, struct smatch_state
*state
)
158 struct range_list
*orig
, *new;
166 if (is_ignored_macro(expr
))
168 if (is_head_next(expr
))
170 name
= expr_to_var(expr
);
171 if (is_kernel_param(name
)) {
177 if (!expr_to_mtag_offset(expr
, &tag
, &offset
))
180 type
= get_type(expr
);
181 if (offset
== 0 && invalid_type(type
))
184 if (parent_is_fresh_alloc(expr
))
187 orig
= select_orig(tag
, offset
);
188 new = rl_union(orig
, estate_rl(state
));
189 insert_mtag_data(tag
, offset
, new);
192 static void match_global_assign(struct expression
*expr
)
194 struct range_list
*rl
;
199 if (is_ignored_macro(expr
))
201 if (is_head_next(expr
->left
))
203 name
= expr_to_var(expr
->left
);
204 if (is_kernel_param(name
)) {
210 if (!expr_to_mtag_offset(expr
->left
, &tag
, &offset
))
213 get_absolute_rl(expr
->right
, &rl
);
214 insert_mtag_data(tag
, offset
, rl
);
217 static int save_mtag_data(void *_unused
, int argc
, char **argv
, char **azColName
)
219 struct range_list
*rl
;
222 sm_msg("Error saving mtag data");
228 rl
= (struct range_list
*)strtoul(argv
[3], NULL
, 10);
229 sm_msg("SQL: insert or ignore into mtag_data values ('%s', '%s', '%s', '%s');",
230 argv
[0], argv
[1], argv
[2], show_rl(rl
));
235 static void match_end_file(struct symbol_list
*sym_list
)
237 mem_sql(&save_mtag_data
, NULL
, "select * from mtag_data where type = %d;",
243 struct range_list
*rl
;
246 static int get_vals(void *_db_info
, int argc
, char **argv
, char **azColName
)
248 struct db_info
*db_info
= _db_info
;
249 struct range_list
*tmp
;
251 str_to_rl(db_info
->type
, argv
[0], &tmp
);
253 db_info
->rl
= rl_union(db_info
->rl
, tmp
);
260 struct db_cache_results
{
262 struct range_list
*rl
;
264 static struct db_cache_results cached_results
[8];
266 static int get_rl_from_mtag_offset(mtag_t tag
, int offset
, struct symbol
*type
, struct range_list
**rl
)
268 struct db_info db_info
= {};
269 mtag_t merged
= tag
| offset
;
270 struct range_list
*mem_rl
;
276 for (i
= 0; i
< ARRAY_SIZE(cached_results
); i
++) {
277 if (merged
== cached_results
[i
].tag
) {
278 if (cached_results
[i
].rl
) {
279 *rl
= cached_results
[i
].rl
;
286 mem_rl
= select_orig(tag
, offset
);
287 if (is_whole_rl(mem_rl
))
291 run_sql(get_vals
, &db_info
,
292 "select value from mtag_data where tag = %lld and offset = %d and type = %d;",
293 tag
, offset
, DATA_VALUE
);
296 db_info
.rl
= rl_union(mem_rl
, db_info
.rl
);
297 if (is_whole_rl(db_info
.rl
))
303 cached_results
[idx
].tag
= merged
;
304 cached_results
[idx
].rl
= *rl
;
305 idx
= (idx
+ 1) % ARRAY_SIZE(cached_results
);
310 static void clear_cache(struct symbol
*sym
)
312 memset(cached_results
, 0, sizeof(cached_results
));
315 int get_mtag_rl(struct expression
*expr
, struct range_list
**rl
)
321 if (is_local_variable(expr
))
323 if (!expr_to_mtag_offset(expr
, &tag
, &offset
))
325 if (offset
>= MTAG_OFFSET_MASK
)
328 type
= get_type(expr
);
329 if (invalid_type(type
))
332 return get_rl_from_mtag_offset(tag
, offset
, type
, rl
);
335 void register_mtag_data(int id
)
339 ignored_mtag
= str_to_mtag("extern boot_params");
340 add_hook(&clear_cache
, FUNC_DEF_HOOK
);
344 add_hook(&match_global_assign
, GLOBAL_ASSIGNMENT_HOOK
);
345 add_hook(&match_end_file
, END_FILE_HOOK
);