Linux: consolidate dup2 implementation
[glibc.git] / malloc / arena.c
blobf381f183716e61d73559b46fbaec99c583c9ed33
1 /* Malloc implementation for multiple threads without lock contention.
2 Copyright (C) 2001-2022 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public License as
7 published by the Free Software Foundation; either version 2.1 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If
17 not, see <https://www.gnu.org/licenses/>. */
19 #include <stdbool.h>
21 #if HAVE_TUNABLES
22 # define TUNABLE_NAMESPACE malloc
23 #endif
24 #include <elf/dl-tunables.h>
26 /* Compile-time constants. */
28 #define HEAP_MIN_SIZE (32 * 1024)
29 #ifndef HEAP_MAX_SIZE
30 # ifdef DEFAULT_MMAP_THRESHOLD_MAX
31 # define HEAP_MAX_SIZE (2 * DEFAULT_MMAP_THRESHOLD_MAX)
32 # else
33 # define HEAP_MAX_SIZE (1024 * 1024) /* must be a power of two */
34 # endif
35 #endif
37 /* HEAP_MIN_SIZE and HEAP_MAX_SIZE limit the size of mmap()ed heaps
38 that are dynamically created for multi-threaded programs. The
39 maximum size must be a power of two, for fast determination of
40 which heap belongs to a chunk. It should be much larger than the
41 mmap threshold, so that requests with a size just below that
42 threshold can be fulfilled without creating too many heaps. */
44 /* When huge pages are used to create new arenas, the maximum and minumum
45 size are based on the runtime defined huge page size. */
47 static inline size_t
48 heap_min_size (void)
50 #if HAVE_TUNABLES
51 return mp_.hp_pagesize == 0 ? HEAP_MIN_SIZE : mp_.hp_pagesize;
52 #else
53 return HEAP_MIN_SIZE;
54 #endif
57 static inline size_t
58 heap_max_size (void)
60 #if HAVE_TUNABLES
61 return mp_.hp_pagesize == 0 ? HEAP_MAX_SIZE : mp_.hp_pagesize * 4;
62 #else
63 return HEAP_MAX_SIZE;
64 #endif
67 /***************************************************************************/
69 #define top(ar_ptr) ((ar_ptr)->top)
71 /* A heap is a single contiguous memory region holding (coalesceable)
72 malloc_chunks. It is allocated with mmap() and always starts at an
73 address aligned to HEAP_MAX_SIZE. */
75 typedef struct _heap_info
77 mstate ar_ptr; /* Arena for this heap. */
78 struct _heap_info *prev; /* Previous heap. */
79 size_t size; /* Current size in bytes. */
80 size_t mprotect_size; /* Size in bytes that has been mprotected
81 PROT_READ|PROT_WRITE. */
82 size_t pagesize; /* Page size used when allocating the arena. */
83 /* Make sure the following data is properly aligned, particularly
84 that sizeof (heap_info) + 2 * SIZE_SZ is a multiple of
85 MALLOC_ALIGNMENT. */
86 char pad[-3 * SIZE_SZ & MALLOC_ALIGN_MASK];
87 } heap_info;
89 /* Get a compile-time error if the heap_info padding is not correct
90 to make alignment work as expected in sYSMALLOc. */
91 extern int sanity_check_heap_info_alignment[(sizeof (heap_info)
92 + 2 * SIZE_SZ) % MALLOC_ALIGNMENT
93 ? -1 : 1];
95 /* Thread specific data. */
97 static __thread mstate thread_arena attribute_tls_model_ie;
99 /* Arena free list. free_list_lock synchronizes access to the
100 free_list variable below, and the next_free and attached_threads
101 members of struct malloc_state objects. No other locks must be
102 acquired after free_list_lock has been acquired. */
104 __libc_lock_define_initialized (static, free_list_lock);
105 #if IS_IN (libc)
106 static size_t narenas = 1;
107 #endif
108 static mstate free_list;
110 /* list_lock prevents concurrent writes to the next member of struct
111 malloc_state objects.
113 Read access to the next member is supposed to synchronize with the
114 atomic_write_barrier and the write to the next member in
115 _int_new_arena. This suffers from data races; see the FIXME
116 comments in _int_new_arena and reused_arena.
118 list_lock also prevents concurrent forks. At the time list_lock is
119 acquired, no arena lock must have been acquired, but it is
120 permitted to acquire arena locks subsequently, while list_lock is
121 acquired. */
122 __libc_lock_define_initialized (static, list_lock);
124 /* Already initialized? */
125 static bool __malloc_initialized = false;
127 /**************************************************************************/
130 /* arena_get() acquires an arena and locks the corresponding mutex.
131 First, try the one last locked successfully by this thread. (This
132 is the common case and handled with a macro for speed.) Then, loop
133 once over the circularly linked list of arenas. If no arena is
134 readily available, create a new one. In this latter case, `size'
135 is just a hint as to how much memory will be required immediately
136 in the new arena. */
138 #define arena_get(ptr, size) do { \
139 ptr = thread_arena; \
140 arena_lock (ptr, size); \
141 } while (0)
143 #define arena_lock(ptr, size) do { \
144 if (ptr) \
145 __libc_lock_lock (ptr->mutex); \
146 else \
147 ptr = arena_get2 ((size), NULL); \
148 } while (0)
150 /* find the heap and corresponding arena for a given ptr */
152 static inline heap_info *
153 heap_for_ptr (void *ptr)
155 size_t max_size = heap_max_size ();
156 return PTR_ALIGN_DOWN (ptr, max_size);
159 static inline struct malloc_state *
160 arena_for_chunk (mchunkptr ptr)
162 return chunk_main_arena (ptr) ? &main_arena : heap_for_ptr (ptr)->ar_ptr;
166 /**************************************************************************/
168 /* atfork support. */
170 /* The following three functions are called around fork from a
171 multi-threaded process. We do not use the general fork handler
172 mechanism to make sure that our handlers are the last ones being
173 called, so that other fork handlers can use the malloc
174 subsystem. */
176 void
177 __malloc_fork_lock_parent (void)
179 if (!__malloc_initialized)
180 return;
182 /* We do not acquire free_list_lock here because we completely
183 reconstruct free_list in __malloc_fork_unlock_child. */
185 __libc_lock_lock (list_lock);
187 for (mstate ar_ptr = &main_arena;; )
189 __libc_lock_lock (ar_ptr->mutex);
190 ar_ptr = ar_ptr->next;
191 if (ar_ptr == &main_arena)
192 break;
196 void
197 __malloc_fork_unlock_parent (void)
199 if (!__malloc_initialized)
200 return;
202 for (mstate ar_ptr = &main_arena;; )
204 __libc_lock_unlock (ar_ptr->mutex);
205 ar_ptr = ar_ptr->next;
206 if (ar_ptr == &main_arena)
207 break;
209 __libc_lock_unlock (list_lock);
212 void
213 __malloc_fork_unlock_child (void)
215 if (!__malloc_initialized)
216 return;
218 /* Push all arenas to the free list, except thread_arena, which is
219 attached to the current thread. */
220 __libc_lock_init (free_list_lock);
221 if (thread_arena != NULL)
222 thread_arena->attached_threads = 1;
223 free_list = NULL;
224 for (mstate ar_ptr = &main_arena;; )
226 __libc_lock_init (ar_ptr->mutex);
227 if (ar_ptr != thread_arena)
229 /* This arena is no longer attached to any thread. */
230 ar_ptr->attached_threads = 0;
231 ar_ptr->next_free = free_list;
232 free_list = ar_ptr;
234 ar_ptr = ar_ptr->next;
235 if (ar_ptr == &main_arena)
236 break;
239 __libc_lock_init (list_lock);
242 #if HAVE_TUNABLES
243 # define TUNABLE_CALLBACK_FNDECL(__name, __type) \
244 static inline int do_ ## __name (__type value); \
245 static void \
246 TUNABLE_CALLBACK (__name) (tunable_val_t *valp) \
248 __type value = (__type) (valp)->numval; \
249 do_ ## __name (value); \
252 TUNABLE_CALLBACK_FNDECL (set_mmap_threshold, size_t)
253 TUNABLE_CALLBACK_FNDECL (set_mmaps_max, int32_t)
254 TUNABLE_CALLBACK_FNDECL (set_top_pad, size_t)
255 TUNABLE_CALLBACK_FNDECL (set_perturb_byte, int32_t)
256 TUNABLE_CALLBACK_FNDECL (set_trim_threshold, size_t)
257 TUNABLE_CALLBACK_FNDECL (set_arena_max, size_t)
258 TUNABLE_CALLBACK_FNDECL (set_arena_test, size_t)
259 #if USE_TCACHE
260 TUNABLE_CALLBACK_FNDECL (set_tcache_max, size_t)
261 TUNABLE_CALLBACK_FNDECL (set_tcache_count, size_t)
262 TUNABLE_CALLBACK_FNDECL (set_tcache_unsorted_limit, size_t)
263 #endif
264 TUNABLE_CALLBACK_FNDECL (set_mxfast, size_t)
265 TUNABLE_CALLBACK_FNDECL (set_hugetlb, size_t)
266 #else
267 /* Initialization routine. */
268 #include <string.h>
269 extern char **_environ;
271 static char *
272 next_env_entry (char ***position)
274 char **current = *position;
275 char *result = NULL;
277 while (*current != NULL)
279 if (__builtin_expect ((*current)[0] == 'M', 0)
280 && (*current)[1] == 'A'
281 && (*current)[2] == 'L'
282 && (*current)[3] == 'L'
283 && (*current)[4] == 'O'
284 && (*current)[5] == 'C'
285 && (*current)[6] == '_')
287 result = &(*current)[7];
289 /* Save current position for next visit. */
290 *position = ++current;
292 break;
295 ++current;
298 return result;
300 #endif
303 #if USE_TCACHE
304 static void tcache_key_initialize (void);
305 #endif
307 static void
308 ptmalloc_init (void)
310 if (__malloc_initialized)
311 return;
313 __malloc_initialized = true;
315 #if USE_TCACHE
316 tcache_key_initialize ();
317 #endif
319 #ifdef USE_MTAG
320 if ((TUNABLE_GET_FULL (glibc, mem, tagging, int32_t, NULL) & 1) != 0)
322 /* If the tunable says that we should be using tagged memory
323 and that morecore does not support tagged regions, then
324 disable it. */
325 if (__MTAG_SBRK_UNTAGGED)
326 __always_fail_morecore = true;
328 mtag_enabled = true;
329 mtag_mmap_flags = __MTAG_MMAP_FLAGS;
331 #endif
333 #if defined SHARED && IS_IN (libc)
334 /* In case this libc copy is in a non-default namespace, never use
335 brk. Likewise if dlopened from statically linked program. The
336 generic sbrk implementation also enforces this, but it is not
337 used on Hurd. */
338 if (!__libc_initial)
339 __always_fail_morecore = true;
340 #endif
342 thread_arena = &main_arena;
344 malloc_init_state (&main_arena);
346 #if HAVE_TUNABLES
347 TUNABLE_GET (top_pad, size_t, TUNABLE_CALLBACK (set_top_pad));
348 TUNABLE_GET (perturb, int32_t, TUNABLE_CALLBACK (set_perturb_byte));
349 TUNABLE_GET (mmap_threshold, size_t, TUNABLE_CALLBACK (set_mmap_threshold));
350 TUNABLE_GET (trim_threshold, size_t, TUNABLE_CALLBACK (set_trim_threshold));
351 TUNABLE_GET (mmap_max, int32_t, TUNABLE_CALLBACK (set_mmaps_max));
352 TUNABLE_GET (arena_max, size_t, TUNABLE_CALLBACK (set_arena_max));
353 TUNABLE_GET (arena_test, size_t, TUNABLE_CALLBACK (set_arena_test));
354 # if USE_TCACHE
355 TUNABLE_GET (tcache_max, size_t, TUNABLE_CALLBACK (set_tcache_max));
356 TUNABLE_GET (tcache_count, size_t, TUNABLE_CALLBACK (set_tcache_count));
357 TUNABLE_GET (tcache_unsorted_limit, size_t,
358 TUNABLE_CALLBACK (set_tcache_unsorted_limit));
359 # endif
360 TUNABLE_GET (mxfast, size_t, TUNABLE_CALLBACK (set_mxfast));
361 TUNABLE_GET (hugetlb, size_t, TUNABLE_CALLBACK (set_hugetlb));
362 if (mp_.hp_pagesize > 0)
363 /* Force mmap for main arena instead of sbrk, so hugepages are explicitly
364 used. */
365 __always_fail_morecore = true;
366 #else
367 if (__glibc_likely (_environ != NULL))
369 char **runp = _environ;
370 char *envline;
372 while (__builtin_expect ((envline = next_env_entry (&runp)) != NULL,
375 size_t len = strcspn (envline, "=");
377 if (envline[len] != '=')
378 /* This is a "MALLOC_" variable at the end of the string
379 without a '=' character. Ignore it since otherwise we
380 will access invalid memory below. */
381 continue;
383 switch (len)
385 case 8:
386 if (!__builtin_expect (__libc_enable_secure, 0))
388 if (memcmp (envline, "TOP_PAD_", 8) == 0)
389 __libc_mallopt (M_TOP_PAD, atoi (&envline[9]));
390 else if (memcmp (envline, "PERTURB_", 8) == 0)
391 __libc_mallopt (M_PERTURB, atoi (&envline[9]));
393 break;
394 case 9:
395 if (!__builtin_expect (__libc_enable_secure, 0))
397 if (memcmp (envline, "MMAP_MAX_", 9) == 0)
398 __libc_mallopt (M_MMAP_MAX, atoi (&envline[10]));
399 else if (memcmp (envline, "ARENA_MAX", 9) == 0)
400 __libc_mallopt (M_ARENA_MAX, atoi (&envline[10]));
402 break;
403 case 10:
404 if (!__builtin_expect (__libc_enable_secure, 0))
406 if (memcmp (envline, "ARENA_TEST", 10) == 0)
407 __libc_mallopt (M_ARENA_TEST, atoi (&envline[11]));
409 break;
410 case 15:
411 if (!__builtin_expect (__libc_enable_secure, 0))
413 if (memcmp (envline, "TRIM_THRESHOLD_", 15) == 0)
414 __libc_mallopt (M_TRIM_THRESHOLD, atoi (&envline[16]));
415 else if (memcmp (envline, "MMAP_THRESHOLD_", 15) == 0)
416 __libc_mallopt (M_MMAP_THRESHOLD, atoi (&envline[16]));
418 break;
419 default:
420 break;
424 #endif
427 /* Managing heaps and arenas (for concurrent threads) */
429 #if MALLOC_DEBUG > 1
431 /* Print the complete contents of a single heap to stderr. */
433 static void
434 dump_heap (heap_info *heap)
436 char *ptr;
437 mchunkptr p;
439 fprintf (stderr, "Heap %p, size %10lx:\n", heap, (long) heap->size);
440 ptr = (heap->ar_ptr != (mstate) (heap + 1)) ?
441 (char *) (heap + 1) : (char *) (heap + 1) + sizeof (struct malloc_state);
442 p = (mchunkptr) (((uintptr_t) ptr + MALLOC_ALIGN_MASK) &
443 ~MALLOC_ALIGN_MASK);
444 for (;; )
446 fprintf (stderr, "chunk %p size %10lx", p, (long) chunksize_nomask(p));
447 if (p == top (heap->ar_ptr))
449 fprintf (stderr, " (top)\n");
450 break;
452 else if (chunksize_nomask(p) == (0 | PREV_INUSE))
454 fprintf (stderr, " (fence)\n");
455 break;
457 fprintf (stderr, "\n");
458 p = next_chunk (p);
461 #endif /* MALLOC_DEBUG > 1 */
463 /* If consecutive mmap (0, HEAP_MAX_SIZE << 1, ...) calls return decreasing
464 addresses as opposed to increasing, new_heap would badly fragment the
465 address space. In that case remember the second HEAP_MAX_SIZE part
466 aligned to HEAP_MAX_SIZE from last mmap (0, HEAP_MAX_SIZE << 1, ...)
467 call (if it is already aligned) and try to reuse it next time. We need
468 no locking for it, as kernel ensures the atomicity for us - worst case
469 we'll call mmap (addr, HEAP_MAX_SIZE, ...) for some value of addr in
470 multiple threads, but only one will succeed. */
471 static char *aligned_heap_area;
473 /* Create a new heap. size is automatically rounded up to a multiple
474 of the page size. */
476 static heap_info *
477 alloc_new_heap (size_t size, size_t top_pad, size_t pagesize,
478 int mmap_flags)
480 char *p1, *p2;
481 unsigned long ul;
482 heap_info *h;
483 size_t min_size = heap_min_size ();
484 size_t max_size = heap_max_size ();
486 if (size + top_pad < min_size)
487 size = min_size;
488 else if (size + top_pad <= max_size)
489 size += top_pad;
490 else if (size > max_size)
491 return 0;
492 else
493 size = max_size;
494 size = ALIGN_UP (size, pagesize);
496 /* A memory region aligned to a multiple of max_size is needed.
497 No swap space needs to be reserved for the following large
498 mapping (on Linux, this is the case for all non-writable mappings
499 anyway). */
500 p2 = MAP_FAILED;
501 if (aligned_heap_area)
503 p2 = (char *) MMAP (aligned_heap_area, max_size, PROT_NONE, mmap_flags);
504 aligned_heap_area = NULL;
505 if (p2 != MAP_FAILED && ((unsigned long) p2 & (max_size - 1)))
507 __munmap (p2, max_size);
508 p2 = MAP_FAILED;
511 if (p2 == MAP_FAILED)
513 p1 = (char *) MMAP (0, max_size << 1, PROT_NONE, mmap_flags);
514 if (p1 != MAP_FAILED)
516 p2 = (char *) (((uintptr_t) p1 + (max_size - 1))
517 & ~(max_size - 1));
518 ul = p2 - p1;
519 if (ul)
520 __munmap (p1, ul);
521 else
522 aligned_heap_area = p2 + max_size;
523 __munmap (p2 + max_size, max_size - ul);
525 else
527 /* Try to take the chance that an allocation of only max_size
528 is already aligned. */
529 p2 = (char *) MMAP (0, max_size, PROT_NONE, mmap_flags);
530 if (p2 == MAP_FAILED)
531 return 0;
533 if ((unsigned long) p2 & (max_size - 1))
535 __munmap (p2, max_size);
536 return 0;
540 if (__mprotect (p2, size, mtag_mmap_flags | PROT_READ | PROT_WRITE) != 0)
542 __munmap (p2, max_size);
543 return 0;
546 madvise_thp (p2, size);
548 h = (heap_info *) p2;
549 h->size = size;
550 h->mprotect_size = size;
551 h->pagesize = pagesize;
552 LIBC_PROBE (memory_heap_new, 2, h, h->size);
553 return h;
556 static heap_info *
557 new_heap (size_t size, size_t top_pad)
559 #if HAVE_TUNABLES
560 if (__glibc_unlikely (mp_.hp_pagesize != 0))
562 heap_info *h = alloc_new_heap (size, top_pad, mp_.hp_pagesize,
563 mp_.hp_flags);
564 if (h != NULL)
565 return h;
567 #endif
568 return alloc_new_heap (size, top_pad, GLRO (dl_pagesize), 0);
571 /* Grow a heap. size is automatically rounded up to a
572 multiple of the page size. */
574 static int
575 grow_heap (heap_info *h, long diff)
577 size_t pagesize = h->pagesize;
578 size_t max_size = heap_max_size ();
579 long new_size;
581 diff = ALIGN_UP (diff, pagesize);
582 new_size = (long) h->size + diff;
583 if ((unsigned long) new_size > (unsigned long) max_size)
584 return -1;
586 if ((unsigned long) new_size > h->mprotect_size)
588 if (__mprotect ((char *) h + h->mprotect_size,
589 (unsigned long) new_size - h->mprotect_size,
590 mtag_mmap_flags | PROT_READ | PROT_WRITE) != 0)
591 return -2;
593 h->mprotect_size = new_size;
596 h->size = new_size;
597 LIBC_PROBE (memory_heap_more, 2, h, h->size);
598 return 0;
601 /* Shrink a heap. */
603 static int
604 shrink_heap (heap_info *h, long diff)
606 long new_size;
608 new_size = (long) h->size - diff;
609 if (new_size < (long) sizeof (*h))
610 return -1;
612 /* Try to re-map the extra heap space freshly to save memory, and make it
613 inaccessible. See malloc-sysdep.h to know when this is true. */
614 if (__glibc_unlikely (check_may_shrink_heap ()))
616 if ((char *) MMAP ((char *) h + new_size, diff, PROT_NONE,
617 MAP_FIXED) == (char *) MAP_FAILED)
618 return -2;
620 h->mprotect_size = new_size;
622 else
623 __madvise ((char *) h + new_size, diff, MADV_DONTNEED);
624 /*fprintf(stderr, "shrink %p %08lx\n", h, new_size);*/
626 h->size = new_size;
627 LIBC_PROBE (memory_heap_less, 2, h, h->size);
628 return 0;
631 /* Delete a heap. */
633 static int
634 heap_trim (heap_info *heap, size_t pad)
636 mstate ar_ptr = heap->ar_ptr;
637 mchunkptr top_chunk = top (ar_ptr), p;
638 heap_info *prev_heap;
639 long new_size, top_size, top_area, extra, prev_size, misalign;
640 size_t max_size = heap_max_size ();
642 /* Can this heap go away completely? */
643 while (top_chunk == chunk_at_offset (heap, sizeof (*heap)))
645 prev_heap = heap->prev;
646 prev_size = prev_heap->size - (MINSIZE - 2 * SIZE_SZ);
647 p = chunk_at_offset (prev_heap, prev_size);
648 /* fencepost must be properly aligned. */
649 misalign = ((long) p) & MALLOC_ALIGN_MASK;
650 p = chunk_at_offset (prev_heap, prev_size - misalign);
651 assert (chunksize_nomask (p) == (0 | PREV_INUSE)); /* must be fencepost */
652 p = prev_chunk (p);
653 new_size = chunksize (p) + (MINSIZE - 2 * SIZE_SZ) + misalign;
654 assert (new_size > 0 && new_size < (long) (2 * MINSIZE));
655 if (!prev_inuse (p))
656 new_size += prev_size (p);
657 assert (new_size > 0 && new_size < max_size);
658 if (new_size + (max_size - prev_heap->size) < pad + MINSIZE
659 + heap->pagesize)
660 break;
661 ar_ptr->system_mem -= heap->size;
662 LIBC_PROBE (memory_heap_free, 2, heap, heap->size);
663 if ((char *) heap + max_size == aligned_heap_area)
664 aligned_heap_area = NULL;
665 __munmap (heap, max_size);
666 heap = prev_heap;
667 if (!prev_inuse (p)) /* consolidate backward */
669 p = prev_chunk (p);
670 unlink_chunk (ar_ptr, p);
672 assert (((unsigned long) ((char *) p + new_size) & (heap->pagesize - 1))
673 == 0);
674 assert (((char *) p + new_size) == ((char *) heap + heap->size));
675 top (ar_ptr) = top_chunk = p;
676 set_head (top_chunk, new_size | PREV_INUSE);
677 /*check_chunk(ar_ptr, top_chunk);*/
680 /* Uses similar logic for per-thread arenas as the main arena with systrim
681 and _int_free by preserving the top pad and rounding down to the nearest
682 page. */
683 top_size = chunksize (top_chunk);
684 if ((unsigned long)(top_size) <
685 (unsigned long)(mp_.trim_threshold))
686 return 0;
688 top_area = top_size - MINSIZE - 1;
689 if (top_area < 0 || (size_t) top_area <= pad)
690 return 0;
692 /* Release in pagesize units and round down to the nearest page. */
693 extra = ALIGN_DOWN(top_area - pad, heap->pagesize);
694 if (extra == 0)
695 return 0;
697 /* Try to shrink. */
698 if (shrink_heap (heap, extra) != 0)
699 return 0;
701 ar_ptr->system_mem -= extra;
703 /* Success. Adjust top accordingly. */
704 set_head (top_chunk, (top_size - extra) | PREV_INUSE);
705 /*check_chunk(ar_ptr, top_chunk);*/
706 return 1;
709 /* Create a new arena with initial size "size". */
711 #if IS_IN (libc)
712 /* If REPLACED_ARENA is not NULL, detach it from this thread. Must be
713 called while free_list_lock is held. */
714 static void
715 detach_arena (mstate replaced_arena)
717 if (replaced_arena != NULL)
719 assert (replaced_arena->attached_threads > 0);
720 /* The current implementation only detaches from main_arena in
721 case of allocation failure. This means that it is likely not
722 beneficial to put the arena on free_list even if the
723 reference count reaches zero. */
724 --replaced_arena->attached_threads;
728 static mstate
729 _int_new_arena (size_t size)
731 mstate a;
732 heap_info *h;
733 char *ptr;
734 unsigned long misalign;
736 h = new_heap (size + (sizeof (*h) + sizeof (*a) + MALLOC_ALIGNMENT),
737 mp_.top_pad);
738 if (!h)
740 /* Maybe size is too large to fit in a single heap. So, just try
741 to create a minimally-sized arena and let _int_malloc() attempt
742 to deal with the large request via mmap_chunk(). */
743 h = new_heap (sizeof (*h) + sizeof (*a) + MALLOC_ALIGNMENT, mp_.top_pad);
744 if (!h)
745 return 0;
747 a = h->ar_ptr = (mstate) (h + 1);
748 malloc_init_state (a);
749 a->attached_threads = 1;
750 /*a->next = NULL;*/
751 a->system_mem = a->max_system_mem = h->size;
753 /* Set up the top chunk, with proper alignment. */
754 ptr = (char *) (a + 1);
755 misalign = (uintptr_t) chunk2mem (ptr) & MALLOC_ALIGN_MASK;
756 if (misalign > 0)
757 ptr += MALLOC_ALIGNMENT - misalign;
758 top (a) = (mchunkptr) ptr;
759 set_head (top (a), (((char *) h + h->size) - ptr) | PREV_INUSE);
761 LIBC_PROBE (memory_arena_new, 2, a, size);
762 mstate replaced_arena = thread_arena;
763 thread_arena = a;
764 __libc_lock_init (a->mutex);
766 __libc_lock_lock (list_lock);
768 /* Add the new arena to the global list. */
769 a->next = main_arena.next;
770 /* FIXME: The barrier is an attempt to synchronize with read access
771 in reused_arena, which does not acquire list_lock while
772 traversing the list. */
773 atomic_write_barrier ();
774 main_arena.next = a;
776 __libc_lock_unlock (list_lock);
778 __libc_lock_lock (free_list_lock);
779 detach_arena (replaced_arena);
780 __libc_lock_unlock (free_list_lock);
782 /* Lock this arena. NB: Another thread may have been attached to
783 this arena because the arena is now accessible from the
784 main_arena.next list and could have been picked by reused_arena.
785 This can only happen for the last arena created (before the arena
786 limit is reached). At this point, some arena has to be attached
787 to two threads. We could acquire the arena lock before list_lock
788 to make it less likely that reused_arena picks this new arena,
789 but this could result in a deadlock with
790 __malloc_fork_lock_parent. */
792 __libc_lock_lock (a->mutex);
794 return a;
798 /* Remove an arena from free_list. */
799 static mstate
800 get_free_list (void)
802 mstate replaced_arena = thread_arena;
803 mstate result = free_list;
804 if (result != NULL)
806 __libc_lock_lock (free_list_lock);
807 result = free_list;
808 if (result != NULL)
810 free_list = result->next_free;
812 /* The arena will be attached to this thread. */
813 assert (result->attached_threads == 0);
814 result->attached_threads = 1;
816 detach_arena (replaced_arena);
818 __libc_lock_unlock (free_list_lock);
820 if (result != NULL)
822 LIBC_PROBE (memory_arena_reuse_free_list, 1, result);
823 __libc_lock_lock (result->mutex);
824 thread_arena = result;
828 return result;
831 /* Remove the arena from the free list (if it is present).
832 free_list_lock must have been acquired by the caller. */
833 static void
834 remove_from_free_list (mstate arena)
836 mstate *previous = &free_list;
837 for (mstate p = free_list; p != NULL; p = p->next_free)
839 assert (p->attached_threads == 0);
840 if (p == arena)
842 /* Remove the requested arena from the list. */
843 *previous = p->next_free;
844 break;
846 else
847 previous = &p->next_free;
851 /* Lock and return an arena that can be reused for memory allocation.
852 Avoid AVOID_ARENA as we have already failed to allocate memory in
853 it and it is currently locked. */
854 static mstate
855 reused_arena (mstate avoid_arena)
857 mstate result;
858 /* FIXME: Access to next_to_use suffers from data races. */
859 static mstate next_to_use;
860 if (next_to_use == NULL)
861 next_to_use = &main_arena;
863 /* Iterate over all arenas (including those linked from
864 free_list). */
865 result = next_to_use;
868 if (!__libc_lock_trylock (result->mutex))
869 goto out;
871 /* FIXME: This is a data race, see _int_new_arena. */
872 result = result->next;
874 while (result != next_to_use);
876 /* Avoid AVOID_ARENA as we have already failed to allocate memory
877 in that arena and it is currently locked. */
878 if (result == avoid_arena)
879 result = result->next;
881 /* No arena available without contention. Wait for the next in line. */
882 LIBC_PROBE (memory_arena_reuse_wait, 3, &result->mutex, result, avoid_arena);
883 __libc_lock_lock (result->mutex);
885 out:
886 /* Attach the arena to the current thread. */
888 /* Update the arena thread attachment counters. */
889 mstate replaced_arena = thread_arena;
890 __libc_lock_lock (free_list_lock);
891 detach_arena (replaced_arena);
893 /* We may have picked up an arena on the free list. We need to
894 preserve the invariant that no arena on the free list has a
895 positive attached_threads counter (otherwise,
896 arena_thread_freeres cannot use the counter to determine if the
897 arena needs to be put on the free list). We unconditionally
898 remove the selected arena from the free list. The caller of
899 reused_arena checked the free list and observed it to be empty,
900 so the list is very short. */
901 remove_from_free_list (result);
903 ++result->attached_threads;
905 __libc_lock_unlock (free_list_lock);
908 LIBC_PROBE (memory_arena_reuse, 2, result, avoid_arena);
909 thread_arena = result;
910 next_to_use = result->next;
912 return result;
915 static mstate
916 arena_get2 (size_t size, mstate avoid_arena)
918 mstate a;
920 static size_t narenas_limit;
922 a = get_free_list ();
923 if (a == NULL)
925 /* Nothing immediately available, so generate a new arena. */
926 if (narenas_limit == 0)
928 if (mp_.arena_max != 0)
929 narenas_limit = mp_.arena_max;
930 else if (narenas > mp_.arena_test)
932 int n = __get_nprocs_sched ();
934 if (n >= 1)
935 narenas_limit = NARENAS_FROM_NCORES (n);
936 else
937 /* We have no information about the system. Assume two
938 cores. */
939 narenas_limit = NARENAS_FROM_NCORES (2);
942 repeat:;
943 size_t n = narenas;
944 /* NB: the following depends on the fact that (size_t)0 - 1 is a
945 very large number and that the underflow is OK. If arena_max
946 is set the value of arena_test is irrelevant. If arena_test
947 is set but narenas is not yet larger or equal to arena_test
948 narenas_limit is 0. There is no possibility for narenas to
949 be too big for the test to always fail since there is not
950 enough address space to create that many arenas. */
951 if (__glibc_unlikely (n <= narenas_limit - 1))
953 if (catomic_compare_and_exchange_bool_acq (&narenas, n + 1, n))
954 goto repeat;
955 a = _int_new_arena (size);
956 if (__glibc_unlikely (a == NULL))
957 catomic_decrement (&narenas);
959 else
960 a = reused_arena (avoid_arena);
962 return a;
965 /* If we don't have the main arena, then maybe the failure is due to running
966 out of mmapped areas, so we can try allocating on the main arena.
967 Otherwise, it is likely that sbrk() has failed and there is still a chance
968 to mmap(), so try one of the other arenas. */
969 static mstate
970 arena_get_retry (mstate ar_ptr, size_t bytes)
972 LIBC_PROBE (memory_arena_retry, 2, bytes, ar_ptr);
973 if (ar_ptr != &main_arena)
975 __libc_lock_unlock (ar_ptr->mutex);
976 ar_ptr = &main_arena;
977 __libc_lock_lock (ar_ptr->mutex);
979 else
981 __libc_lock_unlock (ar_ptr->mutex);
982 ar_ptr = arena_get2 (bytes, ar_ptr);
985 return ar_ptr;
987 #endif
989 void
990 __malloc_arena_thread_freeres (void)
992 /* Shut down the thread cache first. This could deallocate data for
993 the thread arena, so do this before we put the arena on the free
994 list. */
995 tcache_thread_shutdown ();
997 mstate a = thread_arena;
998 thread_arena = NULL;
1000 if (a != NULL)
1002 __libc_lock_lock (free_list_lock);
1003 /* If this was the last attached thread for this arena, put the
1004 arena on the free list. */
1005 assert (a->attached_threads > 0);
1006 if (--a->attached_threads == 0)
1008 a->next_free = free_list;
1009 free_list = a;
1011 __libc_lock_unlock (free_list_lock);
1016 * Local variables:
1017 * c-basic-offset: 2
1018 * End: