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/types.h>
73 #include <sys/param.h>
76 #include <sys/socket.h>
78 #include <netinet/in.h>
79 #include <arpa/nameser.h>
80 #include <arpa/inet.h>
86 #if defined(BSD) && (BSD >= 199306)
91 # include "../conf/portability.h"
94 #if defined(USE_OPTIONS_H)
95 # include <../conf/options.h>
98 static int s = -1; /* socket used for communications */
99 static int connected = 0; /* is the socket connected */
100 static int vc = 0; /* is the socket a virtual circuit? */
102 /* XXX - this should be done in portability.h */
103 #if (defined(BSD) && (BSD >= 199103)) || defined(linux)
104 # define CAN_RECONNECT 1
106 # define CAN_RECONNECT 0
110 # define Dprint(cond, args) /*empty*/
111 # define DprintQ(cond, args, query, size) /*empty*/
112 # define Aerror(file, string, error, address) /*empty*/
113 # define Perror(file, string, error) /*empty*/
115 # define Dprint(cond, args) if (cond) {fprintf args;} else {}
116 # define DprintQ(cond, args, query, size) if (cond) {\
118 __fp_nquery(query, size, stdout);\
121 Aerror(file, string, error, address)
125 struct sockaddr_in address;
129 if (_res.options & RES_DEBUG) {
130 fprintf(file, "res_send: %s ([%s].%u): %s\n",
132 inet_ntoa(address.sin_addr),
133 ntohs(address.sin_port),
139 Perror(file, string, error)
146 if (_res.options & RES_DEBUG) {
147 fprintf(file, "res_send: %s: %s\n",
148 string, strerror(error));
154 static res_send_qhook Qhook = NULL;
155 static res_send_rhook Rhook = NULL;
158 res_send_setqhook(hook)
166 res_send_setrhook(hook)
174 * res_isourserver(ina)
175 * looks up "ina" in _res.ns_addr_list[]
180 * paul vixie, 29may94
184 const struct sockaddr_in *inp;
186 struct sockaddr_in ina;
187 register int ns, ret;
191 for (ns = 0; ns < _res.nscount; ns++) {
192 register const struct sockaddr_in *srv = &_res.nsaddr_list[ns];
194 if (srv->sin_family == ina.sin_family &&
195 srv->sin_port == ina.sin_port &&
196 (srv->sin_addr.s_addr == INADDR_ANY ||
197 srv->sin_addr.s_addr == ina.sin_addr.s_addr)) {
206 * res_nameinquery(name, type, class, buf, eom)
207 * look for (name,type,class) in the query section of packet (buf,eom)
209 * buf + HFIXESDZ <= eom
215 * paul vixie, 29may94
218 res_nameinquery(name, type, class, buf, eom)
220 register int type, class;
221 const u_char *buf, *eom;
223 register const u_char *cp = buf + HFIXEDSZ;
224 int qdcount = ntohs(((HEADER*)buf)->qdcount);
226 while (qdcount-- > 0) {
227 char tname[MAXDNAME+1];
228 register int n, ttype, tclass;
230 n = dn_expand(buf, eom, cp, tname, sizeof tname);
234 if (cp + 2 * INT16SZ > eom)
236 ttype = _getshort(cp); cp += INT16SZ;
237 tclass = _getshort(cp); cp += INT16SZ;
240 strcasecmp(tname, name) == 0)
247 * res_queriesmatch(buf1, eom1, buf2, eom2)
248 * is there a 1:1 mapping of (name,type,class)
249 * in (buf1,eom1) and (buf2,eom2)?
252 * 0 : not a 1:1 mapping
253 * >0 : is a 1:1 mapping
255 * paul vixie, 29may94
258 res_queriesmatch(buf1, eom1, buf2, eom2)
259 const u_char *buf1, *eom1;
260 const u_char *buf2, *eom2;
262 register const u_char *cp = buf1 + HFIXEDSZ;
263 int qdcount = ntohs(((HEADER*)buf1)->qdcount);
265 if (buf1 + HFIXEDSZ > eom1 || buf2 + HFIXEDSZ > eom2)
268 if (qdcount != ntohs(((HEADER*)buf2)->qdcount))
270 while (qdcount-- > 0) {
271 char tname[MAXDNAME+1];
272 register int n, ttype, tclass;
274 n = dn_expand(buf1, eom1, cp, tname, sizeof tname);
278 if (cp + 2 * INT16SZ > eom1)
280 ttype = _getshort(cp); cp += INT16SZ;
281 tclass = _getshort(cp); cp += INT16SZ;
282 if (!res_nameinquery(tname, ttype, tclass, buf2, eom2))
289 res_send(buf, buflen, ans, anssiz)
295 HEADER *hp = (HEADER *) buf;
296 HEADER *anhp = (HEADER *) ans;
297 int gotsomewhere, connreset, terrno, try, v_circuit, resplen, ns;
299 u_int badns; /* XXX NSMAX can't exceed #/bits in this var */
301 if ((_res.options & RES_INIT) == 0 && res_init() == -1) {
302 /* errno should have been set by res_init() in this case. */
305 if (anssiz < HFIXEDSZ) {
306 __set_errno (EINVAL);
309 DprintQ((_res.options & RES_DEBUG) || (_res.pfcode & RES_PRF_QUERY),
310 (stdout, ";; res_send()\n"), buf, buflen);
311 v_circuit = (_res.options & RES_USEVC) || buflen > PACKETSZ;
318 * Send request, RETRY times, or until successful
320 for (try = 0; try < _res.retry; try++) {
321 for (ns = 0; ns < _res.nscount; ns++) {
322 struct sockaddr_in *nsap = &_res.nsaddr_list[ns];
324 if (badns & (1 << ns)) {
330 int done = 0, loops = 0;
335 act = (*Qhook)(&nsap, &buf, &buflen,
336 ans, anssiz, &resplen);
347 /* give the hook another try */
348 if (++loops < 42) /*doug adams*/
359 Dprint(_res.options & RES_DEBUG,
360 (stdout, ";; Querying server (# %d) address = %s\n",
361 ns + 1, inet_ntoa(nsap->sin_addr)));
370 * Use virtual circuit;
371 * at most one attempt per server.
375 if ((s < 0) || (!vc)) {
379 s = socket(PF_INET, SOCK_STREAM, 0);
382 Perror(stderr, "socket(vc)", errno);
386 if (connect(s, (struct sockaddr *)nsap,
387 sizeof(struct sockaddr)) < 0) {
389 Aerror(stderr, "connect/vc",
398 * Send length & message
400 putshort((u_short)buflen, (u_char*)&len);
401 iov[0].iov_base = (caddr_t)&len;
402 iov[0].iov_len = INT16SZ;
403 iov[1].iov_base = (caddr_t)buf;
404 iov[1].iov_len = buflen;
405 if (writev(s, iov, 2) != (INT16SZ + buflen)) {
407 Perror(stderr, "write failed", errno);
413 * Receive length & response
418 while ((n = read(s, (char *)cp, (int)len)) > 0) {
425 Perror(stderr, "read failed", errno);
428 * A long running process might get its TCP
429 * connection reset if the remote server was
430 * restarted. Requery the server instead of
431 * trying a new one. When there is only one
432 * server, this means that a query might work
433 * instead of failing. We only allow one reset
434 * per query to prevent looping.
436 if (terrno == ECONNRESET && !connreset) {
444 resplen = _getshort(ans);
445 if (resplen > anssiz) {
446 Dprint(_res.options & RES_DEBUG,
447 (stdout, ";; response truncated\n")
453 if (len < HFIXEDSZ) {
455 * Undersized message.
457 Dprint(_res.options & RES_DEBUG,
458 (stdout, ";; undersized: %d\n", len));
466 (n = read(s, (char *)cp, (int)len)) > 0) {
472 Perror(stderr, "read(vc)", errno);
478 * Flush rest of answer
479 * so connection stays in synch.
482 len = resplen - anssiz;
486 n = ((size_t) len > sizeof(junk)
489 if ((n = read(s, junk, n)) > 0)
496 * The calling applicating has bailed out of
497 * a previous call and failed to arrange to have
498 * the circuit closed or the server has got
499 * itself confused. Anyway drop the packet and
500 * wait for the correct one.
502 if (hp->id != anhp->id) {
503 DprintQ((_res.options & RES_DEBUG) ||
504 (_res.pfcode & RES_PRF_REPLY),
505 (stdout, ";; old answer (unexpected):\n"),
506 ans, (resplen>anssiz)?anssiz:resplen);
514 struct pollfd pfd[1];
515 struct sockaddr_in from;
521 s = socket(PF_INET, SOCK_DGRAM, 0);
527 Perror(stderr, "socket(dg)", errno);
533 * On a 4.3BSD+ machine (client and server,
534 * actually), sending to a nameserver datagram
535 * port with no nameserver will cause an
536 * ICMP port unreachable message to be returned.
537 * If our datagram socket is "connected" to the
538 * server, we get an ECONNREFUSED error on the next
539 * socket operation, and select returns if the
540 * error message is received. We can thus detect
541 * the absence of a nameserver without timing out.
542 * If we have sent queries to at least two servers,
543 * however, we don't want to remain connected,
544 * as we wish to receive answers from the first
547 if (_res.nscount == 1 || (try == 0 && ns == 0)) {
549 * Connect only if we are sure we won't
550 * receive a response from another server.
553 if (connect(s, (struct sockaddr *)nsap,
554 sizeof(struct sockaddr)
565 if (send(s, (char*)buf, buflen, 0) != buflen) {
566 Perror(stderr, "send", errno);
573 * Disconnect if we want to listen
574 * for responses from more than one server.
578 struct sockaddr_in no_addr;
580 no_addr.sin_family = AF_INET;
581 no_addr.sin_addr.s_addr = INADDR_ANY;
582 no_addr.sin_port = 0;
588 int s1 = socket(PF_INET, SOCK_DGRAM,0);
593 Dprint(_res.options & RES_DEBUG,
594 (stdout, ";; new DG socket\n"))
599 if (sendto(s, (char*)buf, buflen, 0,
600 (struct sockaddr *)nsap,
601 sizeof(struct sockaddr))
603 Aerror(stderr, "sendto", errno, *nsap);
613 timeout = (_res.retrans << try) * 1000;
615 timeout /= _res.nscount;
619 if (s < 0 || s >= FD_SETSIZE) {
620 Perror(stderr, "s out-of-bounds", EMFILE);
625 pfd[0].events = POLLIN;
626 n = __poll(pfd, 1, timeout);
630 Perror(stderr, "poll", errno);
638 Dprint(_res.options & RES_DEBUG,
639 (stdout, ";; timeout\n"));
645 fromlen = sizeof(struct sockaddr_in);
646 resplen = recvfrom(s, (char*)ans, anssiz, 0,
647 (struct sockaddr *)&from, &fromlen);
649 Perror(stderr, "recvfrom", errno);
654 if (resplen < HFIXEDSZ) {
656 * Undersized message.
658 Dprint(_res.options & RES_DEBUG,
659 (stdout, ";; undersized: %d\n",
666 if (hp->id != anhp->id) {
668 * response from old query, ignore it.
669 * XXX - potential security hazard could
672 DprintQ((_res.options & RES_DEBUG) ||
673 (_res.pfcode & RES_PRF_REPLY),
674 (stdout, ";; old answer:\n"),
675 ans, (resplen>anssiz)?anssiz:resplen);
679 if (!(_res.options & RES_INSECURE1) &&
680 !res_isourserver(&from)) {
682 * response from wrong server? ignore it.
683 * XXX - potential security hazard could
686 DprintQ((_res.options & RES_DEBUG) ||
687 (_res.pfcode & RES_PRF_REPLY),
688 (stdout, ";; not our server:\n"),
689 ans, (resplen>anssiz)?anssiz:resplen);
693 if (!(_res.options & RES_INSECURE2) &&
694 !res_queriesmatch(buf, buf + buflen,
695 ans, ans + anssiz)) {
697 * response contains wrong query? ignore it.
698 * XXX - potential security hazard could
701 DprintQ((_res.options & RES_DEBUG) ||
702 (_res.pfcode & RES_PRF_REPLY),
703 (stdout, ";; wrong query name:\n"),
704 ans, (resplen>anssiz)?anssiz:resplen);
707 if (anhp->rcode == SERVFAIL ||
708 anhp->rcode == NOTIMP ||
709 anhp->rcode == REFUSED) {
710 DprintQ(_res.options & RES_DEBUG,
711 (stdout, "server rejected query:\n"),
712 ans, (resplen>anssiz)?anssiz:resplen);
715 /* don't retry if called from dig */
719 if (!(_res.options & RES_IGNTC) && anhp->tc) {
721 * get rest of answer;
722 * use TCP with same server.
724 Dprint(_res.options & RES_DEBUG,
725 (stdout, ";; truncated answer\n"));
731 Dprint((_res.options & RES_DEBUG) ||
732 ((_res.pfcode & RES_PRF_REPLY) &&
733 (_res.pfcode & RES_PRF_HEAD1)),
734 (stdout, ";; got answer:\n"));
735 DprintQ((_res.options & RES_DEBUG) ||
736 (_res.pfcode & RES_PRF_REPLY),
738 ans, (resplen>anssiz)?anssiz:resplen);
740 * If using virtual circuits, we assume that the first server
741 * is preferred over the rest (i.e. it is on the local
742 * machine) and only keep that one open.
743 * If we have temporarily opened a virtual circuit,
744 * or if we haven't been asked to keep a socket open,
747 if ((v_circuit && (!(_res.options & RES_USEVC) || ns != 0)) ||
748 !(_res.options & RES_STAYOPEN)) {
752 int done = 0, loops = 0;
757 act = (*Rhook)(nsap, buf, buflen,
758 ans, anssiz, &resplen);
768 /* give the hook another try */
769 if (++loops < 42) /*doug adams*/
787 __set_errno (ECONNREFUSED); /* no nameservers found */
789 __set_errno (ETIMEDOUT); /* no answer obtained */
791 __set_errno (terrno);
796 * This routine is for closing the socket if a virtual circuit is used and
797 * the program wants to close it. This provides support for endhostent()
798 * which expects to close the socket.
800 * This routine is not expected to be user visible.
814 /* ultrix 4.0 had some icky packaging in its libc.a. alias for it here.
815 * there is more gunk of this kind over in res_debug.c.
826 res_send(buf, buflen, ans, anssiz)
832 return (__res_send(buf, buflen, ans, anssiz));
834 #endif /* Ultrix 4.0 hackery */