OLD | NEW |
1 # The rules in this file are only applied at compile time on Windows. | 1 # The rules in this file are only applied at compile time on Windows. |
2 # Because the Chrome buildsystem does not automatically touch the files | 2 # Because the Chrome buildsystem does not automatically touch the files |
3 # mentioned here, changing this file requires clobbering all ASan bots. | 3 # mentioned here, changing this file requires clobbering all ASan bots. |
4 # | 4 # |
5 # Please think twice before you add or remove these rules. | 5 # Please think twice before you add or remove these rules. |
6 | 6 |
| 7 # Stack buffer overflow in VC/INCLUDE/xlocnum, see http://goo.gl/L4qqUG |
| 8 # This really belongs in the ASan default blacklist, but that's not enough due |
| 9 # to a bug/misfeature in the compiler driver: http://llvm.org/PR22431 |
| 10 fun:*_Find_elem@*@std* |
| 11 |
7 ################################################################################ | 12 ################################################################################ |
8 # Sandbox executes some of its code before the ASan RTL gets initialized and | 13 # Sandbox executes some of its code before the ASan RTL gets initialized and |
9 # maps shadow memory. As a result, instrmented code tries to access unavailable | 14 # maps shadow memory. As a result, instrmented code tries to access unavailable |
10 # shadow memory and faults. | 15 # shadow memory and faults. |
11 # Temporarily disable instrumentation of that code until we come up with | 16 # Temporarily disable instrumentation of that code until we come up with |
12 # a better long-term solution. See http://crbug.com/382867 for details. | 17 # a better long-term solution. See http://crbug.com/382867 for details. |
13 fun:*TargetNtSetInformationThread@20 | 18 fun:*TargetNtSetInformationThread@20 |
14 fun:*TargetNtOpenThreadToken@20 | 19 fun:*TargetNtOpenThreadToken@20 |
15 fun:*TargetNtOpenThreadTokenEx@24 | 20 fun:*TargetNtOpenThreadTokenEx@24 |
16 fun:*TargetNtMapViewOfSection@44 | 21 fun:*TargetNtMapViewOfSection@44 |
17 fun:*AutoProtectMemory*sandbox* | 22 fun:*AutoProtectMemory*sandbox* |
18 fun:*EatResolverThunk*sandbox* | 23 fun:*EatResolverThunk*sandbox* |
19 fun:*InterceptionAgent*sandbox* | 24 fun:*InterceptionAgent*sandbox* |
20 fun:*PolicyBase*sandbox* | 25 fun:*PolicyBase*sandbox* |
21 fun:*ResolverThunk*sandbox* | 26 fun:*ResolverThunk*sandbox* |
22 fun:*Target*SandboxFactory*sandbox* | 27 fun:*Target*SandboxFactory*sandbox* |
23 src:*pe_image.h | 28 src:*pe_image.h |
24 src:*pe_image.cc | 29 src:*pe_image.cc |
25 src:*resolver_32.cc | 30 src:*resolver_32.cc |
26 ################################################################################ | 31 ################################################################################ |
OLD | NEW |