1 /* Malloc implementation for multiple threads without lock contention.
2 Copyright (C) 2001-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Wolfram Gloger <wg@malloc.de>, 2001.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If
18 not, see <http://www.gnu.org/licenses/>. */
22 /* Compile-time constants. */
24 #define HEAP_MIN_SIZE (32 * 1024)
26 # ifdef DEFAULT_MMAP_THRESHOLD_MAX
27 # define HEAP_MAX_SIZE (2 * DEFAULT_MMAP_THRESHOLD_MAX)
29 # define HEAP_MAX_SIZE (1024 * 1024) /* must be a power of two */
33 /* HEAP_MIN_SIZE and HEAP_MAX_SIZE limit the size of mmap()ed heaps
34 that are dynamically created for multi-threaded programs. The
35 maximum size must be a power of two, for fast determination of
36 which heap belongs to a chunk. It should be much larger than the
37 mmap threshold, so that requests with a size just below that
38 threshold can be fulfilled without creating too many heaps. */
40 /***************************************************************************/
42 #define top(ar_ptr) ((ar_ptr)->top)
44 /* A heap is a single contiguous memory region holding (coalesceable)
45 malloc_chunks. It is allocated with mmap() and always starts at an
46 address aligned to HEAP_MAX_SIZE. */
48 typedef struct _heap_info
50 mstate ar_ptr
; /* Arena for this heap. */
51 struct _heap_info
*prev
; /* Previous heap. */
52 size_t size
; /* Current size in bytes. */
53 size_t mprotect_size
; /* Size in bytes that has been mprotected
54 PROT_READ|PROT_WRITE. */
55 /* Make sure the following data is properly aligned, particularly
56 that sizeof (heap_info) + 2 * SIZE_SZ is a multiple of
58 char pad
[-6 * SIZE_SZ
& MALLOC_ALIGN_MASK
];
61 /* Get a compile-time error if the heap_info padding is not correct
62 to make alignment work as expected in sYSMALLOc. */
63 extern int sanity_check_heap_info_alignment
[(sizeof (heap_info
)
64 + 2 * SIZE_SZ
) % MALLOC_ALIGNMENT
67 /* Thread specific data. */
69 static __thread mstate thread_arena attribute_tls_model_ie
;
71 /* Arena free list. free_list_lock synchronizes access to the
72 free_list variable below, and the next_free and attached_threads
73 members of struct malloc_state objects. No other locks must be
74 acquired after free_list_lock has been acquired. */
76 __libc_lock_define_initialized (static, free_list_lock
);
77 static size_t narenas
= 1;
78 static mstate free_list
;
80 /* list_lock prevents concurrent writes to the next member of struct
83 Read access to the next member is supposed to synchronize with the
84 atomic_write_barrier and the write to the next member in
85 _int_new_arena. This suffers from data races; see the FIXME
86 comments in _int_new_arena and reused_arena.
88 list_lock also prevents concurrent forks. At the time list_lock is
89 acquired, no arena lock must have been acquired, but it is
90 permitted to acquire arena locks subsequently, while list_lock is
92 __libc_lock_define_initialized (static, list_lock
);
94 /* Already initialized? */
95 int __malloc_initialized
= -1;
97 /**************************************************************************/
100 /* arena_get() acquires an arena and locks the corresponding mutex.
101 First, try the one last locked successfully by this thread. (This
102 is the common case and handled with a macro for speed.) Then, loop
103 once over the circularly linked list of arenas. If no arena is
104 readily available, create a new one. In this latter case, `size'
105 is just a hint as to how much memory will be required immediately
108 #define arena_get(ptr, size) do { \
109 ptr = thread_arena; \
110 arena_lock (ptr, size); \
113 #define arena_lock(ptr, size) do { \
114 if (ptr && !arena_is_corrupt (ptr)) \
115 __libc_lock_lock (ptr->mutex); \
117 ptr = arena_get2 ((size), NULL); \
120 /* find the heap and corresponding arena for a given ptr */
122 #define heap_for_ptr(ptr) \
123 ((heap_info *) ((unsigned long) (ptr) & ~(HEAP_MAX_SIZE - 1)))
124 #define arena_for_chunk(ptr) \
125 (chunk_main_arena (ptr) ? &main_arena : heap_for_ptr (ptr)->ar_ptr)
128 /**************************************************************************/
130 /* atfork support. */
132 /* The following three functions are called around fork from a
133 multi-threaded process. We do not use the general fork handler
134 mechanism to make sure that our handlers are the last ones being
135 called, so that other fork handlers can use the malloc
140 __malloc_fork_lock_parent (void)
142 if (__malloc_initialized
< 1)
145 /* We do not acquire free_list_lock here because we completely
146 reconstruct free_list in __malloc_fork_unlock_child. */
148 __libc_lock_lock (list_lock
);
150 for (mstate ar_ptr
= &main_arena
;; )
152 __libc_lock_lock (ar_ptr
->mutex
);
153 ar_ptr
= ar_ptr
->next
;
154 if (ar_ptr
== &main_arena
)
161 __malloc_fork_unlock_parent (void)
163 if (__malloc_initialized
< 1)
166 for (mstate ar_ptr
= &main_arena
;; )
168 __libc_lock_unlock (ar_ptr
->mutex
);
169 ar_ptr
= ar_ptr
->next
;
170 if (ar_ptr
== &main_arena
)
173 __libc_lock_unlock (list_lock
);
178 __malloc_fork_unlock_child (void)
180 if (__malloc_initialized
< 1)
183 /* Push all arenas to the free list, except thread_arena, which is
184 attached to the current thread. */
185 __libc_lock_init (free_list_lock
);
186 if (thread_arena
!= NULL
)
187 thread_arena
->attached_threads
= 1;
189 for (mstate ar_ptr
= &main_arena
;; )
191 __libc_lock_init (ar_ptr
->mutex
);
192 if (ar_ptr
!= thread_arena
)
194 /* This arena is no longer attached to any thread. */
195 ar_ptr
->attached_threads
= 0;
196 ar_ptr
->next_free
= free_list
;
199 ar_ptr
= ar_ptr
->next
;
200 if (ar_ptr
== &main_arena
)
204 __libc_lock_init (list_lock
);
207 /* Initialization routine. */
209 extern char **_environ
;
213 next_env_entry (char ***position
)
215 char **current
= *position
;
218 while (*current
!= NULL
)
220 if (__builtin_expect ((*current
)[0] == 'M', 0)
221 && (*current
)[1] == 'A'
222 && (*current
)[2] == 'L'
223 && (*current
)[3] == 'L'
224 && (*current
)[4] == 'O'
225 && (*current
)[5] == 'C'
226 && (*current
)[6] == '_')
228 result
= &(*current
)[7];
230 /* Save current position for next visit. */
231 *position
= ++current
;
245 __failing_morecore (ptrdiff_t d
)
247 return (void *) MORECORE_FAILURE
;
250 extern struct dl_open_hook
*_dl_open_hook
;
251 libc_hidden_proto (_dl_open_hook
);
257 if (__malloc_initialized
>= 0)
260 __malloc_initialized
= 0;
263 /* In case this libc copy is in a non-default namespace, never use brk.
264 Likewise if dlopened from statically linked program. */
268 if (_dl_open_hook
!= NULL
269 || (_dl_addr (ptmalloc_init
, &di
, &l
, NULL
) != 0
270 && l
->l_ns
!= LM_ID_BASE
))
271 __morecore
= __failing_morecore
;
274 thread_arena
= &main_arena
;
275 const char *s
= NULL
;
276 if (__glibc_likely (_environ
!= NULL
))
278 char **runp
= _environ
;
281 while (__builtin_expect ((envline
= next_env_entry (&runp
)) != NULL
,
284 size_t len
= strcspn (envline
, "=");
286 if (envline
[len
] != '=')
287 /* This is a "MALLOC_" variable at the end of the string
288 without a '=' character. Ignore it since otherwise we
289 will access invalid memory below. */
295 if (memcmp (envline
, "CHECK_", 6) == 0)
299 if (!__builtin_expect (__libc_enable_secure
, 0))
301 if (memcmp (envline
, "TOP_PAD_", 8) == 0)
302 __libc_mallopt (M_TOP_PAD
, atoi (&envline
[9]));
303 else if (memcmp (envline
, "PERTURB_", 8) == 0)
304 __libc_mallopt (M_PERTURB
, atoi (&envline
[9]));
308 if (!__builtin_expect (__libc_enable_secure
, 0))
310 if (memcmp (envline
, "MMAP_MAX_", 9) == 0)
311 __libc_mallopt (M_MMAP_MAX
, atoi (&envline
[10]));
312 else if (memcmp (envline
, "ARENA_MAX", 9) == 0)
313 __libc_mallopt (M_ARENA_MAX
, atoi (&envline
[10]));
317 if (!__builtin_expect (__libc_enable_secure
, 0))
319 if (memcmp (envline
, "ARENA_TEST", 10) == 0)
320 __libc_mallopt (M_ARENA_TEST
, atoi (&envline
[11]));
324 if (!__builtin_expect (__libc_enable_secure
, 0))
326 if (memcmp (envline
, "TRIM_THRESHOLD_", 15) == 0)
327 __libc_mallopt (M_TRIM_THRESHOLD
, atoi (&envline
[16]));
328 else if (memcmp (envline
, "MMAP_THRESHOLD_", 15) == 0)
329 __libc_mallopt (M_MMAP_THRESHOLD
, atoi (&envline
[16]));
339 __libc_mallopt (M_CHECK_ACTION
, (int) (s
[0] - '0'));
340 if (check_action
!= 0)
341 __malloc_check_init ();
343 #if HAVE_MALLOC_INIT_HOOK
344 void (*hook
) (void) = atomic_forced_read (__malloc_initialize_hook
);
348 __malloc_initialized
= 1;
351 /* Managing heaps and arenas (for concurrent threads) */
355 /* Print the complete contents of a single heap to stderr. */
358 dump_heap (heap_info
*heap
)
363 fprintf (stderr
, "Heap %p, size %10lx:\n", heap
, (long) heap
->size
);
364 ptr
= (heap
->ar_ptr
!= (mstate
) (heap
+ 1)) ?
365 (char *) (heap
+ 1) : (char *) (heap
+ 1) + sizeof (struct malloc_state
);
366 p
= (mchunkptr
) (((unsigned long) ptr
+ MALLOC_ALIGN_MASK
) &
370 fprintf (stderr
, "chunk %p size %10lx", p
, (long) p
->size
);
371 if (p
== top (heap
->ar_ptr
))
373 fprintf (stderr
, " (top)\n");
376 else if (p
->size
== (0 | PREV_INUSE
))
378 fprintf (stderr
, " (fence)\n");
381 fprintf (stderr
, "\n");
385 #endif /* MALLOC_DEBUG > 1 */
387 /* If consecutive mmap (0, HEAP_MAX_SIZE << 1, ...) calls return decreasing
388 addresses as opposed to increasing, new_heap would badly fragment the
389 address space. In that case remember the second HEAP_MAX_SIZE part
390 aligned to HEAP_MAX_SIZE from last mmap (0, HEAP_MAX_SIZE << 1, ...)
391 call (if it is already aligned) and try to reuse it next time. We need
392 no locking for it, as kernel ensures the atomicity for us - worst case
393 we'll call mmap (addr, HEAP_MAX_SIZE, ...) for some value of addr in
394 multiple threads, but only one will succeed. */
395 static char *aligned_heap_area
;
397 /* Create a new heap. size is automatically rounded up to a multiple
402 new_heap (size_t size
, size_t top_pad
)
404 size_t pagesize
= GLRO (dl_pagesize
);
409 if (size
+ top_pad
< HEAP_MIN_SIZE
)
410 size
= HEAP_MIN_SIZE
;
411 else if (size
+ top_pad
<= HEAP_MAX_SIZE
)
413 else if (size
> HEAP_MAX_SIZE
)
416 size
= HEAP_MAX_SIZE
;
417 size
= ALIGN_UP (size
, pagesize
);
419 /* A memory region aligned to a multiple of HEAP_MAX_SIZE is needed.
420 No swap space needs to be reserved for the following large
421 mapping (on Linux, this is the case for all non-writable mappings
424 if (aligned_heap_area
)
426 p2
= (char *) MMAP (aligned_heap_area
, HEAP_MAX_SIZE
, PROT_NONE
,
428 aligned_heap_area
= NULL
;
429 if (p2
!= MAP_FAILED
&& ((unsigned long) p2
& (HEAP_MAX_SIZE
- 1)))
431 __munmap (p2
, HEAP_MAX_SIZE
);
435 if (p2
== MAP_FAILED
)
437 p1
= (char *) MMAP (0, HEAP_MAX_SIZE
<< 1, PROT_NONE
, MAP_NORESERVE
);
438 if (p1
!= MAP_FAILED
)
440 p2
= (char *) (((unsigned long) p1
+ (HEAP_MAX_SIZE
- 1))
441 & ~(HEAP_MAX_SIZE
- 1));
446 aligned_heap_area
= p2
+ HEAP_MAX_SIZE
;
447 __munmap (p2
+ HEAP_MAX_SIZE
, HEAP_MAX_SIZE
- ul
);
451 /* Try to take the chance that an allocation of only HEAP_MAX_SIZE
452 is already aligned. */
453 p2
= (char *) MMAP (0, HEAP_MAX_SIZE
, PROT_NONE
, MAP_NORESERVE
);
454 if (p2
== MAP_FAILED
)
457 if ((unsigned long) p2
& (HEAP_MAX_SIZE
- 1))
459 __munmap (p2
, HEAP_MAX_SIZE
);
464 if (__mprotect (p2
, size
, PROT_READ
| PROT_WRITE
) != 0)
466 __munmap (p2
, HEAP_MAX_SIZE
);
469 h
= (heap_info
*) p2
;
471 h
->mprotect_size
= size
;
472 LIBC_PROBE (memory_heap_new
, 2, h
, h
->size
);
476 /* Grow a heap. size is automatically rounded up to a
477 multiple of the page size. */
480 grow_heap (heap_info
*h
, long diff
)
482 size_t pagesize
= GLRO (dl_pagesize
);
485 diff
= ALIGN_UP (diff
, pagesize
);
486 new_size
= (long) h
->size
+ diff
;
487 if ((unsigned long) new_size
> (unsigned long) HEAP_MAX_SIZE
)
490 if ((unsigned long) new_size
> h
->mprotect_size
)
492 if (__mprotect ((char *) h
+ h
->mprotect_size
,
493 (unsigned long) new_size
- h
->mprotect_size
,
494 PROT_READ
| PROT_WRITE
) != 0)
497 h
->mprotect_size
= new_size
;
501 LIBC_PROBE (memory_heap_more
, 2, h
, h
->size
);
508 shrink_heap (heap_info
*h
, long diff
)
512 new_size
= (long) h
->size
- diff
;
513 if (new_size
< (long) sizeof (*h
))
516 /* Try to re-map the extra heap space freshly to save memory, and make it
517 inaccessible. See malloc-sysdep.h to know when this is true. */
518 if (__glibc_unlikely (check_may_shrink_heap ()))
520 if ((char *) MMAP ((char *) h
+ new_size
, diff
, PROT_NONE
,
521 MAP_FIXED
) == (char *) MAP_FAILED
)
524 h
->mprotect_size
= new_size
;
527 __madvise ((char *) h
+ new_size
, diff
, MADV_DONTNEED
);
528 /*fprintf(stderr, "shrink %p %08lx\n", h, new_size);*/
531 LIBC_PROBE (memory_heap_less
, 2, h
, h
->size
);
537 #define delete_heap(heap) \
539 if ((char *) (heap) + HEAP_MAX_SIZE == aligned_heap_area) \
540 aligned_heap_area = NULL; \
541 __munmap ((char *) (heap), HEAP_MAX_SIZE); \
546 heap_trim (heap_info
*heap
, size_t pad
)
548 mstate ar_ptr
= heap
->ar_ptr
;
549 unsigned long pagesz
= GLRO (dl_pagesize
);
550 mchunkptr top_chunk
= top (ar_ptr
), p
, bck
, fwd
;
551 heap_info
*prev_heap
;
552 long new_size
, top_size
, top_area
, extra
, prev_size
, misalign
;
554 /* Can this heap go away completely? */
555 while (top_chunk
== chunk_at_offset (heap
, sizeof (*heap
)))
557 prev_heap
= heap
->prev
;
558 prev_size
= prev_heap
->size
- (MINSIZE
- 2 * SIZE_SZ
);
559 p
= chunk_at_offset (prev_heap
, prev_size
);
560 /* fencepost must be properly aligned. */
561 misalign
= ((long) p
) & MALLOC_ALIGN_MASK
;
562 p
= chunk_at_offset (prev_heap
, prev_size
- misalign
);
563 assert (chunksize_nomask (p
) == (0 | PREV_INUSE
)); /* must be fencepost */
565 new_size
= chunksize (p
) + (MINSIZE
- 2 * SIZE_SZ
) + misalign
;
566 assert (new_size
> 0 && new_size
< (long) (2 * MINSIZE
));
568 new_size
+= prev_size (p
);
569 assert (new_size
> 0 && new_size
< HEAP_MAX_SIZE
);
570 if (new_size
+ (HEAP_MAX_SIZE
- prev_heap
->size
) < pad
+ MINSIZE
+ pagesz
)
572 ar_ptr
->system_mem
-= heap
->size
;
573 LIBC_PROBE (memory_heap_free
, 2, heap
, heap
->size
);
576 if (!prev_inuse (p
)) /* consolidate backward */
579 unlink (ar_ptr
, p
, bck
, fwd
);
581 assert (((unsigned long) ((char *) p
+ new_size
) & (pagesz
- 1)) == 0);
582 assert (((char *) p
+ new_size
) == ((char *) heap
+ heap
->size
));
583 top (ar_ptr
) = top_chunk
= p
;
584 set_head (top_chunk
, new_size
| PREV_INUSE
);
585 /*check_chunk(ar_ptr, top_chunk);*/
588 /* Uses similar logic for per-thread arenas as the main arena with systrim
589 and _int_free by preserving the top pad and rounding down to the nearest
591 top_size
= chunksize (top_chunk
);
592 if ((unsigned long)(top_size
) <
593 (unsigned long)(mp_
.trim_threshold
))
596 top_area
= top_size
- MINSIZE
- 1;
597 if (top_area
< 0 || (size_t) top_area
<= pad
)
600 /* Release in pagesize units and round down to the nearest page. */
601 extra
= ALIGN_DOWN(top_area
- pad
, pagesz
);
606 if (shrink_heap (heap
, extra
) != 0)
609 ar_ptr
->system_mem
-= extra
;
611 /* Success. Adjust top accordingly. */
612 set_head (top_chunk
, (top_size
- extra
) | PREV_INUSE
);
613 /*check_chunk(ar_ptr, top_chunk);*/
617 /* Create a new arena with initial size "size". */
619 /* If REPLACED_ARENA is not NULL, detach it from this thread. Must be
620 called while free_list_lock is held. */
622 detach_arena (mstate replaced_arena
)
624 if (replaced_arena
!= NULL
)
626 assert (replaced_arena
->attached_threads
> 0);
627 /* The current implementation only detaches from main_arena in
628 case of allocation failure. This means that it is likely not
629 beneficial to put the arena on free_list even if the
630 reference count reaches zero. */
631 --replaced_arena
->attached_threads
;
636 _int_new_arena (size_t size
)
641 unsigned long misalign
;
643 h
= new_heap (size
+ (sizeof (*h
) + sizeof (*a
) + MALLOC_ALIGNMENT
),
647 /* Maybe size is too large to fit in a single heap. So, just try
648 to create a minimally-sized arena and let _int_malloc() attempt
649 to deal with the large request via mmap_chunk(). */
650 h
= new_heap (sizeof (*h
) + sizeof (*a
) + MALLOC_ALIGNMENT
, mp_
.top_pad
);
654 a
= h
->ar_ptr
= (mstate
) (h
+ 1);
655 malloc_init_state (a
);
656 a
->attached_threads
= 1;
658 a
->system_mem
= a
->max_system_mem
= h
->size
;
660 /* Set up the top chunk, with proper alignment. */
661 ptr
= (char *) (a
+ 1);
662 misalign
= (unsigned long) chunk2mem (ptr
) & MALLOC_ALIGN_MASK
;
664 ptr
+= MALLOC_ALIGNMENT
- misalign
;
665 top (a
) = (mchunkptr
) ptr
;
666 set_head (top (a
), (((char *) h
+ h
->size
) - ptr
) | PREV_INUSE
);
668 LIBC_PROBE (memory_arena_new
, 2, a
, size
);
669 mstate replaced_arena
= thread_arena
;
671 __libc_lock_init (a
->mutex
);
673 __libc_lock_lock (list_lock
);
675 /* Add the new arena to the global list. */
676 a
->next
= main_arena
.next
;
677 /* FIXME: The barrier is an attempt to synchronize with read access
678 in reused_arena, which does not acquire list_lock while
679 traversing the list. */
680 atomic_write_barrier ();
683 __libc_lock_unlock (list_lock
);
685 __libc_lock_lock (free_list_lock
);
686 detach_arena (replaced_arena
);
687 __libc_lock_unlock (free_list_lock
);
689 /* Lock this arena. NB: Another thread may have been attached to
690 this arena because the arena is now accessible from the
691 main_arena.next list and could have been picked by reused_arena.
692 This can only happen for the last arena created (before the arena
693 limit is reached). At this point, some arena has to be attached
694 to two threads. We could acquire the arena lock before list_lock
695 to make it less likely that reused_arena picks this new arena,
696 but this could result in a deadlock with
697 __malloc_fork_lock_parent. */
699 __libc_lock_lock (a
->mutex
);
705 /* Remove an arena from free_list. */
709 mstate replaced_arena
= thread_arena
;
710 mstate result
= free_list
;
713 __libc_lock_lock (free_list_lock
);
717 free_list
= result
->next_free
;
719 /* The arena will be attached to this thread. */
720 assert (result
->attached_threads
== 0);
721 result
->attached_threads
= 1;
723 detach_arena (replaced_arena
);
725 __libc_lock_unlock (free_list_lock
);
729 LIBC_PROBE (memory_arena_reuse_free_list
, 1, result
);
730 __libc_lock_lock (result
->mutex
);
731 thread_arena
= result
;
738 /* Remove the arena from the free list (if it is present).
739 free_list_lock must have been acquired by the caller. */
741 remove_from_free_list (mstate arena
)
743 mstate
*previous
= &free_list
;
744 for (mstate p
= free_list
; p
!= NULL
; p
= p
->next_free
)
746 assert (p
->attached_threads
== 0);
749 /* Remove the requested arena from the list. */
750 *previous
= p
->next_free
;
754 previous
= &p
->next_free
;
758 /* Lock and return an arena that can be reused for memory allocation.
759 Avoid AVOID_ARENA as we have already failed to allocate memory in
760 it and it is currently locked. */
762 reused_arena (mstate avoid_arena
)
765 /* FIXME: Access to next_to_use suffers from data races. */
766 static mstate next_to_use
;
767 if (next_to_use
== NULL
)
768 next_to_use
= &main_arena
;
770 /* Iterate over all arenas (including those linked from
772 result
= next_to_use
;
775 if (!arena_is_corrupt (result
) && !__libc_lock_trylock (result
->mutex
))
778 /* FIXME: This is a data race, see _int_new_arena. */
779 result
= result
->next
;
781 while (result
!= next_to_use
);
783 /* Avoid AVOID_ARENA as we have already failed to allocate memory
784 in that arena and it is currently locked. */
785 if (result
== avoid_arena
)
786 result
= result
->next
;
788 /* Make sure that the arena we get is not corrupted. */
789 mstate begin
= result
;
790 while (arena_is_corrupt (result
) || result
== avoid_arena
)
792 result
= result
->next
;
794 /* We looped around the arena list. We could not find any
795 arena that was either not corrupted or not the one we
800 /* No arena available without contention. Wait for the next in line. */
801 LIBC_PROBE (memory_arena_reuse_wait
, 3, &result
->mutex
, result
, avoid_arena
);
802 __libc_lock_lock (result
->mutex
);
805 /* Attach the arena to the current thread. */
807 /* Update the arena thread attachment counters. */
808 mstate replaced_arena
= thread_arena
;
809 __libc_lock_lock (free_list_lock
);
810 detach_arena (replaced_arena
);
812 /* We may have picked up an arena on the free list. We need to
813 preserve the invariant that no arena on the free list has a
814 positive attached_threads counter (otherwise,
815 arena_thread_freeres cannot use the counter to determine if the
816 arena needs to be put on the free list). We unconditionally
817 remove the selected arena from the free list. The caller of
818 reused_arena checked the free list and observed it to be empty,
819 so the list is very short. */
820 remove_from_free_list (result
);
822 ++result
->attached_threads
;
824 __libc_lock_unlock (free_list_lock
);
827 LIBC_PROBE (memory_arena_reuse
, 2, result
, avoid_arena
);
828 thread_arena
= result
;
829 next_to_use
= result
->next
;
836 arena_get2 (size_t size
, mstate avoid_arena
)
840 static size_t narenas_limit
;
842 a
= get_free_list ();
845 /* Nothing immediately available, so generate a new arena. */
846 if (narenas_limit
== 0)
848 if (mp_
.arena_max
!= 0)
849 narenas_limit
= mp_
.arena_max
;
850 else if (narenas
> mp_
.arena_test
)
852 int n
= __get_nprocs ();
855 narenas_limit
= NARENAS_FROM_NCORES (n
);
857 /* We have no information about the system. Assume two
859 narenas_limit
= NARENAS_FROM_NCORES (2);
864 /* NB: the following depends on the fact that (size_t)0 - 1 is a
865 very large number and that the underflow is OK. If arena_max
866 is set the value of arena_test is irrelevant. If arena_test
867 is set but narenas is not yet larger or equal to arena_test
868 narenas_limit is 0. There is no possibility for narenas to
869 be too big for the test to always fail since there is not
870 enough address space to create that many arenas. */
871 if (__glibc_unlikely (n
<= narenas_limit
- 1))
873 if (catomic_compare_and_exchange_bool_acq (&narenas
, n
+ 1, n
))
875 a
= _int_new_arena (size
);
876 if (__glibc_unlikely (a
== NULL
))
877 catomic_decrement (&narenas
);
880 a
= reused_arena (avoid_arena
);
885 /* If we don't have the main arena, then maybe the failure is due to running
886 out of mmapped areas, so we can try allocating on the main arena.
887 Otherwise, it is likely that sbrk() has failed and there is still a chance
888 to mmap(), so try one of the other arenas. */
890 arena_get_retry (mstate ar_ptr
, size_t bytes
)
892 LIBC_PROBE (memory_arena_retry
, 2, bytes
, ar_ptr
);
893 if (ar_ptr
!= &main_arena
)
895 __libc_lock_unlock (ar_ptr
->mutex
);
896 /* Don't touch the main arena if it is corrupt. */
897 if (arena_is_corrupt (&main_arena
))
900 ar_ptr
= &main_arena
;
901 __libc_lock_lock (ar_ptr
->mutex
);
905 __libc_lock_unlock (ar_ptr
->mutex
);
906 ar_ptr
= arena_get2 (bytes
, ar_ptr
);
912 static void __attribute__ ((section ("__libc_thread_freeres_fn")))
913 arena_thread_freeres (void)
915 mstate a
= thread_arena
;
920 __libc_lock_lock (free_list_lock
);
921 /* If this was the last attached thread for this arena, put the
922 arena on the free list. */
923 assert (a
->attached_threads
> 0);
924 if (--a
->attached_threads
== 0)
926 a
->next_free
= free_list
;
929 __libc_lock_unlock (free_list_lock
);
932 text_set_element (__libc_thread_subfreeres
, arena_thread_freeres
);