mempool: Fix memfd leaks on error
[librseq.git] / src / rseq-mempool.c
CommitLineData
ef6695f1
MD
1// SPDX-License-Identifier: MIT
2// SPDX-FileCopyrightText: 2024 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3
34337fec 4#include <rseq/mempool.h>
ef6695f1
MD
5#include <sys/mman.h>
6#include <assert.h>
7#include <string.h>
8#include <pthread.h>
9#include <unistd.h>
10#include <stdlib.h>
11#include <rseq/compiler.h>
12#include <errno.h>
13#include <stdint.h>
14#include <stdbool.h>
367e559c 15#include <stdio.h>
a5694a4d 16#include <fcntl.h>
367e559c
MD
17
18#ifdef HAVE_LIBNUMA
19# include <numa.h>
20# include <numaif.h>
21#endif
ef6695f1 22
34337fec 23#include "rseq-utils.h"
47c725dd 24#include <rseq/rseq.h>
19be9217 25
ef6695f1 26/*
b73b0c25 27 * rseq-mempool.c: rseq CPU-Local Storage (CLS) memory allocator.
ef6695f1 28 *
8ab16a24
MD
29 * The rseq per-CPU memory allocator allows the application the request
30 * memory pools of CPU-Local memory each of containing objects of a
8aa1462d
MD
31 * given size (rounded to next power of 2), reserving a given virtual
32 * address size per CPU, for a given maximum number of CPUs.
8ab16a24
MD
33 *
34 * The per-CPU memory allocator is analogous to TLS (Thread-Local
35 * Storage) memory: TLS is Thread-Local Storage, whereas the per-CPU
36 * memory allocator provides CPU-Local Storage.
ef6695f1
MD
37 */
38
3236da62 39#define POOL_SET_NR_ENTRIES RSEQ_BITS_PER_LONG
ef6695f1 40
72b100a1
MD
41/*
42 * Smallest allocation should hold enough space for a free list pointer.
43 */
ef6695f1
MD
44#if RSEQ_BITS_PER_LONG == 64
45# define POOL_SET_MIN_ENTRY 3 /* Smallest item_len=8 */
46#else
47# define POOL_SET_MIN_ENTRY 2 /* Smallest item_len=4 */
48#endif
49
0fdf7a4c
OD
50#define BIT_PER_ULONG (8 * sizeof(unsigned long))
51
57d8b586
OD
52#define MOVE_PAGES_BATCH_SIZE 4096
53
0ba2a93e 54#define RANGE_HEADER_OFFSET sizeof(struct rseq_mempool_range)
4aa3220c 55
3975084e 56#if RSEQ_BITS_PER_LONG == 64
dbccd436 57# define DEFAULT_PRIVATE_POISON_VALUE 0x5555555555555555ULL
3975084e 58#else
dbccd436 59# define DEFAULT_PRIVATE_POISON_VALUE 0x55555555UL
3975084e
MD
60#endif
61
ef6695f1
MD
62struct free_list_node;
63
64struct free_list_node {
65 struct free_list_node *next;
66};
67
cb475906 68enum mempool_type {
89b7e681
MD
69 MEMPOOL_TYPE_GLOBAL = 0, /* Default */
70 MEMPOOL_TYPE_PERCPU = 1,
cb475906
MD
71};
72
0ba2a93e 73struct rseq_mempool_attr {
135811f2 74 bool init_set;
6e329183 75 int (*init_func)(void *priv, void *addr, size_t len, int cpu);
135811f2
MD
76 void *init_priv;
77
d6acc8aa 78 bool robust_set;
cb475906
MD
79
80 enum mempool_type type;
81 size_t stride;
82 int max_nr_cpus;
e11a02d7
MD
83
84 unsigned long max_nr_ranges;
455e090e
MD
85
86 bool poison_set;
87 uintptr_t poison;
a5694a4d
MD
88
89 enum rseq_mempool_populate_policy populate_policy;
9bd07c29
MD
90};
91
0ba2a93e 92struct rseq_mempool_range;
b73b0c25 93
0ba2a93e 94struct rseq_mempool_range {
9d986353
MD
95 struct rseq_mempool_range *next; /* Linked list of ranges. */
96 struct rseq_mempool *pool; /* Backward reference to container pool. */
a5694a4d
MD
97
98 /*
99 * Memory layout of a mempool range:
100 * - Header page (contains struct rseq_mempool_range at the very end),
c0de0012
MD
101 * - Base of the per-cpu data, starting with CPU 0.
102 * Aliases with free-list for non-robust populate all pool.
a5694a4d
MD
103 * - CPU 1,
104 * ...
105 * - CPU max_nr_cpus - 1
4e8ae59d 106 * - init values (unpopulated for RSEQ_MEMPOOL_POPULATE_PRIVATE_ALL).
c0de0012
MD
107 * Aliases with free-list for non-robust populate none pool.
108 * - free list (for robust pool).
109 *
110 * The free list aliases the CPU 0 memory area for non-robust
111 * populate all pools. It aliases with init values for
112 * non-robust populate none pools. It is located immediately
113 * after the init values for robust pools.
a5694a4d 114 */
4aa3220c 115 void *header;
ef6695f1 116 void *base;
a5694a4d
MD
117 /*
118 * The init values contains malloc_init/zmalloc values.
4e8ae59d 119 * Pointer is NULL for RSEQ_MEMPOOL_POPULATE_PRIVATE_ALL.
a5694a4d
MD
120 */
121 void *init;
b73b0c25 122 size_t next_unused;
fa6a0fb3
MD
123
124 /* Pool range mmap/munmap */
125 void *mmap_addr;
126 size_t mmap_len;
127
b73b0c25
MD
128 /* Track alloc/free. */
129 unsigned long *alloc_bitmap;
130};
131
0ba2a93e 132struct rseq_mempool {
9d986353
MD
133 /* Head of ranges linked-list. */
134 struct rseq_mempool_range *range_list;
135 unsigned long nr_ranges;
b73b0c25 136
ef6695f1 137 size_t item_len;
ef6695f1 138 int item_order;
ef6695f1
MD
139
140 /*
8ab16a24 141 * The free list chains freed items on the CPU 0 address range.
ef6695f1 142 * We should rethink this decision if false sharing between
8ab16a24 143 * malloc/free from other CPUs and data accesses from CPU 0
ef6695f1
MD
144 * becomes an issue. This is a NULL-terminated singly-linked
145 * list.
146 */
147 struct free_list_node *free_list_head;
b73b0c25 148
ef6695f1
MD
149 /* This lock protects allocation/free within the pool. */
150 pthread_mutex_t lock;
9bd07c29 151
0ba2a93e 152 struct rseq_mempool_attr attr;
ca452fee 153 char *name;
ef6695f1
MD
154};
155
ef6695f1
MD
156/*
157 * Pool set entries are indexed by item_len rounded to the next power of
158 * 2. A pool set can contain NULL pool entries, in which case the next
159 * large enough entry will be used for allocation.
160 */
0ba2a93e 161struct rseq_mempool_set {
ef6695f1
MD
162 /* This lock protects add vs malloc/zmalloc within the pool set. */
163 pthread_mutex_t lock;
0ba2a93e 164 struct rseq_mempool *entries[POOL_SET_NR_ENTRIES];
ef6695f1
MD
165};
166
86617384
MD
167static
168const char *get_pool_name(const struct rseq_mempool *pool)
169{
170 return pool->name ? : "<anonymous>";
171}
172
367e559c 173static
6fbf1fb6 174void *__rseq_pool_range_percpu_ptr(const struct rseq_mempool_range *range, int cpu,
f2981623 175 uintptr_t item_offset, size_t stride)
367e559c 176{
15b63c9f 177 return range->base + (stride * cpu) + item_offset;
367e559c
MD
178}
179
a5694a4d
MD
180static
181void *__rseq_pool_range_init_ptr(const struct rseq_mempool_range *range,
182 uintptr_t item_offset)
183{
184 if (!range->init)
185 return NULL;
186 return range->init + item_offset;
187}
188
189static
190void __rseq_percpu *__rseq_free_list_to_percpu_ptr(const struct rseq_mempool *pool,
191 struct free_list_node *node)
192{
193 void __rseq_percpu *p = (void __rseq_percpu *) node;
194
c0de0012
MD
195 if (pool->attr.robust_set) {
196 /* Skip cpus. */
a5694a4d 197 p -= pool->attr.max_nr_cpus * pool->attr.stride;
c0de0012 198 /* Skip init values */
4e8ae59d 199 if (pool->attr.populate_policy != RSEQ_MEMPOOL_POPULATE_PRIVATE_ALL)
c0de0012
MD
200 p -= pool->attr.stride;
201
202 } else {
203 /* Populate none free list is in init values */
4e8ae59d 204 if (pool->attr.populate_policy != RSEQ_MEMPOOL_POPULATE_PRIVATE_ALL)
c0de0012
MD
205 p -= pool->attr.max_nr_cpus * pool->attr.stride;
206 }
a5694a4d
MD
207 return p;
208}
209
210static
211struct free_list_node *__rseq_percpu_to_free_list_ptr(const struct rseq_mempool *pool,
212 void __rseq_percpu *p)
213{
c0de0012
MD
214 if (pool->attr.robust_set) {
215 /* Skip cpus. */
a5694a4d 216 p += pool->attr.max_nr_cpus * pool->attr.stride;
c0de0012 217 /* Skip init values */
4e8ae59d 218 if (pool->attr.populate_policy != RSEQ_MEMPOOL_POPULATE_PRIVATE_ALL)
c0de0012
MD
219 p += pool->attr.stride;
220
221 } else {
222 /* Populate none free list is in init values */
4e8ae59d 223 if (pool->attr.populate_policy != RSEQ_MEMPOOL_POPULATE_PRIVATE_ALL)
c0de0012
MD
224 p += pool->attr.max_nr_cpus * pool->attr.stride;
225 }
a5694a4d
MD
226 return (struct free_list_node *) p;
227}
228
229static
14af0aa2 230intptr_t rseq_cmp_item(void *p, size_t item_len, intptr_t cmp_value, intptr_t *unexpected_value)
a5694a4d 231{
14af0aa2
MD
232 size_t offset;
233 intptr_t res = 0;
a5694a4d 234
14af0aa2
MD
235 for (offset = 0; offset < item_len; offset += sizeof(uintptr_t)) {
236 intptr_t v = *((intptr_t *) (p + offset));
237
238 if ((res = v - cmp_value) != 0) {
239 if (unexpected_value)
240 *unexpected_value = v;
a5694a4d 241 break;
14af0aa2
MD
242 }
243 }
a5694a4d
MD
244 return res;
245}
246
367e559c 247static
15b63c9f
MD
248void rseq_percpu_zero_item(struct rseq_mempool *pool,
249 struct rseq_mempool_range *range, uintptr_t item_offset)
367e559c 250{
a5694a4d 251 char *init_p = NULL;
367e559c
MD
252 int i;
253
a5694a4d
MD
254 init_p = __rseq_pool_range_init_ptr(range, item_offset);
255 if (init_p)
644298bb 256 bzero(init_p, pool->item_len);
cb475906 257 for (i = 0; i < pool->attr.max_nr_cpus; i++) {
15b63c9f 258 char *p = __rseq_pool_range_percpu_ptr(range, i,
cb475906 259 item_offset, pool->attr.stride);
a5694a4d 260
1b658191
MD
261 /*
262 * If item is already zeroed, either because the
263 * init range update has propagated or because the
264 * content is already zeroed (e.g. zero page), don't
265 * write to the page. This eliminates useless COW over
266 * the zero page just for overwriting it with zeroes.
267 *
268 * This means zmalloc() in populate all policy pool do
269 * not trigger COW for CPUs which are not actively
270 * writing to the pool. This is however not the case for
271 * malloc_init() in populate-all pools if it populates
272 * non-zero content.
273 */
14af0aa2 274 if (!rseq_cmp_item(p, pool->item_len, 0, NULL))
a5694a4d 275 continue;
644298bb 276 bzero(p, pool->item_len);
367e559c
MD
277 }
278}
279
6ff43d9a
MD
280static
281void rseq_percpu_init_item(struct rseq_mempool *pool,
282 struct rseq_mempool_range *range, uintptr_t item_offset,
283 void *init_ptr, size_t init_len)
284{
a5694a4d 285 char *init_p = NULL;
6ff43d9a
MD
286 int i;
287
a5694a4d
MD
288 init_p = __rseq_pool_range_init_ptr(range, item_offset);
289 if (init_p)
290 memcpy(init_p, init_ptr, init_len);
6ff43d9a
MD
291 for (i = 0; i < pool->attr.max_nr_cpus; i++) {
292 char *p = __rseq_pool_range_percpu_ptr(range, i,
293 item_offset, pool->attr.stride);
a5694a4d 294
1b658191
MD
295 /*
296 * If the update propagated through a shared mapping,
297 * or the item already has the correct content, skip
298 * writing it into the cpu item to eliminate useless
299 * COW of the page.
300 */
301 if (!memcmp(init_ptr, p, init_len))
a5694a4d 302 continue;
6ff43d9a
MD
303 memcpy(p, init_ptr, init_len);
304 }
305}
306
a5694a4d
MD
307static
308void rseq_poison_item(void *p, size_t item_len, uintptr_t poison)
309{
310 size_t offset;
311
312 for (offset = 0; offset < item_len; offset += sizeof(uintptr_t))
313 *((uintptr_t *) (p + offset)) = poison;
314}
315
455e090e
MD
316static
317void rseq_percpu_poison_item(struct rseq_mempool *pool,
318 struct rseq_mempool_range *range, uintptr_t item_offset)
319{
320 uintptr_t poison = pool->attr.poison;
a5694a4d 321 char *init_p = NULL;
455e090e
MD
322 int i;
323
a5694a4d
MD
324 init_p = __rseq_pool_range_init_ptr(range, item_offset);
325 if (init_p)
326 rseq_poison_item(init_p, pool->item_len, poison);
455e090e
MD
327 for (i = 0; i < pool->attr.max_nr_cpus; i++) {
328 char *p = __rseq_pool_range_percpu_ptr(range, i,
329 item_offset, pool->attr.stride);
455e090e 330
1b658191
MD
331 /*
332 * If the update propagated through a shared mapping,
333 * or the item already has the correct content, skip
334 * writing it into the cpu item to eliminate useless
335 * COW of the page.
336 *
337 * It is recommended to use zero as poison value for
338 * populate-all pools to eliminate COW due to writing
339 * poison to unused CPU memory.
340 */
14af0aa2 341 if (rseq_cmp_item(p, pool->item_len, poison, NULL) == 0)
a5694a4d
MD
342 continue;
343 rseq_poison_item(p, pool->item_len, poison);
344 }
345}
346
347/* Always inline for __builtin_return_address(0). */
348static inline __attribute__((always_inline))
349void rseq_check_poison_item(const struct rseq_mempool *pool, uintptr_t item_offset,
c0de0012 350 void *p, size_t item_len, uintptr_t poison)
a5694a4d 351{
1b658191 352 intptr_t unexpected_value;
a5694a4d 353
14af0aa2 354 if (rseq_cmp_item(p, item_len, poison, &unexpected_value) == 0)
1b658191 355 return;
a5694a4d 356
1b658191
MD
357 fprintf(stderr, "%s: Poison corruption detected (0x%lx) for pool: \"%s\" (%p), item offset: %zu, caller: %p.\n",
358 __func__, (unsigned long) unexpected_value, get_pool_name(pool), pool, item_offset, (void *) __builtin_return_address(0));
359 abort();
86617384
MD
360}
361
362/* Always inline for __builtin_return_address(0). */
363static inline __attribute__((always_inline))
6fbf1fb6
MD
364void rseq_percpu_check_poison_item(const struct rseq_mempool *pool,
365 const struct rseq_mempool_range *range, uintptr_t item_offset)
86617384
MD
366{
367 uintptr_t poison = pool->attr.poison;
a5694a4d 368 char *init_p;
86617384
MD
369 int i;
370
3975084e 371 if (!pool->attr.robust_set)
86617384 372 return;
a5694a4d
MD
373 init_p = __rseq_pool_range_init_ptr(range, item_offset);
374 if (init_p)
c0de0012 375 rseq_check_poison_item(pool, item_offset, init_p, pool->item_len, poison);
86617384
MD
376 for (i = 0; i < pool->attr.max_nr_cpus; i++) {
377 char *p = __rseq_pool_range_percpu_ptr(range, i,
378 item_offset, pool->attr.stride);
c0de0012 379 rseq_check_poison_item(pool, item_offset, p, pool->item_len, poison);
455e090e
MD
380 }
381}
382
15b63c9f 383#ifdef HAVE_LIBNUMA
c6fd3981 384int rseq_mempool_range_init_numa(void *addr, size_t len, int cpu, int numa_flags)
367e559c 385{
f2981623 386 unsigned long nr_pages, page_len;
c6fd3981
MD
387 int status[MOVE_PAGES_BATCH_SIZE];
388 int nodes[MOVE_PAGES_BATCH_SIZE];
389 void *pages[MOVE_PAGES_BATCH_SIZE];
f2981623 390 long ret;
367e559c 391
c6fd3981
MD
392 if (!numa_flags) {
393 errno = EINVAL;
394 return -1;
395 }
367e559c 396 page_len = rseq_get_page_len();
c6fd3981 397 nr_pages = len >> rseq_get_count_order_ulong(page_len);
57d8b586 398
c6fd3981
MD
399 nodes[0] = numa_node_of_cpu(cpu);
400 if (nodes[0] < 0)
401 return -1;
57d8b586 402
c6fd3981
MD
403 for (size_t k = 1; k < RSEQ_ARRAY_SIZE(nodes); ++k) {
404 nodes[k] = nodes[0];
405 }
57d8b586 406
c6fd3981 407 for (unsigned long page = 0; page < nr_pages;) {
57d8b586 408
c6fd3981
MD
409 size_t max_k = RSEQ_ARRAY_SIZE(pages);
410 size_t left = nr_pages - page;
57d8b586 411
c6fd3981
MD
412 if (left < max_k) {
413 max_k = left;
414 }
57d8b586 415
c6fd3981
MD
416 for (size_t k = 0; k < max_k; ++k, ++page) {
417 pages[k] = addr + (page * page_len);
418 status[k] = -EPERM;
367e559c 419 }
b73b0c25 420
c6fd3981
MD
421 ret = move_pages(0, max_k, pages, nodes, status, numa_flags);
422
423 if (ret < 0)
b73b0c25 424 return ret;
c6fd3981
MD
425
426 if (ret > 0) {
427 fprintf(stderr, "%lu pages were not migrated\n", ret);
428 for (size_t k = 0; k < max_k; ++k) {
429 if (status[k] < 0)
430 fprintf(stderr,
431 "Error while moving page %p to numa node %d: %u\n",
432 pages[k], nodes[k], -status[k]);
433 }
434 }
b73b0c25
MD
435 }
436 return 0;
437}
367e559c 438#else
c6fd3981
MD
439int rseq_mempool_range_init_numa(void *addr __attribute__((unused)),
440 size_t len __attribute__((unused)),
441 int cpu __attribute__((unused)),
367e559c
MD
442 int numa_flags __attribute__((unused)))
443{
c6fd3981
MD
444 errno = ENOSYS;
445 return -1;
367e559c
MD
446}
447#endif
448
0fdf7a4c 449static
0ba2a93e 450int create_alloc_bitmap(struct rseq_mempool *pool, struct rseq_mempool_range *range)
0fdf7a4c
OD
451{
452 size_t count;
453
cb475906 454 count = ((pool->attr.stride >> pool->item_order) + BIT_PER_ULONG - 1) / BIT_PER_ULONG;
0fdf7a4c
OD
455
456 /*
9649c7ee
MD
457 * Not being able to create the validation bitmap is an error
458 * that needs to be reported.
0fdf7a4c 459 */
b73b0c25
MD
460 range->alloc_bitmap = calloc(count, sizeof(unsigned long));
461 if (!range->alloc_bitmap)
9649c7ee
MD
462 return -1;
463 return 0;
0fdf7a4c
OD
464}
465
b73b0c25 466static
a5694a4d 467bool percpu_addr_in_pool(const struct rseq_mempool *pool, void __rseq_percpu *_addr)
b73b0c25 468{
0ba2a93e 469 struct rseq_mempool_range *range;
a5694a4d 470 void *addr = (void *) _addr;
b73b0c25 471
9d986353 472 for (range = pool->range_list; range; range = range->next) {
b73b0c25
MD
473 if (addr >= range->base && addr < range->base + range->next_unused)
474 return true;
475 }
476 return false;
477}
478
a9ec6111
OD
479/* Always inline for __builtin_return_address(0). */
480static inline __attribute__((always_inline))
0ba2a93e 481void check_free_list(const struct rseq_mempool *pool)
a9ec6111 482{
b73b0c25
MD
483 size_t total_item = 0, total_never_allocated = 0, total_freed = 0,
484 max_list_traversal = 0, traversal_iteration = 0;
0ba2a93e 485 struct rseq_mempool_range *range;
b73b0c25
MD
486
487 if (!pool->attr.robust_set)
488 return;
489
9d986353 490 for (range = pool->range_list; range; range = range->next) {
cb475906
MD
491 total_item += pool->attr.stride >> pool->item_order;
492 total_never_allocated += (pool->attr.stride - range->next_unused) >> pool->item_order;
b73b0c25
MD
493 }
494 max_list_traversal = total_item - total_never_allocated;
a9ec6111
OD
495
496 for (struct free_list_node *node = pool->free_list_head, *prev = NULL;
497 node;
498 prev = node,
499 node = node->next) {
500
a9ec6111 501 if (traversal_iteration >= max_list_traversal) {
ca452fee
MD
502 fprintf(stderr, "%s: Corrupted free-list; Possibly infinite loop in pool \"%s\" (%p), caller %p.\n",
503 __func__, get_pool_name(pool), pool, __builtin_return_address(0));
a9ec6111
OD
504 abort();
505 }
506
507 /* Node is out of range. */
a5694a4d 508 if (!percpu_addr_in_pool(pool, __rseq_free_list_to_percpu_ptr(pool, node))) {
a9ec6111 509 if (prev)
ca452fee
MD
510 fprintf(stderr, "%s: Corrupted free-list node %p -> [out-of-range %p] in pool \"%s\" (%p), caller %p.\n",
511 __func__, prev, node, get_pool_name(pool), pool, __builtin_return_address(0));
a9ec6111 512 else
ca452fee
MD
513 fprintf(stderr, "%s: Corrupted free-list node [out-of-range %p] in pool \"%s\" (%p), caller %p.\n",
514 __func__, node, get_pool_name(pool), pool, __builtin_return_address(0));
a9ec6111
OD
515 abort();
516 }
517
b73b0c25
MD
518 traversal_iteration++;
519 total_freed++;
a9ec6111
OD
520 }
521
522 if (total_never_allocated + total_freed != total_item) {
ca452fee
MD
523 fprintf(stderr, "%s: Corrupted free-list in pool \"%s\" (%p); total-item: %zu total-never-used: %zu total-freed: %zu, caller %p.\n",
524 __func__, get_pool_name(pool), pool, total_item, total_never_allocated, total_freed, __builtin_return_address(0));
a9ec6111
OD
525 abort();
526 }
a9ec6111
OD
527}
528
6fbf1fb6
MD
529/* Always inline for __builtin_return_address(0). */
530static inline __attribute__((always_inline))
531void check_range_poison(const struct rseq_mempool *pool,
532 const struct rseq_mempool_range *range)
533{
534 size_t item_offset;
535
536 for (item_offset = 0; item_offset < range->next_unused;
537 item_offset += pool->item_len)
538 rseq_percpu_check_poison_item(pool, range, item_offset);
539}
540
541/* Always inline for __builtin_return_address(0). */
542static inline __attribute__((always_inline))
543void check_pool_poison(const struct rseq_mempool *pool)
544{
545 struct rseq_mempool_range *range;
546
3975084e 547 if (!pool->attr.robust_set)
6fbf1fb6
MD
548 return;
549 for (range = pool->range_list; range; range = range->next)
550 check_range_poison(pool, range);
551}
552
e7cbbc10
MD
553/* Always inline for __builtin_return_address(0). */
554static inline __attribute__((always_inline))
0ba2a93e 555void destroy_alloc_bitmap(struct rseq_mempool *pool, struct rseq_mempool_range *range)
0fdf7a4c 556{
b73b0c25 557 unsigned long *bitmap = range->alloc_bitmap;
9649c7ee 558 size_t count, total_leaks = 0;
0fdf7a4c 559
9649c7ee 560 if (!bitmap)
0fdf7a4c 561 return;
0fdf7a4c 562
cb475906 563 count = ((pool->attr.stride >> pool->item_order) + BIT_PER_ULONG - 1) / BIT_PER_ULONG;
0fdf7a4c
OD
564
565 /* Assert that all items in the pool were freed. */
9649c7ee
MD
566 for (size_t k = 0; k < count; ++k)
567 total_leaks += rseq_hweight_ulong(bitmap[k]);
568 if (total_leaks) {
ca452fee
MD
569 fprintf(stderr, "%s: Pool \"%s\" (%p) has %zu leaked items on destroy, caller: %p.\n",
570 __func__, get_pool_name(pool), pool, total_leaks, (void *) __builtin_return_address(0));
9649c7ee 571 abort();
0fdf7a4c
OD
572 }
573
574 free(bitmap);
a5694a4d 575 range->alloc_bitmap = NULL;
0fdf7a4c
OD
576}
577
b73b0c25
MD
578/* Always inline for __builtin_return_address(0). */
579static inline __attribute__((always_inline))
0ba2a93e
MD
580int rseq_mempool_range_destroy(struct rseq_mempool *pool,
581 struct rseq_mempool_range *range)
b73b0c25
MD
582{
583 destroy_alloc_bitmap(pool, range);
a5694a4d 584
5c99f3d6 585 /* range is a header located one page before the aligned mapping. */
5cd72fc7 586 return munmap(range->mmap_addr, range->mmap_len);
5c99f3d6
MD
587}
588
589/*
590 * Allocate a memory mapping aligned on @alignment, with an optional
591 * @pre_header before the mapping.
592 */
593static
5cd72fc7 594void *aligned_mmap_anonymous(size_t page_size, size_t len, size_t alignment,
5c99f3d6
MD
595 void **pre_header, size_t pre_header_len)
596{
597 size_t minimum_page_count, page_count, extra, total_allocate = 0;
598 int page_order;
599 void *ptr;
600
601 if (len < page_size || alignment < page_size ||
b72b2d9e 602 !is_pow2(alignment) || (len & (alignment - 1))) {
5c99f3d6
MD
603 errno = EINVAL;
604 return NULL;
605 }
606 page_order = rseq_get_count_order_ulong(page_size);
607 if (page_order < 0) {
608 errno = EINVAL;
609 return NULL;
610 }
611 if (pre_header_len && (pre_header_len & (page_size - 1))) {
612 errno = EINVAL;
613 return NULL;
614 }
615
616 minimum_page_count = (pre_header_len + len) >> page_order;
617 page_count = (pre_header_len + len + alignment - page_size) >> page_order;
618
619 assert(page_count >= minimum_page_count);
620
5cd72fc7
MD
621 ptr = mmap(NULL, page_count << page_order, PROT_READ | PROT_WRITE,
622 MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
623 if (ptr == MAP_FAILED) {
624 ptr = NULL;
5c99f3d6 625 goto alloc_error;
5cd72fc7 626 }
5c99f3d6
MD
627
628 total_allocate = page_count << page_order;
629
630 if (!(((uintptr_t) ptr + pre_header_len) & (alignment - 1))) {
631 /* Pointer is already aligned. ptr points to pre_header. */
632 goto out;
633 }
634
635 /* Unmap extra before. */
636 extra = offset_align((uintptr_t) ptr + pre_header_len, alignment);
637 assert(!(extra & (page_size - 1)));
5cd72fc7 638 if (munmap(ptr, extra)) {
5c99f3d6
MD
639 perror("munmap");
640 abort();
641 }
642 total_allocate -= extra;
643 ptr += extra; /* ptr points to pre_header */
644 page_count -= extra >> page_order;
645out:
646 assert(page_count >= minimum_page_count);
647
648 if (page_count > minimum_page_count) {
649 void *extra_ptr;
650
651 /* Unmap extra after. */
652 extra_ptr = ptr + (minimum_page_count << page_order);
653 extra = (page_count - minimum_page_count) << page_order;
5cd72fc7 654 if (munmap(extra_ptr, extra)) {
5c99f3d6
MD
655 perror("munmap");
656 abort();
657 }
658 total_allocate -= extra;
659 }
660
661 assert(!(((uintptr_t)ptr + pre_header_len) & (alignment - 1)));
662 assert(total_allocate == len + pre_header_len);
663
664alloc_error:
665 if (ptr) {
666 if (pre_header)
667 *pre_header = ptr;
668 ptr += pre_header_len;
669 }
670 return ptr;
b73b0c25
MD
671}
672
a5694a4d 673static
cc0413ab 674int rseq_memfd_create_init(const char *poolname, size_t init_len)
a5694a4d 675{
a10c1c93 676 int fd;
cc0413ab
OD
677 char buf[249]; /* Limit is 249 bytes. */
678 const char *name;
a10c1c93 679
cc0413ab
OD
680 if (poolname) {
681 snprintf(buf, sizeof(buf), "%s:rseq-mempool", poolname);
682 name = buf;
683 } else {
684 name = "<anonymous>:rseq-mempool";
685 }
686
687 fd = memfd_create(name, MFD_CLOEXEC);
a10c1c93
MD
688 if (fd < 0) {
689 perror("memfd_create");
690 goto end;
a5694a4d 691 }
a10c1c93 692 if (ftruncate(fd, (off_t) init_len)) {
025165ad
MD
693 if (close(fd))
694 perror("close");
a10c1c93
MD
695 fd = -1;
696 goto end;
697 }
698end:
699 return fd;
700}
701
702static
703void rseq_memfd_close(int fd)
704{
025165ad
MD
705 if (fd < 0)
706 return;
a10c1c93
MD
707 if (close(fd))
708 perror("close");
a5694a4d
MD
709}
710
b73b0c25 711static
0ba2a93e 712struct rseq_mempool_range *rseq_mempool_range_create(struct rseq_mempool *pool)
b73b0c25 713{
0ba2a93e 714 struct rseq_mempool_range *range;
5c99f3d6 715 unsigned long page_size;
4aa3220c 716 void *header;
b73b0c25 717 void *base;
a5694a4d 718 size_t range_len; /* Range len excludes header. */
025165ad 719 int memfd = -1;
b73b0c25 720
e11a02d7
MD
721 if (pool->attr.max_nr_ranges &&
722 pool->nr_ranges >= pool->attr.max_nr_ranges) {
9d986353
MD
723 errno = ENOMEM;
724 return NULL;
725 }
5c99f3d6 726 page_size = rseq_get_page_len();
b73b0c25 727
a5694a4d 728 range_len = pool->attr.stride * pool->attr.max_nr_cpus;
4e8ae59d 729 if (pool->attr.populate_policy != RSEQ_MEMPOOL_POPULATE_PRIVATE_ALL)
a5694a4d 730 range_len += pool->attr.stride; /* init values */
c0de0012
MD
731 if (pool->attr.robust_set)
732 range_len += pool->attr.stride; /* free list */
5cd72fc7
MD
733 base = aligned_mmap_anonymous(page_size, range_len,
734 pool->attr.stride, &header, page_size);
b73b0c25 735 if (!base)
5c99f3d6 736 return NULL;
0ba2a93e 737 range = (struct rseq_mempool_range *) (base - RANGE_HEADER_OFFSET);
5c99f3d6 738 range->pool = pool;
4aa3220c 739 range->header = header;
a5694a4d 740 range->base = base;
fa6a0fb3 741 range->mmap_addr = header;
a5694a4d
MD
742 range->mmap_len = page_size + range_len;
743
4e8ae59d 744 if (pool->attr.populate_policy != RSEQ_MEMPOOL_POPULATE_PRIVATE_ALL) {
a5694a4d
MD
745 range->init = base + (pool->attr.stride * pool->attr.max_nr_cpus);
746 /* Populate init values pages from memfd */
cc0413ab 747 memfd = rseq_memfd_create_init(pool->name, pool->attr.stride);
a10c1c93 748 if (memfd < 0)
a5694a4d
MD
749 goto error_alloc;
750 if (mmap(range->init, pool->attr.stride, PROT_READ | PROT_WRITE,
a10c1c93 751 MAP_SHARED | MAP_FIXED, memfd, 0) != (void *) range->init) {
a5694a4d
MD
752 goto error_alloc;
753 }
7f6667b5
MD
754 /*
755 * Make sure the init values shared mapping is not
756 * shared with the children processes across fork.
757 */
758 if (madvise(range->init, pool->attr.stride, MADV_DONTFORK))
759 goto error_alloc;
a5694a4d
MD
760 assert(pool->attr.type == MEMPOOL_TYPE_PERCPU);
761 /*
762 * Map per-cpu memory as private COW mappings of init values.
763 */
764 {
765 int cpu;
766
767 for (cpu = 0; cpu < pool->attr.max_nr_cpus; cpu++) {
768 void *p = base + (pool->attr.stride * cpu);
769 size_t len = pool->attr.stride;
770
771 if (mmap(p, len, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_FIXED,
a10c1c93 772 memfd, 0) != (void *) p) {
a5694a4d
MD
773 goto error_alloc;
774 }
775 }
776 }
a10c1c93 777 rseq_memfd_close(memfd);
025165ad 778 memfd = -1;
a5694a4d
MD
779 }
780
b73b0c25
MD
781 if (pool->attr.robust_set) {
782 if (create_alloc_bitmap(pool, range))
783 goto error_alloc;
784 }
135811f2 785 if (pool->attr.init_set) {
374c2773
MD
786 switch (pool->attr.type) {
787 case MEMPOOL_TYPE_GLOBAL:
6e329183 788 if (pool->attr.init_func(pool->attr.init_priv,
374c2773 789 base, pool->attr.stride, -1)) {
6e329183
MD
790 goto error_alloc;
791 }
374c2773
MD
792 break;
793 case MEMPOOL_TYPE_PERCPU:
794 {
795 int cpu;
796 for (cpu = 0; cpu < pool->attr.max_nr_cpus; cpu++) {
797 if (pool->attr.init_func(pool->attr.init_priv,
798 base + (pool->attr.stride * cpu),
799 pool->attr.stride, cpu)) {
800 goto error_alloc;
801 }
802 }
803 break;
804 }
805 default:
806 abort();
135811f2
MD
807 }
808 }
9d986353 809 pool->nr_ranges++;
b73b0c25
MD
810 return range;
811
812error_alloc:
025165ad 813 rseq_memfd_close(memfd);
0ba2a93e 814 (void) rseq_mempool_range_destroy(pool, range);
b73b0c25
MD
815 return NULL;
816}
817
0ba2a93e 818int rseq_mempool_destroy(struct rseq_mempool *pool)
9649c7ee 819{
0ba2a93e 820 struct rseq_mempool_range *range, *next_range;
b73b0c25 821 int ret = 0;
9649c7ee 822
f510ddc5
MD
823 if (!pool)
824 return 0;
b73b0c25 825 check_free_list(pool);
6fbf1fb6 826 check_pool_poison(pool);
b73b0c25 827 /* Iteration safe against removal. */
9d986353 828 for (range = pool->range_list; range && (next_range = range->next, 1); range = next_range) {
0ba2a93e 829 if (rseq_mempool_range_destroy(pool, range))
b73b0c25
MD
830 goto end;
831 /* Update list head to keep list coherent in case of partial failure. */
9d986353 832 pool->range_list = next_range;
b73b0c25 833 }
9649c7ee 834 pthread_mutex_destroy(&pool->lock);
ca452fee 835 free(pool->name);
eb8db04d 836 free(pool);
9649c7ee 837end:
b73b0c25 838 return ret;
9649c7ee
MD
839}
840
0ba2a93e 841struct rseq_mempool *rseq_mempool_create(const char *pool_name,
cb475906 842 size_t item_len, const struct rseq_mempool_attr *_attr)
ef6695f1 843{
0ba2a93e
MD
844 struct rseq_mempool *pool;
845 struct rseq_mempool_attr attr = {};
ef6695f1 846 int order;
ef6695f1
MD
847
848 /* Make sure each item is large enough to contain free list pointers. */
849 if (item_len < sizeof(void *))
850 item_len = sizeof(void *);
851
852 /* Align item_len on next power of two. */
19be9217 853 order = rseq_get_count_order_ulong(item_len);
ef6695f1
MD
854 if (order < 0) {
855 errno = EINVAL;
856 return NULL;
857 }
858 item_len = 1UL << order;
859
a82006d0
MD
860 if (_attr)
861 memcpy(&attr, _attr, sizeof(attr));
a82006d0 862
cb475906
MD
863 switch (attr.type) {
864 case MEMPOOL_TYPE_PERCPU:
865 if (attr.max_nr_cpus < 0) {
866 errno = EINVAL;
867 return NULL;
868 }
869 if (attr.max_nr_cpus == 0) {
870 /* Auto-detect */
47c725dd 871 attr.max_nr_cpus = rseq_get_max_nr_cpus();
cb475906
MD
872 if (attr.max_nr_cpus == 0) {
873 errno = EINVAL;
874 return NULL;
875 }
876 }
877 break;
878 case MEMPOOL_TYPE_GLOBAL:
a5694a4d 879 /* Override populate policy for global type. */
4e8ae59d
MD
880 if (attr.populate_policy == RSEQ_MEMPOOL_POPULATE_PRIVATE_NONE)
881 attr.populate_policy = RSEQ_MEMPOOL_POPULATE_PRIVATE_ALL;
89b7e681
MD
882 /* Use a 1-cpu pool for global mempool type. */
883 attr.max_nr_cpus = 1;
cb475906
MD
884 break;
885 }
886 if (!attr.stride)
887 attr.stride = RSEQ_MEMPOOL_STRIDE; /* Use default */
3975084e
MD
888 if (attr.robust_set && !attr.poison_set) {
889 attr.poison_set = true;
dbccd436 890 attr.poison = DEFAULT_PRIVATE_POISON_VALUE;
3975084e 891 }
cb475906
MD
892 if (item_len > attr.stride || attr.stride < (size_t) rseq_get_page_len() ||
893 !is_pow2(attr.stride)) {
894 errno = EINVAL;
895 return NULL;
896 }
897
0ba2a93e 898 pool = calloc(1, sizeof(struct rseq_mempool));
bc510b60
MD
899 if (!pool)
900 return NULL;
ef6695f1 901
b73b0c25 902 memcpy(&pool->attr, &attr, sizeof(attr));
ef6695f1 903 pthread_mutex_init(&pool->lock, NULL);
ef6695f1
MD
904 pool->item_len = item_len;
905 pool->item_order = order;
b73b0c25 906
9d986353
MD
907 pool->range_list = rseq_mempool_range_create(pool);
908 if (!pool->range_list)
b73b0c25 909 goto error_alloc;
0fdf7a4c 910
ca452fee
MD
911 if (pool_name) {
912 pool->name = strdup(pool_name);
913 if (!pool->name)
914 goto error_alloc;
915 }
ef6695f1 916 return pool;
ef6695f1 917
9649c7ee 918error_alloc:
0ba2a93e 919 rseq_mempool_destroy(pool);
9649c7ee
MD
920 errno = ENOMEM;
921 return NULL;
ef6695f1
MD
922}
923
e7cbbc10
MD
924/* Always inline for __builtin_return_address(0). */
925static inline __attribute__((always_inline))
9d986353 926void set_alloc_slot(struct rseq_mempool *pool, struct rseq_mempool_range *range, size_t item_offset)
0fdf7a4c 927{
9d986353 928 unsigned long *bitmap = range->alloc_bitmap;
9649c7ee 929 size_t item_index = item_offset >> pool->item_order;
0fdf7a4c
OD
930 unsigned long mask;
931 size_t k;
932
9649c7ee 933 if (!bitmap)
0fdf7a4c 934 return;
0fdf7a4c 935
9649c7ee 936 k = item_index / BIT_PER_ULONG;
0fdf7a4c
OD
937 mask = 1ULL << (item_index % BIT_PER_ULONG);
938
9649c7ee
MD
939 /* Print error if bit is already set. */
940 if (bitmap[k] & mask) {
ca452fee
MD
941 fprintf(stderr, "%s: Allocator corruption detected for pool: \"%s\" (%p), item offset: %zu, caller: %p.\n",
942 __func__, get_pool_name(pool), pool, item_offset, (void *) __builtin_return_address(0));
9649c7ee
MD
943 abort();
944 }
0fdf7a4c
OD
945 bitmap[k] |= mask;
946}
947
ef6695f1 948static
6ff43d9a
MD
949void __rseq_percpu *__rseq_percpu_malloc(struct rseq_mempool *pool,
950 bool zeroed, void *init_ptr, size_t init_len)
ef6695f1 951{
9d986353 952 struct rseq_mempool_range *range;
ef6695f1
MD
953 struct free_list_node *node;
954 uintptr_t item_offset;
d24ee051 955 void __rseq_percpu *addr;
ef6695f1 956
6ff43d9a
MD
957 if (init_len > pool->item_len) {
958 errno = EINVAL;
959 return NULL;
960 }
ef6695f1
MD
961 pthread_mutex_lock(&pool->lock);
962 /* Get first entry from free list. */
963 node = pool->free_list_head;
964 if (node != NULL) {
a5694a4d 965 void *range_base, *ptr;
9d986353 966
a5694a4d
MD
967 ptr = __rseq_free_list_to_percpu_ptr(pool, node);
968 range_base = (void *) ((uintptr_t) ptr & (~(pool->attr.stride - 1)));
9d986353 969 range = (struct rseq_mempool_range *) (range_base - RANGE_HEADER_OFFSET);
ef6695f1
MD
970 /* Remove node from free list (update head). */
971 pool->free_list_head = node->next;
a5694a4d 972 item_offset = (uintptr_t) (ptr - range_base);
86617384 973 rseq_percpu_check_poison_item(pool, range, item_offset);
a5694a4d 974 addr = __rseq_free_list_to_percpu_ptr(pool, node);
ef6695f1
MD
975 goto end;
976 }
9d986353
MD
977 /*
978 * If the most recent range (first in list) does not have any
979 * room left, create a new range and prepend it to the list
980 * head.
981 */
982 range = pool->range_list;
983 if (range->next_unused + pool->item_len > pool->attr.stride) {
984 range = rseq_mempool_range_create(pool);
985 if (!range) {
986 errno = ENOMEM;
987 addr = NULL;
988 goto end;
989 }
990 /* Add range to head of list. */
991 range->next = pool->range_list;
992 pool->range_list = range;
ef6695f1 993 }
9d986353
MD
994 /* First range in list has room left. */
995 item_offset = range->next_unused;
996 addr = (void __rseq_percpu *) (range->base + item_offset);
997 range->next_unused += pool->item_len;
ef6695f1 998end:
8f28507f 999 if (addr)
9d986353 1000 set_alloc_slot(pool, range, item_offset);
ef6695f1 1001 pthread_mutex_unlock(&pool->lock);
6ff43d9a
MD
1002 if (addr) {
1003 if (zeroed)
1004 rseq_percpu_zero_item(pool, range, item_offset);
1005 else if (init_ptr) {
1006 rseq_percpu_init_item(pool, range, item_offset,
1007 init_ptr, init_len);
1008 }
1009 }
ef6695f1
MD
1010 return addr;
1011}
1012
15da5c27 1013void __rseq_percpu *rseq_mempool_percpu_malloc(struct rseq_mempool *pool)
ef6695f1 1014{
6ff43d9a 1015 return __rseq_percpu_malloc(pool, false, NULL, 0);
ef6695f1
MD
1016}
1017
15da5c27 1018void __rseq_percpu *rseq_mempool_percpu_zmalloc(struct rseq_mempool *pool)
ef6695f1 1019{
6ff43d9a
MD
1020 return __rseq_percpu_malloc(pool, true, NULL, 0);
1021}
1022
1023void __rseq_percpu *rseq_mempool_percpu_malloc_init(struct rseq_mempool *pool,
1024 void *init_ptr, size_t len)
1025{
1026 return __rseq_percpu_malloc(pool, false, init_ptr, len);
ef6695f1
MD
1027}
1028
e7cbbc10
MD
1029/* Always inline for __builtin_return_address(0). */
1030static inline __attribute__((always_inline))
9d986353 1031void clear_alloc_slot(struct rseq_mempool *pool, struct rseq_mempool_range *range, size_t item_offset)
0fdf7a4c 1032{
9d986353 1033 unsigned long *bitmap = range->alloc_bitmap;
9649c7ee 1034 size_t item_index = item_offset >> pool->item_order;
0fdf7a4c
OD
1035 unsigned long mask;
1036 size_t k;
1037
9649c7ee 1038 if (!bitmap)
0fdf7a4c 1039 return;
0fdf7a4c 1040
9649c7ee
MD
1041 k = item_index / BIT_PER_ULONG;
1042 mask = 1ULL << (item_index % BIT_PER_ULONG);
0fdf7a4c 1043
9649c7ee
MD
1044 /* Print error if bit is not set. */
1045 if (!(bitmap[k] & mask)) {
ca452fee
MD
1046 fprintf(stderr, "%s: Double-free detected for pool: \"%s\" (%p), item offset: %zu, caller: %p.\n",
1047 __func__, get_pool_name(pool), pool, item_offset,
1048 (void *) __builtin_return_address(0));
9649c7ee
MD
1049 abort();
1050 }
0fdf7a4c
OD
1051 bitmap[k] &= ~mask;
1052}
1053
cb475906 1054void librseq_mempool_percpu_free(void __rseq_percpu *_ptr, size_t stride)
ef6695f1
MD
1055{
1056 uintptr_t ptr = (uintptr_t) _ptr;
cb475906 1057 void *range_base = (void *) (ptr & (~(stride - 1)));
0ba2a93e
MD
1058 struct rseq_mempool_range *range = (struct rseq_mempool_range *) (range_base - RANGE_HEADER_OFFSET);
1059 struct rseq_mempool *pool = range->pool;
cb475906 1060 uintptr_t item_offset = ptr & (stride - 1);
ef6695f1
MD
1061 struct free_list_node *head, *item;
1062
1063 pthread_mutex_lock(&pool->lock);
9d986353 1064 clear_alloc_slot(pool, range, item_offset);
ef6695f1
MD
1065 /* Add ptr to head of free list */
1066 head = pool->free_list_head;
455e090e
MD
1067 if (pool->attr.poison_set)
1068 rseq_percpu_poison_item(pool, range, item_offset);
a5694a4d 1069 item = __rseq_percpu_to_free_list_ptr(pool, _ptr);
455e090e
MD
1070 /*
1071 * Setting the next pointer will overwrite the first uintptr_t
a5694a4d
MD
1072 * poison for either CPU 0 (populate all) or init data (populate
1073 * none).
455e090e 1074 */
ef6695f1
MD
1075 item->next = head;
1076 pool->free_list_head = item;
1077 pthread_mutex_unlock(&pool->lock);
1078}
1079
0ba2a93e 1080struct rseq_mempool_set *rseq_mempool_set_create(void)
ef6695f1 1081{
0ba2a93e 1082 struct rseq_mempool_set *pool_set;
ef6695f1 1083
0ba2a93e 1084 pool_set = calloc(1, sizeof(struct rseq_mempool_set));
ef6695f1
MD
1085 if (!pool_set)
1086 return NULL;
1087 pthread_mutex_init(&pool_set->lock, NULL);
1088 return pool_set;
1089}
1090
0ba2a93e 1091int rseq_mempool_set_destroy(struct rseq_mempool_set *pool_set)
ef6695f1
MD
1092{
1093 int order, ret;
1094
1095 for (order = POOL_SET_MIN_ENTRY; order < POOL_SET_NR_ENTRIES; order++) {
0ba2a93e 1096 struct rseq_mempool *pool = pool_set->entries[order];
ef6695f1
MD
1097
1098 if (!pool)
1099 continue;
0ba2a93e 1100 ret = rseq_mempool_destroy(pool);
ef6695f1
MD
1101 if (ret)
1102 return ret;
1103 pool_set->entries[order] = NULL;
1104 }
1105 pthread_mutex_destroy(&pool_set->lock);
1106 free(pool_set);
1107 return 0;
1108}
1109
1110/* Ownership of pool is handed over to pool set on success. */
0ba2a93e 1111int rseq_mempool_set_add_pool(struct rseq_mempool_set *pool_set, struct rseq_mempool *pool)
ef6695f1
MD
1112{
1113 size_t item_order = pool->item_order;
1114 int ret = 0;
1115
1116 pthread_mutex_lock(&pool_set->lock);
1117 if (pool_set->entries[item_order]) {
1118 errno = EBUSY;
1119 ret = -1;
1120 goto end;
1121 }
1122 pool_set->entries[pool->item_order] = pool;
1123end:
1124 pthread_mutex_unlock(&pool_set->lock);
1125 return ret;
1126}
1127
1128static
6ff43d9a
MD
1129void __rseq_percpu *__rseq_mempool_set_malloc(struct rseq_mempool_set *pool_set,
1130 void *init_ptr, size_t len, bool zeroed)
ef6695f1
MD
1131{
1132 int order, min_order = POOL_SET_MIN_ENTRY;
0ba2a93e 1133 struct rseq_mempool *pool;
d24ee051 1134 void __rseq_percpu *addr;
ef6695f1 1135
d06f5cf5
MD
1136 order = rseq_get_count_order_ulong(len);
1137 if (order > POOL_SET_MIN_ENTRY)
1138 min_order = order;
ef6695f1
MD
1139again:
1140 pthread_mutex_lock(&pool_set->lock);
1141 /* First smallest present pool where @len fits. */
1142 for (order = min_order; order < POOL_SET_NR_ENTRIES; order++) {
1143 pool = pool_set->entries[order];
1144
1145 if (!pool)
1146 continue;
1147 if (pool->item_len >= len)
1148 goto found;
1149 }
1150 pool = NULL;
1151found:
1152 pthread_mutex_unlock(&pool_set->lock);
1153 if (pool) {
6ff43d9a 1154 addr = __rseq_percpu_malloc(pool, zeroed, init_ptr, len);
ef6695f1
MD
1155 if (addr == NULL && errno == ENOMEM) {
1156 /*
1157 * If the allocation failed, try again with a
1158 * larger pool.
1159 */
1160 min_order = order + 1;
1161 goto again;
1162 }
1163 } else {
1164 /* Not found. */
1165 errno = ENOMEM;
1166 addr = NULL;
1167 }
1168 return addr;
1169}
1170
15da5c27 1171void __rseq_percpu *rseq_mempool_set_percpu_malloc(struct rseq_mempool_set *pool_set, size_t len)
ef6695f1 1172{
6ff43d9a 1173 return __rseq_mempool_set_malloc(pool_set, NULL, len, false);
ef6695f1
MD
1174}
1175
15da5c27 1176void __rseq_percpu *rseq_mempool_set_percpu_zmalloc(struct rseq_mempool_set *pool_set, size_t len)
ef6695f1 1177{
6ff43d9a
MD
1178 return __rseq_mempool_set_malloc(pool_set, NULL, len, true);
1179}
1180
1181void __rseq_percpu *rseq_mempool_set_percpu_malloc_init(struct rseq_mempool_set *pool_set,
1182 void *init_ptr, size_t len)
1183{
1184 return __rseq_mempool_set_malloc(pool_set, init_ptr, len, true);
ef6695f1 1185}
9bd07c29 1186
0ba2a93e 1187struct rseq_mempool_attr *rseq_mempool_attr_create(void)
a82006d0 1188{
0ba2a93e 1189 return calloc(1, sizeof(struct rseq_mempool_attr));
a82006d0
MD
1190}
1191
0ba2a93e 1192void rseq_mempool_attr_destroy(struct rseq_mempool_attr *attr)
a82006d0
MD
1193{
1194 free(attr);
1195}
1196
135811f2 1197int rseq_mempool_attr_set_init(struct rseq_mempool_attr *attr,
6e329183 1198 int (*init_func)(void *priv, void *addr, size_t len, int cpu),
135811f2
MD
1199 void *init_priv)
1200{
1201 if (!attr) {
1202 errno = EINVAL;
1203 return -1;
1204 }
1205 attr->init_set = true;
1206 attr->init_func = init_func;
1207 attr->init_priv = init_priv;
1208 return 0;
1209}
1210
0ba2a93e 1211int rseq_mempool_attr_set_robust(struct rseq_mempool_attr *attr)
d6acc8aa
MD
1212{
1213 if (!attr) {
1214 errno = EINVAL;
1215 return -1;
1216 }
1217 attr->robust_set = true;
1218 return 0;
1219}
cb475906
MD
1220
1221int rseq_mempool_attr_set_percpu(struct rseq_mempool_attr *attr,
1222 size_t stride, int max_nr_cpus)
1223{
1224 if (!attr) {
1225 errno = EINVAL;
1226 return -1;
1227 }
1228 attr->type = MEMPOOL_TYPE_PERCPU;
1229 attr->stride = stride;
1230 attr->max_nr_cpus = max_nr_cpus;
1231 return 0;
1232}
1233
1234int rseq_mempool_attr_set_global(struct rseq_mempool_attr *attr,
1235 size_t stride)
1236{
1237 if (!attr) {
1238 errno = EINVAL;
1239 return -1;
1240 }
1241 attr->type = MEMPOOL_TYPE_GLOBAL;
1242 attr->stride = stride;
89b7e681 1243 attr->max_nr_cpus = 0;
cb475906
MD
1244 return 0;
1245}
6037d364 1246
e11a02d7
MD
1247int rseq_mempool_attr_set_max_nr_ranges(struct rseq_mempool_attr *attr,
1248 unsigned long max_nr_ranges)
1249{
1250 if (!attr) {
1251 errno = EINVAL;
1252 return -1;
1253 }
1254 attr->max_nr_ranges = max_nr_ranges;
1255 return 0;
1256}
1257
455e090e
MD
1258int rseq_mempool_attr_set_poison(struct rseq_mempool_attr *attr,
1259 uintptr_t poison)
1260{
1261 if (!attr) {
1262 errno = EINVAL;
1263 return -1;
1264 }
1265 attr->poison_set = true;
1266 attr->poison = poison;
1267 return 0;
1268}
1269
a5694a4d
MD
1270int rseq_mempool_attr_set_populate_policy(struct rseq_mempool_attr *attr,
1271 enum rseq_mempool_populate_policy policy)
1272{
1273 if (!attr) {
1274 errno = EINVAL;
1275 return -1;
1276 }
1277 attr->populate_policy = policy;
1278 return 0;
1279}
1280
6037d364
MD
1281int rseq_mempool_get_max_nr_cpus(struct rseq_mempool *mempool)
1282{
1283 if (!mempool || mempool->attr.type != MEMPOOL_TYPE_PERCPU) {
1284 errno = EINVAL;
1285 return -1;
1286 }
1287 return mempool->attr.max_nr_cpus;
1288}
This page took 0.097371 seconds and 4 git commands to generate.