2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-23 02:28:55 +00:00
bind/bin/tests/wire_test.c

285 lines
6.6 KiB
C
Raw Normal View History

1999-01-06 05:42:58 +00:00
/*
2007-06-19 23:47:24 +00:00
* Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
2001-01-09 22:01:04 +00:00
* Copyright (C) 1999-2001 Internet Software Consortium.
*
2007-06-18 23:47:57 +00:00
* Permission to use, copy, modify, and/or distribute this software for any
1999-01-06 05:42:58 +00:00
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
2004-03-05 05:14:21 +00:00
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
1999-01-06 05:42:58 +00:00
*/
2007-06-19 23:47:24 +00:00
/* $Id: wire_test.c,v 1.67 2007/06/19 23:46:59 tbox Exp $ */
2000-06-22 22:00:42 +00:00
1999-01-06 05:42:58 +00:00
#include <config.h>
#include <stdlib.h>
2000-05-30 23:20:18 +00:00
#include <isc/buffer.h>
2001-05-09 18:51:44 +00:00
#include <isc/commandline.h>
#include <isc/mem.h>
#include <isc/string.h>
2000-04-28 02:12:16 +00:00
#include <isc/util.h>
1999-01-06 05:42:58 +00:00
#include <dns/result.h>
1999-01-13 19:11:26 +00:00
#include "printmsg.h"
1999-01-06 05:42:58 +00:00
int parseflags = 0;
isc_mem_t *mctx;
isc_boolean_t printmemstats = ISC_FALSE;
isc_boolean_t dorender = ISC_FALSE;
static void
process_message(isc_buffer_t *source);
1999-04-30 00:17:15 +00:00
static inline void
CHECKRESULT(isc_result_t result, const char *msg) {
if (result != ISC_R_SUCCESS) {
1999-04-30 00:17:15 +00:00
printf("%s: %s\n", msg, dns_result_totext(result));
exit(1);
}
}
1999-01-06 05:42:58 +00:00
static int
fromhex(char c) {
if (c >= '0' && c <= '9')
return (c - '0');
else if (c >= 'a' && c <= 'f')
return (c - 'a' + 10);
else if (c >= 'A' && c <= 'F')
return (c - 'A' + 10);
1999-02-11 06:38:12 +00:00
1999-01-06 05:42:58 +00:00
printf("bad input format: %02x\n", c);
exit(3);
1999-02-11 06:38:12 +00:00
/* NOTREACHED */
1999-01-06 05:42:58 +00:00
}
1999-01-13 19:11:26 +00:00
2001-05-09 18:51:44 +00:00
static void
usage(void) {
fprintf(stderr, "wire_test [-p] [-b] [-s] [-r]\n");
fprintf(stderr, "\t-p\tPreserve order of the records in messages\n");
fprintf(stderr, "\t-b\tBest-effort parsing (ignore some errors)\n");
fprintf(stderr, "\t-s\tPrint memory statistics\n");
fprintf(stderr, "\t-r\tAfter parsing, re-render the message\n");
fprintf(stderr, "\t-t\tTCP mode - ignore the first 2 bytes\n");
2001-05-09 18:51:44 +00:00
}
1999-01-06 05:42:58 +00:00
int
main(int argc, char *argv[]) {
1999-01-13 19:57:13 +00:00
char *rp, *wp;
1999-01-06 05:42:58 +00:00
unsigned char *bp;
1999-04-30 00:17:15 +00:00
isc_buffer_t source;
1999-01-06 05:42:58 +00:00
size_t len, i;
int n;
FILE *f;
isc_boolean_t need_close = ISC_FALSE;
unsigned char b[64 * 1024];
char s[4000];
isc_boolean_t tcp = ISC_FALSE;
2001-05-09 18:51:44 +00:00
int ch;
1999-04-30 00:17:15 +00:00
1999-05-12 19:47:43 +00:00
mctx = NULL;
1999-04-30 00:17:15 +00:00
RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);
while ((ch = isc_commandline_parse(argc, argv, "pbsrt")) != -1) {
2001-05-09 18:51:44 +00:00
switch (ch) {
case 'p':
parseflags |= DNS_MESSAGEPARSE_PRESERVEORDER;
break;
case 'b':
parseflags |= DNS_MESSAGEPARSE_BESTEFFORT;
break;
case 's':
printmemstats = ISC_TRUE;
break;
case 'r':
dorender = ISC_TRUE;
break;
case 't':
tcp = ISC_TRUE;
break;
2001-05-09 18:51:44 +00:00
default:
usage();
exit(1);
}
}
argc -= isc_commandline_index;
argv += isc_commandline_index;
1999-01-06 05:42:58 +00:00
if (argc > 1) {
f = fopen(argv[1], "r");
if (f == NULL) {
printf("fopen failed\n");
exit(1);
}
need_close = ISC_TRUE;
} else
f = stdin;
bp = b;
2001-11-27 01:56:32 +00:00
while (fgets(s, sizeof(s), f) != NULL) {
1999-01-13 19:57:13 +00:00
rp = s;
wp = s;
len = 0;
while (*rp != '\0') {
if (*rp == '#')
break;
1999-01-13 19:57:13 +00:00
if (*rp != ' ' && *rp != '\t' &&
*rp != '\r' && *rp != '\n') {
*wp++ = *rp;
len++;
}
rp++;
1999-01-06 05:42:58 +00:00
}
2005-03-16 22:22:31 +00:00
if (len == 0U)
1999-01-06 05:42:58 +00:00
break;
2005-03-16 22:22:31 +00:00
if (len % 2 != 0U) {
printf("bad input format: %lu\n", (unsigned long)len);
1999-01-06 05:42:58 +00:00
exit(1);
}
2001-11-27 01:56:32 +00:00
if (len > sizeof(b) * 2) {
1999-01-06 05:42:58 +00:00
printf("input too long\n");
exit(2);
}
1999-01-13 19:57:13 +00:00
rp = s;
1999-01-06 05:42:58 +00:00
for (i = 0; i < len; i += 2) {
1999-01-13 19:57:13 +00:00
n = fromhex(*rp++);
1999-01-06 05:42:58 +00:00
n *= 16;
1999-01-13 19:57:13 +00:00
n += fromhex(*rp++);
1999-01-06 05:42:58 +00:00
*bp++ = n;
}
}
if (need_close)
fclose(f);
1999-01-06 20:05:09 +00:00
2001-05-09 18:59:55 +00:00
if (tcp) {
unsigned char *p = b;
while (p < bp) {
unsigned int len;
if (p + 2 > bp) {
printf("premature end of packet\n");
exit(1);
}
len = p[0] << 8 | p[1];
if (p + 2 + len > bp) {
printf("premature end of packet\n");
exit(1);
}
isc_buffer_init(&source, p + 2, len);
isc_buffer_add(&source, len);
process_message(&source);
p += 2 + len;
}
2001-05-09 18:59:55 +00:00
} else {
isc_buffer_init(&source, b, sizeof(b));
isc_buffer_add(&source, bp - b);
process_message(&source);
2001-05-09 18:59:55 +00:00
}
if (printmemstats)
isc_mem_stats(mctx, stdout);
isc_mem_destroy(&mctx);
return (0);
}
static void
process_message(isc_buffer_t *source) {
dns_message_t *message;
isc_result_t result;
int i;
1999-05-12 19:47:43 +00:00
message = NULL;
1999-07-24 00:55:35 +00:00
result = dns_message_create(mctx, DNS_MESSAGE_INTENTPARSE, &message);
1999-04-30 00:17:15 +00:00
CHECKRESULT(result, "dns_message_create failed");
result = dns_message_parse(message, source, parseflags);
2001-05-09 18:51:44 +00:00
if (result == DNS_R_RECOVERABLE)
result = ISC_R_SUCCESS;
CHECKRESULT(result, "dns_message_parse failed");
1999-04-30 00:17:15 +00:00
result = printmessage(message);
CHECKRESULT(result, "printmessage() failed");
2001-05-09 18:51:44 +00:00
if (printmemstats)
isc_mem_stats(mctx, stdout);
1999-04-30 21:52:40 +00:00
2001-05-09 18:51:44 +00:00
if (dorender) {
unsigned char b2[64 * 1024];
isc_buffer_t buffer;
dns_compress_t cctx;
isc_buffer_init(&buffer, b2, sizeof(b2));
2001-05-09 18:51:44 +00:00
/*
* XXXMLG
* Changing this here is a hack, and should not be done in
* reasonable application code, ever.
*/
message->from_to_wire = DNS_MESSAGE_INTENTRENDER;
1999-04-30 21:52:40 +00:00
for (i = 0; i < DNS_SECTION_MAX; i++)
2001-05-09 18:51:44 +00:00
message->counts[i] = 0; /* Another hack XXX */
1999-04-30 22:35:49 +00:00
2001-05-09 18:51:44 +00:00
result = dns_compress_init(&cctx, -1, mctx);
CHECKRESULT(result, "dns_compress_init() failed");
result = dns_message_renderbegin(message, &cctx, &buffer);
2001-05-09 18:51:44 +00:00
CHECKRESULT(result, "dns_message_renderbegin() failed");
1999-04-30 21:52:40 +00:00
2001-05-09 18:51:44 +00:00
result = dns_message_rendersection(message,
DNS_SECTION_QUESTION, 0);
CHECKRESULT(result,
"dns_message_rendersection(QUESTION) failed");
1999-04-30 21:52:40 +00:00
2001-05-09 18:51:44 +00:00
result = dns_message_rendersection(message,
DNS_SECTION_ANSWER, 0);
CHECKRESULT(result,
"dns_message_rendersection(ANSWER) failed");
1999-04-30 21:52:40 +00:00
2001-05-09 18:51:44 +00:00
result = dns_message_rendersection(message,
DNS_SECTION_AUTHORITY, 0);
CHECKRESULT(result,
"dns_message_rendersection(AUTHORITY) failed");
1999-04-30 21:52:40 +00:00
2001-05-09 18:51:44 +00:00
result = dns_message_rendersection(message,
DNS_SECTION_ADDITIONAL, 0);
CHECKRESULT(result,
"dns_message_rendersection(ADDITIONAL) failed");
1999-04-30 21:52:40 +00:00
2001-05-09 18:51:44 +00:00
dns_message_renderend(message);
1999-04-30 21:52:40 +00:00
2001-05-09 18:51:44 +00:00
dns_compress_invalidate(&cctx);
2001-05-09 18:51:44 +00:00
message->from_to_wire = DNS_MESSAGE_INTENTPARSE;
dns_message_destroy(&message);
1999-04-30 21:52:40 +00:00
2001-05-09 18:51:44 +00:00
printf("Message rendered.\n");
if (printmemstats)
isc_mem_stats(mctx, stdout);
1999-04-30 21:52:40 +00:00
2001-05-09 18:51:44 +00:00
result = dns_message_create(mctx, DNS_MESSAGE_INTENTPARSE,
&message);
CHECKRESULT(result, "dns_message_create failed");
1999-04-30 21:52:40 +00:00
result = dns_message_parse(message, &buffer, parseflags);
2001-05-09 18:51:44 +00:00
CHECKRESULT(result, "dns_message_parse failed");
1999-04-30 21:52:40 +00:00
2001-05-09 18:51:44 +00:00
result = printmessage(message);
CHECKRESULT(result, "printmessage() failed");
}
1999-04-30 00:17:15 +00:00
dns_message_destroy(&message);
1999-01-06 05:42:58 +00:00
}