2 * Copyright (C) 2020 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
21 #include "smatch_extra.h"
22 #include "smatch_slist.h"
31 STATE(param_released
);
35 static unsigned long fn_has_alloc
;
37 struct ref_func_info
{
42 const sval_t
*implies_start
, *implies_end
;
46 static struct ref_func_info func_table
[] = {
47 { "clk_prepare", ALLOC
, 0, "$", &int_zero
, &int_zero
},
48 { "clk_prepare_enable", ALLOC
, 0, "$", &int_zero
, &int_zero
},
49 { "clk_disable_unprepare", RELEASE
, 0, "$" },
50 { "clk_unprepare", RELEASE
, 0, "$" },
52 { "alloc_etherdev_mqs", ALLOC
, -1, "$", &valid_ptr_min_sval
, &valid_ptr_max_sval
},
53 { "free_netdev", RELEASE
, 0, "$" },
56 * FIXME: A common pattern in release functions like amd76xrom_cleanup()
59 * if (window->rsrc.parent)
60 * release_resource(&window->rsrc);
62 * Which is slightly tricky to know how to merge the states so let's
63 * hold off checking request_resource() for now.
65 * { "request_resource", ALLOC, 1, "$", &int_zero, &int_zero },
66 * { "release_resource", RELEASE, 0, "$" },
70 { "pci_request_regions", ALLOC
, 0, "$", &int_zero
, &int_zero
},
71 { "pci_release_regions", RELEASE
, 0, "$" },
73 { "request_free_mem_region", ALLOC
, -1, "$->start", &valid_ptr_min_sval
, &valid_ptr_max_sval
},
74 { "__request_region", ALLOC
, 1, "$", &valid_ptr_min_sval
, &valid_ptr_max_sval
},
75 { "release_and_free_resource", RELEASE
, 0, "$->start" },
76 { "release_resource", RELEASE
, 0, "$->start" },
77 { "__release_region", RELEASE
, 1, "$" },
79 { "ioremap", ALLOC
, -1, "$", &valid_ptr_min_sval
, &valid_ptr_max_sval
},
80 { "of_iomap", ALLOC
, -1, "$", &valid_ptr_min_sval
, &valid_ptr_max_sval
},
81 { "ioremap_encrypted", ALLOC
, -1, "$", &valid_ptr_min_sval
, &valid_ptr_max_sval
},
82 { "iounmap", RELEASE
, 0, "$" },
84 { "request_threaded_irq", ALLOC
, 0, "$", &int_zero
, &int_zero
},
85 { "request_irq", ALLOC
, 0, "$", &int_zero
, &int_zero
},
86 { "free_irq", RELEASE
, 0, "$" },
87 { "pci_request_irq", ALLOC
, 1, "$", &int_zero
, &int_zero
},
88 { "pci_free_irq", RELEASE
, 1, "$" },
90 { "register_netdev", ALLOC
, 0, "$", &int_zero
, &int_zero
},
91 { "unregister_netdev", RELEASE
, 0, "$" },
93 { "misc_register", ALLOC
, 0, "$", &int_zero
, &int_zero
},
94 { "misc_deregister", RELEASE
, 0, "$" },
96 { "ieee80211_alloc_hw", ALLOC
, -1, "$", &valid_ptr_min_sval
, &valid_ptr_max_sval
},
97 { "ieee80211_free_hw", RELEASE
, 0, "$" },
100 static struct smatch_state
*unmatched_state(struct sm_state
*sm
)
102 struct smatch_state
*state
;
104 if (sm
->state
!= ¶m_released
)
107 if (is_impossible_path())
108 return ¶m_released
;
110 state
= get_state(SMATCH_EXTRA
, sm
->name
, sm
->sym
);
113 if (!estate_rl(state
) || is_err_or_null(estate_rl(state
)))
114 return ¶m_released
;
115 if (parent_is_err_or_null_var_sym(sm
->name
, sm
->sym
))
116 return ¶m_released
;
118 if (estate_min(state
).value
== 0 &&
119 estate_max(state
).value
== 0)
120 return ¶m_released
;
121 if (estate_type(state
) == &int_ctype
&&
122 sval_is_negative(estate_min(state
)) &&
123 (estate_max(state
).value
== -1 || estate_max(state
).value
== 0))
124 return ¶m_released
;
129 static void pre_merge_hook(struct sm_state
*cur
, struct sm_state
*other
)
131 if (cur
->state
== ¶m_released
)
133 if (is_impossible_path())
134 set_state(my_id
, cur
->name
, cur
->sym
, &undefined
);
137 static bool is_param_var_sym(const char *name
, struct symbol
*sym
)
141 return get_param_key_from_var_sym(name
, sym
, NULL
, &key
) >= 0;
144 static bool mark_same_name_as_undefined(const char *name
)
154 FOR_EACH_MY_SM(my_id
, __get_cur_stree(), sm
) {
155 if (strncmp(sm
->name
, name
, len
) != 0)
157 if (sm
->name
[len
] != ':')
159 set_state(sm
->owner
, sm
->name
, sm
->sym
, &unknown
);
161 } END_FOR_EACH_SM(sm
);
166 static void mark_partial_matches_as_undefined(const char *key
)
169 int start_pos
, state_len
, key_len
;
172 while ((p
= strchr(key
, '-'))) {
177 key_len
= strlen(key
);
179 FOR_EACH_MY_SM(my_id
, __get_cur_stree(), sm
) {
180 state_len
= strlen(sm
->name
);
181 if (state_len
< key_len
)
184 start_pos
= state_len
- key_len
;
185 if ((start_pos
== 0 || !isalnum(sm
->name
[start_pos
- 1])) &&
186 strcmp(sm
->name
+ start_pos
, key
) == 0)
187 update_ssa_state(my_id
, sm
->name
, sm
->sym
, &unknown
);
189 } END_FOR_EACH_SM(sm
);
192 static void mark_matches_as_undefined(const char *name
)
194 if (mark_same_name_as_undefined(name
))
196 mark_partial_matches_as_undefined(name
);
199 static bool is_alloc_primitive(struct expression
*expr
)
203 while (expr
->type
== EXPR_ASSIGNMENT
)
204 expr
= strip_expr(expr
->right
);
205 if (expr
->type
!= EXPR_CALL
)
208 if (expr
->fn
->type
!= EXPR_SYMBOL
)
211 for (i
= 0; i
< ARRAY_SIZE(func_table
); i
++) {
212 if (sym_name_is(func_table
[i
].name
, expr
->fn
))
219 static void return_param_alloc(struct expression
*expr
, const char *name
, struct symbol
*sym
, void *data
)
221 struct smatch_state
*state
;
226 if (strncmp(name
, "__fake_", 7) == 0)
229 if (sym
->ctype
.modifiers
& (MOD_NONLOCAL
| MOD_STATIC
| MOD_ADDRESSABLE
))
232 while (expr
->type
== EXPR_ASSIGNMENT
)
233 expr
= strip_expr(expr
->right
);
234 if (expr
->type
!= EXPR_CALL
)
236 fn_name
= expr_to_var(expr
->fn
);
240 state
= alloc_state_str(fn_name
);
241 state
->data
= &alloc
;
243 set_ssa_state(my_id
, name
, sym
, state
);
246 static void return_param_release(struct expression
*expr
, const char *name
, struct symbol
*sym
, void *data
)
248 struct sm_state
*start_sm
;
250 /* The !data means this comes from the DB (not hard coded). */
251 if (!data
&& is_alloc_primitive(expr
))
254 start_sm
= get_ssa_sm_state(my_id
, name
, sym
);
256 update_ssa_sm(my_id
, start_sm
, &release
);
259 mark_matches_as_undefined(name
);
262 if (is_param_var_sym(name
, sym
))
263 set_state(info_id
, name
, sym
, ¶m_released
);
267 static void return_param_ignore(struct expression
*expr
, const char *name
, struct symbol
*sym
, void *data
)
269 struct sm_state
*start_sm
;
271 start_sm
= get_ssa_sm_state(my_id
, name
, sym
);
274 update_ssa_sm(my_id
, start_sm
, &ignore
);
277 static void match_sm_assign(struct sm_state
*sm
, struct expression
*mod_expr
)
282 if (!mod_expr
|| mod_expr
->type
!= EXPR_ASSIGNMENT
)
285 left
= expr_to_str(mod_expr
->left
);
286 if (!left
|| strchr(left
, '['))
291 set_state(my_id
, sm
->name
, sm
->sym
, &ignore
);
294 static void unwind_return_info_callback(int return_id
, char *return_ranges
,
295 struct expression
*returned_expr
,
297 const char *printed_name
,
302 if (sm
->state
!= ¶m_released
)
304 if (is_impossible_path())
307 sql_insert_return_states(return_id
, return_ranges
, RELEASE
,
308 param
, printed_name
, "");
311 static const char *get_alloc_fn(struct sm_state
*sm
)
313 struct sm_state
*tmp
;
315 if (slist_has_state(sm
->possible
, &unknown
))
318 if (sm
->state
->data
== &alloc
)
319 return sm
->state
->name
;
321 FOR_EACH_PTR(sm
->possible
, tmp
) {
322 if (tmp
->state
->data
== &alloc
)
323 return tmp
->state
->name
;
324 } END_FOR_EACH_PTR(tmp
);
329 static void check_balance(const char *name
, struct symbol
*sym
)
331 struct range_list
*inc_lines
= NULL
;
332 int inc_buckets
[RET_UNKNOWN
+ 1] = {};
333 struct stree
*stree
, *orig_stree
;
334 struct smatch_state
*state
;
335 struct sm_state
*return_sm
;
337 sval_t line
= sval_type_val(&int_ctype
, 0);
338 const char *tmp_name
, *fn_name
= NULL
;
341 FOR_EACH_PTR(get_all_return_strees(), stree
) {
342 orig_stree
= __swap_cur_stree(stree
);
344 if (is_impossible_path())
348 if (has_devm_cleanup())
351 return_sm
= get_sm_state(RETURN_ID
, "return_ranges", NULL
);
354 line
.value
= return_sm
->line
;
356 sm
= get_sm_state(my_id
, name
, sym
);
361 if (state
== ¶m_released
)
364 tmp_name
= get_alloc_fn(sm
);
370 if (state
!= &alloc
&&
374 bucket
= success_fail_return(estate_rl(return_sm
->state
));
375 if (bucket
!= RET_FAIL
)
378 if (state
== &alloc
) {
379 add_range(&inc_lines
, line
, line
);
380 inc_buckets
[bucket
] = true;
383 __swap_cur_stree(orig_stree
);
384 } END_FOR_EACH_PTR(stree
);
386 if (inc_buckets
[RET_FAIL
])
392 sm_warning("'%s' from %s() not released on lines: %s.", ssa_name(name
), fn_name
, show_rl(inc_lines
));
395 static void match_check_balanced(struct symbol
*sym
)
399 FOR_EACH_MY_SM(my_id
, get_all_return_states(), sm
) {
400 check_balance(sm
->name
, sm
->sym
);
401 } END_FOR_EACH_SM(sm
);
404 void check_unwind(int id
)
406 struct ref_func_info
*info
;
411 if (option_project
!= PROJ_KERNEL
)
414 set_dynamic_states(my_id
);
415 add_pre_merge_hook(my_id
, &pre_merge_hook
);
417 for (i
= 0; i
< ARRAY_SIZE(func_table
); i
++) {
418 param_key_hook
*hook
;
420 info
= &func_table
[i
];
421 if (info
->type
== ALLOC
)
422 hook
= &return_param_alloc
;
423 else if (info
->type
== RELEASE
)
424 hook
= &return_param_release
;
425 else if (info
->type
== IGNORE
)
426 hook
= &return_param_ignore
;
430 if (info
->call_back
) {
431 add_function_hook(info
->name
, info
->call_back
, info
);
432 } else if (info
->implies_start
&& info
->type
== ALLOC
) {
433 return_implies_param_key_exact(info
->name
,
434 *info
->implies_start
,
436 hook
, info
->param
, info
->key
, info
);
437 } else if (info
->implies_start
) {
438 return_implies_param_key(info
->name
,
439 *info
->implies_start
,
441 hook
, info
->param
, info
->key
, info
);
443 add_function_param_key_hook(info
->name
,
444 hook
, info
->param
, info
->key
, info
);
448 add_ssa_state_assigned_hook(my_id
, match_sm_assign
);
450 add_function_data(&fn_has_alloc
);
452 select_return_param_key(RELEASE
, &return_param_release
);
453 add_hook(&match_check_balanced
, END_FUNC_HOOK
);
456 void check_unwind_info(int id
)
460 add_unmatched_state_hook(info_id
, &unmatched_state
);
461 add_return_info_callback(info_id
, unwind_return_info_callback
);