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>
84 #if defined(BSD) && (BSD >= 199306)
89 # include "../conf/portability.h"
92 #if defined(USE_OPTIONS_H)
93 # include <../conf/options.h>
96 void _res_close
__P((void));
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 ciruit? */
103 /* XXX - should be in portability.h */
105 #define FD_SETSIZE 32
106 #define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
107 #define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
108 #define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
109 #define FD_ZERO(p) bzero((char *)(p), sizeof(*(p)))
112 /* XXX - this should be done in portability.h */
113 #if (defined(BSD) && (BSD >= 199103)) || defined(linux)
114 # define CAN_RECONNECT 1
116 # define CAN_RECONNECT 0
120 # define Dprint(cond, args) /*empty*/
121 # define DprintQ(cond, args, query, size) /*empty*/
122 # define Aerror(file, string, error, address) /*empty*/
123 # define Perror(file, string, error) /*empty*/
125 # define Dprint(cond, args) if (cond) {fprintf args;} else {}
126 # define DprintQ(cond, args, query, size) if (cond) {\
128 __fp_nquery(query, size, stdout);\
131 Aerror(file
, string
, error
, address
)
135 struct sockaddr_in address
;
139 if (_res
.options
& RES_DEBUG
) {
140 fprintf(file
, "res_send: %s ([%s].%u): %s\n",
142 inet_ntoa(address
.sin_addr
),
143 ntohs(address
.sin_port
),
149 Perror(file
, string
, error
)
156 if (_res
.options
& RES_DEBUG
) {
157 fprintf(file
, "res_send: %s: %s\n",
158 string
, strerror(error
));
164 static res_send_qhook Qhook
= NULL
;
165 static res_send_rhook Rhook
= NULL
;
168 res_send_setqhook(hook
)
176 res_send_setrhook(hook
)
184 * res_isourserver(ina)
185 * looks up "ina" in _res.ns_addr_list[]
190 * paul vixie, 29may94
194 const struct sockaddr_in
*inp
;
196 struct sockaddr_in ina
;
197 register int ns
, ret
;
201 for (ns
= 0; ns
< _res
.nscount
; ns
++) {
202 register const struct sockaddr_in
*srv
= &_res
.nsaddr_list
[ns
];
204 if (srv
->sin_family
== ina
.sin_family
&&
205 srv
->sin_port
== ina
.sin_port
&&
206 (srv
->sin_addr
.s_addr
== INADDR_ANY
||
207 srv
->sin_addr
.s_addr
== ina
.sin_addr
.s_addr
)) {
216 * res_nameinquery(name, type, class, buf, eom)
217 * look for (name,type,class) in the query section of packet (buf,eom)
223 * paul vixie, 29may94
226 res_nameinquery(name
, type
, class, buf
, eom
)
228 register int type
, class;
229 const u_char
*buf
, *eom
;
231 register const u_char
*cp
= buf
+ HFIXEDSZ
;
232 int qdcount
= ntohs(((HEADER
*)buf
)->qdcount
);
234 while (qdcount
-- > 0) {
235 char tname
[MAXDNAME
+1];
236 register int n
, ttype
, tclass
;
238 n
= dn_expand(buf
, eom
, cp
, tname
, sizeof tname
);
242 ttype
= _getshort(cp
); cp
+= INT16SZ
;
243 tclass
= _getshort(cp
); cp
+= INT16SZ
;
246 strcasecmp(tname
, name
) == 0)
253 * res_queriesmatch(buf1, eom1, buf2, eom2)
254 * is there a 1:1 mapping of (name,type,class)
255 * in (buf1,eom1) and (buf2,eom2)?
258 * 0 : not a 1:1 mapping
259 * >0 : is a 1:1 mapping
261 * paul vixie, 29may94
264 res_queriesmatch(buf1
, eom1
, buf2
, eom2
)
265 const u_char
*buf1
, *eom1
;
266 const u_char
*buf2
, *eom2
;
268 register const u_char
*cp
= buf1
+ HFIXEDSZ
;
269 int qdcount
= ntohs(((HEADER
*)buf1
)->qdcount
);
271 if (qdcount
!= ntohs(((HEADER
*)buf2
)->qdcount
))
273 while (qdcount
-- > 0) {
274 char tname
[MAXDNAME
+1];
275 register int n
, ttype
, tclass
;
277 n
= dn_expand(buf1
, eom1
, cp
, tname
, sizeof tname
);
281 ttype
= _getshort(cp
); cp
+= INT16SZ
;
282 tclass
= _getshort(cp
); cp
+= INT16SZ
;
283 if (!res_nameinquery(tname
, ttype
, tclass
, buf2
, eom2
))
290 res_send(buf
, buflen
, ans
, anssiz
)
296 HEADER
*hp
= (HEADER
*) buf
;
297 HEADER
*anhp
= (HEADER
*) ans
;
298 int gotsomewhere
, connreset
, terrno
, try, v_circuit
, resplen
, ns
;
300 u_int badns
; /* XXX NSMAX can't exceed #/bits in this var */
302 if ((_res
.options
& RES_INIT
) == 0 && res_init() == -1) {
303 /* errno should have been set by res_init() in this case. */
306 DprintQ((_res
.options
& RES_DEBUG
) || (_res
.pfcode
& RES_PRF_QUERY
),
307 (stdout
, ";; res_send()\n"), buf
, buflen
);
308 v_circuit
= (_res
.options
& RES_USEVC
) || buflen
> PACKETSZ
;
315 * Send request, RETRY times, or until successful
317 for (try = 0; try < _res
.retry
; try++) {
318 for (ns
= 0; ns
< _res
.nscount
; ns
++) {
319 struct sockaddr_in
*nsap
= &_res
.nsaddr_list
[ns
];
321 if (badns
& (1 << ns
)) {
327 int done
= 0, loops
= 0;
332 act
= (*Qhook
)(&nsap
, &buf
, &buflen
,
333 ans
, anssiz
, &resplen
);
344 /* give the hook another try */
345 if (++loops
< 42) /*doug adams*/
356 Dprint(_res
.options
& RES_DEBUG
,
357 (stdout
, ";; Querying server (# %d) address = %s\n",
358 ns
+ 1, inet_ntoa(nsap
->sin_addr
)));
367 * Use virtual circuit;
368 * at most one attempt per server.
372 if ((s
< 0) || (!vc
)) {
376 s
= socket(PF_INET
, SOCK_STREAM
, 0);
379 Perror(stderr
, "socket(vc)", errno
);
383 if (connect(s
, (struct sockaddr
*)nsap
,
384 sizeof(struct sockaddr
)) < 0) {
386 Aerror(stderr
, "connect/vc",
395 * Send length & message
397 putshort((u_short
)buflen
, (u_char
*)&len
);
398 iov
[0].iov_base
= (caddr_t
)&len
;
399 iov
[0].iov_len
= INT16SZ
;
400 iov
[1].iov_base
= (caddr_t
)buf
;
401 iov
[1].iov_len
= buflen
;
402 if (writev(s
, iov
, 2) != (INT16SZ
+ buflen
)) {
404 Perror(stderr
, "write failed", errno
);
410 * Receive length & response
415 while ((n
= read(s
, (char *)cp
, (int)len
)) > 0) {
422 Perror(stderr
, "read failed", errno
);
425 * A long running process might get its TCP
426 * connection reset if the remote server was
427 * restarted. Requery the server instead of
428 * trying a new one. When there is only one
429 * server, this means that a query might work
430 * instead of failing. We only allow one reset
431 * per query to prevent looping.
433 if (terrno
== ECONNRESET
&& !connreset
) {
441 resplen
= _getshort(ans
);
442 if (resplen
> anssiz
) {
443 Dprint(_res
.options
& RES_DEBUG
,
444 (stdout
, ";; response truncated\n")
452 (n
= read(s
, (char *)cp
, (int)len
)) > 0) {
458 Perror(stderr
, "read(vc)", errno
);
464 * Flush rest of answer
465 * so connection stays in synch.
468 len
= resplen
- anssiz
;
472 n
= (len
> sizeof(junk
)
475 if ((n
= read(s
, junk
, n
)) > 0)
482 * The calling applicating has bailed out of
483 * a previous call and failed to arrange to have
484 * the circuit closed or the server has got
485 * itself confused. Anyway drop the packet and
486 * wait for the correct one.
488 if (hp
->id
!= anhp
->id
) {
489 DprintQ((_res
.options
& RES_DEBUG
) ||
490 (_res
.pfcode
& RES_PRF_REPLY
),
491 (stdout
, ";; old answer (unexpected):\n"),
492 ans
, (resplen
>anssiz
)?anssiz
:resplen
);
499 struct timeval timeout
;
501 struct sockaddr_in from
;
507 s
= socket(PF_INET
, SOCK_DGRAM
, 0);
513 Perror(stderr
, "socket(dg)", errno
);
519 * On a 4.3BSD+ machine (client and server,
520 * actually), sending to a nameserver datagram
521 * port with no nameserver will cause an
522 * ICMP port unreachable message to be returned.
523 * If our datagram socket is "connected" to the
524 * server, we get an ECONNREFUSED error on the next
525 * socket operation, and select returns if the
526 * error message is received. We can thus detect
527 * the absence of a nameserver without timing out.
528 * If we have sent queries to at least two servers,
529 * however, we don't want to remain connected,
530 * as we wish to receive answers from the first
533 if (_res
.nscount
== 1 || (try == 0 && ns
== 0)) {
535 * Connect only if we are sure we won't
536 * receive a response from another server.
539 if (connect(s
, (struct sockaddr
*)nsap
,
540 sizeof(struct sockaddr
)
551 if (send(s
, (char*)buf
, buflen
, 0) != buflen
) {
552 Perror(stderr
, "send", errno
);
559 * Disconnect if we want to listen
560 * for responses from more than one server.
564 struct sockaddr_in no_addr
;
566 no_addr
.sin_family
= AF_INET
;
567 no_addr
.sin_addr
.s_addr
= INADDR_ANY
;
568 no_addr
.sin_port
= 0;
574 int s1
= socket(PF_INET
, SOCK_DGRAM
,0);
579 Dprint(_res
.options
& RES_DEBUG
,
580 (stdout
, ";; new DG socket\n"))
585 if (sendto(s
, (char*)buf
, buflen
, 0,
586 (struct sockaddr
*)nsap
,
587 sizeof(struct sockaddr
))
589 Aerror(stderr
, "sendto", errno
, *nsap
);
599 timeout
.tv_sec
= (_res
.retrans
<< try);
601 timeout
.tv_sec
/= _res
.nscount
;
602 if ((long) timeout
.tv_sec
<= 0)
608 n
= select(s
+1, &dsmask
, (fd_set
*)NULL
,
609 (fd_set
*)NULL
, &timeout
);
613 Perror(stderr
, "select", errno
);
621 Dprint(_res
.options
& RES_DEBUG
,
622 (stdout
, ";; timeout\n"));
628 fromlen
= sizeof(struct sockaddr_in
);
629 resplen
= recvfrom(s
, (char*)ans
, anssiz
, 0,
630 (struct sockaddr
*)&from
, &fromlen
);
632 Perror(stderr
, "recvfrom", errno
);
637 if (hp
->id
!= anhp
->id
) {
639 * response from old query, ignore it.
640 * XXX - potential security hazard could
643 DprintQ((_res
.options
& RES_DEBUG
) ||
644 (_res
.pfcode
& RES_PRF_REPLY
),
645 (stdout
, ";; old answer:\n"),
646 ans
, (resplen
>anssiz
)?anssiz
:resplen
);
650 if (!(_res
.options
& RES_INSECURE1
) &&
651 !res_isourserver(&from
)) {
653 * response from wrong server? ignore it.
654 * XXX - potential security hazard could
657 DprintQ((_res
.options
& RES_DEBUG
) ||
658 (_res
.pfcode
& RES_PRF_REPLY
),
659 (stdout
, ";; not our server:\n"),
660 ans
, (resplen
>anssiz
)?anssiz
:resplen
);
664 if (!(_res
.options
& RES_INSECURE2
) &&
665 !res_queriesmatch(buf
, buf
+ buflen
,
666 ans
, ans
+ anssiz
)) {
668 * response contains wrong query? ignore it.
669 * XXX - potential security hazard could
672 DprintQ((_res
.options
& RES_DEBUG
) ||
673 (_res
.pfcode
& RES_PRF_REPLY
),
674 (stdout
, ";; wrong query name:\n"),
675 ans
, (resplen
>anssiz
)?anssiz
:resplen
);
678 if (anhp
->rcode
== SERVFAIL
||
679 anhp
->rcode
== NOTIMP
||
680 anhp
->rcode
== REFUSED
) {
681 DprintQ(_res
.options
& RES_DEBUG
,
682 (stdout
, "server rejected query:\n"),
683 ans
, (resplen
>anssiz
)?anssiz
:resplen
);
686 /* don't retry if called from dig */
690 if (!(_res
.options
& RES_IGNTC
) && anhp
->tc
) {
692 * get rest of answer;
693 * use TCP with same server.
695 Dprint(_res
.options
& RES_DEBUG
,
696 (stdout
, ";; truncated answer\n"));
702 Dprint((_res
.options
& RES_DEBUG
) ||
703 ((_res
.pfcode
& RES_PRF_REPLY
) &&
704 (_res
.pfcode
& RES_PRF_HEAD1
)),
705 (stdout
, ";; got answer:\n"));
706 DprintQ((_res
.options
& RES_DEBUG
) ||
707 (_res
.pfcode
& RES_PRF_REPLY
),
709 ans
, (resplen
>anssiz
)?anssiz
:resplen
);
711 * If using virtual circuits, we assume that the first server
712 * is preferred over the rest (i.e. it is on the local
713 * machine) and only keep that one open.
714 * If we have temporarily opened a virtual circuit,
715 * or if we haven't been asked to keep a socket open,
718 if ((v_circuit
&& (!(_res
.options
& RES_USEVC
) || ns
!= 0)) ||
719 !(_res
.options
& RES_STAYOPEN
)) {
723 int done
= 0, loops
= 0;
728 act
= (*Rhook
)(nsap
, buf
, buflen
,
729 ans
, anssiz
, &resplen
);
739 /* give the hook another try */
740 if (++loops
< 42) /*doug adams*/
758 errno
= ECONNREFUSED
; /* no nameservers found */
760 errno
= ETIMEDOUT
; /* no answer obtained */
767 * This routine is for closing the socket if a virtual circuit is used and
768 * the program wants to close it. This provides support for endhostent()
769 * which expects to close the socket.
771 * This routine is not expected to be user visible.