2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 18:19:42 +00:00
bind/lib/isc/mem.c

1977 lines
44 KiB
C
Raw Normal View History

1998-08-17 22:05:58 +00:00
/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
1998-08-17 22:05:58 +00:00
*/
/*! \file */
2000-06-22 22:00:42 +00:00
2018-11-12 11:50:52 +01:00
#include <errno.h>
#include <inttypes.h>
#include <limits.h>
#include <stdbool.h>
#include <stddef.h>
1998-08-17 22:05:58 +00:00
#include <stdio.h>
#include <stdlib.h>
1999-06-08 02:38:30 +00:00
#include <isc/bind9.h>
2018-11-16 12:23:36 +11:00
#include <isc/hash.h>
#include <isc/magic.h>
1998-12-11 20:38:46 +00:00
#include <isc/mem.h>
2018-11-16 12:23:36 +11:00
#include <isc/mutex.h>
#include <isc/once.h>
2018-11-16 12:23:36 +11:00
#include <isc/print.h>
#include <isc/refcount.h>
2018-11-16 12:23:36 +11:00
#include <isc/strerr.h>
#include <isc/string.h>
#include <isc/types.h>
1999-12-16 22:24:22 +00:00
#include <isc/util.h>
#ifdef HAVE_LIBXML2
#include <libxml/xmlwriter.h>
#define ISC_XMLCHAR (const xmlChar *)
#endif /* HAVE_LIBXML2 */
1998-08-18 19:28:30 +00:00
#ifdef HAVE_JSON_C
#include <json_object.h>
#endif /* HAVE_JSON_C */
#include "mem_p.h"
2020-02-13 14:44:37 -08:00
#define MCTXLOCK(m) LOCK(&m->lock)
#define MCTXUNLOCK(m) UNLOCK(&m->lock)
#ifndef ISC_MEM_DEBUGGING
#define ISC_MEM_DEBUGGING 0
#endif /* ifndef ISC_MEM_DEBUGGING */
LIBISC_EXTERNAL_DATA unsigned int isc_mem_debugging = ISC_MEM_DEBUGGING;
LIBISC_EXTERNAL_DATA unsigned int isc_mem_defaultflags = ISC_MEMFLAG_DEFAULT;
/*
* Constants.
*/
2020-02-13 14:44:37 -08:00
#define DEF_MAX_SIZE 1100
#define ALIGNMENT_SIZE 8U /*%< must be a power of 2 */
#define DEBUG_TABLE_COUNT 512U
1998-08-17 22:05:58 +00:00
/*
* Types.
*/
#if ISC_MEM_TRACKLINES
typedef struct debuglink debuglink_t;
struct debuglink {
ISC_LINK(debuglink_t) link;
2020-02-13 14:44:37 -08:00
const void *ptr;
size_t size;
const char *file;
unsigned int line;
};
1998-08-17 22:05:58 +00:00
typedef ISC_LIST(debuglink_t) debuglist_t;
2017-08-24 10:58:20 +05:30
#define FLARG_PASS , file, line
2020-02-13 14:44:37 -08:00
#define FLARG , const char *file, unsigned int line
#else /* if ISC_MEM_TRACKLINES */
#define FLARG_PASS
#define FLARG
#endif /* if ISC_MEM_TRACKLINES */
typedef struct element element;
struct element {
element *next;
};
1998-08-17 22:05:58 +00:00
typedef struct {
/*!
1998-08-17 22:05:58 +00:00
* This structure must be ALIGNMENT_SIZE bytes.
*/
union {
2020-02-13 14:44:37 -08:00
size_t size;
isc_mem_t *ctx;
2020-02-13 14:44:37 -08:00
char bytes[ALIGNMENT_SIZE];
} u;
1998-12-13 23:45:21 +00:00
} size_info;
1998-08-17 22:05:58 +00:00
struct stats {
unsigned long gets;
unsigned long totalgets;
1998-08-17 22:05:58 +00:00
};
2020-02-13 14:44:37 -08:00
#define MEM_MAGIC ISC_MAGIC('M', 'e', 'm', 'C')
#define VALID_CONTEXT(c) ISC_MAGIC_VALID(c, MEM_MAGIC)
1998-12-13 02:04:56 +00:00
/* List of all active memory contexts. */
static ISC_LIST(isc_mem_t) contexts;
2020-02-13 14:44:37 -08:00
static isc_once_t once = ISC_ONCE_INIT;
static isc_mutex_t contextslock;
/*%
* Total size of lost memory due to a bug of external library.
* Locked by the global lock.
*/
static uint64_t totallost;
struct isc_mem {
unsigned int magic;
2020-02-13 14:44:37 -08:00
unsigned int flags;
isc_mutex_t lock;
size_t max_size;
bool checkfree;
struct stats *stats;
isc_refcount_t references;
char name[16];
size_t total;
size_t inuse;
size_t maxinuse;
size_t malloced;
size_t maxmalloced;
size_t hi_water;
size_t lo_water;
bool hi_called;
bool is_overmem;
isc_mem_water_t water;
2020-02-13 14:44:37 -08:00
void *water_arg;
ISC_LIST(isc_mempool_t) pools;
unsigned int poolcnt;
#if ISC_MEM_TRACKLINES
debuglist_t *debuglist;
2020-02-13 14:44:37 -08:00
size_t debuglistcnt;
#endif /* if ISC_MEM_TRACKLINES */
ISC_LINK(isc_mem_t) link;
1999-06-08 02:38:30 +00:00
};
2020-02-13 14:44:37 -08:00
#define MEMPOOL_MAGIC ISC_MAGIC('M', 'E', 'M', 'p')
#define VALID_MEMPOOL(c) ISC_MAGIC_VALID(c, MEMPOOL_MAGIC)
1999-06-08 02:38:30 +00:00
struct isc_mempool {
1999-09-15 17:47:08 +00:00
/* always unlocked */
unsigned int magic;
isc_mutex_t *lock; /*%< optional lock */
isc_mem_t *mctx; /*%< our memory context */
/*%< locked via the memory context's lock */
ISC_LINK(isc_mempool_t) link; /*%< next pool in this mem context */
/*%< optionally locked from here down */
2020-02-13 14:44:37 -08:00
element *items; /*%< low water item list */
size_t size; /*%< size of each item on this pool */
unsigned int maxalloc; /*%< max number of items allowed */
unsigned int allocated; /*%< # of items currently given out */
unsigned int freecount; /*%< # of items on reserved list */
unsigned int freemax; /*%< # of items allowed on free list */
unsigned int fillcount; /*%< # of items to fetch on each fill */
/*%< Stats only. */
unsigned int gets; /*%< # of requests to this pool */
/*%< Debugging only. */
#if ISC_MEMPOOL_NAMES
char name[16]; /*%< printed name in stats reports */
#endif /* if ISC_MEMPOOL_NAMES */
1998-08-17 22:05:58 +00:00
};
/*
* Private Inline-able.
*/
1998-08-17 22:05:58 +00:00
#if !ISC_MEM_TRACKLINES
#define ADD_TRACE(a, b, c, d, e)
#define DELETE_TRACE(a, b, c, d, e)
#define ISC_MEMFUNC_SCOPE
#else /* if !ISC_MEM_TRACKLINES */
#define TRACE_OR_RECORD (ISC_MEM_DEBUGTRACE | ISC_MEM_DEBUGRECORD)
#define ADD_TRACE(a, b, c, d, e) \
do { \
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY((isc_mem_debugging & TRACE_OR_RECORD) != 0 && \
b != NULL)) \
add_trace_entry(a, b, c, d, e); \
} while (0)
#define DELETE_TRACE(a, b, c, d, e) \
do { \
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY((isc_mem_debugging & TRACE_OR_RECORD) != 0 && \
b != NULL)) \
delete_trace_entry(a, b, c, d, e); \
} while (0)
2020-02-14 08:14:03 +01:00
static void
print_active(isc_mem_t *ctx, FILE *out);
#endif /* ISC_MEM_TRACKLINES */
#if ISC_MEM_TRACKLINES
/*!
* mctx must be locked.
*/
2017-08-24 10:58:20 +05:30
static void
add_trace_entry(isc_mem_t *mctx, const void *ptr, size_t size FLARG) {
debuglink_t *dl;
2020-02-13 14:44:37 -08:00
uint32_t hash;
uint32_t idx;
2018-11-23 21:35:01 +01:00
if ((isc_mem_debugging & ISC_MEM_DEBUGTRACE) != 0) {
fprintf(stderr, "add %p size %zu file %s line %u mctx %p\n",
ptr, size, file, line, mctx);
2018-11-23 21:35:01 +01:00
}
if (mctx->debuglist == NULL) {
return;
}
#ifdef __COVERITY__
/*
* Use simple conversion from pointer to hash to avoid
* tainting 'ptr' due to byte swap in isc_hash_function.
*/
hash = (uintptr_t)ptr >> 3;
#else
hash = isc_hash_function(&ptr, sizeof(ptr), true);
#endif
2017-08-24 10:58:20 +05:30
idx = hash % DEBUG_TABLE_COUNT;
dl = malloc(sizeof(debuglink_t));
INSIST(dl != NULL);
mctx->malloced += sizeof(debuglink_t);
if (mctx->malloced > mctx->maxmalloced) {
mctx->maxmalloced = mctx->malloced;
}
ISC_LINK_INIT(dl, link);
2017-08-24 10:58:20 +05:30
dl->ptr = ptr;
dl->size = size;
dl->file = file;
dl->line = line;
2017-08-24 10:58:20 +05:30
ISC_LIST_PREPEND(mctx->debuglist[idx], dl, link);
mctx->debuglistcnt++;
}
2017-08-24 10:58:20 +05:30
static void
delete_trace_entry(isc_mem_t *mctx, const void *ptr, size_t size,
2020-02-13 14:44:37 -08:00
const char *file, unsigned int line) {
debuglink_t *dl;
2020-02-13 14:44:37 -08:00
uint32_t hash;
uint32_t idx;
2018-11-23 21:35:01 +01:00
if ((isc_mem_debugging & ISC_MEM_DEBUGTRACE) != 0) {
fprintf(stderr, "del %p size %zu file %s line %u mctx %p\n",
ptr, size, file, line, mctx);
2018-11-23 21:35:01 +01:00
}
if (mctx->debuglist == NULL) {
return;
}
#ifdef __COVERITY__
/*
* Use simple conversion from pointer to hash to avoid
* tainting 'ptr' due to byte swap in isc_hash_function.
*/
hash = (uintptr_t)ptr >> 3;
#else
hash = isc_hash_function(&ptr, sizeof(ptr), true);
#endif
2017-08-24 10:58:20 +05:30
idx = hash % DEBUG_TABLE_COUNT;
dl = ISC_LIST_HEAD(mctx->debuglist[idx]);
while (ISC_LIKELY(dl != NULL)) {
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY(dl->ptr == ptr)) {
ISC_LIST_UNLINK(mctx->debuglist[idx], dl, link);
mctx->malloced -= sizeof(*dl);
free(dl);
2017-08-24 10:58:20 +05:30
return;
}
dl = ISC_LIST_NEXT(dl, link);
}
/*
* If we get here, we didn't find the item on the list. We're
* screwed.
*/
2017-08-24 10:58:20 +05:30
INSIST(0);
ISC_UNREACHABLE();
}
#endif /* ISC_MEM_TRACKLINES */
static void *
default_memalloc(size_t size);
static void
default_memfree(void *ptr);
/*!
* Perform a malloc, doing memory filling and overrun detection as necessary.
*/
static inline void *
mem_get(isc_mem_t *ctx, size_t size) {
char *ret;
#if ISC_MEM_CHECKOVERRUN
size += 1;
#endif /* if ISC_MEM_CHECKOVERRUN */
ret = default_memalloc(size);
if (ISC_UNLIKELY((ctx->flags & ISC_MEMFLAG_FILL) != 0)) {
if (ISC_LIKELY(ret != NULL)) {
memset(ret, 0xbe, size); /* Mnemonic for "beef". */
}
}
#if ISC_MEM_CHECKOVERRUN
2020-02-13 14:44:37 -08:00
else
{
if (ISC_LIKELY(ret != NULL)) {
ret[size - 1] = 0xbe;
}
}
#endif /* if ISC_MEM_CHECKOVERRUN */
return (ret);
}
/*!
* Perform a free, doing memory filling and overrun detection as necessary.
*/
2012-11-02 11:16:32 +11:00
/* coverity[+free : arg-1] */
static inline void
mem_put(isc_mem_t *ctx, void *mem, size_t size) {
#if ISC_MEM_CHECKOVERRUN
INSIST(((unsigned char *)mem)[size] == 0xbe);
size += 1;
#endif /* if ISC_MEM_CHECKOVERRUN */
if (ISC_UNLIKELY((ctx->flags & ISC_MEMFLAG_FILL) != 0)) {
memset(mem, 0xde, size); /* Mnemonic for "dead". */
}
default_memfree(mem);
}
/*!
* Update internal counters after a memory get.
*/
static inline void
mem_getstats(isc_mem_t *ctx, size_t size) {
ctx->total += size;
ctx->inuse += size;
if (size > ctx->max_size) {
ctx->stats[ctx->max_size].gets++;
ctx->stats[ctx->max_size].totalgets++;
} else {
ctx->stats[size].gets++;
ctx->stats[size].totalgets++;
}
#if ISC_MEM_CHECKOVERRUN
size += 1;
#endif /* if ISC_MEM_CHECKOVERRUN */
ctx->malloced += size;
if (ctx->malloced > ctx->maxmalloced) {
ctx->maxmalloced = ctx->malloced;
}
}
/*!
* Update internal counters after a memory put.
*/
static inline void
mem_putstats(isc_mem_t *ctx, void *ptr, size_t size) {
UNUSED(ptr);
INSIST(ctx->inuse >= size);
ctx->inuse -= size;
if (size > ctx->max_size) {
2003-07-25 00:01:16 +00:00
INSIST(ctx->stats[ctx->max_size].gets > 0U);
ctx->stats[ctx->max_size].gets--;
} else {
2003-07-25 00:01:16 +00:00
INSIST(ctx->stats[size].gets > 0U);
ctx->stats[size].gets--;
}
#if ISC_MEM_CHECKOVERRUN
size += 1;
#endif /* if ISC_MEM_CHECKOVERRUN */
ctx->malloced -= size;
}
/*
* Private.
*/
static void *
2020-02-13 14:44:37 -08:00
default_memalloc(size_t size) {
2018-11-12 11:50:52 +01:00
void *ptr;
ptr = malloc(size);
/*
* If the space cannot be allocated, a null pointer is returned. If the
* size of the space requested is zero, the behavior is
* implementation-defined: either a null pointer is returned, or the
* behavior is as if the size were some nonzero value, except that the
* returned pointer shall not be used to access an object.
* [ISO9899 § 7.22.3]
*
* [ISO9899]
* ISO/IEC WG 9899:2011: Programming languages - C.
* International Organization for Standardization, Geneva,
* Switzerland.
2018-11-12 11:50:52 +01:00
* http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1570.pdf
*/
if (ptr == NULL && size != 0) {
char strbuf[ISC_STRERRORSIZE];
2018-11-16 12:23:36 +11:00
strerror_r(errno, strbuf, sizeof(strbuf));
2018-11-15 12:54:11 -08:00
isc_error_fatal(__FILE__, __LINE__, "malloc failed: %s",
2018-11-16 12:23:36 +11:00
strbuf);
2018-11-12 11:50:52 +01:00
}
return (ptr);
}
static void
2020-02-13 14:44:37 -08:00
default_memfree(void *ptr) {
free(ptr);
}
static void
2020-02-13 14:44:37 -08:00
initialize_action(void) {
2018-11-16 15:33:22 +01:00
isc_mutex_init(&contextslock);
2007-10-30 23:30:09 +00:00
ISC_LIST_INIT(contexts);
totallost = 0;
}
static void
2020-02-13 14:44:37 -08:00
mem_create(isc_mem_t **ctxp, unsigned int flags) {
REQUIRE(ctxp != NULL && *ctxp == NULL);
isc_mem_t *ctx;
STATIC_ASSERT((ALIGNMENT_SIZE & (ALIGNMENT_SIZE - 1)) == 0,
"wrong alignment size");
RUNTIME_CHECK(isc_once_do(&once, initialize_action) == ISC_R_SUCCESS);
ctx = (default_memalloc)(sizeof(*ctx));
isc_mutex_init(&ctx->lock);
ctx->max_size = DEF_MAX_SIZE;
ctx->flags = flags;
isc_refcount_init(&ctx->references, 1);
memset(ctx->name, 0, sizeof(ctx->name));
ctx->total = 0;
ctx->inuse = 0;
ctx->maxinuse = 0;
ctx->malloced = sizeof(*ctx);
ctx->maxmalloced = sizeof(*ctx);
ctx->hi_water = 0;
ctx->lo_water = 0;
ctx->hi_called = false;
ctx->is_overmem = false;
ctx->water = NULL;
ctx->water_arg = NULL;
ctx->magic = MEM_MAGIC;
ctx->stats = NULL;
ctx->checkfree = true;
#if ISC_MEM_TRACKLINES
ctx->debuglist = NULL;
ctx->debuglistcnt = 0;
#endif /* if ISC_MEM_TRACKLINES */
ISC_LIST_INIT(ctx->pools);
ctx->poolcnt = 0;
ctx->stats =
default_memalloc((ctx->max_size + 1) * sizeof(struct stats));
2001-11-27 01:56:32 +00:00
memset(ctx->stats, 0, (ctx->max_size + 1) * sizeof(struct stats));
ctx->malloced += (ctx->max_size + 1) * sizeof(struct stats);
ctx->maxmalloced += (ctx->max_size + 1) * sizeof(struct stats);
2000-12-01 00:52:38 +00:00
#if ISC_MEM_TRACKLINES
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY((isc_mem_debugging & ISC_MEM_DEBUGRECORD) != 0)) {
unsigned int i;
ctx->debuglist = default_memalloc(
(DEBUG_TABLE_COUNT * sizeof(debuglist_t)));
for (i = 0; i < DEBUG_TABLE_COUNT; i++) {
ISC_LIST_INIT(ctx->debuglist[i]);
}
2017-08-24 10:58:20 +05:30
ctx->malloced += DEBUG_TABLE_COUNT * sizeof(debuglist_t);
ctx->maxmalloced += DEBUG_TABLE_COUNT * sizeof(debuglist_t);
}
#endif /* if ISC_MEM_TRACKLINES */
LOCK(&contextslock);
ISC_LIST_INITANDAPPEND(contexts, ctx, link);
UNLOCK(&contextslock);
*ctxp = ctx;
}
/*
* Public.
*/
static void
destroy(isc_mem_t *ctx) {
unsigned int i;
LOCK(&contextslock);
ISC_LIST_UNLINK(contexts, ctx, link);
totallost += ctx->inuse;
UNLOCK(&contextslock);
ctx->magic = 0;
INSIST(ISC_LIST_EMPTY(ctx->pools));
2000-12-01 00:52:38 +00:00
#if ISC_MEM_TRACKLINES
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY(ctx->debuglist != NULL)) {
debuglink_t *dl;
for (i = 0; i < DEBUG_TABLE_COUNT; i++) {
for (dl = ISC_LIST_HEAD(ctx->debuglist[i]); dl != NULL;
2020-02-13 14:44:37 -08:00
dl = ISC_LIST_HEAD(ctx->debuglist[i]))
{
if (ctx->checkfree && dl->ptr != NULL) {
print_active(ctx, stderr);
}
INSIST(!ctx->checkfree || dl->ptr == NULL);
2017-08-24 10:58:20 +05:30
ISC_LIST_UNLINK(ctx->debuglist[i], dl, link);
2017-08-24 10:58:20 +05:30
free(dl);
ctx->malloced -= sizeof(*dl);
}
}
2017-08-24 10:58:20 +05:30
default_memfree(ctx->debuglist);
2017-08-24 10:58:20 +05:30
ctx->malloced -= DEBUG_TABLE_COUNT * sizeof(debuglist_t);
}
#endif /* if ISC_MEM_TRACKLINES */
if (ctx->checkfree) {
for (i = 0; i <= ctx->max_size; i++) {
2015-03-27 23:09:28 +05:30
if (ctx->stats[i].gets != 0U) {
fprintf(stderr,
"Failing assertion due to probable "
"leaked memory in context %p (\"%s\") "
"(stats[%u].gets == %lu).\n",
ctx, ctx->name, i, ctx->stats[i].gets);
#if ISC_MEM_TRACKLINES
print_active(ctx, stderr);
#endif /* if ISC_MEM_TRACKLINES */
2015-03-27 23:09:28 +05:30
INSIST(ctx->stats[i].gets == 0U);
}
}
}
default_memfree(ctx->stats);
ctx->malloced -= (ctx->max_size + 1) * sizeof(struct stats);
isc_mutex_destroy(&ctx->lock);
ctx->malloced -= sizeof(*ctx);
if (ctx->checkfree) {
INSIST(ctx->malloced == 0);
}
default_memfree(ctx);
}
void
isc_mem_attach(isc_mem_t *source, isc_mem_t **targetp) {
REQUIRE(VALID_CONTEXT(source));
REQUIRE(targetp != NULL && *targetp == NULL);
isc_refcount_increment(&source->references);
*targetp = source;
}
void
2020-02-13 14:44:37 -08:00
isc_mem_detach(isc_mem_t **ctxp) {
REQUIRE(ctxp != NULL && VALID_CONTEXT(*ctxp));
isc_mem_t *ctx = *ctxp;
*ctxp = NULL;
if (isc_refcount_decrement(&ctx->references) == 1) {
isc_refcount_destroy(&ctx->references);
destroy(ctx);
}
}
2000-09-05 03:30:19 +00:00
/*
* isc_mem_putanddetach() is the equivalent of:
*
* mctx = NULL;
* isc_mem_attach(ptr->mctx, &mctx);
* isc_mem_detach(&ptr->mctx);
* isc_mem_put(mctx, ptr, sizeof(*ptr);
* isc_mem_detach(&mctx);
*/
void
isc__mem_putanddetach(isc_mem_t **ctxp, void *ptr, size_t size FLARG) {
REQUIRE(ctxp != NULL && VALID_CONTEXT(*ctxp));
2000-09-05 03:30:19 +00:00
REQUIRE(ptr != NULL);
isc_mem_t *ctx = *ctxp;
2000-09-05 03:30:19 +00:00
*ctxp = NULL;
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY((isc_mem_debugging &
2020-02-13 14:44:37 -08:00
(ISC_MEM_DEBUGSIZE | ISC_MEM_DEBUGCTX)) != 0))
{
if ((isc_mem_debugging & ISC_MEM_DEBUGSIZE) != 0) {
size_info *si = &(((size_info *)ptr)[-1]);
2020-02-13 14:44:37 -08:00
size_t oldsize = si->u.size - ALIGNMENT_SIZE;
if ((isc_mem_debugging & ISC_MEM_DEBUGCTX) != 0) {
oldsize -= ALIGNMENT_SIZE;
}
INSIST(oldsize == size);
}
isc__mem_free(ctx, ptr FLARG_PASS);
goto destroy;
}
MCTXLOCK(ctx);
DELETE_TRACE(ctx, ptr, size, file, line);
mem_putstats(ctx, ptr, size);
mem_put(ctx, ptr, size);
MCTXUNLOCK(ctx);
2000-09-05 03:30:19 +00:00
destroy:
if (isc_refcount_decrement(&ctx->references) == 1) {
isc_refcount_destroy(&ctx->references);
2000-09-05 03:30:19 +00:00
destroy(ctx);
}
2000-09-05 03:30:19 +00:00
}
void
2020-02-13 14:44:37 -08:00
isc_mem_destroy(isc_mem_t **ctxp) {
/*
* This routine provides legacy support for callers who use mctxs
* without attaching/detaching.
*/
REQUIRE(ctxp != NULL && VALID_CONTEXT(*ctxp));
isc_mem_t *ctx = *ctxp;
2001-02-13 13:20:37 +00:00
#if ISC_MEM_TRACKLINES
if (isc_refcount_decrement(&ctx->references) > 1) {
print_active(ctx, stderr);
}
#else /* if ISC_MEM_TRACKLINES */
isc_refcount_decrementz(&ctx->references);
#endif /* if ISC_MEM_TRACKLINES */
isc_refcount_destroy(&ctx->references);
2000-12-06 23:39:04 +00:00
destroy(ctx);
*ctxp = NULL;
}
void *
isc__mem_get(isc_mem_t *ctx, size_t size FLARG) {
REQUIRE(VALID_CONTEXT(ctx));
2020-02-13 14:44:37 -08:00
void *ptr;
bool call_water = false;
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY((isc_mem_debugging &
2020-02-13 14:44:37 -08:00
(ISC_MEM_DEBUGSIZE | ISC_MEM_DEBUGCTX)) != 0))
{
return (isc__mem_allocate(ctx, size FLARG_PASS));
}
ptr = mem_get(ctx, size);
MCTXLOCK(ctx);
mem_getstats(ctx, size);
ADD_TRACE(ctx, ptr, size, file, line);
2017-08-24 10:58:20 +05:30
if (ctx->hi_water != 0U && ctx->inuse > ctx->hi_water) {
ctx->is_overmem = true;
if (!ctx->hi_called) {
call_water = true;
}
2000-08-31 12:15:17 +00:00
}
if (ctx->inuse > ctx->maxinuse) {
ctx->maxinuse = ctx->inuse;
2003-07-25 00:01:16 +00:00
if (ctx->hi_water != 0U && ctx->inuse > ctx->hi_water &&
2020-02-13 14:44:37 -08:00
(isc_mem_debugging & ISC_MEM_DEBUGUSAGE) != 0)
{
fprintf(stderr, "maxinuse = %lu\n",
(unsigned long)ctx->inuse);
}
}
MCTXUNLOCK(ctx);
2000-08-31 12:15:17 +00:00
if (call_water && (ctx->water != NULL)) {
2000-08-31 12:15:17 +00:00
(ctx->water)(ctx->water_arg, ISC_MEM_HIWATER);
}
2000-08-31 12:15:17 +00:00
1998-08-17 22:05:58 +00:00
return (ptr);
}
void
isc__mem_put(isc_mem_t *ctx, void *ptr, size_t size FLARG) {
REQUIRE(VALID_CONTEXT(ctx));
REQUIRE(ptr != NULL);
2020-02-13 14:44:37 -08:00
bool call_water = false;
size_info *si;
size_t oldsize;
2000-08-31 12:15:17 +00:00
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY((isc_mem_debugging &
2020-02-13 14:44:37 -08:00
(ISC_MEM_DEBUGSIZE | ISC_MEM_DEBUGCTX)) != 0))
{
if ((isc_mem_debugging & ISC_MEM_DEBUGSIZE) != 0) {
si = &(((size_info *)ptr)[-1]);
oldsize = si->u.size - ALIGNMENT_SIZE;
if ((isc_mem_debugging & ISC_MEM_DEBUGCTX) != 0) {
oldsize -= ALIGNMENT_SIZE;
}
INSIST(oldsize == size);
}
isc__mem_free(ctx, ptr FLARG_PASS);
return;
}
MCTXLOCK(ctx);
DELETE_TRACE(ctx, ptr, size, file, line);
mem_putstats(ctx, ptr, size);
mem_put(ctx, ptr, size);
/*
* The check against ctx->lo_water == 0 is for the condition
* when the context was pushed over hi_water but then had
* isc_mem_setwater() called with 0 for hi_water and lo_water.
*/
if ((ctx->inuse < ctx->lo_water) || (ctx->lo_water == 0U)) {
ctx->is_overmem = false;
if (ctx->hi_called) {
call_water = true;
}
2000-08-31 12:15:17 +00:00
}
MCTXUNLOCK(ctx);
2000-08-31 12:15:17 +00:00
if (call_water && (ctx->water != NULL)) {
2000-08-31 12:15:17 +00:00
(ctx->water)(ctx->water_arg, ISC_MEM_LOWATER);
}
1998-08-17 22:05:58 +00:00
}
void
isc_mem_waterack(isc_mem_t *ctx, int flag) {
REQUIRE(VALID_CONTEXT(ctx));
MCTXLOCK(ctx);
if (flag == ISC_MEM_LOWATER) {
ctx->hi_called = false;
} else if (flag == ISC_MEM_HIWATER) {
ctx->hi_called = true;
}
MCTXUNLOCK(ctx);
}
2001-02-13 13:20:37 +00:00
#if ISC_MEM_TRACKLINES
static void
print_active(isc_mem_t *mctx, FILE *out) {
if (mctx->debuglist != NULL) {
debuglink_t *dl;
2017-08-24 10:58:20 +05:30
unsigned int i;
2020-02-13 14:44:37 -08:00
bool found;
2020-04-02 18:51:06 -07:00
fprintf(out, "Dump of all outstanding memory allocations:\n");
found = false;
2017-08-24 10:58:20 +05:30
for (i = 0; i < DEBUG_TABLE_COUNT; i++) {
dl = ISC_LIST_HEAD(mctx->debuglist[i]);
2008-01-18 23:46:58 +00:00
2018-11-23 21:35:01 +01:00
if (dl != NULL) {
found = true;
2018-11-23 21:35:01 +01:00
}
while (dl != NULL) {
2018-11-23 21:35:01 +01:00
if (dl->ptr != NULL) {
fprintf(out,
"\tptr %p size %zu file %s "
"line %u\n",
dl->ptr, dl->size, dl->file,
dl->line);
2018-11-23 21:35:01 +01:00
}
dl = ISC_LIST_NEXT(dl, link);
}
}
2017-08-24 10:58:20 +05:30
2018-11-23 21:35:01 +01:00
if (!found) {
2020-04-02 18:51:06 -07:00
fprintf(out, "\tNone.\n");
2018-11-23 21:35:01 +01:00
}
}
}
#endif /* if ISC_MEM_TRACKLINES */
/*
* Print the stats[] on the stream "out" with suitable formatting.
*/
void
isc_mem_stats(isc_mem_t *ctx, FILE *out) {
REQUIRE(VALID_CONTEXT(ctx));
2020-02-13 14:44:37 -08:00
size_t i;
const struct stats *s;
const isc_mempool_t *pool;
1998-08-17 22:05:58 +00:00
MCTXLOCK(ctx);
1998-08-17 22:05:58 +00:00
for (i = 0; i <= ctx->max_size; i++) {
s = &ctx->stats[i];
1999-06-08 02:38:30 +00:00
if (s->totalgets == 0U && s->gets == 0U) {
continue;
}
fprintf(out, "%s%5lu: %11lu gets, %11lu rem",
(i == ctx->max_size) ? ">=" : " ", (unsigned long)i,
s->totalgets, s->gets);
fputc('\n', out);
1999-06-08 02:38:30 +00:00
}
1999-09-15 17:47:08 +00:00
/*
* Note that since a pool can be locked now, these stats might be
* somewhat off if the pool is in active use at the time the stats
* are dumped. The link fields are protected by the isc_mem_t's
* lock, however, so walking this list and extracting integers from
1999-09-15 17:47:08 +00:00
* stats fields is always safe.
*/
1999-06-08 02:38:30 +00:00
pool = ISC_LIST_HEAD(ctx->pools);
if (pool != NULL) {
2020-04-02 18:51:06 -07:00
fprintf(out, "[Pool statistics]\n");
1999-10-19 01:22:39 +00:00
fprintf(out, "%15s %10s %10s %10s %10s %10s %10s %10s %1s\n",
2018-11-23 21:35:01 +01:00
"name", "size", "maxalloc", "allocated", "freecount",
"freemax", "fillcount", "gets", "L");
1999-06-08 02:38:30 +00:00
}
while (pool != NULL) {
fprintf(out, "%15s %10lu %10u %10u %10u %10u %10u %10u %s\n",
#if ISC_MEMPOOL_NAMES
pool->name,
#else /* if ISC_MEMPOOL_NAMES */
"(not tracked)",
#endif /* if ISC_MEMPOOL_NAMES */
(unsigned long)pool->size, pool->maxalloc,
1999-10-19 01:22:39 +00:00
pool->allocated, pool->freecount, pool->freemax,
pool->fillcount, pool->gets,
1999-09-15 17:47:08 +00:00
(pool->lock == NULL ? "N" : "Y"));
1999-06-08 02:38:30 +00:00
pool = ISC_LIST_NEXT(pool, link);
1998-08-17 22:05:58 +00:00
}
2001-02-13 13:20:37 +00:00
#if ISC_MEM_TRACKLINES
print_active(ctx, out);
#endif /* if ISC_MEM_TRACKLINES */
MCTXUNLOCK(ctx);
1998-08-17 22:05:58 +00:00
}
/*
* Replacements for malloc() and free() -- they implicitly remember the
* size of the object allocated (with some additional overhead).
1998-08-17 22:05:58 +00:00
*/
static void *
mem_allocateunlocked(isc_mem_t *ctx, size_t size) {
2020-02-13 14:44:37 -08:00
size_info *si;
1998-08-17 22:05:58 +00:00
size += ALIGNMENT_SIZE;
if (ISC_UNLIKELY((isc_mem_debugging & ISC_MEM_DEBUGCTX) != 0)) {
size += ALIGNMENT_SIZE;
}
si = mem_get(ctx, size);
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY((isc_mem_debugging & ISC_MEM_DEBUGCTX) != 0)) {
si->u.ctx = ctx;
si++;
}
si->u.size = size;
1998-08-17 22:05:58 +00:00
return (&si[1]);
}
void *
isc__mem_allocate(isc_mem_t *ctx, size_t size FLARG) {
REQUIRE(VALID_CONTEXT(ctx));
2020-02-13 14:44:37 -08:00
size_info *si;
bool call_water = false;
MCTXLOCK(ctx);
si = mem_allocateunlocked(ctx, size);
mem_getstats(ctx, si[-1].u.size);
ADD_TRACE(ctx, si, si[-1].u.size, file, line);
if (ctx->hi_water != 0U && ctx->inuse > ctx->hi_water &&
2010-08-11 23:46:42 +00:00
!ctx->is_overmem) {
ctx->is_overmem = true;
}
if (ctx->hi_water != 0U && !ctx->hi_called &&
ctx->inuse > ctx->hi_water) {
ctx->hi_called = true;
call_water = true;
}
if (ctx->inuse > ctx->maxinuse) {
ctx->maxinuse = ctx->inuse;
2020-02-13 14:44:37 -08:00
if (ISC_UNLIKELY(ctx->hi_water != 0U &&
ctx->inuse > ctx->hi_water &&
(isc_mem_debugging & ISC_MEM_DEBUGUSAGE) != 0))
{
fprintf(stderr, "maxinuse = %lu\n",
(unsigned long)ctx->inuse);
}
}
MCTXUNLOCK(ctx);
if (call_water) {
(ctx->water)(ctx->water_arg, ISC_MEM_HIWATER);
}
return (si);
}
void *
isc__mem_reallocate(isc_mem_t *ctx, void *ptr, size_t size FLARG) {
REQUIRE(VALID_CONTEXT(ctx));
2020-02-13 14:44:37 -08:00
void *new_ptr = NULL;
size_t oldsize, copysize;
/*
* This function emulates the realloc(3) standard library function:
* - if size > 0, allocate new memory; and if ptr is non NULL, copy
* as much of the old contents to the new buffer and free the old one.
* Note that when allocation fails the original pointer is intact;
* the caller must free it.
* - if size is 0 and ptr is non NULL, simply free the given ptr.
* - this function returns:
* pointer to the newly allocated memory, or
* NULL if allocation fails or doesn't happen.
*/
if (size > 0U) {
new_ptr = isc__mem_allocate(ctx, size FLARG_PASS);
if (new_ptr != NULL && ptr != NULL) {
oldsize = (((size_info *)ptr)[-1]).u.size;
INSIST(oldsize >= ALIGNMENT_SIZE);
oldsize -= ALIGNMENT_SIZE;
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY((isc_mem_debugging &
ISC_MEM_DEBUGCTX) != 0)) {
INSIST(oldsize >= ALIGNMENT_SIZE);
oldsize -= ALIGNMENT_SIZE;
}
copysize = (oldsize > size) ? size : oldsize;
memmove(new_ptr, ptr, copysize);
isc__mem_free(ctx, ptr FLARG_PASS);
}
} else if (ptr != NULL) {
isc__mem_free(ctx, ptr FLARG_PASS);
}
return (new_ptr);
}
void
isc__mem_free(isc_mem_t *ctx, void *ptr FLARG) {
REQUIRE(VALID_CONTEXT(ctx));
REQUIRE(ptr != NULL);
2020-02-13 14:44:37 -08:00
size_info *si;
size_t size;
bool call_water = false;
1998-08-17 22:05:58 +00:00
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY((isc_mem_debugging & ISC_MEM_DEBUGCTX) != 0)) {
si = &(((size_info *)ptr)[-2]);
REQUIRE(si->u.ctx == ctx);
size = si[1].u.size;
} else {
si = &(((size_info *)ptr)[-1]);
size = si->u.size;
}
MCTXLOCK(ctx);
DELETE_TRACE(ctx, ptr, size, file, line);
mem_putstats(ctx, si, size);
mem_put(ctx, si, size);
/*
* The check against ctx->lo_water == 0 is for the condition
* when the context was pushed over hi_water but then had
* isc_mem_setwater() called with 0 for hi_water and lo_water.
*/
if (ctx->is_overmem &&
(ctx->inuse < ctx->lo_water || ctx->lo_water == 0U)) {
ctx->is_overmem = false;
}
2008-01-18 23:46:58 +00:00
if (ctx->hi_called &&
(ctx->inuse < ctx->lo_water || ctx->lo_water == 0U)) {
ctx->hi_called = false;
if (ctx->water != NULL) {
call_water = true;
}
}
MCTXUNLOCK(ctx);
if (call_water) {
(ctx->water)(ctx->water_arg, ISC_MEM_LOWATER);
}
1998-08-17 22:05:58 +00:00
}
1999-01-14 19:52:52 +00:00
/*
* Other useful things.
*/
char *
isc__mem_strdup(isc_mem_t *mctx, const char *s FLARG) {
REQUIRE(VALID_CONTEXT(mctx));
REQUIRE(s != NULL);
2020-02-13 14:44:37 -08:00
size_t len;
char *ns;
1998-12-30 20:17:02 +00:00
len = strlen(s) + 1;
1998-12-30 20:17:02 +00:00
ns = isc__mem_allocate(mctx, len FLARG_PASS);
if (ns != NULL) {
strlcpy(ns, s, len);
}
return (ns);
}
char *
isc__mem_strndup(isc_mem_t *mctx, const char *s, size_t size FLARG) {
REQUIRE(VALID_CONTEXT(mctx));
REQUIRE(s != NULL);
size_t len;
char *ns;
len = strlen(s) + 1;
if (len > size) {
len = size;
}
ns = isc__mem_allocate(mctx, len FLARG_PASS);
if (ns != NULL) {
strlcpy(ns, s, len);
}
return (ns);
}
void
isc_mem_setdestroycheck(isc_mem_t *ctx, bool flag) {
REQUIRE(VALID_CONTEXT(ctx));
MCTXLOCK(ctx);
ctx->checkfree = flag;
MCTXUNLOCK(ctx);
}
size_t
isc_mem_inuse(isc_mem_t *ctx) {
REQUIRE(VALID_CONTEXT(ctx));
2020-02-13 14:44:37 -08:00
size_t inuse;
MCTXLOCK(ctx);
inuse = ctx->inuse;
MCTXUNLOCK(ctx);
return (inuse);
}
size_t
isc_mem_maxinuse(isc_mem_t *ctx) {
REQUIRE(VALID_CONTEXT(ctx));
2020-02-13 14:44:37 -08:00
size_t maxinuse;
MCTXLOCK(ctx);
maxinuse = ctx->maxinuse;
MCTXUNLOCK(ctx);
return (maxinuse);
}
size_t
isc_mem_total(isc_mem_t *ctx) {
REQUIRE(VALID_CONTEXT(ctx));
2020-02-13 14:44:37 -08:00
size_t total;
MCTXLOCK(ctx);
total = ctx->total;
MCTXUNLOCK(ctx);
return (total);
}
void
isc_mem_setwater(isc_mem_t *ctx, isc_mem_water_t water, void *water_arg,
2020-02-13 14:44:37 -08:00
size_t hiwater, size_t lowater) {
REQUIRE(VALID_CONTEXT(ctx));
REQUIRE(hiwater >= lowater);
2020-02-13 14:44:37 -08:00
bool callwater = false;
isc_mem_water_t oldwater;
2020-02-13 14:44:37 -08:00
void *oldwater_arg;
MCTXLOCK(ctx);
oldwater = ctx->water;
oldwater_arg = ctx->water_arg;
2000-08-31 12:15:17 +00:00
if (water == NULL) {
callwater = ctx->hi_called;
2000-08-31 12:15:17 +00:00
ctx->water = NULL;
ctx->water_arg = NULL;
2000-09-12 13:46:12 +00:00
ctx->hi_water = 0;
ctx->lo_water = 0;
2000-08-31 12:15:17 +00:00
} else {
if (ctx->hi_called &&
(ctx->water != water || ctx->water_arg != water_arg ||
2020-02-13 14:44:37 -08:00
ctx->inuse < lowater || lowater == 0U))
{
callwater = true;
}
2000-08-31 12:15:17 +00:00
ctx->water = water;
ctx->water_arg = water_arg;
ctx->hi_water = hiwater;
ctx->lo_water = lowater;
}
MCTXUNLOCK(ctx);
2008-01-18 23:46:58 +00:00
if (callwater && oldwater != NULL) {
(oldwater)(oldwater_arg, ISC_MEM_LOWATER);
}
2000-08-31 12:15:17 +00:00
}
Exclude isc_mem_isovermem from ThreadSanitizer The .is_overmem member of isc_mem_t structure is intentionally accessed unlocked as 100% accuracy isn't necessary here. Without the attribute, following TSAN warning would show up: WARNING: ThreadSanitizer: data race Write of size 1 at 0x000000000001 by thread T1 (mutexes: write M1, write M2): #0 isc___mem_put lib/isc/mem.c:1119:19 #1 isc__mem_put lib/isc/mem.c:2439:2 #2 dns_rdataslab_fromrdataset lib/dns/rdataslab.c:327:2 #3 addrdataset lib/dns/rbtdb.c:6761:11 #4 dns_db_addrdataset lib/dns/db.c:719:10 #5 cache_name lib/dns/resolver.c:6538:13 #6 cache_message lib/dns/resolver.c:6628:14 #7 resquery_response lib/dns/resolver.c:7883:13 #8 dispatch lib/isc/task.c:1152:7 #9 run lib/isc/task.c:1344:2 Previous read of size 1 at 0x000000000001 by thread T2 (mutexes: write M3): #0 isc_mem_isovermem lib/isc/mem.c:1553:15 #1 addrdataset lib/dns/rbtdb.c:6866:25 #2 dns_db_addrdataset lib/dns/db.c:719:10 #3 addoptout lib/dns/ncache.c:281:10 #4 dns_ncache_add lib/dns/ncache.c:101:10 #5 ncache_adderesult lib/dns/resolver.c:6668:12 #6 ncache_message lib/dns/resolver.c:6845:11 #7 rctx_ncache lib/dns/resolver.c:9174:11 #8 resquery_response lib/dns/resolver.c:7894:2 #9 dispatch lib/isc/task.c:1152:7 #10 run lib/isc/task.c:1344:2 Location is heap block of size 328 at 0x000000000020 allocated by thread T3: #0 malloc <null> #1 default_memalloc lib/isc/mem.c:713:8 #2 mem_create lib/isc/mem.c:763:8 #3 isc_mem_create lib/isc/mem.c:2425:2 #4 configure_view bin/named/server.c:4494:4 #5 load_configuration bin/named/server.c:9062:3 #6 run_server bin/named/server.c:9771:2 #7 dispatch lib/isc/task.c:1152:7 #8 run lib/isc/task.c:1344:2 [...] SUMMARY: ThreadSanitizer: data race lib/isc/mem.c:1119:19 in isc___mem_put
2020-09-17 14:05:10 +02:00
ISC_NO_SANITIZE_THREAD bool
isc_mem_isovermem(isc_mem_t *ctx) {
REQUIRE(VALID_CONTEXT(ctx));
/*
* We don't bother to lock the context because 100% accuracy isn't
* necessary (and even if we locked the context the returned value
* could be different from the actual state when it's used anyway)
*/
return (ctx->is_overmem);
}
void
isc_mem_setname(isc_mem_t *ctx, const char *name) {
REQUIRE(VALID_CONTEXT(ctx));
LOCK(&ctx->lock);
strlcpy(ctx->name, name, sizeof(ctx->name));
UNLOCK(&ctx->lock);
}
const char *
isc_mem_getname(isc_mem_t *ctx) {
REQUIRE(VALID_CONTEXT(ctx));
if (ctx->name[0] == 0) {
return ("");
}
return (ctx->name);
}
1999-06-08 02:38:30 +00:00
/*
* Memory pool stuff
*/
void
isc_mempool_create(isc_mem_t *mctx, size_t size, isc_mempool_t **mpctxp) {
REQUIRE(VALID_CONTEXT(mctx));
2003-07-25 00:01:16 +00:00
REQUIRE(size > 0U);
1999-06-08 02:38:30 +00:00
REQUIRE(mpctxp != NULL && *mpctxp == NULL);
isc_mempool_t *mpctx;
1999-06-08 02:38:30 +00:00
/*
* Allocate space for this pool, initialize values, and if all works
* well, attach to the memory context.
*/
mpctx = isc_mem_get(mctx, sizeof(isc_mempool_t));
1999-06-08 02:38:30 +00:00
mpctx->magic = MEMPOOL_MAGIC;
1999-09-15 17:47:08 +00:00
mpctx->lock = NULL;
1999-06-08 02:38:30 +00:00
mpctx->mctx = mctx;
/*
* Mempools are stored as a linked list of element.
*/
if (size < sizeof(element)) {
size = sizeof(element);
}
1999-06-08 02:50:51 +00:00
mpctx->size = size;
1999-06-08 02:38:30 +00:00
mpctx->maxalloc = UINT_MAX;
mpctx->allocated = 0;
mpctx->freecount = 0;
mpctx->freemax = 1;
mpctx->fillcount = 1;
mpctx->gets = 0;
#if ISC_MEMPOOL_NAMES
1999-10-19 01:22:39 +00:00
mpctx->name[0] = 0;
#endif /* if ISC_MEMPOOL_NAMES */
1999-06-08 02:38:30 +00:00
mpctx->items = NULL;
*mpctxp = (isc_mempool_t *)mpctx;
1999-06-08 02:38:30 +00:00
MCTXLOCK(mctx);
2000-12-07 20:15:58 +00:00
ISC_LIST_INITANDAPPEND(mctx->pools, mpctx, link);
mctx->poolcnt++;
MCTXUNLOCK(mctx);
1999-06-08 02:38:30 +00:00
}
void
isc_mempool_setname(isc_mempool_t *mpctx, const char *name) {
REQUIRE(VALID_MEMPOOL(mpctx));
1999-10-19 01:22:39 +00:00
REQUIRE(name != NULL);
#if ISC_MEMPOOL_NAMES
if (mpctx->lock != NULL) {
1999-10-19 01:22:39 +00:00
LOCK(mpctx->lock);
}
1999-10-19 01:22:39 +00:00
strlcpy(mpctx->name, name, sizeof(mpctx->name));
1999-10-19 01:22:39 +00:00
if (mpctx->lock != NULL) {
1999-10-19 01:22:39 +00:00
UNLOCK(mpctx->lock);
}
#else /* if ISC_MEMPOOL_NAMES */
UNUSED(mpctx);
UNUSED(name);
#endif /* if ISC_MEMPOOL_NAMES */
1999-10-19 01:22:39 +00:00
}
void
2020-02-13 14:44:37 -08:00
isc_mempool_destroy(isc_mempool_t **mpctxp) {
REQUIRE(mpctxp != NULL);
REQUIRE(VALID_MEMPOOL(*mpctxp));
isc_mempool_t *mpctx;
isc_mem_t *mctx;
2020-02-13 14:44:37 -08:00
isc_mutex_t *lock;
element *item;
1999-06-08 02:38:30 +00:00
mpctx = *mpctxp;
*mpctxp = NULL;
#if ISC_MEMPOOL_NAMES
if (mpctx->allocated > 0) {
UNEXPECTED_ERROR(__FILE__, __LINE__,
"isc_mempool_destroy(): mempool %s "
"leaked memory",
mpctx->name);
}
#endif /* if ISC_MEMPOOL_NAMES */
1999-06-08 02:38:30 +00:00
REQUIRE(mpctx->allocated == 0);
mctx = mpctx->mctx;
1999-09-15 17:47:08 +00:00
lock = mpctx->lock;
if (lock != NULL) {
1999-09-15 17:47:08 +00:00
LOCK(lock);
}
1999-09-15 17:47:08 +00:00
1999-06-08 02:38:30 +00:00
/*
* Return any items on the free list
*/
MCTXLOCK(mctx);
while (mpctx->items != NULL) {
INSIST(mpctx->freecount > 0);
mpctx->freecount--;
item = mpctx->items;
mpctx->items = item->next;
mem_putstats(mctx, item, mpctx->size);
mem_put(mctx, item, mpctx->size);
}
MCTXUNLOCK(mctx);
1999-06-08 02:38:30 +00:00
/*
* Remove our linked list entry from the memory context.
*/
MCTXLOCK(mctx);
1999-06-08 02:38:30 +00:00
ISC_LIST_UNLINK(mctx->pools, mpctx, link);
mctx->poolcnt--;
MCTXUNLOCK(mctx);
mpctx->magic = 0;
1999-06-08 02:38:30 +00:00
isc_mem_put(mpctx->mctx, mpctx, sizeof(isc_mempool_t));
1999-06-08 02:38:30 +00:00
if (lock != NULL) {
1999-09-15 17:47:08 +00:00
UNLOCK(lock);
}
1999-06-08 02:38:30 +00:00
}
void
isc_mempool_associatelock(isc_mempool_t *mpctx, isc_mutex_t *lock) {
REQUIRE(VALID_MEMPOOL(mpctx));
REQUIRE(lock != NULL);
1999-09-15 17:47:08 +00:00
REQUIRE(mpctx->lock == NULL);
mpctx->lock = lock;
}
void *
isc__mempool_get(isc_mempool_t *mpctx FLARG) {
REQUIRE(VALID_MEMPOOL(mpctx));
2020-02-13 14:44:37 -08:00
element *item;
isc_mem_t *mctx;
2020-02-13 14:44:37 -08:00
unsigned int i;
1999-06-08 02:38:30 +00:00
mctx = mpctx->mctx;
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
LOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
1999-06-08 02:38:30 +00:00
/*
* Don't let the caller go over quota
*/
2016-03-04 11:12:23 +05:30
if (ISC_UNLIKELY(mpctx->allocated >= mpctx->maxalloc)) {
1999-09-15 17:47:08 +00:00
item = NULL;
goto out;
}
1999-06-08 02:38:30 +00:00
2016-03-04 11:12:23 +05:30
if (ISC_UNLIKELY(mpctx->items == NULL)) {
/*
* We need to dip into the well. Lock the memory context
* here and fill up our free list.
2016-03-04 11:12:23 +05:30
*/
MCTXLOCK(mctx);
2016-03-04 11:12:23 +05:30
for (i = 0; i < mpctx->fillcount; i++) {
item = mem_get(mctx, mpctx->size);
mem_getstats(mctx, mpctx->size);
2016-03-04 11:12:23 +05:30
item->next = mpctx->items;
mpctx->items = item;
mpctx->freecount++;
}
MCTXUNLOCK(mctx);
1999-06-08 02:38:30 +00:00
}
/*
* If we didn't get any items, return NULL.
*/
item = mpctx->items;
if (ISC_UNLIKELY(item == NULL)) {
1999-09-15 17:47:08 +00:00
goto out;
}
1999-06-08 02:38:30 +00:00
mpctx->items = item->next;
2016-03-04 11:12:23 +05:30
INSIST(mpctx->freecount > 0);
1999-06-08 02:38:30 +00:00
mpctx->freecount--;
mpctx->gets++;
mpctx->allocated++;
1999-09-15 17:47:08 +00:00
out:
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
UNLOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
#if ISC_MEM_TRACKLINES
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY(((isc_mem_debugging & TRACE_OR_RECORD) != 0) &&
item != NULL)) {
MCTXLOCK(mctx);
ADD_TRACE(mctx, item, mpctx->size, file, line);
MCTXUNLOCK(mctx);
}
#endif /* ISC_MEM_TRACKLINES */
1999-06-08 02:38:30 +00:00
return (item);
}
2012-11-02 16:02:15 +11:00
/* coverity[+free : arg-1] */
void
isc__mempool_put(isc_mempool_t *mpctx, void *mem FLARG) {
REQUIRE(VALID_MEMPOOL(mpctx));
1999-06-08 02:38:30 +00:00
REQUIRE(mem != NULL);
isc_mem_t *mctx = mpctx->mctx;
2020-02-13 14:44:37 -08:00
element *item;
1999-06-08 02:38:30 +00:00
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
LOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
1999-06-08 02:38:30 +00:00
INSIST(mpctx->allocated > 0);
mpctx->allocated--;
#if ISC_MEM_TRACKLINES
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY((isc_mem_debugging & TRACE_OR_RECORD) != 0)) {
MCTXLOCK(mctx);
DELETE_TRACE(mctx, mem, mpctx->size, file, line);
MCTXUNLOCK(mctx);
}
#endif /* ISC_MEM_TRACKLINES */
1999-06-08 02:38:30 +00:00
/*
* If our free list is full, return this to the mctx directly.
*/
if (mpctx->freecount >= mpctx->freemax) {
MCTXLOCK(mctx);
mem_putstats(mctx, mem, mpctx->size);
mem_put(mctx, mem, mpctx->size);
MCTXUNLOCK(mctx);
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
UNLOCK(mpctx->lock);
}
1999-06-08 02:38:30 +00:00
return;
}
/*
* Otherwise, attach it to our free list and bump the counter.
*/
mpctx->freecount++;
item = (element *)mem;
item->next = mpctx->items;
mpctx->items = item;
1999-09-15 17:47:08 +00:00
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
UNLOCK(mpctx->lock);
}
1999-06-08 02:38:30 +00:00
}
/*
* Quotas
*/
void
isc_mempool_setfreemax(isc_mempool_t *mpctx, unsigned int limit) {
REQUIRE(VALID_MEMPOOL(mpctx));
1999-06-08 02:38:30 +00:00
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
LOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
1999-06-08 02:38:30 +00:00
mpctx->freemax = limit;
1999-09-15 17:47:08 +00:00
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
UNLOCK(mpctx->lock);
}
1999-06-08 02:38:30 +00:00
}
unsigned int
isc_mempool_getfreemax(isc_mempool_t *mpctx) {
REQUIRE(VALID_MEMPOOL(mpctx));
2020-02-13 14:44:37 -08:00
unsigned int freemax;
1999-09-15 17:47:08 +00:00
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
LOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
freemax = mpctx->freemax;
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
UNLOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
return (freemax);
1999-06-08 02:38:30 +00:00
}
unsigned int
isc_mempool_getfreecount(isc_mempool_t *mpctx) {
REQUIRE(VALID_MEMPOOL(mpctx));
2020-02-13 14:44:37 -08:00
unsigned int freecount;
1999-06-08 02:38:30 +00:00
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
LOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
freecount = mpctx->freecount;
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
UNLOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
return (freecount);
1999-06-08 02:38:30 +00:00
}
void
isc_mempool_setmaxalloc(isc_mempool_t *mpctx, unsigned int limit) {
REQUIRE(VALID_MEMPOOL(mpctx));
1999-06-08 02:38:30 +00:00
REQUIRE(limit > 0);
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
LOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
1999-06-08 02:38:30 +00:00
mpctx->maxalloc = limit;
1999-09-15 17:47:08 +00:00
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
UNLOCK(mpctx->lock);
}
1999-06-08 02:38:30 +00:00
}
unsigned int
isc_mempool_getmaxalloc(isc_mempool_t *mpctx) {
REQUIRE(VALID_MEMPOOL(mpctx));
2020-02-13 14:44:37 -08:00
unsigned int maxalloc;
1999-09-15 17:47:08 +00:00
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
LOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
maxalloc = mpctx->maxalloc;
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
UNLOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
return (maxalloc);
1999-06-08 02:38:30 +00:00
}
unsigned int
isc_mempool_getallocated(isc_mempool_t *mpctx) {
REQUIRE(VALID_MEMPOOL(mpctx));
2020-02-13 14:44:37 -08:00
unsigned int allocated;
1999-06-08 02:38:30 +00:00
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
LOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
allocated = mpctx->allocated;
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
UNLOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
return (allocated);
1999-06-08 02:38:30 +00:00
}
void
isc_mempool_setfillcount(isc_mempool_t *mpctx, unsigned int limit) {
REQUIRE(VALID_MEMPOOL(mpctx));
1999-06-08 02:38:30 +00:00
REQUIRE(limit > 0);
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
LOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
1999-06-08 02:38:30 +00:00
mpctx->fillcount = limit;
1999-09-15 17:47:08 +00:00
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
UNLOCK(mpctx->lock);
}
1999-06-08 02:38:30 +00:00
}
unsigned int
isc_mempool_getfillcount(isc_mempool_t *mpctx) {
REQUIRE(VALID_MEMPOOL(mpctx));
1999-09-15 17:47:08 +00:00
unsigned int fillcount;
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
LOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
fillcount = mpctx->fillcount;
if (mpctx->lock != NULL) {
1999-09-15 17:47:08 +00:00
UNLOCK(mpctx->lock);
}
1999-09-15 17:47:08 +00:00
return (fillcount);
1999-06-08 02:38:30 +00:00
}
/*
* Requires contextslock to be held by caller.
*/
static void
2020-02-13 14:44:37 -08:00
print_contexts(FILE *file) {
isc_mem_t *ctx;
for (ctx = ISC_LIST_HEAD(contexts); ctx != NULL;
ctx = ISC_LIST_NEXT(ctx, link)) {
2018-10-03 07:59:18 +10:00
fprintf(file, "context: %p (%s): %" PRIuFAST32 " references\n",
ctx, ctx->name[0] == 0 ? "<unknown>" : ctx->name,
isc_refcount_current(&ctx->references));
print_active(ctx, file);
}
fflush(file);
}
void
2020-02-13 14:44:37 -08:00
isc_mem_checkdestroyed(FILE *file) {
#if !ISC_MEM_TRACKLINES
UNUSED(file);
#endif /* if !ISC_MEM_TRACKLINES */
RUNTIME_CHECK(isc_once_do(&once, initialize_action) == ISC_R_SUCCESS);
LOCK(&contextslock);
if (!ISC_LIST_EMPTY(contexts)) {
#if ISC_MEM_TRACKLINES
2017-08-24 10:58:20 +05:30
if (ISC_UNLIKELY((isc_mem_debugging & TRACE_OR_RECORD) != 0)) {
print_contexts(file);
}
#endif /* if ISC_MEM_TRACKLINES */
INSIST(0);
ISC_UNREACHABLE();
}
UNLOCK(&contextslock);
}
unsigned int
isc_mem_references(isc_mem_t *ctx) {
return (isc_refcount_current(&ctx->references));
}
typedef struct summarystat {
uint64_t total;
uint64_t inuse;
uint64_t malloced;
uint64_t contextsize;
} summarystat_t;
#ifdef HAVE_LIBXML2
#define TRY0(a) \
do { \
xmlrc = (a); \
if (xmlrc < 0) \
goto error; \
} while (0)
static int
xml_renderctx(isc_mem_t *ctx, summarystat_t *summary, xmlTextWriterPtr writer) {
REQUIRE(VALID_CONTEXT(ctx));
int xmlrc;
MCTXLOCK(ctx);
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "context"));
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "id"));
TRY0(xmlTextWriterWriteFormatString(writer, "%p", ctx));
TRY0(xmlTextWriterEndElement(writer)); /* id */
if (ctx->name[0] != 0) {
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "name"));
TRY0(xmlTextWriterWriteFormatString(writer, "%s", ctx->name));
TRY0(xmlTextWriterEndElement(writer)); /* name */
}
summary->contextsize += sizeof(*ctx) +
(ctx->max_size + 1) * sizeof(struct stats) +
ctx->max_size * sizeof(element *);
#if ISC_MEM_TRACKLINES
if (ctx->debuglist != NULL) {
2020-02-13 14:44:37 -08:00
summary->contextsize += DEBUG_TABLE_COUNT *
sizeof(debuglist_t) +
ctx->debuglistcnt * sizeof(debuglink_t);
}
#endif /* if ISC_MEM_TRACKLINES */
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "references"));
TRY0(xmlTextWriterWriteFormatString(
writer, "%" PRIuFAST32,
isc_refcount_current(&ctx->references)));
TRY0(xmlTextWriterEndElement(writer)); /* references */
summary->total += ctx->total;
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "total"));
TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "",
(uint64_t)ctx->total));
TRY0(xmlTextWriterEndElement(writer)); /* total */
summary->inuse += ctx->inuse;
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "inuse"));
TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "",
(uint64_t)ctx->inuse));
TRY0(xmlTextWriterEndElement(writer)); /* inuse */
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "maxinuse"));
TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "",
(uint64_t)ctx->maxinuse));
TRY0(xmlTextWriterEndElement(writer)); /* maxinuse */
summary->malloced += ctx->malloced;
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "malloced"));
TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "",
(uint64_t)ctx->malloced));
TRY0(xmlTextWriterEndElement(writer)); /* malloced */
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "maxmalloced"));
TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "",
(uint64_t)ctx->maxmalloced));
TRY0(xmlTextWriterEndElement(writer)); /* maxmalloced */
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "pools"));
TRY0(xmlTextWriterWriteFormatString(writer, "%u", ctx->poolcnt));
TRY0(xmlTextWriterEndElement(writer)); /* pools */
summary->contextsize += ctx->poolcnt * sizeof(isc_mempool_t);
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "hiwater"));
TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "",
(uint64_t)ctx->hi_water));
TRY0(xmlTextWriterEndElement(writer)); /* hiwater */
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "lowater"));
TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "",
(uint64_t)ctx->lo_water));
TRY0(xmlTextWriterEndElement(writer)); /* lowater */
TRY0(xmlTextWriterEndElement(writer)); /* context */
error:
MCTXUNLOCK(ctx);
return (xmlrc);
}
int
2020-02-13 14:44:37 -08:00
isc_mem_renderxml(void *writer0) {
isc_mem_t *ctx;
2020-02-13 14:44:37 -08:00
summarystat_t summary;
uint64_t lost;
int xmlrc;
xmlTextWriterPtr writer = (xmlTextWriterPtr)writer0;
memset(&summary, 0, sizeof(summary));
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "contexts"));
RUNTIME_CHECK(isc_once_do(&once, initialize_action) == ISC_R_SUCCESS);
LOCK(&contextslock);
lost = totallost;
for (ctx = ISC_LIST_HEAD(contexts); ctx != NULL;
ctx = ISC_LIST_NEXT(ctx, link)) {
xmlrc = xml_renderctx(ctx, &summary, writer);
if (xmlrc < 0) {
UNLOCK(&contextslock);
goto error;
}
}
UNLOCK(&contextslock);
TRY0(xmlTextWriterEndElement(writer)); /* contexts */
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "summary"));
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "TotalUse"));
TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "",
2012-10-31 23:45:49 +00:00
summary.total));
TRY0(xmlTextWriterEndElement(writer)); /* TotalUse */
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "InUse"));
TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "",
2012-10-31 23:45:49 +00:00
summary.inuse));
TRY0(xmlTextWriterEndElement(writer)); /* InUse */
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "Malloced"));
TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "",
summary.malloced));
TRY0(xmlTextWriterEndElement(writer)); /* InUse */
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "ContextSize"));
TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "",
2012-10-31 23:45:49 +00:00
summary.contextsize));
TRY0(xmlTextWriterEndElement(writer)); /* ContextSize */
TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "Lost"));
TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "", lost));
TRY0(xmlTextWriterEndElement(writer)); /* Lost */
TRY0(xmlTextWriterEndElement(writer)); /* summary */
error:
return (xmlrc);
}
#endif /* HAVE_LIBXML2 */
#ifdef HAVE_JSON_C
#define CHECKMEM(m) RUNTIME_CHECK(m != NULL)
static isc_result_t
json_renderctx(isc_mem_t *ctx, summarystat_t *summary, json_object *array) {
REQUIRE(VALID_CONTEXT(ctx));
REQUIRE(summary != NULL);
REQUIRE(array != NULL);
json_object *ctxobj, *obj;
2020-02-13 14:44:37 -08:00
char buf[1024];
MCTXLOCK(ctx);
summary->contextsize += sizeof(*ctx) +
(ctx->max_size + 1) * sizeof(struct stats) +
ctx->max_size * sizeof(element *);
summary->total += ctx->total;
summary->inuse += ctx->inuse;
summary->malloced += ctx->malloced;
#if ISC_MEM_TRACKLINES
if (ctx->debuglist != NULL) {
2020-02-13 14:44:37 -08:00
summary->contextsize += DEBUG_TABLE_COUNT *
sizeof(debuglist_t) +
ctx->debuglistcnt * sizeof(debuglink_t);
}
#endif /* if ISC_MEM_TRACKLINES */
ctxobj = json_object_new_object();
CHECKMEM(ctxobj);
snprintf(buf, sizeof(buf), "%p", ctx);
obj = json_object_new_string(buf);
CHECKMEM(obj);
json_object_object_add(ctxobj, "id", obj);
if (ctx->name[0] != 0) {
obj = json_object_new_string(ctx->name);
CHECKMEM(obj);
json_object_object_add(ctxobj, "name", obj);
}
obj = json_object_new_int64(isc_refcount_current(&ctx->references));
CHECKMEM(obj);
json_object_object_add(ctxobj, "references", obj);
obj = json_object_new_int64(ctx->total);
CHECKMEM(obj);
json_object_object_add(ctxobj, "total", obj);
obj = json_object_new_int64(ctx->inuse);
CHECKMEM(obj);
json_object_object_add(ctxobj, "inuse", obj);
obj = json_object_new_int64(ctx->maxinuse);
CHECKMEM(obj);
json_object_object_add(ctxobj, "maxinuse", obj);
obj = json_object_new_int64(ctx->malloced);
CHECKMEM(obj);
json_object_object_add(ctxobj, "malloced", obj);
obj = json_object_new_int64(ctx->maxmalloced);
CHECKMEM(obj);
json_object_object_add(ctxobj, "maxmalloced", obj);
obj = json_object_new_int64(ctx->poolcnt);
CHECKMEM(obj);
json_object_object_add(ctxobj, "pools", obj);
summary->contextsize += ctx->poolcnt * sizeof(isc_mempool_t);
obj = json_object_new_int64(ctx->hi_water);
CHECKMEM(obj);
json_object_object_add(ctxobj, "hiwater", obj);
obj = json_object_new_int64(ctx->lo_water);
CHECKMEM(obj);
json_object_object_add(ctxobj, "lowater", obj);
MCTXUNLOCK(ctx);
json_object_array_add(array, ctxobj);
return (ISC_R_SUCCESS);
}
isc_result_t
2020-02-13 14:44:37 -08:00
isc_mem_renderjson(void *memobj0) {
isc_result_t result = ISC_R_SUCCESS;
isc_mem_t *ctx;
summarystat_t summary;
2020-02-13 14:44:37 -08:00
uint64_t lost;
json_object *ctxarray, *obj;
json_object *memobj = (json_object *)memobj0;
memset(&summary, 0, sizeof(summary));
RUNTIME_CHECK(isc_once_do(&once, initialize_action) == ISC_R_SUCCESS);
ctxarray = json_object_new_array();
CHECKMEM(ctxarray);
LOCK(&contextslock);
lost = totallost;
for (ctx = ISC_LIST_HEAD(contexts); ctx != NULL;
ctx = ISC_LIST_NEXT(ctx, link)) {
result = json_renderctx(ctx, &summary, ctxarray);
if (result != ISC_R_SUCCESS) {
UNLOCK(&contextslock);
goto error;
}
}
UNLOCK(&contextslock);
obj = json_object_new_int64(summary.total);
CHECKMEM(obj);
json_object_object_add(memobj, "TotalUse", obj);
obj = json_object_new_int64(summary.inuse);
CHECKMEM(obj);
json_object_object_add(memobj, "InUse", obj);
obj = json_object_new_int64(summary.malloced);
CHECKMEM(obj);
json_object_object_add(memobj, "Malloced", obj);
obj = json_object_new_int64(summary.contextsize);
CHECKMEM(obj);
json_object_object_add(memobj, "ContextSize", obj);
obj = json_object_new_int64(lost);
CHECKMEM(obj);
json_object_object_add(memobj, "Lost", obj);
json_object_object_add(memobj, "contexts", ctxarray);
return (ISC_R_SUCCESS);
error:
if (ctxarray != NULL) {
json_object_put(ctxarray);
}
return (result);
}
#endif /* HAVE_JSON_C */
void
2020-02-13 14:44:37 -08:00
isc_mem_create(isc_mem_t **mctxp) {
mem_create(mctxp, isc_mem_defaultflags);
}
void
isc__mem_printactive(isc_mem_t *ctx, FILE *file) {
#if ISC_MEM_TRACKLINES
REQUIRE(VALID_CONTEXT(ctx));
REQUIRE(file != NULL);
print_active(ctx, file);
#else /* if ISC_MEM_TRACKLINES */
UNUSED(ctx);
UNUSED(file);
#endif /* if ISC_MEM_TRACKLINES */
}