mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-13 14:39:59 -04:00
This required couple of internal changes to the isc_mem_debugging. The isc_mem_debugging is now internal to isc_mem unit and there are three new functions: 1. isc_mem_setdebugging() can change the debugging setting for an individual memory context. This is need for the memory contexts used for OpenSSL, libxml and libuv accounting as recording and tracing memory is broken there. 2. isc_mem_debugon() / isc_mem_debugoff() can be used to change default memory debugging flags as well as debugging flags for isc_g_mctx. Additionally, the memory debugging is inconsistent across the code-base. For now, we are keeping the existing flags, but three new environment variables have been added 'ISC_MEM_DEBUGRECORD', 'ISC_MEM_DEBUGTRACE' and 'ISC_MEM_DEBUGUSAGE' to set the global debugging flags at any program using the memory contexts.
276 lines
6.9 KiB
C
276 lines
6.9 KiB
C
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <isc/commandline.h>
|
|
#include <isc/file.h>
|
|
#include <isc/ht.h>
|
|
#include <isc/lib.h>
|
|
#include <isc/rwlock.h>
|
|
#include <isc/time.h>
|
|
#include <isc/util.h>
|
|
|
|
#include <dns/fixedname.h>
|
|
#include <dns/lib.h>
|
|
#include <dns/qp.h>
|
|
#include <dns/types.h>
|
|
|
|
#include "dns/name.h"
|
|
|
|
#include <tests/dns.h>
|
|
#include <tests/qp.h>
|
|
|
|
static inline size_t
|
|
smallname_length(void *pval, uint32_t ival) {
|
|
UNUSED(pval);
|
|
return ival;
|
|
}
|
|
|
|
static inline isc_refcount_t *
|
|
smallname_refcount(void *pval, uint32_t ival) {
|
|
UNUSED(ival);
|
|
return pval;
|
|
}
|
|
|
|
static inline uint8_t *
|
|
smallname_ndata(void *pval, uint32_t ival) {
|
|
return (uint8_t *)(smallname_refcount(pval, ival) + 1);
|
|
}
|
|
|
|
static void
|
|
smallname_from_name(const dns_name_t *name, void **valp, uint32_t *ctxp) {
|
|
size_t size = sizeof(isc_refcount_t) + name->length;
|
|
*valp = isc_mem_get(isc_g_mctx, size);
|
|
*ctxp = name->length;
|
|
isc_refcount_init(smallname_refcount(*valp, *ctxp), 0);
|
|
memmove(smallname_ndata(*valp, *ctxp), name->ndata, name->length);
|
|
}
|
|
|
|
static void
|
|
smallname_free(void *pval, uint32_t ival) {
|
|
size_t size = sizeof(isc_refcount_t);
|
|
size += smallname_length(pval, ival);
|
|
isc_mem_put(isc_g_mctx, pval, size);
|
|
}
|
|
|
|
static void
|
|
name_from_smallname(dns_name_t *name, void *pval, uint32_t ival) {
|
|
dns_name_reset(name);
|
|
name->ndata = smallname_ndata(pval, ival);
|
|
name->length = smallname_length(pval, ival);
|
|
name->attributes.readonly = true;
|
|
if (name->ndata[name->length - 1] == '\0') {
|
|
name->attributes.absolute = true;
|
|
}
|
|
}
|
|
|
|
static size_t
|
|
qpkey_from_smallname(dns_qpkey_t key, void *ctx, void *pval, uint32_t ival) {
|
|
UNUSED(ctx);
|
|
dns_name_t name = DNS_NAME_INITEMPTY;
|
|
name_from_smallname(&name, pval, ival);
|
|
return dns_qpkey_fromname(key, &name, DNS_DBNAMESPACE_NORMAL);
|
|
}
|
|
|
|
static void
|
|
smallname_attach(void *ctx, void *pval, uint32_t ival) {
|
|
UNUSED(ctx);
|
|
isc_refcount_increment0(smallname_refcount(pval, ival));
|
|
}
|
|
|
|
static void
|
|
smallname_detach(void *ctx, void *pval, uint32_t ival) {
|
|
if (isc_refcount_decrement(smallname_refcount(pval, ival)) == 1) {
|
|
isc_mem_free(ctx, pval);
|
|
}
|
|
}
|
|
|
|
static void
|
|
testname(void *ctx, char *buf, size_t size) {
|
|
REQUIRE(ctx == NULL);
|
|
strlcpy(buf, "test", size);
|
|
}
|
|
|
|
const dns_qpmethods_t methods = {
|
|
smallname_attach,
|
|
smallname_detach,
|
|
qpkey_from_smallname,
|
|
testname,
|
|
};
|
|
|
|
static void
|
|
usage(void) {
|
|
fprintf(stderr, "usage: lookups <filename>\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
static size_t
|
|
load_qp(dns_qp_t *qp, const char *filename) {
|
|
isc_result_t result;
|
|
char *filetext = NULL;
|
|
size_t filesize, names = 0;
|
|
char *pos = NULL, *file_end = NULL;
|
|
off_t fileoff;
|
|
FILE *fp = NULL;
|
|
|
|
result = isc_file_getsize(filename, &fileoff);
|
|
if (result != ISC_R_SUCCESS) {
|
|
fprintf(stderr, "stat(%s): %s\n", filename,
|
|
isc_result_totext(result));
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
filesize = (size_t)fileoff;
|
|
filetext = isc_mem_get(isc_g_mctx, filesize + 1);
|
|
fp = fopen(filename, "r");
|
|
if (fp == NULL || fread(filetext, 1, filesize, fp) < filesize) {
|
|
fprintf(stderr, "read(%s): %s\n", filename, strerror(errno));
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
fclose(fp);
|
|
filetext[filesize] = '\0';
|
|
|
|
pos = filetext;
|
|
file_end = pos + filesize;
|
|
while (pos < file_end) {
|
|
void *pval = NULL;
|
|
uint32_t ival = 0;
|
|
dns_fixedname_t fixed;
|
|
dns_name_t *name = dns_fixedname_initname(&fixed);
|
|
isc_buffer_t buffer;
|
|
char *newline = NULL, *domain = pos;
|
|
size_t len;
|
|
|
|
pos += strcspn(pos, "\r\n");
|
|
newline = pos;
|
|
pos += strspn(pos, "\r\n");
|
|
|
|
len = newline - domain;
|
|
domain[len] = '\0';
|
|
|
|
isc_buffer_init(&buffer, domain, len);
|
|
isc_buffer_add(&buffer, len);
|
|
result = dns_name_fromtext(name, &buffer, dns_rootname, 0);
|
|
if (result == ISC_R_SUCCESS) {
|
|
smallname_from_name(name, &pval, &ival);
|
|
result = dns_qp_insert(qp, pval, ival);
|
|
}
|
|
if (result == ISC_R_EXISTS && pval != NULL) {
|
|
smallname_free(pval, ival);
|
|
continue;
|
|
}
|
|
if (result != ISC_R_SUCCESS) {
|
|
fprintf(stderr, "%s:%zu: %s %s\n", filename, names,
|
|
domain, isc_result_totext(result));
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
names++;
|
|
}
|
|
|
|
return names;
|
|
}
|
|
|
|
int
|
|
main(int argc, char **argv) {
|
|
dns_qp_t *qp = NULL;
|
|
isc_nanosecs_t start, stop;
|
|
dns_fixedname_t *items = NULL;
|
|
dns_qpiter_t it = { 0 };
|
|
dns_name_t *name = NULL;
|
|
size_t i = 0, n = 0;
|
|
char buf[BUFSIZ];
|
|
|
|
if (argc != 2) {
|
|
usage();
|
|
}
|
|
|
|
dns_qp_create(isc_g_mctx, &methods, NULL, &qp);
|
|
|
|
start = isc_time_monotonic();
|
|
n = load_qp(qp, argv[1]);
|
|
dns_qp_compact(qp, DNS_QPGC_ALL);
|
|
stop = isc_time_monotonic();
|
|
|
|
snprintf(buf, sizeof(buf), "load %zd names:", n);
|
|
printf("%-57s%7.3fsec\n", buf, (stop - start) / (double)NS_PER_SEC);
|
|
|
|
items = isc_mem_cget(isc_g_mctx, n, sizeof(dns_fixedname_t));
|
|
dns_qpiter_init(qp, &it);
|
|
|
|
start = isc_time_monotonic();
|
|
for (i = 0;; i++) {
|
|
name = dns_fixedname_initname(&items[i]);
|
|
if (dns_qpiter_next(&it, name, NULL, NULL) != ISC_R_SUCCESS) {
|
|
break;
|
|
}
|
|
}
|
|
stop = isc_time_monotonic();
|
|
|
|
snprintf(buf, sizeof(buf), "iterate %zd names:", n);
|
|
printf("%-57s%7.3fsec\n", buf, (stop - start) / (double)NS_PER_SEC);
|
|
|
|
n = i;
|
|
start = isc_time_monotonic();
|
|
for (i = 0; i < n; i++) {
|
|
name = dns_fixedname_name(&items[i]);
|
|
dns_qp_getname(qp, name, DNS_DBNAMESPACE_NORMAL, NULL, NULL);
|
|
}
|
|
stop = isc_time_monotonic();
|
|
|
|
snprintf(buf, sizeof(buf), "look up %zd names (dns_qp_getname):", n);
|
|
printf("%-57s%7.3fsec\n", buf, (stop - start) / (double)NS_PER_SEC);
|
|
|
|
start = isc_time_monotonic();
|
|
for (i = 0; i < n; i++) {
|
|
name = dns_fixedname_name(&items[i]);
|
|
dns_qp_lookup(qp, name, DNS_DBNAMESPACE_NORMAL, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
}
|
|
stop = isc_time_monotonic();
|
|
|
|
snprintf(buf, sizeof(buf), "look up %zd names (dns_qp_lookup):", n);
|
|
printf("%-57s%7.3fsec\n", buf, (stop - start) / (double)NS_PER_SEC);
|
|
|
|
start = isc_time_monotonic();
|
|
for (i = 0; i < n; i++) {
|
|
/*
|
|
* copy the name, and modify the first letter before
|
|
* searching; that way it probably won't be found in
|
|
* the QP trie. (though it might, if for example the trie
|
|
* contains both "x." and "y.". for best results,
|
|
* use input data where this isn't an issue.)
|
|
*/
|
|
dns_fixedname_t sf;
|
|
dns_name_t *search = dns_fixedname_initname(&sf);
|
|
|
|
name = dns_fixedname_name(&items[i]);
|
|
dns_name_copy(name, search);
|
|
if (search->ndata[1] != 0) {
|
|
++search->ndata[1];
|
|
}
|
|
|
|
dns_qp_lookup(qp, search, DNS_DBNAMESPACE_NORMAL, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
}
|
|
stop = isc_time_monotonic();
|
|
|
|
snprintf(buf, sizeof(buf),
|
|
"look up %zd wrong names (dns_qp_lookup):", n);
|
|
printf("%-57s%7.3fsec\n", buf, (stop - start) / (double)NS_PER_SEC);
|
|
|
|
isc_mem_cput(isc_g_mctx, items, n, sizeof(dns_fixedname_t));
|
|
return 0;
|
|
}
|