#include <urcu/system.h>
#include <urcu/uatomic.h>
#include <urcu/compiler.h>
-#include <urcu/tls-compat.h>
#include <urcu/arch.h>
#include <lttng/ust-libc-wrapper.h>
uatomic_set(&ust_malloc_lock, 0);
}
-#define calloc static_calloc
-#define pthread_mutex_lock ust_malloc_spin_lock
-#define pthread_mutex_unlock ust_malloc_spin_unlock
-static DEFINE_URCU_TLS(int, malloc_nesting);
-#undef pthread_mutex_unlock
-#undef pthread_mutex_lock
-#undef calloc
+/*
+ * Use initial-exec TLS model for the malloc_nesting nesting guard
+ * variable to ensure that the glibc implementation of the TLS access
+ * don't trigger infinite recursion by calling the memory allocator
+ * wrapper functions, which could happen with global-dynamic.
+ */
+static __thread __attribute__((tls_model("initial-exec"))) int malloc_nesting;
/*
* Static allocator to use when initially executing dlsym(). It keeps a
{
void *retval;
- URCU_TLS(malloc_nesting)++;
+ malloc_nesting++;
if (cur_alloc.malloc == NULL) {
lookup_all_symbols();
if (cur_alloc.malloc == NULL) {
}
}
retval = cur_alloc.malloc(size);
- if (URCU_TLS(malloc_nesting) == 1) {
+ if (malloc_nesting == 1) {
lttng_ust_tracepoint(lttng_ust_libc, malloc,
size, retval, LTTNG_UST_CALLER_IP());
}
- URCU_TLS(malloc_nesting)--;
+ malloc_nesting--;
return retval;
}
void free(void *ptr)
{
- URCU_TLS(malloc_nesting)++;
+ malloc_nesting++;
/*
* Check whether the memory was allocated with
* static_calloc_align, in which case there is nothing to free.
goto end;
}
- if (URCU_TLS(malloc_nesting) == 1) {
+ if (malloc_nesting == 1) {
lttng_ust_tracepoint(lttng_ust_libc, free,
ptr, LTTNG_UST_CALLER_IP());
}
}
cur_alloc.free(ptr);
end:
- URCU_TLS(malloc_nesting)--;
+ malloc_nesting--;
}
void *calloc(size_t nmemb, size_t size)
{
void *retval;
- URCU_TLS(malloc_nesting)++;
+ malloc_nesting++;
if (cur_alloc.calloc == NULL) {
lookup_all_symbols();
if (cur_alloc.calloc == NULL) {
}
}
retval = cur_alloc.calloc(nmemb, size);
- if (URCU_TLS(malloc_nesting) == 1) {
+ if (malloc_nesting == 1) {
lttng_ust_tracepoint(lttng_ust_libc, calloc,
nmemb, size, retval, LTTNG_UST_CALLER_IP());
}
- URCU_TLS(malloc_nesting)--;
+ malloc_nesting--;
return retval;
}
{
void *retval;
- URCU_TLS(malloc_nesting)++;
+ malloc_nesting++;
/*
* Check whether the memory was allocated with
* static_calloc_align, in which case there is nothing
}
retval = cur_alloc.realloc(ptr, size);
end:
- if (URCU_TLS(malloc_nesting) == 1) {
+ if (malloc_nesting == 1) {
lttng_ust_tracepoint(lttng_ust_libc, realloc,
ptr, size, retval, LTTNG_UST_CALLER_IP());
}
- URCU_TLS(malloc_nesting)--;
+ malloc_nesting--;
return retval;
}
{
void *retval;
- URCU_TLS(malloc_nesting)++;
+ malloc_nesting++;
if (cur_alloc.memalign == NULL) {
lookup_all_symbols();
if (cur_alloc.memalign == NULL) {
}
}
retval = cur_alloc.memalign(alignment, size);
- if (URCU_TLS(malloc_nesting) == 1) {
+ if (malloc_nesting == 1) {
lttng_ust_tracepoint(lttng_ust_libc, memalign,
alignment, size, retval,
LTTNG_UST_CALLER_IP());
}
- URCU_TLS(malloc_nesting)--;
+ malloc_nesting--;
return retval;
}
{
int retval;
- URCU_TLS(malloc_nesting)++;
+ malloc_nesting++;
if (cur_alloc.posix_memalign == NULL) {
lookup_all_symbols();
if (cur_alloc.posix_memalign == NULL) {
}
}
retval = cur_alloc.posix_memalign(memptr, alignment, size);
- if (URCU_TLS(malloc_nesting) == 1) {
+ if (malloc_nesting == 1) {
lttng_ust_tracepoint(lttng_ust_libc, posix_memalign,
*memptr, alignment, size,
retval, LTTNG_UST_CALLER_IP());
}
- URCU_TLS(malloc_nesting)--;
+ malloc_nesting--;
return retval;
}
-static
-void lttng_ust_malloc_nesting_alloc_tls(void)
-{
- __asm__ __volatile__ ("" : : "m" (URCU_TLS(malloc_nesting)));
-}
-
void lttng_ust_libc_wrapper_malloc_ctor(void)
{
/* Initialization already done */
if (cur_alloc.calloc) {
return;
}
- lttng_ust_malloc_nesting_alloc_tls();
/*
* Ensure the allocator is in place before the process becomes
* multithreaded.