/* * Copyright (c) 2003, 2004 Niels Provos * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include "config.h" #include #include #include #include #include #include "pool.h" struct pool* pool_init(size_t size) { struct pool *pool; if (POOL_PAGE_SIZE / (sizeof(struct pool_entry) + size) < 1) errx(1, "%s: object size too large for pool", __func__); if ((pool = calloc(1, sizeof(struct pool))) == NULL) err(1, "%s: calloc", __func__); SLIST_INIT(&pool->entries); pool->size = size; return (pool); } void * pool_alloc_size(struct pool *pool, size_t size) { struct pool_entry *entry = NULL; if (size) { entry = malloc(size + sizeof(struct pool_entry)); if (entry == NULL) err(1, "%s: malloc", __func__); entry->data = (void *)entry + sizeof(struct pool_entry);; entry->size = size; pool->nalloc++; } else { void *p = malloc(POOL_PAGE_SIZE); int i, max; if (p == NULL) err(1, "%s: malloc", __func__); size = pool->size; max = POOL_PAGE_SIZE / (sizeof(struct pool_entry) + size); pool->nalloc += max; for (i = 0; i < max; i++) { entry = p; entry->data = (void *)entry+ sizeof(struct pool_entry); entry->size = size; /* We want to use the last one as return */ if (i < max - 1) { SLIST_INSERT_HEAD(&pool->entries, entry, next); p += sizeof(struct pool_entry) + size; } } } return (entry->data); }