2003-10-07 17:54:04 -04:00
|
|
|
/* Copyright 1998 by the Massachusetts Institute of Technology.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose and without
|
|
|
|
* fee is hereby granted, provided that the above copyright
|
|
|
|
* notice appear in all copies and that both that copyright
|
|
|
|
* notice and this permission notice appear in supporting
|
|
|
|
* documentation, and that the name of M.I.T. not be used in
|
|
|
|
* advertising or publicity pertaining to distribution of the
|
|
|
|
* software without specific, written prior permission.
|
|
|
|
* M.I.T. makes no representations about the suitability of
|
|
|
|
* this software for any purpose. It is provided "as is"
|
|
|
|
* without express or implied warranty.
|
|
|
|
*/
|
|
|
|
|
2004-07-22 18:18:45 -04:00
|
|
|
#include "setup.h"
|
2003-10-07 17:54:04 -04:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#else
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "ares.h"
|
|
|
|
#include "ares_dns.h"
|
|
|
|
|
|
|
|
#ifndef INADDR_NONE
|
2004-10-06 03:50:18 -04:00
|
|
|
#define INADDR_NONE 0xffffffff
|
2003-10-07 17:54:04 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static void callback(void *arg, int status, struct hostent *host);
|
|
|
|
static void usage(void);
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
ares_channel channel;
|
|
|
|
int status, nfds;
|
|
|
|
fd_set read_fds, write_fds;
|
|
|
|
struct timeval *tvp, tv;
|
|
|
|
struct in_addr addr;
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
WORD wVersionRequested = MAKEWORD(1,1);
|
|
|
|
WSADATA wsaData;
|
|
|
|
WSAStartup(wVersionRequested, &wsaData);
|
2004-10-06 03:50:18 -04:00
|
|
|
#endif
|
2003-10-07 17:54:04 -04:00
|
|
|
|
2004-03-09 04:43:30 -05:00
|
|
|
if (argc <= 1)
|
2003-10-07 17:54:04 -04:00
|
|
|
usage();
|
|
|
|
|
|
|
|
status = ares_init(&channel);
|
|
|
|
if (status != ARES_SUCCESS)
|
|
|
|
{
|
2004-02-02 11:15:58 -05:00
|
|
|
fprintf(stderr, "ares_init: %s\n", ares_strerror(status));
|
2003-10-07 17:54:04 -04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initiate the queries, one per command-line argument. */
|
|
|
|
for (argv++; *argv; argv++)
|
|
|
|
{
|
|
|
|
addr.s_addr = inet_addr(*argv);
|
|
|
|
if (addr.s_addr == INADDR_NONE)
|
2004-10-06 03:50:18 -04:00
|
|
|
ares_gethostbyname(channel, *argv, AF_INET, callback, *argv);
|
2003-10-07 17:54:04 -04:00
|
|
|
else
|
2004-10-06 03:50:18 -04:00
|
|
|
{
|
|
|
|
ares_gethostbyaddr(channel, &addr, sizeof(addr), AF_INET, callback,
|
|
|
|
*argv);
|
|
|
|
}
|
2003-10-07 17:54:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for all queries to complete. */
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
FD_ZERO(&read_fds);
|
|
|
|
FD_ZERO(&write_fds);
|
|
|
|
nfds = ares_fds(channel, &read_fds, &write_fds);
|
|
|
|
if (nfds == 0)
|
2004-10-06 03:50:18 -04:00
|
|
|
break;
|
2003-10-07 17:54:04 -04:00
|
|
|
tvp = ares_timeout(channel, NULL, &tv);
|
|
|
|
select(nfds, &read_fds, &write_fds, NULL, tvp);
|
|
|
|
ares_process(channel, &read_fds, &write_fds);
|
|
|
|
}
|
|
|
|
|
|
|
|
ares_destroy(channel);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void callback(void *arg, int status, struct hostent *host)
|
|
|
|
{
|
|
|
|
struct in_addr addr;
|
2004-02-13 07:28:27 -05:00
|
|
|
char **p;
|
2003-10-07 17:54:04 -04:00
|
|
|
|
|
|
|
if (status != ARES_SUCCESS)
|
|
|
|
{
|
2004-02-02 11:15:58 -05:00
|
|
|
fprintf(stderr, "%s: %s\n", (char *) arg, ares_strerror(status));
|
2003-10-07 17:54:04 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (p = host->h_addr_list; *p; p++)
|
|
|
|
{
|
|
|
|
memcpy(&addr, *p, sizeof(struct in_addr));
|
|
|
|
printf("%-32s\t%s\n", host->h_name, inet_ntoa(addr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void usage(void)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "usage: ahost {host|addr} ...\n");
|
|
|
|
exit(1);
|
|
|
|
}
|