]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/asan.h
[C++] Protect call to copy_attributes_to_builtin (PR91505)
[thirdparty/gcc.git] / gcc / asan.h
CommitLineData
b92cccf4 1/* AddressSanitizer, a fast memory error detector.
fbd26352 2 Copyright (C) 2011-2019 Free Software Foundation, Inc.
b92cccf4 3 Contributed by Kostya Serebryany <kcc@google.com>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 3, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
21#ifndef TREE_ASAN
22#define TREE_ASAN
23
1e80ce41 24extern void asan_function_start (void);
3c919612 25extern void asan_finish_file (void);
67ab16d9 26extern rtx_insn *asan_emit_stack_protection (rtx, rtx, unsigned int,
27 HOST_WIDE_INT *, tree *, int);
d08919a7 28extern rtx_insn *asan_emit_allocas_unpoison (rtx, rtx, rtx_insn *);
0c864c7c 29extern bool asan_protect_global (tree, bool ignore_decl_rtl_set_p = false);
b45e34ed 30extern void initialize_sanitizer_builtins (void);
085f6ebf 31extern tree asan_dynamic_init_call (bool);
6b5813f5 32extern bool asan_expand_check_ifn (gimple_stmt_iterator *, bool);
629b6abc 33extern bool asan_expand_mark_ifn (gimple_stmt_iterator *);
c51887c5 34extern bool asan_expand_poison_ifn (gimple_stmt_iterator *, bool *,
35 hash_map<tree, tree> &);
3c919612 36
ec08f7b0 37extern gimple_stmt_iterator create_cond_insert_point
38 (gimple_stmt_iterator *, bool, bool, bool, basic_block *, basic_block *);
39
3c919612 40/* Alias set for accessing the shadow memory. */
41extern alias_set_type asan_shadow_set;
b92cccf4 42
629b6abc 43/* Hash set of labels that are either used in a goto, or their address
44 has been taken. */
45extern hash_set <tree> *asan_used_labels;
46
7ad5fd20 47/* Shadow memory is found at
cf357977 48 (address >> ASAN_SHADOW_SHIFT) + asan_shadow_offset (). */
7ad5fd20 49#define ASAN_SHADOW_SHIFT 3
629b6abc 50#define ASAN_SHADOW_GRANULARITY (1UL << ASAN_SHADOW_SHIFT)
7ad5fd20 51
3c919612 52/* Red zone size, stack and global variables are padded by ASAN_RED_ZONE_SIZE
53 up to 2 * ASAN_RED_ZONE_SIZE - 1 bytes. */
54#define ASAN_RED_ZONE_SIZE 32
55
57e4ba18 56/* Stack variable use more compact red zones. The size includes also
57 size of variable itself. */
58
59#define ASAN_MIN_RED_ZONE_SIZE 16
60
3c919612 61/* Shadow memory values for stack protection. Left is below protected vars,
62 the first pointer in stack corresponding to that offset contains
63 ASAN_STACK_FRAME_MAGIC word, the second pointer to a string describing
64 the frame. Middle is for padding in between variables, right is
65 above the last protected variable and partial immediately after variables
66 up to ASAN_RED_ZONE_SIZE alignment. */
629b6abc 67#define ASAN_STACK_MAGIC_LEFT 0xf1
68#define ASAN_STACK_MAGIC_MIDDLE 0xf2
69#define ASAN_STACK_MAGIC_RIGHT 0xf3
629b6abc 70#define ASAN_STACK_MAGIC_USE_AFTER_RET 0xf5
71#define ASAN_STACK_MAGIC_USE_AFTER_SCOPE 0xf8
3c919612 72
683539f6 73#define ASAN_STACK_FRAME_MAGIC 0x41b58ab3
74#define ASAN_STACK_RETIRED_MAGIC 0x45e0360e
3c919612 75
ba39c1d4 76#define ASAN_USE_AFTER_SCOPE_ATTRIBUTE "use after scope memory"
77
629b6abc 78/* Various flags for Asan builtins. */
79enum asan_check_flags
3c919612 80{
629b6abc 81 ASAN_CHECK_STORE = 1 << 0,
82 ASAN_CHECK_SCALAR_ACCESS = 1 << 1,
83 ASAN_CHECK_NON_ZERO_LEN = 1 << 2,
84 ASAN_CHECK_LAST = 1 << 3
85};
86
87/* Flags for Asan check builtins. */
a30589d5 88#define IFN_ASAN_MARK_FLAGS DEF(POISON), DEF(UNPOISON)
89
629b6abc 90enum asan_mark_flags
91{
a30589d5 92#define DEF(X) ASAN_MARK_##X
93 IFN_ASAN_MARK_FLAGS
94#undef DEF
629b6abc 95};
3c919612 96
a30589d5 97/* Return true if STMT is ASAN_MARK with FLAG as first argument. */
98extern bool asan_mark_p (gimple *stmt, enum asan_mark_flags flag);
99
92fc5c48 100/* Return the size of padding needed to insert after a protected
101 decl of SIZE. */
102
103static inline unsigned int
104asan_red_zone_size (unsigned int size)
105{
106 unsigned int c = size & (ASAN_RED_ZONE_SIZE - 1);
107 return c ? 2 * ASAN_RED_ZONE_SIZE - c : ASAN_RED_ZONE_SIZE;
108}
109
57e4ba18 110/* Return how much a stack variable occupis on a stack
111 including a space for red zone. */
112
113static inline unsigned HOST_WIDE_INT
114asan_var_and_redzone_size (unsigned HOST_WIDE_INT size)
115{
116 if (size <= 4)
117 return 16;
118 else if (size <= 16)
119 return 32;
120 else if (size <= 128)
121 return size + 32;
122 else if (size <= 512)
123 return size + 64;
124 else if (size <= 4096)
125 return size + 128;
126 else
127 return size + 256;
128}
129
cf357977 130extern bool set_asan_shadow_offset (const char *);
131
4d3c996b 132extern void set_sanitized_sections (const char *);
133
629b6abc 134extern bool asan_sanitize_stack_p (void);
135
77c44489 136extern bool asan_sanitize_allocas_p (void);
137
4f28881f 138extern hash_set<tree> *asan_handled_variables;
139
f9acf11a 140/* Return TRUE if builtin with given FCODE will be intercepted by
141 libasan. */
142
143static inline bool
144asan_intercepted_p (enum built_in_function fcode)
145{
146 return fcode == BUILT_IN_INDEX
147 || fcode == BUILT_IN_MEMCHR
148 || fcode == BUILT_IN_MEMCMP
149 || fcode == BUILT_IN_MEMCPY
150 || fcode == BUILT_IN_MEMMOVE
151 || fcode == BUILT_IN_MEMSET
152 || fcode == BUILT_IN_STRCASECMP
153 || fcode == BUILT_IN_STRCAT
154 || fcode == BUILT_IN_STRCHR
155 || fcode == BUILT_IN_STRCMP
156 || fcode == BUILT_IN_STRCPY
157 || fcode == BUILT_IN_STRDUP
158 || fcode == BUILT_IN_STRLEN
159 || fcode == BUILT_IN_STRNCASECMP
160 || fcode == BUILT_IN_STRNCAT
161 || fcode == BUILT_IN_STRNCMP
e7c5f688 162 || fcode == BUILT_IN_STRCSPN
163 || fcode == BUILT_IN_STRPBRK
164 || fcode == BUILT_IN_STRSPN
165 || fcode == BUILT_IN_STRSTR
f9acf11a 166 || fcode == BUILT_IN_STRNCPY;
167}
629b6abc 168
169/* Return TRUE if we should instrument for use-after-scope sanity checking. */
170
171static inline bool
172asan_sanitize_use_after_scope (void)
173{
174 return (flag_sanitize_address_use_after_scope && asan_sanitize_stack_p ());
175}
176
629b6abc 177/* Return true if DECL should be guarded on the stack. */
178
179static inline bool
180asan_protect_stack_decl (tree decl)
181{
182 return DECL_P (decl)
183 && (!DECL_ARTIFICIAL (decl)
184 || (asan_sanitize_use_after_scope () && TREE_ADDRESSABLE (decl)));
185}
186
9917317a 187/* Return true when flag_sanitize & FLAG is non-zero. If FN is non-null,
188 remove all flags mentioned in "no_sanitize" of DECL_ATTRIBUTES. */
189
190static inline bool
191sanitize_flags_p (unsigned int flag, const_tree fn = current_function_decl)
192{
193 unsigned int result_flags = flag_sanitize & flag;
194 if (result_flags == 0)
195 return false;
196
197 if (fn != NULL_TREE)
198 {
199 tree value = lookup_attribute ("no_sanitize", DECL_ATTRIBUTES (fn));
200 if (value)
201 result_flags &= ~tree_to_uhwi (TREE_VALUE (value));
202 }
203
204 return result_flags;
205}
206
b92cccf4 207#endif /* TREE_ASAN */