mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-22 01:59:26 +00: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.
427 lines
9.4 KiB
C
427 lines
9.4 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.
|
|
*/
|
|
|
|
/*
|
|
* Portions of this code were adapted from dnstap-ldns:
|
|
*
|
|
* Copyright (c) 2014 by Farsight Security, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <inttypes.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
#include <protobuf-c/protobuf-c.h>
|
|
|
|
#include <isc/attributes.h>
|
|
#include <isc/buffer.h>
|
|
#include <isc/commandline.h>
|
|
#include <isc/hex.h>
|
|
#include <isc/lib.h>
|
|
#include <isc/mem.h>
|
|
#include <isc/result.h>
|
|
#include <isc/string.h>
|
|
#include <isc/util.h>
|
|
|
|
#include <dns/dnstap.h>
|
|
#include <dns/fixedname.h>
|
|
#include <dns/lib.h>
|
|
#include <dns/masterdump.h>
|
|
#include <dns/message.h>
|
|
#include <dns/name.h>
|
|
|
|
#include "dnstap.pb-c.h"
|
|
|
|
bool printmessage = false;
|
|
bool hexmessage = false;
|
|
bool yaml = false;
|
|
bool timestampmillis = false;
|
|
|
|
#define CHECKM(op, msg) \
|
|
do { \
|
|
result = (op); \
|
|
if (result != ISC_R_SUCCESS) { \
|
|
fprintf(stderr, "%s: %s: %s\n", \
|
|
isc_commandline_progname, msg, \
|
|
isc_result_totext(result)); \
|
|
goto cleanup; \
|
|
} \
|
|
} while (0)
|
|
|
|
ISC_NORETURN static void
|
|
fatal(const char *format, ...);
|
|
|
|
static void
|
|
fatal(const char *format, ...) {
|
|
va_list args;
|
|
|
|
fprintf(stderr, "%s: fatal: ", isc_commandline_progname);
|
|
va_start(args, format);
|
|
vfprintf(stderr, format, args);
|
|
va_end(args);
|
|
fprintf(stderr, "\n");
|
|
_exit(EXIT_FAILURE);
|
|
}
|
|
|
|
static void
|
|
usage(void) {
|
|
fprintf(stderr, "dnstap-read [-mpxy] [filename]\n");
|
|
fprintf(stderr, "\t-m\ttrace memory allocations\n");
|
|
fprintf(stderr, "\t-p\tprint the full DNS message\n");
|
|
fprintf(stderr,
|
|
"\t-t\tprint long timestamps with millisecond precision\n");
|
|
fprintf(stderr, "\t-x\tuse hex format to print DNS message\n");
|
|
fprintf(stderr, "\t-y\tprint YAML format (implies -p)\n");
|
|
}
|
|
|
|
static void
|
|
print_dtdata(dns_dtdata_t *dt) {
|
|
isc_result_t result;
|
|
isc_buffer_t *b = NULL;
|
|
|
|
isc_buffer_allocate(isc_g_mctx, &b, 2048);
|
|
if (b == NULL) {
|
|
fatal("out of memory");
|
|
}
|
|
|
|
CHECKM(dns_dt_datatotext(dt, &b), "dns_dt_datatotext");
|
|
printf("%.*s\n", (int)isc_buffer_usedlength(b),
|
|
(char *)isc_buffer_base(b));
|
|
|
|
cleanup:
|
|
if (b != NULL) {
|
|
isc_buffer_free(&b);
|
|
}
|
|
}
|
|
|
|
static void
|
|
print_hex(dns_dtdata_t *dt) {
|
|
isc_buffer_t *b = NULL;
|
|
isc_result_t result;
|
|
size_t textlen;
|
|
|
|
if (dt->msg == NULL) {
|
|
return;
|
|
}
|
|
|
|
textlen = (dt->msgdata.length * 2) + 1;
|
|
isc_buffer_allocate(isc_g_mctx, &b, textlen);
|
|
if (b == NULL) {
|
|
fatal("out of memory");
|
|
}
|
|
|
|
result = isc_hex_totext(&dt->msgdata, 0, "", b);
|
|
CHECKM(result, "isc_hex_totext");
|
|
|
|
printf("%.*s\n", (int)isc_buffer_usedlength(b),
|
|
(char *)isc_buffer_base(b));
|
|
|
|
cleanup:
|
|
if (b != NULL) {
|
|
isc_buffer_free(&b);
|
|
}
|
|
}
|
|
|
|
static void
|
|
print_packet(dns_dtdata_t *dt, const dns_master_style_t *style) {
|
|
isc_buffer_t *b = NULL;
|
|
isc_result_t result;
|
|
|
|
if (dt->msg != NULL) {
|
|
size_t textlen = 2048;
|
|
|
|
isc_buffer_allocate(isc_g_mctx, &b, textlen);
|
|
if (b == NULL) {
|
|
fatal("out of memory");
|
|
}
|
|
|
|
for (;;) {
|
|
isc_buffer_reserve(b, textlen);
|
|
if (b == NULL) {
|
|
fatal("out of memory");
|
|
}
|
|
|
|
result = dns_message_totext(dt->msg, style, 0, b);
|
|
if (result == ISC_R_NOSPACE) {
|
|
isc_buffer_clear(b);
|
|
textlen *= 2;
|
|
continue;
|
|
} else if (result == ISC_R_SUCCESS) {
|
|
printf("%.*s", (int)isc_buffer_usedlength(b),
|
|
(char *)isc_buffer_base(b));
|
|
isc_buffer_free(&b);
|
|
} else {
|
|
isc_buffer_free(&b);
|
|
CHECKM(result, "dns_message_totext");
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
cleanup:
|
|
if (b != NULL) {
|
|
isc_buffer_free(&b);
|
|
}
|
|
}
|
|
|
|
static void
|
|
print_yaml(dns_dtdata_t *dt) {
|
|
Dnstap__Dnstap *frame = dt->frame;
|
|
Dnstap__Message *m = frame->message;
|
|
const ProtobufCEnumValue *ftype, *mtype;
|
|
static bool first = true;
|
|
|
|
ftype = protobuf_c_enum_descriptor_get_value(
|
|
&dnstap__dnstap__type__descriptor, frame->type);
|
|
if (ftype == NULL) {
|
|
return;
|
|
}
|
|
|
|
if (!first) {
|
|
printf("---\n");
|
|
} else {
|
|
first = false;
|
|
}
|
|
|
|
printf("type: %s\n", ftype->name);
|
|
|
|
if (frame->has_identity) {
|
|
printf("identity: %.*s\n", (int)frame->identity.len,
|
|
frame->identity.data);
|
|
}
|
|
|
|
if (frame->has_version) {
|
|
printf("version: %.*s\n", (int)frame->version.len,
|
|
frame->version.data);
|
|
}
|
|
|
|
if (frame->type != DNSTAP__DNSTAP__TYPE__MESSAGE) {
|
|
return;
|
|
}
|
|
|
|
printf("message:\n");
|
|
|
|
mtype = protobuf_c_enum_descriptor_get_value(
|
|
&dnstap__message__type__descriptor, m->type);
|
|
if (mtype == NULL) {
|
|
return;
|
|
}
|
|
|
|
printf(" type: %s\n", mtype->name);
|
|
|
|
if (!isc_time_isepoch(&dt->qtime)) {
|
|
char buf[100];
|
|
if (timestampmillis) {
|
|
isc_time_formatISO8601ms(&dt->qtime, buf, sizeof(buf));
|
|
} else {
|
|
isc_time_formatISO8601(&dt->qtime, buf, sizeof(buf));
|
|
}
|
|
printf(" query_time: !!timestamp %s\n", buf);
|
|
}
|
|
|
|
if (!isc_time_isepoch(&dt->rtime)) {
|
|
char buf[100];
|
|
if (timestampmillis) {
|
|
isc_time_formatISO8601ms(&dt->rtime, buf, sizeof(buf));
|
|
} else {
|
|
isc_time_formatISO8601(&dt->rtime, buf, sizeof(buf));
|
|
}
|
|
printf(" response_time: !!timestamp %s\n", buf);
|
|
}
|
|
|
|
if (dt->msgdata.base != NULL) {
|
|
printf(" message_size: %zub\n", (size_t)dt->msgdata.length);
|
|
} else {
|
|
printf(" message_size: 0b\n");
|
|
}
|
|
|
|
if (m->has_socket_family) {
|
|
const ProtobufCEnumValue *type =
|
|
protobuf_c_enum_descriptor_get_value(
|
|
&dnstap__socket_family__descriptor,
|
|
m->socket_family);
|
|
if (type != NULL) {
|
|
printf(" socket_family: %s\n", type->name);
|
|
}
|
|
}
|
|
|
|
printf(" socket_protocol: %s\n",
|
|
dt->transport == DNS_TRANSPORT_UDP ? "UDP" : "TCP");
|
|
|
|
if (m->has_query_address) {
|
|
ProtobufCBinaryData *ip = &m->query_address;
|
|
char buf[100];
|
|
|
|
(void)inet_ntop(ip->len == 4 ? AF_INET : AF_INET6, ip->data,
|
|
buf, sizeof(buf));
|
|
printf(" query_address: \"%s\"\n", buf);
|
|
}
|
|
|
|
if (m->has_response_address) {
|
|
ProtobufCBinaryData *ip = &m->response_address;
|
|
char buf[100];
|
|
|
|
(void)inet_ntop(ip->len == 4 ? AF_INET : AF_INET6, ip->data,
|
|
buf, sizeof(buf));
|
|
printf(" response_address: \"%s\"\n", buf);
|
|
}
|
|
|
|
if (m->has_query_port) {
|
|
printf(" query_port: %u\n", m->query_port);
|
|
}
|
|
|
|
if (m->has_response_port) {
|
|
printf(" response_port: %u\n", m->response_port);
|
|
}
|
|
|
|
if (m->has_query_zone) {
|
|
isc_result_t result;
|
|
dns_fixedname_t fn;
|
|
dns_name_t *name;
|
|
isc_buffer_t b;
|
|
|
|
name = dns_fixedname_initname(&fn);
|
|
|
|
isc_buffer_init(&b, m->query_zone.data, m->query_zone.len);
|
|
isc_buffer_add(&b, m->query_zone.len);
|
|
|
|
result = dns_name_fromwire(name, &b, DNS_DECOMPRESS_NEVER,
|
|
NULL);
|
|
if (result == ISC_R_SUCCESS) {
|
|
printf(" query_zone: ");
|
|
dns_name_print(name, stdout);
|
|
printf("\n");
|
|
}
|
|
}
|
|
|
|
if (dt->msg != NULL) {
|
|
dt->msg->indent.count = 2;
|
|
dt->msg->indent.string = " ";
|
|
printf(" %s:\n", ((dt->type & DNS_DTTYPE_QUERY) != 0)
|
|
? "query_message_data"
|
|
: "response_message_data");
|
|
|
|
print_packet(dt, &dns_master_style_yaml);
|
|
|
|
printf(" %s: |\n", ((dt->type & DNS_DTTYPE_QUERY) != 0)
|
|
? "query_message"
|
|
: "response_message");
|
|
print_packet(dt, &dns_master_style_indent);
|
|
}
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[]) {
|
|
isc_result_t result;
|
|
dns_message_t *message = NULL;
|
|
dns_dtdata_t *dt = NULL;
|
|
dns_dthandle_t *handle = NULL;
|
|
int rv = 0, ch;
|
|
|
|
isc_commandline_init(argc, argv);
|
|
|
|
while ((ch = isc_commandline_parse(argc, argv, "mptxy")) != -1) {
|
|
switch (ch) {
|
|
case 'm':
|
|
isc_mem_debugon(ISC_MEM_DEBUGRECORD);
|
|
break;
|
|
case 'p':
|
|
printmessage = true;
|
|
break;
|
|
case 't':
|
|
timestampmillis = true;
|
|
break;
|
|
case 'x':
|
|
hexmessage = true;
|
|
break;
|
|
case 'y':
|
|
yaml = true;
|
|
break;
|
|
default:
|
|
usage();
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
|
|
argc -= isc_commandline_index;
|
|
argv += isc_commandline_index;
|
|
|
|
if (argc < 1) {
|
|
fatal("no file specified");
|
|
}
|
|
|
|
CHECKM(dns_dt_open(argv[0], dns_dtmode_file, isc_g_mctx, &handle),
|
|
"dns_dt_openfile");
|
|
|
|
for (;;) {
|
|
isc_region_t input;
|
|
uint8_t *data;
|
|
size_t datalen;
|
|
|
|
result = dns_dt_getframe(handle, &data, &datalen);
|
|
if (result == ISC_R_NOMORE) {
|
|
break;
|
|
} else {
|
|
CHECKM(result, "dns_dt_getframe");
|
|
}
|
|
|
|
input.base = data;
|
|
input.length = datalen;
|
|
|
|
result = dns_dt_parse(isc_g_mctx, &input, &dt);
|
|
if (result != ISC_R_SUCCESS) {
|
|
continue;
|
|
}
|
|
|
|
if (yaml) {
|
|
print_yaml(dt);
|
|
} else if (hexmessage) {
|
|
print_dtdata(dt);
|
|
print_hex(dt);
|
|
} else if (printmessage) {
|
|
print_dtdata(dt);
|
|
print_packet(dt, &dns_master_style_debug);
|
|
} else {
|
|
print_dtdata(dt);
|
|
}
|
|
|
|
dns_dtdata_free(&dt);
|
|
}
|
|
|
|
cleanup:
|
|
if (dt != NULL) {
|
|
dns_dtdata_free(&dt);
|
|
}
|
|
if (handle != NULL) {
|
|
dns_dt_close(&handle);
|
|
}
|
|
if (message != NULL) {
|
|
dns_message_detach(&message);
|
|
}
|
|
|
|
exit(rv);
|
|
}
|