2000-04-19 23:23:31 +00:00
|
|
|
/*
|
2000-04-26 18:34:17 +00:00
|
|
|
* Copyright (C) 2000 Internet Software Consortium.
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
2000-04-19 23:23:31 +00:00
|
|
|
* 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.
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
2000-07-27 09:55:03 +00:00
|
|
|
* 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.
|
2000-04-19 23:23:31 +00:00
|
|
|
*/
|
|
|
|
|
2000-08-02 19:47:17 +00:00
|
|
|
/* $Id: dig.c,v 1.84 2000/08/02 19:47:17 tale Exp $ */
|
2000-06-06 18:49:06 +00:00
|
|
|
|
2000-04-19 23:23:31 +00:00
|
|
|
#include <config.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2000-06-22 01:26:38 +00:00
|
|
|
#include <isc/app.h>
|
|
|
|
#include <isc/string.h>
|
|
|
|
#include <isc/util.h>
|
2000-06-30 14:11:49 +00:00
|
|
|
#include <isc/task.h>
|
2000-06-22 01:26:38 +00:00
|
|
|
|
2000-04-19 23:23:31 +00:00
|
|
|
#include <dns/message.h>
|
2000-05-30 22:27:27 +00:00
|
|
|
#include <dns/name.h>
|
2000-04-19 23:23:31 +00:00
|
|
|
#include <dns/rdata.h>
|
|
|
|
#include <dns/rdataset.h>
|
|
|
|
#include <dns/rdatatype.h>
|
2000-07-18 01:28:20 +00:00
|
|
|
#include <dns/rdataclass.h>
|
2000-04-19 23:23:31 +00:00
|
|
|
|
|
|
|
#include <dig/dig.h>
|
|
|
|
|
2000-04-26 18:34:17 +00:00
|
|
|
extern ISC_LIST(dig_lookup_t) lookup_list;
|
2000-07-14 16:35:30 +00:00
|
|
|
extern dig_serverlist_t server_list;
|
2000-05-09 18:05:13 +00:00
|
|
|
extern ISC_LIST(dig_searchlist_t) search_list;
|
2000-04-26 18:34:17 +00:00
|
|
|
|
2000-07-05 19:31:26 +00:00
|
|
|
#define ADD_STRING(b, s) { \
|
|
|
|
if (strlen(s) >= isc_buffer_availablelength(b)) \
|
|
|
|
return (ISC_R_NOSPACE); \
|
|
|
|
else \
|
|
|
|
isc_buffer_putstr(b, s); \
|
|
|
|
}
|
2000-05-24 19:27:01 +00:00
|
|
|
|
|
|
|
|
2000-05-19 17:54:04 +00:00
|
|
|
extern isc_boolean_t have_ipv6, show_details, specified_source,
|
2000-05-12 18:45:38 +00:00
|
|
|
usesearch, qr;
|
2000-04-26 18:34:17 +00:00
|
|
|
extern in_port_t port;
|
|
|
|
extern unsigned int timeout;
|
|
|
|
extern isc_mem_t *mctx;
|
|
|
|
extern dns_messageid_t id;
|
|
|
|
extern char *rootspace[BUFSIZE];
|
|
|
|
extern isc_buffer_t rootbuf;
|
|
|
|
extern int sendcount;
|
2000-05-02 23:23:12 +00:00
|
|
|
extern int ndots;
|
|
|
|
extern int tries;
|
2000-05-06 01:16:07 +00:00
|
|
|
extern int lookup_counter;
|
2000-05-03 20:27:13 +00:00
|
|
|
extern char fixeddomain[MXNAME];
|
2000-05-08 22:51:08 +00:00
|
|
|
extern int exitcode;
|
2000-05-19 17:54:04 +00:00
|
|
|
extern isc_sockaddr_t bind_address;
|
2000-06-06 00:43:17 +00:00
|
|
|
extern char keynametext[MXNAME];
|
2000-07-19 17:52:27 +00:00
|
|
|
extern char keyfile[MXNAME];
|
2000-06-06 00:43:17 +00:00
|
|
|
extern char keysecret[MXNAME];
|
2000-06-06 18:49:06 +00:00
|
|
|
extern dns_tsigkey_t *key;
|
|
|
|
extern isc_boolean_t validated;
|
2000-06-30 14:11:49 +00:00
|
|
|
extern isc_taskmgr_t *taskmgr;
|
2000-07-10 18:02:31 +00:00
|
|
|
extern isc_task_t *global_task;
|
2000-07-14 17:57:27 +00:00
|
|
|
extern isc_boolean_t free_now;
|
2000-07-18 01:28:20 +00:00
|
|
|
dig_lookup_t *default_lookup = NULL;
|
2000-07-20 19:41:44 +00:00
|
|
|
extern isc_uint32_t name_limit;
|
|
|
|
extern isc_uint32_t rr_limit;
|
2000-04-26 18:34:17 +00:00
|
|
|
|
2000-06-06 22:50:44 +00:00
|
|
|
extern isc_boolean_t debugging;
|
2000-07-18 01:28:20 +00:00
|
|
|
char *batchname = NULL;
|
|
|
|
FILE *batchfp = NULL;
|
|
|
|
char *argv0;
|
2000-06-06 22:50:44 +00:00
|
|
|
|
2000-05-08 22:51:08 +00:00
|
|
|
isc_boolean_t short_form = ISC_FALSE, printcmd = ISC_TRUE;
|
|
|
|
|
|
|
|
isc_uint16_t bufsize = 0;
|
2000-07-14 16:35:30 +00:00
|
|
|
isc_boolean_t forcecomment = ISC_FALSE;
|
2000-05-04 21:40:47 +00:00
|
|
|
|
2000-06-01 18:49:22 +00:00
|
|
|
static const char *opcodetext[] = {
|
2000-04-26 18:34:17 +00:00
|
|
|
"QUERY",
|
|
|
|
"IQUERY",
|
|
|
|
"STATUS",
|
|
|
|
"RESERVED3",
|
|
|
|
"NOTIFY",
|
|
|
|
"UPDATE",
|
|
|
|
"RESERVED6",
|
|
|
|
"RESERVED7",
|
|
|
|
"RESERVED8",
|
|
|
|
"RESERVED9",
|
|
|
|
"RESERVED10",
|
|
|
|
"RESERVED11",
|
|
|
|
"RESERVED12",
|
|
|
|
"RESERVED13",
|
|
|
|
"RESERVED14",
|
|
|
|
"RESERVED15"
|
|
|
|
};
|
|
|
|
|
2000-06-01 18:49:22 +00:00
|
|
|
static const char *rcodetext[] = {
|
2000-04-26 18:34:17 +00:00
|
|
|
"NOERROR",
|
|
|
|
"FORMERR",
|
|
|
|
"SERVFAIL",
|
|
|
|
"NXDOMAIN",
|
|
|
|
"NOTIMPL",
|
|
|
|
"REFUSED",
|
|
|
|
"YXDOMAIN",
|
|
|
|
"YXRRSET",
|
|
|
|
"NXRRSET",
|
|
|
|
"NOTAUTH",
|
|
|
|
"NOTZONE",
|
|
|
|
"RESERVED11",
|
|
|
|
"RESERVED12",
|
|
|
|
"RESERVED13",
|
|
|
|
"RESERVED14",
|
|
|
|
"RESERVED15",
|
|
|
|
"BADVERS"
|
|
|
|
};
|
2000-04-19 23:23:31 +00:00
|
|
|
|
2000-07-05 23:28:32 +00:00
|
|
|
extern char *progname;
|
|
|
|
|
2000-04-20 19:09:11 +00:00
|
|
|
static void
|
2000-05-24 03:05:58 +00:00
|
|
|
show_usage(void) {
|
2000-07-05 19:31:26 +00:00
|
|
|
fputs(
|
2000-05-12 18:45:38 +00:00
|
|
|
"Usage: dig [@global-server] [domain] [q-type] [q-class] {q-opt}\n"
|
|
|
|
" {global-d-opt} host [@local-server] {local-d-opt}\n"
|
|
|
|
" [ host [@local-server] {local-d-opt} [...]]\n"
|
|
|
|
"Where: domain are in the Domain Name System\n"
|
2000-05-02 23:23:12 +00:00
|
|
|
" q-class is one of (in,chaos,...) [default: in]\n"
|
|
|
|
" q-type is one of (a,any,mx,ns,soa,hinfo,axfr,txt,...) [default:a]\n"
|
2000-06-06 00:43:17 +00:00
|
|
|
" (Use ixfr=version for type ixfr)\n"
|
2000-05-02 23:23:12 +00:00
|
|
|
" q-opt is one of:\n"
|
|
|
|
" -x dot-notation (shortcut for in-addr lookups)\n"
|
|
|
|
" -f filename (batch mode)\n"
|
|
|
|
" -p port (specify port number)\n"
|
2000-05-03 20:27:13 +00:00
|
|
|
" -t type (specify query type)\n"
|
|
|
|
" -c class (specify query class)\n"
|
2000-06-06 00:43:17 +00:00
|
|
|
" -y name:key (specify named base64 tsig key)\n"
|
2000-05-02 23:23:12 +00:00
|
|
|
" d-opt is of the form +keyword[=value], where keyword is:\n"
|
|
|
|
" +[no]vc (TCP mode)\n"
|
2000-05-03 20:27:13 +00:00
|
|
|
" +[no]tcp (TCP mode, alternate syntax)\n"
|
|
|
|
" +time=### (Set query timeout) [5]\n"
|
|
|
|
" +tries=### (Set number of UDP attempts) [3]\n"
|
|
|
|
" +domain=### (Set default domainname)\n"
|
2000-05-08 22:51:08 +00:00
|
|
|
" +bufsize=### (Set EDNS0 Max UDP packet size)\n"
|
2000-05-03 20:27:13 +00:00
|
|
|
" +[no]search (Set whether to use searchlist)\n"
|
2000-07-12 01:41:35 +00:00
|
|
|
" +[no]defname (Set whether to use default domain)\n"
|
2000-05-03 20:27:13 +00:00
|
|
|
" +[no]recursive (Recursive mode)\n"
|
2000-07-13 21:12:21 +00:00
|
|
|
" +[no]aaonly (Set AA flag in query)\n"
|
2000-07-12 17:44:03 +00:00
|
|
|
" +[no]adflag (Set AD flag in query)\n"
|
|
|
|
" +[no]cdflag (Set CD flag in query)\n"
|
2000-05-02 23:23:12 +00:00
|
|
|
" +[no]details (Show details of all requests)\n"
|
|
|
|
" +ndots=### (Set NDOTS value)\n"
|
|
|
|
" +[no]comments (Control display of comment lines)\n"
|
|
|
|
" +[no]question (Control display of question)\n"
|
|
|
|
" +[no]answer (Control display of answer)\n"
|
2000-05-03 23:07:30 +00:00
|
|
|
" +[no]authority (Control display of authority)\n"
|
2000-05-02 23:23:12 +00:00
|
|
|
" +[no]additional (Control display of additional)\n"
|
2000-05-04 21:40:47 +00:00
|
|
|
" +[no]short (Disable everything except short\n"
|
|
|
|
" form of answer)\n"
|
2000-07-12 17:44:03 +00:00
|
|
|
" +[no]all (Set or clear all display flags)\n"
|
2000-05-08 22:51:08 +00:00
|
|
|
" +qr (Print question before sending)\n"
|
2000-06-19 19:00:49 +00:00
|
|
|
" +[no]cdflag (Set or clear CD flag in query)\n"
|
|
|
|
" +[no]adflag (Set or clear AD flag in query)\n"
|
2000-05-04 21:40:47 +00:00
|
|
|
" +[no]nssearch (Search all authorative nameservers)\n"
|
|
|
|
" +[no]identify (ID responders in short answers)\n"
|
|
|
|
" +[no]trace (Trace delegation down from root)\n"
|
2000-07-20 19:41:44 +00:00
|
|
|
" +rrlimit=### (Limit number of rr's in xfr)\n"
|
|
|
|
" +namelimit=### (Limit number of names in xfr)\n"
|
2000-05-12 18:45:38 +00:00
|
|
|
" global d-opts and servers (before host name) affect all queries.\n"
|
|
|
|
" local d-opts and servers (after host name) affect only that lookup.\n"
|
2000-05-02 23:23:12 +00:00
|
|
|
, stderr);
|
2000-08-01 01:33:37 +00:00
|
|
|
}
|
2000-04-20 19:09:11 +00:00
|
|
|
|
2000-07-18 18:51:40 +00:00
|
|
|
/*
|
|
|
|
* Callback from dighost.c to print the received message.
|
|
|
|
*/
|
2000-05-02 23:23:12 +00:00
|
|
|
void
|
|
|
|
received(int bytes, int frmsize, char *frm, dig_query_t *query) {
|
|
|
|
isc_uint64_t diff;
|
|
|
|
isc_time_t now;
|
|
|
|
isc_result_t result;
|
|
|
|
time_t tnow;
|
|
|
|
|
|
|
|
result = isc_time_now(&now);
|
2000-07-05 19:31:26 +00:00
|
|
|
check_result(result, "isc_time_now");
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-05-08 22:51:08 +00:00
|
|
|
if (query->lookup->stats) {
|
2000-05-02 23:23:12 +00:00
|
|
|
diff = isc_time_microdiff(&now, &query->time_sent);
|
|
|
|
printf(";; Query time: %ld msec\n", (long int)diff/1000);
|
2000-07-14 16:35:30 +00:00
|
|
|
printf(";; SERVER: %.*s(%s)\n", frmsize, frm,
|
|
|
|
query->servname);
|
2000-07-05 19:31:26 +00:00
|
|
|
time(&tnow);
|
2000-05-08 22:51:08 +00:00
|
|
|
printf(";; WHEN: %s", ctime(&tnow));
|
2000-07-20 19:41:44 +00:00
|
|
|
if (query->lookup->doing_xfr) {
|
|
|
|
printf(";; XFR size: %d names, %d rrs\n",
|
|
|
|
query->name_count, query->rr_count);
|
|
|
|
} else {
|
|
|
|
printf(";; MSG SIZE rcvd: %d\n", bytes);
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-07-20 19:41:44 +00:00
|
|
|
}
|
2000-06-06 18:49:06 +00:00
|
|
|
if (key != NULL) {
|
2000-06-07 00:13:57 +00:00
|
|
|
if (!validated)
|
2000-07-05 19:31:26 +00:00
|
|
|
puts(";; WARNING -- Some TSIG could not "
|
|
|
|
"be validated");
|
2000-06-06 18:49:06 +00:00
|
|
|
}
|
|
|
|
if ((key == NULL) && (keysecret[0] != 0)) {
|
2000-07-05 19:31:26 +00:00
|
|
|
puts(";; WARNING -- TSIG key was not used.");
|
2000-06-06 00:43:17 +00:00
|
|
|
}
|
2000-07-05 19:31:26 +00:00
|
|
|
puts("");
|
2000-05-06 01:16:07 +00:00
|
|
|
} else if (query->lookup->identify && !short_form) {
|
|
|
|
diff = isc_time_microdiff(&now, &query->time_sent);
|
2000-07-12 01:41:35 +00:00
|
|
|
printf(";; Received %u bytes from %.*s(%s) in %d ms\n\n",
|
|
|
|
bytes, frmsize, frm, query->servname,
|
|
|
|
(int)diff/1000);
|
2000-05-02 23:23:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-18 18:51:40 +00:00
|
|
|
/*
|
|
|
|
* Callback from dighost.c to print that it is trying a server.
|
|
|
|
* Not used in dig.
|
2000-08-01 00:53:20 +00:00
|
|
|
* XXX print_trying
|
2000-07-18 18:51:40 +00:00
|
|
|
*/
|
2000-05-02 23:23:12 +00:00
|
|
|
void
|
|
|
|
trying(int frmsize, char *frm, dig_lookup_t *lookup) {
|
2000-07-05 19:31:26 +00:00
|
|
|
UNUSED(frmsize);
|
|
|
|
UNUSED(frm);
|
|
|
|
UNUSED(lookup);
|
2000-05-08 22:51:08 +00:00
|
|
|
}
|
2000-05-02 23:23:12 +00:00
|
|
|
|
2000-07-18 18:51:40 +00:00
|
|
|
/*
|
|
|
|
* Internal print routine used to print short form replies.
|
|
|
|
*/
|
2000-05-24 19:49:51 +00:00
|
|
|
static isc_result_t
|
2000-05-24 19:27:01 +00:00
|
|
|
say_message(dns_rdata_t *rdata, dig_query_t *query, isc_buffer_t *buf) {
|
2000-05-04 21:40:47 +00:00
|
|
|
isc_result_t result;
|
2000-05-06 01:16:07 +00:00
|
|
|
isc_uint64_t diff;
|
|
|
|
isc_time_t now;
|
2000-05-24 19:27:01 +00:00
|
|
|
char store[sizeof("12345678901234567890")];
|
2000-05-04 21:40:47 +00:00
|
|
|
|
2000-05-24 19:27:01 +00:00
|
|
|
if (query->lookup->trace || query->lookup->ns_search_only) {
|
|
|
|
result = dns_rdatatype_totext(rdata->type, buf);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
return (result);
|
|
|
|
ADD_STRING(buf, " ");
|
2000-05-06 01:16:07 +00:00
|
|
|
}
|
2000-05-24 19:27:01 +00:00
|
|
|
result = dns_rdata_totext(rdata, NULL, buf);
|
|
|
|
check_result(result, "dns_rdata_totext");
|
2000-05-04 21:40:47 +00:00
|
|
|
if (query->lookup->identify) {
|
2000-05-06 01:16:07 +00:00
|
|
|
result = isc_time_now(&now);
|
2000-05-24 19:27:01 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
return (result);
|
2000-05-06 01:16:07 +00:00
|
|
|
diff = isc_time_microdiff(&now, &query->time_sent);
|
2000-05-24 19:27:01 +00:00
|
|
|
ADD_STRING(buf, " from server ");
|
|
|
|
ADD_STRING(buf, query->servname);
|
2000-07-05 19:31:26 +00:00
|
|
|
snprintf(store, 19, " in %d ms.", (int)diff/1000);
|
2000-05-24 19:27:01 +00:00
|
|
|
ADD_STRING(buf, store);
|
2000-05-04 21:40:47 +00:00
|
|
|
}
|
2000-07-05 19:31:26 +00:00
|
|
|
ADD_STRING(buf, "\n");
|
2000-05-24 19:27:01 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
2000-05-04 21:40:47 +00:00
|
|
|
}
|
|
|
|
|
2000-07-18 18:51:40 +00:00
|
|
|
/*
|
|
|
|
* short_form message print handler. Calls above say_message()
|
|
|
|
*/
|
2000-05-24 19:49:51 +00:00
|
|
|
static isc_result_t
|
2000-05-24 19:27:01 +00:00
|
|
|
short_answer(dns_message_t *msg, dns_messagetextflag_t flags,
|
|
|
|
isc_buffer_t *buf, dig_query_t *query)
|
2000-04-26 18:34:17 +00:00
|
|
|
{
|
2000-05-25 00:01:30 +00:00
|
|
|
dns_name_t *name;
|
2000-04-26 18:34:17 +00:00
|
|
|
dns_rdataset_t *rdataset;
|
|
|
|
isc_buffer_t target;
|
2000-05-04 21:40:47 +00:00
|
|
|
isc_result_t result, loopresult;
|
2000-04-26 18:34:17 +00:00
|
|
|
dns_name_t empty_name;
|
|
|
|
char t[4096];
|
2000-05-04 21:40:47 +00:00
|
|
|
dns_rdata_t rdata;
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-07-05 19:31:26 +00:00
|
|
|
UNUSED(flags);
|
2000-05-24 19:49:51 +00:00
|
|
|
|
2000-04-26 18:34:17 +00:00
|
|
|
dns_name_init(&empty_name, NULL);
|
2000-05-24 19:27:01 +00:00
|
|
|
result = dns_message_firstname(msg, DNS_SECTION_ANSWER);
|
2000-04-26 18:34:17 +00:00
|
|
|
if (result == ISC_R_NOMORE)
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
else if (result != ISC_R_SUCCESS)
|
|
|
|
return (result);
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
name = NULL;
|
2000-05-24 19:27:01 +00:00
|
|
|
dns_message_currentname(msg, DNS_SECTION_ANSWER, &name);
|
2000-04-26 18:34:17 +00:00
|
|
|
|
103. [func] libisc buffer API changes for <isc/buffer.h>:
Added:
isc_buffer_base(b) (pointer)
isc_buffer_current(b) (pointer)
isc_buffer_active(b) (pointer)
isc_buffer_used(b) (pointer)
isc_buffer_length(b) (int)
isc_buffer_usedlength(b) (int)
isc_buffer_consumedlength(b) (int)
isc_buffer_remaininglength(b) (int)
isc_buffer_activelength(b) (int)
isc_buffer_availablelength(b) (int)
Removed:
ISC_BUFFER_USEDCOUNT(b)
ISC_BUFFER_AVAILABLECOUNT(b)
isc_buffer_type(b)
Changed names:
isc_buffer_used(b, r) ->
isc_buffer_usedregion(b, r)
isc_buffer_available(b, r) ->
isc_buffer_available_region(b, r)
isc_buffer_consumed(b, r) ->
isc_buffer_consumedregion(b, r)
isc_buffer_active(b, r) ->
isc_buffer_activeregion(b, r)
isc_buffer_remaining(b, r) ->
isc_buffer_remainingregion(b, r)
Buffer types were removed, so the ISC_BUFFERTYPE_*
macros are no more, and the type argument to
isc_buffer_init and isc_buffer_allocate were removed.
isc_buffer_putstr is now void (instead of isc_result_t)
and requires that the caller ensure that there
is enough available buffer space for the string.
2000-04-27 00:03:12 +00:00
|
|
|
isc_buffer_init(&target, t, sizeof(t));
|
2000-04-26 18:34:17 +00:00
|
|
|
|
|
|
|
for (rdataset = ISC_LIST_HEAD(name->list);
|
|
|
|
rdataset != NULL;
|
|
|
|
rdataset = ISC_LIST_NEXT(rdataset, link)) {
|
2000-05-24 19:27:01 +00:00
|
|
|
loopresult = dns_rdataset_first(rdataset);
|
|
|
|
while (loopresult == ISC_R_SUCCESS) {
|
|
|
|
dns_rdataset_current(rdataset, &rdata);
|
|
|
|
result = say_message(&rdata, query,
|
|
|
|
buf);
|
2000-07-05 19:31:26 +00:00
|
|
|
check_result(result, "say_message");
|
|
|
|
loopresult = dns_rdataset_next(rdataset);
|
2000-05-04 21:40:47 +00:00
|
|
|
}
|
2000-04-26 18:34:17 +00:00
|
|
|
}
|
2000-05-24 19:27:01 +00:00
|
|
|
result = dns_message_nextname(msg, DNS_SECTION_ANSWER);
|
2000-04-26 18:34:17 +00:00
|
|
|
if (result == ISC_R_NOMORE)
|
|
|
|
break;
|
|
|
|
else if (result != ISC_R_SUCCESS)
|
|
|
|
return (result);
|
2000-04-20 19:09:11 +00:00
|
|
|
}
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-04-26 18:34:17 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
2000-04-20 19:09:11 +00:00
|
|
|
}
|
|
|
|
|
2000-07-18 18:51:40 +00:00
|
|
|
/*
|
|
|
|
* Callback from dighost.c to print the reply from a server
|
|
|
|
*/
|
2000-04-26 18:34:17 +00:00
|
|
|
isc_result_t
|
2000-04-28 21:41:19 +00:00
|
|
|
printmessage(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers) {
|
2000-04-26 18:34:17 +00:00
|
|
|
isc_boolean_t did_flag = ISC_FALSE;
|
|
|
|
isc_result_t result;
|
2000-05-24 19:27:01 +00:00
|
|
|
dns_messagetextflag_t flags;
|
2000-05-25 17:24:57 +00:00
|
|
|
isc_buffer_t *buf = NULL;
|
2000-06-23 16:53:53 +00:00
|
|
|
unsigned int len = OUTPUTBUF;
|
2000-04-26 18:34:17 +00:00
|
|
|
|
2000-07-05 19:31:26 +00:00
|
|
|
UNUSED(query);
|
2000-04-28 21:41:19 +00:00
|
|
|
|
2000-07-05 19:31:26 +00:00
|
|
|
debug("printmessage(%s)", headers ? "headers" : "noheaders");
|
2000-05-24 19:27:01 +00:00
|
|
|
|
2000-05-08 22:51:08 +00:00
|
|
|
/*
|
|
|
|
* Exitcode 9 means we timed out, but if we're printing a message,
|
2000-06-22 17:23:48 +00:00
|
|
|
* we must have recovered. Go ahead and reset it to code 0, and
|
2000-05-08 22:51:08 +00:00
|
|
|
* call this a success.
|
|
|
|
*/
|
|
|
|
if (exitcode == 9)
|
|
|
|
exitcode = 0;
|
|
|
|
|
2000-05-24 19:27:01 +00:00
|
|
|
flags = 0;
|
|
|
|
if (!headers) {
|
|
|
|
flags |= DNS_MESSAGETEXTFLAG_NOHEADERS;
|
|
|
|
flags |= DNS_MESSAGETEXTFLAG_NOCOMMENTS;
|
|
|
|
}
|
|
|
|
if (!query->lookup->comments)
|
|
|
|
flags |= DNS_MESSAGETEXTFLAG_NOCOMMENTS;
|
|
|
|
|
2000-04-26 18:34:17 +00:00
|
|
|
result = ISC_R_SUCCESS;
|
|
|
|
|
2000-06-23 16:53:53 +00:00
|
|
|
result = isc_buffer_allocate(mctx, &buf, len);
|
2000-07-05 19:31:26 +00:00
|
|
|
check_result(result, "isc_buffer_allocate");
|
2000-05-24 19:27:01 +00:00
|
|
|
|
|
|
|
if (query->lookup->comments && !short_form) {
|
|
|
|
if (!query->lookup->doing_xfr) {
|
|
|
|
if (msg == query->lookup->sendmsg)
|
2000-07-05 19:31:26 +00:00
|
|
|
printf(";; Sending:\n");
|
2000-05-24 19:27:01 +00:00
|
|
|
else
|
2000-07-05 19:31:26 +00:00
|
|
|
printf(";; Got answer:\n");
|
2000-05-24 19:27:01 +00:00
|
|
|
}
|
2000-05-08 22:51:08 +00:00
|
|
|
|
2000-05-24 19:27:01 +00:00
|
|
|
if (headers) {
|
2000-05-02 23:23:12 +00:00
|
|
|
printf(";; ->>HEADER<<- opcode: %s, status: %s, "
|
|
|
|
"id: %u\n",
|
|
|
|
opcodetext[msg->opcode], rcodetext[msg->rcode],
|
|
|
|
msg->id);
|
|
|
|
printf(";; flags: ");
|
|
|
|
if ((msg->flags & DNS_MESSAGEFLAG_QR) != 0) {
|
|
|
|
printf("qr");
|
|
|
|
did_flag = ISC_TRUE;
|
|
|
|
}
|
|
|
|
if ((msg->flags & DNS_MESSAGEFLAG_AA) != 0) {
|
|
|
|
printf("%saa", did_flag ? " " : "");
|
2000-05-17 18:36:31 +00:00
|
|
|
did_flag = ISC_TRUE; }
|
|
|
|
if ((msg->flags & DNS_MESSAGEFLAG_TC) != 0) {
|
|
|
|
printf("%stc", did_flag ? " " : "");
|
|
|
|
did_flag = ISC_TRUE;
|
2000-08-01 01:33:37 +00:00
|
|
|
}
|
2000-05-17 18:36:31 +00:00
|
|
|
if ((msg->flags & DNS_MESSAGEFLAG_RD) != 0) {
|
|
|
|
printf("%srd", did_flag ? " " : "");
|
|
|
|
did_flag = ISC_TRUE;
|
|
|
|
}
|
|
|
|
if ((msg->flags & DNS_MESSAGEFLAG_RA) != 0) {
|
|
|
|
printf("%sra", did_flag ? " " : "");
|
|
|
|
did_flag = ISC_TRUE;
|
|
|
|
}
|
|
|
|
if ((msg->flags & DNS_MESSAGEFLAG_AD) != 0) {
|
|
|
|
printf("%sad", did_flag ? " " : "");
|
2000-05-02 23:23:12 +00:00
|
|
|
did_flag = ISC_TRUE;
|
|
|
|
}
|
2000-05-17 18:36:31 +00:00
|
|
|
if ((msg->flags & DNS_MESSAGEFLAG_CD) != 0) {
|
|
|
|
printf("%scd", did_flag ? " " : "");
|
|
|
|
did_flag = ISC_TRUE;
|
|
|
|
}
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-05-17 18:36:31 +00:00
|
|
|
printf("; QUERY: %u, ANSWER: %u, "
|
|
|
|
"AUTHORITY: %u, ADDITIONAL: %u\n",
|
|
|
|
msg->counts[DNS_SECTION_QUESTION],
|
|
|
|
msg->counts[DNS_SECTION_ANSWER],
|
|
|
|
msg->counts[DNS_SECTION_AUTHORITY],
|
|
|
|
msg->counts[DNS_SECTION_ADDITIONAL]);
|
|
|
|
|
2000-05-24 19:27:01 +00:00
|
|
|
result = dns_message_pseudosectiontotext(msg,
|
|
|
|
DNS_PSEUDOSECTION_OPT,
|
|
|
|
flags, buf);
|
2000-08-01 01:33:37 +00:00
|
|
|
check_result(result,
|
2000-05-24 19:27:01 +00:00
|
|
|
"dns_message_pseudosectiontotext");
|
2000-04-26 18:34:17 +00:00
|
|
|
}
|
2000-04-19 23:23:31 +00:00
|
|
|
}
|
2000-05-24 19:27:01 +00:00
|
|
|
|
|
|
|
if (query->lookup->section_question && headers) {
|
|
|
|
if (!short_form) {
|
2000-07-05 19:31:26 +00:00
|
|
|
question_again:
|
2000-05-24 19:27:01 +00:00
|
|
|
result = dns_message_sectiontotext(msg,
|
|
|
|
DNS_SECTION_QUESTION,
|
|
|
|
flags, buf);
|
2000-06-23 16:53:53 +00:00
|
|
|
if (result == ISC_R_NOSPACE) {
|
|
|
|
len += OUTPUTBUF;
|
|
|
|
isc_buffer_free(&buf);
|
|
|
|
result = isc_buffer_allocate(mctx, &buf, len);
|
|
|
|
if (result == ISC_R_SUCCESS)
|
|
|
|
goto question_again;
|
|
|
|
}
|
2000-05-24 19:27:01 +00:00
|
|
|
check_result(result, "dns_message_sectiontotext");
|
|
|
|
}
|
2000-08-01 01:33:37 +00:00
|
|
|
}
|
2000-05-24 19:27:01 +00:00
|
|
|
if (query->lookup->section_answer) {
|
|
|
|
if (!short_form) {
|
2000-07-05 19:31:26 +00:00
|
|
|
answer_again:
|
2000-05-24 19:27:01 +00:00
|
|
|
result = dns_message_sectiontotext(msg,
|
|
|
|
DNS_SECTION_ANSWER,
|
|
|
|
flags, buf);
|
2000-06-23 16:53:53 +00:00
|
|
|
if (result == ISC_R_NOSPACE) {
|
|
|
|
len += OUTPUTBUF;
|
|
|
|
isc_buffer_free(&buf);
|
|
|
|
result = isc_buffer_allocate(mctx, &buf, len);
|
|
|
|
if (result == ISC_R_SUCCESS)
|
|
|
|
goto answer_again;
|
|
|
|
}
|
2000-05-24 19:27:01 +00:00
|
|
|
check_result(result, "dns_message_sectiontotext");
|
2000-07-05 19:31:26 +00:00
|
|
|
} else {
|
2000-05-24 19:27:01 +00:00
|
|
|
result = short_answer(msg, flags, buf, query);
|
2000-07-05 19:31:26 +00:00
|
|
|
check_result(result, "short_answer");
|
2000-05-24 19:27:01 +00:00
|
|
|
}
|
2000-08-01 01:33:37 +00:00
|
|
|
}
|
2000-05-24 19:27:01 +00:00
|
|
|
if (query->lookup->section_authority) {
|
|
|
|
if (!short_form) {
|
2000-07-05 19:31:26 +00:00
|
|
|
authority_again:
|
2000-05-24 19:27:01 +00:00
|
|
|
result = dns_message_sectiontotext(msg,
|
|
|
|
DNS_SECTION_AUTHORITY,
|
|
|
|
flags, buf);
|
2000-06-23 16:53:53 +00:00
|
|
|
if (result == ISC_R_NOSPACE) {
|
|
|
|
len += OUTPUTBUF;
|
|
|
|
isc_buffer_free(&buf);
|
|
|
|
result = isc_buffer_allocate(mctx, &buf, len);
|
|
|
|
if (result == ISC_R_SUCCESS)
|
|
|
|
goto authority_again;
|
|
|
|
}
|
2000-05-24 19:27:01 +00:00
|
|
|
check_result(result, "dns_message_sectiontotext");
|
|
|
|
}
|
2000-08-01 01:33:37 +00:00
|
|
|
}
|
2000-05-24 19:27:01 +00:00
|
|
|
if (query->lookup->section_additional) {
|
|
|
|
if (!short_form) {
|
2000-07-05 19:31:26 +00:00
|
|
|
additional_again:
|
2000-05-24 19:27:01 +00:00
|
|
|
result = dns_message_sectiontotext(msg,
|
|
|
|
DNS_SECTION_ADDITIONAL,
|
|
|
|
flags, buf);
|
2000-06-23 16:53:53 +00:00
|
|
|
if (result == ISC_R_NOSPACE) {
|
|
|
|
len += OUTPUTBUF;
|
|
|
|
isc_buffer_free(&buf);
|
|
|
|
result = isc_buffer_allocate(mctx, &buf, len);
|
|
|
|
if (result == ISC_R_SUCCESS)
|
|
|
|
goto additional_again;
|
|
|
|
}
|
2000-05-24 19:27:01 +00:00
|
|
|
check_result(result, "dns_message_sectiontotext");
|
2000-07-05 19:31:26 +00:00
|
|
|
/*
|
|
|
|
* Only print the signature on the first record.
|
|
|
|
*/
|
2000-06-06 00:43:17 +00:00
|
|
|
if (headers) {
|
|
|
|
result = dns_message_pseudosectiontotext(
|
|
|
|
msg,
|
|
|
|
DNS_PSEUDOSECTION_TSIG,
|
|
|
|
flags, buf);
|
|
|
|
check_result(result,
|
|
|
|
"dns_message_pseudosectiontotext");
|
|
|
|
result = dns_message_pseudosectiontotext(
|
|
|
|
msg,
|
|
|
|
DNS_PSEUDOSECTION_SIG0,
|
|
|
|
flags, buf);
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-06-06 00:43:17 +00:00
|
|
|
check_result(result,
|
|
|
|
"dns_message_pseudosectiontotext");
|
|
|
|
}
|
2000-05-24 19:27:01 +00:00
|
|
|
}
|
2000-08-01 01:33:37 +00:00
|
|
|
}
|
2000-05-06 01:16:07 +00:00
|
|
|
if (headers && query->lookup->comments && !short_form)
|
2000-04-26 18:34:17 +00:00
|
|
|
printf("\n");
|
2000-04-19 23:23:31 +00:00
|
|
|
|
2000-07-05 19:31:26 +00:00
|
|
|
printf("%.*s", (int)isc_buffer_usedlength(buf),
|
|
|
|
(char *)isc_buffer_base(buf));
|
2000-05-24 19:27:01 +00:00
|
|
|
isc_buffer_free(&buf);
|
2000-04-26 18:34:17 +00:00
|
|
|
return (result);
|
|
|
|
}
|
2000-04-19 23:23:31 +00:00
|
|
|
|
2000-07-18 18:51:40 +00:00
|
|
|
/*
|
|
|
|
* print the greeting message when the program first starts up.
|
|
|
|
*/
|
2000-05-08 22:51:08 +00:00
|
|
|
static void
|
|
|
|
printgreeting(int argc, char **argv) {
|
|
|
|
int i = 1;
|
|
|
|
|
|
|
|
if (printcmd) {
|
2000-07-05 19:31:26 +00:00
|
|
|
puts("");
|
|
|
|
printf("; <<>> DiG 9.0 <<>>");
|
2000-05-08 22:51:08 +00:00
|
|
|
while (i < argc) {
|
2000-07-05 19:31:26 +00:00
|
|
|
printf(" %s", argv[i++]);
|
2000-05-08 22:51:08 +00:00
|
|
|
}
|
2000-07-05 19:31:26 +00:00
|
|
|
puts("");
|
|
|
|
printf(";; global options: %s %s\n",
|
|
|
|
short_form ? "short_form" : "",
|
|
|
|
printcmd ? "printcmd" : "");
|
2000-05-08 22:51:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-04-26 18:34:17 +00:00
|
|
|
/*
|
2000-05-03 23:07:30 +00:00
|
|
|
* Reorder an argument list so that server names all come at the end.
|
|
|
|
* This is a bit of a hack, to allow batch-mode processing to properly
|
|
|
|
* handle the server options.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
reorder_args(int argc, char *argv[]) {
|
|
|
|
int i, j;
|
|
|
|
char *ptr;
|
|
|
|
int end;
|
|
|
|
|
2000-07-05 19:31:26 +00:00
|
|
|
debug("reorder_args()");
|
|
|
|
end = argc - 1;
|
2000-05-03 23:07:30 +00:00
|
|
|
while (argv[end][0] == '@') {
|
|
|
|
end--;
|
|
|
|
if (end == 0)
|
|
|
|
return;
|
|
|
|
}
|
2000-07-05 19:31:26 +00:00
|
|
|
debug("arg[end]=%s", argv[end]);
|
|
|
|
for (i = 1; i < end - 1; i++) {
|
2000-05-24 03:05:58 +00:00
|
|
|
if (argv[i][0] == '@') {
|
2000-07-05 23:28:32 +00:00
|
|
|
debug("arg[%d]=%s", i, argv[i]);
|
2000-05-24 03:05:58 +00:00
|
|
|
ptr = argv[i];
|
2000-07-05 19:31:26 +00:00
|
|
|
for (j = i + 1; j < end; j++) {
|
|
|
|
debug("Moving %s to %d", argv[j], j - 1);
|
|
|
|
argv[j - 1] = argv[j];
|
2000-05-03 23:07:30 +00:00
|
|
|
}
|
2000-07-05 23:28:32 +00:00
|
|
|
debug("moving %s to end, %d", ptr, end - 1);
|
2000-07-05 19:31:26 +00:00
|
|
|
argv[end - 1] = ptr;
|
2000-05-03 23:07:30 +00:00
|
|
|
end--;
|
|
|
|
if (end < 1)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
2000-07-18 18:51:40 +00:00
|
|
|
* that routine.
|
2000-08-01 00:53:20 +00:00
|
|
|
* XXX doc options
|
2000-05-03 23:07:30 +00:00
|
|
|
*/
|
2000-05-12 01:02:37 +00:00
|
|
|
static void
|
2000-07-24 20:46:55 +00:00
|
|
|
parse_args(isc_boolean_t is_batchfile, isc_boolean_t config_only,
|
|
|
|
int argc, char **argv) {
|
2000-07-18 01:28:20 +00:00
|
|
|
isc_result_t result;
|
|
|
|
isc_textregion_t tr;
|
2000-07-20 17:56:20 +00:00
|
|
|
dig_server_t *srv = NULL;
|
103. [func] libisc buffer API changes for <isc/buffer.h>:
Added:
isc_buffer_base(b) (pointer)
isc_buffer_current(b) (pointer)
isc_buffer_active(b) (pointer)
isc_buffer_used(b) (pointer)
isc_buffer_length(b) (int)
isc_buffer_usedlength(b) (int)
isc_buffer_consumedlength(b) (int)
isc_buffer_remaininglength(b) (int)
isc_buffer_activelength(b) (int)
isc_buffer_availablelength(b) (int)
Removed:
ISC_BUFFER_USEDCOUNT(b)
ISC_BUFFER_AVAILABLECOUNT(b)
isc_buffer_type(b)
Changed names:
isc_buffer_used(b, r) ->
isc_buffer_usedregion(b, r)
isc_buffer_available(b, r) ->
isc_buffer_available_region(b, r)
isc_buffer_consumed(b, r) ->
isc_buffer_consumedregion(b, r)
isc_buffer_active(b, r) ->
isc_buffer_activeregion(b, r)
isc_buffer_remaining(b, r) ->
isc_buffer_remainingregion(b, r)
Buffer types were removed, so the ISC_BUFFERTYPE_*
macros are no more, and the type argument to
isc_buffer_init and isc_buffer_allocate were removed.
isc_buffer_putstr is now void (instead of isc_result_t)
and requires that the caller ensure that there
is enough available buffer space for the string.
2000-04-27 00:03:12 +00:00
|
|
|
dig_lookup_t *lookup = NULL;
|
2000-07-18 01:28:20 +00:00
|
|
|
dns_rdatatype_t rdtype;
|
|
|
|
dns_rdataclass_t rdclass;
|
2000-04-19 23:23:31 +00:00
|
|
|
char batchline[MXNAME];
|
2000-05-19 17:54:04 +00:00
|
|
|
char address[MXNAME];
|
2000-04-19 23:23:31 +00:00
|
|
|
int bargc;
|
2000-05-03 23:07:30 +00:00
|
|
|
char *bargv[16];
|
|
|
|
int i, n;
|
2000-04-26 18:34:17 +00:00
|
|
|
int adrs[4];
|
2000-05-08 22:51:08 +00:00
|
|
|
int rc;
|
|
|
|
char **rv;
|
2000-06-06 00:43:17 +00:00
|
|
|
char *ptr;
|
2000-07-24 23:13:44 +00:00
|
|
|
#ifndef NOPOSIX
|
|
|
|
char *homedir;
|
|
|
|
char rcfile[132];
|
|
|
|
#endif
|
2000-05-08 22:51:08 +00:00
|
|
|
|
2000-05-12 18:45:38 +00:00
|
|
|
/*
|
|
|
|
* The semantics for parsing the args is a bit complex; if
|
|
|
|
* we don't have a host yet, make the arg apply globally,
|
|
|
|
* otherwise make it apply to the latest host. This is
|
|
|
|
* a bit different than the previous versions, but should
|
|
|
|
* form a consistent user interface.
|
2000-07-13 18:52:58 +00:00
|
|
|
*
|
|
|
|
* First, create a "default lookup" which won't actually be used
|
|
|
|
* anywhere, except for cloning into new lookups
|
2000-05-12 18:45:38 +00:00
|
|
|
*/
|
|
|
|
|
2000-07-20 17:56:20 +00:00
|
|
|
debug("parse_args()");
|
|
|
|
if (!is_batchfile) {
|
|
|
|
debug("making new lookup");
|
2000-07-13 18:52:58 +00:00
|
|
|
default_lookup = make_empty_lookup();
|
2000-07-24 20:46:55 +00:00
|
|
|
|
2000-07-24 23:13:44 +00:00
|
|
|
#ifndef NOPOSIX
|
2000-07-24 20:46:55 +00:00
|
|
|
/*
|
|
|
|
* Treat .digrc as a special batchfile
|
|
|
|
*/
|
2000-07-24 23:13:44 +00:00
|
|
|
homedir = getenv("HOME");
|
|
|
|
if (homedir != NULL)
|
|
|
|
snprintf(rcfile, 132, "%s/.digrc", homedir);
|
|
|
|
else
|
|
|
|
strcpy(rcfile, ".digrc");
|
|
|
|
batchfp = fopen(rcfile, "r");
|
2000-07-24 20:46:55 +00:00
|
|
|
if (batchfp != NULL) {
|
|
|
|
while (fgets(batchline, sizeof(batchline),
|
|
|
|
batchfp) != 0) {
|
|
|
|
debug("config line %s", batchline);
|
|
|
|
bargc = 1;
|
|
|
|
bargv[bargc] = strtok(batchline, " \t\r\n");
|
|
|
|
while ((bargv[bargc] != NULL) &&
|
|
|
|
(bargc < 14)) {
|
|
|
|
bargc++;
|
|
|
|
bargv[bargc] = strtok(NULL, " \t\r\n");
|
|
|
|
}
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-07-24 20:46:55 +00:00
|
|
|
bargv[0] = argv[0];
|
|
|
|
argv0 = argv[0];
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-07-24 20:46:55 +00:00
|
|
|
reorder_args(bargc, (char **)bargv);
|
|
|
|
parse_args(ISC_TRUE, ISC_TRUE, bargc,
|
|
|
|
(char **)bargv);
|
|
|
|
}
|
|
|
|
fclose(batchfp);
|
|
|
|
}
|
2000-07-24 23:13:44 +00:00
|
|
|
#endif
|
2000-07-20 17:56:20 +00:00
|
|
|
}
|
2000-07-13 18:52:58 +00:00
|
|
|
|
|
|
|
lookup = default_lookup;
|
|
|
|
|
2000-05-08 22:51:08 +00:00
|
|
|
rc = argc;
|
|
|
|
rv = argv;
|
|
|
|
for (rc--, rv++; rc > 0; rc--, rv++) {
|
2000-07-05 23:28:32 +00:00
|
|
|
debug("main parsing %s", rv[0]);
|
2000-08-01 01:33:37 +00:00
|
|
|
if (strncmp(rv[0], "%", 1) == 0)
|
2000-06-21 01:40:42 +00:00
|
|
|
break;
|
2000-05-08 22:51:08 +00:00
|
|
|
if (strncmp(rv[0], "@", 1) == 0) {
|
2000-07-14 16:35:30 +00:00
|
|
|
srv = make_server(&rv[0][1]);
|
2000-07-13 18:52:58 +00:00
|
|
|
ISC_LIST_APPEND(lookup->my_server_list,
|
|
|
|
srv, link);
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if ((strcmp(rv[0], "+vc") == 0)
|
2000-04-19 23:23:31 +00:00
|
|
|
&& (!is_batchfile)) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->tcp_mode = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if ((strcmp(rv[0], "+novc") == 0)
|
2000-04-28 21:41:19 +00:00
|
|
|
&& (!is_batchfile)) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->tcp_mode = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if ((strcmp(rv[0], "+tcp") == 0)
|
2000-05-03 20:27:13 +00:00
|
|
|
&& (!is_batchfile)) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->tcp_mode = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if ((strcmp(rv[0], "+notcp") == 0)
|
2000-05-03 20:27:13 +00:00
|
|
|
&& (!is_batchfile)) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->tcp_mode = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+domain=", 8) == 0) {
|
2000-05-12 18:45:38 +00:00
|
|
|
/* Global option always */
|
2000-07-05 19:31:26 +00:00
|
|
|
strncpy(fixeddomain, &rv[0][8], MXNAME);
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+sea", 4) == 0) {
|
2000-05-12 18:45:38 +00:00
|
|
|
/* Global option always */
|
2000-05-03 20:27:13 +00:00
|
|
|
usesearch = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+nosea", 6) == 0) {
|
2000-05-03 20:27:13 +00:00
|
|
|
usesearch = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+defn", 5) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->defname = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+nodefn", 7) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->defname = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+time=", 6) == 0) {
|
2000-05-12 18:45:38 +00:00
|
|
|
/* Global option always */
|
2000-05-08 22:51:08 +00:00
|
|
|
timeout = atoi(&rv[0][6]);
|
2000-04-26 18:34:17 +00:00
|
|
|
if (timeout <= 0)
|
|
|
|
timeout = 1;
|
2000-07-12 00:22:57 +00:00
|
|
|
debug("timeout set to %d", timeout);
|
2000-07-11 17:35:49 +00:00
|
|
|
} else if (strncmp(rv[0], "+timeout=", 9) == 0) {
|
|
|
|
/* Global option always */
|
|
|
|
timeout = atoi(&rv[0][9]);
|
|
|
|
if (timeout <= 0)
|
|
|
|
timeout = 1;
|
2000-07-12 00:22:57 +00:00
|
|
|
debug("timeout set to %d", timeout);
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+tries=", 7) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->retries = atoi(&rv[0][7]);
|
|
|
|
if (lookup->retries <= 0)
|
|
|
|
lookup->retries = 1;
|
2000-07-20 19:41:44 +00:00
|
|
|
} else if (strncmp(rv[0], "+namelimit=", 11) == 0) {
|
|
|
|
name_limit = atoi(&rv[0][11]);
|
|
|
|
} else if (strncmp(rv[0], "+rrlimit=", 9) == 0) {
|
|
|
|
rr_limit = atoi(&rv[0][9]);
|
|
|
|
} else if (strncmp(rv[0], "+buf=", 5) == 0) {
|
|
|
|
lookup->udpsize = atoi(&rv[0][5]);
|
|
|
|
if (lookup->udpsize <= 0)
|
|
|
|
lookup->udpsize = 0;
|
|
|
|
if (lookup->udpsize > COMMSIZE)
|
|
|
|
lookup->udpsize = COMMSIZE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+buf=", 5) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->udpsize = atoi(&rv[0][5]);
|
|
|
|
if (lookup->udpsize <= 0)
|
|
|
|
lookup->udpsize = 0;
|
|
|
|
if (lookup->udpsize > COMMSIZE)
|
|
|
|
lookup->udpsize = COMMSIZE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+bufsize=", 9) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->udpsize = atoi(&rv[0][9]);
|
|
|
|
if (lookup->udpsize <= 0)
|
|
|
|
lookup->udpsize = 0;
|
|
|
|
if (lookup->udpsize > COMMSIZE)
|
|
|
|
lookup->udpsize = COMMSIZE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+ndots=", 7) == 0) {
|
2000-05-12 18:45:38 +00:00
|
|
|
/* Global option always */
|
2000-05-08 22:51:08 +00:00
|
|
|
ndots = atoi(&rv[0][7]);
|
2000-05-12 18:45:38 +00:00
|
|
|
if (ndots < 0)
|
|
|
|
ndots = 0;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+rec", 4) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->recurse = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+norec", 6) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->recurse = ISC_FALSE;
|
2000-07-13 21:12:21 +00:00
|
|
|
} else if (strncmp(rv[0], "+aa", 3) == 0) {
|
|
|
|
lookup->aaonly = ISC_TRUE;
|
|
|
|
} else if (strncmp(rv[0], "+noaa", 5) == 0) {
|
|
|
|
lookup->aaonly = ISC_FALSE;
|
2000-06-19 19:00:49 +00:00
|
|
|
} else if (strncmp(rv[0], "+adf", 4) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->adflag = ISC_TRUE;
|
2000-06-19 19:00:49 +00:00
|
|
|
} else if (strncmp(rv[0], "+noadf", 6) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->adflag = ISC_FALSE;
|
2000-06-16 18:00:05 +00:00
|
|
|
} else if (strncmp(rv[0], "+cd", 3) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->cdflag = ISC_TRUE;
|
2000-06-16 18:00:05 +00:00
|
|
|
} else if (strncmp(rv[0], "+nocd", 5) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->cdflag = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+ns", 3) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->ns_search_only = ISC_TRUE;
|
|
|
|
lookup->trace_root = ISC_TRUE;
|
|
|
|
lookup->recurse = ISC_FALSE;
|
|
|
|
lookup->identify = ISC_TRUE;
|
|
|
|
lookup->stats = ISC_FALSE;
|
|
|
|
if (!forcecomment)
|
|
|
|
lookup->comments = ISC_FALSE;
|
|
|
|
lookup->section_additional = ISC_FALSE;
|
|
|
|
lookup->section_authority = ISC_FALSE;
|
|
|
|
lookup->section_question = ISC_FALSE;
|
2000-07-18 01:28:20 +00:00
|
|
|
lookup->rdtype = dns_rdatatype_soa;
|
2000-07-14 16:35:30 +00:00
|
|
|
short_form = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+nons", 6) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->ns_search_only = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+tr", 3) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->trace = ISC_TRUE;
|
|
|
|
lookup->trace_root = ISC_TRUE;
|
|
|
|
lookup->recurse = ISC_FALSE;
|
|
|
|
lookup->identify = ISC_TRUE;
|
|
|
|
if (!forcecomment) {
|
|
|
|
lookup->comments = ISC_FALSE;
|
|
|
|
lookup->stats = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
}
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->section_additional = ISC_FALSE;
|
|
|
|
lookup->section_authority = ISC_TRUE;
|
|
|
|
lookup->section_question = ISC_FALSE;
|
|
|
|
show_details = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+notr", 6) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->trace = ISC_FALSE;
|
|
|
|
lookup->trace_root = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+det", 4) == 0) {
|
2000-05-02 23:23:12 +00:00
|
|
|
show_details = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+nodet", 6) == 0) {
|
2000-05-02 23:23:12 +00:00
|
|
|
show_details = ISC_FALSE;
|
2000-05-16 18:54:40 +00:00
|
|
|
} else if (strncmp(rv[0], "+cmd", 4) == 0) {
|
|
|
|
printcmd = ISC_TRUE;
|
|
|
|
} else if (strncmp(rv[0], "+nocmd", 6) == 0) {
|
|
|
|
printcmd = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+sho", 4) == 0) {
|
2000-05-04 21:40:47 +00:00
|
|
|
short_form = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
printcmd = ISC_FALSE;
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->section_additional = ISC_FALSE;
|
|
|
|
lookup->section_authority = ISC_FALSE;
|
|
|
|
lookup->section_question = ISC_FALSE;
|
|
|
|
if (!forcecomment) {
|
|
|
|
lookup->comments = ISC_FALSE;
|
|
|
|
lookup->stats = ISC_FALSE;
|
2000-05-12 18:45:38 +00:00
|
|
|
}
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+nosho", 6) == 0) {
|
2000-05-04 21:40:47 +00:00
|
|
|
short_form = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+id", 3) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->identify = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+noid", 5) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->identify = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+com", 4) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->comments = ISC_TRUE;
|
2000-05-06 01:16:07 +00:00
|
|
|
forcecomment = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+nocom", 6) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->comments = ISC_FALSE;
|
|
|
|
lookup->stats = ISC_FALSE;
|
2000-05-06 01:16:07 +00:00
|
|
|
forcecomment = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+sta", 4) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->stats = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+nosta", 6) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->stats = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+qr", 3) == 0) {
|
|
|
|
qr = ISC_TRUE;
|
|
|
|
} else if (strncmp(rv[0], "+noqr", 5) == 0) {
|
|
|
|
qr = ISC_FALSE;
|
|
|
|
} else if (strncmp(rv[0], "+que", 4) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->section_question = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+noque", 6) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->section_question = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+ans", 4) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->section_answer = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+noans", 6) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->section_answer = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+add", 4) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->section_additional = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+noadd", 6) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->section_additional = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+aut", 4) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->section_authority = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+noaut", 6) == 0) {
|
2000-05-12 18:45:38 +00:00
|
|
|
lookup->section_authority = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+all", 4) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->section_question = ISC_TRUE;
|
|
|
|
lookup->section_authority = ISC_TRUE;
|
|
|
|
lookup->section_answer = ISC_TRUE;
|
|
|
|
lookup->section_additional = ISC_TRUE;
|
|
|
|
lookup->comments = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "+noall", 6) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->section_question = ISC_FALSE;
|
|
|
|
lookup->section_authority = ISC_FALSE;
|
|
|
|
lookup->section_answer = ISC_FALSE;
|
|
|
|
lookup->section_additional = ISC_FALSE;
|
|
|
|
lookup->comments = ISC_FALSE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "-c", 2) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
if (rv[0][2] != 0) {
|
2000-07-18 01:28:20 +00:00
|
|
|
ptr = &rv[0][2];
|
2000-07-13 18:52:58 +00:00
|
|
|
} else {
|
2000-07-25 00:51:14 +00:00
|
|
|
if (rc <= 1) {
|
|
|
|
show_usage();
|
2000-08-01 00:53:20 +00:00
|
|
|
exit(exitcode);
|
2000-07-25 00:51:14 +00:00
|
|
|
}
|
2000-07-18 01:28:20 +00:00
|
|
|
ptr = rv[1];
|
2000-07-13 18:52:58 +00:00
|
|
|
rv++;
|
|
|
|
rc--;
|
2000-05-03 20:27:13 +00:00
|
|
|
}
|
2000-07-18 01:28:20 +00:00
|
|
|
tr.base = ptr;
|
|
|
|
tr.length = strlen(ptr);
|
|
|
|
result = dns_rdataclass_fromtext(&rdclass,
|
|
|
|
(isc_textregion_t *)&tr);
|
|
|
|
if (result == ISC_R_SUCCESS)
|
|
|
|
lookup->rdclass = rdclass;
|
|
|
|
else
|
|
|
|
fprintf (stderr, ";; Warning, ignoring "
|
|
|
|
"invalid class %s\n",
|
|
|
|
ptr);
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "-t", 2) == 0) {
|
2000-07-13 18:52:58 +00:00
|
|
|
if (rv[0][2] != 0) {
|
2000-07-18 01:28:20 +00:00
|
|
|
ptr = &rv[0][2];
|
2000-07-13 18:52:58 +00:00
|
|
|
} else {
|
2000-07-25 00:51:14 +00:00
|
|
|
if (rc <= 1) {
|
|
|
|
show_usage();
|
2000-08-01 00:53:20 +00:00
|
|
|
exit(exitcode);
|
2000-07-25 00:51:14 +00:00
|
|
|
}
|
2000-07-18 01:28:20 +00:00
|
|
|
ptr = rv[1];
|
2000-07-13 18:52:58 +00:00
|
|
|
rv++;
|
|
|
|
rc--;
|
2000-05-03 20:27:13 +00:00
|
|
|
}
|
2000-07-18 01:28:20 +00:00
|
|
|
tr.base = ptr;
|
|
|
|
tr.length = strlen(ptr);
|
|
|
|
if (strncmp(rv[0], "ixfr=", 5) == 0) {
|
|
|
|
lookup->rdtype = dns_rdatatype_ixfr;
|
2000-08-01 01:33:37 +00:00
|
|
|
lookup->ixfr_serial =
|
2000-07-18 01:28:20 +00:00
|
|
|
atoi(&rv[0][5]);
|
|
|
|
} else {
|
|
|
|
result = dns_rdatatype_fromtext(&rdtype,
|
|
|
|
(isc_textregion_t *)&tr);
|
|
|
|
if ((result == ISC_R_SUCCESS) &&
|
|
|
|
(rdtype != dns_rdatatype_ixfr))
|
|
|
|
lookup->rdtype = rdtype;
|
|
|
|
else
|
|
|
|
fprintf (stderr, ";; Warning, "
|
|
|
|
"ignoring invalid type %s\n",
|
|
|
|
ptr);
|
|
|
|
}
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "-f", 2) == 0) {
|
2000-05-24 03:05:58 +00:00
|
|
|
if (rv[0][2] != 0) {
|
|
|
|
batchname = &rv[0][2];
|
2000-04-26 18:34:17 +00:00
|
|
|
} else {
|
2000-07-25 00:51:14 +00:00
|
|
|
if (rc <= 1) {
|
|
|
|
show_usage();
|
2000-08-01 00:53:20 +00:00
|
|
|
exit(exitcode);
|
2000-07-25 00:51:14 +00:00
|
|
|
}
|
2000-05-24 03:05:58 +00:00
|
|
|
batchname = rv[1];
|
2000-05-08 22:51:08 +00:00
|
|
|
rv++;
|
|
|
|
rc--;
|
2000-04-26 18:34:17 +00:00
|
|
|
}
|
2000-06-06 00:43:17 +00:00
|
|
|
} else if (strncmp(rv[0], "-y", 2) == 0) {
|
|
|
|
if (rv[0][2] != 0)
|
|
|
|
ptr = &rv[0][2];
|
|
|
|
else {
|
2000-07-25 00:51:14 +00:00
|
|
|
if (rc <= 1) {
|
|
|
|
show_usage();
|
2000-08-01 00:53:20 +00:00
|
|
|
exit(exitcode);
|
2000-07-25 00:51:14 +00:00
|
|
|
}
|
2000-06-06 00:43:17 +00:00
|
|
|
ptr = rv[1];
|
|
|
|
rv++;
|
|
|
|
rc--;
|
|
|
|
}
|
|
|
|
ptr = strtok(ptr,":");
|
|
|
|
if (ptr == NULL) {
|
|
|
|
show_usage();
|
2000-07-05 19:31:26 +00:00
|
|
|
exit(exitcode);
|
2000-06-06 00:43:17 +00:00
|
|
|
}
|
|
|
|
strncpy(keynametext, ptr, MXNAME);
|
|
|
|
ptr = strtok(NULL, "");
|
|
|
|
if (ptr == NULL) {
|
|
|
|
show_usage();
|
2000-07-05 19:31:26 +00:00
|
|
|
exit(exitcode);
|
2000-06-06 00:43:17 +00:00
|
|
|
}
|
|
|
|
strncpy(keysecret, ptr, MXNAME);
|
2000-07-19 17:52:27 +00:00
|
|
|
} else if (strncmp(rv[0], "-k", 2) == 0) {
|
|
|
|
if (rv[0][2] != 0)
|
|
|
|
ptr = &rv[0][2];
|
|
|
|
else {
|
2000-07-25 00:51:14 +00:00
|
|
|
if (rc <= 1) {
|
|
|
|
show_usage();
|
2000-08-01 00:53:20 +00:00
|
|
|
exit(exitcode);
|
2000-07-25 00:51:14 +00:00
|
|
|
}
|
2000-07-19 17:52:27 +00:00
|
|
|
ptr = rv[1];
|
|
|
|
rv++;
|
|
|
|
rc--;
|
|
|
|
}
|
|
|
|
strncpy(keyfile, ptr, MXNAME);
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "-p", 2) == 0) {
|
2000-08-01 01:33:37 +00:00
|
|
|
if (rv[0][2] != 0) {
|
2000-05-24 03:05:58 +00:00
|
|
|
port = atoi(&rv[0][2]);
|
2000-04-26 18:34:17 +00:00
|
|
|
} else {
|
2000-07-25 00:51:14 +00:00
|
|
|
if (rc <= 1) {
|
|
|
|
show_usage();
|
2000-08-01 00:53:20 +00:00
|
|
|
exit(exitcode);
|
2000-07-25 00:51:14 +00:00
|
|
|
}
|
2000-05-24 03:05:58 +00:00
|
|
|
port = atoi(rv[1]);
|
2000-05-08 22:51:08 +00:00
|
|
|
rv++;
|
|
|
|
rc--;
|
2000-04-26 18:34:17 +00:00
|
|
|
}
|
2000-05-19 17:54:04 +00:00
|
|
|
} else if (strncmp(rv[0], "-b", 2) == 0) {
|
2000-05-24 03:05:58 +00:00
|
|
|
if (rv[0][2] != 0) {
|
2000-05-19 17:54:04 +00:00
|
|
|
strncpy(address, &rv[0][2],
|
2000-08-01 00:53:20 +00:00
|
|
|
sizeof(address));
|
2000-05-19 17:54:04 +00:00
|
|
|
} else {
|
2000-07-25 00:51:14 +00:00
|
|
|
if (rc <= 1) {
|
|
|
|
show_usage();
|
2000-08-01 00:53:20 +00:00
|
|
|
exit(exitcode);
|
2000-07-25 00:51:14 +00:00
|
|
|
}
|
2000-05-19 17:54:04 +00:00
|
|
|
strncpy(address, rv[1],
|
2000-08-01 00:53:20 +00:00
|
|
|
sizeof(address));
|
2000-05-19 17:54:04 +00:00
|
|
|
rv++;
|
|
|
|
rc--;
|
|
|
|
}
|
|
|
|
get_address(address, 0, &bind_address);
|
|
|
|
specified_source = ISC_TRUE;
|
2000-05-08 22:51:08 +00:00
|
|
|
} else if (strncmp(rv[0], "-h", 2) == 0) {
|
2000-05-02 23:23:12 +00:00
|
|
|
show_usage();
|
2000-07-05 19:31:26 +00:00
|
|
|
exit(exitcode);
|
2000-06-06 22:50:44 +00:00
|
|
|
} else if (strcmp(rv[0], "-memdebug") == 0) {
|
2000-06-30 14:11:49 +00:00
|
|
|
isc_mem_debugging = 1;
|
2000-06-06 22:50:44 +00:00
|
|
|
} else if (strcmp(rv[0], "-debug") == 0) {
|
|
|
|
debugging = ISC_TRUE;
|
2000-07-24 20:46:55 +00:00
|
|
|
} else if ((strncmp(rv[0], "-x", 2) == 0) &&
|
|
|
|
!config_only) {
|
2000-05-08 22:51:08 +00:00
|
|
|
/*
|
2000-07-05 19:31:26 +00:00
|
|
|
* XXXMWS Only works for ipv4 now.
|
2000-05-08 22:51:08 +00:00
|
|
|
* Can't use inet_pton here, since we allow
|
|
|
|
* partial addresses.
|
|
|
|
*/
|
|
|
|
if (rc == 1) {
|
|
|
|
show_usage();
|
2000-07-05 19:31:26 +00:00
|
|
|
exit(exitcode);
|
2000-05-08 22:51:08 +00:00
|
|
|
}
|
|
|
|
n = sscanf(rv[1], "%d.%d.%d.%d", &adrs[0], &adrs[1],
|
2000-04-26 18:34:17 +00:00
|
|
|
&adrs[2], &adrs[3]);
|
|
|
|
if (n == 0)
|
|
|
|
show_usage();
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup = clone_lookup(default_lookup, ISC_TRUE);
|
|
|
|
|
103. [func] libisc buffer API changes for <isc/buffer.h>:
Added:
isc_buffer_base(b) (pointer)
isc_buffer_current(b) (pointer)
isc_buffer_active(b) (pointer)
isc_buffer_used(b) (pointer)
isc_buffer_length(b) (int)
isc_buffer_usedlength(b) (int)
isc_buffer_consumedlength(b) (int)
isc_buffer_remaininglength(b) (int)
isc_buffer_activelength(b) (int)
isc_buffer_availablelength(b) (int)
Removed:
ISC_BUFFER_USEDCOUNT(b)
ISC_BUFFER_AVAILABLECOUNT(b)
isc_buffer_type(b)
Changed names:
isc_buffer_used(b, r) ->
isc_buffer_usedregion(b, r)
isc_buffer_available(b, r) ->
isc_buffer_available_region(b, r)
isc_buffer_consumed(b, r) ->
isc_buffer_consumedregion(b, r)
isc_buffer_active(b, r) ->
isc_buffer_activeregion(b, r)
isc_buffer_remaining(b, r) ->
isc_buffer_remainingregion(b, r)
Buffer types were removed, so the ISC_BUFFERTYPE_*
macros are no more, and the type argument to
isc_buffer_init and isc_buffer_allocate were removed.
isc_buffer_putstr is now void (instead of isc_result_t)
and requires that the caller ensure that there
is enough available buffer space for the string.
2000-04-27 00:03:12 +00:00
|
|
|
for (i = n - 1; i >= 0; i--) {
|
|
|
|
snprintf(batchline, MXNAME/8, "%d.",
|
2000-04-26 18:34:17 +00:00
|
|
|
adrs[i]);
|
103. [func] libisc buffer API changes for <isc/buffer.h>:
Added:
isc_buffer_base(b) (pointer)
isc_buffer_current(b) (pointer)
isc_buffer_active(b) (pointer)
isc_buffer_used(b) (pointer)
isc_buffer_length(b) (int)
isc_buffer_usedlength(b) (int)
isc_buffer_consumedlength(b) (int)
isc_buffer_remaininglength(b) (int)
isc_buffer_activelength(b) (int)
isc_buffer_availablelength(b) (int)
Removed:
ISC_BUFFER_USEDCOUNT(b)
ISC_BUFFER_AVAILABLECOUNT(b)
isc_buffer_type(b)
Changed names:
isc_buffer_used(b, r) ->
isc_buffer_usedregion(b, r)
isc_buffer_available(b, r) ->
isc_buffer_available_region(b, r)
isc_buffer_consumed(b, r) ->
isc_buffer_consumedregion(b, r)
isc_buffer_active(b, r) ->
isc_buffer_activeregion(b, r)
isc_buffer_remaining(b, r) ->
isc_buffer_remainingregion(b, r)
Buffer types were removed, so the ISC_BUFFERTYPE_*
macros are no more, and the type argument to
isc_buffer_init and isc_buffer_allocate were removed.
isc_buffer_putstr is now void (instead of isc_result_t)
and requires that the caller ensure that there
is enough available buffer space for the string.
2000-04-27 00:03:12 +00:00
|
|
|
strncat(lookup->textname, batchline, MXNAME);
|
2000-04-26 18:34:17 +00:00
|
|
|
}
|
103. [func] libisc buffer API changes for <isc/buffer.h>:
Added:
isc_buffer_base(b) (pointer)
isc_buffer_current(b) (pointer)
isc_buffer_active(b) (pointer)
isc_buffer_used(b) (pointer)
isc_buffer_length(b) (int)
isc_buffer_usedlength(b) (int)
isc_buffer_consumedlength(b) (int)
isc_buffer_remaininglength(b) (int)
isc_buffer_activelength(b) (int)
isc_buffer_availablelength(b) (int)
Removed:
ISC_BUFFER_USEDCOUNT(b)
ISC_BUFFER_AVAILABLECOUNT(b)
isc_buffer_type(b)
Changed names:
isc_buffer_used(b, r) ->
isc_buffer_usedregion(b, r)
isc_buffer_available(b, r) ->
isc_buffer_available_region(b, r)
isc_buffer_consumed(b, r) ->
isc_buffer_consumedregion(b, r)
isc_buffer_active(b, r) ->
isc_buffer_activeregion(b, r)
isc_buffer_remaining(b, r) ->
isc_buffer_remainingregion(b, r)
Buffer types were removed, so the ISC_BUFFERTYPE_*
macros are no more, and the type argument to
isc_buffer_init and isc_buffer_allocate were removed.
isc_buffer_putstr is now void (instead of isc_result_t)
and requires that the caller ensure that there
is enough available buffer space for the string.
2000-04-27 00:03:12 +00:00
|
|
|
strncat(lookup->textname, "in-addr.arpa.", MXNAME);
|
2000-07-05 23:28:32 +00:00
|
|
|
debug("looking up %s", lookup->textname);
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->trace_root = ISC_TF(lookup->trace ||
|
|
|
|
lookup->ns_search_only);
|
2000-07-18 01:28:20 +00:00
|
|
|
lookup->rdtype = dns_rdatatype_ptr;
|
|
|
|
lookup->rdclass = dns_rdataclass_in;
|
2000-05-24 19:49:51 +00:00
|
|
|
lookup->new_search = ISC_TRUE;
|
2000-07-13 18:52:58 +00:00
|
|
|
|
2000-04-26 18:34:17 +00:00
|
|
|
ISC_LIST_APPEND(lookup_list, lookup, link);
|
2000-05-08 22:51:08 +00:00
|
|
|
rv++;
|
|
|
|
rc--;
|
2000-04-19 23:23:31 +00:00
|
|
|
} else {
|
2000-08-01 00:53:20 +00:00
|
|
|
/*
|
2000-08-01 01:33:37 +00:00
|
|
|
* Anything which isn't an option
|
2000-08-01 00:53:20 +00:00
|
|
|
*/
|
2000-07-18 01:28:20 +00:00
|
|
|
tr.base = rv[0];
|
|
|
|
tr.length = strlen(rv[0]);
|
2000-07-14 21:33:03 +00:00
|
|
|
if (strncmp(rv[0], "ixfr=", 5) == 0) {
|
2000-07-18 01:28:20 +00:00
|
|
|
lookup->rdtype = dns_rdatatype_ixfr;
|
2000-08-01 01:33:37 +00:00
|
|
|
lookup->ixfr_serial =
|
2000-07-14 21:33:03 +00:00
|
|
|
atoi(&rv[0][5]);
|
|
|
|
continue;
|
|
|
|
}
|
2000-07-18 01:28:20 +00:00
|
|
|
result = dns_rdatatype_fromtext(&rdtype,
|
|
|
|
(isc_textregion_t *)&tr);
|
|
|
|
if ((result == ISC_R_SUCCESS) &&
|
|
|
|
(rdtype != dns_rdatatype_ixfr)) {
|
|
|
|
lookup->rdtype = rdtype;
|
2000-07-14 21:33:03 +00:00
|
|
|
continue;
|
2000-07-18 01:28:20 +00:00
|
|
|
}
|
|
|
|
result = dns_rdataclass_fromtext(&rdclass,
|
|
|
|
(isc_textregion_t *)&tr);
|
|
|
|
if (result == ISC_R_SUCCESS) {
|
|
|
|
lookup->rdclass = rdclass;
|
2000-07-14 21:33:03 +00:00
|
|
|
continue;
|
2000-04-19 23:23:31 +00:00
|
|
|
}
|
2000-07-24 20:46:55 +00:00
|
|
|
if (!config_only) {
|
2000-08-01 00:53:20 +00:00
|
|
|
lookup = clone_lookup(default_lookup,
|
|
|
|
ISC_TRUE);
|
2000-07-24 20:46:55 +00:00
|
|
|
strncpy(lookup->textname, rv[0], MXNAME-1);
|
|
|
|
lookup->trace_root = ISC_TF(lookup->trace ||
|
|
|
|
lookup->ns_search_only);
|
|
|
|
lookup->new_search = ISC_TRUE;
|
|
|
|
ISC_LIST_APPEND(lookup_list, lookup, link);
|
|
|
|
debug("looking up %s", lookup->textname);
|
|
|
|
}
|
2000-08-01 00:53:20 +00:00
|
|
|
/* XXX Error message */
|
2000-04-19 23:23:31 +00:00
|
|
|
}
|
|
|
|
}
|
2000-08-01 01:33:37 +00:00
|
|
|
/*
|
2000-07-18 01:28:20 +00:00
|
|
|
* If we have a batchfile, seed the lookup list with the
|
|
|
|
* first entry, then trust the callback in dighost_shutdown
|
|
|
|
* to get the rest
|
|
|
|
*/
|
|
|
|
if ((batchname != NULL) && !(is_batchfile)) {
|
2000-08-02 17:58:07 +00:00
|
|
|
if (strcmp(batchname, "-") == 0)
|
|
|
|
batchfp = stdin;
|
|
|
|
else
|
|
|
|
batchfp = fopen(batchname, "r");
|
2000-07-18 01:28:20 +00:00
|
|
|
if (batchfp == NULL) {
|
103. [func] libisc buffer API changes for <isc/buffer.h>:
Added:
isc_buffer_base(b) (pointer)
isc_buffer_current(b) (pointer)
isc_buffer_active(b) (pointer)
isc_buffer_used(b) (pointer)
isc_buffer_length(b) (int)
isc_buffer_usedlength(b) (int)
isc_buffer_consumedlength(b) (int)
isc_buffer_remaininglength(b) (int)
isc_buffer_activelength(b) (int)
isc_buffer_availablelength(b) (int)
Removed:
ISC_BUFFER_USEDCOUNT(b)
ISC_BUFFER_AVAILABLECOUNT(b)
isc_buffer_type(b)
Changed names:
isc_buffer_used(b, r) ->
isc_buffer_usedregion(b, r)
isc_buffer_available(b, r) ->
isc_buffer_available_region(b, r)
isc_buffer_consumed(b, r) ->
isc_buffer_consumedregion(b, r)
isc_buffer_active(b, r) ->
isc_buffer_activeregion(b, r)
isc_buffer_remaining(b, r) ->
isc_buffer_remainingregion(b, r)
Buffer types were removed, so the ISC_BUFFERTYPE_*
macros are no more, and the type argument to
isc_buffer_init and isc_buffer_allocate were removed.
isc_buffer_putstr is now void (instead of isc_result_t)
and requires that the caller ensure that there
is enough available buffer space for the string.
2000-04-27 00:03:12 +00:00
|
|
|
perror(batchname);
|
2000-05-08 22:51:08 +00:00
|
|
|
if (exitcode < 10)
|
|
|
|
exitcode = 10;
|
2000-07-05 23:28:32 +00:00
|
|
|
fatal("Couldn't open specified batch file");
|
2000-04-19 23:23:31 +00:00
|
|
|
}
|
2000-08-01 00:53:20 +00:00
|
|
|
/* XXX Remove code dup from shutdown code */
|
2000-07-18 01:28:20 +00:00
|
|
|
if (fgets(batchline, sizeof(batchline), batchfp) != 0) {
|
2000-07-05 23:28:32 +00:00
|
|
|
debug("batch line %s", batchline);
|
2000-05-24 03:05:58 +00:00
|
|
|
bargc = 1;
|
|
|
|
bargv[bargc] = strtok(batchline, " \t\r\n");
|
2000-07-21 21:21:26 +00:00
|
|
|
while ((bargv[bargc] != NULL) && (bargc < 14)) {
|
2000-04-26 18:34:17 +00:00
|
|
|
bargc++;
|
2000-05-24 03:05:58 +00:00
|
|
|
bargv[bargc] = strtok(NULL, " \t\r\n");
|
2000-04-26 18:34:17 +00:00
|
|
|
}
|
2000-06-01 18:49:22 +00:00
|
|
|
|
2000-07-13 18:52:58 +00:00
|
|
|
bargv[0] = argv[0];
|
2000-07-18 01:28:20 +00:00
|
|
|
argv0 = argv[0];
|
2000-06-01 18:49:22 +00:00
|
|
|
|
|
|
|
reorder_args(bargc, (char **)bargv);
|
2000-07-24 20:46:55 +00:00
|
|
|
parse_args(ISC_TRUE, ISC_FALSE, bargc, (char **)bargv);
|
2000-04-19 23:23:31 +00:00
|
|
|
}
|
|
|
|
}
|
2000-08-01 00:53:20 +00:00
|
|
|
/*
|
|
|
|
* If no lookup specified, search for root
|
|
|
|
*/
|
2000-07-24 20:46:55 +00:00
|
|
|
if ((lookup_list.head == NULL) && !config_only) {
|
2000-08-01 00:53:20 +00:00
|
|
|
lookup = clone_lookup(default_lookup, ISC_TRUE);
|
2000-07-13 18:52:58 +00:00
|
|
|
lookup->trace_root = ISC_TF(lookup->trace ||
|
|
|
|
lookup->ns_search_only);
|
2000-05-24 19:49:51 +00:00
|
|
|
lookup->new_search = ISC_TRUE;
|
2000-05-03 23:07:30 +00:00
|
|
|
strcpy(lookup->textname, ".");
|
2000-07-18 01:28:20 +00:00
|
|
|
lookup->rdtype = dns_rdatatype_ns;
|
2000-04-19 23:23:31 +00:00
|
|
|
ISC_LIST_APPEND(lookup_list, lookup, link);
|
|
|
|
}
|
2000-07-24 20:46:55 +00:00
|
|
|
if (!config_only)
|
|
|
|
printgreeting(argc, argv);
|
2000-07-18 01:28:20 +00:00
|
|
|
}
|
|
|
|
|
2000-07-18 18:51:40 +00:00
|
|
|
/*
|
|
|
|
* Callback from dighost.c to allow program-specific shutdown code. Here,
|
|
|
|
* Here, we're possibly reading from a batch file, then shutting down for
|
|
|
|
* real if there's nothing in the batch file to read.
|
|
|
|
*/
|
2000-07-18 01:28:20 +00:00
|
|
|
void
|
|
|
|
dighost_shutdown(void) {
|
|
|
|
char batchline[MXNAME];
|
|
|
|
int bargc;
|
|
|
|
char *bargv[16];
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-07-18 01:28:20 +00:00
|
|
|
|
|
|
|
if (batchname == NULL) {
|
|
|
|
isc_app_shutdown();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (feof(batchfp)) {
|
|
|
|
batchname = NULL;
|
|
|
|
isc_app_shutdown();
|
2000-08-02 17:58:07 +00:00
|
|
|
if (batchfp != stdin)
|
|
|
|
fclose(batchfp);
|
2000-07-18 01:28:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fgets(batchline, sizeof(batchline), batchfp) != 0) {
|
|
|
|
debug("batch line %s", batchline);
|
|
|
|
bargc = 1;
|
|
|
|
bargv[bargc] = strtok(batchline, " \t\r\n");
|
2000-07-21 21:21:26 +00:00
|
|
|
while ((bargv[bargc] != NULL) && (bargc < 14)) {
|
2000-07-18 01:28:20 +00:00
|
|
|
bargc++;
|
|
|
|
bargv[bargc] = strtok(NULL, " \t\r\n");
|
|
|
|
}
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-07-18 01:28:20 +00:00
|
|
|
bargv[0] = argv0;
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-07-18 01:28:20 +00:00
|
|
|
reorder_args(bargc, (char **)bargv);
|
2000-07-24 20:46:55 +00:00
|
|
|
parse_args(ISC_TRUE, ISC_FALSE, bargc, (char **)bargv);
|
2000-07-18 01:28:20 +00:00
|
|
|
start_lookup();
|
|
|
|
} else {
|
|
|
|
batchname = NULL;
|
2000-08-02 17:58:07 +00:00
|
|
|
if (batchfp != stdin)
|
|
|
|
fclose(batchfp);
|
2000-07-18 01:28:20 +00:00
|
|
|
isc_app_shutdown();
|
|
|
|
return;
|
2000-07-14 17:57:27 +00:00
|
|
|
}
|
2000-04-19 23:23:31 +00:00
|
|
|
}
|
2000-05-09 18:05:13 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv) {
|
2000-07-10 18:02:31 +00:00
|
|
|
isc_result_t result;
|
2000-07-20 17:56:20 +00:00
|
|
|
dig_server_t *s, *s2;
|
2000-07-10 18:02:31 +00:00
|
|
|
|
2000-05-09 18:05:13 +00:00
|
|
|
ISC_LIST_INIT(lookup_list);
|
|
|
|
ISC_LIST_INIT(server_list);
|
|
|
|
ISC_LIST_INIT(search_list);
|
|
|
|
|
2000-07-05 23:28:32 +00:00
|
|
|
debug("main()");
|
|
|
|
progname = argv[0];
|
2000-07-19 17:52:27 +00:00
|
|
|
result = isc_app_start();
|
|
|
|
check_result(result, "isc_app_start");
|
2000-05-09 18:05:13 +00:00
|
|
|
setup_libs();
|
2000-07-24 20:46:55 +00:00
|
|
|
parse_args(ISC_FALSE, ISC_FALSE, argc, argv);
|
2000-05-09 18:05:13 +00:00
|
|
|
setup_system();
|
2000-07-10 18:02:31 +00:00
|
|
|
result = isc_app_onrun(mctx, global_task, onrun_callback, NULL);
|
|
|
|
check_result(result, "isc_app_onrun");
|
2000-05-09 18:05:13 +00:00
|
|
|
isc_app_run();
|
2000-07-20 17:56:20 +00:00
|
|
|
s = ISC_LIST_HEAD(default_lookup->my_server_list);
|
|
|
|
while (s != NULL) {
|
|
|
|
debug("freeing server %p belonging to %p",
|
|
|
|
s, default_lookup);
|
|
|
|
s2 = s;
|
|
|
|
s = ISC_LIST_NEXT(s, link);
|
2000-08-01 01:33:37 +00:00
|
|
|
ISC_LIST_DEQUEUE(default_lookup->my_server_list,
|
2000-07-20 17:56:20 +00:00
|
|
|
(dig_server_t *)s2, link);
|
|
|
|
isc_mem_free(mctx, s2);
|
|
|
|
}
|
2000-07-18 01:28:20 +00:00
|
|
|
isc_mem_free(mctx, default_lookup);
|
|
|
|
if (batchname != NULL) {
|
2000-08-02 17:58:07 +00:00
|
|
|
if (batchfp != stdin)
|
|
|
|
fclose(batchfp);
|
2000-07-18 01:28:20 +00:00
|
|
|
batchname = NULL;
|
|
|
|
}
|
2000-07-14 17:57:27 +00:00
|
|
|
cancel_all();
|
|
|
|
destroy_libs();
|
2000-07-05 23:28:32 +00:00
|
|
|
isc_app_finish();
|
2000-05-16 17:53:35 +00:00
|
|
|
return (exitcode);
|
2000-05-09 18:05:13 +00:00
|
|
|
}
|
|
|
|
|