#include <sys/types.h>
#include <sys/sockio.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <stropts.h>
#include <arpa/nameser.h>
#include <resolv.h>
#include <netinet/in.h>
#include <net/if.h>
#include <netinet/if_ether.h>
#include <arpa/inet.h>
extern int
getdomainname(char *, int);
#define MAXIFS 256
struct state _res = {
RES_TIMEOUT,
4,
RES_DEFAULT,
1,
};
int
res_init(void)
{
register FILE *fp;
register char *cp, **pp;
register int n;
char buf[BUFSIZ];
int nserv = 0;
int haveenv = 0;
int havesearch = 0;
_res.nsaddr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
_res.nsaddr.sin_family = AF_INET;
_res.nsaddr.sin_port = htons(NAMESERVER_PORT);
_res.nscount = 1;
#ifdef SIOCGIFNUM
{ int numifs, s, n, int_up;
struct ifconf ifc;
register struct ifreq *ifrp;
struct ifreq ifr;
unsigned bufsize;
unsigned int flags;
char *buf;
if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
perror("socket");
return (-1);
}
if (ioctl(s, SIOCGIFNUM, (char *)&numifs) < 0) {
numifs = MAXIFS;
}
bufsize = numifs * sizeof (struct ifreq);
buf = (char *)malloc(bufsize);
if (buf == NULL) {
perror("out of memory");
(void) close(s);
return (-1);
}
ifc.ifc_len = bufsize;
ifc.ifc_buf = buf;
if (ioctl(s, SIOCGIFCONF, (char *)&ifc) < 0) {
perror("ifconfig: SIOCGIFCONF");
(void) close(s);
free(buf);
return (-1);
}
int_up = 0;
ifrp = ifc.ifc_req;
for (n = ifc.ifc_len / sizeof (struct ifreq); n > 0;
n--, ifrp++) {
(void) memset((void *) &ifr, 0, sizeof (ifr));
strncpy(ifr.ifr_name, ifrp->ifr_name,
sizeof (ifr.ifr_name));
if (ioctl(s, SIOCGIFFLAGS, (char *)&ifr) < 0) {
perror("SIOCGIFFLAGS");
(void) close(s);
free(buf);
return (-1);
}
flags = ifr.ifr_flags;
if ((flags & IFF_UP) && ((flags & IFF_LOOPBACK) == 0))
int_up = 1;
}
(void) close(s);
free(buf);
if (int_up == 0)
return (-1);
}
#endif
(void) getdomainname(buf, BUFSIZ);
if (buf[0] == '+')
buf[0] = '.';
#ifdef SYSV
cp = strchr(buf, (int)'.');
#else
cp = index(buf, '.');
#endif
if (cp == NULL)
strcpy(_res.defdname, buf);
else
strcpy(_res.defdname, cp+1);
if ((cp = getenv("LOCALDOMAIN")) != NULL) {
(void) strncpy(_res.defdname, cp, sizeof (_res.defdname));
haveenv++;
}
if ((fp = fopen(_PATH_RESCONF, "r")) != NULL) {
while (fgets(buf, sizeof (buf), fp) != NULL) {
if (!strncmp(buf, "domain", sizeof ("domain") - 1)) {
if (haveenv)
continue;
cp = buf + sizeof ("domain") - 1;
while (*cp == ' ' || *cp == '\t')
cp++;
if ((*cp == '\0') || (*cp == '\n'))
continue;
(void) strncpy(_res.defdname, cp, sizeof (_res.defdname) - 1);
#ifdef SYSV
if ((cp = strchr(_res.defdname, (int)'\n')) != NULL)
#else
if ((cp = index(_res.defdname, '\n')) != NULL)
#endif
*cp = '\0';
havesearch = 0;
continue;
}
if (!strncmp(buf, "search", sizeof ("search") - 1)) {
if (haveenv)
continue;
cp = buf + sizeof ("search") - 1;
while (*cp == ' ' || *cp == '\t')
cp++;
if ((*cp == '\0') || (*cp == '\n'))
continue;
(void) strncpy(_res.defdname, cp, sizeof (_res.defdname) - 1);
#ifdef SYSV
if ((cp = strchr(_res.defdname, (int)'\n')) != NULL)
#else
if ((cp = index(_res.defdname, '\n')) != NULL)
#endif
*cp = '\0';
cp = _res.defdname;
pp = _res.dnsrch;
*pp++ = cp;
for (n = 0; *cp && pp < _res.dnsrch + MAXDNSRCH; cp++) {
if (*cp == ' ' || *cp == '\t') {
*cp = 0;
n = 1;
} else if (n) {
*pp++ = cp;
n = 0;
}
}
while (*cp != '\0' && *cp != ' ' && *cp != '\t')
cp++;
*cp = '\0';
*pp++ = 0;
havesearch = 1;
continue;
}
if (!strncmp(buf, "nameserver", sizeof ("nameserver") - 1) &&
(nserv < MAXNS)) {
cp = buf + sizeof ("nameserver") - 1;
while (*cp == ' ' || *cp == '\t')
cp++;
if ((*cp == '\0') || (*cp == '\n'))
continue;
if ((_res.nsaddr_list[nserv].sin_addr.s_addr =
inet_addr(cp)) == (unsigned) -1) {
_res.nsaddr_list[n].sin_addr.s_addr = INADDR_ANY;
continue;
}
_res.nsaddr_list[nserv].sin_family = AF_INET;
_res.nsaddr_list[nserv].sin_port = htons(NAMESERVER_PORT);
nserv++;
continue;
}
}
if (nserv > 1)
_res.nscount = nserv;
(void) fclose(fp);
}
if (_res.defdname[0] == 0) {
if (gethostname(buf, sizeof (_res.defdname)) == 0 &&
#ifdef SYSV
(cp = strchr(buf, (int)'.')))
#else
(cp = index(buf, '.')))
#endif
(void) strcpy(_res.defdname, cp + 1);
}
if (havesearch == 0) {
pp = _res.dnsrch;
*pp++ = _res.defdname;
for (cp = _res.defdname, n = 0; *cp; cp++)
if (*cp == '.')
n++;
cp = _res.defdname;
for (; n >= LOCALDOMAINPARTS && pp < _res.dnsrch + MAXDFLSRCH; n--) {
#ifdef SYSV
cp = strchr(cp, (int)'.');
#else
cp = index(cp, '.');
#endif
*pp++ = ++cp;
}
*pp++ = 0;
}
_res.options |= RES_INIT;
return (0);
}