4 * - TCP connection management
5 * - user-visible check/wait and event-loop-related functions
8 * This file is part of adns, which is
9 * Copyright (C) 1997-2000,2003,2006 Ian Jackson
10 * Copyright (C) 1999-2000,2003,2006 Tony Finch
11 * Copyright (C) 1991 Massachusetts Institute of Technology
12 * (See the file INSTALL for full details.)
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
33 #include <sys/types.h>
36 #include <sys/socket.h>
37 #include <netinet/in.h>
38 #include <arpa/inet.h>
43 /* TCP connection management. */
45 static void tcp_close(adns_state ads) {
46 close(ads->tcpsocket);
48 ads->tcprecv.used= ads->tcprecv_skip= ads->tcpsend.used= 0;
51 void adns__tcp_broken(adns_state ads, const char *what, const char *why) {
55 assert(ads->tcpstate == server_connecting || ads->tcpstate == server_ok);
57 if (what) adns__warn(ads,serv,0,"TCP connection failed: %s: %s",what,why);
59 if (ads->tcpstate == server_connecting) {
60 /* Counts as a retry for all the queries waiting for TCP. */
61 for (qu= ads->tcpw.head; qu; qu= qu->next)
66 ads->tcpstate= server_broken;
67 ads->tcpserver= (serv+1)%ads->nservers;
70 static void tcp_connected(adns_state ads, struct timeval now) {
73 adns__debug(ads,ads->tcpserver,0,"TCP connected");
74 ads->tcpstate= server_ok;
75 for (qu= ads->tcpw.head; qu && ads->tcpstate == server_ok; qu= nqu) {
77 assert(qu->state == query_tcpw);
78 adns__querysend_tcp(qu,now);
82 static void tcp_broken_events(adns_state ads) {
85 assert(ads->tcpstate == server_broken);
86 for (qu= ads->tcpw.head; qu; qu= nqu) {
88 assert(qu->state == query_tcpw);
89 if (qu->retries > ads->nservers) {
90 LIST_UNLINK(ads->tcpw,qu);
91 adns__query_fail(qu,adns_s_allservfail);
94 ads->tcpstate= server_disconnected;
97 void adns__tcp_tryconnect(adns_state ads, struct timeval now) {
100 struct protoent *proto;
102 for (tries=0; tries<ads->nservers; tries++) {
103 switch (ads->tcpstate) {
104 case server_connecting:
108 case server_disconnected:
114 assert(!ads->tcpsend.used);
115 assert(!ads->tcprecv.used);
116 assert(!ads->tcprecv_skip);
118 proto= getprotobyname("tcp");
120 adns__diag(ads,-1,0,"unable to find protocol no. for TCP !");
123 addr = &ads->servers[ads->tcpserver];
124 fd= socket(addr->addr.sa.sa_family, SOCK_STREAM, proto->p_proto);
126 adns__diag(ads,-1,0,"cannot create TCP socket: %s",strerror(errno));
129 r= adns__setnonblock(ads,fd);
131 adns__diag(ads,-1,0,"cannot make TCP socket nonblocking:"
136 r= connect(fd,&addr->addr.sa,addr->len);
138 ads->tcpstate= server_connecting;
139 if (r==0) { tcp_connected(ads,now); return; }
140 if (errno == EWOULDBLOCK || errno == EINPROGRESS) {
141 ads->tcptimeout= now;
142 timevaladd(&ads->tcptimeout,TCPCONNMS);
145 adns__tcp_broken(ads,"connect",strerror(errno));
146 tcp_broken_events(ads);
150 /* Timeout handling functions. */
152 void adns__must_gettimeofday(adns_state ads, const struct timeval **now_io,
153 struct timeval *tv_buf) {
154 const struct timeval *now;
159 r= gettimeofday(tv_buf,0); if (!r) { *now_io= tv_buf; return; }
160 adns__diag(ads,-1,0,"gettimeofday failed: %s",strerror(errno));
161 adns_globalsystemfailure(ads);
165 static void inter_immed(struct timeval **tv_io, struct timeval *tvbuf) {
166 struct timeval *rbuf;
171 if (!rbuf) { *tv_io= rbuf= tvbuf; }
176 static void inter_maxto(struct timeval **tv_io, struct timeval *tvbuf,
177 struct timeval maxto) {
178 struct timeval *rbuf;
183 *tvbuf= maxto; *tv_io= tvbuf;
185 if (timercmp(rbuf,&maxto,>)) *rbuf= maxto;
187 /*fprintf(stderr,"inter_maxto maxto=%ld.%06ld result=%ld.%06ld\n",
188 maxto.tv_sec,maxto.tv_usec,(**tv_io).tv_sec,(**tv_io).tv_usec);*/
191 static void inter_maxtoabs(struct timeval **tv_io, struct timeval *tvbuf,
192 struct timeval now, struct timeval maxtime) {
196 /*fprintf(stderr,"inter_maxtoabs now=%ld.%06ld maxtime=%ld.%06ld\n",
197 now.tv_sec,now.tv_usec,maxtime.tv_sec,maxtime.tv_usec);*/
199 maxtime.tv_sec -= (now.tv_sec+2);
200 maxtime.tv_usec -= (now.tv_usec-2000000);
201 dr= ldiv(maxtime.tv_usec,1000000);
202 maxtime.tv_sec += dr.quot;
203 maxtime.tv_usec -= dr.quot*1000000;
204 if (maxtime.tv_sec<0) timerclear(&maxtime);
205 inter_maxto(tv_io,tvbuf,maxtime);
208 static void timeouts_queue(adns_state ads, int act,
209 struct timeval **tv_io, struct timeval *tvbuf,
210 struct timeval now, struct query_queue *queue) {
213 for (qu= queue->head; qu; qu= nqu) {
215 if (!timercmp(&now,&qu->timeout,>)) {
216 inter_maxtoabs(tv_io,tvbuf,now,qu->timeout);
218 if (!act) { inter_immed(tv_io,tvbuf); return; }
219 LIST_UNLINK(*queue,qu);
220 if (qu->state != query_tosend) {
221 adns__query_fail(qu,adns_s_timeout);
223 adns__query_send(qu,now);
230 static void tcp_events(adns_state ads, int act,
231 struct timeval **tv_io, struct timeval *tvbuf,
232 struct timeval now) {
234 switch (ads->tcpstate) {
236 if (!act) { inter_immed(tv_io,tvbuf); return; }
237 tcp_broken_events(ads);
238 case server_disconnected: /* fall through */
239 if (!ads->tcpw.head) return;
240 if (!act) { inter_immed(tv_io,tvbuf); return; }
241 adns__tcp_tryconnect(ads,now);
244 if (ads->tcpw.head) return;
245 if (!ads->tcptimeout.tv_sec) {
246 assert(!ads->tcptimeout.tv_usec);
247 ads->tcptimeout= now;
248 timevaladd(&ads->tcptimeout,TCPIDLEMS);
250 case server_connecting: /* fall through */
251 if (!act || !timercmp(&now,&ads->tcptimeout,>)) {
252 inter_maxtoabs(tv_io,tvbuf,now,ads->tcptimeout);
255 /* TCP timeout has happened */
256 switch (ads->tcpstate) {
257 case server_connecting: /* failed to connect */
258 adns__tcp_broken(ads,"unable to make connection","timed out");
260 case server_ok: /* idle timeout */
262 ads->tcpstate= server_disconnected;
276 void adns__timeouts(adns_state ads, int act,
277 struct timeval **tv_io, struct timeval *tvbuf,
278 struct timeval now) {
279 timeouts_queue(ads,act,tv_io,tvbuf,now, &ads->udpw);
280 timeouts_queue(ads,act,tv_io,tvbuf,now, &ads->tcpw);
281 tcp_events(ads,act,tv_io,tvbuf,now);
284 void adns_firsttimeout(adns_state ads,
285 struct timeval **tv_io, struct timeval *tvbuf,
286 struct timeval now) {
287 adns__consistency(ads,0,cc_entex);
288 adns__timeouts(ads, 0, tv_io,tvbuf, now);
289 adns__returning(ads,0);
292 void adns_processtimeouts(adns_state ads, const struct timeval *now) {
293 struct timeval tv_buf;
295 adns__consistency(ads,0,cc_entex);
296 adns__must_gettimeofday(ads,&now,&tv_buf);
297 if (now) adns__timeouts(ads, 1, 0,0, *now);
298 adns__returning(ads,0);
301 /* fd handling functions. These are the top-level of the real work of
302 * reception and often transmission.
305 int adns__pollfds(adns_state ads, struct pollfd pollfds_buf[MAX_POLLFDS]) {
306 /* Returns the number of entries filled in. Always zeroes revents. */
310 assert(MAX_POLLFDS == MAXUDP + 1);
312 for (i=0; i<ads->nudp; i++) {
313 pollfds_buf[i].fd= ads->udpsocket[i].fd;
314 pollfds_buf[i].events= POLLIN;
315 pollfds_buf[i].revents= 0;
318 switch (ads->tcpstate) {
319 case server_disconnected:
322 case server_connecting:
323 pollfds_buf[i].events= POLLOUT;
326 pollfds_buf[i].events=
327 ads->tcpsend.used ? POLLIN|POLLOUT|POLLPRI : POLLIN|POLLPRI;
332 pollfds_buf[i++].fd= ads->tcpsocket;
336 int adns_processreadable(adns_state ads, int fd, const struct timeval *now) {
337 int want, dgramlen, r, i, udpaddrlen, serv, old_skip;
338 byte udpbuf[DNS_MAXUDP];
339 char addrbuf[ADNS_ADDR2TEXT_BUFLEN];
340 struct udpsocket *udp;
341 adns_sockaddr udpaddr;
343 adns__consistency(ads,0,cc_entex);
345 switch (ads->tcpstate) {
346 case server_disconnected:
348 case server_connecting:
351 if (fd != ads->tcpsocket) break;
352 assert(!ads->tcprecv_skip);
354 if (ads->tcprecv.used >= ads->tcprecv_skip+2) {
355 dgramlen= ((ads->tcprecv.buf[ads->tcprecv_skip]<<8) |
356 ads->tcprecv.buf[ads->tcprecv_skip+1]);
357 if (ads->tcprecv.used >= ads->tcprecv_skip+2+dgramlen) {
358 old_skip= ads->tcprecv_skip;
359 ads->tcprecv_skip += 2+dgramlen;
360 adns__procdgram(ads, ads->tcprecv.buf+old_skip+2,
361 dgramlen, ads->tcpserver, 1,*now);
369 ads->tcprecv.used -= ads->tcprecv_skip;
370 memmove(ads->tcprecv.buf, ads->tcprecv.buf+ads->tcprecv_skip,
372 ads->tcprecv_skip= 0;
373 if (!adns__vbuf_ensure(&ads->tcprecv,want)) { r= ENOMEM; goto xit; }
374 assert(ads->tcprecv.used <= ads->tcprecv.avail);
375 if (ads->tcprecv.used == ads->tcprecv.avail) continue;
376 r= read(ads->tcpsocket,
377 ads->tcprecv.buf+ads->tcprecv.used,
378 ads->tcprecv.avail-ads->tcprecv.used);
380 ads->tcprecv.used+= r;
383 if (errno==EAGAIN || errno==EWOULDBLOCK) { r= 0; goto xit; }
384 if (errno==EINTR) continue;
385 if (errno_resources(errno)) { r= errno; goto xit; }
387 adns__tcp_broken(ads,"read",r?strerror(errno):"closed");
389 } while (ads->tcpstate == server_ok);
394 for (i=0; i<ads->nudp; i++) {
395 udp= &ads->udpsocket[i];
398 udpaddrlen= sizeof(udpaddr);
399 r= recvfrom(fd,udpbuf,sizeof(udpbuf),0, &udpaddr.sa,&udpaddrlen);
401 if (errno == EAGAIN || errno == EWOULDBLOCK) { r= 0; goto xit; }
402 if (errno == EINTR) continue;
403 if (errno_resources(errno)) { r= errno; goto xit; }
404 adns__warn(ads,-1,0,"datagram receive error: %s",strerror(errno));
408 serv < ads->nservers &&
409 !adns__sockaddr_equal_p(&udpaddr.sa,
410 &ads->servers[serv].addr.sa);
412 if (serv >= ads->nservers) {
413 adns__warn(ads,-1,0,"datagram received from unknown nameserver %s",
414 adns__sockaddr_ntoa(&udpaddr.sa, addrbuf));
417 adns__procdgram(ads,udpbuf,r,serv,0,*now);
424 adns__returning(ads,0);
428 int adns_processwriteable(adns_state ads, int fd, const struct timeval *now) {
431 adns__consistency(ads,0,cc_entex);
433 switch (ads->tcpstate) {
434 case server_disconnected:
437 case server_connecting:
438 if (fd != ads->tcpsocket) break;
439 assert(ads->tcprecv.used==0);
440 assert(ads->tcprecv_skip==0);
442 if (!adns__vbuf_ensure(&ads->tcprecv,1)) { r= ENOMEM; goto xit; }
443 r= read(ads->tcpsocket,&ads->tcprecv.buf,1);
444 if (r==0 || (r<0 && (errno==EAGAIN || errno==EWOULDBLOCK))) {
445 tcp_connected(ads,*now);
449 adns__tcp_broken(ads,"connect/read","sent data before first request");
452 if (errno==EINTR) continue;
453 if (errno_resources(errno)) { r= errno; goto xit; }
454 adns__tcp_broken(ads,"connect/read",strerror(errno));
458 if (fd != ads->tcpsocket) break;
459 while (ads->tcpsend.used) {
460 adns__sigpipe_protect(ads);
461 r= write(ads->tcpsocket,ads->tcpsend.buf,ads->tcpsend.used);
462 adns__sigpipe_unprotect(ads);
464 if (errno==EINTR) continue;
465 if (errno==EAGAIN || errno==EWOULDBLOCK) { r= 0; goto xit; }
466 if (errno_resources(errno)) { r= errno; goto xit; }
467 adns__tcp_broken(ads,"write",strerror(errno));
470 ads->tcpsend.used -= r;
471 memmove(ads->tcpsend.buf,ads->tcpsend.buf+r,ads->tcpsend.used);
481 adns__returning(ads,0);
485 int adns_processexceptional(adns_state ads, int fd,
486 const struct timeval *now) {
487 adns__consistency(ads,0,cc_entex);
488 switch (ads->tcpstate) {
489 case server_disconnected:
492 case server_connecting:
494 if (fd != ads->tcpsocket) break;
495 adns__tcp_broken(ads,"poll/select","exceptional condition detected");
500 adns__returning(ads,0);
504 static void fd_event(adns_state ads, int fd,
505 int revent, int pollflag,
506 int maxfd, const fd_set *fds,
507 int (*func)(adns_state, int fd,
508 const struct timeval *now),
509 struct timeval now, int *r_r) {
512 if (!(revent & pollflag)) return;
513 if (fds && !(fd<maxfd && FD_ISSET(fd,fds))) return;
514 r= func(ads,fd,&now);
519 adns__diag(ads,-1,0,"process fd failed after select:"
520 " %s",strerror(errno));
521 adns_globalsystemfailure(ads);
526 void adns__fdevents(adns_state ads,
527 const struct pollfd *pollfds, int npollfds,
528 int maxfd, const fd_set *readfds,
529 const fd_set *writefds, const fd_set *exceptfds,
530 struct timeval now, int *r_r) {
533 for (i=0; i<npollfds; i++) {
535 if (fd >= maxfd) maxfd= fd+1;
536 revents= pollfds[i].revents;
537 #define EV(pollfl,fds,how) \
538 fd_event(ads,fd, revents,pollfl, maxfd,fds, adns_process##how,now,r_r)
539 EV( POLLIN, readfds, readable );
540 EV( POLLOUT, writefds, writeable );
541 EV( POLLPRI, exceptfds, exceptional );
546 /* Wrappers for select(2). */
548 void adns_beforeselect(adns_state ads, int *maxfd_io, fd_set *readfds_io,
549 fd_set *writefds_io, fd_set *exceptfds_io,
550 struct timeval **tv_mod, struct timeval *tv_tobuf,
551 const struct timeval *now) {
552 struct timeval tv_nowbuf;
553 struct pollfd pollfds[MAX_POLLFDS];
554 int i, fd, maxfd, npollfds;
556 adns__consistency(ads,0,cc_entex);
558 if (tv_mod && (!*tv_mod || (*tv_mod)->tv_sec || (*tv_mod)->tv_usec)) {
559 /* The caller is planning to sleep. */
560 adns__must_gettimeofday(ads,&now,&tv_nowbuf);
561 if (!now) { inter_immed(tv_mod,tv_tobuf); goto xit; }
562 adns__timeouts(ads, 0, tv_mod,tv_tobuf, *now);
565 npollfds= adns__pollfds(ads,pollfds);
567 for (i=0; i<npollfds; i++) {
569 if (fd >= maxfd) maxfd= fd+1;
570 if (pollfds[i].events & POLLIN) FD_SET(fd,readfds_io);
571 if (pollfds[i].events & POLLOUT) FD_SET(fd,writefds_io);
572 if (pollfds[i].events & POLLPRI) FD_SET(fd,exceptfds_io);
577 adns__returning(ads,0);
580 void adns_afterselect(adns_state ads, int maxfd, const fd_set *readfds,
581 const fd_set *writefds, const fd_set *exceptfds,
582 const struct timeval *now) {
583 struct timeval tv_buf;
584 struct pollfd pollfds[MAX_POLLFDS];
587 adns__consistency(ads,0,cc_entex);
588 adns__must_gettimeofday(ads,&now,&tv_buf);
590 adns_processtimeouts(ads,now);
592 npollfds= adns__pollfds(ads,pollfds);
593 for (i=0; i<npollfds; i++) pollfds[i].revents= POLLIN|POLLOUT|POLLPRI;
596 maxfd,readfds,writefds,exceptfds,
599 adns__returning(ads,0);
602 /* General helpful functions. */
604 void adns_globalsystemfailure(adns_state ads) {
605 adns__consistency(ads,0,cc_entex);
607 while (ads->udpw.head) adns__query_fail(ads->udpw.head, adns_s_systemfail);
608 while (ads->tcpw.head) adns__query_fail(ads->tcpw.head, adns_s_systemfail);
610 switch (ads->tcpstate) {
611 case server_connecting:
613 adns__tcp_broken(ads,0,0);
615 case server_disconnected:
621 adns__returning(ads,0);
624 int adns_processany(adns_state ads) {
627 struct pollfd pollfds[MAX_POLLFDS];
630 adns__consistency(ads,0,cc_entex);
632 r= gettimeofday(&now,0);
633 if (!r) adns_processtimeouts(ads,&now);
635 /* We just use adns__fdevents to loop over the fd's trying them.
636 * This seems more sensible than calling select, since we're most
637 * likely just to want to do a read on one or two fds anyway.
639 npollfds= adns__pollfds(ads,pollfds);
640 for (i=0; i<npollfds; i++) pollfds[i].revents= pollfds[i].events & ~POLLPRI;
646 adns__returning(ads,0);
650 void adns__autosys(adns_state ads, struct timeval now) {
651 if (ads->iflags & adns_if_noautosys) return;
652 adns_processany(ads);
655 int adns__internal_check(adns_state ads,
656 adns_query *query_io,
657 adns_answer **answer,
663 if (ads->output.head) {
664 qu= ads->output.head;
665 } else if (ads->udpw.head || ads->tcpw.head) {
671 if (qu->id>=0) return EAGAIN;
673 LIST_UNLINK(ads->output,qu);
675 if (context_r) *context_r= qu->ctx.ext;
681 int adns_wait(adns_state ads,
682 adns_query *query_io,
683 adns_answer **answer_r,
686 fd_set readfds, writefds, exceptfds;
687 struct timeval tvbuf, *tvp;
689 adns__consistency(ads,*query_io,cc_entex);
691 r= adns__internal_check(ads,query_io,answer_r,context_r);
692 if (r != EAGAIN) break;
694 FD_ZERO(&readfds); FD_ZERO(&writefds); FD_ZERO(&exceptfds);
695 adns_beforeselect(ads,&maxfd,&readfds,&writefds,&exceptfds,&tvp,&tvbuf,0);
697 rsel= select(maxfd,&readfds,&writefds,&exceptfds,tvp);
699 if (errno == EINTR) {
700 if (ads->iflags & adns_if_eintr) { r= EINTR; break; }
702 adns__diag(ads,-1,0,"select failed in wait: %s",strerror(errno));
703 adns_globalsystemfailure(ads);
707 adns_afterselect(ads,maxfd,&readfds,&writefds,&exceptfds,0);
710 adns__returning(ads,0);
714 int adns_check(adns_state ads,
715 adns_query *query_io,
716 adns_answer **answer_r,
721 adns__consistency(ads,*query_io,cc_entex);
722 r= gettimeofday(&now,0);
723 if (!r) adns__autosys(ads,now);
725 r= adns__internal_check(ads,query_io,answer_r,context_r);
726 adns__returning(ads,0);