Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 6 additions & 42 deletions compiler-rt/lib/rtsan/rtsan_interceptors_posix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,41 +47,12 @@

using namespace __sanitizer;

DECLARE_REAL_AND_INTERCEPTOR(void *, malloc, usize size)
DECLARE_REAL_AND_INTERCEPTOR(void, free, void *ptr)

namespace {
struct DlsymAlloc : public DlSymAllocator<DlsymAlloc> {
static bool UseImpl() { return !__rtsan_is_initialized(); }
};
} // namespace

// See note in tsan as to why this is necessary
static pthread_cond_t *init_cond(pthread_cond_t *c, bool force = false) {
if (!common_flags()->legacy_pthread_cond)
return c;

atomic_uintptr_t *p = (atomic_uintptr_t *)c;
uptr cond = atomic_load(p, memory_order_acquire);
if (!force && cond != 0)
return (pthread_cond_t *)cond;
void *newcond = WRAP(malloc)(sizeof(pthread_cond_t));
internal_memset(newcond, 0, sizeof(pthread_cond_t));
if (atomic_compare_exchange_strong(p, &cond, (uptr)newcond,
memory_order_acq_rel))
return (pthread_cond_t *)newcond;
WRAP(free)(newcond);
return (pthread_cond_t *)cond;
}

static void destroy_cond(pthread_cond_t *cond) {
if (common_flags()->legacy_pthread_cond) {
// Free our aux cond and zero the pointer to not leave dangling pointers.
WRAP(free)(cond);
atomic_store((atomic_uintptr_t *)cond, 0, memory_order_relaxed);
}
}

// Filesystem

INTERCEPTOR(int, open, const char *path, int oflag, ...) {
Expand Down Expand Up @@ -799,41 +770,34 @@ INTERCEPTOR(int, pthread_join, pthread_t thread, void **value_ptr) {
INTERCEPTOR(int, pthread_cond_init, pthread_cond_t *cond,
const pthread_condattr_t *a) {
__rtsan_notify_intercepted_call("pthread_cond_init");
pthread_cond_t *c = init_cond(cond, true);
return REAL(pthread_cond_init)(c, a);
return REAL(pthread_cond_init)(cond, a);
}

INTERCEPTOR(int, pthread_cond_signal, pthread_cond_t *cond) {
__rtsan_notify_intercepted_call("pthread_cond_signal");
pthread_cond_t *c = init_cond(cond);
return REAL(pthread_cond_signal)(c);
return REAL(pthread_cond_signal)(cond);
}

INTERCEPTOR(int, pthread_cond_broadcast, pthread_cond_t *cond) {
__rtsan_notify_intercepted_call("pthread_cond_broadcast");
pthread_cond_t *c = init_cond(cond);
return REAL(pthread_cond_broadcast)(c);
return REAL(pthread_cond_broadcast)(cond);
}

INTERCEPTOR(int, pthread_cond_wait, pthread_cond_t *cond,
pthread_mutex_t *mutex) {
__rtsan_notify_intercepted_call("pthread_cond_wait");
pthread_cond_t *c = init_cond(cond);
return REAL(pthread_cond_wait)(c, mutex);
return REAL(pthread_cond_wait)(cond, mutex);
}

INTERCEPTOR(int, pthread_cond_timedwait, pthread_cond_t *cond,
pthread_mutex_t *mutex, const timespec *ts) {
__rtsan_notify_intercepted_call("pthread_cond_timedwait");
pthread_cond_t *c = init_cond(cond);
return REAL(pthread_cond_timedwait)(c, mutex, ts);
return REAL(pthread_cond_timedwait)(cond, mutex, ts);
}

INTERCEPTOR(int, pthread_cond_destroy, pthread_cond_t *cond) {
__rtsan_notify_intercepted_call("pthread_cond_destroy");
pthread_cond_t *c = init_cond(cond);
int res = REAL(pthread_cond_destroy)(c);
destroy_cond(c);
int res = REAL(pthread_cond_destroy)(cond);
return res;
}

Expand Down
Loading