2020-07-21 22:09:15 +00:00
|
|
|
/*
|
|
|
|
* BIRD Internet Routing Daemon -- Raw allocation
|
|
|
|
*
|
|
|
|
* (c) 2020 Maria Matejka <mq@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "lib/resource.h"
|
2021-11-24 16:30:13 +00:00
|
|
|
#include "lib/lists.h"
|
|
|
|
#include "lib/event.h"
|
2020-07-21 22:09:15 +00:00
|
|
|
|
2021-11-30 22:57:14 +00:00
|
|
|
#include "sysdep/unix/io-loop.h"
|
|
|
|
|
2020-07-21 22:09:15 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2021-11-11 15:25:59 +00:00
|
|
|
#include <stdatomic.h>
|
|
|
|
#include <errno.h>
|
2020-07-21 22:09:15 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_MMAP
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#endif
|
|
|
|
|
2021-08-31 22:46:46 +00:00
|
|
|
long page_size = 0;
|
2021-11-11 15:25:59 +00:00
|
|
|
|
2020-07-21 22:09:15 +00:00
|
|
|
#ifdef HAVE_MMAP
|
2021-11-30 22:57:14 +00:00
|
|
|
#if DEBUGGING
|
|
|
|
#define FP_NODE_OFFSET 42
|
|
|
|
#else
|
|
|
|
#define FP_NODE_OFFSET 1
|
|
|
|
#endif
|
2020-07-21 22:09:15 +00:00
|
|
|
static _Bool use_fake = 0;
|
|
|
|
#else
|
2021-08-31 22:46:46 +00:00
|
|
|
static _Bool use_fake = 1;
|
2020-07-21 22:09:15 +00:00
|
|
|
#endif
|
|
|
|
|
2021-11-30 22:57:14 +00:00
|
|
|
static void *
|
|
|
|
alloc_sys_page(void)
|
2020-07-21 22:09:15 +00:00
|
|
|
{
|
2021-11-30 22:57:14 +00:00
|
|
|
void *ptr = mmap(NULL, page_size, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
|
2021-11-11 15:25:59 +00:00
|
|
|
|
2021-11-30 22:57:14 +00:00
|
|
|
if (ptr == MAP_FAILED)
|
|
|
|
bug("mmap(%lu) failed: %m", page_size);
|
2020-07-21 22:09:15 +00:00
|
|
|
|
2021-11-30 22:57:14 +00:00
|
|
|
return ptr;
|
2020-07-21 22:09:15 +00:00
|
|
|
}
|
|
|
|
|
2021-12-01 22:02:42 +00:00
|
|
|
extern int shutting_down; /* Shutdown requested. */
|
|
|
|
|
2020-07-21 22:09:15 +00:00
|
|
|
void *
|
2021-11-30 22:57:14 +00:00
|
|
|
alloc_page(void)
|
2020-07-21 22:09:15 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_MMAP
|
|
|
|
if (!use_fake)
|
|
|
|
{
|
2021-11-30 22:57:14 +00:00
|
|
|
struct free_pages *fp = &birdloop_current->pages;
|
|
|
|
if (!fp->cnt)
|
|
|
|
return alloc_sys_page();
|
|
|
|
|
|
|
|
node *n = HEAD(fp->list);
|
|
|
|
rem_node(n);
|
2021-12-07 13:55:27 +00:00
|
|
|
if ((--fp->cnt < fp->min) && !shutting_down)
|
2022-01-10 13:49:58 +00:00
|
|
|
ev_send(fp->cleanup->list, fp->cleanup);
|
2021-11-30 22:57:14 +00:00
|
|
|
|
|
|
|
void *ptr = n - FP_NODE_OFFSET;
|
|
|
|
memset(ptr, 0, page_size);
|
|
|
|
return ptr;
|
2020-07-21 22:09:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2021-12-07 16:59:44 +00:00
|
|
|
#ifdef HAVE_ALIGNED_ALLOC
|
2020-07-21 22:09:15 +00:00
|
|
|
void *ret = aligned_alloc(page_size, page_size);
|
|
|
|
if (!ret)
|
|
|
|
bug("aligned_alloc(%lu) failed", page_size);
|
|
|
|
return ret;
|
2021-12-07 16:59:44 +00:00
|
|
|
#else
|
|
|
|
bug("BIRD should have already died on fatal error.");
|
|
|
|
#endif
|
2020-07-21 22:09:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-11-30 22:57:14 +00:00
|
|
|
free_page(void *ptr)
|
2020-07-21 22:09:15 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_MMAP
|
|
|
|
if (!use_fake)
|
|
|
|
{
|
2021-11-30 22:57:14 +00:00
|
|
|
struct free_pages *fp = &birdloop_current->pages;
|
|
|
|
struct node *n = ptr;
|
|
|
|
n += FP_NODE_OFFSET;
|
|
|
|
|
|
|
|
memset(n, 0, sizeof(node));
|
|
|
|
add_tail(&fp->list, n);
|
2021-12-07 13:55:27 +00:00
|
|
|
if ((++fp->cnt > fp->max) && !shutting_down)
|
2022-01-10 13:49:58 +00:00
|
|
|
ev_send(fp->cleanup->list, fp->cleanup);
|
2020-07-21 22:09:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
free(ptr);
|
|
|
|
}
|
2021-11-23 11:13:11 +00:00
|
|
|
|
2021-11-30 22:57:14 +00:00
|
|
|
#ifdef HAVE_MMAP
|
|
|
|
|
|
|
|
#define GFP (&main_birdloop.pages)
|
|
|
|
|
2021-11-23 11:13:11 +00:00
|
|
|
void
|
2021-11-30 22:57:14 +00:00
|
|
|
flush_pages(struct birdloop *loop)
|
2021-11-23 11:13:11 +00:00
|
|
|
{
|
2022-01-10 13:49:58 +00:00
|
|
|
ASSERT_DIE(birdloop_inside(loop->parent->loop));
|
2021-11-30 22:57:14 +00:00
|
|
|
|
2022-01-10 13:49:58 +00:00
|
|
|
struct free_pages *fp = &loop->pages;
|
|
|
|
struct free_pages *pfp = &loop->parent->loop->pages;
|
|
|
|
|
|
|
|
add_tail_list(&pfp->list, &fp->list);
|
|
|
|
pfp->cnt += fp->cnt;
|
2021-11-30 22:57:14 +00:00
|
|
|
|
2022-01-10 13:49:58 +00:00
|
|
|
fp->cnt = 0;
|
|
|
|
fp->list = (list) {};
|
|
|
|
fp->min = 0;
|
|
|
|
fp->max = 0;
|
2021-11-30 22:57:14 +00:00
|
|
|
|
2022-01-10 13:49:58 +00:00
|
|
|
rfree(fp->cleanup);
|
|
|
|
fp->cleanup = NULL;
|
2021-11-30 22:57:14 +00:00
|
|
|
}
|
2021-11-23 11:13:11 +00:00
|
|
|
|
2021-11-30 22:57:14 +00:00
|
|
|
static void
|
|
|
|
cleanup_pages(void *data)
|
|
|
|
{
|
|
|
|
struct birdloop *loop = data;
|
|
|
|
birdloop_enter(loop);
|
|
|
|
|
2022-01-10 13:49:58 +00:00
|
|
|
ASSERT_DIE(birdloop_inside(loop->parent->loop));
|
2021-11-30 22:57:14 +00:00
|
|
|
|
2022-01-10 13:49:58 +00:00
|
|
|
struct free_pages *fp = &loop->pages;
|
|
|
|
struct free_pages *pfp = &loop->parent->loop->pages;
|
|
|
|
|
|
|
|
while ((fp->cnt < fp->min) && (pfp->cnt > pfp->min))
|
2021-11-23 11:13:11 +00:00
|
|
|
{
|
2022-01-10 13:49:58 +00:00
|
|
|
node *n = HEAD(pfp->list);
|
2021-11-30 22:57:14 +00:00
|
|
|
rem_node(n);
|
|
|
|
add_tail(&fp->list, n);
|
|
|
|
fp->cnt++;
|
2022-01-10 13:49:58 +00:00
|
|
|
pfp->cnt--;
|
2021-11-30 22:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while (fp->cnt < fp->min)
|
|
|
|
{
|
|
|
|
node *n = alloc_sys_page();
|
|
|
|
add_tail(&fp->list, n + FP_NODE_OFFSET);
|
|
|
|
fp->cnt++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (fp->cnt > fp->max)
|
|
|
|
{
|
|
|
|
node *n = HEAD(fp->list);
|
|
|
|
rem_node(n);
|
2022-01-10 13:49:58 +00:00
|
|
|
add_tail(&pfp->list, n);
|
2021-11-30 22:57:14 +00:00
|
|
|
fp->cnt--;
|
2022-01-10 13:49:58 +00:00
|
|
|
pfp->cnt++;
|
2021-11-30 22:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
birdloop_leave(loop);
|
|
|
|
|
2022-01-10 13:49:58 +00:00
|
|
|
if (!shutting_down && (pfp->cnt > pfp->max))
|
|
|
|
ev_send(pfp->cleanup->list, pfp->cleanup);
|
2021-11-30 22:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cleanup_global_pages(void *data UNUSED)
|
|
|
|
{
|
|
|
|
while (GFP->cnt < GFP->max)
|
|
|
|
{
|
|
|
|
node *n = alloc_sys_page();
|
|
|
|
add_tail(&GFP->list, n + FP_NODE_OFFSET);
|
|
|
|
GFP->cnt++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint limit = GFP->cnt; (limit > 0) && (GFP->cnt > GFP->max); limit--)
|
|
|
|
{
|
|
|
|
node *n = TAIL(GFP->list);
|
|
|
|
rem_node(n);
|
|
|
|
|
|
|
|
if (munmap(n - FP_NODE_OFFSET, page_size) == 0)
|
|
|
|
GFP->cnt--;
|
|
|
|
else if (errno == ENOMEM)
|
|
|
|
add_head(&GFP->list, n);
|
|
|
|
else
|
|
|
|
bug("munmap(%p) failed: %m", n - FP_NODE_OFFSET);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
init_pages(struct birdloop *loop)
|
|
|
|
{
|
|
|
|
struct free_pages *fp = &loop->pages;
|
|
|
|
|
|
|
|
init_list(&fp->list);
|
2022-01-10 13:49:58 +00:00
|
|
|
fp->cleanup = ev_new_init(loop->parent->loop->pool, cleanup_pages, loop);
|
|
|
|
fp->cleanup->list = (loop->parent->loop == &main_birdloop) ? &global_work_list : birdloop_event_list(loop->parent->loop);
|
2021-11-30 22:57:14 +00:00
|
|
|
fp->min = 4;
|
|
|
|
fp->max = 16;
|
|
|
|
|
|
|
|
for (fp->cnt = 0; fp->cnt < fp->min; fp->cnt++)
|
|
|
|
{
|
|
|
|
node *n = alloc_sys_page();
|
|
|
|
add_tail(&fp->list, n + FP_NODE_OFFSET);
|
2021-11-23 11:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
2021-11-30 22:57:14 +00:00
|
|
|
|
2022-01-10 13:49:58 +00:00
|
|
|
static event global_free_pages_cleanup_event = { .hook = cleanup_global_pages, .list = &global_work_list };
|
2021-11-30 22:57:14 +00:00
|
|
|
|
|
|
|
void resource_sys_init(void)
|
|
|
|
{
|
|
|
|
if (!(page_size = sysconf(_SC_PAGESIZE)))
|
|
|
|
die("System page size must be non-zero");
|
|
|
|
|
|
|
|
if (u64_popcount(page_size) == 1)
|
|
|
|
{
|
|
|
|
init_list(&GFP->list);
|
|
|
|
GFP->cleanup = &global_free_pages_cleanup_event;
|
|
|
|
GFP->min = 0;
|
|
|
|
GFP->max = 256;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-07 16:59:44 +00:00
|
|
|
#ifdef HAVE_ALIGNED_ALLOC
|
2021-11-30 22:57:14 +00:00
|
|
|
log(L_WARN "Got strange memory page size (%lu), using the aligned allocator instead", page_size);
|
2021-12-07 16:59:44 +00:00
|
|
|
#else
|
|
|
|
die("Got strange memory page size (%lu) and aligned_alloc is not available", page_size);
|
|
|
|
#endif
|
2021-11-30 22:57:14 +00:00
|
|
|
|
|
|
|
/* Too big or strange page, use the aligned allocator instead */
|
|
|
|
page_size = 4096;
|
|
|
|
use_fake = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
void
|
|
|
|
resource_sys_init(void)
|
|
|
|
{
|
|
|
|
page_size = 4096;
|
|
|
|
use_fake = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|