4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2015 Gary Mills
24 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
25 * Use is subject to license terms.
28 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
29 /* All Rights Reserved */
32 * University Copyright- Copyright (c) 1982, 1986, 1988
33 * The Regents of the University of California
36 * University Acknowledgment- Portions of this document are derived from
37 * software developed by the University of California, Berkeley, and its
42 * Send query to name server and wait for reply.
45 #include <sys/param.h>
47 #include <sys/socket.h>
50 #include <netinet/in.h>
55 #include <arpa/nameser.h>
56 #include <arpa/inet.h>
60 static int s
= -1; /* socket used for communications */
62 static struct sockaddr no_addr
;
69 #define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
70 #define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
71 #define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
73 #define FD_ZERO(p) (void) memset((p), 0, sizeof (*(p)))
75 #define FD_ZERO(p) bzero((char *)(p), sizeof (*(p)))
80 * 1247019: Kludge to time out quickly if there is no /etc/resolv.conf
81 * and a TCP connection to the local DNS server fails.
84 static int _confcheck()
88 struct sockaddr_in ns_sin
;
91 /* First, we check to see if /etc/resolv.conf exists.
92 * If it doesn't, then localhost is mostlikely to be
95 if (stat(_PATH_RESCONF
, &rc_stat
) == -1 && errno
== ENOENT
) {
97 /* Next, we check to see if _res.nsaddr is set to loopback.
98 * If it isn't, it has been altered by the application
99 * explicitly and we then want to bail with success.
101 if (_res
.nsaddr
.sin_addr
.S_un
.S_addr
== htonl(INADDR_LOOPBACK
)) {
103 /* Lastly, we try to connect to the TCP port of the
104 * nameserver. If this fails, then we know that
105 * DNS is misconfigured and we can quickly exit.
107 ns
= socket(AF_INET
, SOCK_STREAM
, 0);
108 IN_SET_LOOPBACK_ADDR(&ns_sin
);
109 ns_sin
.sin_port
= htons(NAMESERVER_PORT
);
110 if (connect(ns
, (struct sockaddr
*) &ns_sin
,
111 sizeof ns_sin
) == -1) {
128 res_send(buf
, buflen
, answer
, anslen
)
135 int try, v_circuit
, resplen
, ns
;
136 int gotsomewhere
= 0;
144 struct timeval timeout
;
145 HEADER
*hp
= (HEADER
*) buf
;
146 HEADER
*anhp
= (HEADER
*) answer
;
148 int terrno
= ETIMEDOUT
;
152 if (_res
.options
& RES_DEBUG
) {
153 printf("res_send()\n");
157 if (!(_res
.options
& RES_INIT
))
158 if (res_init() == -1) {
162 /* 1247019: Check to see if we can bailout quickly. */
163 if (_confcheck() == -1)
166 v_circuit
= (_res
.options
& RES_USEVC
) || buflen
> PACKETSZ
;
169 * Send request, RETRY times, or until successful
171 for (try = 0; try < _res
.retry
; try++) {
172 for (ns
= 0; ns
< _res
.nscount
; ns
++) {
174 if (_res
.options
& RES_DEBUG
)
175 printf("Querying server (# %d) address = %s\n",
176 ns
+1, inet_ntoa(_res
.nsaddr_list
[ns
].sin_addr
));
183 * Use virtual circuit;
184 * at most one attempt per server.
188 s
= socket(AF_INET
, SOCK_STREAM
, 0);
192 if (_res
.options
& RES_DEBUG
) {
193 perror("socket (vc) failed");
198 if (connect(s
, (struct sockaddr
*) &_res
.nsaddr_list
[ns
],
199 sizeof (struct sockaddr
)) < 0) {
202 if (_res
.options
& RES_DEBUG
) {
203 perror("connect failed");
212 * Send length & message
214 len
= htons((u_short
)buflen
);
215 iov
[0].iov_base
= (caddr_t
)&len
;
216 iov
[0].iov_len
= sizeof (len
);
217 iov
[1].iov_base
= buf
;
218 iov
[1].iov_len
= buflen
;
219 if (writev(s
, iov
, 2) != sizeof (len
) +
223 if (_res
.options
& RES_DEBUG
)
224 perror("write failed");
231 * Receive length & response
234 len
= sizeof (short);
235 while (len
!= 0 && (n
= read
236 (s
, (char *)cp
, (int)len
)) > 0) {
243 if (_res
.options
& RES_DEBUG
)
244 perror("read failed");
249 * A long running process might get its TCP
250 * connection reset if the remote server was
251 * restarted. Requery the server instead of
252 * trying a new one. When there is only one
253 * server, this means that a query might work
254 * instead of failing. We only allow one reset
255 * per query to prevent looping.
257 if (terrno
== ECONNRESET
&&
265 if ((resplen
= ntohs(*(u_short
*)cp
)) >
268 if (_res
.options
& RES_DEBUG
)
270 "response truncated\n");
277 (n
= read(s
, (char *)cp
,
285 if (_res
.options
& RES_DEBUG
)
286 perror("read failed");
294 * Flush rest of answer
295 * so connection stays in synch.
298 len
= resplen
- anslen
;
300 * set the value of resplen to anslen,
301 * this is done because the caller
302 * assumes resplen contains the size of
303 * message read into the "answer" buffer
309 n
= (len
> sizeof (junk
) ?
310 sizeof (junk
) : len
);
311 if ((n
= read(s
, junk
, n
)) > 0)
322 s
= socket(AF_INET
, SOCK_DGRAM
, 0);
326 if (_res
.options
& RES_DEBUG
) {
327 perror("socket (dg) failed");
335 * I'm tired of answering this question, so:
336 * On a 4.3BSD+ machine (client and server,
337 * actually), sending to a nameserver datagram
338 * port with no nameserver will cause an
339 * ICMP port unreachable message to be returned.
340 * If our datagram socket is "connected" to the
341 * server, we get an ECONNREFUSED error on the next
342 * socket operation, and select returns if the
343 * error message is received. We can thus detect
344 * the absence of a nameserver without timing out.
345 * If we have sent queries to at least two servers,
346 * however, we don't want to remain connected,
347 * as we wish to receive answers from the first
350 if (_res
.nscount
== 1 ||
351 (try == 0 && ns
== 0)) {
353 * Don't use connect if we might
354 * still receive a response
355 * from another server.
357 if (connected
== 0) {
359 (struct sockaddr
*) &_res
.nsaddr_list
[ns
],
360 sizeof (struct sockaddr
)) < 0) {
371 if (send(s
, buf
, buflen
, 0) != buflen
) {
373 if (_res
.options
& RES_DEBUG
)
380 * Disconnect if we want to listen for
381 * responses from more than one server.
384 (void) connect(s
, &no_addr
,
389 if (sendto(s
, buf
, buflen
, 0,
390 (struct sockaddr
*) &_res
.nsaddr_list
[ns
],
391 sizeof (struct sockaddr
)) != buflen
) {
393 if (_res
.options
& RES_DEBUG
)
405 timeout
.tv_sec
= (_res
.retrans
<< try);
407 timeout
.tv_sec
/= _res
.nscount
;
408 if (timeout
.tv_sec
<= 0)
414 n
= select(s
+1, &dsmask
, (fd_set
*)NULL
,
415 (fd_set
*)NULL
, &timeout
);
418 if (_res
.options
& RES_DEBUG
)
428 if (_res
.options
& RES_DEBUG
)
436 if ((resplen
= recv(s
, answer
, anslen
, 0))
439 if (_res
.options
& RES_DEBUG
)
445 if (id
!= anhp
->id
) {
447 * response from old query, ignore it
450 if (_res
.options
& RES_DEBUG
) {
451 printf("old answer:\n");
457 if (!(_res
.options
& RES_IGNTC
) && anhp
->tc
) {
459 * get rest of answer;
460 * use TCP with same server.
463 if (_res
.options
& RES_DEBUG
)
464 printf("truncated answer\n");
473 if (_res
.options
& RES_DEBUG
) {
474 printf("got answer:\n");
479 * If using virtual circuits, we assume that the first server
480 * is preferred * over the rest (i.e. it is on the local
481 * machine) and only keep that one open.
482 * If we have temporarily opened a virtual circuit,
483 * or if we haven't been asked to keep a socket open,
487 ((_res
.options
& RES_USEVC
) == 0 || ns
!= 0)) ||
488 (_res
.options
& RES_STAYOPEN
) == 0) {
500 if (gotsomewhere
== 0)
501 errno
= ECONNREFUSED
; /* no nameservers found */
503 errno
= ETIMEDOUT
; /* no answer obtained */
510 * This routine is for closing the socket if a virtual circuit is used and
511 * the program wants to close it. This provides support for endhostent()
512 * which expects to close the socket.
514 * This routine is not expected to be user visible.