The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1 | /* |
Ian Rogers | 2c344d3 | 2012-08-28 15:53:10 -0700 | [diff] [blame] | 2 | * Copyright (C) 2012 The Android Open Source Project |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 3 | * |
Ian Rogers | 2c344d3 | 2012-08-28 15:53:10 -0700 | [diff] [blame] | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 7 | * |
Ian Rogers | 2c344d3 | 2012-08-28 15:53:10 -0700 | [diff] [blame] | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 15 | */ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 16 | |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 17 | #pragma once |
| 18 | |
| 19 | /** |
| 20 | * @file malloc.h |
| 21 | * @brief Heap memory allocation. |
| 22 | * |
| 23 | * [Debugging Native Memory Use](https://source.android.com/devices/tech/debug/native-memory) |
| 24 | * is the canonical source for documentation on Android's heap debugging |
| 25 | * features. |
| 26 | */ |
Ian Rogers | 2c344d3 | 2012-08-28 15:53:10 -0700 | [diff] [blame] | 27 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 28 | #include <sys/cdefs.h> |
| 29 | #include <stddef.h> |
Dan Albert | 4caa1f0 | 2014-08-20 09:16:57 -0700 | [diff] [blame] | 30 | #include <stdio.h> |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 31 | |
| 32 | __BEGIN_DECLS |
| 33 | |
Elliott Hughes | 36a88e8 | 2016-07-30 09:58:15 -0700 | [diff] [blame] | 34 | #define __BIONIC_ALLOC_SIZE(...) __attribute__((__alloc_size__(__VA_ARGS__))) |
Elliott Hughes | 36a88e8 | 2016-07-30 09:58:15 -0700 | [diff] [blame] | 35 | |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 36 | /** |
| 37 | * [malloc(3)](http://man7.org/linux/man-pages/man3/malloc.3.html) allocates |
| 38 | * memory on the heap. |
| 39 | * |
| 40 | * Returns a pointer to the allocated memory on success and returns a null |
| 41 | * pointer and sets `errno` on failure. |
| 42 | */ |
zijunzhao | 1a49058 | 2022-12-14 02:15:40 +0000 | [diff] [blame] | 43 | void* _Nullable malloc(size_t __byte_count) __mallocfunc __BIONIC_ALLOC_SIZE(1) __wur; |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 44 | |
| 45 | /** |
| 46 | * [calloc(3)](http://man7.org/linux/man-pages/man3/calloc.3.html) allocates |
| 47 | * and clears memory on the heap. |
| 48 | * |
| 49 | * Returns a pointer to the allocated memory on success and returns a null |
| 50 | * pointer and sets `errno` on failure. |
| 51 | */ |
zijunzhao | 1a49058 | 2022-12-14 02:15:40 +0000 | [diff] [blame] | 52 | void* _Nullable calloc(size_t __item_count, size_t __item_size) __mallocfunc __BIONIC_ALLOC_SIZE(1,2) __wur; |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 53 | |
| 54 | /** |
| 55 | * [realloc(3)](http://man7.org/linux/man-pages/man3/realloc.3.html) resizes |
| 56 | * allocated memory on the heap. |
| 57 | * |
| 58 | * Returns a pointer (which may be different from `__ptr`) to the resized |
| 59 | * memory on success and returns a null pointer and sets `errno` on failure. |
| 60 | */ |
zijunzhao | 1a49058 | 2022-12-14 02:15:40 +0000 | [diff] [blame] | 61 | void* _Nullable realloc(void* _Nullable __ptr, size_t __byte_count) __BIONIC_ALLOC_SIZE(2) __wur; |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 62 | |
| 63 | /** |
Elliott Hughes | b177085 | 2018-09-18 12:52:42 -0700 | [diff] [blame] | 64 | * [reallocarray(3)](http://man7.org/linux/man-pages/man3/realloc.3.html) resizes |
| 65 | * allocated memory on the heap. |
| 66 | * |
| 67 | * Equivalent to `realloc(__ptr, __item_count * __item_size)` but fails if the |
| 68 | * multiplication overflows. |
| 69 | * |
| 70 | * Returns a pointer (which may be different from `__ptr`) to the resized |
| 71 | * memory on success and returns a null pointer and sets `errno` on failure. |
| 72 | */ |
zijunzhao | 1a49058 | 2022-12-14 02:15:40 +0000 | [diff] [blame] | 73 | void* _Nullable reallocarray(void* _Nullable __ptr, size_t __item_count, size_t __item_size) __BIONIC_ALLOC_SIZE(2, 3) __wur __INTRODUCED_IN(29); |
Elliott Hughes | b177085 | 2018-09-18 12:52:42 -0700 | [diff] [blame] | 74 | |
| 75 | /** |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 76 | * [free(3)](http://man7.org/linux/man-pages/man3/free.3.html) deallocates |
| 77 | * memory on the heap. |
| 78 | */ |
zijunzhao | 1a49058 | 2022-12-14 02:15:40 +0000 | [diff] [blame] | 79 | void free(void* _Nullable __ptr); |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 80 | |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 81 | /** |
| 82 | * [memalign(3)](http://man7.org/linux/man-pages/man3/memalign.3.html) allocates |
| 83 | * memory on the heap with the required alignment. |
| 84 | * |
| 85 | * Returns a pointer to the allocated memory on success and returns a null |
| 86 | * pointer and sets `errno` on failure. |
| 87 | * |
| 88 | * See also posix_memalign(). |
| 89 | */ |
zijunzhao | 1a49058 | 2022-12-14 02:15:40 +0000 | [diff] [blame] | 90 | void* _Nullable memalign(size_t __alignment, size_t __byte_count) __mallocfunc __BIONIC_ALLOC_SIZE(2) __wur; |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 91 | |
| 92 | /** |
| 93 | * [malloc_usable_size(3)](http://man7.org/linux/man-pages/man3/malloc_usable_size.3.html) |
| 94 | * returns the actual size of the given heap block. |
| 95 | * |
| 96 | * Available since API level 17. |
| 97 | */ |
zijunzhao | 1a49058 | 2022-12-14 02:15:40 +0000 | [diff] [blame] | 98 | size_t malloc_usable_size(const void* _Nullable __ptr) __INTRODUCED_IN(17); |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 99 | |
Christopher Ferris | 8248e62 | 2021-12-03 13:55:57 -0800 | [diff] [blame] | 100 | #define __MALLINFO_BODY \ |
| 101 | /** Total number of non-mmapped bytes currently allocated from OS. */ \ |
| 102 | size_t arena; \ |
| 103 | /** Number of free chunks. */ \ |
| 104 | size_t ordblks; \ |
| 105 | /** (Unused.) */ \ |
| 106 | size_t smblks; \ |
| 107 | /** (Unused.) */ \ |
| 108 | size_t hblks; \ |
| 109 | /** Total number of bytes in mmapped regions. */ \ |
| 110 | size_t hblkhd; \ |
| 111 | /** Maximum total allocated space; greater than total if trimming has occurred. */ \ |
| 112 | size_t usmblks; \ |
| 113 | /** (Unused.) */ \ |
| 114 | size_t fsmblks; \ |
| 115 | /** Total allocated space (normal or mmapped.) */ \ |
| 116 | size_t uordblks; \ |
| 117 | /** Total free space. */ \ |
| 118 | size_t fordblks; \ |
| 119 | /** Upper bound on number of bytes releasable by a trim operation. */ \ |
| 120 | size_t keepcost; |
| 121 | |
Ian Rogers | 2c344d3 | 2012-08-28 15:53:10 -0700 | [diff] [blame] | 122 | #ifndef STRUCT_MALLINFO_DECLARED |
| 123 | #define STRUCT_MALLINFO_DECLARED 1 |
Christopher Ferris | 8248e62 | 2021-12-03 13:55:57 -0800 | [diff] [blame] | 124 | struct mallinfo { __MALLINFO_BODY }; |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 125 | #endif |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 126 | |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 127 | /** |
| 128 | * [mallinfo(3)](http://man7.org/linux/man-pages/man3/mallinfo.3.html) returns |
Elliott Hughes | 4fa9b8c | 2019-04-30 12:39:46 -0700 | [diff] [blame] | 129 | * information about the current state of the heap. Note that mallinfo() is |
| 130 | * inherently unreliable and consider using malloc_info() instead. |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 131 | */ |
Elliott Hughes | 3b2096a | 2016-07-22 18:57:12 -0700 | [diff] [blame] | 132 | struct mallinfo mallinfo(void); |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 133 | |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 134 | /** |
Christopher Ferris | 8248e62 | 2021-12-03 13:55:57 -0800 | [diff] [blame] | 135 | * On Android the struct mallinfo and struct mallinfo2 are the same. |
| 136 | */ |
| 137 | struct mallinfo2 { __MALLINFO_BODY }; |
| 138 | |
| 139 | /** |
| 140 | * [mallinfo2(3)](http://man7.org/linux/man-pages/man3/mallinfo2.3.html) returns |
| 141 | * information about the current state of the heap. Note that mallinfo2() is |
| 142 | * inherently unreliable and consider using malloc_info() instead. |
| 143 | */ |
| 144 | struct mallinfo2 mallinfo2(void) __RENAME(mallinfo); |
| 145 | |
| 146 | /** |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 147 | * [malloc_info(3)](http://man7.org/linux/man-pages/man3/malloc_info.3.html) |
| 148 | * writes information about the current state of the heap to the given stream. |
Dan Albert | 4caa1f0 | 2014-08-20 09:16:57 -0700 | [diff] [blame] | 149 | * |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 150 | * The XML structure for malloc_info() is as follows: |
| 151 | * ``` |
Dan Albert | 4caa1f0 | 2014-08-20 09:16:57 -0700 | [diff] [blame] | 152 | * <malloc version="jemalloc-1"> |
| 153 | * <heap nr="INT"> |
| 154 | * <allocated-large>INT</allocated-large> |
| 155 | * <allocated-huge>INT</allocated-huge> |
| 156 | * <allocated-bins>INT</allocated-bins> |
| 157 | * <bins-total>INT</bins-total> |
| 158 | * <bin nr="INT"> |
| 159 | * <allocated>INT</allocated> |
| 160 | * <nmalloc>INT</nmalloc> |
| 161 | * <ndalloc>INT</ndalloc> |
| 162 | * </bin> |
| 163 | * <!-- more bins --> |
| 164 | * </heap> |
| 165 | * <!-- more heaps --> |
| 166 | * </malloc> |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 167 | * ``` |
| 168 | * |
| 169 | * Available since API level 23. |
Dan Albert | 4caa1f0 | 2014-08-20 09:16:57 -0700 | [diff] [blame] | 170 | */ |
zijunzhao | 1a49058 | 2022-12-14 02:15:40 +0000 | [diff] [blame] | 171 | int malloc_info(int __must_be_zero, FILE* _Nonnull __fp) __INTRODUCED_IN(23); |
Dan Albert | 4caa1f0 | 2014-08-20 09:16:57 -0700 | [diff] [blame] | 172 | |
Christopher Ferris | 8daea55 | 2018-10-23 11:17:24 -0700 | [diff] [blame] | 173 | /** |
| 174 | * mallopt() option to set the decay time. Valid values are 0 and 1. |
| 175 | * |
| 176 | * Available since API level 27. |
| 177 | */ |
Chih-Hung Hsieh | fa658eb | 2020-03-04 11:14:42 -0800 | [diff] [blame] | 178 | #define M_DECAY_TIME (-100) |
Christopher Ferris | 8daea55 | 2018-10-23 11:17:24 -0700 | [diff] [blame] | 179 | /** |
| 180 | * mallopt() option to immediately purge any memory not in use. This |
| 181 | * will release the memory back to the kernel. The value is ignored. |
| 182 | * |
| 183 | * Available since API level 28. |
| 184 | */ |
Chih-Hung Hsieh | fa658eb | 2020-03-04 11:14:42 -0800 | [diff] [blame] | 185 | #define M_PURGE (-101) |
Christopher Ferris | d86eb86 | 2023-02-28 12:45:54 -0800 | [diff] [blame] | 186 | /** |
| 187 | * mallopt() option to immediately purge all possible memory back to |
| 188 | * the kernel. This call can take longer than a normal purge since it |
| 189 | * examines everything. In some cases, it can take more than twice the |
| 190 | * time of a M_PURGE call. The value is ignored. |
| 191 | * |
| 192 | * Available since API level 34. |
| 193 | */ |
| 194 | #define M_PURGE_ALL (-104) |
Evgenii Stepanov | d8d561c | 2021-06-22 10:18:12 -0700 | [diff] [blame] | 195 | |
| 196 | /** |
| 197 | * mallopt() option to tune the allocator's choice of memory tags to |
| 198 | * make it more likely that a certain class of memory errors will be |
| 199 | * detected. This is only relevant if MTE is enabled in this process |
| 200 | * and ignored otherwise. The value argument should be one of the |
| 201 | * M_MEMTAG_TUNING_* flags. |
| 202 | * NOTE: This is only available in scudo. |
| 203 | * |
| 204 | * Available since API level 31. |
| 205 | */ |
| 206 | #define M_MEMTAG_TUNING (-102) |
| 207 | |
| 208 | /** |
| 209 | * When passed as a value of M_MEMTAG_TUNING mallopt() call, enables |
| 210 | * deterministic detection of linear buffer overflow and underflow |
| 211 | * bugs by assigning distinct tag values to adjacent allocations. This |
| 212 | * mode has a slightly reduced chance to detect use-after-free bugs |
| 213 | * because only half of the possible tag values are available for each |
| 214 | * memory location. |
| 215 | * |
| 216 | * Please keep in mind that MTE can not detect overflow within the |
| 217 | * same tag granule (16-byte aligned chunk), and can miss small |
| 218 | * overflows even in this mode. Such overflow can not be the cause of |
| 219 | * a memory corruption, because the memory within one granule is never |
| 220 | * used for multiple allocations. |
| 221 | */ |
| 222 | #define M_MEMTAG_TUNING_BUFFER_OVERFLOW 0 |
| 223 | |
| 224 | /** |
| 225 | * When passed as a value of M_MEMTAG_TUNING mallopt() call, enables |
| 226 | * independently randomized tags for uniform ~93% probability of |
| 227 | * detecting both spatial (buffer overflow) and temporal (use after |
| 228 | * free) bugs. |
| 229 | */ |
| 230 | #define M_MEMTAG_TUNING_UAF 1 |
| 231 | |
| 232 | /** |
Peter Collingbourne | 978eb16 | 2020-09-21 15:26:02 -0700 | [diff] [blame] | 233 | * mallopt() option for per-thread memory initialization tuning. |
| 234 | * The value argument should be one of: |
Christopher Ferris | e28867c | 2023-04-27 17:03:59 -0700 | [diff] [blame^] | 235 | * 1: Disable automatic heap initialization on this thread only. |
| 236 | * If memory tagging is enabled, disable as much as possible of the |
| 237 | * memory tagging initialization for this thread. |
Peter Collingbourne | 978eb16 | 2020-09-21 15:26:02 -0700 | [diff] [blame] | 238 | * 0: Normal behavior. |
| 239 | * |
| 240 | * Available since API level 31. |
| 241 | */ |
| 242 | #define M_THREAD_DISABLE_MEM_INIT (-103) |
Christopher Ferris | 8844879 | 2020-07-28 14:15:31 -0700 | [diff] [blame] | 243 | /** |
| 244 | * mallopt() option to set the maximum number of items in the secondary |
| 245 | * cache of the scudo allocator. |
| 246 | * |
| 247 | * Available since API level 31. |
| 248 | */ |
| 249 | #define M_CACHE_COUNT_MAX (-200) |
| 250 | /** |
| 251 | * mallopt() option to set the maximum size in bytes of a cacheable item in |
| 252 | * the secondary cache of the scudo allocator. |
| 253 | * |
| 254 | * Available since API level 31. |
| 255 | */ |
| 256 | #define M_CACHE_SIZE_MAX (-201) |
| 257 | /** |
| 258 | * mallopt() option to increase the maximum number of shared thread-specific |
| 259 | * data structures that can be created. This number cannot be decreased, |
| 260 | * only increased and only applies to the scudo allocator. |
| 261 | * |
| 262 | * Available since API level 31. |
| 263 | */ |
| 264 | #define M_TSDS_COUNT_MAX (-202) |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 265 | |
| 266 | /** |
Mitch Phillips | 9cad842 | 2021-01-20 16:03:27 -0800 | [diff] [blame] | 267 | * mallopt() option to decide whether heap memory is zero-initialized on |
| 268 | * allocation across the whole process. May be called at any time, including |
| 269 | * when multiple threads are running. An argument of zero indicates memory |
| 270 | * should not be zero-initialized, any other value indicates to initialize heap |
| 271 | * memory to zero. |
Elliott Hughes | 446b4dd | 2021-01-14 13:34:20 -0800 | [diff] [blame] | 272 | * |
Evgenii Stepanov | d8d561c | 2021-06-22 10:18:12 -0700 | [diff] [blame] | 273 | * Note that this memory mitigation is only implemented in scudo and therefore |
Mitch Phillips | 9cad842 | 2021-01-20 16:03:27 -0800 | [diff] [blame] | 274 | * this will have no effect when using another allocator (such as jemalloc on |
| 275 | * Android Go devices). |
Elliott Hughes | 446b4dd | 2021-01-14 13:34:20 -0800 | [diff] [blame] | 276 | * |
| 277 | * Available since API level 31. |
| 278 | */ |
Mitch Phillips | 9cad842 | 2021-01-20 16:03:27 -0800 | [diff] [blame] | 279 | #define M_BIONIC_ZERO_INIT (-203) |
Elliott Hughes | 446b4dd | 2021-01-14 13:34:20 -0800 | [diff] [blame] | 280 | |
| 281 | /** |
| 282 | * mallopt() option to change the heap tagging state. May be called at any |
| 283 | * time, including when multiple threads are running. |
| 284 | * The value must be one of the M_HEAP_TAGGING_LEVEL_ constants. |
Evgenii Stepanov | d8d561c | 2021-06-22 10:18:12 -0700 | [diff] [blame] | 285 | * NOTE: This is only available in scudo. |
Elliott Hughes | 446b4dd | 2021-01-14 13:34:20 -0800 | [diff] [blame] | 286 | * |
| 287 | * Available since API level 31. |
| 288 | */ |
| 289 | #define M_BIONIC_SET_HEAP_TAGGING_LEVEL (-204) |
| 290 | |
| 291 | /** |
| 292 | * Constants for use with the M_BIONIC_SET_HEAP_TAGGING_LEVEL mallopt() option. |
| 293 | */ |
| 294 | enum HeapTaggingLevel { |
| 295 | /** |
| 296 | * Disable heap tagging and memory tag checks (if supported). |
| 297 | * Heap tagging may not be re-enabled after being disabled. |
| 298 | */ |
| 299 | M_HEAP_TAGGING_LEVEL_NONE = 0, |
| 300 | #define M_HEAP_TAGGING_LEVEL_NONE M_HEAP_TAGGING_LEVEL_NONE |
| 301 | /** |
| 302 | * Address-only tagging. Heap pointers have a non-zero tag in the |
| 303 | * most significant ("top") byte which is checked in free(). Memory |
| 304 | * accesses ignore the tag using arm64's Top Byte Ignore (TBI) feature. |
| 305 | */ |
| 306 | M_HEAP_TAGGING_LEVEL_TBI = 1, |
| 307 | #define M_HEAP_TAGGING_LEVEL_TBI M_HEAP_TAGGING_LEVEL_TBI |
| 308 | /** |
| 309 | * Enable heap tagging and asynchronous memory tag checks (if supported). |
| 310 | * Disable stack trace collection. |
| 311 | */ |
| 312 | M_HEAP_TAGGING_LEVEL_ASYNC = 2, |
| 313 | #define M_HEAP_TAGGING_LEVEL_ASYNC M_HEAP_TAGGING_LEVEL_ASYNC |
| 314 | /** |
| 315 | * Enable heap tagging and synchronous memory tag checks (if supported). |
| 316 | * Enable stack trace collection. |
| 317 | */ |
| 318 | M_HEAP_TAGGING_LEVEL_SYNC = 3, |
| 319 | #define M_HEAP_TAGGING_LEVEL_SYNC M_HEAP_TAGGING_LEVEL_SYNC |
| 320 | }; |
| 321 | |
| 322 | /** |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 323 | * [mallopt(3)](http://man7.org/linux/man-pages/man3/mallopt.3.html) modifies |
| 324 | * heap behavior. Values of `__option` are the `M_` constants from this header. |
| 325 | * |
| 326 | * Returns 1 on success, 0 on error. |
| 327 | * |
| 328 | * Available since API level 26. |
| 329 | */ |
Elliott Hughes | faa7434 | 2017-08-11 17:34:44 -0700 | [diff] [blame] | 330 | int mallopt(int __option, int __value) __INTRODUCED_IN(26); |
Christopher Ferris | a1c0d2f | 2017-05-15 15:50:19 -0700 | [diff] [blame] | 331 | |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 332 | /** |
| 333 | * [__malloc_hook(3)](http://man7.org/linux/man-pages/man3/__malloc_hook.3.html) |
| 334 | * is called to implement malloc(). By default this points to the system's |
| 335 | * implementation. |
| 336 | * |
| 337 | * Available since API level 28. |
| 338 | * |
| 339 | * See also: [extra documentation](https://android.googlesource.com/platform/bionic/+/master/libc/malloc_hooks/README.md) |
Christopher Ferris | db478a6 | 2018-02-07 18:42:14 -0800 | [diff] [blame] | 340 | */ |
zijunzhao | 1a49058 | 2022-12-14 02:15:40 +0000 | [diff] [blame] | 341 | extern void* _Nonnull (*volatile _Nonnull __malloc_hook)(size_t __byte_count, const void* _Nonnull __caller) __INTRODUCED_IN(28); |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 342 | |
| 343 | /** |
| 344 | * [__realloc_hook(3)](http://man7.org/linux/man-pages/man3/__realloc_hook.3.html) |
| 345 | * is called to implement realloc(). By default this points to the system's |
| 346 | * implementation. |
| 347 | * |
| 348 | * Available since API level 28. |
| 349 | * |
| 350 | * See also: [extra documentation](https://android.googlesource.com/platform/bionic/+/master/libc/malloc_hooks/README.md) |
| 351 | */ |
zijunzhao | 1a49058 | 2022-12-14 02:15:40 +0000 | [diff] [blame] | 352 | extern void* _Nonnull (*volatile _Nonnull __realloc_hook)(void* _Nullable __ptr, size_t __byte_count, const void* _Nonnull __caller) __INTRODUCED_IN(28); |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 353 | |
| 354 | /** |
| 355 | * [__free_hook(3)](http://man7.org/linux/man-pages/man3/__free_hook.3.html) |
| 356 | * is called to implement free(). By default this points to the system's |
| 357 | * implementation. |
| 358 | * |
| 359 | * Available since API level 28. |
| 360 | * |
| 361 | * See also: [extra documentation](https://android.googlesource.com/platform/bionic/+/master/libc/malloc_hooks/README.md) |
| 362 | */ |
zijunzhao | 1a49058 | 2022-12-14 02:15:40 +0000 | [diff] [blame] | 363 | extern void (*volatile _Nonnull __free_hook)(void* _Nullable __ptr, const void* _Nonnull __caller) __INTRODUCED_IN(28); |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 364 | |
| 365 | /** |
| 366 | * [__memalign_hook(3)](http://man7.org/linux/man-pages/man3/__memalign_hook.3.html) |
| 367 | * is called to implement memalign(). By default this points to the system's |
| 368 | * implementation. |
| 369 | * |
| 370 | * Available since API level 28. |
| 371 | * |
| 372 | * See also: [extra documentation](https://android.googlesource.com/platform/bionic/+/master/libc/malloc_hooks/README.md) |
| 373 | */ |
zijunzhao | 1a49058 | 2022-12-14 02:15:40 +0000 | [diff] [blame] | 374 | extern void* _Nonnull (*volatile _Nonnull __memalign_hook)(size_t __alignment, size_t __byte_count, const void* _Nonnull __caller) __INTRODUCED_IN(28); |
Christopher Ferris | db478a6 | 2018-02-07 18:42:14 -0800 | [diff] [blame] | 375 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 376 | __END_DECLS |