| 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 ################################################################################ | 7 ################################################################################ |
| 8 # Sandbox executes some of its code before the ASan RTL gets initialized and | 8 # 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 | 9 # maps shadow memory. As a result, instrmented code tries to access unavailable |
| 10 # shadow memory and faults. | 10 # shadow memory and faults. |
| 11 # Temporarily disable instrumentation of that code until we come up with | 11 # Temporarily disable instrumentation of that code until we come up with |
| 12 # a better long-term solution. See http://crbug.com/382867 for details. | 12 # a better long-term solution. See http://crbug.com/382867 for details. |
| 13 fun:*TargetNtSetInformationThread@20 | 13 fun:*TargetNtSetInformationThread@20 |
| 14 fun:*TargetNtOpenThreadToken@20 | 14 fun:*TargetNtOpenThreadToken@20 |
| 15 fun:*TargetNtOpenThreadTokenEx@24 | 15 fun:*TargetNtOpenThreadTokenEx@24 |
| 16 fun:*TargetNtMapViewOfSection@44 | 16 fun:*TargetNtMapViewOfSection@44 |
| 17 fun:*AutoProtectMemory*sandbox* | 17 fun:*AutoProtectMemory*sandbox* |
| 18 fun:*EatResolverThunk*sandbox* | 18 fun:*EatResolverThunk*sandbox* |
| 19 fun:*InterceptionAgent*sandbox* | 19 fun:*InterceptionAgent*sandbox* |
| 20 fun:*ResolverThunk*sandbox* | 20 fun:*ResolverThunk*sandbox* |
| 21 fun:*Target*SandboxFactory*sandbox* | 21 fun:*Target*SandboxFactory*sandbox* |
| 22 fun:*ProcessState*sandbox* |
| 22 src:*pe_image.h | 23 src:*pe_image.h |
| 23 src:*pe_image.cc | 24 src:*pe_image.cc |
| 24 src:*resolver_32.cc | 25 src:*resolver_32.cc |
| 26 src:*filesystem_interception.cc |
| 27 src:*process_thread_interception.cc |
| 28 src:*registry_interception.cc |
| 29 src:*sandbox_nt_util.cc |
| 25 ################################################################################ | 30 ################################################################################ |
| OLD | NEW |