chiark / gitweb /
04ba26bdcb1a10797af4ecd2b7ec4f7b2992865e
[adns.git] / src / event.c
1 /*
2  * event.c
3  * - event loop core
4  * - TCP connection management
5  * - user-visible check/wait and event-loop-related functions
6  */
7 /*
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.)
13  *  
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)
17  *  any later version.
18  *  
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.
23  *  
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. 
27  */
28
29 #include <errno.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32
33 #include <sys/types.h>
34 #include <sys/time.h>
35 #include <netdb.h>
36 #include <sys/socket.h>
37 #include <netinet/in.h>
38 #include <arpa/inet.h>
39
40 #include "internal.h"
41 #include "tvarith.h"
42
43 /* TCP connection management. */
44
45 static void tcp_close(adns_state ads) {
46   close(ads->tcpsocket);
47   ads->tcpsocket= -1;
48   ads->tcprecv.used= ads->tcprecv_skip= ads->tcpsend.used= 0;
49 }
50
51 void adns__tcp_broken(adns_state ads, const char *what, const char *why) {
52   int serv;
53   adns_query qu;
54   
55   assert(ads->tcpstate == server_connecting || ads->tcpstate == server_ok);
56   serv= ads->tcpserver;
57   if (what) adns__warn(ads,serv,0,"TCP connection failed: %s: %s",what,why);
58
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)
62       qu->retries++;
63   }
64
65   tcp_close(ads);
66   ads->tcpstate= server_broken;
67   ads->tcpserver= (serv+1)%ads->nservers;
68 }
69
70 static void tcp_connected(adns_state ads, struct timeval now) {
71   adns_query qu, nqu;
72   
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) {
76     nqu= qu->next;
77     assert(qu->state == query_tcpw);
78     adns__querysend_tcp(qu,now);
79   }
80 }
81
82 static void tcp_broken_events(adns_state ads) {
83   adns_query qu, nqu;
84   
85   assert(ads->tcpstate == server_broken);
86   for (qu= ads->tcpw.head; qu; qu= nqu) {
87     nqu= qu->next;
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);
92     }
93   }
94   ads->tcpstate= server_disconnected;
95 }
96
97 void adns__tcp_tryconnect(adns_state ads, struct timeval now) {
98   int r, fd, tries;
99   adns_rr_addr *addr;
100   struct protoent *proto;
101
102   for (tries=0; tries<ads->nservers; tries++) {
103     switch (ads->tcpstate) {
104     case server_connecting:
105     case server_ok:
106     case server_broken:
107       return;
108     case server_disconnected:
109       break;
110     default:
111       abort();
112     }
113     
114     assert(!ads->tcpsend.used);
115     assert(!ads->tcprecv.used);
116     assert(!ads->tcprecv_skip);
117
118     proto= getprotobyname("tcp");
119     if (!proto) {
120       adns__diag(ads,-1,0,"unable to find protocol no. for TCP !");
121       return;
122     }
123     addr = &ads->servers[ads->tcpserver];
124     fd= socket(addr->addr.sa.sa_family, SOCK_STREAM, proto->p_proto);
125     if (fd<0) {
126       adns__diag(ads,-1,0,"cannot create TCP socket: %s",strerror(errno));
127       return;
128     }
129     r= adns__setnonblock(ads,fd);
130     if (r) {
131       adns__diag(ads,-1,0,"cannot make TCP socket nonblocking:"
132                  " %s",strerror(r));
133       close(fd);
134       return;
135     }
136     r= connect(fd,&addr->addr.sa,addr->len);
137     ads->tcpsocket= fd;
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);
143       return;
144     }
145     adns__tcp_broken(ads,"connect",strerror(errno));
146     tcp_broken_events(ads);
147   }
148 }
149
150 /* Timeout handling functions. */
151
152 void adns__must_gettimeofday(adns_state ads, const struct timeval **now_io,
153                              struct timeval *tv_buf) {
154   const struct timeval *now;
155   int r;
156
157   now= *now_io;
158   if (now) return;
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);
162   return;
163 }
164
165 static void inter_immed(struct timeval **tv_io, struct timeval *tvbuf) {
166   struct timeval *rbuf;
167
168   if (!tv_io) return;
169
170   rbuf= *tv_io;
171   if (!rbuf) { *tv_io= rbuf= tvbuf; }
172
173   timerclear(rbuf);
174 }
175     
176 static void inter_maxto(struct timeval **tv_io, struct timeval *tvbuf,
177                         struct timeval maxto) {
178   struct timeval *rbuf;
179
180   if (!tv_io) return;
181   rbuf= *tv_io;
182   if (!rbuf) {
183     *tvbuf= maxto; *tv_io= tvbuf;
184   } else {
185     if (timercmp(rbuf,&maxto,>)) *rbuf= maxto;
186   }
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);*/
189 }
190
191 static void inter_maxtoabs(struct timeval **tv_io, struct timeval *tvbuf,
192                            struct timeval now, struct timeval maxtime) {
193   /* tv_io may be 0 */
194   ldiv_t dr;
195
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);*/
198   if (!tv_io) return;
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);
206 }
207
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) {
211   adns_query qu, nqu;
212   
213   for (qu= queue->head; qu; qu= nqu) {
214     nqu= qu->next;
215     if (!timercmp(&now,&qu->timeout,>)) {
216       inter_maxtoabs(tv_io,tvbuf,now,qu->timeout);
217     } else {
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);
222       } else {
223         adns__query_send(qu,now);
224       }
225       nqu= queue->head;
226     }
227   }
228 }
229
230 static void tcp_events(adns_state ads, int act,
231                        struct timeval **tv_io, struct timeval *tvbuf,
232                        struct timeval now) {
233   for (;;) {
234     switch (ads->tcpstate) {
235     case server_broken:
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);
242       break;
243     case server_ok:
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);
249       }
250     case server_connecting: /* fall through */
251       if (!act || !timercmp(&now,&ads->tcptimeout,>)) {
252         inter_maxtoabs(tv_io,tvbuf,now,ads->tcptimeout);
253         return;
254       } {
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");
259           break;
260         case server_ok: /* idle timeout */
261           tcp_close(ads);
262           ads->tcpstate= server_disconnected;
263           return;
264         default:
265           abort();
266         }
267       }
268       break;
269     default:
270       abort();
271     }
272   }
273   return;
274 }
275
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);
282 }
283
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__consistency(ads,0,cc_entex);
290 }
291
292 void adns_processtimeouts(adns_state ads, const struct timeval *now) {
293   struct timeval tv_buf;
294
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__consistency(ads,0,cc_entex);
299 }
300
301 /* fd handling functions.  These are the top-level of the real work of
302  * reception and often transmission.
303  */
304
305 int adns__pollfds(adns_state ads, struct pollfd pollfds_buf[MAX_POLLFDS]) {
306   /* Returns the number of entries filled in.  Always zeroes revents. */
307   int nwanted=0;
308 #define ADD_POLLFD(wantfd, wantevents) do{      \
309     pollfds_buf[nwanted].fd= (wantfd);          \
310     pollfds_buf[nwanted].events= (wantevents);  \
311     pollfds_buf[nwanted].revents= 0;            \
312     nwanted++;                                  \
313   }while(0)
314
315   assert(MAX_POLLFDS==2);
316
317   ADD_POLLFD(ads->udpsocket, POLLIN);
318
319   switch (ads->tcpstate) {
320   case server_disconnected:
321   case server_broken:
322     break;
323   case server_connecting:
324     ADD_POLLFD(ads->tcpsocket, POLLOUT);
325     break;
326   case server_ok:
327     ADD_POLLFD(ads->tcpsocket,
328                ads->tcpsend.used ? POLLIN|POLLOUT|POLLPRI : POLLIN|POLLPRI);
329     break;
330   default:
331     abort();
332   }
333   assert(nwanted<=MAX_POLLFDS);
334 #undef ADD_POLLFD
335   return nwanted;
336 }
337
338 int adns_processreadable(adns_state ads, int fd, const struct timeval *now) {
339   int want, dgramlen, r, udpaddrlen, serv, old_skip;
340   byte udpbuf[DNS_MAXUDP];
341   struct sockaddr_in udpaddr;
342   
343   adns__consistency(ads,0,cc_entex);
344
345   switch (ads->tcpstate) {
346   case server_disconnected:
347   case server_broken:
348   case server_connecting:
349     break;
350   case server_ok:
351     if (fd != ads->tcpsocket) break;
352     assert(!ads->tcprecv_skip);
353     do {
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);
362           continue;
363         } else {
364           want= 2+dgramlen;
365         }
366       } else {
367         want= 2;
368       }
369       ads->tcprecv.used -= ads->tcprecv_skip;
370       memmove(ads->tcprecv.buf, ads->tcprecv.buf+ads->tcprecv_skip,
371               ads->tcprecv.used);
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);
379       if (r>0) {
380         ads->tcprecv.used+= r;
381       } else {
382         if (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; }
386         }
387         adns__tcp_broken(ads,"read",r?strerror(errno):"closed");
388       }
389     } while (ads->tcpstate == server_ok);
390     r= 0; goto xit;
391   default:
392     abort();
393   }
394   if (fd == ads->udpsocket) {
395     for (;;) {
396       udpaddrlen= sizeof(udpaddr);
397       r= recvfrom(ads->udpsocket,udpbuf,sizeof(udpbuf),0,
398                   (struct sockaddr*)&udpaddr,&udpaddrlen);
399       if (r<0) {
400         if (errno == EAGAIN || errno == EWOULDBLOCK) { r= 0; goto xit; }
401         if (errno == EINTR) continue;
402         if (errno_resources(errno)) { r= errno; goto xit; }
403         adns__warn(ads,-1,0,"datagram receive error: %s",strerror(errno));
404         r= 0; goto xit;
405       }
406       if (udpaddrlen != sizeof(udpaddr)) {
407         adns__diag(ads,-1,0,"datagram received with wrong address length %d"
408                    " (expected %lu)", udpaddrlen,
409                    (unsigned long)sizeof(udpaddr));
410         continue;
411       }
412       if (udpaddr.sin_family != AF_INET) {
413         adns__diag(ads,-1,0,"datagram received with wrong protocol family"
414                    " %u (expected %u)",udpaddr.sin_family,AF_INET);
415         continue;
416       }
417       if (ntohs(udpaddr.sin_port) != DNS_PORT) {
418         adns__diag(ads,-1,0,"datagram received from wrong port"
419                    " %u (expected %u)", ntohs(udpaddr.sin_port),DNS_PORT);
420         continue;
421       }
422       for (serv= 0;
423            serv < ads->nservers &&
424              !adns__sockaddr_equal_p(&ads->servers[serv].addr.sa,
425                                      (const struct sockaddr *)&udpaddr);
426            serv++);
427       if (serv >= ads->nservers) {
428         adns__warn(ads,-1,0,"datagram received from unknown nameserver %s",
429                    inet_ntoa(udpaddr.sin_addr));
430         continue;
431       }
432       adns__procdgram(ads,udpbuf,r,serv,0,*now);
433     }
434   }
435   r= 0;
436 xit:
437   adns__consistency(ads,0,cc_entex);
438   return r;
439 }
440
441 int adns_processwriteable(adns_state ads, int fd, const struct timeval *now) {
442   int r;
443   
444   adns__consistency(ads,0,cc_entex);
445
446   switch (ads->tcpstate) {
447   case server_disconnected:
448   case server_broken:
449     break;
450   case server_connecting:
451     if (fd != ads->tcpsocket) break;
452     assert(ads->tcprecv.used==0);
453     assert(ads->tcprecv_skip==0);
454     for (;;) {
455       if (!adns__vbuf_ensure(&ads->tcprecv,1)) { r= ENOMEM; goto xit; }
456       r= read(ads->tcpsocket,&ads->tcprecv.buf,1);
457       if (r==0 || (r<0 && (errno==EAGAIN || errno==EWOULDBLOCK))) {
458         tcp_connected(ads,*now);
459         r= 0; goto xit;
460       }
461       if (r>0) {
462         adns__tcp_broken(ads,"connect/read","sent data before first request");
463         r= 0; goto xit;
464       }
465       if (errno==EINTR) continue;
466       if (errno_resources(errno)) { r= errno; goto xit; }
467       adns__tcp_broken(ads,"connect/read",strerror(errno));
468       r= 0; goto xit;
469     } /* not reached */
470   case server_ok:
471     if (fd != ads->tcpsocket) break;
472     while (ads->tcpsend.used) {
473       adns__sigpipe_protect(ads);
474       r= write(ads->tcpsocket,ads->tcpsend.buf,ads->tcpsend.used);
475       adns__sigpipe_unprotect(ads);
476       if (r<0) {
477         if (errno==EINTR) continue;
478         if (errno==EAGAIN || errno==EWOULDBLOCK) { r= 0; goto xit; }
479         if (errno_resources(errno)) { r= errno; goto xit; }
480         adns__tcp_broken(ads,"write",strerror(errno));
481         r= 0; goto xit;
482       } else if (r>0) {
483         ads->tcpsend.used -= r;
484         memmove(ads->tcpsend.buf,ads->tcpsend.buf+r,ads->tcpsend.used);
485       }
486     }
487     r= 0;
488     goto xit;
489   default:
490     abort();
491   }
492   r= 0;
493 xit:
494   adns__consistency(ads,0,cc_entex);
495   return r;
496 }
497   
498 int adns_processexceptional(adns_state ads, int fd,
499                             const struct timeval *now) {
500   adns__consistency(ads,0,cc_entex);
501   switch (ads->tcpstate) {
502   case server_disconnected:
503   case server_broken:
504     break;
505   case server_connecting:
506   case server_ok:
507     if (fd != ads->tcpsocket) break;
508     adns__tcp_broken(ads,"poll/select","exceptional condition detected");
509     break;
510   default:
511     abort();
512   }
513   adns__consistency(ads,0,cc_entex);
514   return 0;
515 }
516
517 static void fd_event(adns_state ads, int fd,
518                      int revent, int pollflag,
519                      int maxfd, const fd_set *fds,
520                      int (*func)(adns_state, int fd,
521                                  const struct timeval *now),
522                      struct timeval now, int *r_r) {
523   int r;
524   
525   if (!(revent & pollflag)) return;
526   if (fds && !(fd<maxfd && FD_ISSET(fd,fds))) return;
527   r= func(ads,fd,&now);
528   if (r) {
529     if (r_r) {
530       *r_r= r;
531     } else {
532       adns__diag(ads,-1,0,"process fd failed after select:"
533                  " %s",strerror(errno));
534       adns_globalsystemfailure(ads);
535     }
536   }
537 }
538
539 void adns__fdevents(adns_state ads,
540                     const struct pollfd *pollfds, int npollfds,
541                     int maxfd, const fd_set *readfds,
542                     const fd_set *writefds, const fd_set *exceptfds,
543                     struct timeval now, int *r_r) {
544   int i, fd, revents;
545
546   for (i=0; i<npollfds; i++) {
547     fd= pollfds[i].fd;
548     if (fd >= maxfd) maxfd= fd+1;
549     revents= pollfds[i].revents;
550 #define EV(pollfl,fds,how)  \
551     fd_event(ads,fd, revents,pollfl, maxfd,fds, adns_process##how,now,r_r)
552     EV( POLLIN,  readfds,   readable    );
553     EV( POLLOUT, writefds,  writeable   );
554     EV( POLLPRI, exceptfds, exceptional );
555 #undef EV
556   }
557 }
558
559 /* Wrappers for select(2). */
560
561 void adns_beforeselect(adns_state ads, int *maxfd_io, fd_set *readfds_io,
562                        fd_set *writefds_io, fd_set *exceptfds_io,
563                        struct timeval **tv_mod, struct timeval *tv_tobuf,
564                        const struct timeval *now) {
565   struct timeval tv_nowbuf;
566   struct pollfd pollfds[MAX_POLLFDS];
567   int i, fd, maxfd, npollfds;
568   
569   adns__consistency(ads,0,cc_entex);
570
571   if (tv_mod && (!*tv_mod || (*tv_mod)->tv_sec || (*tv_mod)->tv_usec)) {
572     /* The caller is planning to sleep. */
573     adns__must_gettimeofday(ads,&now,&tv_nowbuf);
574     if (!now) { inter_immed(tv_mod,tv_tobuf); goto xit; }
575     adns__timeouts(ads, 0, tv_mod,tv_tobuf, *now);
576   }
577
578   npollfds= adns__pollfds(ads,pollfds);
579   maxfd= *maxfd_io;
580   for (i=0; i<npollfds; i++) {
581     fd= pollfds[i].fd;
582     if (fd >= maxfd) maxfd= fd+1;
583     if (pollfds[i].events & POLLIN) FD_SET(fd,readfds_io);
584     if (pollfds[i].events & POLLOUT) FD_SET(fd,writefds_io);
585     if (pollfds[i].events & POLLPRI) FD_SET(fd,exceptfds_io);
586   }
587   *maxfd_io= maxfd;
588
589 xit:
590   adns__consistency(ads,0,cc_entex);
591 }
592
593 void adns_afterselect(adns_state ads, int maxfd, const fd_set *readfds,
594                       const fd_set *writefds, const fd_set *exceptfds,
595                       const struct timeval *now) {
596   struct timeval tv_buf;
597   struct pollfd pollfds[MAX_POLLFDS];
598   int npollfds, i;
599
600   adns__consistency(ads,0,cc_entex);
601   adns__must_gettimeofday(ads,&now,&tv_buf);
602   if (!now) goto xit;
603   adns_processtimeouts(ads,now);
604
605   npollfds= adns__pollfds(ads,pollfds);
606   for (i=0; i<npollfds; i++) pollfds[i].revents= POLLIN|POLLOUT|POLLPRI;
607   adns__fdevents(ads,
608                  pollfds,npollfds,
609                  maxfd,readfds,writefds,exceptfds,
610                  *now, 0);
611 xit:
612   adns__consistency(ads,0,cc_entex);
613 }
614
615 /* General helpful functions. */
616
617 void adns_globalsystemfailure(adns_state ads) {
618   adns__consistency(ads,0,cc_entex);
619
620   while (ads->udpw.head) adns__query_fail(ads->udpw.head, adns_s_systemfail);
621   while (ads->tcpw.head) adns__query_fail(ads->tcpw.head, adns_s_systemfail);
622   
623   switch (ads->tcpstate) {
624   case server_connecting:
625   case server_ok:
626     adns__tcp_broken(ads,0,0);
627     break;
628   case server_disconnected:
629   case server_broken:
630     break;
631   default:
632     abort();
633   }
634   adns__consistency(ads,0,cc_entex);
635 }
636
637 int adns_processany(adns_state ads) {
638   int r, i;
639   struct timeval now;
640   struct pollfd pollfds[MAX_POLLFDS];
641   int npollfds;
642
643   adns__consistency(ads,0,cc_entex);
644
645   r= gettimeofday(&now,0);
646   if (!r) adns_processtimeouts(ads,&now);
647
648   /* We just use adns__fdevents to loop over the fd's trying them.
649    * This seems more sensible than calling select, since we're most
650    * likely just to want to do a read on one or two fds anyway.
651    */
652   npollfds= adns__pollfds(ads,pollfds);
653   for (i=0; i<npollfds; i++) pollfds[i].revents= pollfds[i].events & ~POLLPRI;
654   adns__fdevents(ads,
655                  pollfds,npollfds,
656                  0,0,0,0,
657                  now,&r);
658
659   adns__consistency(ads,0,cc_entex);
660   return 0;
661 }
662
663 void adns__autosys(adns_state ads, struct timeval now) {
664   if (ads->iflags & adns_if_noautosys) return;
665   adns_processany(ads);
666 }
667
668 int adns__internal_check(adns_state ads,
669                          adns_query *query_io,
670                          adns_answer **answer,
671                          void **context_r) {
672   adns_query qu;
673
674   qu= *query_io;
675   if (!qu) {
676     if (ads->output.head) {
677       qu= ads->output.head;
678     } else if (ads->udpw.head || ads->tcpw.head) {
679       return EAGAIN;
680     } else {
681       return ESRCH;
682     }
683   } else {
684     if (qu->id>=0) return EAGAIN;
685   }
686   LIST_UNLINK(ads->output,qu);
687   *answer= qu->answer;
688   if (context_r) *context_r= qu->ctx.ext;
689   *query_io= qu;
690   free(qu);
691   return 0;
692 }
693
694 int adns_wait(adns_state ads,
695               adns_query *query_io,
696               adns_answer **answer_r,
697               void **context_r) {
698   int r, maxfd, rsel;
699   fd_set readfds, writefds, exceptfds;
700   struct timeval tvbuf, *tvp;
701   
702   adns__consistency(ads,*query_io,cc_entex);
703   for (;;) {
704     r= adns__internal_check(ads,query_io,answer_r,context_r);
705     if (r != EAGAIN) break;
706     maxfd= 0; tvp= 0;
707     FD_ZERO(&readfds); FD_ZERO(&writefds); FD_ZERO(&exceptfds);
708     adns_beforeselect(ads,&maxfd,&readfds,&writefds,&exceptfds,&tvp,&tvbuf,0);
709     assert(tvp);
710     rsel= select(maxfd,&readfds,&writefds,&exceptfds,tvp);
711     if (rsel==-1) {
712       if (errno == EINTR) {
713         if (ads->iflags & adns_if_eintr) { r= EINTR; break; }
714       } else {
715         adns__diag(ads,-1,0,"select failed in wait: %s",strerror(errno));
716         adns_globalsystemfailure(ads);
717       }
718     } else {
719       assert(rsel >= 0);
720       adns_afterselect(ads,maxfd,&readfds,&writefds,&exceptfds,0);
721     }
722   }
723   adns__consistency(ads,0,cc_entex);
724   return r;
725 }
726
727 int adns_check(adns_state ads,
728                adns_query *query_io,
729                adns_answer **answer_r,
730                void **context_r) {
731   struct timeval now;
732   int r;
733   
734   adns__consistency(ads,*query_io,cc_entex);
735   r= gettimeofday(&now,0);
736   if (!r) adns__autosys(ads,now);
737
738   r= adns__internal_check(ads,query_io,answer_r,context_r);
739   adns__consistency(ads,0,cc_entex);
740   return r;
741 }