2 * Copyright (C) 2010 Dan Carpenter.
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
22 #include "smatch_slist.h"
23 #include "smatch_extra.h"
24 #include "smatch_function_hashtable.h"
26 #define UNKNOWN_SIZE -1
28 static int my_size_id
;
30 static DEFINE_HASHTABLE_INSERT(insert_func
, char, int);
31 static DEFINE_HASHTABLE_SEARCH(search_func
, char, int);
32 static struct hashtable
*allocation_funcs
;
34 static char *get_fn_name(struct expression
*expr
)
36 if (expr
->type
!= EXPR_CALL
)
38 if (expr
->fn
->type
!= EXPR_SYMBOL
)
40 return expr_to_var(expr
->fn
);
43 static int is_allocation_function(struct expression
*expr
)
48 func
= get_fn_name(expr
);
51 if (search_func(allocation_funcs
, func
))
57 static void add_allocation_function(const char *func
, void *call_back
, int param
)
59 insert_func(allocation_funcs
, (char *)func
, (int *)1);
60 add_function_assign_hook(func
, call_back
, INT_PTR(param
));
63 static struct smatch_state
*size_to_estate(int size
)
67 sval
.type
= &int_ctype
;
70 return alloc_estate_sval(sval
);
73 static struct range_list
*size_to_rl(int size
)
77 sval
.type
= &int_ctype
;
80 return alloc_rl(sval
, sval
);
83 static struct smatch_state
*unmatched_size_state(struct sm_state
*sm
)
85 return size_to_estate(UNKNOWN_SIZE
);
88 static void set_size_undefined(struct sm_state
*sm
, struct expression
*mod_expr
)
90 set_state(sm
->owner
, sm
->name
, sm
->sym
, size_to_estate(UNKNOWN_SIZE
));
93 static struct smatch_state
*merge_size_func(struct smatch_state
*s1
, struct smatch_state
*s2
)
95 return merge_estates(s1
, s2
);
98 void set_param_buf_size(const char *name
, struct symbol
*sym
, char *key
, char *value
)
100 struct range_list
*rl
= NULL
;
101 struct smatch_state
*state
;
104 if (strncmp(key
, "$", 1) != 0)
107 snprintf(fullname
, 256, "%s%s", name
, key
+ 1);
109 str_to_rl(&int_ctype
, value
, &rl
);
110 if (!rl
|| is_whole_rl(rl
))
112 state
= alloc_estate_rl(rl
);
113 set_state(my_size_id
, fullname
, sym
, state
);
116 static int bytes_per_element(struct expression
*expr
)
122 if (expr
->type
== EXPR_STRING
)
123 return expr
->wide
+ 1;
124 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '&') {
125 type
= get_type(expr
->unop
);
126 if (type
&& type
->type
== SYM_ARRAY
)
129 type
= get_type(expr
);
133 if (type
->type
!= SYM_PTR
&& type
->type
!= SYM_ARRAY
)
136 type
= get_base_type(type
);
137 return type_bytes(type
);
140 int bytes_to_elements(struct expression
*expr
, int bytes
)
144 bpe
= bytes_per_element(expr
);
150 static int elements_to_bytes(struct expression
*expr
, int elements
)
154 bpe
= bytes_per_element(expr
);
155 return elements
* bpe
;
158 static int get_initializer_size(struct expression
*expr
)
160 switch (expr
->type
) {
162 return expr
->string
->length
* (expr
->wide
+ 1);
163 case EXPR_INITIALIZER
: {
164 struct expression
*tmp
;
167 FOR_EACH_PTR(expr
->expr_list
, tmp
) {
168 if (tmp
->type
== EXPR_INDEX
) {
169 if (tmp
->idx_to
>= i
)
176 } END_FOR_EACH_PTR(tmp
);
180 return get_array_size(expr
);
185 static struct range_list
*db_size_rl
;
186 static int db_size_callback(void *unused
, int argc
, char **argv
, char **azColName
)
188 struct range_list
*tmp
= NULL
;
191 str_to_rl(&int_ctype
, argv
[0], &db_size_rl
);
193 str_to_rl(&int_ctype
, argv
[0], &tmp
);
194 db_size_rl
= rl_union(db_size_rl
, tmp
);
199 static struct expression
*cached_type_expr
, *cached_sym_expr
;
200 static struct range_list
*cached_type_rl
, *cached_sym_rl
;
202 static void match_clear_cache(struct symbol
*sym
)
204 cached_type_expr
= NULL
;
205 cached_type_rl
= NULL
;
206 cached_sym_expr
= NULL
;
207 cached_sym_rl
= NULL
;
210 static char *get_stored_buffer_name(struct expression
*buffer
, bool *add_static
)
212 struct expression
*array
;
218 name
= get_member_name(buffer
);
222 if (is_static(buffer
)) {
223 name
= expr_to_var(buffer
);
230 array
= get_array_base(buffer
);
232 name
= get_member_name(array
);
235 snprintf(buf
, sizeof(buf
), "%s[]", name
);
237 return alloc_string(buf
);
243 static struct range_list
*size_from_db_type(struct expression
*expr
)
248 name
= get_stored_buffer_name(expr
, &this_file_only
);
252 if (expr
== cached_type_expr
)
253 return clone_rl(cached_type_rl
);
254 cached_type_expr
= expr
;
255 cached_type_rl
= NULL
;
257 if (this_file_only
) {
259 run_sql(db_size_callback
, NULL
,
260 "select size from function_type_size where type = '%s' and file = %d;",
261 name
, get_file_id());
262 cached_type_rl
= clone_rl(db_size_rl
);
267 run_sql(db_size_callback
, NULL
,
268 "select size from type_size where type = '%s';",
270 cached_type_rl
= clone_rl(db_size_rl
);
274 static struct range_list
*size_from_db_symbol(struct expression
*expr
)
278 if (expr
->type
!= EXPR_SYMBOL
)
281 if (!sym
|| !sym
->ident
||
282 !(sym
->ctype
.modifiers
& MOD_TOPLEVEL
) ||
283 sym
->ctype
.modifiers
& MOD_STATIC
)
286 if (expr
== cached_sym_expr
)
287 return clone_rl(cached_sym_rl
);
288 cached_sym_expr
= expr
;
289 cached_sym_rl
= NULL
;
292 run_sql(db_size_callback
, NULL
,
293 "select value from data_info where file = 0 and data = '%s' and type = %d;",
294 sym
->ident
->name
, BUF_SIZE
);
295 cached_sym_rl
= clone_rl(db_size_rl
);
299 static struct range_list
*size_from_db(struct expression
*expr
)
301 struct range_list
*rl
;
303 rl
= size_from_db_symbol(expr
);
306 return size_from_db_type(expr
);
309 static void db_returns_buf_size(struct expression
*expr
, int param
, char *unused
, char *math
)
311 struct expression
*call
;
312 struct range_list
*rl
;
315 if (expr
->type
!= EXPR_ASSIGNMENT
)
317 call
= strip_expr(expr
->right
);
319 call_results_to_rl(call
, &int_ctype
, math
, &rl
);
320 rl
= cast_rl(&int_ctype
, rl
);
321 if (rl_to_sval(rl
, &sval
) && sval
.value
== 0)
323 set_state_expr(my_size_id
, expr
->left
, alloc_estate_rl(rl
));
326 static int get_real_array_size_from_type(struct symbol
*type
)
332 if (!type
|| type
->type
!= SYM_ARRAY
)
335 if (!get_implied_value(type
->array_size
, &sval
))
341 int get_real_array_size(struct expression
*expr
)
345 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '&')
347 if (expr
->type
== EXPR_BINOP
) /* array elements foo[5] */
349 return get_real_array_size_from_type(get_type(expr
));
352 static int get_size_from_initializer(struct expression
*expr
)
354 if (expr
->type
!= EXPR_SYMBOL
|| !expr
->symbol
|| !expr
->symbol
->initializer
)
356 if (expr
->symbol
->initializer
== expr
) /* int a = a; */
358 return get_initializer_size(expr
->symbol
->initializer
);
361 static struct range_list
*get_stored_size_bytes(struct expression
*expr
)
363 struct smatch_state
*state
;
365 state
= get_state_expr(my_size_id
, expr
);
368 return estate_rl(state
);
371 static int get_bytes_from_address(struct expression
*expr
)
376 if (expr
->type
!= EXPR_PREOP
|| expr
->op
!= '&')
378 type
= get_type(expr
);
382 if (type
->type
== SYM_PTR
)
383 type
= get_base_type(type
);
385 ret
= type_bytes(type
);
387 return 0; /* ignore char pointers */
392 static struct expression
*remove_addr_fluff(struct expression
*expr
)
394 struct expression
*tmp
;
397 expr
= strip_expr(expr
);
399 /* remove '&' and '*' operations that cancel */
400 while (expr
&& expr
->type
== EXPR_PREOP
&& expr
->op
== '&') {
401 tmp
= strip_expr(expr
->unop
);
402 if (tmp
->type
!= EXPR_PREOP
)
406 expr
= strip_expr(tmp
->unop
);
412 /* "foo + 0" is just "foo" */
413 if (expr
->type
== EXPR_BINOP
&& expr
->op
== '+' &&
414 get_value(expr
->right
, &sval
) && sval
.value
== 0)
420 static int is_last_member_of_struct(struct symbol
*sym
, struct ident
*member
)
425 if (sym
->type
!= SYM_STRUCT
)
429 FOR_EACH_PTR_REVERSE(sym
->symbol_list
, tmp
) {
430 if (i
++ || !tmp
->ident
)
432 if (tmp
->ident
== member
)
435 } END_FOR_EACH_PTR_REVERSE(tmp
);
440 int last_member_is_resizable(struct symbol
*sym
)
442 struct symbol
*last_member
;
446 if (!sym
|| sym
->type
!= SYM_STRUCT
)
449 last_member
= last_ptr_list((struct ptr_list
*)sym
->symbol_list
);
450 if (!last_member
|| !last_member
->ident
)
453 type
= get_real_base_type(last_member
);
454 if (type
->type
== SYM_STRUCT
)
455 return last_member_is_resizable(type
);
456 if (type
->type
!= SYM_ARRAY
)
459 if (!type
->array_size
)
462 if (!get_implied_value(type
->array_size
, &sval
))
465 if (sval
.value
!= 0 && sval
.value
!= 1)
471 static struct range_list
*get_stored_size_end_struct_bytes(struct expression
*expr
)
474 struct symbol
*base_sym
;
475 struct smatch_state
*state
;
480 if (expr
->type
== EXPR_BINOP
) /* array elements foo[5] */
483 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '&')
484 expr
= strip_parens(expr
->unop
);
486 sym
= expr_to_sym(expr
);
487 if (!sym
|| !sym
->ident
)
489 if (!type_bytes(sym
))
491 if (sym
->type
!= SYM_NODE
)
494 base_sym
= get_real_base_type(sym
);
495 if (!base_sym
|| base_sym
->type
!= SYM_PTR
)
497 base_sym
= get_real_base_type(base_sym
);
498 if (!base_sym
|| base_sym
->type
!= SYM_STRUCT
)
501 if (!is_last_member_of_struct(base_sym
, expr
->member
))
503 if (!last_member_is_resizable(base_sym
))
506 state
= get_state(my_size_id
, sym
->ident
->name
, sym
);
507 if (!estate_rl(state
))
509 base_size
.value
= type_bytes(base_sym
) - type_bytes(get_type(expr
));
510 if (sval_cmp(estate_min(state
), base_size
) < 0)
513 return rl_binop(estate_rl(state
), '-', alloc_rl(base_size
, base_size
));
516 static int get_last_element_bytes(struct expression
*expr
)
518 struct symbol
*type
, *member
, *member_type
;
520 type
= get_type(expr
);
521 if (!type
|| type
->type
!= SYM_STRUCT
)
523 member
= last_ptr_list((struct ptr_list
*)type
->symbol_list
);
526 member_type
= get_real_base_type(member
);
529 return type_bytes(member_type
);
532 static struct range_list
*get_outer_end_struct_bytes(struct expression
*expr
)
534 struct expression
*outer
;
535 int last_element_size
;
542 * What we're checking here is for when "u.bar.baz" is a zero element
543 * array and "u" has a buffer to determine the space for baz. Like
545 * struct { struct bar bar; char buf[256]; } u;
549 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '&')
550 expr
= strip_parens(expr
->unop
);
551 if (expr
->type
!= EXPR_DEREF
)
554 if (outer
->type
!= EXPR_DEREF
)
556 type
= get_type(outer
);
560 if (!is_last_member_of_struct(type
, expr
->member
))
562 if (!last_member_is_resizable(type
))
565 last_element_size
= get_last_element_bytes(outer
->deref
);
566 if (last_element_size
== 0)
568 if (type_bytes(get_type(outer
)) + last_element_size
!=
569 type_bytes(get_type(outer
->deref
)))
572 bytes
.value
= last_element_size
;
573 return alloc_rl(bytes
, bytes
);
576 static struct range_list
*alloc_int_rl(int value
)
583 return alloc_rl(sval
, sval
);
586 struct range_list
*filter_size_rl(struct range_list
*rl
)
598 return remove_range(rl
, minus_one
, zero
);
601 struct range_list
*get_array_size_bytes_rl(struct expression
*expr
)
603 struct range_list
*ret
= NULL
;
607 if (is_fake_call(expr
))
610 expr
= remove_addr_fluff(expr
);
615 if (expr
->type
== EXPR_STRING
)
616 return alloc_int_rl(expr
->string
->length
* (expr
->wide
+ 1));
618 if (expr
->type
== EXPR_BINOP
&& expr
->op
== '+') {
623 if (!get_implied_value(expr
->right
, &offset
))
625 type
= get_type(expr
->left
);
628 if (type
->type
!= SYM_ARRAY
&& type
->type
!= SYM_PTR
)
630 type
= get_real_base_type(type
);
631 bytes
= type_bytes(type
);
634 offset
.value
*= bytes
;
635 size
= get_array_size_bytes(expr
->left
);
638 return alloc_int_rl(size
- offset
.value
);
641 /* buf = malloc(1024); */
642 ret
= get_stored_size_bytes(expr
);
646 ret
= get_stored_size_end_struct_bytes(expr
);
650 ret
= get_outer_end_struct_bytes(expr
);
655 size
= get_real_array_size(expr
);
657 return alloc_int_rl(elements_to_bytes(expr
, size
));
659 /* char *foo = "BAR" */
660 size
= get_size_from_initializer(expr
);
662 return alloc_int_rl(elements_to_bytes(expr
, size
));
664 size
= get_bytes_from_address(expr
);
666 return alloc_int_rl(size
);
668 ret
= size_from_db(expr
);
669 return filter_size_rl(ret
);
671 if (rl_to_sval(ret
, &sval
) && sval
.value
== -1)
679 int get_array_size_bytes(struct expression
*expr
)
681 struct range_list
*rl
;
684 rl
= get_array_size_bytes_rl(expr
);
685 if (!rl_to_sval(rl
, &sval
))
687 if (sval
.uvalue
>= INT_MAX
)
692 int get_array_size_bytes_max(struct expression
*expr
)
694 struct range_list
*rl
;
697 rl
= get_array_size_bytes_rl(expr
);
704 if (bytes
.uvalue
>= INT_MAX
)
709 int get_array_size_bytes_min(struct expression
*expr
)
711 struct range_list
*rl
;
712 struct data_range
*range
;
714 rl
= get_array_size_bytes_rl(expr
);
718 FOR_EACH_PTR(rl
, range
) {
719 if (range
->min
.value
<= 0)
721 if (range
->max
.value
<= 0)
723 if (range
->min
.uvalue
>= INT_MAX
)
725 return range
->min
.value
;
726 } END_FOR_EACH_PTR(range
);
731 int get_array_size(struct expression
*expr
)
735 return bytes_to_elements(expr
, get_array_size_bytes_max(expr
));
738 static struct expression
*strip_ampersands(struct expression
*expr
)
742 if (expr
->type
!= EXPR_PREOP
)
746 type
= get_type(expr
->unop
);
747 if (!type
|| type
->type
!= SYM_ARRAY
)
752 static void info_record_alloction(struct expression
*buffer
, struct range_list
*rl
)
760 name
= get_stored_buffer_name(buffer
, &add_static
);
763 if (rl
&& !is_whole_rl(rl
))
764 sql_insert_function_type_size(name
, show_rl(rl
));
766 sql_insert_function_type_size(name
, "(-1)");
771 static void store_alloc(struct expression
*expr
, struct range_list
*rl
)
775 rl
= clone_rl(rl
); // FIXME!!!
777 rl
= size_to_rl(UNKNOWN_SIZE
);
779 if (rl_min(rl
).value
!= UNKNOWN_SIZE
||
780 rl_max(rl
).value
!= UNKNOWN_SIZE
||
781 get_state_expr(my_size_id
, expr
))
782 set_state_expr(my_size_id
, expr
, alloc_estate_rl(rl
));
784 type
= get_type(expr
);
787 if (type
->type
!= SYM_PTR
)
789 type
= get_real_base_type(type
);
792 // Why not store the size for void pointers?
793 if (type
== &void_ctype
)
795 // Because of 4 files that produce 30 warnings like this:
796 // arch/x86/crypto/des3_ede_glue.c:145 __cbc_encrypt() warn: potential memory corrupting cast 8 vs 1 bytes
797 if (type
->type
!= SYM_BASETYPE
&& type
->type
!= SYM_PTR
)
800 info_record_alloction(expr
, rl
);
803 static bool is_array_base(struct expression
*expr
)
807 type
= get_type(expr
);
808 if (type
&& type
->type
== SYM_ARRAY
)
813 static void match_array_assignment(struct expression
*expr
)
815 struct expression
*left
;
816 struct expression
*right
;
817 char *left_member
, *right_member
;
818 struct range_list
*rl
;
824 left
= strip_expr(expr
->left
);
825 right
= strip_expr(expr
->right
);
826 right
= strip_ampersands(right
);
828 if (!is_pointer(left
) && !get_state_expr(my_size_id
, expr
))
831 /* char buf[24] = "str"; */
832 if (is_array_base(left
))
834 if (is_allocation_function(right
))
837 left_member
= get_member_name(left
);
838 right_member
= get_member_name(right
);
839 if (left_member
&& right_member
&& strcmp(left_member
, right_member
) == 0) {
840 free_string(left_member
);
841 free_string(right_member
);
844 free_string(left_member
);
845 free_string(right_member
);
847 if (get_implied_value(right
, &sval
) && sval
.value
== 0) {
848 rl
= alloc_int_rl(0);
852 rl
= get_array_size_bytes_rl(right
);
853 if (!rl
&& __in_fake_assign
)
857 store_alloc(left
, rl
);
860 static void match_alloc(const char *fn
, struct expression
*expr
, void *_size_arg
)
862 int size_arg
= PTR_INT(_size_arg
);
863 struct expression
*right
;
864 struct expression
*arg
;
865 struct range_list
*rl
;
867 right
= strip_expr(expr
->right
);
868 arg
= get_argument_from_call_expr(right
->args
, size_arg
);
869 get_absolute_rl(arg
, &rl
);
870 rl
= cast_rl(&ulong_ctype
, rl
);
871 store_alloc(expr
->left
, rl
);
874 static void match_calloc(const char *fn
, struct expression
*expr
, void *_param
)
876 struct expression
*right
;
877 struct expression
*size
, *nr
, *mult
;
878 struct range_list
*rl
;
879 int param
= PTR_INT(_param
);
881 right
= strip_expr(expr
->right
);
882 nr
= get_argument_from_call_expr(right
->args
, param
);
883 size
= get_argument_from_call_expr(right
->args
, param
+ 1);
884 mult
= binop_expression(nr
, '*', size
);
885 if (get_implied_rl(mult
, &rl
))
886 store_alloc(expr
->left
, rl
);
888 store_alloc(expr
->left
, size_to_rl(UNKNOWN_SIZE
));
891 static void match_page(const char *fn
, struct expression
*expr
, void *_unused
)
898 store_alloc(expr
->left
, alloc_rl(page_size
, page_size
));
901 static void match_bitmap_alloc(const char *fn
, struct expression
*expr
, void *_size_arg
)
903 int size_arg
= PTR_INT(_size_arg
);
904 struct expression
*right
;
905 struct expression
*arg
;
906 struct range_list
*rl
;
912 right
= strip_expr(expr
->right
);
913 arg
= get_argument_from_call_expr(right
->args
, size_arg
);
914 get_absolute_rl(arg
, &rl
);
915 if (rl_max(rl
).uvalue
<= SHRT_MAX
&& rl_max(rl
).uvalue
% 8) {
916 sval_t max
= rl_max(rl
);
919 rl
= alloc_rl(rl_min(rl
), max
);
921 rl
= rl_binop(rl
, '/', alloc_rl(int_8
, int_8
));
922 rl
= cast_rl(&ulong_ctype
, rl
);
923 store_alloc(expr
->left
, rl
);
926 static void match_strndup(const char *fn
, struct expression
*expr
, void *unused
)
928 struct expression
*fn_expr
;
929 struct expression
*size_expr
;
932 fn_expr
= strip_expr(expr
->right
);
933 size_expr
= get_argument_from_call_expr(fn_expr
->args
, 1);
934 if (get_implied_max(size_expr
, &size
)) {
936 store_alloc(expr
->left
, size_to_rl(size
.value
));
938 store_alloc(expr
->left
, size_to_rl(UNKNOWN_SIZE
));
942 static void match_alloc_pages(const char *fn
, struct expression
*expr
, void *_order_arg
)
944 int order_arg
= PTR_INT(_order_arg
);
945 struct expression
*right
;
946 struct expression
*arg
;
949 right
= strip_expr(expr
->right
);
950 arg
= get_argument_from_call_expr(right
->args
, order_arg
);
951 if (!get_implied_value(arg
, &sval
))
953 if (sval
.value
< 0 || sval
.value
> 10)
956 sval
.type
= &int_ctype
;
957 sval
.value
= (1 << sval
.value
) * 4096;
959 store_alloc(expr
->left
, alloc_rl(sval
, sval
));
962 static int is_type_bytes(struct range_list
*rl
, struct expression
*call
, int nr
)
967 if (!rl_to_sval(rl
, &sval
))
970 type
= get_arg_type(call
->fn
, nr
);
973 if (type
->type
!= SYM_PTR
)
975 type
= get_real_base_type(type
);
976 if (sval
.value
!= type_bytes(type
))
981 static void match_call(struct expression
*expr
)
983 struct expression
*arg
;
985 struct range_list
*rl
;
989 FOR_EACH_PTR(expr
->args
, arg
) {
991 type
= get_type(arg
);
992 if (!type
|| (type
->type
!= SYM_PTR
&& type
->type
!= SYM_ARRAY
))
994 rl
= get_array_size_bytes_rl(arg
);
997 if (rl_min(rl
).value
== UNKNOWN_SIZE
&&
998 rl_max(rl
).value
== UNKNOWN_SIZE
)
1000 if (is_whole_rl(rl
))
1002 if (is_type_bytes(rl
, expr
, i
))
1004 sql_insert_caller_info(expr
, BUF_SIZE
, i
, "$", show_rl(rl
));
1005 } END_FOR_EACH_PTR(arg
);
1008 static void struct_member_callback(struct expression
*call
, int param
, char *printed_name
, struct sm_state
*sm
)
1012 if (!estate_rl(sm
->state
) ||
1013 (estate_get_single_value(sm
->state
, &sval
) &&
1014 (sval
.value
== -1 || sval
.value
== 0)))
1017 sql_insert_caller_info(call
, BUF_SIZE
, param
, printed_name
, sm
->state
->name
);
1021 * This is slightly (very) weird because half of this stuff is handled in
1022 * smatch_parse_call_math.c which is poorly named. But anyway, add some buf
1026 static void print_returned_allocations(int return_id
, char *return_ranges
, struct expression
*expr
)
1028 const char *param_math
;
1029 struct range_list
*rl
;
1033 rl
= get_array_size_bytes_rl(expr
);
1034 param_math
= get_allocation_math(expr
);
1035 if (!rl
&& !param_math
)
1039 rl_to_sval(rl
, &sval
) &&
1040 (sval
.value
== -1 || sval
.value
== 0))
1044 snprintf(buf
, sizeof(buf
), "%s[%s]", show_rl(rl
), param_math
);
1046 snprintf(buf
, sizeof(buf
), "%s", show_rl(rl
));
1048 // FIXME: don't store if you can guess the size from the type
1049 // FIXME: return if we allocate a parameter $0->bar
1050 sql_insert_return_states(return_id
, return_ranges
, BUF_SIZE
, -1, "", buf
);
1053 static void record_global_size(struct symbol
*sym
)
1061 if (!(sym
->ctype
.modifiers
& MOD_TOPLEVEL
) ||
1062 sym
->ctype
.modifiers
& MOD_STATIC
)
1065 bytes
= get_array_size_bytes(symbol_expression(sym
));
1069 snprintf(buf
, sizeof(buf
), "%d", bytes
);
1070 sql_insert_data_info_var_sym(sym
->ident
->name
, sym
, BUF_SIZE
, buf
);
1073 void register_buf_size(int id
)
1077 set_dynamic_states(my_size_id
);
1079 add_unmatched_state_hook(my_size_id
, &unmatched_size_state
);
1080 add_merge_hook(my_size_id
, &merge_estates
);
1082 select_caller_info_hook(set_param_buf_size
, BUF_SIZE
);
1083 select_return_states_hook(BUF_SIZE
, &db_returns_buf_size
);
1084 add_split_return_callback(print_returned_allocations
);
1086 allocation_funcs
= create_function_hashtable(100);
1087 add_allocation_function("malloc", &match_alloc
, 0);
1088 add_allocation_function("calloc", &match_calloc
, 0);
1089 add_allocation_function("memdup", &match_alloc
, 1);
1090 add_allocation_function("realloc", &match_alloc
, 1);
1091 if (option_project
== PROJ_KERNEL
) {
1092 add_allocation_function("kmalloc", &match_alloc
, 0);
1093 add_allocation_function("kmalloc_node", &match_alloc
, 0);
1094 add_allocation_function("kzalloc", &match_alloc
, 0);
1095 add_allocation_function("kzalloc_node", &match_alloc
, 0);
1096 add_allocation_function("vmalloc", &match_alloc
, 0);
1097 add_allocation_function("vzalloc", &match_alloc
, 0);
1098 add_allocation_function("__vmalloc", &match_alloc
, 0);
1099 add_allocation_function("kvmalloc", &match_alloc
, 0);
1100 add_allocation_function("kcalloc", &match_calloc
, 0);
1101 add_allocation_function("kvcalloc", &match_calloc
, 0);
1102 add_allocation_function("kmalloc_array", &match_calloc
, 0);
1103 add_allocation_function("devm_kmalloc_array", &match_calloc
, 1);
1104 add_allocation_function("sock_kmalloc", &match_alloc
, 1);
1105 add_allocation_function("kmemdup", &match_alloc
, 1);
1106 add_allocation_function("memdup_user", &match_alloc
, 1);
1107 add_allocation_function("dma_alloc_attrs", &match_alloc
, 1);
1108 add_allocation_function("devm_kmalloc", &match_alloc
, 1);
1109 add_allocation_function("devm_kzalloc", &match_alloc
, 1);
1110 add_allocation_function("krealloc", &match_alloc
, 1);
1111 add_allocation_function("__alloc_bootmem", &match_alloc
, 0);
1112 add_allocation_function("alloc_bootmem", &match_alloc
, 0);
1113 add_allocation_function("kmap", &match_page
, 0);
1114 add_allocation_function("kmap_atomic", &match_page
, 0);
1115 add_allocation_function("get_zeroed_page", &match_page
, 0);
1116 add_allocation_function("alloc_page", &match_page
, 0);
1117 add_allocation_function("alloc_pages", &match_alloc_pages
, 1);
1118 add_allocation_function("alloc_pages_current", &match_alloc_pages
, 1);
1119 add_allocation_function("__get_free_pages", &match_alloc_pages
, 1);
1120 add_allocation_function("dma_alloc_contiguous", &match_alloc
, 1);
1121 add_allocation_function("dma_alloc_coherent", &match_alloc
, 1);
1122 add_allocation_function("bitmap_alloc", &match_bitmap_alloc
, 0);
1123 add_allocation_function("bitmap_alloc_node", &match_bitmap_alloc
, 0);
1124 add_allocation_function("bitmap_zalloc", &match_bitmap_alloc
, 0);
1125 add_allocation_function("devm_bitmap_alloc", &match_bitmap_alloc
, 1);
1126 add_allocation_function("devm_bitmap_zalloc", &match_bitmap_alloc
, 1);
1129 add_allocation_function("strndup", match_strndup
, 0);
1130 if (option_project
== PROJ_KERNEL
)
1131 add_allocation_function("kstrndup", match_strndup
, 0);
1133 add_modification_hook(my_size_id
, &set_size_undefined
);
1135 add_merge_hook(my_size_id
, &merge_size_func
);
1138 add_hook(record_global_size
, BASE_HOOK
);
1140 add_hook(&match_clear_cache
, AFTER_FUNC_HOOK
);
1143 void register_buf_size_late(int id
)
1145 /* has to happen after match_alloc() */
1146 add_hook(&match_array_assignment
, ASSIGNMENT_HOOK
);
1148 add_hook(&match_call
, FUNCTION_CALL_HOOK
);
1149 add_member_info_callback(my_size_id
, struct_member_callback
);