2 * Copyright (C) 2017 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 is for smatch_extra.c to use. It sort of like check_assigned_expr.c but
20 * more limited. Say a function returns "64min-s64max[$0->data]" and the caller
21 * does "struct whatever *p = get_data(dev);" then we want to record that p is
22 * now the same as "dev->data". Then if we update "p->foo" it means we can
23 * update "dev->data->foo" as well.
28 #include "smatch_slist.h"
29 #include "smatch_extra.h"
31 extern int check_assigned_expr_id
;
35 static struct smatch_state
*alloc_my_state(const char *name
, struct symbol
*sym
)
37 struct smatch_state
*state
;
39 state
= __alloc_smatch_state(0);
40 state
->name
= alloc_sname(name
);
45 static void undef(struct sm_state
*sm
, struct expression
*mod_expr
)
47 set_state(my_id
, sm
->name
, sm
->sym
, &undefined
);
50 char *map_call_to_other_name_sym(const char *name
, struct symbol
*sym
, struct symbol
**new_sym
)
52 struct smatch_state
*state
;
56 /* skip 'foo->'. This was checked in the caller. */
57 skip
= strlen(sym
->ident
->name
) + 2;
59 state
= get_state(my_id
, sym
->ident
->name
, sym
);
60 if (!state
|| !state
->data
)
63 snprintf(buf
, sizeof(buf
), "%s->%s", state
->name
, name
+ skip
);
64 *new_sym
= state
->data
;
65 return alloc_string(buf
);
68 static char *map_my_state_long_to_short(struct sm_state
*sm
, const char *name
, struct symbol
*sym
, struct symbol
**new_sym
, bool stack
)
73 if (sm
->state
->data
!= sym
)
75 len
= strlen(sm
->state
->name
);
76 if (strncmp(name
, sm
->state
->name
, len
) != 0)
81 if (!stack
&& name
[len
] != '-')
83 snprintf(buf
, sizeof(buf
), "%s%s", sm
->name
, name
+ len
);
85 return alloc_string(buf
);
88 static char *map_assignment_long_to_short(struct sm_state
*sm
, const char *name
, struct symbol
*sym
, struct symbol
**new_sym
, bool stack
)
90 struct expression
*orig_expr
;
91 struct symbol
*orig_sym
;
95 orig_expr
= sm
->state
->data
;
100 * Say we have an assignment like:
101 * foo->bar->my_ptr = my_ptr;
102 * We still expect the function to carry on using "my_ptr" as the
103 * shorter name. That's not a long to short mapping.
106 if (orig_expr
->type
== EXPR_SYMBOL
)
109 orig_sym
= expr_to_sym(orig_expr
);
115 len
= strlen(sm
->state
->name
);
116 if (strncmp(name
, sm
->state
->name
, len
) != 0)
119 if (name
[len
] == '.')
121 if (!stack
&& name
[len
] != '-')
123 snprintf(buf
, sizeof(buf
), "%s%s", sm
->name
, name
+ len
);
125 return alloc_string(buf
);
129 * Normally, we expect people to consistently refer to variables by the shortest
130 * name. So they use "b->a" instead of "foo->bar.a" when both point to the
131 * same memory location. However, when we're dealing across function boundaries
132 * then sometimes we pass frob(foo) which sets foo->bar.a. In that case, we
133 * translate it to the shorter name. Smatch extra updates the shorter name,
134 * which in turn updates the longer name.
137 static char *map_long_to_short_name_sym_helper(const char *name
, struct symbol
*sym
, struct symbol
**new_sym
, bool stack
)
144 FOR_EACH_SM(__get_cur_stree(), sm
) {
145 if (sm
->owner
== my_id
) {
146 ret
= map_my_state_long_to_short(sm
, name
, sym
, new_sym
, stack
);
151 if (sm
->owner
== check_assigned_expr_id
) {
152 ret
= map_assignment_long_to_short(sm
, name
, sym
, new_sym
, stack
);
157 } END_FOR_EACH_SM(sm
);
162 char *map_long_to_short_name_sym(const char *name
, struct symbol
*sym
, struct symbol
**new_sym
)
164 return map_long_to_short_name_sym_helper(name
, sym
, new_sym
, 1);
167 char *map_long_to_short_name_sym_nostack(const char *name
, struct symbol
*sym
, struct symbol
**new_sym
)
169 return map_long_to_short_name_sym_helper(name
, sym
, new_sym
, 0);
172 char *map_call_to_param_name_sym(struct expression
*expr
, struct symbol
**sym
)
175 struct smatch_state
*state
;
179 name
= expr_to_str(expr
);
182 state
= get_state(my_id
, name
, (struct symbol
*)expr
);
183 if (!state
|| !state
->data
)
186 return alloc_string(state
->name
);
189 static void store_mapping_helper(char *left_name
, struct symbol
*left_sym
, struct expression
*call
, const char *return_string
)
191 const char *p
= return_string
;
194 struct expression
*arg
;
196 struct symbol
*right_sym
;
199 while (*p
&& *p
!= '[')
209 if (*p
!= '-' || *(p
+ 1) != '>')
211 end
= strchr(p
, ']');
215 arg
= get_argument_from_call_expr(call
->args
, param
);
218 name
= expr_to_var_sym(arg
, &right_sym
);
219 if (!name
|| !right_sym
)
221 snprintf(buf
, sizeof(buf
), "%s", name
);
223 if (end
- p
+ strlen(buf
) >= sizeof(buf
))
225 strncat(buf
, p
, end
- p
);
227 set_state(my_id
, left_name
, left_sym
, alloc_my_state(buf
, right_sym
));
228 //set_state(my_id, buf, right_sym, alloc_my_state(left_name, left_sym));
230 store_link(link_id
, buf
, right_sym
, left_name
, left_sym
);
236 void __add_return_to_param_mapping(struct expression
*expr
, const char *return_string
)
238 struct expression
*call
;
239 char *left_name
= NULL
;
240 struct symbol
*left_sym
;
242 if (expr
->type
== EXPR_ASSIGNMENT
) {
243 left_name
= expr_to_var_sym(expr
->left
, &left_sym
);
244 if (!left_name
|| !left_sym
)
247 call
= strip_expr(expr
->right
);
248 if (call
->type
!= EXPR_CALL
)
251 store_mapping_helper(left_name
, left_sym
, call
, return_string
);
255 if (expr
->type
== EXPR_CALL
&&
256 expr_get_parent_stmt(expr
) &&
257 expr_get_parent_stmt(expr
)->type
== STMT_RETURN
) {
258 call
= strip_expr(expr
);
259 left_name
= expr_to_str(call
);
264 * HACK ALERT: The symbol pointer is basically used as a cookie
265 * and not used as a pointer so we can pass expr here without
269 store_mapping_helper(left_name
, (struct symbol
*)expr
, call
, return_string
);
275 free_string(left_name
);
278 void register_return_to_param(int id
)
281 add_modification_hook(my_id
, &undef
);
284 void register_return_to_param_links(int id
)
287 set_up_link_functions(my_id
, link_id
);