]> git.ipfire.org Git - thirdparty/glibc.git/blame - malloc/malloc.c
build-many-glibcs.py: Add openrisc hard float glibc variant
[thirdparty/glibc.git] / malloc / malloc.c
CommitLineData
56137dbc 1/* Malloc implementation for multiple threads without lock contention.
dff8da6b 2 Copyright (C) 1996-2024 Free Software Foundation, Inc.
88e316b0 3 Copyright The GNU Toolchain Authors.
f65fd747 4 This file is part of the GNU C Library.
f65fd747
UD
5
6 The GNU C Library is free software; you can redistribute it and/or
cc7375ce
RM
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
fa8d436c 9 License, or (at your option) any later version.
f65fd747
UD
10
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
cc7375ce 14 Lesser General Public License for more details.
f65fd747 15
cc7375ce 16 You should have received a copy of the GNU Lesser General Public
59ba27a6 17 License along with the GNU C Library; see the file COPYING.LIB. If
5a82c748 18 not, see <https://www.gnu.org/licenses/>. */
f65fd747 19
fa8d436c
UD
20/*
21 This is a version (aka ptmalloc2) of malloc/free/realloc written by
22 Doug Lea and adapted to multiple threads/arenas by Wolfram Gloger.
23
bb2ce416 24 There have been substantial changes made after the integration into
da2d2fb6
UD
25 glibc in all parts of the code. Do not look for much commonality
26 with the ptmalloc2 version.
27
fa8d436c 28* Version ptmalloc2-20011215
fa8d436c
UD
29 based on:
30 VERSION 2.7.0 Sun Mar 11 14:14:06 2001 Doug Lea (dl at gee)
f65fd747 31
fa8d436c 32* Quickstart
f65fd747 33
fa8d436c
UD
34 In order to compile this implementation, a Makefile is provided with
35 the ptmalloc2 distribution, which has pre-defined targets for some
36 popular systems (e.g. "make posix" for Posix threads). All that is
37 typically required with regard to compiler flags is the selection of
38 the thread package via defining one out of USE_PTHREADS, USE_THR or
39 USE_SPROC. Check the thread-m.h file for what effects this has.
40 Many/most systems will additionally require USE_TSD_DATA_HACK to be
41 defined, so this is the default for "make posix".
f65fd747
UD
42
43* Why use this malloc?
44
45 This is not the fastest, most space-conserving, most portable, or
46 most tunable malloc ever written. However it is among the fastest
47 while also being among the most space-conserving, portable and tunable.
48 Consistent balance across these factors results in a good general-purpose
fa8d436c
UD
49 allocator for malloc-intensive programs.
50
51 The main properties of the algorithms are:
52 * For large (>= 512 bytes) requests, it is a pure best-fit allocator,
53 with ties normally decided via FIFO (i.e. least recently used).
54 * For small (<= 64 bytes by default) requests, it is a caching
55 allocator, that maintains pools of quickly recycled chunks.
56 * In between, and for combinations of large and small requests, it does
57 the best it can trying to meet both goals at once.
58 * For very large requests (>= 128KB by default), it relies on system
59 memory mapping facilities, if supported.
60
61 For a longer but slightly out of date high-level description, see
62 http://gee.cs.oswego.edu/dl/html/malloc.html
63
64 You may already by default be using a C library containing a malloc
65 that is based on some version of this malloc (for example in
66 linux). You might still want to use the one in this file in order to
67 customize settings or to avoid overheads associated with library
68 versions.
69
70* Contents, described in more detail in "description of public routines" below.
71
72 Standard (ANSI/SVID/...) functions:
73 malloc(size_t n);
74 calloc(size_t n_elements, size_t element_size);
22a89187
UD
75 free(void* p);
76 realloc(void* p, size_t n);
fa8d436c
UD
77 memalign(size_t alignment, size_t n);
78 valloc(size_t n);
79 mallinfo()
80 mallopt(int parameter_number, int parameter_value)
81
82 Additional functions:
22a89187
UD
83 independent_calloc(size_t n_elements, size_t size, void* chunks[]);
84 independent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]);
fa8d436c 85 pvalloc(size_t n);
fa8d436c 86 malloc_trim(size_t pad);
22a89187 87 malloc_usable_size(void* p);
fa8d436c 88 malloc_stats();
f65fd747
UD
89
90* Vital statistics:
91
fa8d436c 92 Supported pointer representation: 4 or 8 bytes
a9177ff5 93 Supported size_t representation: 4 or 8 bytes
f65fd747 94 Note that size_t is allowed to be 4 bytes even if pointers are 8.
fa8d436c
UD
95 You can adjust this by defining INTERNAL_SIZE_T
96
97 Alignment: 2 * sizeof(size_t) (default)
98 (i.e., 8 byte alignment with 4byte size_t). This suffices for
99 nearly all current machines and C compilers. However, you can
100 define MALLOC_ALIGNMENT to be wider than this if necessary.
f65fd747 101
fa8d436c
UD
102 Minimum overhead per allocated chunk: 4 or 8 bytes
103 Each malloced chunk has a hidden word of overhead holding size
f65fd747
UD
104 and status information.
105
106 Minimum allocated size: 4-byte ptrs: 16 bytes (including 4 overhead)
72f90263 107 8-byte ptrs: 24/32 bytes (including, 4/8 overhead)
f65fd747
UD
108
109 When a chunk is freed, 12 (for 4byte ptrs) or 20 (for 8 byte
110 ptrs but 4 byte size) or 24 (for 8/8) additional bytes are
fa8d436c
UD
111 needed; 4 (8) for a trailing size field and 8 (16) bytes for
112 free list pointers. Thus, the minimum allocatable size is
113 16/24/32 bytes.
f65fd747
UD
114
115 Even a request for zero bytes (i.e., malloc(0)) returns a
116 pointer to something of the minimum allocatable size.
117
fa8d436c
UD
118 The maximum overhead wastage (i.e., number of extra bytes
119 allocated than were requested in malloc) is less than or equal
120 to the minimum size, except for requests >= mmap_threshold that
121 are serviced via mmap(), where the worst case wastage is 2 *
122 sizeof(size_t) bytes plus the remainder from a system page (the
123 minimal mmap unit); typically 4096 or 8192 bytes.
f65fd747 124
a9177ff5 125 Maximum allocated size: 4-byte size_t: 2^32 minus about two pages
72f90263 126 8-byte size_t: 2^64 minus about two pages
fa8d436c
UD
127
128 It is assumed that (possibly signed) size_t values suffice to
f65fd747
UD
129 represent chunk sizes. `Possibly signed' is due to the fact
130 that `size_t' may be defined on a system as either a signed or
fa8d436c
UD
131 an unsigned type. The ISO C standard says that it must be
132 unsigned, but a few systems are known not to adhere to this.
133 Additionally, even when size_t is unsigned, sbrk (which is by
134 default used to obtain memory from system) accepts signed
135 arguments, and may not be able to handle size_t-wide arguments
136 with negative sign bit. Generally, values that would
137 appear as negative after accounting for overhead and alignment
138 are supported only via mmap(), which does not have this
139 limitation.
140
141 Requests for sizes outside the allowed range will perform an optional
142 failure action and then return null. (Requests may also
143 also fail because a system is out of memory.)
144
22a89187 145 Thread-safety: thread-safe
fa8d436c
UD
146
147 Compliance: I believe it is compliant with the 1997 Single Unix Specification
2b0fba75 148 Also SVID/XPG, ANSI C, and probably others as well.
f65fd747
UD
149
150* Synopsis of compile-time options:
151
152 People have reported using previous versions of this malloc on all
153 versions of Unix, sometimes by tweaking some of the defines
22a89187 154 below. It has been tested most extensively on Solaris and Linux.
fa8d436c
UD
155 People also report using it in stand-alone embedded systems.
156
157 The implementation is in straight, hand-tuned ANSI C. It is not
158 at all modular. (Sorry!) It uses a lot of macros. To be at all
159 usable, this code should be compiled using an optimizing compiler
160 (for example gcc -O3) that can simplify expressions and control
161 paths. (FAQ: some macros import variables as arguments rather than
162 declare locals because people reported that some debuggers
163 otherwise get confused.)
164
165 OPTION DEFAULT VALUE
166
167 Compilation Environment options:
168
2a26ef3a 169 HAVE_MREMAP 0
fa8d436c
UD
170
171 Changing default word sizes:
172
173 INTERNAL_SIZE_T size_t
fa8d436c
UD
174
175 Configuration and functionality options:
176
fa8d436c
UD
177 USE_PUBLIC_MALLOC_WRAPPERS NOT defined
178 USE_MALLOC_LOCK NOT defined
179 MALLOC_DEBUG NOT defined
180 REALLOC_ZERO_BYTES_FREES 1
fa8d436c
UD
181 TRIM_FASTBINS 0
182
183 Options for customizing MORECORE:
184
185 MORECORE sbrk
186 MORECORE_FAILURE -1
a9177ff5 187 MORECORE_CONTIGUOUS 1
fa8d436c
UD
188 MORECORE_CANNOT_TRIM NOT defined
189 MORECORE_CLEARS 1
a9177ff5 190 MMAP_AS_MORECORE_SIZE (1024 * 1024)
fa8d436c
UD
191
192 Tuning options that are also dynamically changeable via mallopt:
193
425ce2ed 194 DEFAULT_MXFAST 64 (for 32bit), 128 (for 64bit)
fa8d436c
UD
195 DEFAULT_TRIM_THRESHOLD 128 * 1024
196 DEFAULT_TOP_PAD 0
197 DEFAULT_MMAP_THRESHOLD 128 * 1024
198 DEFAULT_MMAP_MAX 65536
199
200 There are several other #defined constants and macros that you
201 probably don't want to touch unless you are extending or adapting malloc. */
f65fd747
UD
202
203/*
22a89187 204 void* is the pointer type that malloc should say it returns
f65fd747
UD
205*/
206
22a89187
UD
207#ifndef void
208#define void void
209#endif /*void*/
f65fd747 210
fa8d436c
UD
211#include <stddef.h> /* for size_t */
212#include <stdlib.h> /* for getenv(), abort() */
2a26ef3a 213#include <unistd.h> /* for __libc_enable_secure */
f65fd747 214
425ce2ed 215#include <atomic.h>
eb96ffb0 216#include <_itoa.h>
e404fb16 217#include <bits/wordsize.h>
425ce2ed 218#include <sys/sysinfo.h>
c56da3a3 219
02d46fc4 220#include <ldsodefs.h>
fee9e40a 221#include <setvmaname.h>
02d46fc4 222
fa8d436c 223#include <unistd.h>
fa8d436c 224#include <stdio.h> /* needed for malloc_stats */
8e58439c 225#include <errno.h>
406e7a0a 226#include <assert.h>
f65fd747 227
66274218
AJ
228#include <shlib-compat.h>
229
5d78bb43
UD
230/* For uintptr_t. */
231#include <stdint.h>
f65fd747 232
3e030bd5
UD
233/* For va_arg, va_start, va_end. */
234#include <stdarg.h>
235
070906ff
RM
236/* For MIN, MAX, powerof2. */
237#include <sys/param.h>
238
ca6be165 239/* For ALIGN_UP et. al. */
9090848d 240#include <libc-pointer-arith.h>
8a35c3fe 241
d5c3fafc
DD
242/* For DIAG_PUSH/POP_NEEDS_COMMENT et al. */
243#include <libc-diag.h>
244
3784dfc0
RE
245/* For memory tagging. */
246#include <libc-mtag.h>
247
29d79486 248#include <malloc/malloc-internal.h>
c0f62c56 249
6d43de4b
WD
250/* For SINGLE_THREAD_P. */
251#include <sysdep-cancel.h>
252
29a4db29
FW
253#include <libc-internal.h>
254
fc859c30
SP
255/* For tcache double-free check. */
256#include <random-bits.h>
257#include <sys/random.h>
7187efd0 258#include <not-cancel.h>
fc859c30 259
fa8d436c
UD
260/*
261 Debugging:
262
263 Because freed chunks may be overwritten with bookkeeping fields, this
264 malloc will often die when freed memory is overwritten by user
265 programs. This can be very effective (albeit in an annoying way)
266 in helping track down dangling pointers.
267
268 If you compile with -DMALLOC_DEBUG, a number of assertion checks are
269 enabled that will catch more memory errors. You probably won't be
270 able to make much sense of the actual assertion errors, but they
271 should help you locate incorrectly overwritten memory. The checking
272 is fairly extensive, and will slow down execution
273 noticeably. Calling malloc_stats or mallinfo with MALLOC_DEBUG set
274 will attempt to check every non-mmapped allocated and free chunk in
7f0d9e61 275 the course of computing the summaries. (By nature, mmapped regions
fa8d436c
UD
276 cannot be checked very much automatically.)
277
278 Setting MALLOC_DEBUG may also be helpful if you are trying to modify
279 this code. The assertions in the check routines spell out in more
280 detail the assumptions and invariants underlying the algorithms.
281
282 Setting MALLOC_DEBUG does NOT provide an automated mechanism for
283 checking that all accesses to malloced memory stay within their
284 bounds. However, there are several add-ons and adaptations of this
285 or other mallocs available that do this.
f65fd747
UD
286*/
287
439bda32
WN
288#ifndef MALLOC_DEBUG
289#define MALLOC_DEBUG 0
290#endif
291
d5c3fafc
DD
292#if USE_TCACHE
293/* We want 64 entries. This is an arbitrary limit, which tunables can reduce. */
294# define TCACHE_MAX_BINS 64
295# define MAX_TCACHE_SIZE tidx2usize (TCACHE_MAX_BINS-1)
296
297/* Only used to pre-fill the tunables. */
298# define tidx2usize(idx) (((size_t) idx) * MALLOC_ALIGNMENT + MINSIZE - SIZE_SZ)
299
300/* When "x" is from chunksize(). */
301# define csize2tidx(x) (((x) - MINSIZE + MALLOC_ALIGNMENT - 1) / MALLOC_ALIGNMENT)
302/* When "x" is a user-provided size. */
303# define usize2tidx(x) csize2tidx (request2size (x))
304
305/* With rounding and alignment, the bins are...
306 idx 0 bytes 0..24 (64-bit) or 0..12 (32-bit)
307 idx 1 bytes 25..40 or 13..20
308 idx 2 bytes 41..56 or 21..28
309 etc. */
310
311/* This is another arbitrary limit, which tunables can change. Each
312 tcache bin will hold at most this number of chunks. */
313# define TCACHE_FILL_COUNT 7
1f50f2ad
WD
314
315/* Maximum chunks in tcache bins for tunables. This value must fit the range
316 of tcache->counts[] entries, else they may overflow. */
317# define MAX_TCACHE_COUNT UINT16_MAX
d5c3fafc
DD
318#endif
319
a1a486d7
EI
320/* Safe-Linking:
321 Use randomness from ASLR (mmap_base) to protect single-linked lists
322 of Fast-Bins and TCache. That is, mask the "next" pointers of the
323 lists' chunks, and also perform allocation alignment checks on them.
324 This mechanism reduces the risk of pointer hijacking, as was done with
325 Safe-Unlinking in the double-linked lists of Small-Bins.
326 It assumes a minimum page size of 4096 bytes (12 bits). Systems with
327 larger pages provide less entropy, although the pointer mangling
328 still works. */
329#define PROTECT_PTR(pos, ptr) \
330 ((__typeof (ptr)) ((((size_t) pos) >> 12) ^ ((size_t) ptr)))
331#define REVEAL_PTR(ptr) PROTECT_PTR (&ptr, ptr)
f65fd747 332
fa8d436c 333/*
9f1bed18
PE
334 The REALLOC_ZERO_BYTES_FREES macro controls the behavior of realloc (p, 0)
335 when p is nonnull. If the macro is nonzero, the realloc call returns NULL;
336 otherwise, the call returns what malloc (0) would. In either case,
337 p is freed. Glibc uses a nonzero REALLOC_ZERO_BYTES_FREES, which
338 implements common historical practice.
339
340 ISO C17 says the realloc call has implementation-defined behavior,
341 and it might not even free p.
fa8d436c
UD
342*/
343
344#ifndef REALLOC_ZERO_BYTES_FREES
345#define REALLOC_ZERO_BYTES_FREES 1
346#endif
347
348/*
349 TRIM_FASTBINS controls whether free() of a very small chunk can
350 immediately lead to trimming. Setting to true (1) can reduce memory
351 footprint, but will almost always slow down programs that use a lot
352 of small chunks.
353
354 Define this only if you are willing to give up some speed to more
355 aggressively reduce system-level memory footprint when releasing
356 memory in programs that use many small chunks. You can get
357 essentially the same effect by setting MXFAST to 0, but this can
358 lead to even greater slowdowns in programs using many small chunks.
359 TRIM_FASTBINS is an in-between compile-time option, that disables
360 only those chunks bordering topmost memory from being placed in
361 fastbins.
362*/
363
364#ifndef TRIM_FASTBINS
365#define TRIM_FASTBINS 0
366#endif
367
3b49edc0 368/* Definition for getting more memory from the OS. */
55a4dd39
SP
369#include "morecore.c"
370
371#define MORECORE (*__glibc_morecore)
fa8d436c 372#define MORECORE_FAILURE 0
f65fd747 373
3784dfc0
RE
374/* Memory tagging. */
375
376/* Some systems support the concept of tagging (sometimes known as
377 coloring) memory locations on a fine grained basis. Each memory
378 location is given a color (normally allocated randomly) and
379 pointers are also colored. When the pointer is dereferenced, the
380 pointer's color is checked against the memory's color and if they
381 differ the access is faulted (sometimes lazily).
382
383 We use this in glibc by maintaining a single color for the malloc
384 data structures that are interleaved with the user data and then
385 assigning separate colors for each block allocation handed out. In
386 this way simple buffer overruns will be rapidly detected. When
387 memory is freed, the memory is recolored back to the glibc default
388 so that simple use-after-free errors can also be detected.
389
390 If memory is reallocated the buffer is recolored even if the
391 address remains the same. This has a performance impact, but
392 guarantees that the old pointer cannot mistakenly be reused (code
393 that compares old against new will see a mismatch and will then
394 need to behave as though realloc moved the data to a new location).
395
396 Internal API for memory tagging support.
397
398 The aim is to keep the code for memory tagging support as close to
399 the normal APIs in glibc as possible, so that if tagging is not
400 enabled in the library, or is disabled at runtime then standard
401 operations can continue to be used. Support macros are used to do
402 this:
403
c076a0bc 404 void *tag_new_zero_region (void *ptr, size_t size)
3784dfc0 405
c076a0bc
SN
406 Allocates a new tag, colors the memory with that tag, zeros the
407 memory and returns a pointer that is correctly colored for that
408 location. The non-tagging version will simply call memset with 0.
3784dfc0 409
0c719cf4 410 void *tag_region (void *ptr, size_t size)
3784dfc0
RE
411
412 Color the region of memory pointed to by PTR and size SIZE with
413 the color of PTR. Returns the original pointer.
414
0c719cf4 415 void *tag_new_usable (void *ptr)
3784dfc0
RE
416
417 Allocate a new random color and use it to color the user region of
418 a chunk; this may include data from the subsequent chunk's header
419 if tagging is sufficiently fine grained. Returns PTR suitably
420 recolored for accessing the memory there.
421
0c719cf4 422 void *tag_at (void *ptr)
3784dfc0
RE
423
424 Read the current color of the memory at the address pointed to by
425 PTR (ignoring it's current color) and return PTR recolored to that
426 color. PTR must be valid address in all other respects. When
427 tagging is not enabled, it simply returns the original pointer.
428*/
429
430#ifdef USE_MTAG
42bac88a
SN
431static bool mtag_enabled = false;
432static int mtag_mmap_flags = 0;
42bac88a
SN
433#else
434# define mtag_enabled false
435# define mtag_mmap_flags 0
436#endif
3784dfc0 437
42bac88a
SN
438static __always_inline void *
439tag_region (void *ptr, size_t size)
3784dfc0 440{
42bac88a
SN
441 if (__glibc_unlikely (mtag_enabled))
442 return __libc_mtag_tag_region (ptr, size);
3784dfc0
RE
443 return ptr;
444}
445
42bac88a 446static __always_inline void *
c076a0bc 447tag_new_zero_region (void *ptr, size_t size)
3784dfc0 448{
42bac88a 449 if (__glibc_unlikely (mtag_enabled))
c076a0bc
SN
450 return __libc_mtag_tag_zero_region (__libc_mtag_new_tag (ptr), size);
451 return memset (ptr, 0, size);
3784dfc0
RE
452}
453
42bac88a
SN
454/* Defined later. */
455static void *
456tag_new_usable (void *ptr);
3784dfc0 457
42bac88a
SN
458static __always_inline void *
459tag_at (void *ptr)
460{
461 if (__glibc_unlikely (mtag_enabled))
462 return __libc_mtag_address_get_tag (ptr);
463 return ptr;
464}
f65fd747 465
22a89187 466#include <string.h>
f65fd747 467
fa8d436c
UD
468/*
469 MORECORE-related declarations. By default, rely on sbrk
470*/
09f5e163 471
f65fd747 472
fa8d436c
UD
473/*
474 MORECORE is the name of the routine to call to obtain more memory
475 from the system. See below for general guidance on writing
476 alternative MORECORE functions, as well as a version for WIN32 and a
477 sample version for pre-OSX macos.
478*/
f65fd747 479
fa8d436c
UD
480#ifndef MORECORE
481#define MORECORE sbrk
482#endif
f65fd747 483
fa8d436c
UD
484/*
485 MORECORE_FAILURE is the value returned upon failure of MORECORE
486 as well as mmap. Since it cannot be an otherwise valid memory address,
487 and must reflect values of standard sys calls, you probably ought not
488 try to redefine it.
489*/
09f5e163 490
fa8d436c
UD
491#ifndef MORECORE_FAILURE
492#define MORECORE_FAILURE (-1)
493#endif
494
495/*
496 If MORECORE_CONTIGUOUS is true, take advantage of fact that
497 consecutive calls to MORECORE with positive arguments always return
498 contiguous increasing addresses. This is true of unix sbrk. Even
499 if not defined, when regions happen to be contiguous, malloc will
500 permit allocations spanning regions obtained from different
501 calls. But defining this when applicable enables some stronger
502 consistency checks and space efficiencies.
503*/
f65fd747 504
fa8d436c
UD
505#ifndef MORECORE_CONTIGUOUS
506#define MORECORE_CONTIGUOUS 1
f65fd747
UD
507#endif
508
fa8d436c
UD
509/*
510 Define MORECORE_CANNOT_TRIM if your version of MORECORE
511 cannot release space back to the system when given negative
512 arguments. This is generally necessary only if you are using
513 a hand-crafted MORECORE function that cannot handle negative arguments.
514*/
515
516/* #define MORECORE_CANNOT_TRIM */
f65fd747 517
fa8d436c
UD
518/* MORECORE_CLEARS (default 1)
519 The degree to which the routine mapped to MORECORE zeroes out
520 memory: never (0), only for newly allocated space (1) or always
521 (2). The distinction between (1) and (2) is necessary because on
522 some systems, if the application first decrements and then
523 increments the break value, the contents of the reallocated space
524 are unspecified.
6c8dbf00 525 */
fa8d436c
UD
526
527#ifndef MORECORE_CLEARS
6c8dbf00 528# define MORECORE_CLEARS 1
7cabd57c
UD
529#endif
530
fa8d436c 531
a9177ff5 532/*
fa8d436c 533 MMAP_AS_MORECORE_SIZE is the minimum mmap size argument to use if
22a89187
UD
534 sbrk fails, and mmap is used as a backup. The value must be a
535 multiple of page size. This backup strategy generally applies only
536 when systems have "holes" in address space, so sbrk cannot perform
537 contiguous expansion, but there is still space available on system.
538 On systems for which this is known to be useful (i.e. most linux
539 kernels), this occurs only when programs allocate huge amounts of
540 memory. Between this, and the fact that mmap regions tend to be
541 limited, the size should be large, to avoid too many mmap calls and
542 thus avoid running out of kernel resources. */
fa8d436c
UD
543
544#ifndef MMAP_AS_MORECORE_SIZE
545#define MMAP_AS_MORECORE_SIZE (1024 * 1024)
f65fd747
UD
546#endif
547
548/*
549 Define HAVE_MREMAP to make realloc() use mremap() to re-allocate
2a26ef3a 550 large blocks.
f65fd747
UD
551*/
552
553#ifndef HAVE_MREMAP
fa8d436c 554#define HAVE_MREMAP 0
f65fd747
UD
555#endif
556
f65fd747 557/*
f65fd747 558 This version of malloc supports the standard SVID/XPG mallinfo
fa8d436c
UD
559 routine that returns a struct containing usage properties and
560 statistics. It should work on any SVID/XPG compliant system that has
561 a /usr/include/malloc.h defining struct mallinfo. (If you'd like to
562 install such a thing yourself, cut out the preliminary declarations
563 as described above and below and save them in a malloc.h file. But
564 there's no compelling reason to bother to do this.)
f65fd747
UD
565
566 The main declaration needed is the mallinfo struct that is returned
567 (by-copy) by mallinfo(). The SVID/XPG malloinfo struct contains a
fa8d436c
UD
568 bunch of fields that are not even meaningful in this version of
569 malloc. These fields are are instead filled by mallinfo() with
570 other numbers that might be of interest.
f65fd747
UD
571*/
572
f65fd747 573
fa8d436c 574/* ---------- description of public routines ------------ */
f65fd747 575
b5bd5bfe 576#if IS_IN (libc)
f65fd747 577/*
fa8d436c
UD
578 malloc(size_t n)
579 Returns a pointer to a newly allocated chunk of at least n bytes, or null
580 if no space is available. Additionally, on failure, errno is
581 set to ENOMEM on ANSI C systems.
582
862897d2 583 If n is zero, malloc returns a minimum-sized chunk. (The minimum
fa8d436c
UD
584 size is 16 bytes on most 32bit systems, and 24 or 32 bytes on 64bit
585 systems.) On most systems, size_t is an unsigned type, so calls
586 with negative arguments are interpreted as requests for huge amounts
587 of space, which will often fail. The maximum supported value of n
588 differs across systems, but is in all cases less than the maximum
589 representable value of a size_t.
f65fd747 590*/
3b49edc0
UD
591void* __libc_malloc(size_t);
592libc_hidden_proto (__libc_malloc)
f65fd747 593
fa8d436c 594/*
22a89187 595 free(void* p)
fa8d436c
UD
596 Releases the chunk of memory pointed to by p, that had been previously
597 allocated using malloc or a related routine such as realloc.
598 It has no effect if p is null. It can have arbitrary (i.e., bad!)
599 effects if p has already been freed.
600
601 Unless disabled (using mallopt), freeing very large spaces will
602 when possible, automatically trigger operations that give
603 back unused memory to the system, thus reducing program footprint.
604*/
3b49edc0
UD
605void __libc_free(void*);
606libc_hidden_proto (__libc_free)
f65fd747 607
fa8d436c
UD
608/*
609 calloc(size_t n_elements, size_t element_size);
610 Returns a pointer to n_elements * element_size bytes, with all locations
611 set to zero.
612*/
3b49edc0 613void* __libc_calloc(size_t, size_t);
f65fd747
UD
614
615/*
22a89187 616 realloc(void* p, size_t n)
fa8d436c
UD
617 Returns a pointer to a chunk of size n that contains the same data
618 as does chunk p up to the minimum of (n, p's size) bytes, or null
a9177ff5 619 if no space is available.
f65fd747 620
fa8d436c
UD
621 The returned pointer may or may not be the same as p. The algorithm
622 prefers extending p when possible, otherwise it employs the
623 equivalent of a malloc-copy-free sequence.
f65fd747 624
a9177ff5 625 If p is null, realloc is equivalent to malloc.
f65fd747 626
fa8d436c
UD
627 If space is not available, realloc returns null, errno is set (if on
628 ANSI) and p is NOT freed.
f65fd747 629
fa8d436c
UD
630 if n is for fewer bytes than already held by p, the newly unused
631 space is lopped off and freed if possible. Unless the #define
632 REALLOC_ZERO_BYTES_FREES is set, realloc with a size argument of
633 zero (re)allocates a minimum-sized chunk.
f65fd747 634
3b5f801d
DD
635 Large chunks that were internally obtained via mmap will always be
636 grown using malloc-copy-free sequences unless the system supports
637 MREMAP (currently only linux).
f65fd747 638
fa8d436c
UD
639 The old unix realloc convention of allowing the last-free'd chunk
640 to be used as an argument to realloc is not supported.
f65fd747 641*/
3b49edc0
UD
642void* __libc_realloc(void*, size_t);
643libc_hidden_proto (__libc_realloc)
f65fd747 644
fa8d436c
UD
645/*
646 memalign(size_t alignment, size_t n);
647 Returns a pointer to a newly allocated chunk of n bytes, aligned
648 in accord with the alignment argument.
649
650 The alignment argument should be a power of two. If the argument is
651 not a power of two, the nearest greater power is used.
652 8-byte alignment is guaranteed by normal malloc calls, so don't
653 bother calling memalign with an argument of 8 or less.
654
655 Overreliance on memalign is a sure way to fragment space.
656*/
3b49edc0
UD
657void* __libc_memalign(size_t, size_t);
658libc_hidden_proto (__libc_memalign)
f65fd747
UD
659
660/*
fa8d436c
UD
661 valloc(size_t n);
662 Equivalent to memalign(pagesize, n), where pagesize is the page
663 size of the system. If the pagesize is unknown, 4096 is used.
664*/
3b49edc0 665void* __libc_valloc(size_t);
fa8d436c 666
f65fd747 667
f65fd747 668
fa8d436c
UD
669/*
670 mallinfo()
671 Returns (by copy) a struct containing various summary statistics:
672
a9177ff5
RM
673 arena: current total non-mmapped bytes allocated from system
674 ordblks: the number of free chunks
fa8d436c 675 smblks: the number of fastbin blocks (i.e., small chunks that
7f0d9e61 676 have been freed but not reused or consolidated)
a9177ff5
RM
677 hblks: current number of mmapped regions
678 hblkhd: total bytes held in mmapped regions
ca135f82 679 usmblks: always 0
a9177ff5 680 fsmblks: total bytes held in fastbin blocks
fa8d436c 681 uordblks: current total allocated space (normal or mmapped)
a9177ff5 682 fordblks: total free space
fa8d436c 683 keepcost: the maximum number of bytes that could ideally be released
72f90263
UD
684 back to system via malloc_trim. ("ideally" means that
685 it ignores page restrictions etc.)
fa8d436c
UD
686
687 Because these fields are ints, but internal bookkeeping may
a9177ff5 688 be kept as longs, the reported values may wrap around zero and
fa8d436c
UD
689 thus be inaccurate.
690*/
e3960d1c 691struct mallinfo2 __libc_mallinfo2(void);
cdf64542 692libc_hidden_proto (__libc_mallinfo2)
e3960d1c 693
3b49edc0 694struct mallinfo __libc_mallinfo(void);
88764ae2 695
f65fd747 696
fa8d436c
UD
697/*
698 pvalloc(size_t n);
699 Equivalent to valloc(minimum-page-that-holds(n)), that is,
700 round up n to nearest pagesize.
701 */
3b49edc0 702void* __libc_pvalloc(size_t);
fa8d436c
UD
703
704/*
705 malloc_trim(size_t pad);
706
707 If possible, gives memory back to the system (via negative
708 arguments to sbrk) if there is unused memory at the `high' end of
709 the malloc pool. You can call this after freeing large blocks of
710 memory to potentially reduce the system-level memory requirements
711 of a program. However, it cannot guarantee to reduce memory. Under
712 some allocation patterns, some large free blocks of memory will be
713 locked between two used chunks, so they cannot be given back to
714 the system.
a9177ff5 715
fa8d436c
UD
716 The `pad' argument to malloc_trim represents the amount of free
717 trailing space to leave untrimmed. If this argument is zero,
718 only the minimum amount of memory to maintain internal data
719 structures will be left (one page or less). Non-zero arguments
720 can be supplied to maintain enough trailing space to service
721 future expected allocations without having to re-obtain memory
722 from the system.
a9177ff5 723
fa8d436c
UD
724 Malloc_trim returns 1 if it actually released any memory, else 0.
725 On systems that do not support "negative sbrks", it will always
c958a6a4 726 return 0.
fa8d436c 727*/
3b49edc0 728int __malloc_trim(size_t);
fa8d436c
UD
729
730/*
22a89187 731 malloc_usable_size(void* p);
fa8d436c
UD
732
733 Returns the number of bytes you can actually use in
734 an allocated chunk, which may be more than you requested (although
735 often not) due to alignment and minimum size constraints.
736 You can use this many bytes without worrying about
737 overwriting other allocated objects. This is not a particularly great
738 programming practice. malloc_usable_size can be more useful in
739 debugging and assertions, for example:
740
741 p = malloc(n);
742 assert(malloc_usable_size(p) >= 256);
743
744*/
3b49edc0 745size_t __malloc_usable_size(void*);
fa8d436c
UD
746
747/*
748 malloc_stats();
749 Prints on stderr the amount of space obtained from the system (both
750 via sbrk and mmap), the maximum amount (which may be more than
751 current if malloc_trim and/or munmap got called), and the current
752 number of bytes allocated via malloc (or realloc, etc) but not yet
753 freed. Note that this is the number of bytes allocated, not the
754 number requested. It will be larger than the number requested
755 because of alignment and bookkeeping overhead. Because it includes
756 alignment wastage as being in use, this figure may be greater than
757 zero even when no user-level chunks are allocated.
758
759 The reported current and maximum system memory can be inaccurate if
760 a program makes other calls to system memory allocation functions
761 (normally sbrk) outside of malloc.
762
763 malloc_stats prints only the most commonly interesting statistics.
764 More information can be obtained by calling mallinfo.
765
766*/
3b49edc0 767void __malloc_stats(void);
f65fd747 768
f7ddf3d3
UD
769/*
770 posix_memalign(void **memptr, size_t alignment, size_t size);
771
772 POSIX wrapper like memalign(), checking for validity of size.
773*/
774int __posix_memalign(void **, size_t, size_t);
b5bd5bfe 775#endif /* IS_IN (libc) */
f7ddf3d3 776
5b8d2715
SP
777/*
778 mallopt(int parameter_number, int parameter_value)
779 Sets tunable parameters The format is to provide a
780 (parameter-number, parameter-value) pair. mallopt then sets the
781 corresponding parameter to the argument value if it can (i.e., so
782 long as the value is meaningful), and returns 1 if successful else
783 0. SVID/XPG/ANSI defines four standard param numbers for mallopt,
784 normally defined in malloc.h. Only one of these (M_MXFAST) is used
785 in this malloc. The others (M_NLBLKS, M_GRAIN, M_KEEP) don't apply,
786 so setting them has no effect. But this malloc also supports four
787 other options in mallopt. See below for details. Briefly, supported
788 parameters are as follows (listed defaults are for "typical"
789 configurations).
790
791 Symbol param # default allowed param values
792 M_MXFAST 1 64 0-80 (0 disables fastbins)
793 M_TRIM_THRESHOLD -1 128*1024 any (-1U disables trimming)
794 M_TOP_PAD -2 0 any
795 M_MMAP_THRESHOLD -3 128*1024 any (or 0 if no MMAP support)
796 M_MMAP_MAX -4 65536 any (0 disables use of mmap)
797*/
798int __libc_mallopt(int, int);
799#if IS_IN (libc)
800libc_hidden_proto (__libc_mallopt)
801#endif
802
fa8d436c
UD
803/* mallopt tuning options */
804
f65fd747 805/*
fa8d436c
UD
806 M_MXFAST is the maximum request size used for "fastbins", special bins
807 that hold returned chunks without consolidating their spaces. This
808 enables future requests for chunks of the same size to be handled
809 very quickly, but can increase fragmentation, and thus increase the
810 overall memory footprint of a program.
811
812 This malloc manages fastbins very conservatively yet still
813 efficiently, so fragmentation is rarely a problem for values less
814 than or equal to the default. The maximum supported value of MXFAST
815 is 80. You wouldn't want it any higher than this anyway. Fastbins
816 are designed especially for use with many small structs, objects or
817 strings -- the default handles structs/objects/arrays with sizes up
818 to 8 4byte fields, or small strings representing words, tokens,
819 etc. Using fastbins for larger objects normally worsens
820 fragmentation without improving speed.
821
822 M_MXFAST is set in REQUEST size units. It is internally used in
823 chunksize units, which adds padding and alignment. You can reduce
824 M_MXFAST to 0 to disable all use of fastbins. This causes the malloc
825 algorithm to be a closer approximation of fifo-best-fit in all cases,
826 not just for larger requests, but will generally cause it to be
827 slower.
f65fd747
UD
828*/
829
830
fa8d436c
UD
831/* M_MXFAST is a standard SVID/XPG tuning option, usually listed in malloc.h */
832#ifndef M_MXFAST
a9177ff5 833#define M_MXFAST 1
fa8d436c 834#endif
f65fd747 835
fa8d436c 836#ifndef DEFAULT_MXFAST
425ce2ed 837#define DEFAULT_MXFAST (64 * SIZE_SZ / 4)
10dc2a90
UD
838#endif
839
10dc2a90 840
fa8d436c
UD
841/*
842 M_TRIM_THRESHOLD is the maximum amount of unused top-most memory
843 to keep before releasing via malloc_trim in free().
844
845 Automatic trimming is mainly useful in long-lived programs.
846 Because trimming via sbrk can be slow on some systems, and can
847 sometimes be wasteful (in cases where programs immediately
848 afterward allocate more large chunks) the value should be high
849 enough so that your overall system performance would improve by
850 releasing this much memory.
851
852 The trim threshold and the mmap control parameters (see below)
853 can be traded off with one another. Trimming and mmapping are
854 two different ways of releasing unused memory back to the
855 system. Between these two, it is often possible to keep
856 system-level demands of a long-lived program down to a bare
857 minimum. For example, in one test suite of sessions measuring
858 the XF86 X server on Linux, using a trim threshold of 128K and a
859 mmap threshold of 192K led to near-minimal long term resource
860 consumption.
861
862 If you are using this malloc in a long-lived program, it should
863 pay to experiment with these values. As a rough guide, you
864 might set to a value close to the average size of a process
865 (program) running on your system. Releasing this much memory
866 would allow such a process to run in memory. Generally, it's
867 worth it to tune for trimming rather tham memory mapping when a
868 program undergoes phases where several large chunks are
869 allocated and released in ways that can reuse each other's
870 storage, perhaps mixed with phases where there are no such
871 chunks at all. And in well-behaved long-lived programs,
872 controlling release of large blocks via trimming versus mapping
873 is usually faster.
874
875 However, in most programs, these parameters serve mainly as
876 protection against the system-level effects of carrying around
877 massive amounts of unneeded memory. Since frequent calls to
878 sbrk, mmap, and munmap otherwise degrade performance, the default
879 parameters are set to relatively high values that serve only as
880 safeguards.
881
882 The trim value It must be greater than page size to have any useful
a9177ff5 883 effect. To disable trimming completely, you can set to
fa8d436c
UD
884 (unsigned long)(-1)
885
886 Trim settings interact with fastbin (MXFAST) settings: Unless
887 TRIM_FASTBINS is defined, automatic trimming never takes place upon
888 freeing a chunk with size less than or equal to MXFAST. Trimming is
889 instead delayed until subsequent freeing of larger chunks. However,
890 you can still force an attempted trim by calling malloc_trim.
891
892 Also, trimming is not generally possible in cases where
893 the main arena is obtained via mmap.
894
895 Note that the trick some people use of mallocing a huge space and
896 then freeing it at program startup, in an attempt to reserve system
897 memory, doesn't have the intended effect under automatic trimming,
898 since that memory will immediately be returned to the system.
899*/
900
901#define M_TRIM_THRESHOLD -1
902
903#ifndef DEFAULT_TRIM_THRESHOLD
904#define DEFAULT_TRIM_THRESHOLD (128 * 1024)
905#endif
906
907/*
908 M_TOP_PAD is the amount of extra `padding' space to allocate or
909 retain whenever sbrk is called. It is used in two ways internally:
910
911 * When sbrk is called to extend the top of the arena to satisfy
912 a new malloc request, this much padding is added to the sbrk
913 request.
914
915 * When malloc_trim is called automatically from free(),
916 it is used as the `pad' argument.
917
918 In both cases, the actual amount of padding is rounded
919 so that the end of the arena is always a system page boundary.
920
921 The main reason for using padding is to avoid calling sbrk so
922 often. Having even a small pad greatly reduces the likelihood
923 that nearly every malloc request during program start-up (or
924 after trimming) will invoke sbrk, which needlessly wastes
925 time.
926
927 Automatic rounding-up to page-size units is normally sufficient
928 to avoid measurable overhead, so the default is 0. However, in
929 systems where sbrk is relatively slow, it can pay to increase
930 this value, at the expense of carrying around more memory than
931 the program needs.
932*/
10dc2a90 933
fa8d436c 934#define M_TOP_PAD -2
10dc2a90 935
fa8d436c
UD
936#ifndef DEFAULT_TOP_PAD
937#define DEFAULT_TOP_PAD (0)
938#endif
f65fd747 939
1d05c2fb
UD
940/*
941 MMAP_THRESHOLD_MAX and _MIN are the bounds on the dynamically
942 adjusted MMAP_THRESHOLD.
943*/
944
945#ifndef DEFAULT_MMAP_THRESHOLD_MIN
946#define DEFAULT_MMAP_THRESHOLD_MIN (128 * 1024)
947#endif
948
949#ifndef DEFAULT_MMAP_THRESHOLD_MAX
e404fb16
UD
950 /* For 32-bit platforms we cannot increase the maximum mmap
951 threshold much because it is also the minimum value for the
bd2c2341
UD
952 maximum heap size and its alignment. Going above 512k (i.e., 1M
953 for new heaps) wastes too much address space. */
e404fb16 954# if __WORDSIZE == 32
bd2c2341 955# define DEFAULT_MMAP_THRESHOLD_MAX (512 * 1024)
e404fb16 956# else
bd2c2341 957# define DEFAULT_MMAP_THRESHOLD_MAX (4 * 1024 * 1024 * sizeof(long))
e404fb16 958# endif
1d05c2fb
UD
959#endif
960
fa8d436c
UD
961/*
962 M_MMAP_THRESHOLD is the request size threshold for using mmap()
963 to service a request. Requests of at least this size that cannot
964 be allocated using already-existing space will be serviced via mmap.
965 (If enough normal freed space already exists it is used instead.)
966
967 Using mmap segregates relatively large chunks of memory so that
968 they can be individually obtained and released from the host
969 system. A request serviced through mmap is never reused by any
970 other request (at least not directly; the system may just so
971 happen to remap successive requests to the same locations).
972
973 Segregating space in this way has the benefits that:
974
a9177ff5
RM
975 1. Mmapped space can ALWAYS be individually released back
976 to the system, which helps keep the system level memory
977 demands of a long-lived program low.
fa8d436c
UD
978 2. Mapped memory can never become `locked' between
979 other chunks, as can happen with normally allocated chunks, which
980 means that even trimming via malloc_trim would not release them.
981 3. On some systems with "holes" in address spaces, mmap can obtain
982 memory that sbrk cannot.
983
984 However, it has the disadvantages that:
985
986 1. The space cannot be reclaimed, consolidated, and then
987 used to service later requests, as happens with normal chunks.
988 2. It can lead to more wastage because of mmap page alignment
989 requirements
990 3. It causes malloc performance to be more dependent on host
991 system memory management support routines which may vary in
992 implementation quality and may impose arbitrary
993 limitations. Generally, servicing a request via normal
994 malloc steps is faster than going through a system's mmap.
995
996 The advantages of mmap nearly always outweigh disadvantages for
997 "large" chunks, but the value of "large" varies across systems. The
998 default is an empirically derived value that works well in most
999 systems.
1d05c2fb
UD
1000
1001
1002 Update in 2006:
1003 The above was written in 2001. Since then the world has changed a lot.
1004 Memory got bigger. Applications got bigger. The virtual address space
1005 layout in 32 bit linux changed.
1006
1007 In the new situation, brk() and mmap space is shared and there are no
1008 artificial limits on brk size imposed by the kernel. What is more,
1009 applications have started using transient allocations larger than the
1010 128Kb as was imagined in 2001.
1011
1012 The price for mmap is also high now; each time glibc mmaps from the
1013 kernel, the kernel is forced to zero out the memory it gives to the
1014 application. Zeroing memory is expensive and eats a lot of cache and
1015 memory bandwidth. This has nothing to do with the efficiency of the
1016 virtual memory system, by doing mmap the kernel just has no choice but
1017 to zero.
1018
1019 In 2001, the kernel had a maximum size for brk() which was about 800
1020 megabytes on 32 bit x86, at that point brk() would hit the first
7f0d9e61 1021 mmaped shared libraries and couldn't expand anymore. With current 2.6
1d05c2fb
UD
1022 kernels, the VA space layout is different and brk() and mmap
1023 both can span the entire heap at will.
1024
1025 Rather than using a static threshold for the brk/mmap tradeoff,
1026 we are now using a simple dynamic one. The goal is still to avoid
1027 fragmentation. The old goals we kept are
1028 1) try to get the long lived large allocations to use mmap()
1029 2) really large allocations should always use mmap()
1030 and we're adding now:
1031 3) transient allocations should use brk() to avoid forcing the kernel
1032 having to zero memory over and over again
1033
1034 The implementation works with a sliding threshold, which is by default
1035 limited to go between 128Kb and 32Mb (64Mb for 64 bitmachines) and starts
1036 out at 128Kb as per the 2001 default.
1037
1038 This allows us to satisfy requirement 1) under the assumption that long
1039 lived allocations are made early in the process' lifespan, before it has
1040 started doing dynamic allocations of the same size (which will
1041 increase the threshold).
1042
1043 The upperbound on the threshold satisfies requirement 2)
1044
1045 The threshold goes up in value when the application frees memory that was
1046 allocated with the mmap allocator. The idea is that once the application
1047 starts freeing memory of a certain size, it's highly probable that this is
1048 a size the application uses for transient allocations. This estimator
1049 is there to satisfy the new third requirement.
1050
f65fd747
UD
1051*/
1052
fa8d436c 1053#define M_MMAP_THRESHOLD -3
f65fd747 1054
fa8d436c 1055#ifndef DEFAULT_MMAP_THRESHOLD
1d05c2fb 1056#define DEFAULT_MMAP_THRESHOLD DEFAULT_MMAP_THRESHOLD_MIN
fa8d436c
UD
1057#endif
1058
1059/*
1060 M_MMAP_MAX is the maximum number of requests to simultaneously
1061 service using mmap. This parameter exists because
1062 some systems have a limited number of internal tables for
1063 use by mmap, and using more than a few of them may degrade
1064 performance.
1065
1066 The default is set to a value that serves only as a safeguard.
22a89187 1067 Setting to 0 disables use of mmap for servicing large requests.
fa8d436c 1068*/
f65fd747 1069
fa8d436c
UD
1070#define M_MMAP_MAX -4
1071
1072#ifndef DEFAULT_MMAP_MAX
fa8d436c 1073#define DEFAULT_MMAP_MAX (65536)
f65fd747
UD
1074#endif
1075
100351c3 1076#include <malloc.h>
f65fd747 1077
fa8d436c
UD
1078#ifndef RETURN_ADDRESS
1079#define RETURN_ADDRESS(X_) (NULL)
9ae6fc54 1080#endif
431c33c0 1081
fa8d436c
UD
1082/* Forward declarations. */
1083struct malloc_chunk;
1084typedef struct malloc_chunk* mchunkptr;
431c33c0 1085
fa8d436c 1086/* Internal routines. */
f65fd747 1087
22a89187 1088static void* _int_malloc(mstate, size_t);
425ce2ed 1089static void _int_free(mstate, mchunkptr, int);
542b1105
FW
1090static void _int_free_merge_chunk (mstate, mchunkptr, INTERNAL_SIZE_T);
1091static INTERNAL_SIZE_T _int_free_create_chunk (mstate,
1092 mchunkptr, INTERNAL_SIZE_T,
1093 mchunkptr, INTERNAL_SIZE_T);
1094static void _int_free_maybe_consolidate (mstate, INTERNAL_SIZE_T);
22a89187 1095static void* _int_realloc(mstate, mchunkptr, INTERNAL_SIZE_T,
6e4b2107 1096 INTERNAL_SIZE_T);
22a89187 1097static void* _int_memalign(mstate, size_t, size_t);
b5bd5bfe 1098#if IS_IN (libc)
10ad46bc 1099static void* _mid_memalign(size_t, size_t, void *);
b5bd5bfe 1100#endif
10ad46bc 1101
ac3ed168 1102static void malloc_printerr(const char *str) __attribute__ ((noreturn));
fa8d436c 1103
0c71122c 1104static void munmap_chunk(mchunkptr p);
a9177ff5 1105#if HAVE_MREMAP
0c71122c 1106static mchunkptr mremap_chunk(mchunkptr p, size_t new_size);
a9177ff5 1107#endif
fa8d436c 1108
f4f2ca15
SP
1109static size_t musable (void *mem);
1110
fa8d436c 1111/* ------------------ MMAP support ------------------ */
f65fd747 1112
f65fd747 1113
fa8d436c 1114#include <fcntl.h>
fa8d436c 1115#include <sys/mman.h>
f65fd747 1116
fa8d436c
UD
1117#if !defined(MAP_ANONYMOUS) && defined(MAP_ANON)
1118# define MAP_ANONYMOUS MAP_ANON
1119#endif
f65fd747 1120
fa8d436c 1121#define MMAP(addr, size, prot, flags) \
3b49edc0 1122 __mmap((addr), (size), (prot), (flags)|MAP_ANONYMOUS|MAP_PRIVATE, -1, 0)
f65fd747 1123
f65fd747
UD
1124
1125/*
fa8d436c 1126 ----------------------- Chunk representations -----------------------
f65fd747
UD
1127*/
1128
1129
fa8d436c
UD
1130/*
1131 This struct declaration is misleading (but accurate and necessary).
1132 It declares a "view" into memory allowing access to necessary
1133 fields at known offsets from a given base. See explanation below.
1134*/
1135
1136struct malloc_chunk {
1137
e9c4fe93
FW
1138 INTERNAL_SIZE_T mchunk_prev_size; /* Size of previous chunk (if free). */
1139 INTERNAL_SIZE_T mchunk_size; /* Size in bytes, including overhead. */
fa8d436c
UD
1140
1141 struct malloc_chunk* fd; /* double links -- used only if free. */
f65fd747 1142 struct malloc_chunk* bk;
7ecfbd38
UD
1143
1144 /* Only used for large blocks: pointer to next larger size. */
1145 struct malloc_chunk* fd_nextsize; /* double links -- used only if free. */
1146 struct malloc_chunk* bk_nextsize;
f65fd747
UD
1147};
1148
f65fd747
UD
1149
1150/*
f65fd747
UD
1151 malloc_chunk details:
1152
1153 (The following includes lightly edited explanations by Colin Plumb.)
1154
1155 Chunks of memory are maintained using a `boundary tag' method as
1156 described in e.g., Knuth or Standish. (See the paper by Paul
1157 Wilson ftp://ftp.cs.utexas.edu/pub/garbage/allocsrv.ps for a
1158 survey of such techniques.) Sizes of free chunks are stored both
1159 in the front of each chunk and at the end. This makes
1160 consolidating fragmented chunks into bigger chunks very fast. The
1161 size fields also hold bits representing whether chunks are free or
1162 in use.
1163
1164 An allocated chunk looks like this:
1165
1166
1167 chunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
ae9166f2 1168 | Size of previous chunk, if unallocated (P clear) |
72f90263 1169 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
ae9166f2 1170 | Size of chunk, in bytes |A|M|P|
f65fd747 1171 mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
72f90263
UD
1172 | User data starts here... .
1173 . .
1174 . (malloc_usable_size() bytes) .
1175 . |
f65fd747 1176nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
ae9166f2
FW
1177 | (size of chunk, but used for application data) |
1178 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1179 | Size of next chunk, in bytes |A|0|1|
72f90263 1180 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
f65fd747
UD
1181
1182 Where "chunk" is the front of the chunk for the purpose of most of
1183 the malloc code, but "mem" is the pointer that is returned to the
1184 user. "Nextchunk" is the beginning of the next contiguous chunk.
1185
6f65e668 1186 Chunks always begin on even word boundaries, so the mem portion
f65fd747 1187 (which is returned to the user) is also on an even word boundary, and
fa8d436c 1188 thus at least double-word aligned.
f65fd747
UD
1189
1190 Free chunks are stored in circular doubly-linked lists, and look like this:
1191
1192 chunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
ae9166f2 1193 | Size of previous chunk, if unallocated (P clear) |
72f90263 1194 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
ae9166f2 1195 `head:' | Size of chunk, in bytes |A|0|P|
f65fd747 1196 mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
72f90263
UD
1197 | Forward pointer to next chunk in list |
1198 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1199 | Back pointer to previous chunk in list |
1200 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1201 | Unused space (may be 0 bytes long) .
1202 . .
1203 . |
f65fd747
UD
1204nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1205 `foot:' | Size of chunk, in bytes |
72f90263 1206 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
ae9166f2
FW
1207 | Size of next chunk, in bytes |A|0|0|
1208 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
f65fd747
UD
1209
1210 The P (PREV_INUSE) bit, stored in the unused low-order bit of the
1211 chunk size (which is always a multiple of two words), is an in-use
1212 bit for the *previous* chunk. If that bit is *clear*, then the
1213 word before the current chunk size contains the previous chunk
1214 size, and can be used to find the front of the previous chunk.
fa8d436c
UD
1215 The very first chunk allocated always has this bit set,
1216 preventing access to non-existent (or non-owned) memory. If
1217 prev_inuse is set for any given chunk, then you CANNOT determine
1218 the size of the previous chunk, and might even get a memory
1219 addressing fault when trying to do so.
f65fd747 1220
ae9166f2
FW
1221 The A (NON_MAIN_ARENA) bit is cleared for chunks on the initial,
1222 main arena, described by the main_arena variable. When additional
1223 threads are spawned, each thread receives its own arena (up to a
1224 configurable limit, after which arenas are reused for multiple
1225 threads), and the chunks in these arenas have the A bit set. To
1226 find the arena for a chunk on such a non-main arena, heap_for_ptr
1227 performs a bit mask operation and indirection through the ar_ptr
1228 member of the per-heap header heap_info (see arena.c).
1229
f65fd747 1230 Note that the `foot' of the current chunk is actually represented
fa8d436c
UD
1231 as the prev_size of the NEXT chunk. This makes it easier to
1232 deal with alignments etc but can be very confusing when trying
1233 to extend or adapt this code.
f65fd747 1234
ae9166f2 1235 The three exceptions to all this are:
f65fd747 1236
fa8d436c 1237 1. The special chunk `top' doesn't bother using the
72f90263
UD
1238 trailing size field since there is no next contiguous chunk
1239 that would have to index off it. After initialization, `top'
1240 is forced to always exist. If it would become less than
1241 MINSIZE bytes long, it is replenished.
f65fd747
UD
1242
1243 2. Chunks allocated via mmap, which have the second-lowest-order
72f90263 1244 bit M (IS_MMAPPED) set in their size fields. Because they are
ae9166f2
FW
1245 allocated one-by-one, each must contain its own trailing size
1246 field. If the M bit is set, the other bits are ignored
1247 (because mmapped chunks are neither in an arena, nor adjacent
1248 to a freed chunk). The M bit is also used for chunks which
1249 originally came from a dumped heap via malloc_set_state in
1250 hooks.c.
1251
1252 3. Chunks in fastbins are treated as allocated chunks from the
1253 point of view of the chunk allocator. They are consolidated
1254 with their neighbors only in bulk, in malloc_consolidate.
f65fd747
UD
1255*/
1256
1257/*
fa8d436c
UD
1258 ---------- Size and alignment checks and conversions ----------
1259*/
f65fd747 1260
3784dfc0
RE
1261/* Conversion from malloc headers to user pointers, and back. When
1262 using memory tagging the user data and the malloc data structure
1263 headers have distinct tags. Converting fully from one to the other
1264 involves extracting the tag at the other address and creating a
1265 suitable pointer using it. That can be quite expensive. There are
4eac0ab1
SN
1266 cases when the pointers are not dereferenced (for example only used
1267 for alignment check) so the tags are not relevant, and there are
1268 cases when user data is not tagged distinctly from malloc headers
1269 (user data is untagged because tagging is done late in malloc and
1270 early in free). User memory tagging across internal interfaces:
1271
1272 sysmalloc: Returns untagged memory.
1273 _int_malloc: Returns untagged memory.
1274 _int_free: Takes untagged memory.
1275 _int_memalign: Returns untagged memory.
1276 _int_memalign: Returns untagged memory.
1277 _mid_memalign: Returns tagged memory.
1278 _int_realloc: Takes and returns tagged memory.
1279*/
3784dfc0
RE
1280
1281/* The chunk header is two SIZE_SZ elements, but this is used widely, so
1282 we define it here for clarity later. */
1283#define CHUNK_HDR_SZ (2 * SIZE_SZ)
1284
4eac0ab1 1285/* Convert a chunk address to a user mem pointer without correcting
3784dfc0 1286 the tag. */
ca89f1c7 1287#define chunk2mem(p) ((void*)((char*)(p) + CHUNK_HDR_SZ))
f65fd747 1288
ca89f1c7
SN
1289/* Convert a chunk address to a user mem pointer and extract the right tag. */
1290#define chunk2mem_tag(p) ((void*)tag_at ((char*)(p) + CHUNK_HDR_SZ))
1291
1292/* Convert a user mem pointer to a chunk address and extract the right tag. */
0c719cf4 1293#define mem2chunk(mem) ((mchunkptr)tag_at (((char*)(mem) - CHUNK_HDR_SZ)))
f65fd747 1294
fa8d436c 1295/* The smallest possible chunk */
7ecfbd38 1296#define MIN_CHUNK_SIZE (offsetof(struct malloc_chunk, fd_nextsize))
f65fd747 1297
fa8d436c 1298/* The smallest size we can malloc is an aligned minimal chunk */
f65fd747 1299
fa8d436c
UD
1300#define MINSIZE \
1301 (unsigned long)(((MIN_CHUNK_SIZE+MALLOC_ALIGN_MASK) & ~MALLOC_ALIGN_MASK))
f65fd747 1302
fa8d436c 1303/* Check if m has acceptable alignment */
f65fd747 1304
073f560e
UD
1305#define aligned_OK(m) (((unsigned long)(m) & MALLOC_ALIGN_MASK) == 0)
1306
1307#define misaligned_chunk(p) \
ca89f1c7 1308 ((uintptr_t)(MALLOC_ALIGNMENT == CHUNK_HDR_SZ ? (p) : chunk2mem (p)) \
073f560e 1309 & MALLOC_ALIGN_MASK)
f65fd747 1310
fa8d436c 1311/* pad request bytes into a usable size -- internal version */
3784dfc0
RE
1312/* Note: This must be a macro that evaluates to a compile time constant
1313 if passed a literal constant. */
fa8d436c
UD
1314#define request2size(req) \
1315 (((req) + SIZE_SZ + MALLOC_ALIGN_MASK < MINSIZE) ? \
1316 MINSIZE : \
1317 ((req) + SIZE_SZ + MALLOC_ALIGN_MASK) & ~MALLOC_ALIGN_MASK)
f65fd747 1318
7519dee3
FW
1319/* Check if REQ overflows when padded and aligned and if the resulting
1320 value is less than PTRDIFF_T. Returns the requested size or
1321 MINSIZE in case the value is less than MINSIZE, or 0 if any of the
1322 previous checks fail. */
1323static inline size_t
1324checked_request2size (size_t req) __nonnull (1)
9bf8e29c
AZ
1325{
1326 if (__glibc_unlikely (req > PTRDIFF_MAX))
7519dee3 1327 return 0;
3784dfc0 1328
3784dfc0
RE
1329 /* When using tagged memory, we cannot share the end of the user
1330 block with the header for the next chunk, so ensure that we
1331 allocate blocks that are rounded up to the granule size. Take
1332 care not to overflow from close to MAX_SIZE_T to a small
1333 number. Ideally, this would be part of request2size(), but that
1334 must be a macro that produces a compile time constant if passed
1335 a constant literal. */
63a20eb0 1336 if (__glibc_unlikely (mtag_enabled))
850dbf24
SN
1337 {
1338 /* Ensure this is not evaluated if !mtag_enabled, see gcc PR 99551. */
1339 asm ("");
1340
1341 req = (req + (__MTAG_GRANULE_SIZE - 1)) &
1342 ~(size_t)(__MTAG_GRANULE_SIZE - 1);
1343 }
3784dfc0 1344
7519dee3 1345 return request2size (req);
9bf8e29c 1346}
f65fd747
UD
1347
1348/*
6c8dbf00
OB
1349 --------------- Physical chunk operations ---------------
1350 */
f65fd747 1351
10dc2a90 1352
fa8d436c
UD
1353/* size field is or'ed with PREV_INUSE when previous adjacent chunk in use */
1354#define PREV_INUSE 0x1
f65fd747 1355
fa8d436c 1356/* extract inuse bit of previous chunk */
e9c4fe93 1357#define prev_inuse(p) ((p)->mchunk_size & PREV_INUSE)
f65fd747 1358
f65fd747 1359
fa8d436c
UD
1360/* size field is or'ed with IS_MMAPPED if the chunk was obtained with mmap() */
1361#define IS_MMAPPED 0x2
f65fd747 1362
fa8d436c 1363/* check for mmap()'ed chunk */
e9c4fe93 1364#define chunk_is_mmapped(p) ((p)->mchunk_size & IS_MMAPPED)
f65fd747 1365
f65fd747 1366
fa8d436c
UD
1367/* size field is or'ed with NON_MAIN_ARENA if the chunk was obtained
1368 from a non-main arena. This is only set immediately before handing
1369 the chunk to the user, if necessary. */
1370#define NON_MAIN_ARENA 0x4
f65fd747 1371
ae9166f2 1372/* Check for chunk from main arena. */
e9c4fe93
FW
1373#define chunk_main_arena(p) (((p)->mchunk_size & NON_MAIN_ARENA) == 0)
1374
1375/* Mark a chunk as not being on the main arena. */
1376#define set_non_main_arena(p) ((p)->mchunk_size |= NON_MAIN_ARENA)
f65fd747
UD
1377
1378
a9177ff5 1379/*
6c8dbf00 1380 Bits to mask off when extracting size
f65fd747 1381
6c8dbf00
OB
1382 Note: IS_MMAPPED is intentionally not masked off from size field in
1383 macros for which mmapped chunks should never be seen. This should
1384 cause helpful core dumps to occur if it is tried by accident by
1385 people extending or adapting this malloc.
1386 */
1387#define SIZE_BITS (PREV_INUSE | IS_MMAPPED | NON_MAIN_ARENA)
f65fd747 1388
fa8d436c 1389/* Get size, ignoring use bits */
e9c4fe93 1390#define chunksize(p) (chunksize_nomask (p) & ~(SIZE_BITS))
f65fd747 1391
e9c4fe93
FW
1392/* Like chunksize, but do not mask SIZE_BITS. */
1393#define chunksize_nomask(p) ((p)->mchunk_size)
f65fd747 1394
fa8d436c 1395/* Ptr to next physical malloc_chunk. */
e9c4fe93
FW
1396#define next_chunk(p) ((mchunkptr) (((char *) (p)) + chunksize (p)))
1397
229855e5 1398/* Size of the chunk below P. Only valid if !prev_inuse (P). */
e9c4fe93
FW
1399#define prev_size(p) ((p)->mchunk_prev_size)
1400
229855e5 1401/* Set the size of the chunk below P. Only valid if !prev_inuse (P). */
e9c4fe93 1402#define set_prev_size(p, sz) ((p)->mchunk_prev_size = (sz))
f65fd747 1403
229855e5 1404/* Ptr to previous physical malloc_chunk. Only valid if !prev_inuse (P). */
e9c4fe93 1405#define prev_chunk(p) ((mchunkptr) (((char *) (p)) - prev_size (p)))
f65fd747 1406
fa8d436c 1407/* Treat space at ptr + offset as a chunk */
6c8dbf00 1408#define chunk_at_offset(p, s) ((mchunkptr) (((char *) (p)) + (s)))
fa8d436c
UD
1409
1410/* extract p's inuse bit */
6c8dbf00 1411#define inuse(p) \
e9c4fe93 1412 ((((mchunkptr) (((char *) (p)) + chunksize (p)))->mchunk_size) & PREV_INUSE)
f65fd747 1413
fa8d436c 1414/* set/clear chunk as being inuse without otherwise disturbing */
6c8dbf00 1415#define set_inuse(p) \
e9c4fe93 1416 ((mchunkptr) (((char *) (p)) + chunksize (p)))->mchunk_size |= PREV_INUSE
f65fd747 1417
6c8dbf00 1418#define clear_inuse(p) \
e9c4fe93 1419 ((mchunkptr) (((char *) (p)) + chunksize (p)))->mchunk_size &= ~(PREV_INUSE)
f65fd747
UD
1420
1421
fa8d436c 1422/* check/set/clear inuse bits in known places */
6c8dbf00 1423#define inuse_bit_at_offset(p, s) \
e9c4fe93 1424 (((mchunkptr) (((char *) (p)) + (s)))->mchunk_size & PREV_INUSE)
f65fd747 1425
6c8dbf00 1426#define set_inuse_bit_at_offset(p, s) \
e9c4fe93 1427 (((mchunkptr) (((char *) (p)) + (s)))->mchunk_size |= PREV_INUSE)
f65fd747 1428
6c8dbf00 1429#define clear_inuse_bit_at_offset(p, s) \
e9c4fe93 1430 (((mchunkptr) (((char *) (p)) + (s)))->mchunk_size &= ~(PREV_INUSE))
f65fd747 1431
f65fd747 1432
fa8d436c 1433/* Set size at head, without disturbing its use bit */
e9c4fe93 1434#define set_head_size(p, s) ((p)->mchunk_size = (((p)->mchunk_size & SIZE_BITS) | (s)))
f65fd747 1435
fa8d436c 1436/* Set size/use field */
e9c4fe93 1437#define set_head(p, s) ((p)->mchunk_size = (s))
f65fd747 1438
fa8d436c 1439/* Set size at footer (only when chunk is not in use) */
e9c4fe93 1440#define set_foot(p, s) (((mchunkptr) ((char *) (p) + (s)))->mchunk_prev_size = (s))
f65fd747 1441
e9c4fe93
FW
1442#pragma GCC poison mchunk_size
1443#pragma GCC poison mchunk_prev_size
1444
faf003ed
SN
1445/* This is the size of the real usable data in the chunk. Not valid for
1446 dumped heap chunks. */
1447#define memsize(p) \
1448 (__MTAG_GRANULE_SIZE > SIZE_SZ && __glibc_unlikely (mtag_enabled) ? \
1449 chunksize (p) - CHUNK_HDR_SZ : \
1450 chunksize (p) - CHUNK_HDR_SZ + (chunk_is_mmapped (p) ? 0 : SIZE_SZ))
1451
5295172e 1452/* If memory tagging is enabled the layout changes to accommodate the granule
faf003ed
SN
1453 size, this is wasteful for small allocations so not done by default.
1454 Both the chunk header and user data has to be granule aligned. */
1455_Static_assert (__MTAG_GRANULE_SIZE <= CHUNK_HDR_SZ,
1456 "memory tagging is not supported with large granule.");
1457
42bac88a
SN
1458static __always_inline void *
1459tag_new_usable (void *ptr)
1460{
1461 if (__glibc_unlikely (mtag_enabled) && ptr)
1462 {
1463 mchunkptr cp = mem2chunk(ptr);
faf003ed 1464 ptr = __libc_mtag_tag_region (__libc_mtag_new_tag (ptr), memsize (cp));
42bac88a
SN
1465 }
1466 return ptr;
1467}
1468
fa8d436c 1469/*
6c8dbf00 1470 -------------------- Internal data structures --------------------
fa8d436c
UD
1471
1472 All internal state is held in an instance of malloc_state defined
1473 below. There are no other static variables, except in two optional
a9177ff5 1474 cases:
6c8dbf00
OB
1475 * If USE_MALLOC_LOCK is defined, the mALLOC_MUTEx declared above.
1476 * If mmap doesn't support MAP_ANONYMOUS, a dummy file descriptor
22a89187 1477 for mmap.
fa8d436c
UD
1478
1479 Beware of lots of tricks that minimize the total bookkeeping space
1480 requirements. The result is a little over 1K bytes (for 4byte
1481 pointers and size_t.)
6c8dbf00 1482 */
f65fd747
UD
1483
1484/*
6c8dbf00 1485 Bins
fa8d436c
UD
1486
1487 An array of bin headers for free chunks. Each bin is doubly
1488 linked. The bins are approximately proportionally (log) spaced.
1489 There are a lot of these bins (128). This may look excessive, but
1490 works very well in practice. Most bins hold sizes that are
1491 unusual as malloc request sizes, but are more usual for fragments
1492 and consolidated sets of chunks, which is what these bins hold, so
1493 they can be found quickly. All procedures maintain the invariant
1494 that no consolidated chunk physically borders another one, so each
7f0d9e61 1495 chunk in a list is known to be preceded and followed by either
fa8d436c
UD
1496 inuse chunks or the ends of memory.
1497
1498 Chunks in bins are kept in size order, with ties going to the
1499 approximately least recently used chunk. Ordering isn't needed
1500 for the small bins, which all contain the same-sized chunks, but
1501 facilitates best-fit allocation for larger chunks. These lists
1502 are just sequential. Keeping them in order almost never requires
1503 enough traversal to warrant using fancier ordered data
a9177ff5 1504 structures.
fa8d436c
UD
1505
1506 Chunks of the same size are linked with the most
1507 recently freed at the front, and allocations are taken from the
1508 back. This results in LRU (FIFO) allocation order, which tends
1509 to give each chunk an equal opportunity to be consolidated with
1510 adjacent freed chunks, resulting in larger free chunks and less
1511 fragmentation.
1512
1513 To simplify use in double-linked lists, each bin header acts
1514 as a malloc_chunk. This avoids special-casing for headers.
1515 But to conserve space and improve locality, we allocate
1516 only the fd/bk pointers of bins, and then use repositioning tricks
a9177ff5 1517 to treat these as the fields of a malloc_chunk*.
6c8dbf00 1518 */
f65fd747 1519
6c8dbf00 1520typedef struct malloc_chunk *mbinptr;
f65fd747 1521
fa8d436c 1522/* addressing -- note that bin_at(0) does not exist */
41999a1a
UD
1523#define bin_at(m, i) \
1524 (mbinptr) (((char *) &((m)->bins[((i) - 1) * 2])) \
6c8dbf00 1525 - offsetof (struct malloc_chunk, fd))
f65fd747 1526
fa8d436c 1527/* analog of ++bin */
6c8dbf00 1528#define next_bin(b) ((mbinptr) ((char *) (b) + (sizeof (mchunkptr) << 1)))
f65fd747 1529
fa8d436c
UD
1530/* Reminders about list directionality within bins */
1531#define first(b) ((b)->fd)
1532#define last(b) ((b)->bk)
f65fd747 1533
fa8d436c 1534/*
6c8dbf00 1535 Indexing
fa8d436c
UD
1536
1537 Bins for sizes < 512 bytes contain chunks of all the same size, spaced
1538 8 bytes apart. Larger bins are approximately logarithmically spaced:
f65fd747 1539
fa8d436c
UD
1540 64 bins of size 8
1541 32 bins of size 64
1542 16 bins of size 512
1543 8 bins of size 4096
1544 4 bins of size 32768
1545 2 bins of size 262144
1546 1 bin of size what's left
f65fd747 1547
fa8d436c
UD
1548 There is actually a little bit of slop in the numbers in bin_index
1549 for the sake of speed. This makes no difference elsewhere.
f65fd747 1550
fa8d436c
UD
1551 The bins top out around 1MB because we expect to service large
1552 requests via mmap.
b5a2bbe6
L
1553
1554 Bin 0 does not exist. Bin 1 is the unordered list; if that would be
1555 a valid chunk size the small bins are bumped up one.
6c8dbf00 1556 */
f65fd747 1557
fa8d436c
UD
1558#define NBINS 128
1559#define NSMALLBINS 64
1d47e92f 1560#define SMALLBIN_WIDTH MALLOC_ALIGNMENT
3784dfc0 1561#define SMALLBIN_CORRECTION (MALLOC_ALIGNMENT > CHUNK_HDR_SZ)
b5a2bbe6 1562#define MIN_LARGE_SIZE ((NSMALLBINS - SMALLBIN_CORRECTION) * SMALLBIN_WIDTH)
f65fd747 1563
fa8d436c 1564#define in_smallbin_range(sz) \
6c8dbf00 1565 ((unsigned long) (sz) < (unsigned long) MIN_LARGE_SIZE)
f65fd747 1566
1d47e92f 1567#define smallbin_index(sz) \
6c8dbf00 1568 ((SMALLBIN_WIDTH == 16 ? (((unsigned) (sz)) >> 4) : (((unsigned) (sz)) >> 3))\
b5a2bbe6 1569 + SMALLBIN_CORRECTION)
f65fd747 1570
1d47e92f 1571#define largebin_index_32(sz) \
6c8dbf00
OB
1572 (((((unsigned long) (sz)) >> 6) <= 38) ? 56 + (((unsigned long) (sz)) >> 6) :\
1573 ((((unsigned long) (sz)) >> 9) <= 20) ? 91 + (((unsigned long) (sz)) >> 9) :\
1574 ((((unsigned long) (sz)) >> 12) <= 10) ? 110 + (((unsigned long) (sz)) >> 12) :\
1575 ((((unsigned long) (sz)) >> 15) <= 4) ? 119 + (((unsigned long) (sz)) >> 15) :\
1576 ((((unsigned long) (sz)) >> 18) <= 2) ? 124 + (((unsigned long) (sz)) >> 18) :\
1577 126)
f65fd747 1578
b5a2bbe6 1579#define largebin_index_32_big(sz) \
6c8dbf00
OB
1580 (((((unsigned long) (sz)) >> 6) <= 45) ? 49 + (((unsigned long) (sz)) >> 6) :\
1581 ((((unsigned long) (sz)) >> 9) <= 20) ? 91 + (((unsigned long) (sz)) >> 9) :\
1582 ((((unsigned long) (sz)) >> 12) <= 10) ? 110 + (((unsigned long) (sz)) >> 12) :\
1583 ((((unsigned long) (sz)) >> 15) <= 4) ? 119 + (((unsigned long) (sz)) >> 15) :\
1584 ((((unsigned long) (sz)) >> 18) <= 2) ? 124 + (((unsigned long) (sz)) >> 18) :\
1585 126)
b5a2bbe6 1586
1d47e92f
UD
1587// XXX It remains to be seen whether it is good to keep the widths of
1588// XXX the buckets the same or whether it should be scaled by a factor
1589// XXX of two as well.
1590#define largebin_index_64(sz) \
6c8dbf00
OB
1591 (((((unsigned long) (sz)) >> 6) <= 48) ? 48 + (((unsigned long) (sz)) >> 6) :\
1592 ((((unsigned long) (sz)) >> 9) <= 20) ? 91 + (((unsigned long) (sz)) >> 9) :\
1593 ((((unsigned long) (sz)) >> 12) <= 10) ? 110 + (((unsigned long) (sz)) >> 12) :\
1594 ((((unsigned long) (sz)) >> 15) <= 4) ? 119 + (((unsigned long) (sz)) >> 15) :\
1595 ((((unsigned long) (sz)) >> 18) <= 2) ? 124 + (((unsigned long) (sz)) >> 18) :\
1596 126)
1d47e92f
UD
1597
1598#define largebin_index(sz) \
b5a2bbe6
L
1599 (SIZE_SZ == 8 ? largebin_index_64 (sz) \
1600 : MALLOC_ALIGNMENT == 16 ? largebin_index_32_big (sz) \
1601 : largebin_index_32 (sz))
1d47e92f 1602
fa8d436c 1603#define bin_index(sz) \
6c8dbf00 1604 ((in_smallbin_range (sz)) ? smallbin_index (sz) : largebin_index (sz))
f65fd747 1605
1ecba1fa
FW
1606/* Take a chunk off a bin list. */
1607static void
1608unlink_chunk (mstate av, mchunkptr p)
1609{
1610 if (chunksize (p) != prev_size (next_chunk (p)))
1611 malloc_printerr ("corrupted size vs. prev_size");
1612
1613 mchunkptr fd = p->fd;
1614 mchunkptr bk = p->bk;
1615
1616 if (__builtin_expect (fd->bk != p || bk->fd != p, 0))
1617 malloc_printerr ("corrupted double-linked list");
1618
1619 fd->bk = bk;
1620 bk->fd = fd;
1621 if (!in_smallbin_range (chunksize_nomask (p)) && p->fd_nextsize != NULL)
1622 {
1623 if (p->fd_nextsize->bk_nextsize != p
1624 || p->bk_nextsize->fd_nextsize != p)
1625 malloc_printerr ("corrupted double-linked list (not small)");
1626
1627 if (fd->fd_nextsize == NULL)
1628 {
1629 if (p->fd_nextsize == p)
1630 fd->fd_nextsize = fd->bk_nextsize = fd;
1631 else
1632 {
1633 fd->fd_nextsize = p->fd_nextsize;
1634 fd->bk_nextsize = p->bk_nextsize;
1635 p->fd_nextsize->bk_nextsize = fd;
1636 p->bk_nextsize->fd_nextsize = fd;
1637 }
1638 }
1639 else
1640 {
1641 p->fd_nextsize->bk_nextsize = p->bk_nextsize;
1642 p->bk_nextsize->fd_nextsize = p->fd_nextsize;
1643 }
1644 }
1645}
f65fd747
UD
1646
1647/*
6c8dbf00 1648 Unsorted chunks
fa8d436c
UD
1649
1650 All remainders from chunk splits, as well as all returned chunks,
1651 are first placed in the "unsorted" bin. They are then placed
1652 in regular bins after malloc gives them ONE chance to be used before
1653 binning. So, basically, the unsorted_chunks list acts as a queue,
1654 with chunks being placed on it in free (and malloc_consolidate),
1655 and taken off (to be either used or placed in bins) in malloc.
1656
1657 The NON_MAIN_ARENA flag is never set for unsorted chunks, so it
1658 does not have to be taken into account in size comparisons.
6c8dbf00 1659 */
f65fd747 1660
fa8d436c 1661/* The otherwise unindexable 1-bin is used to hold unsorted chunks. */
6c8dbf00 1662#define unsorted_chunks(M) (bin_at (M, 1))
f65fd747 1663
fa8d436c 1664/*
6c8dbf00 1665 Top
fa8d436c
UD
1666
1667 The top-most available chunk (i.e., the one bordering the end of
1668 available memory) is treated specially. It is never included in
1669 any bin, is used only if no other chunk is available, and is
1670 released back to the system if it is very large (see
1671 M_TRIM_THRESHOLD). Because top initially
1672 points to its own bin with initial zero size, thus forcing
1673 extension on the first malloc request, we avoid having any special
1674 code in malloc to check whether it even exists yet. But we still
1675 need to do so when getting memory from system, so we make
1676 initial_top treat the bin as a legal but unusable chunk during the
1677 interval between initialization and the first call to
3b49edc0 1678 sysmalloc. (This is somewhat delicate, since it relies on
fa8d436c 1679 the 2 preceding words to be zero during this interval as well.)
6c8dbf00 1680 */
f65fd747 1681
fa8d436c 1682/* Conveniently, the unsorted bin can be used as dummy top on first call */
6c8dbf00 1683#define initial_top(M) (unsorted_chunks (M))
f65fd747 1684
fa8d436c 1685/*
6c8dbf00 1686 Binmap
f65fd747 1687
fa8d436c
UD
1688 To help compensate for the large number of bins, a one-level index
1689 structure is used for bin-by-bin searching. `binmap' is a
1690 bitvector recording whether bins are definitely empty so they can
1691 be skipped over during during traversals. The bits are NOT always
1692 cleared as soon as bins are empty, but instead only
1693 when they are noticed to be empty during traversal in malloc.
6c8dbf00 1694 */
f65fd747 1695
fa8d436c
UD
1696/* Conservatively use 32 bits per map word, even if on 64bit system */
1697#define BINMAPSHIFT 5
1698#define BITSPERMAP (1U << BINMAPSHIFT)
1699#define BINMAPSIZE (NBINS / BITSPERMAP)
f65fd747 1700
fa8d436c 1701#define idx2block(i) ((i) >> BINMAPSHIFT)
6c8dbf00 1702#define idx2bit(i) ((1U << ((i) & ((1U << BINMAPSHIFT) - 1))))
f65fd747 1703
6c8dbf00
OB
1704#define mark_bin(m, i) ((m)->binmap[idx2block (i)] |= idx2bit (i))
1705#define unmark_bin(m, i) ((m)->binmap[idx2block (i)] &= ~(idx2bit (i)))
1706#define get_binmap(m, i) ((m)->binmap[idx2block (i)] & idx2bit (i))
f65fd747 1707
fa8d436c 1708/*
6c8dbf00 1709 Fastbins
fa8d436c
UD
1710
1711 An array of lists holding recently freed small chunks. Fastbins
1712 are not doubly linked. It is faster to single-link them, and
1713 since chunks are never removed from the middles of these lists,
1714 double linking is not necessary. Also, unlike regular bins, they
1715 are not even processed in FIFO order (they use faster LIFO) since
1716 ordering doesn't much matter in the transient contexts in which
1717 fastbins are normally used.
1718
1719 Chunks in fastbins keep their inuse bit set, so they cannot
1720 be consolidated with other free chunks. malloc_consolidate
1721 releases all chunks in fastbins and consolidates them with
a9177ff5 1722 other free chunks.
6c8dbf00 1723 */
f65fd747 1724
6c8dbf00 1725typedef struct malloc_chunk *mfastbinptr;
425ce2ed 1726#define fastbin(ar_ptr, idx) ((ar_ptr)->fastbinsY[idx])
f65fd747 1727
fa8d436c 1728/* offset 2 to use otherwise unindexable first 2 bins */
425ce2ed 1729#define fastbin_index(sz) \
6c8dbf00 1730 ((((unsigned int) (sz)) >> (SIZE_SZ == 8 ? 4 : 3)) - 2)
425ce2ed 1731
f65fd747 1732
fa8d436c 1733/* The maximum fastbin request size we support */
425ce2ed 1734#define MAX_FAST_SIZE (80 * SIZE_SZ / 4)
f65fd747 1735
6c8dbf00 1736#define NFASTBINS (fastbin_index (request2size (MAX_FAST_SIZE)) + 1)
f65fd747
UD
1737
1738/*
6c8dbf00
OB
1739 FASTBIN_CONSOLIDATION_THRESHOLD is the size of a chunk in free()
1740 that triggers automatic consolidation of possibly-surrounding
1741 fastbin chunks. This is a heuristic, so the exact value should not
1742 matter too much. It is defined at half the default trim threshold as a
1743 compromise heuristic to only attempt consolidation if it is likely
1744 to lead to trimming. However, it is not dynamically tunable, since
1745 consolidation reduces fragmentation surrounding large chunks even
1746 if trimming is not used.
1747 */
f65fd747 1748
fa8d436c 1749#define FASTBIN_CONSOLIDATION_THRESHOLD (65536UL)
f65fd747 1750
f65fd747 1751/*
6c8dbf00
OB
1752 NONCONTIGUOUS_BIT indicates that MORECORE does not return contiguous
1753 regions. Otherwise, contiguity is exploited in merging together,
1754 when possible, results from consecutive MORECORE calls.
f65fd747 1755
6c8dbf00
OB
1756 The initial value comes from MORECORE_CONTIGUOUS, but is
1757 changed dynamically if mmap is ever used as an sbrk substitute.
1758 */
f65fd747 1759
fa8d436c 1760#define NONCONTIGUOUS_BIT (2U)
f65fd747 1761
6c8dbf00
OB
1762#define contiguous(M) (((M)->flags & NONCONTIGUOUS_BIT) == 0)
1763#define noncontiguous(M) (((M)->flags & NONCONTIGUOUS_BIT) != 0)
1764#define set_noncontiguous(M) ((M)->flags |= NONCONTIGUOUS_BIT)
9bf248c6 1765#define set_contiguous(M) ((M)->flags &= ~NONCONTIGUOUS_BIT)
f65fd747 1766
eac43cbb 1767/* Maximum size of memory handled in fastbins. */
15a94e66 1768static uint8_t global_max_fast;
eac43cbb 1769
a9177ff5
RM
1770/*
1771 Set value of max_fast.
fa8d436c 1772 Use impossibly small value if 0.
3381be5c
WD
1773 Precondition: there are no existing fastbin chunks in the main arena.
1774 Since do_check_malloc_state () checks this, we call malloc_consolidate ()
1775 before changing max_fast. Note other arenas will leak their fast bin
1776 entries if max_fast is reduced.
6c8dbf00 1777 */
f65fd747 1778
9bf248c6 1779#define set_max_fast(s) \
b9cde4e3 1780 global_max_fast = (((size_t) (s) <= MALLOC_ALIGN_MASK - SIZE_SZ) \
ff12e0fb 1781 ? MIN_CHUNK_SIZE / 2 : ((s + SIZE_SZ) & ~MALLOC_ALIGN_MASK))
f65fd747 1782
eac43cbb
FW
1783static inline INTERNAL_SIZE_T
1784get_max_fast (void)
1785{
1786 /* Tell the GCC optimizers that global_max_fast is never larger
1787 than MAX_FAST_SIZE. This avoids out-of-bounds array accesses in
1788 _int_malloc after constant propagation of the size parameter.
1789 (The code never executes because malloc preserves the
1790 global_max_fast invariant, but the optimizers may not recognize
1791 this.) */
1792 if (global_max_fast > MAX_FAST_SIZE)
1793 __builtin_unreachable ();
1794 return global_max_fast;
1795}
f65fd747
UD
1796
1797/*
fa8d436c 1798 ----------- Internal state representation and initialization -----------
6c8dbf00 1799 */
f65fd747 1800
e956075a
WD
1801/*
1802 have_fastchunks indicates that there are probably some fastbin chunks.
1803 It is set true on entering a chunk into any fastbin, and cleared early in
1804 malloc_consolidate. The value is approximate since it may be set when there
1805 are no fastbin chunks, or it may be clear even if there are fastbin chunks
1806 available. Given it's sole purpose is to reduce number of redundant calls to
1807 malloc_consolidate, it does not affect correctness. As a result we can safely
1808 use relaxed atomic accesses.
1809 */
1810
1811
6c8dbf00
OB
1812struct malloc_state
1813{
fa8d436c 1814 /* Serialize access. */
cbb47fa1 1815 __libc_lock_define (, mutex);
9bf248c6
UD
1816
1817 /* Flags (formerly in max_fast). */
1818 int flags;
f65fd747 1819
e956075a 1820 /* Set if the fastbin chunks contain recently inserted free blocks. */
2c2245b9
WD
1821 /* Note this is a bool but not all targets support atomics on booleans. */
1822 int have_fastchunks;
e956075a 1823
fa8d436c 1824 /* Fastbins */
6c8dbf00 1825 mfastbinptr fastbinsY[NFASTBINS];
f65fd747 1826
fa8d436c 1827 /* Base of the topmost chunk -- not otherwise kept in a bin */
6c8dbf00 1828 mchunkptr top;
f65fd747 1829
fa8d436c 1830 /* The remainder from the most recent split of a small request */
6c8dbf00 1831 mchunkptr last_remainder;
f65fd747 1832
fa8d436c 1833 /* Normal bins packed as described above */
6c8dbf00 1834 mchunkptr bins[NBINS * 2 - 2];
f65fd747 1835
fa8d436c 1836 /* Bitmap of bins */
6c8dbf00 1837 unsigned int binmap[BINMAPSIZE];
f65fd747 1838
fa8d436c
UD
1839 /* Linked list */
1840 struct malloc_state *next;
f65fd747 1841
a62719ba 1842 /* Linked list for free arenas. Access to this field is serialized
90c400bd 1843 by free_list_lock in arena.c. */
425ce2ed 1844 struct malloc_state *next_free;
425ce2ed 1845
a62719ba 1846 /* Number of threads attached to this arena. 0 if the arena is on
90c400bd
FW
1847 the free list. Access to this field is serialized by
1848 free_list_lock in arena.c. */
a62719ba
FW
1849 INTERNAL_SIZE_T attached_threads;
1850
fa8d436c
UD
1851 /* Memory allocated from the system in this arena. */
1852 INTERNAL_SIZE_T system_mem;
1853 INTERNAL_SIZE_T max_system_mem;
1854};
f65fd747 1855
6c8dbf00
OB
1856struct malloc_par
1857{
fa8d436c 1858 /* Tunable parameters */
6c8dbf00
OB
1859 unsigned long trim_threshold;
1860 INTERNAL_SIZE_T top_pad;
1861 INTERNAL_SIZE_T mmap_threshold;
1862 INTERNAL_SIZE_T arena_test;
1863 INTERNAL_SIZE_T arena_max;
fa8d436c 1864
5f6d8d97
AZ
1865 /* Transparent Large Page support. */
1866 INTERNAL_SIZE_T thp_pagesize;
98d5fcb8
AZ
1867 /* A value different than 0 means to align mmap allocation to hp_pagesize
1868 add hp_flags on flags. */
1869 INTERNAL_SIZE_T hp_pagesize;
1870 int hp_flags;
5f6d8d97 1871
fa8d436c 1872 /* Memory map support */
6c8dbf00
OB
1873 int n_mmaps;
1874 int n_mmaps_max;
1875 int max_n_mmaps;
1d05c2fb
UD
1876 /* the mmap_threshold is dynamic, until the user sets
1877 it manually, at which point we need to disable any
1878 dynamic behavior. */
6c8dbf00 1879 int no_dyn_threshold;
fa8d436c 1880
fa8d436c 1881 /* Statistics */
6c8dbf00 1882 INTERNAL_SIZE_T mmapped_mem;
6c8dbf00 1883 INTERNAL_SIZE_T max_mmapped_mem;
fa8d436c
UD
1884
1885 /* First address handed out by MORECORE/sbrk. */
6c8dbf00 1886 char *sbrk_base;
d5c3fafc
DD
1887
1888#if USE_TCACHE
1889 /* Maximum number of buckets to use. */
1890 size_t tcache_bins;
1891 size_t tcache_max_bytes;
1892 /* Maximum number of chunks in each bucket. */
1893 size_t tcache_count;
1894 /* Maximum number of chunks to remove from the unsorted list, which
1895 aren't used to prefill the cache. */
1896 size_t tcache_unsorted_limit;
1897#endif
fa8d436c 1898};
f65fd747 1899
fa8d436c
UD
1900/* There are several instances of this struct ("arenas") in this
1901 malloc. If you are adapting this malloc in a way that does NOT use
1902 a static or mmapped malloc_state, you MUST explicitly zero-fill it
1903 before using. This malloc relies on the property that malloc_state
1904 is initialized to all zeroes (as is true of C statics). */
f65fd747 1905
02d46fc4 1906static struct malloc_state main_arena =
6c8dbf00 1907{
400e1226 1908 .mutex = _LIBC_LOCK_INITIALIZER,
a62719ba
FW
1909 .next = &main_arena,
1910 .attached_threads = 1
6c8dbf00 1911};
f65fd747 1912
fa8d436c 1913/* There is only one instance of the malloc parameters. */
f65fd747 1914
02d46fc4 1915static struct malloc_par mp_ =
6c8dbf00
OB
1916{
1917 .top_pad = DEFAULT_TOP_PAD,
1918 .n_mmaps_max = DEFAULT_MMAP_MAX,
1919 .mmap_threshold = DEFAULT_MMAP_THRESHOLD,
1920 .trim_threshold = DEFAULT_TRIM_THRESHOLD,
1921#define NARENAS_FROM_NCORES(n) ((n) * (sizeof (long) == 4 ? 2 : 8))
1922 .arena_test = NARENAS_FROM_NCORES (1)
d5c3fafc
DD
1923#if USE_TCACHE
1924 ,
1925 .tcache_count = TCACHE_FILL_COUNT,
1926 .tcache_bins = TCACHE_MAX_BINS,
1927 .tcache_max_bytes = tidx2usize (TCACHE_MAX_BINS-1),
1928 .tcache_unsorted_limit = 0 /* No limit. */
1929#endif
6c8dbf00 1930};
f65fd747 1931
fa8d436c 1932/*
6c8dbf00 1933 Initialize a malloc_state struct.
f65fd747 1934
3381be5c
WD
1935 This is called from ptmalloc_init () or from _int_new_arena ()
1936 when creating a new arena.
6c8dbf00 1937 */
f65fd747 1938
6c8dbf00
OB
1939static void
1940malloc_init_state (mstate av)
fa8d436c 1941{
6c8dbf00 1942 int i;
fa8d436c 1943 mbinptr bin;
a9177ff5 1944
fa8d436c 1945 /* Establish circular links for normal bins */
6c8dbf00
OB
1946 for (i = 1; i < NBINS; ++i)
1947 {
1948 bin = bin_at (av, i);
1949 bin->fd = bin->bk = bin;
1950 }
f65fd747 1951
fa8d436c
UD
1952#if MORECORE_CONTIGUOUS
1953 if (av != &main_arena)
1954#endif
6c8dbf00 1955 set_noncontiguous (av);
9bf248c6 1956 if (av == &main_arena)
6c8dbf00 1957 set_max_fast (DEFAULT_MXFAST);
e956075a 1958 atomic_store_relaxed (&av->have_fastchunks, false);
f65fd747 1959
6c8dbf00 1960 av->top = initial_top (av);
fa8d436c 1961}
e9b3e3c5 1962
a9177ff5 1963/*
fa8d436c 1964 Other internal utilities operating on mstates
6c8dbf00 1965 */
f65fd747 1966
6c8dbf00
OB
1967static void *sysmalloc (INTERNAL_SIZE_T, mstate);
1968static int systrim (size_t, mstate);
1969static void malloc_consolidate (mstate);
7e3be507 1970
404d4cef
RM
1971
1972/* -------------- Early definitions for debugging hooks ---------------- */
1973
0a947e06
FW
1974/* This function is called from the arena shutdown hook, to free the
1975 thread cache (if it exists). */
1976static void tcache_thread_shutdown (void);
404d4cef 1977
854278df
UD
1978/* ------------------ Testing support ----------------------------------*/
1979
1980static int perturb_byte;
1981
af102d95 1982static void
e8349efd
OB
1983alloc_perturb (char *p, size_t n)
1984{
1985 if (__glibc_unlikely (perturb_byte))
1986 memset (p, perturb_byte ^ 0xff, n);
1987}
1988
af102d95 1989static void
e8349efd
OB
1990free_perturb (char *p, size_t n)
1991{
1992 if (__glibc_unlikely (perturb_byte))
1993 memset (p, perturb_byte, n);
1994}
1995
854278df
UD
1996
1997
3ea5be54
AO
1998#include <stap-probe.h>
1999
5f6d8d97
AZ
2000/* ----------- Routines dealing with transparent huge pages ----------- */
2001
2002static inline void
2003madvise_thp (void *p, INTERNAL_SIZE_T size)
2004{
33237fe8 2005#ifdef MADV_HUGEPAGE
5f6d8d97
AZ
2006 /* Do not consider areas smaller than a huge page or if the tunable is
2007 not active. */
2008 if (mp_.thp_pagesize == 0 || size < mp_.thp_pagesize)
2009 return;
7478c995
AZ
2010
2011 /* Linux requires the input address to be page-aligned, and unaligned
2012 inputs happens only for initial data segment. */
2013 if (__glibc_unlikely (!PTR_IS_ALIGNED (p, GLRO (dl_pagesize))))
2014 {
2015 void *q = PTR_ALIGN_DOWN (p, GLRO (dl_pagesize));
2016 size += PTR_DIFF (p, q);
2017 p = q;
2018 }
2019
5f6d8d97
AZ
2020 __madvise (p, size, MADV_HUGEPAGE);
2021#endif
2022}
2023
fa8d436c
UD
2024/* ------------------- Support for multiple arenas -------------------- */
2025#include "arena.c"
f65fd747 2026
fa8d436c 2027/*
6c8dbf00 2028 Debugging support
f65fd747 2029
6c8dbf00
OB
2030 These routines make a number of assertions about the states
2031 of data structures that should be true at all times. If any
2032 are not true, it's very likely that a user program has somehow
2033 trashed memory. (It's also possible that there is a coding error
2034 in malloc. In which case, please report it!)
2035 */
ee74a442 2036
6c8dbf00 2037#if !MALLOC_DEBUG
d8f00d46 2038
6c8dbf00
OB
2039# define check_chunk(A, P)
2040# define check_free_chunk(A, P)
2041# define check_inuse_chunk(A, P)
2042# define check_remalloced_chunk(A, P, N)
2043# define check_malloced_chunk(A, P, N)
2044# define check_malloc_state(A)
d8f00d46 2045
fa8d436c 2046#else
ca34d7a7 2047
6c8dbf00
OB
2048# define check_chunk(A, P) do_check_chunk (A, P)
2049# define check_free_chunk(A, P) do_check_free_chunk (A, P)
2050# define check_inuse_chunk(A, P) do_check_inuse_chunk (A, P)
2051# define check_remalloced_chunk(A, P, N) do_check_remalloced_chunk (A, P, N)
2052# define check_malloced_chunk(A, P, N) do_check_malloced_chunk (A, P, N)
2053# define check_malloc_state(A) do_check_malloc_state (A)
ca34d7a7 2054
fa8d436c 2055/*
6c8dbf00
OB
2056 Properties of all chunks
2057 */
ca34d7a7 2058
6c8dbf00
OB
2059static void
2060do_check_chunk (mstate av, mchunkptr p)
ca34d7a7 2061{
6c8dbf00 2062 unsigned long sz = chunksize (p);
fa8d436c 2063 /* min and max possible addresses assuming contiguous allocation */
6c8dbf00
OB
2064 char *max_address = (char *) (av->top) + chunksize (av->top);
2065 char *min_address = max_address - av->system_mem;
fa8d436c 2066
6c8dbf00
OB
2067 if (!chunk_is_mmapped (p))
2068 {
2069 /* Has legal address ... */
2070 if (p != av->top)
2071 {
2072 if (contiguous (av))
2073 {
2074 assert (((char *) p) >= min_address);
2075 assert (((char *) p + sz) <= ((char *) (av->top)));
2076 }
2077 }
2078 else
2079 {
2080 /* top size is always at least MINSIZE */
2081 assert ((unsigned long) (sz) >= MINSIZE);
2082 /* top predecessor always marked inuse */
2083 assert (prev_inuse (p));
2084 }
fa8d436c 2085 }
0552fd2c 2086 else
6c8dbf00
OB
2087 {
2088 /* address is outside main heap */
2089 if (contiguous (av) && av->top != initial_top (av))
2090 {
2091 assert (((char *) p) < min_address || ((char *) p) >= max_address);
2092 }
2093 /* chunk is page-aligned */
e9c4fe93 2094 assert (((prev_size (p) + sz) & (GLRO (dl_pagesize) - 1)) == 0);
6c8dbf00 2095 /* mem is aligned */
ca89f1c7 2096 assert (aligned_OK (chunk2mem (p)));
fa8d436c 2097 }
eb406346
UD
2098}
2099
fa8d436c 2100/*
6c8dbf00
OB
2101 Properties of free chunks
2102 */
ee74a442 2103
6c8dbf00
OB
2104static void
2105do_check_free_chunk (mstate av, mchunkptr p)
67c94753 2106{
3381be5c 2107 INTERNAL_SIZE_T sz = chunksize_nomask (p) & ~(PREV_INUSE | NON_MAIN_ARENA);
6c8dbf00 2108 mchunkptr next = chunk_at_offset (p, sz);
67c94753 2109
6c8dbf00 2110 do_check_chunk (av, p);
67c94753 2111
fa8d436c 2112 /* Chunk must claim to be free ... */
6c8dbf00
OB
2113 assert (!inuse (p));
2114 assert (!chunk_is_mmapped (p));
67c94753 2115
fa8d436c 2116 /* Unless a special marker, must have OK fields */
6c8dbf00
OB
2117 if ((unsigned long) (sz) >= MINSIZE)
2118 {
2119 assert ((sz & MALLOC_ALIGN_MASK) == 0);
ca89f1c7 2120 assert (aligned_OK (chunk2mem (p)));
6c8dbf00 2121 /* ... matching footer field */
3381be5c 2122 assert (prev_size (next_chunk (p)) == sz);
6c8dbf00
OB
2123 /* ... and is fully consolidated */
2124 assert (prev_inuse (p));
2125 assert (next == av->top || inuse (next));
2126
2127 /* ... and has minimally sane links */
2128 assert (p->fd->bk == p);
2129 assert (p->bk->fd == p);
2130 }
fa8d436c 2131 else /* markers are always of size SIZE_SZ */
6c8dbf00 2132 assert (sz == SIZE_SZ);
67c94753 2133}
67c94753 2134
fa8d436c 2135/*
6c8dbf00
OB
2136 Properties of inuse chunks
2137 */
fa8d436c 2138
6c8dbf00
OB
2139static void
2140do_check_inuse_chunk (mstate av, mchunkptr p)
f65fd747 2141{
fa8d436c 2142 mchunkptr next;
f65fd747 2143
6c8dbf00 2144 do_check_chunk (av, p);
f65fd747 2145
6c8dbf00 2146 if (chunk_is_mmapped (p))
fa8d436c 2147 return; /* mmapped chunks have no next/prev */
ca34d7a7 2148
fa8d436c 2149 /* Check whether it claims to be in use ... */
6c8dbf00 2150 assert (inuse (p));
10dc2a90 2151
6c8dbf00 2152 next = next_chunk (p);
10dc2a90 2153
fa8d436c 2154 /* ... and is surrounded by OK chunks.
6c8dbf00
OB
2155 Since more things can be checked with free chunks than inuse ones,
2156 if an inuse chunk borders them and debug is on, it's worth doing them.
2157 */
2158 if (!prev_inuse (p))
2159 {
2160 /* Note that we cannot even look at prev unless it is not inuse */
2161 mchunkptr prv = prev_chunk (p);
2162 assert (next_chunk (prv) == p);
2163 do_check_free_chunk (av, prv);
2164 }
fa8d436c 2165
6c8dbf00
OB
2166 if (next == av->top)
2167 {
2168 assert (prev_inuse (next));
2169 assert (chunksize (next) >= MINSIZE);
2170 }
2171 else if (!inuse (next))
2172 do_check_free_chunk (av, next);
10dc2a90
UD
2173}
2174
fa8d436c 2175/*
6c8dbf00
OB
2176 Properties of chunks recycled from fastbins
2177 */
fa8d436c 2178
6c8dbf00
OB
2179static void
2180do_check_remalloced_chunk (mstate av, mchunkptr p, INTERNAL_SIZE_T s)
10dc2a90 2181{
3381be5c 2182 INTERNAL_SIZE_T sz = chunksize_nomask (p) & ~(PREV_INUSE | NON_MAIN_ARENA);
fa8d436c 2183
6c8dbf00
OB
2184 if (!chunk_is_mmapped (p))
2185 {
2186 assert (av == arena_for_chunk (p));
e9c4fe93 2187 if (chunk_main_arena (p))
6c8dbf00 2188 assert (av == &main_arena);
e9c4fe93
FW
2189 else
2190 assert (av != &main_arena);
6c8dbf00 2191 }
fa8d436c 2192
6c8dbf00 2193 do_check_inuse_chunk (av, p);
fa8d436c
UD
2194
2195 /* Legal size ... */
6c8dbf00
OB
2196 assert ((sz & MALLOC_ALIGN_MASK) == 0);
2197 assert ((unsigned long) (sz) >= MINSIZE);
fa8d436c 2198 /* ... and alignment */
ca89f1c7 2199 assert (aligned_OK (chunk2mem (p)));
fa8d436c 2200 /* chunk is less than MINSIZE more than request */
6c8dbf00
OB
2201 assert ((long) (sz) - (long) (s) >= 0);
2202 assert ((long) (sz) - (long) (s + MINSIZE) < 0);
10dc2a90
UD
2203}
2204
fa8d436c 2205/*
6c8dbf00
OB
2206 Properties of nonrecycled chunks at the point they are malloced
2207 */
fa8d436c 2208
6c8dbf00
OB
2209static void
2210do_check_malloced_chunk (mstate av, mchunkptr p, INTERNAL_SIZE_T s)
10dc2a90 2211{
fa8d436c 2212 /* same as recycled case ... */
6c8dbf00 2213 do_check_remalloced_chunk (av, p, s);
10dc2a90 2214
fa8d436c 2215 /*
6c8dbf00
OB
2216 ... plus, must obey implementation invariant that prev_inuse is
2217 always true of any allocated chunk; i.e., that each allocated
2218 chunk borders either a previously allocated and still in-use
2219 chunk, or the base of its memory arena. This is ensured
2220 by making all allocations from the `lowest' part of any found
2221 chunk. This does not necessarily hold however for chunks
2222 recycled via fastbins.
2223 */
2224
2225 assert (prev_inuse (p));
fa8d436c 2226}
10dc2a90 2227
f65fd747 2228
fa8d436c 2229/*
6c8dbf00 2230 Properties of malloc_state.
f65fd747 2231
6c8dbf00
OB
2232 This may be useful for debugging malloc, as well as detecting user
2233 programmer errors that somehow write into malloc_state.
f65fd747 2234
6c8dbf00
OB
2235 If you are extending or experimenting with this malloc, you can
2236 probably figure out how to hack this routine to print out or
2237 display chunk addresses, sizes, bins, and other instrumentation.
2238 */
f65fd747 2239
6c8dbf00
OB
2240static void
2241do_check_malloc_state (mstate av)
fa8d436c
UD
2242{
2243 int i;
2244 mchunkptr p;
2245 mchunkptr q;
2246 mbinptr b;
fa8d436c
UD
2247 unsigned int idx;
2248 INTERNAL_SIZE_T size;
2249 unsigned long total = 0;
2250 int max_fast_bin;
f65fd747 2251
fa8d436c 2252 /* internal size_t must be no wider than pointer type */
6c8dbf00 2253 assert (sizeof (INTERNAL_SIZE_T) <= sizeof (char *));
f65fd747 2254
fa8d436c 2255 /* alignment is a power of 2 */
6c8dbf00 2256 assert ((MALLOC_ALIGNMENT & (MALLOC_ALIGNMENT - 1)) == 0);
f65fd747 2257
3381be5c
WD
2258 /* Check the arena is initialized. */
2259 assert (av->top != 0);
2260
2261 /* No memory has been allocated yet, so doing more tests is not possible. */
2262 if (av->top == initial_top (av))
fa8d436c 2263 return;
f65fd747 2264
fa8d436c 2265 /* pagesize is a power of 2 */
8a35c3fe 2266 assert (powerof2(GLRO (dl_pagesize)));
f65fd747 2267
fa8d436c 2268 /* A contiguous main_arena is consistent with sbrk_base. */
6c8dbf00
OB
2269 if (av == &main_arena && contiguous (av))
2270 assert ((char *) mp_.sbrk_base + av->system_mem ==
2271 (char *) av->top + chunksize (av->top));
fa8d436c
UD
2272
2273 /* properties of fastbins */
2274
2275 /* max_fast is in allowed range */
6c8dbf00
OB
2276 assert ((get_max_fast () & ~1) <= request2size (MAX_FAST_SIZE));
2277
2278 max_fast_bin = fastbin_index (get_max_fast ());
2279
2280 for (i = 0; i < NFASTBINS; ++i)
2281 {
2282 p = fastbin (av, i);
2283
2284 /* The following test can only be performed for the main arena.
2285 While mallopt calls malloc_consolidate to get rid of all fast
2286 bins (especially those larger than the new maximum) this does
2287 only happen for the main arena. Trying to do this for any
2288 other arena would mean those arenas have to be locked and
2289 malloc_consolidate be called for them. This is excessive. And
2290 even if this is acceptable to somebody it still cannot solve
2291 the problem completely since if the arena is locked a
2292 concurrent malloc call might create a new arena which then
2293 could use the newly invalid fast bins. */
2294
2295 /* all bins past max_fast are empty */
2296 if (av == &main_arena && i > max_fast_bin)
2297 assert (p == 0);
2298
2299 while (p != 0)
2300 {
49c3c376 2301 if (__glibc_unlikely (misaligned_chunk (p)))
768358b6 2302 malloc_printerr ("do_check_malloc_state(): "
a1a486d7 2303 "unaligned fastbin chunk detected");
6c8dbf00
OB
2304 /* each chunk claims to be inuse */
2305 do_check_inuse_chunk (av, p);
2306 total += chunksize (p);
2307 /* chunk belongs in this bin */
2308 assert (fastbin_index (chunksize (p)) == i);
a1a486d7 2309 p = REVEAL_PTR (p->fd);
6c8dbf00 2310 }
fa8d436c 2311 }
fa8d436c 2312
fa8d436c 2313 /* check normal bins */
6c8dbf00
OB
2314 for (i = 1; i < NBINS; ++i)
2315 {
2316 b = bin_at (av, i);
2317
2318 /* binmap is accurate (except for bin 1 == unsorted_chunks) */
2319 if (i >= 2)
2320 {
2321 unsigned int binbit = get_binmap (av, i);
2322 int empty = last (b) == b;
2323 if (!binbit)
2324 assert (empty);
2325 else if (!empty)
2326 assert (binbit);
2327 }
2328
2329 for (p = last (b); p != b; p = p->bk)
2330 {
2331 /* each chunk claims to be free */
2332 do_check_free_chunk (av, p);
2333 size = chunksize (p);
2334 total += size;
2335 if (i >= 2)
2336 {
2337 /* chunk belongs in bin */
2338 idx = bin_index (size);
2339 assert (idx == i);
2340 /* lists are sorted */
2341 assert (p->bk == b ||
2342 (unsigned long) chunksize (p->bk) >= (unsigned long) chunksize (p));
2343
2344 if (!in_smallbin_range (size))
2345 {
2346 if (p->fd_nextsize != NULL)
2347 {
2348 if (p->fd_nextsize == p)
2349 assert (p->bk_nextsize == p);
2350 else
2351 {
2352 if (p->fd_nextsize == first (b))
2353 assert (chunksize (p) < chunksize (p->fd_nextsize));
2354 else
2355 assert (chunksize (p) > chunksize (p->fd_nextsize));
2356
2357 if (p == first (b))
2358 assert (chunksize (p) > chunksize (p->bk_nextsize));
2359 else
2360 assert (chunksize (p) < chunksize (p->bk_nextsize));
2361 }
2362 }
2363 else
2364 assert (p->bk_nextsize == NULL);
2365 }
2366 }
2367 else if (!in_smallbin_range (size))
2368 assert (p->fd_nextsize == NULL && p->bk_nextsize == NULL);
2369 /* chunk is followed by a legal chain of inuse chunks */
2370 for (q = next_chunk (p);
2371 (q != av->top && inuse (q) &&
2372 (unsigned long) (chunksize (q)) >= MINSIZE);
2373 q = next_chunk (q))
2374 do_check_inuse_chunk (av, q);
2375 }
fa8d436c 2376 }
f65fd747 2377
fa8d436c 2378 /* top chunk is OK */
6c8dbf00 2379 check_chunk (av, av->top);
fa8d436c
UD
2380}
2381#endif
2382
2383
2384/* ----------------- Support for debugging hooks -------------------- */
b5bd5bfe 2385#if IS_IN (libc)
fa8d436c 2386#include "hooks.c"
b5bd5bfe 2387#endif
fa8d436c
UD
2388
2389
2390/* ----------- Routines dealing with system allocation -------------- */
2391
2392/*
6c8dbf00
OB
2393 sysmalloc handles malloc cases requiring more memory from the system.
2394 On entry, it is assumed that av->top does not have enough
2395 space to service request for nb bytes, thus requiring that av->top
2396 be extended or replaced.
2397 */
fa8d436c 2398
6cc3ccc6
AZ
2399static void *
2400sysmalloc_mmap (INTERNAL_SIZE_T nb, size_t pagesize, int extra_flags, mstate av)
2401{
2402 long int size;
2403
2404 /*
2405 Round up size to nearest page. For mmapped chunks, the overhead is one
2406 SIZE_SZ unit larger than for normal chunks, because there is no
2407 following chunk whose prev_size field could be used.
2408
2409 See the front_misalign handling below, for glibc there is no need for
2410 further alignments unless we have have high alignment.
2411 */
2412 if (MALLOC_ALIGNMENT == CHUNK_HDR_SZ)
2413 size = ALIGN_UP (nb + SIZE_SZ, pagesize);
2414 else
2415 size = ALIGN_UP (nb + SIZE_SZ + MALLOC_ALIGN_MASK, pagesize);
2416
2417 /* Don't try if size wraps around 0. */
2418 if ((unsigned long) (size) <= (unsigned long) (nb))
2419 return MAP_FAILED;
2420
2421 char *mm = (char *) MMAP (0, size,
2422 mtag_mmap_flags | PROT_READ | PROT_WRITE,
2423 extra_flags);
2424 if (mm == MAP_FAILED)
2425 return mm;
2426
98d5fcb8
AZ
2427#ifdef MAP_HUGETLB
2428 if (!(extra_flags & MAP_HUGETLB))
2429 madvise_thp (mm, size);
2430#endif
6cc3ccc6 2431
fee9e40a
AZ
2432 __set_vma_name (mm, size, " glibc: malloc");
2433
6cc3ccc6
AZ
2434 /*
2435 The offset to the start of the mmapped region is stored in the prev_size
2436 field of the chunk. This allows us to adjust returned start address to
2437 meet alignment requirements here and in memalign(), and still be able to
2438 compute proper address argument for later munmap in free() and realloc().
2439 */
2440
2441 INTERNAL_SIZE_T front_misalign; /* unusable bytes at front of new space */
2442
2443 if (MALLOC_ALIGNMENT == CHUNK_HDR_SZ)
2444 {
2445 /* For glibc, chunk2mem increases the address by CHUNK_HDR_SZ and
2446 MALLOC_ALIGN_MASK is CHUNK_HDR_SZ-1. Each mmap'ed area is page
2447 aligned and therefore definitely MALLOC_ALIGN_MASK-aligned. */
2448 assert (((INTERNAL_SIZE_T) chunk2mem (mm) & MALLOC_ALIGN_MASK) == 0);
2449 front_misalign = 0;
2450 }
2451 else
2452 front_misalign = (INTERNAL_SIZE_T) chunk2mem (mm) & MALLOC_ALIGN_MASK;
2453
2454 mchunkptr p; /* the allocated/returned chunk */
2455
2456 if (front_misalign > 0)
2457 {
2458 ptrdiff_t correction = MALLOC_ALIGNMENT - front_misalign;
2459 p = (mchunkptr) (mm + correction);
2460 set_prev_size (p, correction);
2461 set_head (p, (size - correction) | IS_MMAPPED);
2462 }
2463 else
2464 {
2465 p = (mchunkptr) mm;
2466 set_prev_size (p, 0);
2467 set_head (p, size | IS_MMAPPED);
2468 }
2469
2470 /* update statistics */
89d40cac 2471 int new = atomic_fetch_add_relaxed (&mp_.n_mmaps, 1) + 1;
6cc3ccc6
AZ
2472 atomic_max (&mp_.max_n_mmaps, new);
2473
2474 unsigned long sum;
89d40cac 2475 sum = atomic_fetch_add_relaxed (&mp_.mmapped_mem, size) + size;
6cc3ccc6
AZ
2476 atomic_max (&mp_.max_mmapped_mem, sum);
2477
2478 check_chunk (av, p);
2479
2480 return chunk2mem (p);
2481}
2482
0849eed4
AZ
2483/*
2484 Allocate memory using mmap() based on S and NB requested size, aligning to
2485 PAGESIZE if required. The EXTRA_FLAGS is used on mmap() call. If the call
7f0d9e61 2486 succeeds S is updated with the allocated size. This is used as a fallback
0849eed4
AZ
2487 if MORECORE fails.
2488 */
2489static void *
2490sysmalloc_mmap_fallback (long int *s, INTERNAL_SIZE_T nb,
2491 INTERNAL_SIZE_T old_size, size_t minsize,
2492 size_t pagesize, int extra_flags, mstate av)
2493{
2494 long int size = *s;
2495
2496 /* Cannot merge with old top, so add its size back in */
2497 if (contiguous (av))
2498 size = ALIGN_UP (size + old_size, pagesize);
2499
2500 /* If we are relying on mmap as backup, then use larger units */
2501 if ((unsigned long) (size) < minsize)
2502 size = minsize;
2503
2504 /* Don't try if size wraps around 0 */
2505 if ((unsigned long) (size) <= (unsigned long) (nb))
2506 return MORECORE_FAILURE;
2507
2508 char *mbrk = (char *) (MMAP (0, size,
2509 mtag_mmap_flags | PROT_READ | PROT_WRITE,
2510 extra_flags));
2511 if (mbrk == MAP_FAILED)
2512 return MAP_FAILED;
2513
2514#ifdef MAP_HUGETLB
2515 if (!(extra_flags & MAP_HUGETLB))
2516 madvise_thp (mbrk, size);
2517#endif
2518
fee9e40a
AZ
2519 __set_vma_name (mbrk, size, " glibc: malloc");
2520
0849eed4
AZ
2521 /* Record that we no longer have a contiguous sbrk region. After the first
2522 time mmap is used as backup, we do not ever rely on contiguous space
2523 since this could incorrectly bridge regions. */
2524 set_noncontiguous (av);
2525
2526 *s = size;
2527 return mbrk;
2528}
2529
6c8dbf00
OB
2530static void *
2531sysmalloc (INTERNAL_SIZE_T nb, mstate av)
f65fd747 2532{
6c8dbf00 2533 mchunkptr old_top; /* incoming value of av->top */
fa8d436c 2534 INTERNAL_SIZE_T old_size; /* its size */
6c8dbf00 2535 char *old_end; /* its end address */
f65fd747 2536
6c8dbf00
OB
2537 long size; /* arg to first MORECORE or mmap call */
2538 char *brk; /* return value from MORECORE */
f65fd747 2539
6c8dbf00
OB
2540 long correction; /* arg to 2nd MORECORE call */
2541 char *snd_brk; /* 2nd return val */
f65fd747 2542
fa8d436c
UD
2543 INTERNAL_SIZE_T front_misalign; /* unusable bytes at front of new space */
2544 INTERNAL_SIZE_T end_misalign; /* partial page left at end of new space */
6c8dbf00 2545 char *aligned_brk; /* aligned offset into brk */
f65fd747 2546
6c8dbf00
OB
2547 mchunkptr p; /* the allocated/returned chunk */
2548 mchunkptr remainder; /* remainder from allocation */
2549 unsigned long remainder_size; /* its size */
fa8d436c 2550
fa8d436c 2551
8a35c3fe 2552 size_t pagesize = GLRO (dl_pagesize);
6c8dbf00 2553 bool tried_mmap = false;
fa8d436c
UD
2554
2555
fa8d436c 2556 /*
6c8dbf00
OB
2557 If have mmap, and the request size meets the mmap threshold, and
2558 the system supports mmap, and there are few enough currently
2559 allocated mmapped regions, try to directly map this request
2560 rather than expanding top.
2561 */
2562
fff94fa2
SP
2563 if (av == NULL
2564 || ((unsigned long) (nb) >= (unsigned long) (mp_.mmap_threshold)
2565 && (mp_.n_mmaps < mp_.n_mmaps_max)))
6c8dbf00 2566 {
98d5fcb8 2567 char *mm;
98d5fcb8
AZ
2568 if (mp_.hp_pagesize > 0 && nb >= mp_.hp_pagesize)
2569 {
7f0d9e61 2570 /* There is no need to issue the THP madvise call if Huge Pages are
98d5fcb8
AZ
2571 used directly. */
2572 mm = sysmalloc_mmap (nb, mp_.hp_pagesize, mp_.hp_flags, av);
2573 if (mm != MAP_FAILED)
2574 return mm;
2575 }
98d5fcb8 2576 mm = sysmalloc_mmap (nb, pagesize, 0, av);
6cc3ccc6
AZ
2577 if (mm != MAP_FAILED)
2578 return mm;
6c8dbf00 2579 tried_mmap = true;
fa8d436c 2580 }
fa8d436c 2581
fff94fa2
SP
2582 /* There are no usable arenas and mmap also failed. */
2583 if (av == NULL)
2584 return 0;
2585
fa8d436c
UD
2586 /* Record incoming configuration of top */
2587
6c8dbf00
OB
2588 old_top = av->top;
2589 old_size = chunksize (old_top);
2590 old_end = (char *) (chunk_at_offset (old_top, old_size));
fa8d436c 2591
6c8dbf00 2592 brk = snd_brk = (char *) (MORECORE_FAILURE);
fa8d436c 2593
a9177ff5 2594 /*
fa8d436c
UD
2595 If not the first time through, we require old_size to be
2596 at least MINSIZE and to have prev_inuse set.
6c8dbf00 2597 */
fa8d436c 2598
6c8dbf00
OB
2599 assert ((old_top == initial_top (av) && old_size == 0) ||
2600 ((unsigned long) (old_size) >= MINSIZE &&
2601 prev_inuse (old_top) &&
8a35c3fe 2602 ((unsigned long) old_end & (pagesize - 1)) == 0));
fa8d436c
UD
2603
2604 /* Precondition: not enough current space to satisfy nb request */
6c8dbf00 2605 assert ((unsigned long) (old_size) < (unsigned long) (nb + MINSIZE));
a9177ff5 2606
72f90263 2607
6c8dbf00
OB
2608 if (av != &main_arena)
2609 {
2610 heap_info *old_heap, *heap;
2611 size_t old_heap_size;
2612
2613 /* First try to extend the current heap. */
2614 old_heap = heap_for_ptr (old_top);
2615 old_heap_size = old_heap->size;
2616 if ((long) (MINSIZE + nb - old_size) > 0
2617 && grow_heap (old_heap, MINSIZE + nb - old_size) == 0)
2618 {
2619 av->system_mem += old_heap->size - old_heap_size;
6c8dbf00
OB
2620 set_head (old_top, (((char *) old_heap + old_heap->size) - (char *) old_top)
2621 | PREV_INUSE);
2622 }
2623 else if ((heap = new_heap (nb + (MINSIZE + sizeof (*heap)), mp_.top_pad)))
2624 {
2625 /* Use a newly allocated heap. */
2626 heap->ar_ptr = av;
2627 heap->prev = old_heap;
2628 av->system_mem += heap->size;
6c8dbf00
OB
2629 /* Set up the new top. */
2630 top (av) = chunk_at_offset (heap, sizeof (*heap));
2631 set_head (top (av), (heap->size - sizeof (*heap)) | PREV_INUSE);
2632
2633 /* Setup fencepost and free the old top chunk with a multiple of
2634 MALLOC_ALIGNMENT in size. */
2635 /* The fencepost takes at least MINSIZE bytes, because it might
2636 become the top chunk again later. Note that a footer is set
2637 up, too, although the chunk is marked in use. */
2638 old_size = (old_size - MINSIZE) & ~MALLOC_ALIGN_MASK;
3784dfc0
RE
2639 set_head (chunk_at_offset (old_top, old_size + CHUNK_HDR_SZ),
2640 0 | PREV_INUSE);
6c8dbf00
OB
2641 if (old_size >= MINSIZE)
2642 {
3784dfc0
RE
2643 set_head (chunk_at_offset (old_top, old_size),
2644 CHUNK_HDR_SZ | PREV_INUSE);
2645 set_foot (chunk_at_offset (old_top, old_size), CHUNK_HDR_SZ);
6c8dbf00
OB
2646 set_head (old_top, old_size | PREV_INUSE | NON_MAIN_ARENA);
2647 _int_free (av, old_top, 1);
2648 }
2649 else
2650 {
3784dfc0
RE
2651 set_head (old_top, (old_size + CHUNK_HDR_SZ) | PREV_INUSE);
2652 set_foot (old_top, (old_size + CHUNK_HDR_SZ));
6c8dbf00
OB
2653 }
2654 }
2655 else if (!tried_mmap)
6cc3ccc6 2656 {
98d5fcb8
AZ
2657 /* We can at least try to use to mmap memory. If new_heap fails
2658 it is unlikely that trying to allocate huge pages will
2659 succeed. */
6cc3ccc6
AZ
2660 char *mm = sysmalloc_mmap (nb, pagesize, 0, av);
2661 if (mm != MAP_FAILED)
2662 return mm;
2663 }
fa8d436c 2664 }
6c8dbf00 2665 else /* av == main_arena */
fa8d436c 2666
fa8d436c 2667
6c8dbf00
OB
2668 { /* Request enough space for nb + pad + overhead */
2669 size = nb + mp_.top_pad + MINSIZE;
a9177ff5 2670
6c8dbf00
OB
2671 /*
2672 If contiguous, we can subtract out existing space that we hope to
2673 combine with new space. We add it back later only if
2674 we don't actually get contiguous space.
2675 */
a9177ff5 2676
6c8dbf00
OB
2677 if (contiguous (av))
2678 size -= old_size;
fa8d436c 2679
6c8dbf00 2680 /*
7478c995 2681 Round to a multiple of page size or huge page size.
6c8dbf00
OB
2682 If MORECORE is not contiguous, this ensures that we only call it
2683 with whole-page arguments. And if MORECORE is contiguous and
2684 this is not first time through, this preserves page-alignment of
2685 previous calls. Otherwise, we correct to page-align below.
2686 */
fa8d436c 2687
33237fe8 2688#ifdef MADV_HUGEPAGE
7478c995
AZ
2689 /* Defined in brk.c. */
2690 extern void *__curbrk;
2691 if (__glibc_unlikely (mp_.thp_pagesize != 0))
2692 {
2693 uintptr_t top = ALIGN_UP ((uintptr_t) __curbrk + size,
2694 mp_.thp_pagesize);
2695 size = top - (uintptr_t) __curbrk;
2696 }
2697 else
2698#endif
2699 size = ALIGN_UP (size, GLRO(dl_pagesize));
fa8d436c 2700
6c8dbf00
OB
2701 /*
2702 Don't try to call MORECORE if argument is so big as to appear
2703 negative. Note that since mmap takes size_t arg, it may succeed
2704 below even if we cannot call MORECORE.
2705 */
2706
2707 if (size > 0)
2708 {
2709 brk = (char *) (MORECORE (size));
5f6d8d97
AZ
2710 if (brk != (char *) (MORECORE_FAILURE))
2711 madvise_thp (brk, size);
6c8dbf00
OB
2712 LIBC_PROBE (memory_sbrk_more, 2, brk, size);
2713 }
2714
57b07bed 2715 if (brk == (char *) (MORECORE_FAILURE))
6c8dbf00
OB
2716 {
2717 /*
2718 If have mmap, try using it as a backup when MORECORE fails or
2719 cannot be used. This is worth doing on systems that have "holes" in
2720 address space, so sbrk cannot extend to give contiguous space, but
2721 space is available elsewhere. Note that we ignore mmap max count
2722 and threshold limits, since the space will not be used as a
2723 segregated mmap region.
2724 */
2725
0f982c18 2726 char *mbrk = MAP_FAILED;
0f982c18
AZ
2727 if (mp_.hp_pagesize > 0)
2728 mbrk = sysmalloc_mmap_fallback (&size, nb, old_size,
2729 mp_.hp_pagesize, mp_.hp_pagesize,
2730 mp_.hp_flags, av);
0f982c18 2731 if (mbrk == MAP_FAILED)
6a734e62
RM
2732 mbrk = sysmalloc_mmap_fallback (&size, nb, old_size, MMAP_AS_MORECORE_SIZE,
2733 pagesize, 0, av);
0849eed4
AZ
2734 if (mbrk != MAP_FAILED)
2735 {
2736 /* We do not need, and cannot use, another sbrk call to find end */
2737 brk = mbrk;
2738 snd_brk = brk + size;
2739 }
6c8dbf00
OB
2740 }
2741
2742 if (brk != (char *) (MORECORE_FAILURE))
2743 {
2744 if (mp_.sbrk_base == 0)
2745 mp_.sbrk_base = brk;
2746 av->system_mem += size;
2747
2748 /*
2749 If MORECORE extends previous space, we can likewise extend top size.
2750 */
2751
2752 if (brk == old_end && snd_brk == (char *) (MORECORE_FAILURE))
2753 set_head (old_top, (size + old_size) | PREV_INUSE);
2754
2755 else if (contiguous (av) && old_size && brk < old_end)
ac3ed168
FW
2756 /* Oops! Someone else killed our space.. Can't touch anything. */
2757 malloc_printerr ("break adjusted to free malloc space");
6c8dbf00
OB
2758
2759 /*
2760 Otherwise, make adjustments:
2761
2762 * If the first time through or noncontiguous, we need to call sbrk
2763 just to find out where the end of memory lies.
2764
2765 * We need to ensure that all returned chunks from malloc will meet
2766 MALLOC_ALIGNMENT
2767
2768 * If there was an intervening foreign sbrk, we need to adjust sbrk
2769 request size to account for fact that we will not be able to
2770 combine new space with existing space in old_top.
2771
2772 * Almost all systems internally allocate whole pages at a time, in
2773 which case we might as well use the whole last page of request.
2774 So we allocate enough more memory to hit a page boundary now,
2775 which in turn causes future contiguous calls to page-align.
2776 */
2777
2778 else
2779 {
2780 front_misalign = 0;
2781 end_misalign = 0;
2782 correction = 0;
2783 aligned_brk = brk;
2784
2785 /* handle contiguous cases */
2786 if (contiguous (av))
2787 {
2788 /* Count foreign sbrk as system_mem. */
2789 if (old_size)
2790 av->system_mem += brk - old_end;
2791
2792 /* Guarantee alignment of first new chunk made from this space */
2793
ca89f1c7 2794 front_misalign = (INTERNAL_SIZE_T) chunk2mem (brk) & MALLOC_ALIGN_MASK;
6c8dbf00
OB
2795 if (front_misalign > 0)
2796 {
2797 /*
2798 Skip over some bytes to arrive at an aligned position.
2799 We don't need to specially mark these wasted front bytes.
2800 They will never be accessed anyway because
2801 prev_inuse of av->top (and any chunk created from its start)
2802 is always true after initialization.
2803 */
2804
2805 correction = MALLOC_ALIGNMENT - front_misalign;
2806 aligned_brk += correction;
2807 }
2808
2809 /*
2810 If this isn't adjacent to existing space, then we will not
2811 be able to merge with old_top space, so must add to 2nd request.
2812 */
2813
2814 correction += old_size;
2815
2816 /* Extend the end address to hit a page boundary */
2817 end_misalign = (INTERNAL_SIZE_T) (brk + size + correction);
8a35c3fe 2818 correction += (ALIGN_UP (end_misalign, pagesize)) - end_misalign;
6c8dbf00
OB
2819
2820 assert (correction >= 0);
2821 snd_brk = (char *) (MORECORE (correction));
2822
2823 /*
2824 If can't allocate correction, try to at least find out current
2825 brk. It might be enough to proceed without failing.
2826
2827 Note that if second sbrk did NOT fail, we assume that space
2828 is contiguous with first sbrk. This is a safe assumption unless
2829 program is multithreaded but doesn't use locks and a foreign sbrk
2830 occurred between our first and second calls.
2831 */
2832
2833 if (snd_brk == (char *) (MORECORE_FAILURE))
2834 {
2835 correction = 0;
2836 snd_brk = (char *) (MORECORE (0));
2837 }
5f6d8d97
AZ
2838 else
2839 madvise_thp (snd_brk, correction);
6c8dbf00
OB
2840 }
2841
2842 /* handle non-contiguous cases */
2843 else
2844 {
3784dfc0 2845 if (MALLOC_ALIGNMENT == CHUNK_HDR_SZ)
6c8dbf00 2846 /* MORECORE/mmap must correctly align */
ca89f1c7 2847 assert (((unsigned long) chunk2mem (brk) & MALLOC_ALIGN_MASK) == 0);
6c8dbf00
OB
2848 else
2849 {
ca89f1c7 2850 front_misalign = (INTERNAL_SIZE_T) chunk2mem (brk) & MALLOC_ALIGN_MASK;
6c8dbf00
OB
2851 if (front_misalign > 0)
2852 {
2853 /*
2854 Skip over some bytes to arrive at an aligned position.
2855 We don't need to specially mark these wasted front bytes.
2856 They will never be accessed anyway because
2857 prev_inuse of av->top (and any chunk created from its start)
2858 is always true after initialization.
2859 */
2860
2861 aligned_brk += MALLOC_ALIGNMENT - front_misalign;
2862 }
2863 }
2864
2865 /* Find out current end of memory */
2866 if (snd_brk == (char *) (MORECORE_FAILURE))
2867 {
2868 snd_brk = (char *) (MORECORE (0));
2869 }
2870 }
2871
2872 /* Adjust top based on results of second sbrk */
2873 if (snd_brk != (char *) (MORECORE_FAILURE))
2874 {
2875 av->top = (mchunkptr) aligned_brk;
2876 set_head (av->top, (snd_brk - aligned_brk + correction) | PREV_INUSE);
2877 av->system_mem += correction;
2878
2879 /*
2880 If not the first time through, we either have a
2881 gap due to foreign sbrk or a non-contiguous region. Insert a
2882 double fencepost at old_top to prevent consolidation with space
2883 we don't own. These fenceposts are artificial chunks that are
2884 marked as inuse and are in any case too small to use. We need
2885 two to make sizes and alignments work out.
2886 */
2887
2888 if (old_size != 0)
2889 {
2890 /*
2891 Shrink old_top to insert fenceposts, keeping size a
2892 multiple of MALLOC_ALIGNMENT. We know there is at least
2893 enough space in old_top to do this.
2894 */
3784dfc0 2895 old_size = (old_size - 2 * CHUNK_HDR_SZ) & ~MALLOC_ALIGN_MASK;
6c8dbf00
OB
2896 set_head (old_top, old_size | PREV_INUSE);
2897
2898 /*
2899 Note that the following assignments completely overwrite
2900 old_top when old_size was previously MINSIZE. This is
2901 intentional. We need the fencepost, even if old_top otherwise gets
2902 lost.
2903 */
e9c4fe93 2904 set_head (chunk_at_offset (old_top, old_size),
3784dfc0
RE
2905 CHUNK_HDR_SZ | PREV_INUSE);
2906 set_head (chunk_at_offset (old_top,
2907 old_size + CHUNK_HDR_SZ),
2908 CHUNK_HDR_SZ | PREV_INUSE);
6c8dbf00
OB
2909
2910 /* If possible, release the rest. */
2911 if (old_size >= MINSIZE)
2912 {
2913 _int_free (av, old_top, 1);
2914 }
2915 }
2916 }
2917 }
2918 }
2919 } /* if (av != &main_arena) */
2920
2921 if ((unsigned long) av->system_mem > (unsigned long) (av->max_system_mem))
fa8d436c 2922 av->max_system_mem = av->system_mem;
6c8dbf00 2923 check_malloc_state (av);
a9177ff5 2924
fa8d436c
UD
2925 /* finally, do the allocation */
2926 p = av->top;
6c8dbf00 2927 size = chunksize (p);
fa8d436c
UD
2928
2929 /* check that one of the above allocation paths succeeded */
6c8dbf00
OB
2930 if ((unsigned long) (size) >= (unsigned long) (nb + MINSIZE))
2931 {
2932 remainder_size = size - nb;
2933 remainder = chunk_at_offset (p, nb);
2934 av->top = remainder;
2935 set_head (p, nb | PREV_INUSE | (av != &main_arena ? NON_MAIN_ARENA : 0));
2936 set_head (remainder, remainder_size | PREV_INUSE);
2937 check_malloced_chunk (av, p, nb);
ca89f1c7 2938 return chunk2mem (p);
6c8dbf00 2939 }
fa8d436c
UD
2940
2941 /* catch all failure paths */
8e58439c 2942 __set_errno (ENOMEM);
fa8d436c
UD
2943 return 0;
2944}
2945
2946
2947/*
6c8dbf00
OB
2948 systrim is an inverse of sorts to sysmalloc. It gives memory back
2949 to the system (via negative arguments to sbrk) if there is unused
2950 memory at the `high' end of the malloc pool. It is called
2951 automatically by free() when top space exceeds the trim
2952 threshold. It is also called by the public malloc_trim routine. It
2953 returns 1 if it actually released any memory, else 0.
2954 */
fa8d436c 2955
6c8dbf00
OB
2956static int
2957systrim (size_t pad, mstate av)
fa8d436c 2958{
6c8dbf00
OB
2959 long top_size; /* Amount of top-most memory */
2960 long extra; /* Amount to release */
2961 long released; /* Amount actually released */
2962 char *current_brk; /* address returned by pre-check sbrk call */
2963 char *new_brk; /* address returned by post-check sbrk call */
6c8dbf00 2964 long top_area;
fa8d436c 2965
6c8dbf00 2966 top_size = chunksize (av->top);
a9177ff5 2967
4b5b548c
FS
2968 top_area = top_size - MINSIZE - 1;
2969 if (top_area <= pad)
2970 return 0;
2971
ca6be165 2972 /* Release in pagesize units and round down to the nearest page. */
33237fe8 2973#ifdef MADV_HUGEPAGE
7478c995
AZ
2974 if (__glibc_unlikely (mp_.thp_pagesize != 0))
2975 extra = ALIGN_DOWN (top_area - pad, mp_.thp_pagesize);
2976 else
2977#endif
2978 extra = ALIGN_DOWN (top_area - pad, GLRO(dl_pagesize));
a9177ff5 2979
51a7380b
WN
2980 if (extra == 0)
2981 return 0;
2982
4b5b548c 2983 /*
6c8dbf00
OB
2984 Only proceed if end of memory is where we last set it.
2985 This avoids problems if there were foreign sbrk calls.
2986 */
2987 current_brk = (char *) (MORECORE (0));
2988 if (current_brk == (char *) (av->top) + top_size)
2989 {
2990 /*
2991 Attempt to release memory. We ignore MORECORE return value,
2992 and instead call again to find out where new end of memory is.
2993 This avoids problems if first call releases less than we asked,
2994 of if failure somehow altered brk value. (We could still
2995 encounter problems if it altered brk in some very bad way,
2996 but the only thing we can do is adjust anyway, which will cause
2997 some downstream failure.)
2998 */
2999
3000 MORECORE (-extra);
6c8dbf00
OB
3001 new_brk = (char *) (MORECORE (0));
3002
3003 LIBC_PROBE (memory_sbrk_less, 2, new_brk, extra);
3004
3005 if (new_brk != (char *) MORECORE_FAILURE)
3006 {
3007 released = (long) (current_brk - new_brk);
3008
3009 if (released != 0)
3010 {
3011 /* Success. Adjust top. */
3012 av->system_mem -= released;
3013 set_head (av->top, (top_size - released) | PREV_INUSE);
3014 check_malloc_state (av);
3015 return 1;
3016 }
3017 }
fa8d436c 3018 }
fa8d436c 3019 return 0;
f65fd747
UD
3020}
3021
431c33c0 3022static void
6c8dbf00 3023munmap_chunk (mchunkptr p)
f65fd747 3024{
c0e82f11 3025 size_t pagesize = GLRO (dl_pagesize);
6c8dbf00 3026 INTERNAL_SIZE_T size = chunksize (p);
f65fd747 3027
6c8dbf00 3028 assert (chunk_is_mmapped (p));
8e635611 3029
ca89f1c7 3030 uintptr_t mem = (uintptr_t) chunk2mem (p);
e9c4fe93
FW
3031 uintptr_t block = (uintptr_t) p - prev_size (p);
3032 size_t total_size = prev_size (p) + size;
8e635611
UD
3033 /* Unfortunately we have to do the compilers job by hand here. Normally
3034 we would test BLOCK and TOTAL-SIZE separately for compliance with the
3035 page size. But gcc does not recognize the optimization possibility
3036 (in the moment at least) so we combine the two values into one before
3037 the bit test. */
c0e82f11
IK
3038 if (__glibc_unlikely ((block | total_size) & (pagesize - 1)) != 0
3039 || __glibc_unlikely (!powerof2 (mem & (pagesize - 1))))
ac3ed168 3040 malloc_printerr ("munmap_chunk(): invalid pointer");
f65fd747 3041
a364a3a7 3042 atomic_fetch_add_relaxed (&mp_.n_mmaps, -1);
53b251c9 3043 atomic_fetch_add_relaxed (&mp_.mmapped_mem, -total_size);
f65fd747 3044
6ef76f3b
UD
3045 /* If munmap failed the process virtual memory address space is in a
3046 bad shape. Just leave the block hanging around, the process will
3047 terminate shortly anyway since not much can be done. */
6c8dbf00 3048 __munmap ((char *) block, total_size);
f65fd747
UD
3049}
3050
3051#if HAVE_MREMAP
3052
431c33c0 3053static mchunkptr
6c8dbf00 3054mremap_chunk (mchunkptr p, size_t new_size)
f65fd747 3055{
8a35c3fe 3056 size_t pagesize = GLRO (dl_pagesize);
e9c4fe93 3057 INTERNAL_SIZE_T offset = prev_size (p);
6c8dbf00 3058 INTERNAL_SIZE_T size = chunksize (p);
f65fd747
UD
3059 char *cp;
3060
6c8dbf00 3061 assert (chunk_is_mmapped (p));
ebe544bf
IK
3062
3063 uintptr_t block = (uintptr_t) p - offset;
ca89f1c7 3064 uintptr_t mem = (uintptr_t) chunk2mem(p);
ebe544bf
IK
3065 size_t total_size = offset + size;
3066 if (__glibc_unlikely ((block | total_size) & (pagesize - 1)) != 0
3067 || __glibc_unlikely (!powerof2 (mem & (pagesize - 1))))
3068 malloc_printerr("mremap_chunk(): invalid pointer");
f65fd747
UD
3069
3070 /* Note the extra SIZE_SZ overhead as in mmap_chunk(). */
8a35c3fe 3071 new_size = ALIGN_UP (new_size + offset + SIZE_SZ, pagesize);
f65fd747 3072
68f3802d 3073 /* No need to remap if the number of pages does not change. */
ebe544bf 3074 if (total_size == new_size)
68f3802d
UD
3075 return p;
3076
ebe544bf 3077 cp = (char *) __mremap ((char *) block, total_size, new_size,
6c8dbf00 3078 MREMAP_MAYMOVE);
f65fd747 3079
6c8dbf00
OB
3080 if (cp == MAP_FAILED)
3081 return 0;
f65fd747 3082
5f6d8d97
AZ
3083 madvise_thp (cp, new_size);
3084
6c8dbf00 3085 p = (mchunkptr) (cp + offset);
f65fd747 3086
ca89f1c7 3087 assert (aligned_OK (chunk2mem (p)));
f65fd747 3088
e9c4fe93 3089 assert (prev_size (p) == offset);
6c8dbf00 3090 set_head (p, (new_size - offset) | IS_MMAPPED);
f65fd747 3091
c6e4925d 3092 INTERNAL_SIZE_T new;
89d40cac 3093 new = atomic_fetch_add_relaxed (&mp_.mmapped_mem, new_size - size - offset)
6c8dbf00 3094 + new_size - size - offset;
c6e4925d 3095 atomic_max (&mp_.max_mmapped_mem, new);
f65fd747
UD
3096 return p;
3097}
f65fd747
UD
3098#endif /* HAVE_MREMAP */
3099
fa8d436c 3100/*------------------------ Public wrappers. --------------------------------*/
f65fd747 3101
d5c3fafc
DD
3102#if USE_TCACHE
3103
3104/* We overlay this structure on the user-data portion of a chunk when
3105 the chunk is stored in the per-thread cache. */
3106typedef struct tcache_entry
3107{
3108 struct tcache_entry *next;
bcdaad21 3109 /* This field exists to detect double frees. */
fc859c30 3110 uintptr_t key;
d5c3fafc
DD
3111} tcache_entry;
3112
3113/* There is one of these for each thread, which contains the
3114 per-thread cache (hence "tcache_perthread_struct"). Keeping
3115 overall size low is mildly important. Note that COUNTS and ENTRIES
3116 are redundant (we could have just counted the linked list each
3117 time), this is for performance reasons. */
3118typedef struct tcache_perthread_struct
3119{
1f50f2ad 3120 uint16_t counts[TCACHE_MAX_BINS];
d5c3fafc
DD
3121 tcache_entry *entries[TCACHE_MAX_BINS];
3122} tcache_perthread_struct;
3123
1e26d351 3124static __thread bool tcache_shutting_down = false;
d5c3fafc
DD
3125static __thread tcache_perthread_struct *tcache = NULL;
3126
fc859c30
SP
3127/* Process-wide key to try and catch a double-free in the same thread. */
3128static uintptr_t tcache_key;
3129
3130/* The value of tcache_key does not really have to be a cryptographically
3131 secure random number. It only needs to be arbitrary enough so that it does
3132 not collide with values present in applications. If a collision does happen
3133 consistently enough, it could cause a degradation in performance since the
3134 entire list is checked to check if the block indeed has been freed the
3135 second time. The odds of this happening are exceedingly low though, about 1
3136 in 2^wordsize. There is probably a higher chance of the performance
3137 degradation being due to a double free where the first free happened in a
3138 different thread; that's a case this check does not cover. */
3139static void
3140tcache_key_initialize (void)
3141{
5a85786a
XR
3142 /* We need to use the _nostatus version here, see BZ 29624. */
3143 if (__getrandom_nocancel_nostatus (&tcache_key, sizeof(tcache_key),
3144 GRND_NONBLOCK)
fc859c30
SP
3145 != sizeof (tcache_key))
3146 {
3147 tcache_key = random_bits ();
3148#if __WORDSIZE == 64
3149 tcache_key = (tcache_key << 32) | random_bits ();
3150#endif
3151 }
3152}
3153
d5c3fafc
DD
3154/* Caller must ensure that we know tc_idx is valid and there's room
3155 for more chunks. */
e4dd4ace 3156static __always_inline void
d5c3fafc
DD
3157tcache_put (mchunkptr chunk, size_t tc_idx)
3158{
ca89f1c7 3159 tcache_entry *e = (tcache_entry *) chunk2mem (chunk);
bcdaad21
DD
3160
3161 /* Mark this chunk as "in the tcache" so the test in _int_free will
3162 detect a double free. */
fc859c30 3163 e->key = tcache_key;
bcdaad21 3164
a1a486d7 3165 e->next = PROTECT_PTR (&e->next, tcache->entries[tc_idx]);
d5c3fafc
DD
3166 tcache->entries[tc_idx] = e;
3167 ++(tcache->counts[tc_idx]);
3168}
3169
3170/* Caller must ensure that we know tc_idx is valid and there's
24cdd6c7
DD
3171 available chunks to remove. Removes chunk from the middle of the
3172 list. */
e4dd4ace 3173static __always_inline void *
24cdd6c7 3174tcache_get_n (size_t tc_idx, tcache_entry **ep)
d5c3fafc 3175{
24cdd6c7
DD
3176 tcache_entry *e;
3177 if (ep == &(tcache->entries[tc_idx]))
3178 e = *ep;
3179 else
3180 e = REVEAL_PTR (*ep);
3181
49c3c376
EI
3182 if (__glibc_unlikely (!aligned_OK (e)))
3183 malloc_printerr ("malloc(): unaligned tcache chunk detected");
24cdd6c7
DD
3184
3185 if (ep == &(tcache->entries[tc_idx]))
3186 *ep = REVEAL_PTR (e->next);
3187 else
3188 *ep = PROTECT_PTR (ep, REVEAL_PTR (e->next));
3189
d5c3fafc 3190 --(tcache->counts[tc_idx]);
fc859c30 3191 e->key = 0;
d5c3fafc
DD
3192 return (void *) e;
3193}
3194
24cdd6c7
DD
3195/* Like the above, but removes from the head of the list. */
3196static __always_inline void *
3197tcache_get (size_t tc_idx)
3198{
3199 return tcache_get_n (tc_idx, & tcache->entries[tc_idx]);
3200}
3201
3202/* Iterates through the tcache linked list. */
3203static __always_inline tcache_entry *
3204tcache_next (tcache_entry *e)
3205{
3206 return (tcache_entry *) REVEAL_PTR (e->next);
3207}
3208
0a947e06
FW
3209static void
3210tcache_thread_shutdown (void)
d5c3fafc
DD
3211{
3212 int i;
3213 tcache_perthread_struct *tcache_tmp = tcache;
3214
dfec225e
J
3215 tcache_shutting_down = true;
3216
d5c3fafc
DD
3217 if (!tcache)
3218 return;
3219
1e26d351 3220 /* Disable the tcache and prevent it from being reinitialized. */
d5c3fafc
DD
3221 tcache = NULL;
3222
1e26d351
CD
3223 /* Free all of the entries and the tcache itself back to the arena
3224 heap for coalescing. */
d5c3fafc
DD
3225 for (i = 0; i < TCACHE_MAX_BINS; ++i)
3226 {
3227 while (tcache_tmp->entries[i])
3228 {
3229 tcache_entry *e = tcache_tmp->entries[i];
768358b6
EI
3230 if (__glibc_unlikely (!aligned_OK (e)))
3231 malloc_printerr ("tcache_thread_shutdown(): "
3232 "unaligned tcache chunk detected");
a1a486d7 3233 tcache_tmp->entries[i] = REVEAL_PTR (e->next);
d5c3fafc
DD
3234 __libc_free (e);
3235 }
3236 }
3237
3238 __libc_free (tcache_tmp);
d5c3fafc 3239}
d5c3fafc
DD
3240
3241static void
3242tcache_init(void)
3243{
3244 mstate ar_ptr;
3245 void *victim = 0;
3246 const size_t bytes = sizeof (tcache_perthread_struct);
3247
3248 if (tcache_shutting_down)
3249 return;
3250
3251 arena_get (ar_ptr, bytes);
3252 victim = _int_malloc (ar_ptr, bytes);
3253 if (!victim && ar_ptr != NULL)
3254 {
3255 ar_ptr = arena_get_retry (ar_ptr, bytes);
3256 victim = _int_malloc (ar_ptr, bytes);
3257 }
3258
3259
3260 if (ar_ptr != NULL)
3261 __libc_lock_unlock (ar_ptr->mutex);
3262
3263 /* In a low memory situation, we may not be able to allocate memory
3264 - in which case, we just keep trying later. However, we
3265 typically do this very early, so either there is sufficient
3266 memory, or there isn't enough memory to do non-trivial
3267 allocations anyway. */
3268 if (victim)
3269 {
3270 tcache = (tcache_perthread_struct *) victim;
3271 memset (tcache, 0, sizeof (tcache_perthread_struct));
3272 }
3273
3274}
3275
0a947e06 3276# define MAYBE_INIT_TCACHE() \
d5c3fafc
DD
3277 if (__glibc_unlikely (tcache == NULL)) \
3278 tcache_init();
3279
0a947e06
FW
3280#else /* !USE_TCACHE */
3281# define MAYBE_INIT_TCACHE()
3282
3283static void
3284tcache_thread_shutdown (void)
3285{
3286 /* Nothing to do if there is no thread cache. */
3287}
3288
3289#endif /* !USE_TCACHE */
d5c3fafc 3290
b5bd5bfe 3291#if IS_IN (libc)
6c8dbf00
OB
3292void *
3293__libc_malloc (size_t bytes)
fa8d436c
UD
3294{
3295 mstate ar_ptr;
22a89187 3296 void *victim;
f65fd747 3297
9bf8e29c
AZ
3298 _Static_assert (PTRDIFF_MAX <= SIZE_MAX / 2,
3299 "PTRDIFF_MAX is not more than half of SIZE_MAX");
3300
cc35896e 3301 if (!__malloc_initialized)
2d2d9f2b 3302 ptmalloc_init ();
d5c3fafc
DD
3303#if USE_TCACHE
3304 /* int_free also calls request2size, be careful to not pad twice. */
7519dee3
FW
3305 size_t tbytes = checked_request2size (bytes);
3306 if (tbytes == 0)
9bf8e29c
AZ
3307 {
3308 __set_errno (ENOMEM);
3309 return NULL;
3310 }
d5c3fafc
DD
3311 size_t tc_idx = csize2tidx (tbytes);
3312
3313 MAYBE_INIT_TCACHE ();
3314
3315 DIAG_PUSH_NEEDS_COMMENT;
3316 if (tc_idx < mp_.tcache_bins
24cdd6c7 3317 && tcache != NULL
1f50f2ad 3318 && tcache->counts[tc_idx] > 0)
d5c3fafc 3319 {
3784dfc0 3320 victim = tcache_get (tc_idx);
0c719cf4 3321 return tag_new_usable (victim);
d5c3fafc
DD
3322 }
3323 DIAG_POP_NEEDS_COMMENT;
3324#endif
f65fd747 3325
3f6bb8a3
WD
3326 if (SINGLE_THREAD_P)
3327 {
0c719cf4 3328 victim = tag_new_usable (_int_malloc (&main_arena, bytes));
3f6bb8a3
WD
3329 assert (!victim || chunk_is_mmapped (mem2chunk (victim)) ||
3330 &main_arena == arena_for_chunk (mem2chunk (victim)));
3331 return victim;
3332 }
3333
94c5a52a 3334 arena_get (ar_ptr, bytes);
425ce2ed 3335
6c8dbf00 3336 victim = _int_malloc (ar_ptr, bytes);
fff94fa2
SP
3337 /* Retry with another arena only if we were able to find a usable arena
3338 before. */
3339 if (!victim && ar_ptr != NULL)
6c8dbf00
OB
3340 {
3341 LIBC_PROBE (memory_malloc_retry, 1, bytes);
3342 ar_ptr = arena_get_retry (ar_ptr, bytes);
fff94fa2 3343 victim = _int_malloc (ar_ptr, bytes);
60f0e64b 3344 }
fff94fa2
SP
3345
3346 if (ar_ptr != NULL)
4bf5f222 3347 __libc_lock_unlock (ar_ptr->mutex);
fff94fa2 3348
0c719cf4 3349 victim = tag_new_usable (victim);
3784dfc0 3350
6c8dbf00
OB
3351 assert (!victim || chunk_is_mmapped (mem2chunk (victim)) ||
3352 ar_ptr == arena_for_chunk (mem2chunk (victim)));
fa8d436c 3353 return victim;
f65fd747 3354}
6c8dbf00 3355libc_hidden_def (__libc_malloc)
f65fd747 3356
fa8d436c 3357void
6c8dbf00 3358__libc_free (void *mem)
f65fd747 3359{
fa8d436c
UD
3360 mstate ar_ptr;
3361 mchunkptr p; /* chunk corresponding to mem */
3362
fa8d436c
UD
3363 if (mem == 0) /* free(0) has no effect */
3364 return;
f65fd747 3365
3784dfc0
RE
3366 /* Quickly check that the freed pointer matches the tag for the memory.
3367 This gives a useful double-free detection. */
d3262480
SN
3368 if (__glibc_unlikely (mtag_enabled))
3369 *(volatile char *)mem;
3784dfc0 3370
69fda43b
PE
3371 int err = errno;
3372
6c8dbf00 3373 p = mem2chunk (mem);
f65fd747 3374
6c8dbf00
OB
3375 if (chunk_is_mmapped (p)) /* release mmapped memory. */
3376 {
4cf6c72f
FW
3377 /* See if the dynamic brk/mmap threshold needs adjusting.
3378 Dumped fake mmapped chunks do not affect the threshold. */
6c8dbf00 3379 if (!mp_.no_dyn_threshold
e9c4fe93 3380 && chunksize_nomask (p) > mp_.mmap_threshold
0552fd2c 3381 && chunksize_nomask (p) <= DEFAULT_MMAP_THRESHOLD_MAX)
6c8dbf00
OB
3382 {
3383 mp_.mmap_threshold = chunksize (p);
3384 mp_.trim_threshold = 2 * mp_.mmap_threshold;
3385 LIBC_PROBE (memory_mallopt_free_dyn_thresholds, 2,
3386 mp_.mmap_threshold, mp_.trim_threshold);
3387 }
3388 munmap_chunk (p);
6c8dbf00 3389 }
69fda43b
PE
3390 else
3391 {
3392 MAYBE_INIT_TCACHE ();
f65fd747 3393
b9b85be6 3394 /* Mark the chunk as belonging to the library again. */
ca89f1c7 3395 (void)tag_region (chunk2mem (p), memsize (p));
b9b85be6 3396
69fda43b
PE
3397 ar_ptr = arena_for_chunk (p);
3398 _int_free (ar_ptr, p, 0);
3399 }
d5c3fafc 3400
69fda43b 3401 __set_errno (err);
f65fd747 3402}
3b49edc0 3403libc_hidden_def (__libc_free)
f65fd747 3404
6c8dbf00
OB
3405void *
3406__libc_realloc (void *oldmem, size_t bytes)
f65fd747 3407{
fa8d436c 3408 mstate ar_ptr;
6c8dbf00 3409 INTERNAL_SIZE_T nb; /* padded request size */
f65fd747 3410
6c8dbf00 3411 void *newp; /* chunk to return */
f65fd747 3412
cc35896e 3413 if (!__malloc_initialized)
2d2d9f2b 3414 ptmalloc_init ();
f65fd747 3415
fa8d436c 3416#if REALLOC_ZERO_BYTES_FREES
6c8dbf00
OB
3417 if (bytes == 0 && oldmem != NULL)
3418 {
3419 __libc_free (oldmem); return 0;
3420 }
f65fd747 3421#endif
f65fd747 3422
fa8d436c 3423 /* realloc of null is supposed to be same as malloc */
6c8dbf00
OB
3424 if (oldmem == 0)
3425 return __libc_malloc (bytes);
f65fd747 3426
3784dfc0
RE
3427 /* Perform a quick check to ensure that the pointer's tag matches the
3428 memory's tag. */
d3262480
SN
3429 if (__glibc_unlikely (mtag_enabled))
3430 *(volatile char*) oldmem;
3784dfc0 3431
78ac92ad 3432 /* chunk corresponding to oldmem */
6c8dbf00 3433 const mchunkptr oldp = mem2chunk (oldmem);
2fb12bbd
SP
3434
3435 /* Return the chunk as is if the request grows within usable bytes, typically
3436 into the alignment padding. We want to avoid reusing the block for
3437 shrinkages because it ends up unnecessarily fragmenting the address space.
3438 This is also why the heuristic misses alignment padding for THP for
3439 now. */
3440 size_t usable = musable (oldmem);
3441 if (bytes <= usable)
3442 {
3443 size_t difference = usable - bytes;
3444 if ((unsigned long) difference < 2 * sizeof (INTERNAL_SIZE_T)
3445 || (chunk_is_mmapped (oldp) && difference <= GLRO (dl_pagesize)))
3446 return oldmem;
3447 }
3448
78ac92ad 3449 /* its size */
6c8dbf00 3450 const INTERNAL_SIZE_T oldsize = chunksize (oldp);
f65fd747 3451
fff94fa2
SP
3452 if (chunk_is_mmapped (oldp))
3453 ar_ptr = NULL;
3454 else
d5c3fafc
DD
3455 {
3456 MAYBE_INIT_TCACHE ();
3457 ar_ptr = arena_for_chunk (oldp);
3458 }
fff94fa2 3459
4cf6c72f 3460 /* Little security check which won't hurt performance: the allocator
7f0d9e61 3461 never wraps around at the end of the address space. Therefore
4cf6c72f 3462 we can exclude some size values which might appear here by
0552fd2c 3463 accident or by "design" from some intruder. */
4cf6c72f 3464 if ((__builtin_expect ((uintptr_t) oldp > (uintptr_t) -oldsize, 0)
0552fd2c 3465 || __builtin_expect (misaligned_chunk (oldp), 0)))
ac3ed168 3466 malloc_printerr ("realloc(): invalid pointer");
dc165f7b 3467
7519dee3
FW
3468 nb = checked_request2size (bytes);
3469 if (nb == 0)
9bf8e29c
AZ
3470 {
3471 __set_errno (ENOMEM);
3472 return NULL;
3473 }
f65fd747 3474
6c8dbf00
OB
3475 if (chunk_is_mmapped (oldp))
3476 {
3477 void *newmem;
f65fd747 3478
fa8d436c 3479#if HAVE_MREMAP
6c8dbf00
OB
3480 newp = mremap_chunk (oldp, nb);
3481 if (newp)
3784dfc0 3482 {
ca89f1c7 3483 void *newmem = chunk2mem_tag (newp);
3784dfc0
RE
3484 /* Give the new block a different tag. This helps to ensure
3485 that stale handles to the previous mapping are not
3486 reused. There's a performance hit for both us and the
3487 caller for doing this, so we might want to
3488 reconsider. */
0c719cf4 3489 return tag_new_usable (newmem);
3784dfc0 3490 }
f65fd747 3491#endif
6c8dbf00
OB
3492 /* Note the extra SIZE_SZ overhead. */
3493 if (oldsize - SIZE_SZ >= nb)
3494 return oldmem; /* do nothing */
3495
3496 /* Must alloc, copy, free. */
3497 newmem = __libc_malloc (bytes);
3498 if (newmem == 0)
3499 return 0; /* propagate failure */
fa8d436c 3500
3784dfc0 3501 memcpy (newmem, oldmem, oldsize - CHUNK_HDR_SZ);
6c8dbf00
OB
3502 munmap_chunk (oldp);
3503 return newmem;
3504 }
3505
3f6bb8a3
WD
3506 if (SINGLE_THREAD_P)
3507 {
3508 newp = _int_realloc (ar_ptr, oldp, oldsize, nb);
3509 assert (!newp || chunk_is_mmapped (mem2chunk (newp)) ||
3510 ar_ptr == arena_for_chunk (mem2chunk (newp)));
3511
3512 return newp;
3513 }
3514
4bf5f222 3515 __libc_lock_lock (ar_ptr->mutex);
f65fd747 3516
6c8dbf00 3517 newp = _int_realloc (ar_ptr, oldp, oldsize, nb);
f65fd747 3518
4bf5f222 3519 __libc_lock_unlock (ar_ptr->mutex);
6c8dbf00
OB
3520 assert (!newp || chunk_is_mmapped (mem2chunk (newp)) ||
3521 ar_ptr == arena_for_chunk (mem2chunk (newp)));
07014fca
UD
3522
3523 if (newp == NULL)
3524 {
3525 /* Try harder to allocate memory in other arenas. */
35fed6f1 3526 LIBC_PROBE (memory_realloc_retry, 2, bytes, oldmem);
6c8dbf00 3527 newp = __libc_malloc (bytes);
07014fca 3528 if (newp != NULL)
6c8dbf00 3529 {
faf003ed 3530 size_t sz = memsize (oldp);
42cc9606 3531 memcpy (newp, oldmem, sz);
ca89f1c7 3532 (void) tag_region (chunk2mem (oldp), sz);
6c8dbf00
OB
3533 _int_free (ar_ptr, oldp, 0);
3534 }
07014fca
UD
3535 }
3536
fa8d436c
UD
3537 return newp;
3538}
3b49edc0 3539libc_hidden_def (__libc_realloc)
f65fd747 3540
6c8dbf00
OB
3541void *
3542__libc_memalign (size_t alignment, size_t bytes)
10ad46bc 3543{
cc35896e 3544 if (!__malloc_initialized)
2d2d9f2b
SP
3545 ptmalloc_init ();
3546
10ad46bc
OB
3547 void *address = RETURN_ADDRESS (0);
3548 return _mid_memalign (alignment, bytes, address);
3549}
d1417176
DD
3550libc_hidden_def (__libc_memalign)
3551
3552/* For ISO C17. */
3553void *
3554weak_function
3555aligned_alloc (size_t alignment, size_t bytes)
3556{
3557 if (!__malloc_initialized)
3558 ptmalloc_init ();
3559
3560/* Similar to memalign, but starting with ISO C17 the standard
3561 requires an error for alignments that are not supported by the
3562 implementation. Valid alignments for the current implementation
3563 are non-negative powers of two. */
3564 if (!powerof2 (alignment) || alignment == 0)
3565 {
3566 __set_errno (EINVAL);
3567 return 0;
3568 }
3569
3570 void *address = RETURN_ADDRESS (0);
3571 return _mid_memalign (alignment, bytes, address);
3572}
10ad46bc
OB
3573
3574static void *
3575_mid_memalign (size_t alignment, size_t bytes, void *address)
fa8d436c
UD
3576{
3577 mstate ar_ptr;
22a89187 3578 void *p;
f65fd747 3579
10ad46bc 3580 /* If we need less alignment than we give anyway, just relay to malloc. */
6c8dbf00
OB
3581 if (alignment <= MALLOC_ALIGNMENT)
3582 return __libc_malloc (bytes);
1228ed5c 3583
fa8d436c 3584 /* Otherwise, ensure that it is at least a minimum chunk size */
6c8dbf00
OB
3585 if (alignment < MINSIZE)
3586 alignment = MINSIZE;
f65fd747 3587
a56ee40b
WN
3588 /* If the alignment is greater than SIZE_MAX / 2 + 1 it cannot be a
3589 power of 2 and will cause overflow in the check below. */
3590 if (alignment > SIZE_MAX / 2 + 1)
3591 {
3592 __set_errno (EINVAL);
3593 return 0;
3594 }
3595
10ad46bc
OB
3596
3597 /* Make sure alignment is power of 2. */
6c8dbf00
OB
3598 if (!powerof2 (alignment))
3599 {
3600 size_t a = MALLOC_ALIGNMENT * 2;
3601 while (a < alignment)
3602 a <<= 1;
3603 alignment = a;
3604 }
10ad46bc 3605
24cdd6c7
DD
3606#if USE_TCACHE
3607 {
3608 size_t tbytes;
3609 tbytes = checked_request2size (bytes);
3610 if (tbytes == 0)
3611 {
3612 __set_errno (ENOMEM);
3613 return NULL;
3614 }
3615 size_t tc_idx = csize2tidx (tbytes);
3616
3617 if (tc_idx < mp_.tcache_bins
3618 && tcache != NULL
3619 && tcache->counts[tc_idx] > 0)
3620 {
3621 /* The tcache itself isn't encoded, but the chain is. */
3622 tcache_entry **tep = & tcache->entries[tc_idx];
3623 tcache_entry *te = *tep;
3624 while (te != NULL && !PTR_IS_ALIGNED (te, alignment))
3625 {
3626 tep = & (te->next);
3627 te = tcache_next (te);
3628 }
3629 if (te != NULL)
3630 {
3631 void *victim = tcache_get_n (tc_idx, tep);
3632 return tag_new_usable (victim);
3633 }
3634 }
3635 }
3636#endif
3637
3f6bb8a3
WD
3638 if (SINGLE_THREAD_P)
3639 {
3640 p = _int_memalign (&main_arena, alignment, bytes);
3641 assert (!p || chunk_is_mmapped (mem2chunk (p)) ||
3642 &main_arena == arena_for_chunk (mem2chunk (p)));
0c719cf4 3643 return tag_new_usable (p);
3f6bb8a3
WD
3644 }
3645
6c8dbf00 3646 arena_get (ar_ptr, bytes + alignment + MINSIZE);
6c8dbf00
OB
3647
3648 p = _int_memalign (ar_ptr, alignment, bytes);
fff94fa2 3649 if (!p && ar_ptr != NULL)
6c8dbf00
OB
3650 {
3651 LIBC_PROBE (memory_memalign_retry, 2, bytes, alignment);
3652 ar_ptr = arena_get_retry (ar_ptr, bytes);
fff94fa2 3653 p = _int_memalign (ar_ptr, alignment, bytes);
f65fd747 3654 }
fff94fa2
SP
3655
3656 if (ar_ptr != NULL)
4bf5f222 3657 __libc_lock_unlock (ar_ptr->mutex);
fff94fa2 3658
6c8dbf00
OB
3659 assert (!p || chunk_is_mmapped (mem2chunk (p)) ||
3660 ar_ptr == arena_for_chunk (mem2chunk (p)));
0c719cf4 3661 return tag_new_usable (p);
f65fd747
UD
3662}
3663
6c8dbf00
OB
3664void *
3665__libc_valloc (size_t bytes)
fa8d436c 3666{
cc35896e 3667 if (!__malloc_initialized)
fa8d436c 3668 ptmalloc_init ();
8088488d 3669
10ad46bc 3670 void *address = RETURN_ADDRESS (0);
8a35c3fe 3671 size_t pagesize = GLRO (dl_pagesize);
05f878c5 3672 return _mid_memalign (pagesize, bytes, address);
fa8d436c 3673}
f65fd747 3674
6c8dbf00
OB
3675void *
3676__libc_pvalloc (size_t bytes)
fa8d436c 3677{
cc35896e 3678 if (!__malloc_initialized)
fa8d436c 3679 ptmalloc_init ();
8088488d 3680
10ad46bc 3681 void *address = RETURN_ADDRESS (0);
8a35c3fe 3682 size_t pagesize = GLRO (dl_pagesize);
9bf8e29c
AZ
3683 size_t rounded_bytes;
3684 /* ALIGN_UP with overflow check. */
3685 if (__glibc_unlikely (__builtin_add_overflow (bytes,
3686 pagesize - 1,
3687 &rounded_bytes)))
1159a193
WN
3688 {
3689 __set_errno (ENOMEM);
3690 return 0;
3691 }
9bf8e29c 3692 rounded_bytes = rounded_bytes & -(pagesize - 1);
1159a193 3693
05f878c5 3694 return _mid_memalign (pagesize, rounded_bytes, address);
fa8d436c 3695}
f65fd747 3696
6c8dbf00
OB
3697void *
3698__libc_calloc (size_t n, size_t elem_size)
f65fd747 3699{
d6285c9f 3700 mstate av;
3784dfc0
RE
3701 mchunkptr oldtop;
3702 INTERNAL_SIZE_T sz, oldtopsize;
6c8dbf00 3703 void *mem;
d6285c9f
CD
3704 unsigned long clearsize;
3705 unsigned long nclears;
3706 INTERNAL_SIZE_T *d;
9bf8e29c 3707 ptrdiff_t bytes;
0950889b 3708
9bf8e29c 3709 if (__glibc_unlikely (__builtin_mul_overflow (n, elem_size, &bytes)))
6c8dbf00 3710 {
9bf8e29c
AZ
3711 __set_errno (ENOMEM);
3712 return NULL;
d9af917d 3713 }
3784dfc0 3714
9bf8e29c 3715 sz = bytes;
0950889b 3716
cc35896e 3717 if (!__malloc_initialized)
2d2d9f2b 3718 ptmalloc_init ();
f65fd747 3719
d5c3fafc
DD
3720 MAYBE_INIT_TCACHE ();
3721
3f6bb8a3
WD
3722 if (SINGLE_THREAD_P)
3723 av = &main_arena;
3724 else
3725 arena_get (av, sz);
3726
fff94fa2
SP
3727 if (av)
3728 {
3729 /* Check if we hand out the top chunk, in which case there may be no
3730 need to clear. */
d6285c9f 3731#if MORECORE_CLEARS
fff94fa2
SP
3732 oldtop = top (av);
3733 oldtopsize = chunksize (top (av));
d6285c9f 3734# if MORECORE_CLEARS < 2
fff94fa2
SP
3735 /* Only newly allocated memory is guaranteed to be cleared. */
3736 if (av == &main_arena &&
3737 oldtopsize < mp_.sbrk_base + av->max_system_mem - (char *) oldtop)
3738 oldtopsize = (mp_.sbrk_base + av->max_system_mem - (char *) oldtop);
d6285c9f 3739# endif
fff94fa2
SP
3740 if (av != &main_arena)
3741 {
3742 heap_info *heap = heap_for_ptr (oldtop);
3743 if (oldtopsize < (char *) heap + heap->mprotect_size - (char *) oldtop)
3744 oldtopsize = (char *) heap + heap->mprotect_size - (char *) oldtop;
3745 }
3746#endif
3747 }
3748 else
d6285c9f 3749 {
fff94fa2
SP
3750 /* No usable arenas. */
3751 oldtop = 0;
3752 oldtopsize = 0;
d6285c9f 3753 }
d6285c9f
CD
3754 mem = _int_malloc (av, sz);
3755
d6285c9f
CD
3756 assert (!mem || chunk_is_mmapped (mem2chunk (mem)) ||
3757 av == arena_for_chunk (mem2chunk (mem)));
3758
3f6bb8a3 3759 if (!SINGLE_THREAD_P)
d6285c9f 3760 {
3f6bb8a3
WD
3761 if (mem == 0 && av != NULL)
3762 {
3763 LIBC_PROBE (memory_calloc_retry, 1, sz);
3764 av = arena_get_retry (av, sz);
3765 mem = _int_malloc (av, sz);
3766 }
fff94fa2 3767
3f6bb8a3
WD
3768 if (av != NULL)
3769 __libc_lock_unlock (av->mutex);
3770 }
fff94fa2
SP
3771
3772 /* Allocation failed even after a retry. */
3773 if (mem == 0)
3774 return 0;
3775
3784dfc0 3776 mchunkptr p = mem2chunk (mem);
9d61722b 3777
3784dfc0
RE
3778 /* If we are using memory tagging, then we need to set the tags
3779 regardless of MORECORE_CLEARS, so we zero the whole block while
3780 doing so. */
9d61722b 3781 if (__glibc_unlikely (mtag_enabled))
faf003ed 3782 return tag_new_zero_region (mem, memsize (p));
9d61722b 3783
3784dfc0 3784 INTERNAL_SIZE_T csz = chunksize (p);
d6285c9f
CD
3785
3786 /* Two optional cases in which clearing not necessary */
3787 if (chunk_is_mmapped (p))
3788 {
3789 if (__builtin_expect (perturb_byte, 0))
3790 return memset (mem, 0, sz);
3791
3792 return mem;
3793 }
3794
d6285c9f
CD
3795#if MORECORE_CLEARS
3796 if (perturb_byte == 0 && (p == oldtop && csz > oldtopsize))
3797 {
3798 /* clear only the bytes from non-freshly-sbrked memory */
3799 csz = oldtopsize;
3800 }
3801#endif
3802
3803 /* Unroll clear of <= 36 bytes (72 if 8byte sizes). We know that
3804 contents have an odd number of INTERNAL_SIZE_T-sized words;
3805 minimally 3. */
3806 d = (INTERNAL_SIZE_T *) mem;
3807 clearsize = csz - SIZE_SZ;
3808 nclears = clearsize / sizeof (INTERNAL_SIZE_T);
3809 assert (nclears >= 3);
3810
3811 if (nclears > 9)
3812 return memset (d, 0, clearsize);
3813
3814 else
3815 {
3816 *(d + 0) = 0;
3817 *(d + 1) = 0;
3818 *(d + 2) = 0;
3819 if (nclears > 4)
3820 {
3821 *(d + 3) = 0;
3822 *(d + 4) = 0;
3823 if (nclears > 6)
3824 {
3825 *(d + 5) = 0;
3826 *(d + 6) = 0;
3827 if (nclears > 8)
3828 {
3829 *(d + 7) = 0;
3830 *(d + 8) = 0;
3831 }
3832 }
3833 }
3834 }
3835
3836 return mem;
fa8d436c 3837}
b5bd5bfe 3838#endif /* IS_IN (libc) */
f65fd747 3839
f65fd747 3840/*
6c8dbf00
OB
3841 ------------------------------ malloc ------------------------------
3842 */
f65fd747 3843
6c8dbf00
OB
3844static void *
3845_int_malloc (mstate av, size_t bytes)
f65fd747 3846{
fa8d436c 3847 INTERNAL_SIZE_T nb; /* normalized request size */
6c8dbf00
OB
3848 unsigned int idx; /* associated bin index */
3849 mbinptr bin; /* associated bin */
f65fd747 3850
6c8dbf00 3851 mchunkptr victim; /* inspected/selected chunk */
fa8d436c 3852 INTERNAL_SIZE_T size; /* its size */
6c8dbf00 3853 int victim_index; /* its bin index */
f65fd747 3854
6c8dbf00
OB
3855 mchunkptr remainder; /* remainder from a split */
3856 unsigned long remainder_size; /* its size */
8a4b65b4 3857
6c8dbf00
OB
3858 unsigned int block; /* bit map traverser */
3859 unsigned int bit; /* bit map traverser */
3860 unsigned int map; /* current word of binmap */
8a4b65b4 3861
6c8dbf00
OB
3862 mchunkptr fwd; /* misc temp for linking */
3863 mchunkptr bck; /* misc temp for linking */
8a4b65b4 3864
d5c3fafc
DD
3865#if USE_TCACHE
3866 size_t tcache_unsorted_count; /* count of unsorted chunks processed */
3867#endif
3868
fa8d436c 3869 /*
6c8dbf00
OB
3870 Convert request size to internal form by adding SIZE_SZ bytes
3871 overhead plus possibly more to obtain necessary alignment and/or
3872 to obtain a size of at least MINSIZE, the smallest allocatable
9bf8e29c 3873 size. Also, checked_request2size returns false for request sizes
6c8dbf00
OB
3874 that are so large that they wrap around zero when padded and
3875 aligned.
3876 */
f65fd747 3877
7519dee3
FW
3878 nb = checked_request2size (bytes);
3879 if (nb == 0)
9bf8e29c
AZ
3880 {
3881 __set_errno (ENOMEM);
3882 return NULL;
3883 }
f65fd747 3884
fff94fa2
SP
3885 /* There are no usable arenas. Fall back to sysmalloc to get a chunk from
3886 mmap. */
3887 if (__glibc_unlikely (av == NULL))
3888 {
3889 void *p = sysmalloc (nb, av);
3890 if (p != NULL)
3891 alloc_perturb (p, bytes);
3892 return p;
3893 }
3894
fa8d436c 3895 /*
6c8dbf00
OB
3896 If the size qualifies as a fastbin, first check corresponding bin.
3897 This code is safe to execute even if av is not yet initialized, so we
3898 can try it without checking, which saves some time on this fast path.
3899 */
f65fd747 3900
71effcea
FW
3901#define REMOVE_FB(fb, victim, pp) \
3902 do \
3903 { \
3904 victim = pp; \
3905 if (victim == NULL) \
3906 break; \
a1a486d7 3907 pp = REVEAL_PTR (victim->fd); \
49c3c376 3908 if (__glibc_unlikely (pp != NULL && misaligned_chunk (pp))) \
a1a486d7 3909 malloc_printerr ("malloc(): unaligned fastbin chunk detected"); \
71effcea 3910 } \
a1a486d7 3911 while ((pp = catomic_compare_and_exchange_val_acq (fb, pp, victim)) \
71effcea
FW
3912 != victim); \
3913
6c8dbf00
OB
3914 if ((unsigned long) (nb) <= (unsigned long) (get_max_fast ()))
3915 {
3916 idx = fastbin_index (nb);
3917 mfastbinptr *fb = &fastbin (av, idx);
71effcea
FW
3918 mchunkptr pp;
3919 victim = *fb;
3920
905a7725
WD
3921 if (victim != NULL)
3922 {
49c3c376
EI
3923 if (__glibc_unlikely (misaligned_chunk (victim)))
3924 malloc_printerr ("malloc(): unaligned fastbin chunk detected 2");
a1a486d7 3925
71effcea 3926 if (SINGLE_THREAD_P)
a1a486d7 3927 *fb = REVEAL_PTR (victim->fd);
71effcea
FW
3928 else
3929 REMOVE_FB (fb, pp, victim);
3930 if (__glibc_likely (victim != NULL))
6923f6db 3931 {
71effcea
FW
3932 size_t victim_idx = fastbin_index (chunksize (victim));
3933 if (__builtin_expect (victim_idx != idx, 0))
3934 malloc_printerr ("malloc(): memory corruption (fast)");
3935 check_remalloced_chunk (av, victim, nb);
3936#if USE_TCACHE
3937 /* While we're here, if we see other chunks of the same size,
3938 stash them in the tcache. */
3939 size_t tc_idx = csize2tidx (nb);
24cdd6c7 3940 if (tcache != NULL && tc_idx < mp_.tcache_bins)
d5c3fafc 3941 {
71effcea
FW
3942 mchunkptr tc_victim;
3943
3944 /* While bin not empty and tcache not full, copy chunks. */
3945 while (tcache->counts[tc_idx] < mp_.tcache_count
3946 && (tc_victim = *fb) != NULL)
3947 {
49c3c376
EI
3948 if (__glibc_unlikely (misaligned_chunk (tc_victim)))
3949 malloc_printerr ("malloc(): unaligned fastbin chunk detected 3");
71effcea 3950 if (SINGLE_THREAD_P)
a1a486d7 3951 *fb = REVEAL_PTR (tc_victim->fd);
71effcea
FW
3952 else
3953 {
3954 REMOVE_FB (fb, pp, tc_victim);
3955 if (__glibc_unlikely (tc_victim == NULL))
3956 break;
3957 }
3958 tcache_put (tc_victim, tc_idx);
3959 }
d5c3fafc 3960 }
6923f6db 3961#endif
ca89f1c7 3962 void *p = chunk2mem (victim);
71effcea
FW
3963 alloc_perturb (p, bytes);
3964 return p;
3965 }
905a7725 3966 }
fa8d436c 3967 }
f65fd747 3968
fa8d436c 3969 /*
6c8dbf00
OB
3970 If a small request, check regular bin. Since these "smallbins"
3971 hold one size each, no searching within bins is necessary.
3972 (For a large request, we need to wait until unsorted chunks are
3973 processed to find best fit. But for small ones, fits are exact
3974 anyway, so we can check now, which is faster.)
3975 */
3976
3977 if (in_smallbin_range (nb))
3978 {
3979 idx = smallbin_index (nb);
3980 bin = bin_at (av, idx);
3981
3982 if ((victim = last (bin)) != bin)
3983 {
3381be5c
WD
3984 bck = victim->bk;
3985 if (__glibc_unlikely (bck->fd != victim))
3986 malloc_printerr ("malloc(): smallbin double linked list corrupted");
3987 set_inuse_bit_at_offset (victim, nb);
3988 bin->bk = bck;
3989 bck->fd = bin;
3990
3991 if (av != &main_arena)
3992 set_non_main_arena (victim);
3993 check_malloced_chunk (av, victim, nb);
d5c3fafc
DD
3994#if USE_TCACHE
3995 /* While we're here, if we see other chunks of the same size,
3996 stash them in the tcache. */
3997 size_t tc_idx = csize2tidx (nb);
24cdd6c7 3998 if (tcache != NULL && tc_idx < mp_.tcache_bins)
d5c3fafc
DD
3999 {
4000 mchunkptr tc_victim;
4001
4002 /* While bin not empty and tcache not full, copy chunks over. */
4003 while (tcache->counts[tc_idx] < mp_.tcache_count
4004 && (tc_victim = last (bin)) != bin)
4005 {
4006 if (tc_victim != 0)
4007 {
4008 bck = tc_victim->bk;
4009 set_inuse_bit_at_offset (tc_victim, nb);
4010 if (av != &main_arena)
4011 set_non_main_arena (tc_victim);
4012 bin->bk = bck;
4013 bck->fd = bin;
4014
4015 tcache_put (tc_victim, tc_idx);
4016 }
4017 }
4018 }
4019#endif
ca89f1c7 4020 void *p = chunk2mem (victim);
3381be5c
WD
4021 alloc_perturb (p, bytes);
4022 return p;
6c8dbf00 4023 }
fa8d436c 4024 }
f65fd747 4025
a9177ff5 4026 /*
fa8d436c
UD
4027 If this is a large request, consolidate fastbins before continuing.
4028 While it might look excessive to kill all fastbins before
4029 even seeing if there is space available, this avoids
4030 fragmentation problems normally associated with fastbins.
4031 Also, in practice, programs tend to have runs of either small or
a9177ff5 4032 large requests, but less often mixtures, so consolidation is not
fa8d436c
UD
4033 invoked all that often in most programs. And the programs that
4034 it is called frequently in otherwise tend to fragment.
6c8dbf00 4035 */
7799b7b3 4036
6c8dbf00
OB
4037 else
4038 {
4039 idx = largebin_index (nb);
e956075a 4040 if (atomic_load_relaxed (&av->have_fastchunks))
6c8dbf00
OB
4041 malloc_consolidate (av);
4042 }
f65fd747 4043
fa8d436c 4044 /*
6c8dbf00
OB
4045 Process recently freed or remaindered chunks, taking one only if
4046 it is exact fit, or, if this a small request, the chunk is remainder from
4047 the most recent non-exact fit. Place other traversed chunks in
4048 bins. Note that this step is the only place in any routine where
4049 chunks are placed in bins.
4050
4051 The outer loop here is needed because we might not realize until
4052 near the end of malloc that we should have consolidated, so must
4053 do so and retry. This happens at most once, and only when we would
4054 otherwise need to expand memory to service a "small" request.
4055 */
4056
d5c3fafc
DD
4057#if USE_TCACHE
4058 INTERNAL_SIZE_T tcache_nb = 0;
4059 size_t tc_idx = csize2tidx (nb);
24cdd6c7 4060 if (tcache != NULL && tc_idx < mp_.tcache_bins)
d5c3fafc
DD
4061 tcache_nb = nb;
4062 int return_cached = 0;
4063
4064 tcache_unsorted_count = 0;
4065#endif
4066
6c8dbf00
OB
4067 for (;; )
4068 {
4069 int iters = 0;
4070 while ((victim = unsorted_chunks (av)->bk) != unsorted_chunks (av))
4071 {
4072 bck = victim->bk;
6c8dbf00 4073 size = chunksize (victim);
b90ddd08
IK
4074 mchunkptr next = chunk_at_offset (victim, size);
4075
3784dfc0 4076 if (__glibc_unlikely (size <= CHUNK_HDR_SZ)
b90ddd08
IK
4077 || __glibc_unlikely (size > av->system_mem))
4078 malloc_printerr ("malloc(): invalid size (unsorted)");
3784dfc0 4079 if (__glibc_unlikely (chunksize_nomask (next) < CHUNK_HDR_SZ)
b90ddd08
IK
4080 || __glibc_unlikely (chunksize_nomask (next) > av->system_mem))
4081 malloc_printerr ("malloc(): invalid next size (unsorted)");
4082 if (__glibc_unlikely ((prev_size (next) & ~(SIZE_BITS)) != size))
4083 malloc_printerr ("malloc(): mismatching next->prev_size (unsorted)");
4084 if (__glibc_unlikely (bck->fd != victim)
4085 || __glibc_unlikely (victim->fd != unsorted_chunks (av)))
4086 malloc_printerr ("malloc(): unsorted double linked list corrupted");
35cfefd9 4087 if (__glibc_unlikely (prev_inuse (next)))
b90ddd08 4088 malloc_printerr ("malloc(): invalid next->prev_inuse (unsorted)");
6c8dbf00
OB
4089
4090 /*
4091 If a small request, try to use last remainder if it is the
4092 only chunk in unsorted bin. This helps promote locality for
4093 runs of consecutive small requests. This is the only
4094 exception to best-fit, and applies only when there is
4095 no exact fit for a small chunk.
4096 */
4097
4098 if (in_smallbin_range (nb) &&
4099 bck == unsorted_chunks (av) &&
4100 victim == av->last_remainder &&
4101 (unsigned long) (size) > (unsigned long) (nb + MINSIZE))
4102 {
4103 /* split and reattach remainder */
4104 remainder_size = size - nb;
4105 remainder = chunk_at_offset (victim, nb);
4106 unsorted_chunks (av)->bk = unsorted_chunks (av)->fd = remainder;
4107 av->last_remainder = remainder;
4108 remainder->bk = remainder->fd = unsorted_chunks (av);
4109 if (!in_smallbin_range (remainder_size))
4110 {
4111 remainder->fd_nextsize = NULL;
4112 remainder->bk_nextsize = NULL;
4113 }
4114
4115 set_head (victim, nb | PREV_INUSE |
4116 (av != &main_arena ? NON_MAIN_ARENA : 0));
4117 set_head (remainder, remainder_size | PREV_INUSE);
4118 set_foot (remainder, remainder_size);
4119
4120 check_malloced_chunk (av, victim, nb);
ca89f1c7 4121 void *p = chunk2mem (victim);
6c8dbf00
OB
4122 alloc_perturb (p, bytes);
4123 return p;
4124 }
4125
4126 /* remove from unsorted list */
4127 unsorted_chunks (av)->bk = bck;
4128 bck->fd = unsorted_chunks (av);
4129
4130 /* Take now instead of binning if exact fit */
4131
4132 if (size == nb)
4133 {
4134 set_inuse_bit_at_offset (victim, size);
4135 if (av != &main_arena)
e9c4fe93 4136 set_non_main_arena (victim);
d5c3fafc
DD
4137#if USE_TCACHE
4138 /* Fill cache first, return to user only if cache fills.
4139 We may return one of these chunks later. */
24cdd6c7 4140 if (tcache_nb > 0
d5c3fafc
DD
4141 && tcache->counts[tc_idx] < mp_.tcache_count)
4142 {
4143 tcache_put (victim, tc_idx);
4144 return_cached = 1;
4145 continue;
4146 }
4147 else
4148 {
4149#endif
6c8dbf00 4150 check_malloced_chunk (av, victim, nb);
ca89f1c7 4151 void *p = chunk2mem (victim);
6c8dbf00
OB
4152 alloc_perturb (p, bytes);
4153 return p;
d5c3fafc
DD
4154#if USE_TCACHE
4155 }
4156#endif
6c8dbf00
OB
4157 }
4158
4159 /* place chunk in bin */
4160
4161 if (in_smallbin_range (size))
4162 {
4163 victim_index = smallbin_index (size);
4164 bck = bin_at (av, victim_index);
4165 fwd = bck->fd;
4166 }
4167 else
4168 {
4169 victim_index = largebin_index (size);
4170 bck = bin_at (av, victim_index);
4171 fwd = bck->fd;
4172
4173 /* maintain large bins in sorted order */
4174 if (fwd != bck)
4175 {
4176 /* Or with inuse bit to speed comparisons */
4177 size |= PREV_INUSE;
4178 /* if smaller than smallest, bypass loop below */
e9c4fe93
FW
4179 assert (chunk_main_arena (bck->bk));
4180 if ((unsigned long) (size)
4181 < (unsigned long) chunksize_nomask (bck->bk))
6c8dbf00
OB
4182 {
4183 fwd = bck;
4184 bck = bck->bk;
4185
4186 victim->fd_nextsize = fwd->fd;
4187 victim->bk_nextsize = fwd->fd->bk_nextsize;
4188 fwd->fd->bk_nextsize = victim->bk_nextsize->fd_nextsize = victim;
4189 }
4190 else
4191 {
e9c4fe93
FW
4192 assert (chunk_main_arena (fwd));
4193 while ((unsigned long) size < chunksize_nomask (fwd))
6c8dbf00
OB
4194 {
4195 fwd = fwd->fd_nextsize;
e9c4fe93 4196 assert (chunk_main_arena (fwd));
6c8dbf00
OB
4197 }
4198
e9c4fe93
FW
4199 if ((unsigned long) size
4200 == (unsigned long) chunksize_nomask (fwd))
6c8dbf00
OB
4201 /* Always insert in the second position. */
4202 fwd = fwd->fd;
4203 else
4204 {
4205 victim->fd_nextsize = fwd;
4206 victim->bk_nextsize = fwd->bk_nextsize;
5b06f538
AM
4207 if (__glibc_unlikely (fwd->bk_nextsize->fd_nextsize != fwd))
4208 malloc_printerr ("malloc(): largebin double linked list corrupted (nextsize)");
6c8dbf00
OB
4209 fwd->bk_nextsize = victim;
4210 victim->bk_nextsize->fd_nextsize = victim;
4211 }
4212 bck = fwd->bk;
5b06f538
AM
4213 if (bck->fd != fwd)
4214 malloc_printerr ("malloc(): largebin double linked list corrupted (bk)");
6c8dbf00
OB
4215 }
4216 }
4217 else
4218 victim->fd_nextsize = victim->bk_nextsize = victim;
4219 }
4220
4221 mark_bin (av, victim_index);
4222 victim->bk = bck;
4223 victim->fd = fwd;
4224 fwd->bk = victim;
4225 bck->fd = victim;
4226
d5c3fafc
DD
4227#if USE_TCACHE
4228 /* If we've processed as many chunks as we're allowed while
4229 filling the cache, return one of the cached ones. */
4230 ++tcache_unsorted_count;
4231 if (return_cached
4232 && mp_.tcache_unsorted_limit > 0
4233 && tcache_unsorted_count > mp_.tcache_unsorted_limit)
4234 {
4235 return tcache_get (tc_idx);
4236 }
4237#endif
4238
6c8dbf00
OB
4239#define MAX_ITERS 10000
4240 if (++iters >= MAX_ITERS)
4241 break;
4242 }
fa8d436c 4243
d5c3fafc
DD
4244#if USE_TCACHE
4245 /* If all the small chunks we found ended up cached, return one now. */
4246 if (return_cached)
4247 {
4248 return tcache_get (tc_idx);
4249 }
4250#endif
4251
a9177ff5 4252 /*
6c8dbf00
OB
4253 If a large request, scan through the chunks of current bin in
4254 sorted order to find smallest that fits. Use the skip list for this.
4255 */
4256
4257 if (!in_smallbin_range (nb))
4258 {
4259 bin = bin_at (av, idx);
4260
4261 /* skip scan if empty or largest chunk is too small */
e9c4fe93
FW
4262 if ((victim = first (bin)) != bin
4263 && (unsigned long) chunksize_nomask (victim)
4264 >= (unsigned long) (nb))
6c8dbf00
OB
4265 {
4266 victim = victim->bk_nextsize;
4267 while (((unsigned long) (size = chunksize (victim)) <
4268 (unsigned long) (nb)))
4269 victim = victim->bk_nextsize;
4270
4271 /* Avoid removing the first entry for a size so that the skip
4272 list does not have to be rerouted. */
e9c4fe93
FW
4273 if (victim != last (bin)
4274 && chunksize_nomask (victim)
4275 == chunksize_nomask (victim->fd))
6c8dbf00
OB
4276 victim = victim->fd;
4277
4278 remainder_size = size - nb;
1ecba1fa 4279 unlink_chunk (av, victim);
6c8dbf00
OB
4280
4281 /* Exhaust */
4282 if (remainder_size < MINSIZE)
4283 {
4284 set_inuse_bit_at_offset (victim, size);
4285 if (av != &main_arena)
e9c4fe93 4286 set_non_main_arena (victim);
6c8dbf00
OB
4287 }
4288 /* Split */
4289 else
4290 {
4291 remainder = chunk_at_offset (victim, nb);
4292 /* We cannot assume the unsorted list is empty and therefore
4293 have to perform a complete insert here. */
4294 bck = unsorted_chunks (av);
4295 fwd = bck->fd;
ac3ed168
FW
4296 if (__glibc_unlikely (fwd->bk != bck))
4297 malloc_printerr ("malloc(): corrupted unsorted chunks");
6c8dbf00
OB
4298 remainder->bk = bck;
4299 remainder->fd = fwd;
4300 bck->fd = remainder;
4301 fwd->bk = remainder;
4302 if (!in_smallbin_range (remainder_size))
4303 {
4304 remainder->fd_nextsize = NULL;
4305 remainder->bk_nextsize = NULL;
4306 }
4307 set_head (victim, nb | PREV_INUSE |
4308 (av != &main_arena ? NON_MAIN_ARENA : 0));
4309 set_head (remainder, remainder_size | PREV_INUSE);
4310 set_foot (remainder, remainder_size);
4311 }
4312 check_malloced_chunk (av, victim, nb);
ca89f1c7 4313 void *p = chunk2mem (victim);
6c8dbf00
OB
4314 alloc_perturb (p, bytes);
4315 return p;
4316 }
4317 }
f65fd747 4318
6c8dbf00
OB
4319 /*
4320 Search for a chunk by scanning bins, starting with next largest
4321 bin. This search is strictly by best-fit; i.e., the smallest
4322 (with ties going to approximately the least recently used) chunk
4323 that fits is selected.
4324
4325 The bitmap avoids needing to check that most blocks are nonempty.
4326 The particular case of skipping all bins during warm-up phases
4327 when no chunks have been returned yet is faster than it might look.
4328 */
4329
4330 ++idx;
4331 bin = bin_at (av, idx);
4332 block = idx2block (idx);
4333 map = av->binmap[block];
4334 bit = idx2bit (idx);
4335
4336 for (;; )
4337 {
4338 /* Skip rest of block if there are no more set bits in this block. */
4339 if (bit > map || bit == 0)
4340 {
4341 do
4342 {
4343 if (++block >= BINMAPSIZE) /* out of bins */
4344 goto use_top;
4345 }
4346 while ((map = av->binmap[block]) == 0);
4347
4348 bin = bin_at (av, (block << BINMAPSHIFT));
4349 bit = 1;
4350 }
4351
4352 /* Advance to bin with set bit. There must be one. */
4353 while ((bit & map) == 0)
4354 {
4355 bin = next_bin (bin);
4356 bit <<= 1;
4357 assert (bit != 0);
4358 }
4359
4360 /* Inspect the bin. It is likely to be non-empty */
4361 victim = last (bin);
4362
4363 /* If a false alarm (empty bin), clear the bit. */
4364 if (victim == bin)
4365 {
4366 av->binmap[block] = map &= ~bit; /* Write through */
4367 bin = next_bin (bin);
4368 bit <<= 1;
4369 }
4370
4371 else
4372 {
4373 size = chunksize (victim);
4374
4375 /* We know the first chunk in this bin is big enough to use. */
4376 assert ((unsigned long) (size) >= (unsigned long) (nb));
4377
4378 remainder_size = size - nb;
4379
4380 /* unlink */
1ecba1fa 4381 unlink_chunk (av, victim);
6c8dbf00
OB
4382
4383 /* Exhaust */
4384 if (remainder_size < MINSIZE)
4385 {
4386 set_inuse_bit_at_offset (victim, size);
4387 if (av != &main_arena)
e9c4fe93 4388 set_non_main_arena (victim);
6c8dbf00
OB
4389 }
4390
4391 /* Split */
4392 else
4393 {
4394 remainder = chunk_at_offset (victim, nb);
4395
4396 /* We cannot assume the unsorted list is empty and therefore
4397 have to perform a complete insert here. */
4398 bck = unsorted_chunks (av);
4399 fwd = bck->fd;
ac3ed168
FW
4400 if (__glibc_unlikely (fwd->bk != bck))
4401 malloc_printerr ("malloc(): corrupted unsorted chunks 2");
6c8dbf00
OB
4402 remainder->bk = bck;
4403 remainder->fd = fwd;
4404 bck->fd = remainder;
4405 fwd->bk = remainder;
4406
4407 /* advertise as last remainder */
4408 if (in_smallbin_range (nb))
4409 av->last_remainder = remainder;
4410 if (!in_smallbin_range (remainder_size))
4411 {
4412 remainder->fd_nextsize = NULL;
4413 remainder->bk_nextsize = NULL;
4414 }
4415 set_head (victim, nb | PREV_INUSE |
4416 (av != &main_arena ? NON_MAIN_ARENA : 0));
4417 set_head (remainder, remainder_size | PREV_INUSE);
4418 set_foot (remainder, remainder_size);
4419 }
4420 check_malloced_chunk (av, victim, nb);
ca89f1c7 4421 void *p = chunk2mem (victim);
6c8dbf00
OB
4422 alloc_perturb (p, bytes);
4423 return p;
4424 }
4425 }
4426
4427 use_top:
4428 /*
4429 If large enough, split off the chunk bordering the end of memory
4430 (held in av->top). Note that this is in accord with the best-fit
4431 search rule. In effect, av->top is treated as larger (and thus
4432 less well fitting) than any other available chunk since it can
4433 be extended to be as large as necessary (up to system
4434 limitations).
4435
4436 We require that av->top always exists (i.e., has size >=
4437 MINSIZE) after initialization, so if it would otherwise be
4438 exhausted by current request, it is replenished. (The main
4439 reason for ensuring it exists is that we may need MINSIZE space
4440 to put in fenceposts in sysmalloc.)
4441 */
4442
4443 victim = av->top;
4444 size = chunksize (victim);
4445
30a17d8c
PC
4446 if (__glibc_unlikely (size > av->system_mem))
4447 malloc_printerr ("malloc(): corrupted top size");
4448
6c8dbf00
OB
4449 if ((unsigned long) (size) >= (unsigned long) (nb + MINSIZE))
4450 {
4451 remainder_size = size - nb;
4452 remainder = chunk_at_offset (victim, nb);
4453 av->top = remainder;
4454 set_head (victim, nb | PREV_INUSE |
4455 (av != &main_arena ? NON_MAIN_ARENA : 0));
4456 set_head (remainder, remainder_size | PREV_INUSE);
4457
4458 check_malloced_chunk (av, victim, nb);
ca89f1c7 4459 void *p = chunk2mem (victim);
6c8dbf00
OB
4460 alloc_perturb (p, bytes);
4461 return p;
4462 }
4463
4464 /* When we are using atomic ops to free fast chunks we can get
4465 here for all block sizes. */
e956075a 4466 else if (atomic_load_relaxed (&av->have_fastchunks))
6c8dbf00
OB
4467 {
4468 malloc_consolidate (av);
4469 /* restore original bin index */
4470 if (in_smallbin_range (nb))
4471 idx = smallbin_index (nb);
4472 else
4473 idx = largebin_index (nb);
4474 }
f65fd747 4475
6c8dbf00
OB
4476 /*
4477 Otherwise, relay to handle system-dependent cases
4478 */
425ce2ed 4479 else
6c8dbf00
OB
4480 {
4481 void *p = sysmalloc (nb, av);
4482 if (p != NULL)
4483 alloc_perturb (p, bytes);
4484 return p;
4485 }
425ce2ed 4486 }
fa8d436c 4487}
f65fd747 4488
fa8d436c 4489/*
6c8dbf00
OB
4490 ------------------------------ free ------------------------------
4491 */
f65fd747 4492
78ac92ad 4493static void
6c8dbf00 4494_int_free (mstate av, mchunkptr p, int have_lock)
f65fd747 4495{
fa8d436c 4496 INTERNAL_SIZE_T size; /* its size */
6c8dbf00 4497 mfastbinptr *fb; /* associated fastbin */
fa8d436c 4498
6c8dbf00 4499 size = chunksize (p);
f65fd747 4500
37fa1953 4501 /* Little security check which won't hurt performance: the
7f0d9e61 4502 allocator never wraps around at the end of the address space.
37fa1953
UD
4503 Therefore we can exclude some size values which might appear
4504 here by accident or by "design" from some intruder. */
dc165f7b 4505 if (__builtin_expect ((uintptr_t) p > (uintptr_t) -size, 0)
073f560e 4506 || __builtin_expect (misaligned_chunk (p), 0))
ac3ed168 4507 malloc_printerr ("free(): invalid pointer");
347c92e9
L
4508 /* We know that each chunk is at least MINSIZE bytes in size or a
4509 multiple of MALLOC_ALIGNMENT. */
a1ffb40e 4510 if (__glibc_unlikely (size < MINSIZE || !aligned_OK (size)))
ac3ed168 4511 malloc_printerr ("free(): invalid size");
f65fd747 4512
37fa1953 4513 check_inuse_chunk(av, p);
f65fd747 4514
d5c3fafc
DD
4515#if USE_TCACHE
4516 {
4517 size_t tc_idx = csize2tidx (size);
affec03b 4518 if (tcache != NULL && tc_idx < mp_.tcache_bins)
d5c3fafc 4519 {
affec03b 4520 /* Check to see if it's already in the tcache. */
ca89f1c7 4521 tcache_entry *e = (tcache_entry *) chunk2mem (p);
affec03b
FW
4522
4523 /* This test succeeds on double free. However, we don't 100%
4524 trust it (it also matches random payload data at a 1 in
4525 2^<size_t> chance), so verify it's not an unlikely
4526 coincidence before aborting. */
fc859c30 4527 if (__glibc_unlikely (e->key == tcache_key))
affec03b
FW
4528 {
4529 tcache_entry *tmp;
0e00b357 4530 size_t cnt = 0;
affec03b
FW
4531 LIBC_PROBE (memory_tcache_double_free, 2, e, tc_idx);
4532 for (tmp = tcache->entries[tc_idx];
4533 tmp;
0e00b357 4534 tmp = REVEAL_PTR (tmp->next), ++cnt)
768358b6 4535 {
0e00b357
H
4536 if (cnt >= mp_.tcache_count)
4537 malloc_printerr ("free(): too many chunks detected in tcache");
768358b6
EI
4538 if (__glibc_unlikely (!aligned_OK (tmp)))
4539 malloc_printerr ("free(): unaligned chunk detected in tcache 2");
4540 if (tmp == e)
4541 malloc_printerr ("free(): double free detected in tcache 2");
4542 /* If we get here, it was a coincidence. We've wasted a
4543 few cycles, but don't abort. */
4544 }
affec03b
FW
4545 }
4546
4547 if (tcache->counts[tc_idx] < mp_.tcache_count)
4548 {
4549 tcache_put (p, tc_idx);
4550 return;
4551 }
d5c3fafc
DD
4552 }
4553 }
4554#endif
4555
37fa1953
UD
4556 /*
4557 If eligible, place chunk on a fastbin so it can be found
4558 and used quickly in malloc.
4559 */
6bf4302e 4560
9bf248c6 4561 if ((unsigned long)(size) <= (unsigned long)(get_max_fast ())
6bf4302e 4562
37fa1953
UD
4563#if TRIM_FASTBINS
4564 /*
4565 If TRIM_FASTBINS set, don't place chunks
4566 bordering top into fastbins
4567 */
4568 && (chunk_at_offset(p, size) != av->top)
4569#endif
4570 ) {
fa8d436c 4571
e9c4fe93 4572 if (__builtin_expect (chunksize_nomask (chunk_at_offset (p, size))
3784dfc0 4573 <= CHUNK_HDR_SZ, 0)
893e6098
UD
4574 || __builtin_expect (chunksize (chunk_at_offset (p, size))
4575 >= av->system_mem, 0))
4576 {
d74e6f6c 4577 bool fail = true;
bec466d9 4578 /* We might not have a lock at this point and concurrent modifications
d74e6f6c
WD
4579 of system_mem might result in a false positive. Redo the test after
4580 getting the lock. */
4581 if (!have_lock)
4582 {
4583 __libc_lock_lock (av->mutex);
3784dfc0 4584 fail = (chunksize_nomask (chunk_at_offset (p, size)) <= CHUNK_HDR_SZ
d74e6f6c
WD
4585 || chunksize (chunk_at_offset (p, size)) >= av->system_mem);
4586 __libc_lock_unlock (av->mutex);
4587 }
4588
4589 if (fail)
ac3ed168 4590 malloc_printerr ("free(): invalid next size (fast)");
893e6098
UD
4591 }
4592
ca89f1c7 4593 free_perturb (chunk2mem(p), size - CHUNK_HDR_SZ);
425ce2ed 4594
e956075a 4595 atomic_store_relaxed (&av->have_fastchunks, true);
90a3055e
UD
4596 unsigned int idx = fastbin_index(size);
4597 fb = &fastbin (av, idx);
425ce2ed 4598
362b47fe 4599 /* Atomically link P to its fastbin: P->FD = *FB; *FB = P; */
71effcea
FW
4600 mchunkptr old = *fb, old2;
4601
4602 if (SINGLE_THREAD_P)
4603 {
4604 /* Check that the top of the bin is not the record we are going to
4605 add (i.e., double free). */
4606 if (__builtin_expect (old == p, 0))
4607 malloc_printerr ("double free or corruption (fasttop)");
a1a486d7 4608 p->fd = PROTECT_PTR (&p->fd, old);
71effcea
FW
4609 *fb = p;
4610 }
4611 else
4612 do
4613 {
4614 /* Check that the top of the bin is not the record we are going to
4615 add (i.e., double free). */
4616 if (__builtin_expect (old == p, 0))
4617 malloc_printerr ("double free or corruption (fasttop)");
a1a486d7
EI
4618 old2 = old;
4619 p->fd = PROTECT_PTR (&p->fd, old);
71effcea
FW
4620 }
4621 while ((old = catomic_compare_and_exchange_val_rel (fb, p, old2))
4622 != old2);
a15d53e2
WD
4623
4624 /* Check that size of fastbin chunk at the top is the same as
4625 size of the chunk that we are adding. We can dereference OLD
4626 only if we have the lock, otherwise it might have already been
4627 allocated again. */
4628 if (have_lock && old != NULL
4629 && __builtin_expect (fastbin_index (chunksize (old)) != idx, 0))
ac3ed168 4630 malloc_printerr ("invalid fastbin entry (free)");
37fa1953 4631 }
f65fd747 4632
37fa1953
UD
4633 /*
4634 Consolidate other non-mmapped chunks as they arrive.
4635 */
fa8d436c 4636
37fa1953 4637 else if (!chunk_is_mmapped(p)) {
a15d53e2
WD
4638
4639 /* If we're single-threaded, don't lock the arena. */
4640 if (SINGLE_THREAD_P)
4641 have_lock = true;
4642
24cffce7 4643 if (!have_lock)
4bf5f222 4644 __libc_lock_lock (av->mutex);
425ce2ed 4645
542b1105 4646 _int_free_merge_chunk (av, p, size);
fa8d436c 4647
542b1105
FW
4648 if (!have_lock)
4649 __libc_lock_unlock (av->mutex);
4650 }
4651 /*
4652 If the chunk was allocated via mmap, release via munmap().
4653 */
4654
4655 else {
4656 munmap_chunk (p);
4657 }
4658}
4659
4660/* Try to merge chunk P of SIZE bytes with its neighbors. Put the
4661 resulting chunk on the appropriate bin list. P must not be on a
4662 bin list yet, and it can be in use. */
4663static void
4664_int_free_merge_chunk (mstate av, mchunkptr p, INTERNAL_SIZE_T size)
4665{
4666 mchunkptr nextchunk = chunk_at_offset(p, size);
4667
4668 /* Lightweight tests: check whether the block is already the
4669 top block. */
4670 if (__glibc_unlikely (p == av->top))
4671 malloc_printerr ("double free or corruption (top)");
4672 /* Or whether the next chunk is beyond the boundaries of the arena. */
4673 if (__builtin_expect (contiguous (av)
4674 && (char *) nextchunk
4675 >= ((char *) av->top + chunksize(av->top)), 0))
4676 malloc_printerr ("double free or corruption (out)");
4677 /* Or whether the block is actually not marked used. */
4678 if (__glibc_unlikely (!prev_inuse(nextchunk)))
4679 malloc_printerr ("double free or corruption (!prev)");
4680
4681 INTERNAL_SIZE_T nextsize = chunksize(nextchunk);
4682 if (__builtin_expect (chunksize_nomask (nextchunk) <= CHUNK_HDR_SZ, 0)
4683 || __builtin_expect (nextsize >= av->system_mem, 0))
4684 malloc_printerr ("free(): invalid next size (normal)");
4685
4686 free_perturb (chunk2mem(p), size - CHUNK_HDR_SZ);
854278df 4687
542b1105
FW
4688 /* Consolidate backward. */
4689 if (!prev_inuse(p))
4690 {
4691 INTERNAL_SIZE_T prevsize = prev_size (p);
37fa1953
UD
4692 size += prevsize;
4693 p = chunk_at_offset(p, -((long) prevsize));
d6db68e6
ME
4694 if (__glibc_unlikely (chunksize(p) != prevsize))
4695 malloc_printerr ("corrupted size vs. prev_size while consolidating");
1ecba1fa 4696 unlink_chunk (av, p);
37fa1953 4697 }
a9177ff5 4698
542b1105
FW
4699 /* Write the chunk header, maybe after merging with the following chunk. */
4700 size = _int_free_create_chunk (av, p, size, nextchunk, nextsize);
4701 _int_free_maybe_consolidate (av, size);
4702}
4703
4704/* Create a chunk at P of SIZE bytes, with SIZE potentially increased
4705 to cover the immediately following chunk NEXTCHUNK of NEXTSIZE
4706 bytes (if NEXTCHUNK is unused). The chunk at P is not actually
4707 read and does not have to be initialized. After creation, it is
4708 placed on the appropriate bin list. The function returns the size
4709 of the new chunk. */
4710static INTERNAL_SIZE_T
4711_int_free_create_chunk (mstate av, mchunkptr p, INTERNAL_SIZE_T size,
4712 mchunkptr nextchunk, INTERNAL_SIZE_T nextsize)
4713{
4714 if (nextchunk != av->top)
4715 {
37fa1953 4716 /* get and clear inuse bit */
542b1105 4717 bool nextinuse = inuse_bit_at_offset (nextchunk, nextsize);
37fa1953
UD
4718
4719 /* consolidate forward */
4720 if (!nextinuse) {
1ecba1fa 4721 unlink_chunk (av, nextchunk);
37fa1953
UD
4722 size += nextsize;
4723 } else
4724 clear_inuse_bit_at_offset(nextchunk, 0);
10dc2a90 4725
fa8d436c 4726 /*
37fa1953
UD
4727 Place the chunk in unsorted chunk list. Chunks are
4728 not placed into regular bins until after they have
4729 been given one chance to be used in malloc.
fa8d436c 4730 */
f65fd747 4731
542b1105
FW
4732 mchunkptr bck = unsorted_chunks (av);
4733 mchunkptr fwd = bck->fd;
a1ffb40e 4734 if (__glibc_unlikely (fwd->bk != bck))
ac3ed168 4735 malloc_printerr ("free(): corrupted unsorted chunks");
37fa1953 4736 p->fd = fwd;
7ecfbd38
UD
4737 p->bk = bck;
4738 if (!in_smallbin_range(size))
4739 {
4740 p->fd_nextsize = NULL;
4741 p->bk_nextsize = NULL;
4742 }
37fa1953
UD
4743 bck->fd = p;
4744 fwd->bk = p;
8a4b65b4 4745
37fa1953
UD
4746 set_head(p, size | PREV_INUSE);
4747 set_foot(p, size);
4748
4749 check_free_chunk(av, p);
4750 }
4751
542b1105
FW
4752 else
4753 {
4754 /* If the chunk borders the current high end of memory,
4755 consolidate into top. */
37fa1953
UD
4756 size += nextsize;
4757 set_head(p, size | PREV_INUSE);
4758 av->top = p;
4759 check_chunk(av, p);
4760 }
4761
542b1105
FW
4762 return size;
4763}
fa8d436c 4764
542b1105
FW
4765/* If freeing a large space, consolidate possibly-surrounding
4766 chunks. Then, if the total unused topmost memory exceeds trim
4767 threshold, ask malloc_trim to reduce top. */
4768static void
4769_int_free_maybe_consolidate (mstate av, INTERNAL_SIZE_T size)
4770{
4771 /* Unless max_fast is 0, we don't know if there are fastbins
4772 bordering top, so we cannot tell for sure whether threshold has
4773 been reached unless fastbins are consolidated. But we don't want
4774 to consolidate on each free. As a compromise, consolidation is
4775 performed if FASTBIN_CONSOLIDATION_THRESHOLD is reached. */
4776 if (size >= FASTBIN_CONSOLIDATION_THRESHOLD)
4777 {
e956075a 4778 if (atomic_load_relaxed (&av->have_fastchunks))
37fa1953 4779 malloc_consolidate(av);
fa8d436c 4780
542b1105
FW
4781 if (av == &main_arena)
4782 {
a9177ff5 4783#ifndef MORECORE_CANNOT_TRIM
542b1105
FW
4784 if (chunksize (av->top) >= mp_.trim_threshold)
4785 systrim (mp_.top_pad, av);
fa8d436c 4786#endif
542b1105
FW
4787 }
4788 else
4789 {
4790 /* Always try heap_trim, even if the top chunk is not large,
4791 because the corresponding heap might go away. */
4792 heap_info *heap = heap_for_ptr (top (av));
fa8d436c 4793
542b1105
FW
4794 assert (heap->ar_ptr == av);
4795 heap_trim (heap, mp_.top_pad);
4796 }
fa8d436c 4797 }
10dc2a90
UD
4798}
4799
fa8d436c
UD
4800/*
4801 ------------------------- malloc_consolidate -------------------------
4802
4803 malloc_consolidate is a specialized version of free() that tears
4804 down chunks held in fastbins. Free itself cannot be used for this
4805 purpose since, among other things, it might place chunks back onto
4806 fastbins. So, instead, we need to use a minor variant of the same
4807 code.
fa8d436c
UD
4808*/
4809
fa8d436c 4810static void malloc_consolidate(mstate av)
10dc2a90 4811{
fa8d436c
UD
4812 mfastbinptr* fb; /* current fastbin being consolidated */
4813 mfastbinptr* maxfb; /* last fastbin (for loop control) */
4814 mchunkptr p; /* current chunk being consolidated */
4815 mchunkptr nextp; /* next chunk to consolidate */
4816 mchunkptr unsorted_bin; /* bin header */
4817 mchunkptr first_unsorted; /* chunk to link to */
4818
4819 /* These have same use as in free() */
4820 mchunkptr nextchunk;
4821 INTERNAL_SIZE_T size;
4822 INTERNAL_SIZE_T nextsize;
4823 INTERNAL_SIZE_T prevsize;
4824 int nextinuse;
10dc2a90 4825
3381be5c 4826 atomic_store_relaxed (&av->have_fastchunks, false);
10dc2a90 4827
3381be5c 4828 unsorted_bin = unsorted_chunks(av);
a9177ff5 4829
3381be5c
WD
4830 /*
4831 Remove each chunk from fast bin and consolidate it, placing it
4832 then in unsorted bin. Among other reasons for doing this,
4833 placing in unsorted bin avoids needing to calculate actual bins
4834 until malloc is sure that chunks aren't immediately going to be
4835 reused anyway.
4836 */
72f90263 4837
3381be5c
WD
4838 maxfb = &fastbin (av, NFASTBINS - 1);
4839 fb = &fastbin (av, 0);
4840 do {
22f4ab2d 4841 p = atomic_exchange_acquire (fb, NULL);
3381be5c
WD
4842 if (p != 0) {
4843 do {
249a5895 4844 {
49c3c376 4845 if (__glibc_unlikely (misaligned_chunk (p)))
768358b6 4846 malloc_printerr ("malloc_consolidate(): "
a1a486d7
EI
4847 "unaligned fastbin chunk detected");
4848
249a5895
IK
4849 unsigned int idx = fastbin_index (chunksize (p));
4850 if ((&fastbin (av, idx)) != fb)
4851 malloc_printerr ("malloc_consolidate(): invalid chunk size");
4852 }
4853
3381be5c 4854 check_inuse_chunk(av, p);
a1a486d7 4855 nextp = REVEAL_PTR (p->fd);
3381be5c
WD
4856
4857 /* Slightly streamlined version of consolidation code in free() */
4858 size = chunksize (p);
4859 nextchunk = chunk_at_offset(p, size);
4860 nextsize = chunksize(nextchunk);
4861
4862 if (!prev_inuse(p)) {
4863 prevsize = prev_size (p);
4864 size += prevsize;
4865 p = chunk_at_offset(p, -((long) prevsize));
d6db68e6
ME
4866 if (__glibc_unlikely (chunksize(p) != prevsize))
4867 malloc_printerr ("corrupted size vs. prev_size in fastbins");
1ecba1fa 4868 unlink_chunk (av, p);
3381be5c 4869 }
72f90263 4870
3381be5c
WD
4871 if (nextchunk != av->top) {
4872 nextinuse = inuse_bit_at_offset(nextchunk, nextsize);
a9177ff5 4873
3381be5c
WD
4874 if (!nextinuse) {
4875 size += nextsize;
1ecba1fa 4876 unlink_chunk (av, nextchunk);
3381be5c
WD
4877 } else
4878 clear_inuse_bit_at_offset(nextchunk, 0);
a9177ff5 4879
3381be5c
WD
4880 first_unsorted = unsorted_bin->fd;
4881 unsorted_bin->fd = p;
4882 first_unsorted->bk = p;
7ecfbd38 4883
3381be5c
WD
4884 if (!in_smallbin_range (size)) {
4885 p->fd_nextsize = NULL;
4886 p->bk_nextsize = NULL;
72f90263 4887 }
a9177ff5 4888
3381be5c
WD
4889 set_head(p, size | PREV_INUSE);
4890 p->bk = unsorted_bin;
4891 p->fd = first_unsorted;
4892 set_foot(p, size);
4893 }
a9177ff5 4894
3381be5c
WD
4895 else {
4896 size += nextsize;
4897 set_head(p, size | PREV_INUSE);
4898 av->top = p;
4899 }
a9177ff5 4900
3381be5c
WD
4901 } while ( (p = nextp) != 0);
4902
4903 }
4904 } while (fb++ != maxfb);
fa8d436c 4905}
10dc2a90 4906
fa8d436c
UD
4907/*
4908 ------------------------------ realloc ------------------------------
4909*/
f65fd747 4910
79969f41
SP
4911static void *
4912_int_realloc (mstate av, mchunkptr oldp, INTERNAL_SIZE_T oldsize,
4c8b8cc3 4913 INTERNAL_SIZE_T nb)
fa8d436c 4914{
fa8d436c
UD
4915 mchunkptr newp; /* chunk to return */
4916 INTERNAL_SIZE_T newsize; /* its size */
22a89187 4917 void* newmem; /* corresponding user mem */
f65fd747 4918
fa8d436c 4919 mchunkptr next; /* next contiguous chunk after oldp */
f65fd747 4920
fa8d436c
UD
4921 mchunkptr remainder; /* extra space at end of newp */
4922 unsigned long remainder_size; /* its size */
f65fd747 4923
6dd6a580 4924 /* oldmem size */
3784dfc0 4925 if (__builtin_expect (chunksize_nomask (oldp) <= CHUNK_HDR_SZ, 0)
774d43f2
QL
4926 || __builtin_expect (oldsize >= av->system_mem, 0)
4927 || __builtin_expect (oldsize != chunksize (oldp), 0))
ac3ed168 4928 malloc_printerr ("realloc(): invalid old size");
76761b63 4929
6c8dbf00 4930 check_inuse_chunk (av, oldp);
f65fd747 4931
4c8b8cc3 4932 /* All callers already filter out mmap'ed chunks. */
6c8dbf00 4933 assert (!chunk_is_mmapped (oldp));
f65fd747 4934
6c8dbf00
OB
4935 next = chunk_at_offset (oldp, oldsize);
4936 INTERNAL_SIZE_T nextsize = chunksize (next);
3784dfc0 4937 if (__builtin_expect (chunksize_nomask (next) <= CHUNK_HDR_SZ, 0)
22a89187 4938 || __builtin_expect (nextsize >= av->system_mem, 0))
ac3ed168 4939 malloc_printerr ("realloc(): invalid next size");
22a89187 4940
6c8dbf00
OB
4941 if ((unsigned long) (oldsize) >= (unsigned long) (nb))
4942 {
4943 /* already big enough; split below */
fa8d436c 4944 newp = oldp;
6c8dbf00 4945 newsize = oldsize;
7799b7b3 4946 }
f65fd747 4947
6c8dbf00
OB
4948 else
4949 {
4950 /* Try to expand forward into top */
4951 if (next == av->top &&
4952 (unsigned long) (newsize = oldsize + nextsize) >=
4953 (unsigned long) (nb + MINSIZE))
4954 {
4955 set_head_size (oldp, nb | (av != &main_arena ? NON_MAIN_ARENA : 0));
4956 av->top = chunk_at_offset (oldp, nb);
4957 set_head (av->top, (newsize - nb) | PREV_INUSE);
4958 check_inuse_chunk (av, oldp);
ca89f1c7 4959 return tag_new_usable (chunk2mem (oldp));
6c8dbf00
OB
4960 }
4961
4962 /* Try to expand forward into next chunk; split off remainder below */
4963 else if (next != av->top &&
4964 !inuse (next) &&
4965 (unsigned long) (newsize = oldsize + nextsize) >=
4966 (unsigned long) (nb))
4967 {
4968 newp = oldp;
1ecba1fa 4969 unlink_chunk (av, next);
6c8dbf00
OB
4970 }
4971
4972 /* allocate, copy, free */
4973 else
4974 {
4975 newmem = _int_malloc (av, nb - MALLOC_ALIGN_MASK);
4976 if (newmem == 0)
4977 return 0; /* propagate failure */
4978
4979 newp = mem2chunk (newmem);
4980 newsize = chunksize (newp);
4981
4982 /*
4983 Avoid copy if newp is next chunk after oldp.
4984 */
4985 if (newp == next)
4986 {
4987 newsize += oldsize;
4988 newp = oldp;
4989 }
4990 else
4991 {
ca89f1c7 4992 void *oldmem = chunk2mem (oldp);
faf003ed 4993 size_t sz = memsize (oldp);
0c719cf4
SN
4994 (void) tag_region (oldmem, sz);
4995 newmem = tag_new_usable (newmem);
8ae909a5
SN
4996 memcpy (newmem, oldmem, sz);
4997 _int_free (av, oldp, 1);
4998 check_inuse_chunk (av, newp);
4999 return newmem;
6c8dbf00
OB
5000 }
5001 }
fa8d436c 5002 }
f65fd747 5003
22a89187 5004 /* If possible, free extra space in old or extended chunk */
f65fd747 5005
6c8dbf00 5006 assert ((unsigned long) (newsize) >= (unsigned long) (nb));
f65fd747 5007
22a89187 5008 remainder_size = newsize - nb;
10dc2a90 5009
6c8dbf00
OB
5010 if (remainder_size < MINSIZE) /* not enough extra to split off */
5011 {
5012 set_head_size (newp, newsize | (av != &main_arena ? NON_MAIN_ARENA : 0));
5013 set_inuse_bit_at_offset (newp, newsize);
5014 }
5015 else /* split remainder */
5016 {
5017 remainder = chunk_at_offset (newp, nb);
3784dfc0 5018 /* Clear any user-space tags before writing the header. */
0c719cf4 5019 remainder = tag_region (remainder, remainder_size);
6c8dbf00
OB
5020 set_head_size (newp, nb | (av != &main_arena ? NON_MAIN_ARENA : 0));
5021 set_head (remainder, remainder_size | PREV_INUSE |
5022 (av != &main_arena ? NON_MAIN_ARENA : 0));
5023 /* Mark remainder as inuse so free() won't complain */
5024 set_inuse_bit_at_offset (remainder, remainder_size);
5025 _int_free (av, remainder, 1);
5026 }
22a89187 5027
6c8dbf00 5028 check_inuse_chunk (av, newp);
ca89f1c7 5029 return tag_new_usable (chunk2mem (newp));
fa8d436c
UD
5030}
5031
5032/*
6c8dbf00
OB
5033 ------------------------------ memalign ------------------------------
5034 */
fa8d436c 5035
24cdd6c7 5036/* BYTES is user requested bytes, not requested chunksize bytes. */
6c8dbf00
OB
5037static void *
5038_int_memalign (mstate av, size_t alignment, size_t bytes)
fa8d436c
UD
5039{
5040 INTERNAL_SIZE_T nb; /* padded request size */
6c8dbf00
OB
5041 char *m; /* memory returned by malloc call */
5042 mchunkptr p; /* corresponding chunk */
5043 char *brk; /* alignment point within p */
5044 mchunkptr newp; /* chunk to return */
fa8d436c
UD
5045 INTERNAL_SIZE_T newsize; /* its size */
5046 INTERNAL_SIZE_T leadsize; /* leading space before alignment point */
6c8dbf00
OB
5047 mchunkptr remainder; /* spare room at end to split off */
5048 unsigned long remainder_size; /* its size */
fa8d436c 5049 INTERNAL_SIZE_T size;
f65fd747 5050
7519dee3
FW
5051 nb = checked_request2size (bytes);
5052 if (nb == 0)
9bf8e29c
AZ
5053 {
5054 __set_errno (ENOMEM);
5055 return NULL;
5056 }
fa8d436c 5057
24cdd6c7
DD
5058 /* We can't check tcache here because we hold the arena lock, which
5059 tcache doesn't expect. We expect it has been checked
5060 earlier. */
5061
5062 /* Strategy: search the bins looking for an existing block that
5063 meets our needs. We scan a range of bins from "exact size" to
5064 "just under 2x", spanning the small/large barrier if needed. If
5065 we don't find anything in those bins, the common malloc code will
5066 scan starting at 2x. */
5067
0dc7fc1c
FW
5068 /* Call malloc with worst case padding to hit alignment. */
5069 m = (char *) (_int_malloc (av, nb + alignment + MINSIZE));
24cdd6c7 5070
0dc7fc1c
FW
5071 if (m == 0)
5072 return 0; /* propagate failure */
e5524ef3 5073
0dc7fc1c 5074 p = mem2chunk (m);
6c8dbf00
OB
5075
5076 if ((((unsigned long) (m)) % alignment) != 0) /* misaligned */
24cdd6c7
DD
5077 {
5078 /* Find an aligned spot inside chunk. Since we need to give back
5079 leading space in a chunk of at least MINSIZE, if the first
5080 calculation places us at a spot with less than MINSIZE leader,
5081 we can move to the next aligned spot -- we've allocated enough
5082 total room so that this is always possible. */
6c8dbf00
OB
5083 brk = (char *) mem2chunk (((unsigned long) (m + alignment - 1)) &
5084 - ((signed long) alignment));
5085 if ((unsigned long) (brk - (char *) (p)) < MINSIZE)
5086 brk += alignment;
5087
5088 newp = (mchunkptr) brk;
5089 leadsize = brk - (char *) (p);
5090 newsize = chunksize (p) - leadsize;
5091
5092 /* For mmapped chunks, just adjust offset */
5093 if (chunk_is_mmapped (p))
5094 {
e9c4fe93 5095 set_prev_size (newp, prev_size (p) + leadsize);
6c8dbf00 5096 set_head (newp, newsize | IS_MMAPPED);
ca89f1c7 5097 return chunk2mem (newp);
6c8dbf00
OB
5098 }
5099
5100 /* Otherwise, give back leader, use the rest */
5101 set_head (newp, newsize | PREV_INUSE |
5102 (av != &main_arena ? NON_MAIN_ARENA : 0));
5103 set_inuse_bit_at_offset (newp, newsize);
5104 set_head_size (p, leadsize | (av != &main_arena ? NON_MAIN_ARENA : 0));
542b1105 5105 _int_free_merge_chunk (av, p, leadsize);
6c8dbf00
OB
5106 p = newp;
5107
5108 assert (newsize >= nb &&
ca89f1c7 5109 (((unsigned long) (chunk2mem (p))) % alignment) == 0);
f65fd747 5110 }
f65fd747 5111
f65fd747 5112 /* Also give back spare room at the end */
6c8dbf00
OB
5113 if (!chunk_is_mmapped (p))
5114 {
5115 size = chunksize (p);
542b1105
FW
5116 mchunkptr nextchunk = chunk_at_offset(p, size);
5117 INTERNAL_SIZE_T nextsize = chunksize(nextchunk);
5118 if (size > nb)
6c8dbf00
OB
5119 {
5120 remainder_size = size - nb;
542b1105
FW
5121 if (remainder_size >= MINSIZE
5122 || nextchunk == av->top
5123 || !inuse_bit_at_offset (nextchunk, nextsize))
5124 {
5125 /* We can only give back the tail if it is larger than
5126 MINSIZE, or if the following chunk is unused (top
5127 chunk or unused in-heap chunk). Otherwise we would
5128 create a chunk that is smaller than MINSIZE. */
5129 remainder = chunk_at_offset (p, nb);
5130 set_head_size (p, nb);
5131 remainder_size = _int_free_create_chunk (av, remainder,
5132 remainder_size,
5133 nextchunk, nextsize);
5134 _int_free_maybe_consolidate (av, remainder_size);
5135 }
5136 }
fa8d436c 5137 }
f65fd747 5138
6c8dbf00 5139 check_inuse_chunk (av, p);
ca89f1c7 5140 return chunk2mem (p);
f65fd747
UD
5141}
5142
f65fd747 5143
fa8d436c 5144/*
6c8dbf00
OB
5145 ------------------------------ malloc_trim ------------------------------
5146 */
8a4b65b4 5147
6c8dbf00
OB
5148static int
5149mtrim (mstate av, size_t pad)
f65fd747 5150{
3381be5c 5151 /* Ensure all blocks are consolidated. */
68631c8e
UD
5152 malloc_consolidate (av);
5153
6c8dbf00 5154 const size_t ps = GLRO (dl_pagesize);
68631c8e
UD
5155 int psindex = bin_index (ps);
5156 const size_t psm1 = ps - 1;
5157
5158 int result = 0;
5159 for (int i = 1; i < NBINS; ++i)
5160 if (i == 1 || i >= psindex)
5161 {
6c8dbf00 5162 mbinptr bin = bin_at (av, i);
68631c8e 5163
6c8dbf00
OB
5164 for (mchunkptr p = last (bin); p != bin; p = p->bk)
5165 {
5166 INTERNAL_SIZE_T size = chunksize (p);
68631c8e 5167
6c8dbf00
OB
5168 if (size > psm1 + sizeof (struct malloc_chunk))
5169 {
5170 /* See whether the chunk contains at least one unused page. */
5171 char *paligned_mem = (char *) (((uintptr_t) p
5172 + sizeof (struct malloc_chunk)
5173 + psm1) & ~psm1);
68631c8e 5174
ca89f1c7 5175 assert ((char *) chunk2mem (p) + 2 * CHUNK_HDR_SZ
3784dfc0 5176 <= paligned_mem);
6c8dbf00 5177 assert ((char *) p + size > paligned_mem);
68631c8e 5178
6c8dbf00
OB
5179 /* This is the size we could potentially free. */
5180 size -= paligned_mem - (char *) p;
68631c8e 5181
6c8dbf00
OB
5182 if (size > psm1)
5183 {
439bda32 5184#if MALLOC_DEBUG
6c8dbf00
OB
5185 /* When debugging we simulate destroying the memory
5186 content. */
5187 memset (paligned_mem, 0x89, size & ~psm1);
68631c8e 5188#endif
6c8dbf00 5189 __madvise (paligned_mem, size & ~psm1, MADV_DONTNEED);
68631c8e 5190
6c8dbf00
OB
5191 result = 1;
5192 }
5193 }
5194 }
68631c8e 5195 }
8a4b65b4 5196
a9177ff5 5197#ifndef MORECORE_CANNOT_TRIM
3b49edc0 5198 return result | (av == &main_arena ? systrim (pad, av) : 0);
6c8dbf00 5199
8a4b65b4 5200#else
68631c8e 5201 return result;
f65fd747 5202#endif
f65fd747
UD
5203}
5204
f65fd747 5205
3b49edc0 5206int
6c8dbf00 5207__malloc_trim (size_t s)
3b49edc0
UD
5208{
5209 int result = 0;
5210
cc35896e 5211 if (!__malloc_initialized)
3b49edc0
UD
5212 ptmalloc_init ();
5213
5214 mstate ar_ptr = &main_arena;
5215 do
5216 {
4bf5f222 5217 __libc_lock_lock (ar_ptr->mutex);
3b49edc0 5218 result |= mtrim (ar_ptr, s);
4bf5f222 5219 __libc_lock_unlock (ar_ptr->mutex);
3b49edc0
UD
5220
5221 ar_ptr = ar_ptr->next;
5222 }
5223 while (ar_ptr != &main_arena);
5224
5225 return result;
5226}
5227
5228
f65fd747 5229/*
6c8dbf00
OB
5230 ------------------------- malloc_usable_size -------------------------
5231 */
f65fd747 5232
3b49edc0 5233static size_t
6c8dbf00 5234musable (void *mem)
f65fd747 5235{
88e316b0 5236 mchunkptr p = mem2chunk (mem);
6c8dbf00 5237
88e316b0
SP
5238 if (chunk_is_mmapped (p))
5239 return chunksize (p) - CHUNK_HDR_SZ;
5240 else if (inuse (p))
5241 return memsize (p);
3784dfc0 5242
fa8d436c 5243 return 0;
f65fd747
UD
5244}
5245
b5bd5bfe 5246#if IS_IN (libc)
3b49edc0 5247size_t
6c8dbf00 5248__malloc_usable_size (void *m)
3b49edc0 5249{
88e316b0
SP
5250 if (m == NULL)
5251 return 0;
5252 return musable (m);
3b49edc0 5253}
b5bd5bfe 5254#endif
3b49edc0 5255
fa8d436c 5256/*
6c8dbf00
OB
5257 ------------------------------ mallinfo ------------------------------
5258 Accumulate malloc statistics for arena AV into M.
5259 */
bedee953 5260static void
e3960d1c 5261int_mallinfo (mstate av, struct mallinfo2 *m)
f65fd747 5262{
6dd67bd5 5263 size_t i;
f65fd747
UD
5264 mbinptr b;
5265 mchunkptr p;
f65fd747 5266 INTERNAL_SIZE_T avail;
fa8d436c
UD
5267 INTERNAL_SIZE_T fastavail;
5268 int nblocks;
5269 int nfastblocks;
f65fd747 5270
6c8dbf00 5271 check_malloc_state (av);
8a4b65b4 5272
fa8d436c 5273 /* Account for top */
6c8dbf00 5274 avail = chunksize (av->top);
fa8d436c 5275 nblocks = 1; /* top always exists */
f65fd747 5276
fa8d436c
UD
5277 /* traverse fastbins */
5278 nfastblocks = 0;
5279 fastavail = 0;
5280
6c8dbf00
OB
5281 for (i = 0; i < NFASTBINS; ++i)
5282 {
a1a486d7
EI
5283 for (p = fastbin (av, i);
5284 p != 0;
5285 p = REVEAL_PTR (p->fd))
6c8dbf00 5286 {
49c3c376 5287 if (__glibc_unlikely (misaligned_chunk (p)))
768358b6 5288 malloc_printerr ("int_mallinfo(): "
a1a486d7 5289 "unaligned fastbin chunk detected");
6c8dbf00
OB
5290 ++nfastblocks;
5291 fastavail += chunksize (p);
5292 }
fa8d436c 5293 }
fa8d436c
UD
5294
5295 avail += fastavail;
f65fd747 5296
fa8d436c 5297 /* traverse regular bins */
6c8dbf00
OB
5298 for (i = 1; i < NBINS; ++i)
5299 {
5300 b = bin_at (av, i);
5301 for (p = last (b); p != b; p = p->bk)
5302 {
5303 ++nblocks;
5304 avail += chunksize (p);
5305 }
fa8d436c 5306 }
f65fd747 5307
bedee953
PP
5308 m->smblks += nfastblocks;
5309 m->ordblks += nblocks;
5310 m->fordblks += avail;
5311 m->uordblks += av->system_mem - avail;
5312 m->arena += av->system_mem;
5313 m->fsmblks += fastavail;
5314 if (av == &main_arena)
5315 {
5316 m->hblks = mp_.n_mmaps;
5317 m->hblkhd = mp_.mmapped_mem;
ca135f82 5318 m->usmblks = 0;
6c8dbf00 5319 m->keepcost = chunksize (av->top);
bedee953 5320 }
fa8d436c 5321}
f65fd747 5322
3b49edc0 5323
e3960d1c
ML
5324struct mallinfo2
5325__libc_mallinfo2 (void)
3b49edc0 5326{
e3960d1c 5327 struct mallinfo2 m;
bedee953 5328 mstate ar_ptr;
3b49edc0 5329
cc35896e 5330 if (!__malloc_initialized)
3b49edc0 5331 ptmalloc_init ();
bedee953 5332
6c8dbf00 5333 memset (&m, 0, sizeof (m));
bedee953 5334 ar_ptr = &main_arena;
6c8dbf00
OB
5335 do
5336 {
4bf5f222 5337 __libc_lock_lock (ar_ptr->mutex);
6c8dbf00 5338 int_mallinfo (ar_ptr, &m);
4bf5f222 5339 __libc_lock_unlock (ar_ptr->mutex);
bedee953 5340
6c8dbf00
OB
5341 ar_ptr = ar_ptr->next;
5342 }
5343 while (ar_ptr != &main_arena);
bedee953 5344
3b49edc0
UD
5345 return m;
5346}
cdf64542 5347libc_hidden_def (__libc_mallinfo2)
3b49edc0 5348
e3960d1c
ML
5349struct mallinfo
5350__libc_mallinfo (void)
5351{
5352 struct mallinfo m;
5353 struct mallinfo2 m2 = __libc_mallinfo2 ();
5354
5355 m.arena = m2.arena;
5356 m.ordblks = m2.ordblks;
5357 m.smblks = m2.smblks;
5358 m.hblks = m2.hblks;
5359 m.hblkhd = m2.hblkhd;
5360 m.usmblks = m2.usmblks;
5361 m.fsmblks = m2.fsmblks;
5362 m.uordblks = m2.uordblks;
5363 m.fordblks = m2.fordblks;
5364 m.keepcost = m2.keepcost;
5365
5366 return m;
5367}
5368
5369
fa8d436c 5370/*
6c8dbf00
OB
5371 ------------------------------ malloc_stats ------------------------------
5372 */
f65fd747 5373
3b49edc0 5374void
60d2f8f3 5375__malloc_stats (void)
f65fd747 5376{
8a4b65b4 5377 int i;
fa8d436c 5378 mstate ar_ptr;
fa8d436c 5379 unsigned int in_use_b = mp_.mmapped_mem, system_b = in_use_b;
8a4b65b4 5380
cc35896e 5381 if (!__malloc_initialized)
a234e27d 5382 ptmalloc_init ();
8dab36a1 5383 _IO_flockfile (stderr);
9964a145
ZW
5384 int old_flags2 = stderr->_flags2;
5385 stderr->_flags2 |= _IO_FLAGS2_NOTCANCEL;
6c8dbf00
OB
5386 for (i = 0, ar_ptr = &main_arena;; i++)
5387 {
e3960d1c 5388 struct mallinfo2 mi;
6c8dbf00
OB
5389
5390 memset (&mi, 0, sizeof (mi));
4bf5f222 5391 __libc_lock_lock (ar_ptr->mutex);
6c8dbf00
OB
5392 int_mallinfo (ar_ptr, &mi);
5393 fprintf (stderr, "Arena %d:\n", i);
5394 fprintf (stderr, "system bytes = %10u\n", (unsigned int) mi.arena);
5395 fprintf (stderr, "in use bytes = %10u\n", (unsigned int) mi.uordblks);
fa8d436c 5396#if MALLOC_DEBUG > 1
6c8dbf00
OB
5397 if (i > 0)
5398 dump_heap (heap_for_ptr (top (ar_ptr)));
fa8d436c 5399#endif
6c8dbf00
OB
5400 system_b += mi.arena;
5401 in_use_b += mi.uordblks;
4bf5f222 5402 __libc_lock_unlock (ar_ptr->mutex);
6c8dbf00
OB
5403 ar_ptr = ar_ptr->next;
5404 if (ar_ptr == &main_arena)
5405 break;
5406 }
5407 fprintf (stderr, "Total (incl. mmap):\n");
5408 fprintf (stderr, "system bytes = %10u\n", system_b);
5409 fprintf (stderr, "in use bytes = %10u\n", in_use_b);
5410 fprintf (stderr, "max mmap regions = %10u\n", (unsigned int) mp_.max_n_mmaps);
5411 fprintf (stderr, "max mmap bytes = %10lu\n",
5412 (unsigned long) mp_.max_mmapped_mem);
9964a145 5413 stderr->_flags2 = old_flags2;
8dab36a1 5414 _IO_funlockfile (stderr);
f65fd747
UD
5415}
5416
f65fd747
UD
5417
5418/*
6c8dbf00
OB
5419 ------------------------------ mallopt ------------------------------
5420 */
c2d8f0b7 5421static __always_inline int
be7991c0
SP
5422do_set_trim_threshold (size_t value)
5423{
5424 LIBC_PROBE (memory_mallopt_trim_threshold, 3, value, mp_.trim_threshold,
5425 mp_.no_dyn_threshold);
5426 mp_.trim_threshold = value;
5427 mp_.no_dyn_threshold = 1;
5428 return 1;
5429}
5430
c2d8f0b7 5431static __always_inline int
be7991c0
SP
5432do_set_top_pad (size_t value)
5433{
5434 LIBC_PROBE (memory_mallopt_top_pad, 3, value, mp_.top_pad,
5435 mp_.no_dyn_threshold);
5436 mp_.top_pad = value;
5437 mp_.no_dyn_threshold = 1;
5438 return 1;
5439}
5440
c2d8f0b7 5441static __always_inline int
be7991c0
SP
5442do_set_mmap_threshold (size_t value)
5443{
0a4df6f5
PM
5444 LIBC_PROBE (memory_mallopt_mmap_threshold, 3, value, mp_.mmap_threshold,
5445 mp_.no_dyn_threshold);
5446 mp_.mmap_threshold = value;
5447 mp_.no_dyn_threshold = 1;
5448 return 1;
be7991c0
SP
5449}
5450
c2d8f0b7 5451static __always_inline int
be7991c0
SP
5452do_set_mmaps_max (int32_t value)
5453{
5454 LIBC_PROBE (memory_mallopt_mmap_max, 3, value, mp_.n_mmaps_max,
5455 mp_.no_dyn_threshold);
5456 mp_.n_mmaps_max = value;
5457 mp_.no_dyn_threshold = 1;
5458 return 1;
5459}
5460
c2d8f0b7 5461static __always_inline int
be7991c0
SP
5462do_set_mallopt_check (int32_t value)
5463{
be7991c0
SP
5464 return 1;
5465}
5466
c2d8f0b7 5467static __always_inline int
be7991c0
SP
5468do_set_perturb_byte (int32_t value)
5469{
5470 LIBC_PROBE (memory_mallopt_perturb, 2, value, perturb_byte);
5471 perturb_byte = value;
5472 return 1;
5473}
5474
c2d8f0b7 5475static __always_inline int
be7991c0
SP
5476do_set_arena_test (size_t value)
5477{
5478 LIBC_PROBE (memory_mallopt_arena_test, 2, value, mp_.arena_test);
5479 mp_.arena_test = value;
5480 return 1;
5481}
5482
c2d8f0b7 5483static __always_inline int
be7991c0
SP
5484do_set_arena_max (size_t value)
5485{
5486 LIBC_PROBE (memory_mallopt_arena_max, 2, value, mp_.arena_max);
5487 mp_.arena_max = value;
5488 return 1;
5489}
5490
d5c3fafc 5491#if USE_TCACHE
c2d8f0b7 5492static __always_inline int
d5c3fafc
DD
5493do_set_tcache_max (size_t value)
5494{
16554464 5495 if (value <= MAX_TCACHE_SIZE)
d5c3fafc
DD
5496 {
5497 LIBC_PROBE (memory_tunable_tcache_max_bytes, 2, value, mp_.tcache_max_bytes);
5498 mp_.tcache_max_bytes = value;
5499 mp_.tcache_bins = csize2tidx (request2size(value)) + 1;
16554464 5500 return 1;
d5c3fafc 5501 }
16554464 5502 return 0;
d5c3fafc
DD
5503}
5504
c2d8f0b7 5505static __always_inline int
d5c3fafc
DD
5506do_set_tcache_count (size_t value)
5507{
5ad533e8
WD
5508 if (value <= MAX_TCACHE_COUNT)
5509 {
5510 LIBC_PROBE (memory_tunable_tcache_count, 2, value, mp_.tcache_count);
5511 mp_.tcache_count = value;
16554464 5512 return 1;
5ad533e8 5513 }
16554464 5514 return 0;
d5c3fafc
DD
5515}
5516
c2d8f0b7 5517static __always_inline int
d5c3fafc
DD
5518do_set_tcache_unsorted_limit (size_t value)
5519{
5520 LIBC_PROBE (memory_tunable_tcache_unsorted_limit, 2, value, mp_.tcache_unsorted_limit);
5521 mp_.tcache_unsorted_limit = value;
5522 return 1;
5523}
5524#endif
f65fd747 5525
a4ea49f8 5526static __always_inline int
c48d92b4
DD
5527do_set_mxfast (size_t value)
5528{
16554464 5529 if (value <= MAX_FAST_SIZE)
c48d92b4
DD
5530 {
5531 LIBC_PROBE (memory_mallopt_mxfast, 2, value, get_max_fast ());
5532 set_max_fast (value);
5533 return 1;
5534 }
5535 return 0;
5536}
5537
5f6d8d97 5538static __always_inline int
98d5fcb8 5539do_set_hugetlb (size_t value)
5f6d8d97
AZ
5540{
5541 if (value == 1)
5542 {
5543 enum malloc_thp_mode_t thp_mode = __malloc_thp_mode ();
5544 /*
5545 Only enable THP madvise usage if system does support it and
5546 has 'madvise' mode. Otherwise the madvise() call is wasteful.
5547 */
5548 if (thp_mode == malloc_thp_mode_madvise)
5549 mp_.thp_pagesize = __malloc_default_thp_pagesize ();
5550 }
98d5fcb8
AZ
5551 else if (value >= 2)
5552 __malloc_hugepage_config (value == 2 ? 0 : value, &mp_.hp_pagesize,
5553 &mp_.hp_flags);
5f6d8d97
AZ
5554 return 0;
5555}
5f6d8d97 5556
6c8dbf00
OB
5557int
5558__libc_mallopt (int param_number, int value)
f65fd747 5559{
fa8d436c
UD
5560 mstate av = &main_arena;
5561 int res = 1;
f65fd747 5562
cc35896e 5563 if (!__malloc_initialized)
0cb71e02 5564 ptmalloc_init ();
4bf5f222 5565 __libc_lock_lock (av->mutex);
2f6d1f1b 5566
3ea5be54
AO
5567 LIBC_PROBE (memory_mallopt, 2, param_number, value);
5568
3381be5c
WD
5569 /* We must consolidate main arena before changing max_fast
5570 (see definition of set_max_fast). */
5571 malloc_consolidate (av);
5572
16554464
DD
5573 /* Many of these helper functions take a size_t. We do not worry
5574 about overflow here, because negative int values will wrap to
5575 very large size_t values and the helpers have sufficient range
5576 checking for such conversions. Many of these helpers are also
5577 used by the tunables macros in arena.c. */
5578
6c8dbf00
OB
5579 switch (param_number)
5580 {
5581 case M_MXFAST:
16554464 5582 res = do_set_mxfast (value);
6c8dbf00
OB
5583 break;
5584
5585 case M_TRIM_THRESHOLD:
16554464 5586 res = do_set_trim_threshold (value);
6c8dbf00
OB
5587 break;
5588
5589 case M_TOP_PAD:
16554464 5590 res = do_set_top_pad (value);
6c8dbf00
OB
5591 break;
5592
5593 case M_MMAP_THRESHOLD:
be7991c0 5594 res = do_set_mmap_threshold (value);
6c8dbf00
OB
5595 break;
5596
5597 case M_MMAP_MAX:
16554464 5598 res = do_set_mmaps_max (value);
6c8dbf00
OB
5599 break;
5600
5601 case M_CHECK_ACTION:
16554464 5602 res = do_set_mallopt_check (value);
6c8dbf00
OB
5603 break;
5604
5605 case M_PERTURB:
16554464 5606 res = do_set_perturb_byte (value);
6c8dbf00
OB
5607 break;
5608
5609 case M_ARENA_TEST:
5610 if (value > 0)
16554464 5611 res = do_set_arena_test (value);
6c8dbf00
OB
5612 break;
5613
5614 case M_ARENA_MAX:
5615 if (value > 0)
16554464 5616 res = do_set_arena_max (value);
6c8dbf00
OB
5617 break;
5618 }
4bf5f222 5619 __libc_lock_unlock (av->mutex);
fa8d436c 5620 return res;
b22fc5f5 5621}
3b49edc0 5622libc_hidden_def (__libc_mallopt)
b22fc5f5 5623
10dc2a90 5624
a9177ff5 5625/*
6c8dbf00
OB
5626 -------------------- Alternative MORECORE functions --------------------
5627 */
10dc2a90 5628
b22fc5f5 5629
fa8d436c 5630/*
6c8dbf00 5631 General Requirements for MORECORE.
b22fc5f5 5632
6c8dbf00 5633 The MORECORE function must have the following properties:
b22fc5f5 5634
6c8dbf00 5635 If MORECORE_CONTIGUOUS is false:
10dc2a90 5636
6c8dbf00 5637 * MORECORE must allocate in multiples of pagesize. It will
fa8d436c 5638 only be called with arguments that are multiples of pagesize.
10dc2a90 5639
6c8dbf00 5640 * MORECORE(0) must return an address that is at least
fa8d436c 5641 MALLOC_ALIGNMENT aligned. (Page-aligning always suffices.)
10dc2a90 5642
6c8dbf00 5643 else (i.e. If MORECORE_CONTIGUOUS is true):
10dc2a90 5644
6c8dbf00 5645 * Consecutive calls to MORECORE with positive arguments
fa8d436c
UD
5646 return increasing addresses, indicating that space has been
5647 contiguously extended.
10dc2a90 5648
6c8dbf00 5649 * MORECORE need not allocate in multiples of pagesize.
fa8d436c 5650 Calls to MORECORE need not have args of multiples of pagesize.
10dc2a90 5651
6c8dbf00 5652 * MORECORE need not page-align.
10dc2a90 5653
6c8dbf00 5654 In either case:
10dc2a90 5655
6c8dbf00 5656 * MORECORE may allocate more memory than requested. (Or even less,
fa8d436c 5657 but this will generally result in a malloc failure.)
10dc2a90 5658
6c8dbf00 5659 * MORECORE must not allocate memory when given argument zero, but
fa8d436c
UD
5660 instead return one past the end address of memory from previous
5661 nonzero call. This malloc does NOT call MORECORE(0)
5662 until at least one call with positive arguments is made, so
5663 the initial value returned is not important.
10dc2a90 5664
6c8dbf00 5665 * Even though consecutive calls to MORECORE need not return contiguous
fa8d436c
UD
5666 addresses, it must be OK for malloc'ed chunks to span multiple
5667 regions in those cases where they do happen to be contiguous.
10dc2a90 5668
6c8dbf00 5669 * MORECORE need not handle negative arguments -- it may instead
fa8d436c
UD
5670 just return MORECORE_FAILURE when given negative arguments.
5671 Negative arguments are always multiples of pagesize. MORECORE
5672 must not misinterpret negative args as large positive unsigned
5673 args. You can suppress all such calls from even occurring by defining
5674 MORECORE_CANNOT_TRIM,
10dc2a90 5675
6c8dbf00
OB
5676 There is some variation across systems about the type of the
5677 argument to sbrk/MORECORE. If size_t is unsigned, then it cannot
5678 actually be size_t, because sbrk supports negative args, so it is
5679 normally the signed type of the same width as size_t (sometimes
5680 declared as "intptr_t", and sometimes "ptrdiff_t"). It doesn't much
5681 matter though. Internally, we use "long" as arguments, which should
5682 work across all reasonable possibilities.
5683
5684 Additionally, if MORECORE ever returns failure for a positive
5685 request, then mmap is used as a noncontiguous system allocator. This
5686 is a useful backup strategy for systems with holes in address spaces
5687 -- in this case sbrk cannot contiguously expand the heap, but mmap
5688 may be able to map noncontiguous space.
5689
5690 If you'd like mmap to ALWAYS be used, you can define MORECORE to be
5691 a function that always returns MORECORE_FAILURE.
5692
5693 If you are using this malloc with something other than sbrk (or its
5694 emulation) to supply memory regions, you probably want to set
5695 MORECORE_CONTIGUOUS as false. As an example, here is a custom
5696 allocator kindly contributed for pre-OSX macOS. It uses virtually
5697 but not necessarily physically contiguous non-paged memory (locked
5698 in, present and won't get swapped out). You can use it by
5699 uncommenting this section, adding some #includes, and setting up the
5700 appropriate defines above:
5701
5702 *#define MORECORE osMoreCore
5703 *#define MORECORE_CONTIGUOUS 0
5704
5705 There is also a shutdown routine that should somehow be called for
5706 cleanup upon program exit.
5707
5708 *#define MAX_POOL_ENTRIES 100
5709 *#define MINIMUM_MORECORE_SIZE (64 * 1024)
5710 static int next_os_pool;
5711 void *our_os_pools[MAX_POOL_ENTRIES];
5712
5713 void *osMoreCore(int size)
5714 {
fa8d436c
UD
5715 void *ptr = 0;
5716 static void *sbrk_top = 0;
ca34d7a7 5717
fa8d436c
UD
5718 if (size > 0)
5719 {
5720 if (size < MINIMUM_MORECORE_SIZE)
6c8dbf00 5721 size = MINIMUM_MORECORE_SIZE;
fa8d436c 5722 if (CurrentExecutionLevel() == kTaskLevel)
6c8dbf00 5723 ptr = PoolAllocateResident(size + RM_PAGE_SIZE, 0);
fa8d436c
UD
5724 if (ptr == 0)
5725 {
6c8dbf00 5726 return (void *) MORECORE_FAILURE;
fa8d436c
UD
5727 }
5728 // save ptrs so they can be freed during cleanup
5729 our_os_pools[next_os_pool] = ptr;
5730 next_os_pool++;
5731 ptr = (void *) ((((unsigned long) ptr) + RM_PAGE_MASK) & ~RM_PAGE_MASK);
5732 sbrk_top = (char *) ptr + size;
5733 return ptr;
5734 }
5735 else if (size < 0)
5736 {
5737 // we don't currently support shrink behavior
5738 return (void *) MORECORE_FAILURE;
5739 }
5740 else
5741 {
5742 return sbrk_top;
431c33c0 5743 }
6c8dbf00 5744 }
ca34d7a7 5745
6c8dbf00
OB
5746 // cleanup any allocated memory pools
5747 // called as last thing before shutting down driver
ca34d7a7 5748
6c8dbf00
OB
5749 void osCleanupMem(void)
5750 {
fa8d436c 5751 void **ptr;
ca34d7a7 5752
fa8d436c
UD
5753 for (ptr = our_os_pools; ptr < &our_os_pools[MAX_POOL_ENTRIES]; ptr++)
5754 if (*ptr)
5755 {
6c8dbf00
OB
5756 PoolDeallocate(*ptr);
5757 * ptr = 0;
fa8d436c 5758 }
6c8dbf00 5759 }
ee74a442 5760
6c8dbf00 5761 */
f65fd747 5762
7e3be507 5763
3e030bd5
UD
5764/* Helper code. */
5765
ae7f5313
UD
5766extern char **__libc_argv attribute_hidden;
5767
3e030bd5 5768static void
ac3ed168 5769malloc_printerr (const char *str)
3e030bd5 5770{
b5bd5bfe 5771#if IS_IN (libc)
cca9684f 5772 __libc_message ("%s\n", str);
b5bd5bfe
SP
5773#else
5774 __libc_fatal (str);
5775#endif
ec2c1fce 5776 __builtin_unreachable ();
3e030bd5
UD
5777}
5778
b5bd5bfe 5779#if IS_IN (libc)
a204dbb2
UD
5780/* We need a wrapper function for one of the additions of POSIX. */
5781int
5782__posix_memalign (void **memptr, size_t alignment, size_t size)
5783{
5784 void *mem;
5785
cc35896e 5786 if (!__malloc_initialized)
2d2d9f2b
SP
5787 ptmalloc_init ();
5788
a204dbb2
UD
5789 /* Test whether the SIZE argument is valid. It must be a power of
5790 two multiple of sizeof (void *). */
de02bd05 5791 if (alignment % sizeof (void *) != 0
fc56e970 5792 || !powerof2 (alignment / sizeof (void *))
de02bd05 5793 || alignment == 0)
a204dbb2
UD
5794 return EINVAL;
5795
10ad46bc
OB
5796
5797 void *address = RETURN_ADDRESS (0);
5798 mem = _mid_memalign (alignment, size, address);
a204dbb2 5799
6c8dbf00
OB
5800 if (mem != NULL)
5801 {
5802 *memptr = mem;
5803 return 0;
5804 }
a204dbb2
UD
5805
5806 return ENOMEM;
5807}
5808weak_alias (__posix_memalign, posix_memalign)
b5bd5bfe 5809#endif
a204dbb2 5810
20c13899
OB
5811
5812int
c52ff39e 5813__malloc_info (int options, FILE *fp)
bb066545 5814{
20c13899
OB
5815 /* For now, at least. */
5816 if (options != 0)
5817 return EINVAL;
bb066545 5818
20c13899
OB
5819 int n = 0;
5820 size_t total_nblocks = 0;
5821 size_t total_nfastblocks = 0;
5822 size_t total_avail = 0;
5823 size_t total_fastavail = 0;
5824 size_t total_system = 0;
5825 size_t total_max_system = 0;
5826 size_t total_aspace = 0;
5827 size_t total_aspace_mprotect = 0;
bb066545 5828
6c8dbf00 5829
6c8dbf00 5830
cc35896e 5831 if (!__malloc_initialized)
987c0269 5832 ptmalloc_init ();
bb066545 5833
987c0269 5834 fputs ("<malloc version=\"1\">\n", fp);
bb066545 5835
987c0269
OB
5836 /* Iterate over all arenas currently in use. */
5837 mstate ar_ptr = &main_arena;
5838 do
5839 {
5840 fprintf (fp, "<heap nr=\"%d\">\n<sizes>\n", n++);
8b35e35d 5841
987c0269
OB
5842 size_t nblocks = 0;
5843 size_t nfastblocks = 0;
5844 size_t avail = 0;
5845 size_t fastavail = 0;
5846 struct
5847 {
5848 size_t from;
5849 size_t to;
5850 size_t total;
5851 size_t count;
5852 } sizes[NFASTBINS + NBINS - 1];
5853#define nsizes (sizeof (sizes) / sizeof (sizes[0]))
6c8dbf00 5854
4bf5f222 5855 __libc_lock_lock (ar_ptr->mutex);
bb066545 5856
b6d2c447
NH
5857 /* Account for top chunk. The top-most available chunk is
5858 treated specially and is never in any bin. See "initial_top"
5859 comments. */
5860 avail = chunksize (ar_ptr->top);
5861 nblocks = 1; /* Top always exists. */
5862
987c0269
OB
5863 for (size_t i = 0; i < NFASTBINS; ++i)
5864 {
5865 mchunkptr p = fastbin (ar_ptr, i);
5866 if (p != NULL)
5867 {
5868 size_t nthissize = 0;
5869 size_t thissize = chunksize (p);
5870
5871 while (p != NULL)
5872 {
49c3c376 5873 if (__glibc_unlikely (misaligned_chunk (p)))
768358b6 5874 malloc_printerr ("__malloc_info(): "
a1a486d7 5875 "unaligned fastbin chunk detected");
987c0269 5876 ++nthissize;
a1a486d7 5877 p = REVEAL_PTR (p->fd);
987c0269
OB
5878 }
5879
5880 fastavail += nthissize * thissize;
5881 nfastblocks += nthissize;
5882 sizes[i].from = thissize - (MALLOC_ALIGNMENT - 1);
5883 sizes[i].to = thissize;
5884 sizes[i].count = nthissize;
5885 }
5886 else
5887 sizes[i].from = sizes[i].to = sizes[i].count = 0;
bb066545 5888
987c0269
OB
5889 sizes[i].total = sizes[i].count * sizes[i].to;
5890 }
bb066545 5891
bb066545 5892
987c0269
OB
5893 mbinptr bin;
5894 struct malloc_chunk *r;
bb066545 5895
987c0269
OB
5896 for (size_t i = 1; i < NBINS; ++i)
5897 {
5898 bin = bin_at (ar_ptr, i);
5899 r = bin->fd;
5900 sizes[NFASTBINS - 1 + i].from = ~((size_t) 0);
5901 sizes[NFASTBINS - 1 + i].to = sizes[NFASTBINS - 1 + i].total
5902 = sizes[NFASTBINS - 1 + i].count = 0;
5903
5904 if (r != NULL)
5905 while (r != bin)
5906 {
e9c4fe93 5907 size_t r_size = chunksize_nomask (r);
987c0269 5908 ++sizes[NFASTBINS - 1 + i].count;
e9c4fe93 5909 sizes[NFASTBINS - 1 + i].total += r_size;
987c0269 5910 sizes[NFASTBINS - 1 + i].from
e9c4fe93 5911 = MIN (sizes[NFASTBINS - 1 + i].from, r_size);
987c0269 5912 sizes[NFASTBINS - 1 + i].to = MAX (sizes[NFASTBINS - 1 + i].to,
e9c4fe93 5913 r_size);
987c0269
OB
5914
5915 r = r->fd;
5916 }
5917
5918 if (sizes[NFASTBINS - 1 + i].count == 0)
5919 sizes[NFASTBINS - 1 + i].from = 0;
5920 nblocks += sizes[NFASTBINS - 1 + i].count;
5921 avail += sizes[NFASTBINS - 1 + i].total;
5922 }
bb066545 5923
7a9368a1
FW
5924 size_t heap_size = 0;
5925 size_t heap_mprotect_size = 0;
34eb4157 5926 size_t heap_count = 0;
7a9368a1
FW
5927 if (ar_ptr != &main_arena)
5928 {
34eb4157 5929 /* Iterate over the arena heaps from back to front. */
7a9368a1 5930 heap_info *heap = heap_for_ptr (top (ar_ptr));
34eb4157
FW
5931 do
5932 {
5933 heap_size += heap->size;
5934 heap_mprotect_size += heap->mprotect_size;
5935 heap = heap->prev;
5936 ++heap_count;
5937 }
5938 while (heap != NULL);
7a9368a1
FW
5939 }
5940
4bf5f222 5941 __libc_lock_unlock (ar_ptr->mutex);
da2d2fb6 5942
987c0269
OB
5943 total_nfastblocks += nfastblocks;
5944 total_fastavail += fastavail;
0588a9cb 5945
987c0269
OB
5946 total_nblocks += nblocks;
5947 total_avail += avail;
0588a9cb 5948
987c0269
OB
5949 for (size_t i = 0; i < nsizes; ++i)
5950 if (sizes[i].count != 0 && i != NFASTBINS)
b0f6679b 5951 fprintf (fp, "\
987c0269
OB
5952 <size from=\"%zu\" to=\"%zu\" total=\"%zu\" count=\"%zu\"/>\n",
5953 sizes[i].from, sizes[i].to, sizes[i].total, sizes[i].count);
fdfd175d 5954
987c0269
OB
5955 if (sizes[NFASTBINS].count != 0)
5956 fprintf (fp, "\
5957 <unsorted from=\"%zu\" to=\"%zu\" total=\"%zu\" count=\"%zu\"/>\n",
5958 sizes[NFASTBINS].from, sizes[NFASTBINS].to,
5959 sizes[NFASTBINS].total, sizes[NFASTBINS].count);
fdfd175d 5960
987c0269
OB
5961 total_system += ar_ptr->system_mem;
5962 total_max_system += ar_ptr->max_system_mem;
bb066545 5963
987c0269
OB
5964 fprintf (fp,
5965 "</sizes>\n<total type=\"fast\" count=\"%zu\" size=\"%zu\"/>\n"
5966 "<total type=\"rest\" count=\"%zu\" size=\"%zu\"/>\n"
5967 "<system type=\"current\" size=\"%zu\"/>\n"
5968 "<system type=\"max\" size=\"%zu\"/>\n",
5969 nfastblocks, fastavail, nblocks, avail,
5970 ar_ptr->system_mem, ar_ptr->max_system_mem);
346bc35c 5971
987c0269
OB
5972 if (ar_ptr != &main_arena)
5973 {
987c0269
OB
5974 fprintf (fp,
5975 "<aspace type=\"total\" size=\"%zu\"/>\n"
34eb4157
FW
5976 "<aspace type=\"mprotect\" size=\"%zu\"/>\n"
5977 "<aspace type=\"subheaps\" size=\"%zu\"/>\n",
5978 heap_size, heap_mprotect_size, heap_count);
7a9368a1
FW
5979 total_aspace += heap_size;
5980 total_aspace_mprotect += heap_mprotect_size;
987c0269
OB
5981 }
5982 else
5983 {
5984 fprintf (fp,
5985 "<aspace type=\"total\" size=\"%zu\"/>\n"
5986 "<aspace type=\"mprotect\" size=\"%zu\"/>\n",
5987 ar_ptr->system_mem, ar_ptr->system_mem);
5988 total_aspace += ar_ptr->system_mem;
5989 total_aspace_mprotect += ar_ptr->system_mem;
5990 }
bb066545 5991
987c0269 5992 fputs ("</heap>\n", fp);
bb066545
UD
5993 ar_ptr = ar_ptr->next;
5994 }
5995 while (ar_ptr != &main_arena);
5996
5997 fprintf (fp,
62a58816
SP
5998 "<total type=\"fast\" count=\"%zu\" size=\"%zu\"/>\n"
5999 "<total type=\"rest\" count=\"%zu\" size=\"%zu\"/>\n"
9fa76613 6000 "<total type=\"mmap\" count=\"%d\" size=\"%zu\"/>\n"
62a58816
SP
6001 "<system type=\"current\" size=\"%zu\"/>\n"
6002 "<system type=\"max\" size=\"%zu\"/>\n"
6003 "<aspace type=\"total\" size=\"%zu\"/>\n"
6004 "<aspace type=\"mprotect\" size=\"%zu\"/>\n"
6005 "</malloc>\n",
6006 total_nfastblocks, total_fastavail, total_nblocks, total_avail,
4d653a59 6007 mp_.n_mmaps, mp_.mmapped_mem,
62a58816
SP
6008 total_system, total_max_system,
6009 total_aspace, total_aspace_mprotect);
bb066545
UD
6010
6011 return 0;
6012}
b5bd5bfe 6013#if IS_IN (libc)
c52ff39e 6014weak_alias (__malloc_info, malloc_info)
bb066545 6015
eba19d2b 6016strong_alias (__libc_calloc, __calloc) weak_alias (__libc_calloc, calloc)
eba19d2b
UD
6017strong_alias (__libc_free, __free) strong_alias (__libc_free, free)
6018strong_alias (__libc_malloc, __malloc) strong_alias (__libc_malloc, malloc)
6019strong_alias (__libc_memalign, __memalign)
6020weak_alias (__libc_memalign, memalign)
6021strong_alias (__libc_realloc, __realloc) strong_alias (__libc_realloc, realloc)
6022strong_alias (__libc_valloc, __valloc) weak_alias (__libc_valloc, valloc)
6023strong_alias (__libc_pvalloc, __pvalloc) weak_alias (__libc_pvalloc, pvalloc)
6024strong_alias (__libc_mallinfo, __mallinfo)
6025weak_alias (__libc_mallinfo, mallinfo)
e3960d1c
ML
6026strong_alias (__libc_mallinfo2, __mallinfo2)
6027weak_alias (__libc_mallinfo2, mallinfo2)
eba19d2b 6028strong_alias (__libc_mallopt, __mallopt) weak_alias (__libc_mallopt, mallopt)
7e3be507
UD
6029
6030weak_alias (__malloc_stats, malloc_stats)
6031weak_alias (__malloc_usable_size, malloc_usable_size)
6032weak_alias (__malloc_trim, malloc_trim)
b5bd5bfe 6033#endif
7e3be507 6034
025b33ae
FW
6035#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_26)
6036compat_symbol (libc, __libc_free, cfree, GLIBC_2_0);
6037#endif
f65fd747 6038
fa8d436c 6039/* ------------------------------------------------------------
6c8dbf00 6040 History:
f65fd747 6041
6c8dbf00 6042 [see ftp://g.oswego.edu/pub/misc/malloc.c for the history of dlmalloc]
f65fd747 6043
6c8dbf00 6044 */
fa8d436c
UD
6045/*
6046 * Local variables:
6047 * c-basic-offset: 2
6048 * End:
6049 */