1 /* UndefinedBehaviorSanitizer, undefined behavior detector.
2 Copyright (C) 2013-2014 Free Software Foundation, Inc.
3 Contributed by Marek Polacek <polacek@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
25 #include "stor-layout.h"
26 #include "stringpool.h"
28 #include "tree-pass.h"
29 #include "tree-ssa-alias.h"
30 #include "tree-pretty-print.h"
31 #include "internal-fn.h"
32 #include "gimple-expr.h"
34 #include "gimple-iterator.h"
35 #include "gimple-ssa.h"
36 #include "gimple-walk.h"
43 #include "c-family/c-common.h"
46 #include "tree-ssanames.h"
48 #include "gimplify-me.h"
51 /* Map from a tree to a VAR_DECL tree. */
53 struct GTY(()) tree_type_map
{
54 struct tree_map_base type
;
58 #define tree_type_map_eq tree_map_base_eq
59 #define tree_type_map_marked_p tree_map_base_marked_p
61 /* Hash from a tree in a tree_type_map. */
64 tree_type_map_hash (const void *item
)
66 return TYPE_UID (((const struct tree_type_map
*)item
)->type
.from
);
69 static GTY ((if_marked ("tree_type_map_marked_p"), param_is (struct tree_type_map
)))
70 htab_t decl_tree_for_type
;
72 /* Lookup a VAR_DECL for TYPE, and return it if we find one. */
75 decl_for_type_lookup (tree type
)
77 /* If the hash table is not initialized yet, create it now. */
78 if (decl_tree_for_type
== NULL
)
80 decl_tree_for_type
= htab_create_ggc (10, tree_type_map_hash
,
82 /* That also means we don't have to bother with the lookup. */
86 struct tree_type_map
*h
, in
;
89 h
= (struct tree_type_map
*)
90 htab_find_with_hash (decl_tree_for_type
, &in
, TYPE_UID (type
));
91 return h
? h
->decl
: NULL_TREE
;
94 /* Insert a mapping TYPE->DECL in the VAR_DECL for type hashtable. */
97 decl_for_type_insert (tree type
, tree decl
)
99 struct tree_type_map
*h
;
102 h
= ggc_alloc_tree_type_map ();
105 slot
= htab_find_slot_with_hash (decl_tree_for_type
, h
, TYPE_UID (type
),
107 *(struct tree_type_map
**) slot
= h
;
110 /* Helper routine, which encodes a value in the pointer_sized_int_node.
111 Arguments with precision <= POINTER_SIZE are passed directly,
112 the rest is passed by reference. T is a value we are to encode.
113 IN_EXPAND_P is true if this function is called during expansion. */
116 ubsan_encode_value (tree t
, bool in_expand_p
)
118 tree type
= TREE_TYPE (t
);
119 const unsigned int bitsize
= GET_MODE_BITSIZE (TYPE_MODE (type
));
120 if (bitsize
<= POINTER_SIZE
)
121 switch (TREE_CODE (type
))
126 return fold_build1 (NOP_EXPR
, pointer_sized_int_node
, t
);
129 tree itype
= build_nonstandard_integer_type (bitsize
, true);
130 t
= fold_build1 (VIEW_CONVERT_EXPR
, itype
, t
);
131 return fold_convert (pointer_sized_int_node
, t
);
138 if (!DECL_P (t
) || !TREE_ADDRESSABLE (t
))
140 /* The reason for this is that we don't want to pessimize
141 code by making vars unnecessarily addressable. */
142 tree var
= create_tmp_var (type
, NULL
);
143 tree tem
= build2 (MODIFY_EXPR
, void_type_node
, var
, t
);
147 = assign_stack_temp_for_type (TYPE_MODE (type
),
148 GET_MODE_SIZE (TYPE_MODE (type
)),
150 SET_DECL_RTL (var
, mem
);
151 expand_assignment (var
, t
, false);
152 return build_fold_addr_expr (var
);
154 t
= build_fold_addr_expr (var
);
155 return build2 (COMPOUND_EXPR
, TREE_TYPE (t
), tem
, t
);
158 return build_fold_addr_expr (t
);
163 struct __ubsan_type_descriptor
165 unsigned short __typekind;
166 unsigned short __typeinfo;
172 ubsan_type_descriptor_type (void)
174 static const char *field_names
[3]
175 = { "__typekind", "__typeinfo", "__typename" };
177 tree itype
= build_range_type (sizetype
, size_zero_node
, NULL_TREE
);
178 tree flex_arr_type
= build_array_type (char_type_node
, itype
);
180 ret
= make_node (RECORD_TYPE
);
181 for (int i
= 0; i
< 3; i
++)
183 fields
[i
] = build_decl (UNKNOWN_LOCATION
, FIELD_DECL
,
184 get_identifier (field_names
[i
]),
185 (i
== 2) ? flex_arr_type
186 : short_unsigned_type_node
);
187 DECL_CONTEXT (fields
[i
]) = ret
;
189 DECL_CHAIN (fields
[i
- 1]) = fields
[i
];
191 TYPE_FIELDS (ret
) = fields
[0];
192 TYPE_NAME (ret
) = get_identifier ("__ubsan_type_descriptor");
198 struct __ubsan_source_location
200 const char *__filename;
202 unsigned int __column;
207 ubsan_source_location_type (void)
209 static const char *field_names
[3]
210 = { "__filename", "__line", "__column" };
212 tree const_char_type
= build_qualified_type (char_type_node
,
215 ret
= make_node (RECORD_TYPE
);
216 for (int i
= 0; i
< 3; i
++)
218 fields
[i
] = build_decl (UNKNOWN_LOCATION
, FIELD_DECL
,
219 get_identifier (field_names
[i
]),
220 (i
== 0) ? build_pointer_type (const_char_type
)
221 : unsigned_type_node
);
222 DECL_CONTEXT (fields
[i
]) = ret
;
224 DECL_CHAIN (fields
[i
- 1]) = fields
[i
];
226 TYPE_FIELDS (ret
) = fields
[0];
227 TYPE_NAME (ret
) = get_identifier ("__ubsan_source_location");
232 /* Helper routine that returns a CONSTRUCTOR of __ubsan_source_location
233 type with its fields filled from a location_t LOC. */
236 ubsan_source_location (location_t loc
)
238 expanded_location xloc
;
239 tree type
= ubsan_source_location_type ();
241 xloc
= expand_location (loc
);
242 if (xloc
.file
== NULL
)
243 xloc
.file
= "<unknown>";
245 /* Fill in the values from LOC. */
246 size_t len
= strlen (xloc
.file
);
247 tree str
= build_string (len
+ 1, xloc
.file
);
248 TREE_TYPE (str
) = build_array_type (char_type_node
,
249 build_index_type (size_int (len
)));
250 TREE_READONLY (str
) = 1;
251 TREE_STATIC (str
) = 1;
252 str
= build_fold_addr_expr (str
);
253 tree ctor
= build_constructor_va (type
, 3, NULL_TREE
, str
, NULL_TREE
,
254 build_int_cst (unsigned_type_node
,
255 xloc
.line
), NULL_TREE
,
256 build_int_cst (unsigned_type_node
,
258 TREE_CONSTANT (ctor
) = 1;
259 TREE_STATIC (ctor
) = 1;
264 /* This routine returns a magic number for TYPE. */
266 static unsigned short
267 get_ubsan_type_info_for_type (tree type
)
269 gcc_assert (TYPE_SIZE (type
) && tree_fits_uhwi_p (TYPE_SIZE (type
)));
270 int prec
= exact_log2 (tree_to_uhwi (TYPE_SIZE (type
)));
271 gcc_assert (prec
!= -1);
272 return (prec
<< 1) | !TYPE_UNSIGNED (type
);
275 /* Helper routine that returns ADDR_EXPR of a VAR_DECL of a type
276 descriptor. It first looks into the hash table; if not found,
277 create the VAR_DECL, put it into the hash table and return the
278 ADDR_EXPR of it. TYPE describes a particular type. WANT_POINTER_TYPE_P
279 means whether we are interested in the pointer type and not the pointer
283 ubsan_type_descriptor (tree type
, bool want_pointer_type_p
)
285 /* See through any typedefs. */
286 type
= TYPE_MAIN_VARIANT (type
);
288 tree decl
= decl_for_type_lookup (type
);
289 /* It is possible that some of the earlier created DECLs were found
290 unused, in that case they weren't emitted and varpool_get_node
291 returns NULL node on them. But now we really need them. Thus,
293 if (decl
!= NULL_TREE
&& varpool_get_node (decl
))
294 return build_fold_addr_expr (decl
);
296 tree dtype
= ubsan_type_descriptor_type ();
298 const char *tname
= NULL
;
300 unsigned char deref_depth
= 0;
301 unsigned short tkind
, tinfo
;
303 /* Get the name of the type, or the name of the pointer type. */
304 if (want_pointer_type_p
)
306 gcc_assert (POINTER_TYPE_P (type
));
307 type2
= TREE_TYPE (type
);
309 /* Remove any '*' operators from TYPE. */
310 while (POINTER_TYPE_P (type2
))
311 deref_depth
++, type2
= TREE_TYPE (type2
);
313 if (TREE_CODE (type2
) == METHOD_TYPE
)
314 type2
= TYPE_METHOD_BASETYPE (type2
);
317 /* If an array, get its type. */
318 type2
= strip_array_types (type2
);
320 if (TYPE_NAME (type2
) != NULL
)
322 if (TREE_CODE (TYPE_NAME (type2
)) == IDENTIFIER_NODE
)
323 tname
= IDENTIFIER_POINTER (TYPE_NAME (type2
));
324 else if (DECL_NAME (TYPE_NAME (type2
)) != NULL
)
325 tname
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type2
)));
329 /* We weren't able to determine the type name. */
332 /* Decorate the type name with '', '*', "struct", or "union". */
333 pretty_name
= (char *) alloca (strlen (tname
) + 16 + deref_depth
);
334 if (want_pointer_type_p
)
336 int pos
= sprintf (pretty_name
, "'%s%s%s%s%s%s%s",
337 TYPE_VOLATILE (type2
) ? "volatile " : "",
338 TYPE_READONLY (type2
) ? "const " : "",
339 TYPE_RESTRICT (type2
) ? "restrict " : "",
340 TYPE_ATOMIC (type2
) ? "_Atomic " : "",
341 TREE_CODE (type2
) == RECORD_TYPE
343 : TREE_CODE (type2
) == UNION_TYPE
344 ? "union " : "", tname
,
345 deref_depth
== 0 ? "" : " ");
346 while (deref_depth
-- > 0)
347 pretty_name
[pos
++] = '*';
348 pretty_name
[pos
++] = '\'';
349 pretty_name
[pos
] = '\0';
352 sprintf (pretty_name
, "'%s'", tname
);
354 switch (TREE_CODE (type
))
368 tinfo
= get_ubsan_type_info_for_type (type
);
370 /* Create a new VAR_DECL of type descriptor. */
372 static unsigned int type_var_id_num
;
373 ASM_GENERATE_INTERNAL_LABEL (tmp_name
, "Lubsan_type", type_var_id_num
++);
374 decl
= build_decl (UNKNOWN_LOCATION
, VAR_DECL
, get_identifier (tmp_name
),
376 TREE_STATIC (decl
) = 1;
377 TREE_PUBLIC (decl
) = 0;
378 DECL_ARTIFICIAL (decl
) = 1;
379 DECL_IGNORED_P (decl
) = 1;
380 DECL_EXTERNAL (decl
) = 0;
382 size_t len
= strlen (pretty_name
);
383 tree str
= build_string (len
+ 1, pretty_name
);
384 TREE_TYPE (str
) = build_array_type (char_type_node
,
385 build_index_type (size_int (len
)));
386 TREE_READONLY (str
) = 1;
387 TREE_STATIC (str
) = 1;
388 tree ctor
= build_constructor_va (dtype
, 3, NULL_TREE
,
389 build_int_cst (short_unsigned_type_node
,
391 build_int_cst (short_unsigned_type_node
,
392 tinfo
), NULL_TREE
, str
);
393 TREE_CONSTANT (ctor
) = 1;
394 TREE_STATIC (ctor
) = 1;
395 DECL_INITIAL (decl
) = ctor
;
396 varpool_finalize_decl (decl
);
398 /* Save the VAR_DECL into the hash table. */
399 decl_for_type_insert (type
, decl
);
401 return build_fold_addr_expr (decl
);
404 /* Create a structure for the ubsan library. NAME is a name of the new
405 structure. The arguments in ... are of __ubsan_type_descriptor type
406 and there are at most two of them. MISMATCH are data used by ubsan
410 ubsan_create_data (const char *name
, const location_t
*ploc
,
411 const struct ubsan_mismatch_data
*mismatch
, ...)
416 vec
<tree
, va_gc
> *saved_args
= NULL
;
418 location_t loc
= UNKNOWN_LOCATION
;
420 /* Firstly, create a pointer to type descriptor type. */
421 tree td_type
= ubsan_type_descriptor_type ();
422 TYPE_READONLY (td_type
) = 1;
423 td_type
= build_pointer_type (td_type
);
425 /* Create the structure type. */
426 ret
= make_node (RECORD_TYPE
);
429 loc
= LOCATION_LOCUS (*ploc
);
430 fields
[i
] = build_decl (UNKNOWN_LOCATION
, FIELD_DECL
, NULL_TREE
,
431 ubsan_source_location_type ());
432 DECL_CONTEXT (fields
[i
]) = ret
;
436 va_start (args
, mismatch
);
437 for (t
= va_arg (args
, tree
); t
!= NULL_TREE
;
438 i
++, t
= va_arg (args
, tree
))
440 gcc_checking_assert (i
< 3);
441 /* Save the tree arguments for later use. */
442 vec_safe_push (saved_args
, t
);
443 fields
[i
] = build_decl (UNKNOWN_LOCATION
, FIELD_DECL
, NULL_TREE
,
445 DECL_CONTEXT (fields
[i
]) = ret
;
447 DECL_CHAIN (fields
[i
- 1]) = fields
[i
];
451 if (mismatch
!= NULL
)
453 /* We have to add two more decls. */
454 fields
[i
] = build_decl (UNKNOWN_LOCATION
, FIELD_DECL
, NULL_TREE
,
455 pointer_sized_int_node
);
456 DECL_CONTEXT (fields
[i
]) = ret
;
457 DECL_CHAIN (fields
[i
- 1]) = fields
[i
];
460 fields
[i
] = build_decl (UNKNOWN_LOCATION
, FIELD_DECL
, NULL_TREE
,
461 unsigned_char_type_node
);
462 DECL_CONTEXT (fields
[i
]) = ret
;
463 DECL_CHAIN (fields
[i
- 1]) = fields
[i
];
467 TYPE_FIELDS (ret
) = fields
[0];
468 TYPE_NAME (ret
) = get_identifier (name
);
471 /* Now, fill in the type. */
473 static unsigned int ubsan_var_id_num
;
474 ASM_GENERATE_INTERNAL_LABEL (tmp_name
, "Lubsan_data", ubsan_var_id_num
++);
475 tree var
= build_decl (UNKNOWN_LOCATION
, VAR_DECL
, get_identifier (tmp_name
),
477 TREE_STATIC (var
) = 1;
478 TREE_PUBLIC (var
) = 0;
479 DECL_ARTIFICIAL (var
) = 1;
480 DECL_IGNORED_P (var
) = 1;
481 DECL_EXTERNAL (var
) = 0;
483 vec
<constructor_elt
, va_gc
> *v
;
485 tree ctor
= build_constructor (ret
, v
);
487 /* If desirable, set the __ubsan_source_location element. */
489 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, ubsan_source_location (loc
));
491 size_t nelts
= vec_safe_length (saved_args
);
492 for (i
= 0; i
< nelts
; i
++)
494 t
= (*saved_args
)[i
];
495 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, t
);
498 if (mismatch
!= NULL
)
500 /* Append the pointer data. */
501 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, mismatch
->align
);
502 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, mismatch
->ckind
);
505 TREE_CONSTANT (ctor
) = 1;
506 TREE_STATIC (ctor
) = 1;
507 DECL_INITIAL (var
) = ctor
;
508 varpool_finalize_decl (var
);
513 /* Instrument the __builtin_unreachable call. We just call the libubsan
517 ubsan_instrument_unreachable (location_t loc
)
519 initialize_sanitizer_builtins ();
520 tree data
= ubsan_create_data ("__ubsan_unreachable_data", &loc
, NULL
,
522 tree t
= builtin_decl_explicit (BUILT_IN_UBSAN_HANDLE_BUILTIN_UNREACHABLE
);
523 return build_call_expr_loc (loc
, t
, 1, build_fold_addr_expr_loc (loc
, data
));
526 /* Return true if T is a call to a libubsan routine. */
529 is_ubsan_builtin_p (tree t
)
531 gcc_checking_assert (TREE_CODE (t
) == FUNCTION_DECL
);
532 return strncmp (IDENTIFIER_POINTER (DECL_NAME (t
)),
533 "__builtin___ubsan_", 18) == 0;
536 /* Expand UBSAN_NULL internal call. */
539 ubsan_expand_null_ifn (gimple_stmt_iterator gsi
)
541 gimple stmt
= gsi_stmt (gsi
);
542 location_t loc
= gimple_location (stmt
);
543 gcc_assert (gimple_call_num_args (stmt
) == 2);
544 tree ptr
= gimple_call_arg (stmt
, 0);
545 tree ckind
= gimple_call_arg (stmt
, 1);
547 basic_block cur_bb
= gsi_bb (gsi
);
549 /* Split the original block holding the pointer dereference. */
550 edge e
= split_block (cur_bb
, stmt
);
552 /* Get a hold on the 'condition block', the 'then block' and the
554 basic_block cond_bb
= e
->src
;
555 basic_block fallthru_bb
= e
->dest
;
556 basic_block then_bb
= create_empty_bb (cond_bb
);
559 add_bb_to_loop (then_bb
, cond_bb
->loop_father
);
560 loops_state_set (LOOPS_NEED_FIXUP
);
563 /* Make an edge coming from the 'cond block' into the 'then block';
564 this edge is unlikely taken, so set up the probability accordingly. */
565 e
= make_edge (cond_bb
, then_bb
, EDGE_TRUE_VALUE
);
566 e
->probability
= PROB_VERY_UNLIKELY
;
568 /* Connect 'then block' with the 'else block'. This is needed
569 as the ubsan routines we call in the 'then block' are not noreturn.
570 The 'then block' only has one outcoming edge. */
571 make_single_succ_edge (then_bb
, fallthru_bb
, EDGE_FALLTHRU
);
573 /* Set up the fallthrough basic block. */
574 e
= find_edge (cond_bb
, fallthru_bb
);
575 e
->flags
= EDGE_FALSE_VALUE
;
576 e
->count
= cond_bb
->count
;
577 e
->probability
= REG_BR_PROB_BASE
- PROB_VERY_UNLIKELY
;
579 /* Update dominance info for the newly created then_bb; note that
580 fallthru_bb's dominance info has already been updated by
582 if (dom_info_available_p (CDI_DOMINATORS
))
583 set_immediate_dominator (CDI_DOMINATORS
, then_bb
, cond_bb
);
585 /* Put the ubsan builtin call into the newly created BB. */
586 tree fn
= builtin_decl_implicit (BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH
);
587 const struct ubsan_mismatch_data m
588 = { build_zero_cst (pointer_sized_int_node
), ckind
};
589 tree data
= ubsan_create_data ("__ubsan_null_data",
591 ubsan_type_descriptor (TREE_TYPE (ptr
), true),
593 data
= build_fold_addr_expr_loc (loc
, data
);
594 gimple g
= gimple_build_call (fn
, 2, data
,
595 build_zero_cst (pointer_sized_int_node
));
596 gimple_set_location (g
, loc
);
597 gimple_stmt_iterator gsi2
= gsi_start_bb (then_bb
);
598 gsi_insert_after (&gsi2
, g
, GSI_NEW_STMT
);
600 /* Unlink the UBSAN_NULLs vops before replacing it. */
601 unlink_stmt_vdef (stmt
);
603 g
= gimple_build_cond (EQ_EXPR
, ptr
, build_int_cst (TREE_TYPE (ptr
), 0),
604 NULL_TREE
, NULL_TREE
);
605 gimple_set_location (g
, loc
);
607 /* Replace the UBSAN_NULL with a GIMPLE_COND stmt. */
608 gsi_replace (&gsi
, g
, false);
611 /* Instrument a member call. We check whether 'this' is NULL. */
614 instrument_member_call (gimple_stmt_iterator
*iter
)
616 tree this_parm
= gimple_call_arg (gsi_stmt (*iter
), 0);
617 tree kind
= build_int_cst (unsigned_char_type_node
, UBSAN_MEMBER_CALL
);
618 gimple g
= gimple_build_call_internal (IFN_UBSAN_NULL
, 2, this_parm
, kind
);
619 gimple_set_location (g
, gimple_location (gsi_stmt (*iter
)));
620 gsi_insert_before (iter
, g
, GSI_SAME_STMT
);
623 /* Instrument a memory reference. T is the pointer, IS_LHS says
624 whether the pointer is on the left hand side of the assignment. */
627 instrument_mem_ref (tree t
, gimple_stmt_iterator
*iter
, bool is_lhs
)
629 enum ubsan_null_ckind ikind
= is_lhs
? UBSAN_STORE_OF
: UBSAN_LOAD_OF
;
630 if (RECORD_OR_UNION_TYPE_P (TREE_TYPE (TREE_TYPE (t
))))
631 ikind
= UBSAN_MEMBER_ACCESS
;
632 tree kind
= build_int_cst (unsigned_char_type_node
, ikind
);
633 gimple g
= gimple_build_call_internal (IFN_UBSAN_NULL
, 2, t
, kind
);
634 gimple_set_location (g
, gimple_location (gsi_stmt (*iter
)));
635 gsi_insert_before (iter
, g
, GSI_SAME_STMT
);
638 /* Perform the pointer instrumentation. */
641 instrument_null (gimple_stmt_iterator gsi
, bool is_lhs
)
643 gimple stmt
= gsi_stmt (gsi
);
644 tree t
= is_lhs
? gimple_get_lhs (stmt
) : gimple_assign_rhs1 (stmt
);
645 t
= get_base_address (t
);
646 const enum tree_code code
= TREE_CODE (t
);
648 && TREE_CODE (TREE_OPERAND (t
, 0)) == SSA_NAME
)
649 instrument_mem_ref (TREE_OPERAND (t
, 0), &gsi
, is_lhs
);
650 else if (code
== ADDR_EXPR
651 && POINTER_TYPE_P (TREE_TYPE (t
))
652 && TREE_CODE (TREE_TYPE (TREE_TYPE (t
))) == METHOD_TYPE
)
653 instrument_member_call (&gsi
);
656 /* Build an ubsan builtin call for the signed-integer-overflow
657 sanitization. CODE says what kind of builtin are we building,
658 LOC is a location, LHSTYPE is the type of LHS, OP0 and OP1
659 are operands of the binary operation. */
662 ubsan_build_overflow_builtin (tree_code code
, location_t loc
, tree lhstype
,
665 tree data
= ubsan_create_data ("__ubsan_overflow_data", &loc
, NULL
,
666 ubsan_type_descriptor (lhstype
, false),
668 enum built_in_function fn_code
;
673 fn_code
= BUILT_IN_UBSAN_HANDLE_ADD_OVERFLOW
;
676 fn_code
= BUILT_IN_UBSAN_HANDLE_SUB_OVERFLOW
;
679 fn_code
= BUILT_IN_UBSAN_HANDLE_MUL_OVERFLOW
;
682 fn_code
= BUILT_IN_UBSAN_HANDLE_NEGATE_OVERFLOW
;
687 tree fn
= builtin_decl_explicit (fn_code
);
688 return build_call_expr_loc (loc
, fn
, 2 + (code
!= NEGATE_EXPR
),
689 build_fold_addr_expr_loc (loc
, data
),
690 ubsan_encode_value (op0
, true),
691 op1
? ubsan_encode_value (op1
, true)
695 /* Perform the signed integer instrumentation. GSI is the iterator
696 pointing at statement we are trying to instrument. */
699 instrument_si_overflow (gimple_stmt_iterator gsi
)
701 gimple stmt
= gsi_stmt (gsi
);
702 tree_code code
= gimple_assign_rhs_code (stmt
);
703 tree lhs
= gimple_assign_lhs (stmt
);
704 tree lhstype
= TREE_TYPE (lhs
);
708 /* If this is not a signed operation, don't instrument anything here.
709 Also punt on bit-fields. */
710 if (!INTEGRAL_TYPE_P (lhstype
)
711 || TYPE_OVERFLOW_WRAPS (lhstype
)
712 || GET_MODE_BITSIZE (TYPE_MODE (lhstype
)) != TYPE_PRECISION (lhstype
))
723 i = UBSAN_CHECK_{ADD,SUB,MUL} (u, 5); */
724 a
= gimple_assign_rhs1 (stmt
);
725 b
= gimple_assign_rhs2 (stmt
);
726 g
= gimple_build_call_internal (code
== PLUS_EXPR
727 ? IFN_UBSAN_CHECK_ADD
729 ? IFN_UBSAN_CHECK_SUB
730 : IFN_UBSAN_CHECK_MUL
, 2, a
, b
);
731 gimple_call_set_lhs (g
, lhs
);
732 gsi_replace (&gsi
, g
, false);
737 i = UBSAN_CHECK_SUB (0, u); */
738 a
= build_int_cst (lhstype
, 0);
739 b
= gimple_assign_rhs1 (stmt
);
740 g
= gimple_build_call_internal (IFN_UBSAN_CHECK_SUB
, 2, a
, b
);
741 gimple_call_set_lhs (g
, lhs
);
742 gsi_replace (&gsi
, g
, false);
745 /* Transform i = ABS_EXPR<u>;
747 _N = UBSAN_CHECK_SUB (0, u);
749 a
= build_int_cst (lhstype
, 0);
750 b
= gimple_assign_rhs1 (stmt
);
751 g
= gimple_build_call_internal (IFN_UBSAN_CHECK_SUB
, 2, a
, b
);
752 a
= make_ssa_name (lhstype
, NULL
);
753 gimple_call_set_lhs (g
, a
);
754 gimple_set_location (g
, gimple_location (stmt
));
755 gsi_insert_before (&gsi
, g
, GSI_SAME_STMT
);
756 gimple_assign_set_rhs1 (stmt
, a
);
764 /* Instrument loads from (non-bitfield) bool and C++ enum values
765 to check if the memory value is outside of the range of the valid
769 instrument_bool_enum_load (gimple_stmt_iterator
*gsi
)
771 gimple stmt
= gsi_stmt (*gsi
);
772 tree rhs
= gimple_assign_rhs1 (stmt
);
773 tree type
= TREE_TYPE (rhs
);
774 tree minv
= NULL_TREE
, maxv
= NULL_TREE
;
776 if (TREE_CODE (type
) == BOOLEAN_TYPE
&& (flag_sanitize
& SANITIZE_BOOL
))
778 minv
= boolean_false_node
;
779 maxv
= boolean_true_node
;
781 else if (TREE_CODE (type
) == ENUMERAL_TYPE
782 && (flag_sanitize
& SANITIZE_ENUM
)
783 && TREE_TYPE (type
) != NULL_TREE
784 && TREE_CODE (TREE_TYPE (type
)) == INTEGER_TYPE
785 && (TYPE_PRECISION (TREE_TYPE (type
))
786 < GET_MODE_PRECISION (TYPE_MODE (type
))))
788 minv
= TYPE_MIN_VALUE (TREE_TYPE (type
));
789 maxv
= TYPE_MAX_VALUE (TREE_TYPE (type
));
794 int modebitsize
= GET_MODE_BITSIZE (TYPE_MODE (type
));
795 HOST_WIDE_INT bitsize
, bitpos
;
797 enum machine_mode mode
;
798 int volatilep
= 0, unsignedp
= 0;
799 tree base
= get_inner_reference (rhs
, &bitsize
, &bitpos
, &offset
, &mode
,
800 &unsignedp
, &volatilep
, false);
801 tree utype
= build_nonstandard_integer_type (modebitsize
, 1);
803 if ((TREE_CODE (base
) == VAR_DECL
&& DECL_HARD_REGISTER (base
))
804 || (bitpos
% modebitsize
) != 0
805 || bitsize
!= modebitsize
806 || GET_MODE_BITSIZE (TYPE_MODE (utype
)) != modebitsize
807 || TREE_CODE (gimple_assign_lhs (stmt
)) != SSA_NAME
)
810 location_t loc
= gimple_location (stmt
);
811 tree ptype
= build_pointer_type (TREE_TYPE (rhs
));
812 tree atype
= reference_alias_ptr_type (rhs
);
813 gimple g
= gimple_build_assign (make_ssa_name (ptype
, NULL
),
814 build_fold_addr_expr (rhs
));
815 gimple_set_location (g
, loc
);
816 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
817 tree mem
= build2 (MEM_REF
, utype
, gimple_assign_lhs (g
),
818 build_int_cst (atype
, 0));
819 tree urhs
= make_ssa_name (utype
, NULL
);
820 g
= gimple_build_assign (urhs
, mem
);
821 gimple_set_location (g
, loc
);
822 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
823 minv
= fold_convert (utype
, minv
);
824 maxv
= fold_convert (utype
, maxv
);
825 if (!integer_zerop (minv
))
827 g
= gimple_build_assign_with_ops (MINUS_EXPR
,
828 make_ssa_name (utype
, NULL
),
830 gimple_set_location (g
, loc
);
831 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
834 gimple_stmt_iterator gsi2
= *gsi
;
835 basic_block then_bb
, fallthru_bb
;
836 *gsi
= create_cond_insert_point (gsi
, true, false, true,
837 &then_bb
, &fallthru_bb
);
838 g
= gimple_build_cond (GT_EXPR
, gimple_assign_lhs (g
),
839 int_const_binop (MINUS_EXPR
, maxv
, minv
),
840 NULL_TREE
, NULL_TREE
);
841 gimple_set_location (g
, loc
);
842 gsi_insert_after (gsi
, g
, GSI_NEW_STMT
);
844 gimple_assign_set_rhs_with_ops (&gsi2
, NOP_EXPR
, urhs
, NULL_TREE
);
847 tree data
= ubsan_create_data ("__ubsan_invalid_value_data",
849 ubsan_type_descriptor (type
, false),
851 data
= build_fold_addr_expr_loc (loc
, data
);
852 tree fn
= builtin_decl_explicit (BUILT_IN_UBSAN_HANDLE_LOAD_INVALID_VALUE
);
854 gsi2
= gsi_after_labels (then_bb
);
855 tree val
= force_gimple_operand_gsi (&gsi2
, ubsan_encode_value (urhs
),
856 true, NULL_TREE
, true, GSI_SAME_STMT
);
857 g
= gimple_build_call (fn
, 2, data
, val
);
858 gimple_set_location (g
, loc
);
859 gsi_insert_before (&gsi2
, g
, GSI_SAME_STMT
);
862 /* Gate and execute functions for ubsan pass. */
868 gimple_stmt_iterator gsi
;
870 initialize_sanitizer_builtins ();
872 FOR_EACH_BB_FN (bb
, cfun
)
874 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);)
876 gimple stmt
= gsi_stmt (gsi
);
877 if (is_gimple_debug (stmt
) || gimple_clobber_p (stmt
))
883 if ((flag_sanitize
& SANITIZE_SI_OVERFLOW
)
884 && is_gimple_assign (stmt
))
885 instrument_si_overflow (gsi
);
887 if (flag_sanitize
& SANITIZE_NULL
)
889 if (gimple_store_p (stmt
))
890 instrument_null (gsi
, true);
891 if (gimple_assign_load_p (stmt
))
892 instrument_null (gsi
, false);
895 if (flag_sanitize
& (SANITIZE_BOOL
| SANITIZE_ENUM
)
896 && gimple_assign_load_p (stmt
))
897 instrument_bool_enum_load (&gsi
);
908 return flag_sanitize
& (SANITIZE_NULL
| SANITIZE_SI_OVERFLOW
909 | SANITIZE_BOOL
| SANITIZE_ENUM
);
914 const pass_data pass_data_ubsan
=
916 GIMPLE_PASS
, /* type */
918 OPTGROUP_NONE
, /* optinfo_flags */
920 true, /* has_execute */
921 TV_TREE_UBSAN
, /* tv_id */
922 ( PROP_cfg
| PROP_ssa
), /* properties_required */
923 0, /* properties_provided */
924 0, /* properties_destroyed */
925 0, /* todo_flags_start */
926 TODO_update_ssa
, /* todo_flags_finish */
929 class pass_ubsan
: public gimple_opt_pass
932 pass_ubsan (gcc::context
*ctxt
)
933 : gimple_opt_pass (pass_data_ubsan
, ctxt
)
936 /* opt_pass methods: */
937 bool gate () { return gate_ubsan (); }
938 unsigned int execute () { return ubsan_pass (); }
940 }; // class pass_ubsan
945 make_pass_ubsan (gcc::context
*ctxt
)
947 return new pass_ubsan (ctxt
);
950 #include "gt-ubsan.h"