dig.c revision e01cfa577b8b8ff7b7a2afcc388005d1af79e833
/*
* Copyright (C) 2000 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
* CONSORTIUM 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.
*/
#define TWIDDLE
#include <config.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
extern int h_errno;
#include <isc/assertions.h>
#include <isc/sockaddr.h>
#include <dns/fixedname.h>
#include <dns/rdatalist.h>
#include <dns/rdataset.h>
#include <dns/rdataclass.h>
#include <dns/rdatatype.h>
extern unsigned int timeout;
extern isc_taskmgr_t *taskmgr;
extern isc_task_t *task;
extern isc_timermgr_t *timermgr;
extern isc_socketmgr_t *socketmgr;
extern dns_messageid_t id;
extern dns_name_t rootorg;
extern isc_buffer_t rootbuf;
extern int sendcount;
#ifdef TWIDDLE
extern isc_boolean_t twiddle;
#endif
static char *opcodetext[] = {
"QUERY",
"IQUERY",
"STATUS",
"RESERVED3",
"NOTIFY",
"UPDATE",
"RESERVED6",
"RESERVED7",
"RESERVED8",
"RESERVED9",
"RESERVED10",
"RESERVED11",
"RESERVED12",
"RESERVED13",
"RESERVED14",
"RESERVED15"
};
static char *rcodetext[] = {
"NOERROR",
"FORMERR",
"SERVFAIL",
"NXDOMAIN",
"NOTIMPL",
"REFUSED",
"YXDOMAIN",
"YXRRSET",
"NXRRSET",
"NOTAUTH",
"NOTZONE",
"RESERVED11",
"RESERVED12",
"RESERVED13",
"RESERVED14",
"RESERVED15",
"BADVERS"
};
static void
show_usage() {
fatal("Usage.");
}
void
}
}
if (still_working)
return;
return;
}
if (tcp_mode)
else
}
static isc_result_t
{
isc_region_t r;
char t[4096];
if (sectionid == DNS_SECTION_QUESTION)
else
if (headers)
if (result == ISC_R_NOMORE)
return (ISC_R_SUCCESS);
else if (result != ISC_R_SUCCESS)
return (result);
for (;;) {
isc_buffer_init(&target, t, sizeof(t));
print_name = name;
&target);
if (result != ISC_R_SUCCESS)
return (result);
#ifdef USEINITALWS
if (first) {
print_name = &empty_name;
}
#endif
}
isc_buffer_usedregion(&target, &r);
if (no_rdata)
else
if (result == ISC_R_NOMORE)
break;
else if (result != ISC_R_SUCCESS)
return (result);
}
return (ISC_R_SUCCESS);
}
static isc_result_t
{
isc_region_t r;
char t[4096];
if (headers)
isc_buffer_init(&target, t, sizeof(t));
&target);
if (result != ISC_R_SUCCESS)
return (result);
isc_buffer_usedregion(&target, &r);
return (ISC_R_SUCCESS);
}
if (headers) {
printf(";; ->>HEADER<<- opcode: %s, status: %s, id: %u\n",
printf(";; flags: ");
printf("qr");
}
}
}
}
}
}
}
printf("; QUERY: %u, ANSWER: %u, "
"AUTHORITY: %u, ADDITIONAL: %u\n",
printf(";; EDNS: version: %u, udp=%u\n",
printf(";; PSEUDOSECTIONS: TSIG\n");
}
headers ) {
printf("\n");
ISC_TRUE);
if (result != ISC_R_SUCCESS)
return (result);
}
if (headers)
printf("\n");
headers);
if (result != ISC_R_SUCCESS)
return (result);
}
headers ) {
printf("\n");
ISC_TRUE);
if (result != ISC_R_SUCCESS)
return (result);
}
headers ) {
printf("\n");
"ADDITIONAL", ISC_TRUE);
if (result != ISC_R_SUCCESS)
return (result);
}
printf("\n");
"PSEUDOSECTION TSIG", ISC_TRUE);
if (result != ISC_R_SUCCESS)
return (result);
}
if (headers)
printf("\n");
return (result);
}
/*
** We're not using isc_commandline_parse() here since the command line
** syntax of dig is quite a bit different from that which can be described
** that routine. There is a portability issue here.
*/
void
int bargc;
char *bargv[8];
int i,n;
int adrs[4];
&& (!is_batchfile)) {
fatal("Memory allocation failure.");
&& (!is_batchfile)) {
&& (!is_batchfile)) {
if (timeout <= 0)
timeout = 1;
#ifdef TWIDDLE
#endif
if (argv[0][2]!=0) {
} else {
argv++;
argc--;
}
if (argv[0][2]!=0) {
} else {
argv++;
argc--;
}
if (n == 0)
show_usage();
sizeof(struct dig_lookup));
fatal("Memory allocation failure.");
for (i = n - 1; i >= 0; i--) {
adrs[i]);
}
ISC_LIST_INIT(lookup->q);
argv++;
argc--;
} else {
if (have_host) {
MXRD);
continue;
continue;
}
}
sizeof(struct dig_lookup));
fatal("Memory allocation failure.");
ISC_LIST_INIT(lookup->q);
}
}
fatal("Couldn't open specified batch file.");
}
bargc=1;
bargc++;
}
bargc--;
bargv[0]="dig";
}
}
fatal("Memory allocation failure.");
ISC_LIST_INIT(lookup->q);
}
}