2 * ++Copyright++ 1985, 1989, 1993
4 * Copyright (c) 1985, 1989, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
37 * Permission to use, copy, modify, and distribute this software for any
38 * purpose with or without fee is hereby granted, provided that the above
39 * copyright notice and this permission notice appear in all copies, and that
40 * the name of Digital Equipment Corporation not be used in advertising or
41 * publicity pertaining to distribution of the document or software without
42 * specific, written prior permission.
44 * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
45 * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
46 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
47 * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
48 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
49 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
50 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
56 #if defined(LIBC_SCCS) && !defined(lint)
57 static char sccsid[] = "@(#)res_send.c 8.1 (Berkeley) 6/4/93";
58 static char rcsid[] = "$Id$";
59 #endif /* LIBC_SCCS and not lint */
62 * if you talk to a lot
63 * of multi-homed SunOS
64 * ("broken") name servers.
66 #define CHECK_SRVR_ADDR 1 /* XXX - should be in options.h */
69 * Send query to name server and wait for reply.
72 #include <sys/param.h>
74 #include <sys/socket.h>
76 #include <netinet/in.h>
77 #include <arpa/nameser.h>
78 #include <arpa/inet.h>
83 #if defined(BSD) && (BSD >= 199306)
87 # include "../conf/portability.h"
90 #if defined(USE_OPTIONS_H)
91 # include <../conf/options.h>
94 void _res_close __P((void));
96 static int s = -1; /* socket used for communications */
97 static int connected = 0; /* is the socket connected */
98 static int vc = 0; /* is the socket a virtual ciruit? */
101 /* XXX - should be in portability.h */
103 #define FD_SETSIZE 32
104 #define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
105 #define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
106 #define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
107 #define FD_ZERO(p) bzero((char *)(p), sizeof(*(p)))
111 # define Dprint(cond, args) /*empty*/
112 # define DprintQ(cond, args, query) /*empty*/
113 # define Aerror(file, string, error, address) /*empty*/
114 # define Perror(file, string, error) /*empty*/
116 # define Dprint(cond, args) if (cond) {fprintf args;} else {}
117 # define DprintQ(cond, args, query) if (cond) {\
122 Aerror(file, string, error, address)
126 struct sockaddr_in address;
130 if (_res.options & RES_DEBUG) {
131 fprintf(file, "res_send: %s ([%s].%u): %s\n",
133 inet_ntoa(address.sin_addr),
134 ntohs(address.sin_port),
140 Perror(file, string, error)
147 if (_res.options & RES_DEBUG) {
148 fprintf(file, "res_send: %s: %s\n",
149 string, strerror(error));
155 static res_send_qhook Qhook = NULL;
156 static res_send_rhook Rhook = NULL;
159 res_send_setqhook(hook)
167 res_send_setrhook(hook)
175 * res_isourserver(ina)
176 * looks up "ina" in _res.ns_addr_list[]
181 * paul vixie, 29may94
185 const struct sockaddr_in *inp;
187 struct sockaddr_in ina;
188 register int ns, ret;
192 for (ns = 0; ns < _res.nscount; ns++) {
193 register const struct sockaddr_in *srv = &_res.nsaddr_list[ns];
195 if (srv->sin_family == ina.sin_family &&
196 srv->sin_port == ina.sin_port &&
197 (srv->sin_addr.s_addr == INADDR_ANY ||
198 srv->sin_addr.s_addr == ina.sin_addr.s_addr)) {
207 * res_nameinquery(name, type, class, buf, eom)
208 * look for (name,type,class) in the query section of packet (buf,eom)
214 * paul vixie, 29may94
217 res_nameinquery(name, type, class, buf, eom)
219 register int type, class;
220 const u_char *buf, *eom;
222 register const u_char *cp = buf + HFIXEDSZ;
223 int qdcount = ntohs(((HEADER*)buf)->qdcount);
225 while (qdcount-- > 0) {
226 char tname[MAXDNAME+1];
227 register int n, ttype, tclass;
229 n = dn_expand(buf, eom, cp, tname, sizeof tname);
233 ttype = _getshort(cp); cp += INT16SZ;
234 tclass = _getshort(cp); cp += INT16SZ;
237 strcasecmp(tname, name) == 0)
244 * res_queriesmatch(buf1, eom1, buf2, eom2)
245 * is there a 1:1 mapping of (name,type,class)
246 * in (buf1,eom1) and (buf2,eom2)?
249 * 0 : not a 1:1 mapping
250 * >0 : is a 1:1 mapping
252 * paul vixie, 29may94
255 res_queriesmatch(buf1, eom1, buf2, eom2)
256 const u_char *buf1, *eom1;
257 const u_char *buf2, *eom2;
259 register const u_char *cp = buf1 + HFIXEDSZ;
260 int qdcount = ntohs(((HEADER*)buf1)->qdcount);
262 if (qdcount != ntohs(((HEADER*)buf2)->qdcount))
264 while (qdcount-- > 0) {
265 char tname[MAXDNAME+1];
266 register int n, ttype, tclass;
268 n = dn_expand(buf1, eom1, cp, tname, sizeof tname);
272 ttype = _getshort(cp); cp += INT16SZ;
273 tclass = _getshort(cp); cp += INT16SZ;
274 if (!res_nameinquery(tname, ttype, tclass, buf2, eom2))
281 res_send(buf, buflen, ans, anssiz)
287 HEADER *hp = (HEADER *) buf;
288 HEADER *anhp = (HEADER *) ans;
289 int gotsomewhere, connreset, terrno, try, v_circuit, resplen, ns;
291 u_int badns; /* XXX NSMAX can't exceed #/bits in this var */
293 DprintQ((_res.options & RES_DEBUG) || (_res.pfcode & RES_PRF_QUERY),
294 (stdout, ";; res_send()\n"), buf);
295 if (!(_res.options & RES_INIT) && res_init() == -1)
297 v_circuit = (_res.options & RES_USEVC) || buflen > PACKETSZ;
304 * Send request, RETRY times, or until successful
306 for (try = 0; try < _res.retry; try++) {
307 for (ns = 0; ns < _res.nscount; ns++) {
308 struct sockaddr_in *nsap = &_res.nsaddr_list[ns];
310 if (badns & (1 << ns)) {
316 int done = 0, loops = 0;
321 act = (*Qhook)(&nsap, &buf, &buflen,
322 ans, anssiz, &resplen);
333 /* give the hook another try */
334 if (++loops < 42) /*doug adams*/
345 Dprint(_res.options & RES_DEBUG,
346 (stdout, ";; Querying server (# %d) address = %s\n",
347 ns + 1, inet_ntoa(nsap->sin_addr)));
356 * Use virtual circuit;
357 * at most one attempt per server.
361 if ((s < 0) || (!vc)) {
365 s = socket(AF_INET, SOCK_STREAM, PF_UNSPEC);
368 Perror(stderr, "socket(vc)", errno);
371 if (connect(s, (struct sockaddr *)nsap,
372 sizeof(struct sockaddr)) < 0) {
374 Aerror(stderr, "connect/vc",
383 * Send length & message
385 putshort((u_short)buflen, (u_char*)&len);
386 iov[0].iov_base = (caddr_t)&len;
387 iov[0].iov_len = INT16SZ;
388 iov[1].iov_base = (caddr_t)buf;
389 iov[1].iov_len = buflen;
390 if (writev(s, iov, 2) != (INT16SZ + buflen)) {
392 Perror(stderr, "write failed", errno);
398 * Receive length & response
402 while ((n = read(s, (char *)cp, (int)len)) > 0) {
409 Perror(stderr, "read failed", errno);
412 * A long running process might get its TCP
413 * connection reset if the remote server was
414 * restarted. Requery the server instead of
415 * trying a new one. When there is only one
416 * server, this means that a query might work
417 * instead of failing. We only allow one reset
418 * per query to prevent looping.
420 if (terrno == ECONNRESET && !connreset) {
428 resplen = _getshort(ans);
429 if (resplen > anssiz) {
430 Dprint(_res.options & RES_DEBUG,
431 (stdout, ";; response truncated\n")
439 (n = read(s, (char *)cp, (int)len)) > 0) {
445 Perror(stderr, "read(vc)", errno);
451 * Flush rest of answer
452 * so connection stays in synch.
455 len = resplen - anssiz;
459 n = (len > sizeof(junk)
462 if ((n = read(s, junk, n)) > 0)
472 struct timeval timeout;
474 struct sockaddr_in from;
480 s = socket(AF_INET, SOCK_DGRAM, PF_UNSPEC);
482 bad_dg_sock: terrno = errno;
483 Perror(stderr, "socket(dg)", errno);
489 * On a 4.3BSD+ machine (client and server,
490 * actually), sending to a nameserver datagram
491 * port with no nameserver will cause an
492 * ICMP port unreachable message to be returned.
493 * If our datagram socket is "connected" to the
494 * server, we get an ECONNREFUSED error on the next
495 * socket operation, and select returns if the
496 * error message is received. We can thus detect
497 * the absence of a nameserver without timing out.
498 * If we have sent queries to at least two servers,
499 * however, we don't want to remain connected,
500 * as we wish to receive answers from the first
503 if (_res.nscount == 1 || (try == 0 && ns == 0)) {
505 * Connect only if we are sure we won't
506 * receive a response from another server.
509 if (connect(s, (struct sockaddr *)nsap,
510 sizeof(struct sockaddr)
521 if (send(s, (char*)buf, buflen, 0) != buflen) {
522 Perror(stderr, "send", errno);
529 * Disconnect if we want to listen
530 * for responses from more than one server.
533 #if defined(BSD) && (BSD >= 199103)
534 struct sockaddr_in no_addr;
536 no_addr.sin_family = AF_INET;
537 no_addr.sin_addr.s_addr = INADDR_ANY;
538 no_addr.sin_port = 0;
544 int s1 = socket(AF_INET, SOCK_DGRAM,
550 Dprint(_res.options & RES_DEBUG,
551 (stdout, ";; new DG socket\n"))
556 if (sendto(s, (char*)buf, buflen, 0,
557 (struct sockaddr *)nsap,
558 sizeof(struct sockaddr))
560 Aerror(stderr, "sendto", errno, *nsap);
570 timeout.tv_sec = (_res.retrans << try);
572 timeout.tv_sec /= _res.nscount;
573 if ((long) timeout.tv_sec <= 0)
579 n = select(s+1, &dsmask, (fd_set *)NULL,
580 (fd_set *)NULL, &timeout);
582 Perror(stderr, "select", errno);
590 Dprint(_res.options & RES_DEBUG,
591 (stdout, ";; timeout\n"));
596 fromlen = sizeof(struct sockaddr_in);
597 resplen = recvfrom(s, (char*)ans, anssiz, 0,
598 (struct sockaddr *)&from, &fromlen);
600 Perror(stderr, "recvfrom", errno);
605 if (hp->id != anhp->id) {
607 * response from old query, ignore it.
608 * XXX - potential security hazard could
611 DprintQ((_res.options & RES_DEBUG) ||
612 (_res.pfcode & RES_PRF_REPLY),
613 (stdout, ";; old answer:\n"),
618 if (!(_res.options & RES_INSECURE1) &&
619 !res_isourserver(&from)) {
621 * response from wrong server? ignore it.
622 * XXX - potential security hazard could
625 DprintQ((_res.options & RES_DEBUG) ||
626 (_res.pfcode & RES_PRF_REPLY),
627 (stdout, ";; not our server:\n"),
632 if (!(_res.options & RES_INSECURE2) &&
633 !res_queriesmatch(buf, buf + buflen,
634 ans, ans + anssiz)) {
636 * response contains wrong query? ignore it.
637 * XXX - potential security hazard could
640 DprintQ((_res.options & RES_DEBUG) ||
641 (_res.pfcode & RES_PRF_REPLY),
642 (stdout, ";; wrong query name:\n"),
646 if (anhp->rcode == SERVFAIL ||
647 anhp->rcode == NOTIMP ||
648 anhp->rcode == REFUSED) {
649 DprintQ(_res.options & RES_DEBUG,
650 (stdout, "server rejected query:\n"),
654 /* don't retry if called from dig */
658 if (!(_res.options & RES_IGNTC) && anhp->tc) {
660 * get rest of answer;
661 * use TCP with same server.
663 Dprint(_res.options & RES_DEBUG,
664 (stdout, ";; truncated answer\n"));
670 DprintQ((_res.options & RES_DEBUG) ||
671 (_res.pfcode & RES_PRF_REPLY),
672 (stdout, ";; got answer:\n"),
675 * If using virtual circuits, we assume that the first server
676 * is preferred over the rest (i.e. it is on the local
677 * machine) and only keep that one open.
678 * If we have temporarily opened a virtual circuit,
679 * or if we haven't been asked to keep a socket open,
682 if ((v_circuit && (!(_res.options & RES_USEVC) || ns != 0)) ||
683 !(_res.options & RES_STAYOPEN)) {
687 int done = 0, loops = 0;
692 act = (*Rhook)(nsap, buf, buflen,
693 ans, anssiz, &resplen);
703 /* give the hook another try */
704 if (++loops < 42) /*doug adams*/
722 errno = ECONNREFUSED; /* no nameservers found */
724 errno = ETIMEDOUT; /* no answer obtained */
731 * This routine is for closing the socket if a virtual circuit is used and
732 * the program wants to close it. This provides support for endhostent()
733 * which expects to close the socket.
735 * This routine is not expected to be user visible.