Skip to content

Commit 9e18875

Browse files
committedMar 8, 2019
[TSan] Initialize libdispatch interceptors if necessary
On Linux (and other non-Darwin platforms) we need to initialize interceptors. Since tsan_libdispatch.cc is compiled optionally, add a weak default implementation of `InitializeLibdispatchInterceptors`. Reviewed By: dvyukov Differential Revision: https://reviews.llvm.org/D59113 llvm-svn: 355717
1 parent 782ac93 commit 9e18875

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed
 

‎compiler-rt/lib/tsan/rtl/tsan_interceptors.cc

+4
Original file line numberDiff line numberDiff line change
@@ -2621,6 +2621,9 @@ static void unreachable() {
26212621
}
26222622
#endif
26232623

2624+
// Define default implementation since interception of libdispatch is optional.
2625+
SANITIZER_WEAK_ATTRIBUTE void InitializeLibdispatchInterceptors() {}
2626+
26242627
void InitializeInterceptors() {
26252628
#if !SANITIZER_MAC
26262629
// We need to setup it early, because functions like dlsym() can call it.
@@ -2638,6 +2641,7 @@ void InitializeInterceptors() {
26382641

26392642
InitializeCommonInterceptors();
26402643
InitializeSignalInterceptors();
2644+
InitializeLibdispatchInterceptors();
26412645

26422646
#if !SANITIZER_MAC
26432647
// We can not use TSAN_INTERCEPT to get setjmp addr,

‎compiler-rt/lib/tsan/rtl/tsan_libdispatch.cc

+42
Original file line numberDiff line numberDiff line change
@@ -723,4 +723,46 @@ TSAN_INTERCEPTOR(void, dispatch_resume, dispatch_object_t o) {
723723
return REAL(dispatch_resume)(o);
724724
}
725725

726+
void InitializeLibdispatchInterceptors() {
727+
INTERCEPT_FUNCTION(dispatch_async);
728+
INTERCEPT_FUNCTION(dispatch_async_f);
729+
INTERCEPT_FUNCTION(dispatch_sync);
730+
INTERCEPT_FUNCTION(dispatch_sync_f);
731+
INTERCEPT_FUNCTION(dispatch_barrier_async);
732+
INTERCEPT_FUNCTION(dispatch_barrier_async_f);
733+
INTERCEPT_FUNCTION(dispatch_barrier_sync);
734+
INTERCEPT_FUNCTION(dispatch_barrier_sync_f);
735+
INTERCEPT_FUNCTION(dispatch_after);
736+
INTERCEPT_FUNCTION(dispatch_after_f);
737+
INTERCEPT_FUNCTION(dispatch_once);
738+
INTERCEPT_FUNCTION(dispatch_once_f);
739+
INTERCEPT_FUNCTION(dispatch_semaphore_signal);
740+
INTERCEPT_FUNCTION(dispatch_semaphore_wait);
741+
INTERCEPT_FUNCTION(dispatch_group_wait);
742+
INTERCEPT_FUNCTION(dispatch_group_leave);
743+
INTERCEPT_FUNCTION(dispatch_group_async);
744+
INTERCEPT_FUNCTION(dispatch_group_async_f);
745+
INTERCEPT_FUNCTION(dispatch_group_notify);
746+
INTERCEPT_FUNCTION(dispatch_group_notify_f);
747+
INTERCEPT_FUNCTION(dispatch_source_set_event_handler);
748+
INTERCEPT_FUNCTION(dispatch_source_set_event_handler_f);
749+
INTERCEPT_FUNCTION(dispatch_source_set_cancel_handler);
750+
INTERCEPT_FUNCTION(dispatch_source_set_cancel_handler_f);
751+
INTERCEPT_FUNCTION(dispatch_source_set_registration_handler);
752+
INTERCEPT_FUNCTION(dispatch_source_set_registration_handler_f);
753+
INTERCEPT_FUNCTION(dispatch_apply);
754+
INTERCEPT_FUNCTION(dispatch_apply_f);
755+
INTERCEPT_FUNCTION(dispatch_data_create);
756+
INTERCEPT_FUNCTION(dispatch_read);
757+
INTERCEPT_FUNCTION(dispatch_write);
758+
INTERCEPT_FUNCTION(dispatch_io_read);
759+
INTERCEPT_FUNCTION(dispatch_io_write);
760+
INTERCEPT_FUNCTION(dispatch_io_barrier);
761+
INTERCEPT_FUNCTION(dispatch_io_create);
762+
INTERCEPT_FUNCTION(dispatch_io_create_with_path);
763+
INTERCEPT_FUNCTION(dispatch_io_create_with_io);
764+
INTERCEPT_FUNCTION(dispatch_io_close);
765+
INTERCEPT_FUNCTION(dispatch_resume);
766+
}
767+
726768
} // namespace __tsan

0 commit comments

Comments
 (0)
Please sign in to comment.