dig.c revision 281b7ba834b149f2cae4813019406cf3785a33a8
/*
* 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.
*/
/* $Id: dig.c,v 1.84 2000/08/02 19:47:17 tale Exp $ */
#include <config.h>
#include <stdlib.h>
#include <dns/rdataset.h>
#include <dns/rdatatype.h>
#include <dns/rdataclass.h>
extern dig_serverlist_t server_list;
#define ADD_STRING(b, s) { \
if (strlen(s) >= isc_buffer_availablelength(b)) \
return (ISC_R_NOSPACE); \
else \
isc_buffer_putstr(b, s); \
}
extern unsigned int timeout;
extern dns_messageid_t id;
extern isc_buffer_t rootbuf;
extern int sendcount;
extern int ndots;
extern int tries;
extern int lookup_counter;
extern char fixeddomain[MXNAME];
extern int exitcode;
extern isc_sockaddr_t bind_address;
extern char keynametext[MXNAME];
extern dns_tsigkey_t *key;
extern isc_boolean_t validated;
extern isc_taskmgr_t *taskmgr;
extern isc_task_t *global_task;
extern isc_boolean_t free_now;
extern isc_uint32_t name_limit;
extern isc_uint32_t rr_limit;
extern isc_boolean_t debugging;
char *argv0;
isc_uint16_t bufsize = 0;
static const char *opcodetext[] = {
"QUERY",
"IQUERY",
"STATUS",
"RESERVED3",
"NOTIFY",
"UPDATE",
"RESERVED6",
"RESERVED7",
"RESERVED8",
"RESERVED9",
"RESERVED10",
"RESERVED11",
"RESERVED12",
"RESERVED13",
"RESERVED14",
"RESERVED15"
};
static const char *rcodetext[] = {
"NOERROR",
"FORMERR",
"SERVFAIL",
"NXDOMAIN",
"NOTIMPL",
"REFUSED",
"YXDOMAIN",
"YXRRSET",
"NXRRSET",
"NOTAUTH",
"NOTZONE",
"RESERVED11",
"RESERVED12",
"RESERVED13",
"RESERVED14",
"RESERVED15",
"BADVERS"
};
extern char *progname;
static void
show_usage(void) {
"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"
" 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"
" (Use ixfr=version for type ixfr)\n"
" 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"
" -t type (specify query type)\n"
" -c class (specify query class)\n"
" -y name:key (specify named base64 tsig key)\n"
" d-opt is of the form +keyword[=value], where keyword is:\n"
" +[no]vc (TCP mode)\n"
" +[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"
" +bufsize=### (Set EDNS0 Max UDP packet size)\n"
" +[no]search (Set whether to use searchlist)\n"
" +[no]defname (Set whether to use default domain)\n"
" +[no]recursive (Recursive mode)\n"
" +[no]aaonly (Set AA flag in query)\n"
" +[no]adflag (Set AD flag in query)\n"
" +[no]cdflag (Set CD flag in query)\n"
" +[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"
" +[no]authority (Control display of authority)\n"
" +[no]additional (Control display of additional)\n"
" +[no]short (Disable everything except short\n"
" form of answer)\n"
" +[no]all (Set or clear all display flags)\n"
" +qr (Print question before sending)\n"
" +[no]cdflag (Set or clear CD flag in query)\n"
" +[no]adflag (Set or clear AD flag in query)\n"
" +[no]nssearch (Search all authorative nameservers)\n"
" +[no]identify (ID responders in short answers)\n"
" +[no]trace (Trace delegation down from root)\n"
" +rrlimit=### (Limit number of rr's in xfr)\n"
" +namelimit=### (Limit number of names in xfr)\n"
" 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"
, stderr);
}
/*
* Callback from dighost.c to print the received message.
*/
void
printf(";; XFR size: %d names, %d rrs\n",
} else {
}
if (!validated)
puts(";; WARNING -- Some TSIG could not "
"be validated");
}
puts(";; WARNING -- TSIG key was not used.");
}
puts("");
printf(";; Received %u bytes from %.*s(%s) in %d ms\n\n",
(int)diff/1000);
}
}
/*
* Callback from dighost.c to print that it is trying a server.
* Not used in dig.
* XXX print_trying
*/
void
}
/*
* Internal print routine used to print short form replies.
*/
static isc_result_t
char store[sizeof("12345678901234567890")];
if (result != ISC_R_SUCCESS)
return (result);
}
if (result != ISC_R_SUCCESS)
return (result);
}
return (ISC_R_SUCCESS);
}
/*
* short_form message print handler. Calls above say_message()
*/
static isc_result_t
{
char t[4096];
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));
while (loopresult == ISC_R_SUCCESS) {
buf);
}
}
if (result == ISC_R_NOMORE)
break;
else if (result != ISC_R_SUCCESS)
return (result);
}
return (ISC_R_SUCCESS);
}
/*
* Callback from dighost.c to print the reply from a server
*/
/*
* Exitcode 9 means we timed out, but if we're printing a message,
* we must have recovered. Go ahead and reset it to code 0, and
* call this a success.
*/
if (exitcode == 9)
exitcode = 0;
flags = 0;
if (!headers) {
}
printf(";; Sending:\n");
else
printf(";; Got answer:\n");
}
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",
"dns_message_pseudosectiontotext");
}
}
if (!short_form) {
if (result == ISC_R_NOSPACE) {
if (result == ISC_R_SUCCESS)
goto question_again;
}
}
}
if (!short_form) {
if (result == ISC_R_NOSPACE) {
if (result == ISC_R_SUCCESS)
goto answer_again;
}
} else {
}
}
if (!short_form) {
if (result == ISC_R_NOSPACE) {
if (result == ISC_R_SUCCESS)
goto authority_again;
}
}
}
if (!short_form) {
if (result == ISC_R_NOSPACE) {
if (result == ISC_R_SUCCESS)
goto additional_again;
}
/*
* Only print the signature on the first record.
*/
if (headers) {
msg,
"dns_message_pseudosectiontotext");
msg,
"dns_message_pseudosectiontotext");
}
}
}
printf("\n");
(char *)isc_buffer_base(buf));
return (result);
}
/*
* print the greeting message when the program first starts up.
*/
static void
int i = 1;
if (printcmd) {
puts("");
printf("; <<>> DiG 9.0 <<>>");
while (i < argc) {
}
puts("");
printf(";; global options: %s %s\n",
}
}
/*
* 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
int i, j;
char *ptr;
int end;
debug("reorder_args()");
end--;
if (end == 0)
return;
}
if (argv[i][0] == '@') {
for (j = i + 1; j < end; j++) {
}
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
* that routine.
* XXX doc options
*/
static void
int bargc;
char *bargv[16];
int i, n;
int adrs[4];
int rc;
char **rv;
char *ptr;
#ifndef NOPOSIX
char *homedir;
char rcfile[132];
#endif
/*
* 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.
*
* First, create a "default lookup" which won't actually be used
* anywhere, except for cloning into new lookups
*/
debug("parse_args()");
if (!is_batchfile) {
debug("making new lookup");
#ifndef NOPOSIX
/*
* Treat .digrc as a special batchfile
*/
else
batchfp) != 0) {
bargc = 1;
(bargc < 14)) {
bargc++;
}
(char **)bargv);
}
}
#endif
}
break;
&& (!is_batchfile)) {
&& (!is_batchfile)) {
&& (!is_batchfile)) {
&& (!is_batchfile)) {
/* Global option always */
/* Global option always */
/* Global option always */
if (timeout <= 0)
timeout = 1;
/* Global option always */
if (timeout <= 0)
timeout = 1;
/* Global option always */
if (ndots < 0)
ndots = 0;
if (!forcecomment)
if (!forcecomment) {
}
if (!forcecomment) {
}
if (rv[0][2] != 0) {
} else {
if (rc <= 1) {
show_usage();
}
rv++;
rc--;
}
(isc_textregion_t *)&tr);
if (result == ISC_R_SUCCESS)
else
"invalid class %s\n",
ptr);
if (rv[0][2] != 0) {
} else {
if (rc <= 1) {
show_usage();
}
rv++;
rc--;
}
} else {
(isc_textregion_t *)&tr);
if ((result == ISC_R_SUCCESS) &&
(rdtype != dns_rdatatype_ixfr))
else
"ignoring invalid type %s\n",
ptr);
}
if (rv[0][2] != 0) {
} else {
if (rc <= 1) {
show_usage();
}
rv++;
rc--;
}
if (rv[0][2] != 0)
else {
if (rc <= 1) {
show_usage();
}
rv++;
rc--;
}
show_usage();
}
show_usage();
}
if (rv[0][2] != 0)
else {
if (rc <= 1) {
show_usage();
}
rv++;
rc--;
}
if (rv[0][2] != 0) {
} else {
if (rc <= 1) {
show_usage();
}
rv++;
rc--;
}
if (rv[0][2] != 0) {
sizeof(address));
} else {
if (rc <= 1) {
show_usage();
}
sizeof(address));
rv++;
rc--;
}
show_usage();
isc_mem_debugging = 1;
!config_only) {
/*
* XXXMWS Only works for ipv4 now.
* Can't use inet_pton here, since we allow
* partial addresses.
*/
if (rc == 1) {
show_usage();
}
if (n == 0)
show_usage();
for (i = n - 1; i >= 0; i--) {
adrs[i]);
}
rv++;
rc--;
} else {
/*
* Anything which isn't an option
*/
continue;
}
(isc_textregion_t *)&tr);
if ((result == ISC_R_SUCCESS) &&
(rdtype != dns_rdatatype_ixfr)) {
continue;
}
(isc_textregion_t *)&tr);
if (result == ISC_R_SUCCESS) {
continue;
}
if (!config_only) {
ISC_TRUE);
}
/* XXX Error message */
}
}
/*
* If we have a batchfile, seed the lookup list with the
* first entry, then trust the callback in dighost_shutdown
* to get the rest
*/
else
if (exitcode < 10)
exitcode = 10;
fatal("Couldn't open specified batch file");
}
/* XXX Remove code dup from shutdown code */
bargc = 1;
bargc++;
}
}
}
/*
* If no lookup specified, search for root
*/
}
if (!config_only)
}
/*
* 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.
*/
void
dighost_shutdown(void) {
int bargc;
char *bargv[16];
return;
}
return;
}
bargc = 1;
bargc++;
}
start_lookup();
} else {
return;
}
}
int
dig_server_t *s, *s2;
debug("main()");
result = isc_app_start();
setup_libs();
setup_system();
isc_app_run();
while (s != NULL) {
debug("freeing server %p belonging to %p",
s, default_lookup);
s2 = s;
s = ISC_LIST_NEXT(s, link);
}
}
cancel_all();
destroy_libs();
return (exitcode);
}