chiark / gitweb /
On timeout with adnsresfilter in non-forever mode, resubmit queries.
[adns] / src / event.c
CommitLineData
98db6da3 1/*
2 * event.c
3 * - event loop core
4 * - TCP connection management
5 * - user-visible check/wait and event-loop-related functions
6 */
7/*
a79ac5ba 8 * This file is
9 * Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
10 *
11 * It is part of adns, which is
12 * Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
13 * Copyright (C) 1999 Tony Finch <dot@dotat.at>
98db6da3 14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2, or (at your option)
18 * any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software Foundation,
27 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 */
6f17710a 29
d05cc330 30#include <errno.h>
31#include <stdlib.h>
b6b3ac61 32#include <unistd.h>
d05cc330 33
b6b3ac61 34#include <sys/types.h>
35#include <sys/time.h>
d05cc330 36#include <netdb.h>
29cf9c44 37#include <sys/socket.h>
38#include <netinet/in.h>
d05cc330 39#include <arpa/inet.h>
40
41#include "internal.h"
dfdbb32c 42
74c94831 43/* TCP connection management. */
44
d0a057ac 45static void tcp_close(adns_state ads) {
74c94831 46 int serv;
47
48 serv= ads->tcpserver;
49 close(ads->tcpsocket);
e70d5929 50 ads->tcpsocket= -1;
ab898cf4 51 ads->tcprecv.used= ads->tcprecv_skip= ads->tcpsend.used= 0;
74c94831 52}
6f17710a 53
71324651 54void adns__tcp_broken(adns_state ads, const char *what, const char *why) {
55 int serv;
56
57 assert(ads->tcpstate == server_connecting || ads->tcpstate == server_ok);
96e79df5 58 serv= ads->tcpserver;
d0a057ac 59 if (what) adns__warn(ads,serv,0,"TCP connection failed: %s: %s",what,why);
60
61 tcp_close(ads);
62 ads->tcpstate= server_broken;
63 ads->tcpserver= (serv+1)%ads->nservers;
71324651 64}
65
96e79df5 66static void tcp_connected(adns_state ads, struct timeval now) {
d05cc330 67 adns_query qu, nqu;
68
ae41e040 69 adns__debug(ads,ads->tcpserver,0,"TCP connected");
d05cc330 70 ads->tcpstate= server_ok;
d0a057ac 71 for (qu= ads->tcpw.head; qu && ads->tcpstate == server_ok; qu= nqu) {
96e79df5 72 nqu= qu->next;
d0a057ac 73 assert(qu->state == query_tcpw);
74 adns__querysend_tcp(qu,now);
96e79df5 75 }
76}
77
78void adns__tcp_tryconnect(adns_state ads, struct timeval now) {
71324651 79 int r, fd, tries;
d05cc330 80 struct sockaddr_in addr;
81 struct protoent *proto;
71324651 82
83 for (tries=0; tries<ads->nservers; tries++) {
d0a057ac 84 switch (ads->tcpstate) {
85 case server_connecting:
86 case server_ok:
87 case server_broken:
88 return;
89 case server_disconnected:
90 break;
91 default:
92 abort();
93 }
94
d05cc330 95 assert(!ads->tcpsend.used);
96 assert(!ads->tcprecv.used);
ab898cf4 97 assert(!ads->tcprecv_skip);
71324651 98
99 proto= getprotobyname("tcp");
ae41e040 100 if (!proto) { adns__diag(ads,-1,0,"unable to find protocol no. for TCP !"); return; }
71324651 101 fd= socket(AF_INET,SOCK_STREAM,proto->p_proto);
d05cc330 102 if (fd<0) {
ae41e040 103 adns__diag(ads,-1,0,"cannot create TCP socket: %s",strerror(errno));
d05cc330 104 return;
105 }
106 r= adns__setnonblock(ads,fd);
107 if (r) {
ae41e040 108 adns__diag(ads,-1,0,"cannot make TCP socket nonblocking: %s",strerror(r));
d05cc330 109 close(fd);
110 return;
111 }
71324651 112 memset(&addr,0,sizeof(addr));
113 addr.sin_family= AF_INET;
5c596e4d 114 addr.sin_port= htons(DNS_PORT);
71324651 115 addr.sin_addr= ads->servers[ads->tcpserver].addr;
29cf9c44 116 r= connect(fd,(const struct sockaddr*)&addr,sizeof(addr));
71324651 117 ads->tcpsocket= fd;
118 ads->tcpstate= server_connecting;
d0a057ac 119 if (r==0) { tcp_connected(ads,now); return; }
120 if (errno == EWOULDBLOCK || errno == EINPROGRESS) {
121 ads->tcptimeout= now;
122 timevaladd(&ads->tcptimeout,TCPCONNMS);
123 return;
124 }
96e79df5 125 adns__tcp_broken(ads,"connect",strerror(errno));
d0a057ac 126 ads->tcpstate= server_disconnected;
71324651 127 }
128}
129
74c94831 130/* Timeout handling functions. */
131
132void adns__must_gettimeofday(adns_state ads, const struct timeval **now_io,
133 struct timeval *tv_buf) {
134 const struct timeval *now;
135 int r;
136
137 now= *now_io;
138 if (now) return;
139 r= gettimeofday(tv_buf,0); if (!r) { *now_io= tv_buf; return; }
140 adns__diag(ads,-1,0,"gettimeofday failed: %s",strerror(errno));
141 adns_globalsystemfailure(ads);
142 return;
143}
d05cc330 144
145static void inter_maxto(struct timeval **tv_io, struct timeval *tvbuf,
146 struct timeval maxto) {
147 struct timeval *rbuf;
148
149 if (!tv_io) return;
150 rbuf= *tv_io;
de8b18da 151 if (!rbuf) {
152 *tvbuf= maxto; *tv_io= tvbuf;
153 } else {
154 if (timercmp(rbuf,&maxto,>)) *rbuf= maxto;
155 }
cfdca685 156/*fprintf(stderr,"inter_maxto maxto=%ld.%06ld result=%ld.%06ld\n",
157 maxto.tv_sec,maxto.tv_usec,(**tv_io).tv_sec,(**tv_io).tv_usec);*/
d05cc330 158}
159
160static void inter_maxtoabs(struct timeval **tv_io, struct timeval *tvbuf,
161 struct timeval now, struct timeval maxtime) {
d0a057ac 162 /* tv_io may be 0 */
d05cc330 163 ldiv_t dr;
164
cfdca685 165/*fprintf(stderr,"inter_maxtoabs now=%ld.%06ld maxtime=%ld.%06ld\n",
166 now.tv_sec,now.tv_usec,maxtime.tv_sec,maxtime.tv_usec);*/
d05cc330 167 if (!tv_io) return;
de8b18da 168 maxtime.tv_sec -= (now.tv_sec+2);
169 maxtime.tv_usec -= (now.tv_usec-2000000);
170 dr= ldiv(maxtime.tv_usec,1000000);
d05cc330 171 maxtime.tv_sec += dr.quot;
de8b18da 172 maxtime.tv_usec -= dr.quot*1000000;
173 if (maxtime.tv_sec<0) timerclear(&maxtime);
d05cc330 174 inter_maxto(tv_io,tvbuf,maxtime);
175}
176
d0a057ac 177static void timeouts_queue(adns_state ads, int act,
178 struct timeval **tv_io, struct timeval *tvbuf,
179 struct timeval now, struct query_queue *queue) {
d05cc330 180 adns_query qu, nqu;
d0a057ac 181
182 for (qu= queue->head; qu; qu= nqu) {
d05cc330 183 nqu= qu->next;
7def4935 184 if (!timercmp(&now,&qu->timeout,>)) {
74c94831 185 inter_maxtoabs(tv_io,tvbuf,now,qu->timeout);
186 } else {
a8701ddc 187 if (!act) {
d1278f10 188 tvbuf->tv_sec= 0;
189 tvbuf->tv_usec= 0;
190 *tv_io= tvbuf;
a8701ddc 191 return;
192 }
d0a057ac 193 LIST_UNLINK(*queue,qu);
24d52b13 194 if (qu->state != query_tosend) {
11c8bf9b 195 adns__query_fail(qu,adns_s_timeout);
d05cc330 196 } else {
24d52b13 197 adns__query_send(qu,now);
d05cc330 198 }
d0a057ac 199 nqu= queue->head;
d05cc330 200 }
201 }
d0a057ac 202}
203
204static void tcp_events(adns_state ads, int act,
205 struct timeval **tv_io, struct timeval *tvbuf,
206 struct timeval now) {
207 adns_query qu, nqu;
208
209 for (;;) {
210 switch (ads->tcpstate) {
211 case server_broken:
212 for (qu= ads->tcpw.head; qu; qu= nqu) {
213 nqu= qu->next;
214 assert(qu->state == query_tcpw);
215 if (qu->retries > ads->nservers) {
216 LIST_UNLINK(ads->tcpw,qu);
217 adns__query_fail(qu,adns_s_allservfail);
218 }
219 }
220 ads->tcpstate= server_disconnected;
221 case server_disconnected: /* fall through */
222 if (!ads->tcpw.head) return;
223 adns__tcp_tryconnect(ads,now);
224 break;
225 case server_ok:
226 if (ads->tcpw.head) return;
227 if (!ads->tcptimeout.tv_sec) {
228 assert(!ads->tcptimeout.tv_usec);
229 ads->tcptimeout= now;
230 timevaladd(&ads->tcptimeout,TCPIDLEMS);
231 }
232 case server_connecting: /* fall through */
233 if (!timercmp(&now,&ads->tcptimeout,>)) {
234 inter_maxtoabs(tv_io,tvbuf,now,ads->tcptimeout);
235 return;
236 } {
237 /* TCP timeout has happened */
238 switch (ads->tcpstate) {
239 case server_connecting: /* failed to connect */
240 adns__tcp_broken(ads,"unable to make connection","timed out");
241 break;
242 case server_ok: /* idle timeout */
243 tcp_close(ads);
244 ads->tcpstate= server_disconnected;
245 return;
246 default:
247 abort();
248 }
249 }
250 break;
251 default:
252 abort();
253 }
254 }
255}
256
257void adns__timeouts(adns_state ads, int act,
258 struct timeval **tv_io, struct timeval *tvbuf,
259 struct timeval now) {
260 timeouts_queue(ads,act,tv_io,tvbuf,now, &ads->udpw);
261 timeouts_queue(ads,act,tv_io,tvbuf,now, &ads->tcpw);
262 tcp_events(ads,act,tv_io,tvbuf,now);
263}
de8b18da 264
74c94831 265void adns_firsttimeout(adns_state ads,
266 struct timeval **tv_io, struct timeval *tvbuf,
267 struct timeval now) {
2ac463bf 268 adns__consistency(ads,0,cc_entex);
74c94831 269 adns__timeouts(ads, 0, tv_io,tvbuf, now);
2ac463bf 270 adns__consistency(ads,0,cc_entex);
74c94831 271}
272
273void adns_processtimeouts(adns_state ads, const struct timeval *now) {
274 struct timeval tv_buf;
275
2ac463bf 276 adns__consistency(ads,0,cc_entex);
1389dc72 277 adns__must_gettimeofday(ads,&now,&tv_buf);
278 if (now) adns__timeouts(ads, 1, 0,0, *now);
2ac463bf 279 adns__consistency(ads,0,cc_entex);
74c94831 280}
281
282/* fd handling functions. These are the top-level of the real work of
283 * reception and often transmission.
284 */
285
286int adns__pollfds(adns_state ads, struct pollfd pollfds_buf[MAX_POLLFDS]) {
287 /* Returns the number of entries filled in. Always zeroes revents. */
288
289 assert(MAX_POLLFDS==2);
290
291 pollfds_buf[0].fd= ads->udpsocket;
292 pollfds_buf[0].events= POLLIN;
293 pollfds_buf[0].revents= 0;
d05cc330 294
295 switch (ads->tcpstate) {
296 case server_disconnected:
74c94831 297 return 1;
d05cc330 298 case server_connecting:
74c94831 299 pollfds_buf[1].events= POLLOUT;
d05cc330 300 break;
301 case server_ok:
74c94831 302 pollfds_buf[1].events= ads->tcpsend.used ? POLLIN|POLLOUT|POLLPRI : POLLIN|POLLPRI;
f2ad23ee 303 break;
d05cc330 304 default:
305 abort();
306 }
74c94831 307 pollfds_buf[1].fd= ads->tcpsocket;
74c94831 308 return 2;
d05cc330 309}
310
74c94831 311int adns_processreadable(adns_state ads, int fd, const struct timeval *now) {
ab898cf4 312 int want, dgramlen, r, udpaddrlen, serv, old_skip;
5c596e4d 313 byte udpbuf[DNS_MAXUDP];
dfdbb32c 314 struct sockaddr_in udpaddr;
74c94831 315
2ac463bf 316 adns__consistency(ads,0,cc_entex);
1389dc72 317
96e79df5 318 switch (ads->tcpstate) {
319 case server_disconnected:
96e79df5 320 case server_connecting:
96e79df5 321 break;
322 case server_ok:
74c94831 323 if (fd != ads->tcpsocket) break;
ab898cf4 324 assert(!ads->tcprecv_skip);
74c94831 325 for (;;) {
ab898cf4 326 if (ads->tcprecv.used >= ads->tcprecv_skip+2) {
327 dgramlen= ((ads->tcprecv.buf[ads->tcprecv_skip]<<8) |
328 ads->tcprecv.buf[ads->tcprecv_skip+1]);
329 if (ads->tcprecv.used >= ads->tcprecv_skip+2+dgramlen) {
330 old_skip= ads->tcprecv_skip;
331 ads->tcprecv_skip += 2+dgramlen;
332 adns__procdgram(ads, ads->tcprecv.buf+old_skip+2,
333 dgramlen, ads->tcpserver, 1,*now);
334 continue;
6f17710a 335 } else {
ab898cf4 336 want= 2+dgramlen;
6f17710a 337 }
ab898cf4 338 } else {
339 want= 2;
6f17710a 340 }
ab898cf4 341 ads->tcprecv.used -= ads->tcprecv_skip;
342 memmove(ads->tcprecv.buf,ads->tcprecv.buf+ads->tcprecv_skip,ads->tcprecv.used);
343 ads->tcprecv_skip= 0;
1389dc72 344 if (!adns__vbuf_ensure(&ads->tcprecv,want)) { r= ENOMEM; goto xit; }
74c94831 345 assert(ads->tcprecv.used <= ads->tcprecv.avail);
346 if (ads->tcprecv.used == ads->tcprecv.avail) continue;
347 r= read(ads->tcpsocket,
348 ads->tcprecv.buf+ads->tcprecv.used,
349 ads->tcprecv.avail-ads->tcprecv.used);
350 if (r>0) {
351 ads->tcprecv.used+= r;
352 } else {
353 if (r) {
1389dc72 354 if (errno==EAGAIN || errno==EWOULDBLOCK) { r= 0; goto xit; }
74c94831 355 if (errno==EINTR) continue;
1389dc72 356 if (errno_resources(errno)) { r= errno; goto xit; }
6f17710a 357 }
74c94831 358 adns__tcp_broken(ads,"read",r?strerror(errno):"closed");
1389dc72 359 r= 0; goto xit;
6f17710a 360 }
74c94831 361 } /* never reached */
96e79df5 362 default:
363 abort();
6f17710a 364 }
74c94831 365 if (fd == ads->udpsocket) {
dfdbb32c 366 for (;;) {
367 udpaddrlen= sizeof(udpaddr);
29cf9c44 368 r= recvfrom(ads->udpsocket,udpbuf,sizeof(udpbuf),0,
369 (struct sockaddr*)&udpaddr,&udpaddrlen);
dfdbb32c 370 if (r<0) {
1389dc72 371 if (errno == EAGAIN || errno == EWOULDBLOCK) { r= 0; goto xit; }
74c94831 372 if (errno == EINTR) continue;
1389dc72 373 if (errno_resources(errno)) { r= errno; goto xit; }
74c94831 374 adns__warn(ads,-1,0,"datagram receive error: %s",strerror(errno));
1389dc72 375 r= 0; goto xit;
dfdbb32c 376 }
377 if (udpaddrlen != sizeof(udpaddr)) {
ae41e040 378 adns__diag(ads,-1,0,"datagram received with wrong address length %d"
379 " (expected %d)", udpaddrlen,sizeof(udpaddr));
dfdbb32c 380 continue;
381 }
382 if (udpaddr.sin_family != AF_INET) {
ae41e040 383 adns__diag(ads,-1,0,"datagram received with wrong protocol family"
d05cc330 384 " %u (expected %u)",udpaddr.sin_family,AF_INET);
dfdbb32c 385 continue;
386 }
5c596e4d 387 if (ntohs(udpaddr.sin_port) != DNS_PORT) {
ae41e040 388 adns__diag(ads,-1,0,"datagram received from wrong port %u (expected %u)",
5c596e4d 389 ntohs(udpaddr.sin_port),DNS_PORT);
dfdbb32c 390 continue;
391 }
392 for (serv= 0;
393 serv < ads->nservers &&
394 ads->servers[serv].addr.s_addr != udpaddr.sin_addr.s_addr;
395 serv++);
396 if (serv >= ads->nservers) {
ae41e040 397 adns__warn(ads,-1,0,"datagram received from unknown nameserver %s",
d05cc330 398 inet_ntoa(udpaddr.sin_addr));
dfdbb32c 399 continue;
400 }
c84b7355 401 adns__procdgram(ads,udpbuf,r,serv,0,*now);
6f17710a 402 }
dfdbb32c 403 }
1389dc72 404 r= 0;
405xit:
2ac463bf 406 adns__consistency(ads,0,cc_entex);
1389dc72 407 return r;
6f17710a 408}
6f17710a 409
74c94831 410int adns_processwriteable(adns_state ads, int fd, const struct timeval *now) {
411 int r;
412
2ac463bf 413 adns__consistency(ads,0,cc_entex);
1389dc72 414
74c94831 415 switch (ads->tcpstate) {
416 case server_disconnected:
417 break;
418 case server_connecting:
419 if (fd != ads->tcpsocket) break;
420 assert(ads->tcprecv.used==0);
ab898cf4 421 assert(ads->tcprecv_skip==0);
74c94831 422 for (;;) {
1389dc72 423 if (!adns__vbuf_ensure(&ads->tcprecv,1)) { r= ENOMEM; goto xit; }
74c94831 424 r= read(ads->tcpsocket,&ads->tcprecv.buf,1);
425 if (r==0 || (r<0 && (errno==EAGAIN || errno==EWOULDBLOCK))) {
426 tcp_connected(ads,*now);
1389dc72 427 r= 0; goto xit;
74c94831 428 }
429 if (r>0) {
430 adns__tcp_broken(ads,"connect/read","sent data before first request");
1389dc72 431 r= 0; goto xit;
74c94831 432 }
433 if (errno==EINTR) continue;
1389dc72 434 if (errno_resources(errno)) { r= errno; goto xit; }
74c94831 435 adns__tcp_broken(ads,"connect/read",strerror(errno));
1389dc72 436 r= 0; goto xit;
74c94831 437 } /* not reached */
438 case server_ok:
439 if (!(ads->tcpsend.used && fd == ads->tcpsocket)) break;
440 for (;;) {
441 adns__sigpipe_protect(ads);
442 r= write(ads->tcpsocket,ads->tcpsend.buf,ads->tcpsend.used);
443 adns__sigpipe_unprotect(ads);
444 if (r<0) {
445 if (errno==EINTR) continue;
1389dc72 446 if (errno==EAGAIN || errno==EWOULDBLOCK) { r= 0; goto xit; }
447 if (errno_resources(errno)) { r= errno; goto xit; }
74c94831 448 adns__tcp_broken(ads,"write",strerror(errno));
1389dc72 449 r= 0; goto xit;
74c94831 450 } else if (r>0) {
451 ads->tcpsend.used -= r;
452 memmove(ads->tcpsend.buf,ads->tcpsend.buf+r,ads->tcpsend.used);
453 }
454 } /* not reached */
455 default:
456 abort();
457 }
1389dc72 458 r= 0;
459xit:
2ac463bf 460 adns__consistency(ads,0,cc_entex);
1389dc72 461 return r;
74c94831 462}
463
464int adns_processexceptional(adns_state ads, int fd, const struct timeval *now) {
2ac463bf 465 adns__consistency(ads,0,cc_entex);
74c94831 466 switch (ads->tcpstate) {
467 case server_disconnected:
468 break;
469 case server_connecting:
470 case server_ok:
471 if (fd != ads->tcpsocket) break;
472 adns__tcp_broken(ads,"poll/select","exceptional condition detected");
1389dc72 473 break;
74c94831 474 default:
475 abort();
476 }
2ac463bf 477 adns__consistency(ads,0,cc_entex);
74c94831 478 return 0;
479}
480
481static void fd_event(adns_state ads, int fd,
482 int revent, int pollflag,
483 int maxfd, const fd_set *fds,
484 int (*func)(adns_state, int fd, const struct timeval *now),
485 struct timeval now, int *r_r) {
6f17710a 486 int r;
74c94831 487
488 if (!(revent & pollflag)) return;
489 if (fds && !(fd<maxfd && FD_ISSET(fd,fds))) return;
490 r= func(ads,fd,&now);
491 if (r) {
492 if (r_r) {
493 *r_r= r;
494 } else {
495 adns__diag(ads,-1,0,"process fd failed after select: %s",strerror(errno));
496 adns_globalsystemfailure(ads);
497 }
498 }
499}
500
501void adns__fdevents(adns_state ads,
502 const struct pollfd *pollfds, int npollfds,
503 int maxfd, const fd_set *readfds,
504 const fd_set *writefds, const fd_set *exceptfds,
505 struct timeval now, int *r_r) {
506 int i, fd, revents;
507
508 for (i=0; i<npollfds; i++) {
509 fd= pollfds[i].fd;
510 if (fd >= maxfd) maxfd= fd+1;
511 revents= pollfds[i].revents;
512 fd_event(ads,fd, revents,POLLIN, maxfd,readfds, adns_processreadable,now,r_r);
513 fd_event(ads,fd, revents,POLLOUT, maxfd,writefds, adns_processwriteable,now,r_r);
514 fd_event(ads,fd, revents,POLLPRI, maxfd,exceptfds, adns_processexceptional,now,r_r);
515 }
516}
dfdbb32c 517
74c94831 518/* Wrappers for select(2). */
519
520void adns_beforeselect(adns_state ads, int *maxfd_io, fd_set *readfds_io,
521 fd_set *writefds_io, fd_set *exceptfds_io,
522 struct timeval **tv_mod, struct timeval *tv_tobuf,
523 const struct timeval *now) {
524 struct timeval tv_nowbuf;
525 struct pollfd pollfds[MAX_POLLFDS];
526 int i, fd, maxfd, npollfds;
527
2ac463bf 528 adns__consistency(ads,0,cc_entex);
1389dc72 529
74c94831 530 if (tv_mod && (!*tv_mod || (*tv_mod)->tv_sec || (*tv_mod)->tv_usec)) {
531 /* The caller is planning to sleep. */
532 adns__must_gettimeofday(ads,&now,&tv_nowbuf);
1389dc72 533 if (!now) goto xit;
74c94831 534 adns__timeouts(ads, 1, tv_mod,tv_tobuf, *now);
535 }
536
537 npollfds= adns__pollfds(ads,pollfds);
538 maxfd= *maxfd_io;
539 for (i=0; i<npollfds; i++) {
540 fd= pollfds[i].fd;
541 if (fd >= maxfd) maxfd= fd+1;
542 if (pollfds[i].events & POLLIN) FD_SET(fd,readfds_io);
543 if (pollfds[i].events & POLLOUT) FD_SET(fd,writefds_io);
544 if (pollfds[i].events & POLLPRI) FD_SET(fd,exceptfds_io);
545 }
546 *maxfd_io= maxfd;
1389dc72 547
548xit:
2ac463bf 549 adns__consistency(ads,0,cc_entex);
74c94831 550}
551
552void adns_afterselect(adns_state ads, int maxfd, const fd_set *readfds,
553 const fd_set *writefds, const fd_set *exceptfds,
554 const struct timeval *now) {
4f973eb5 555 struct timeval tv_buf;
74c94831 556 struct pollfd pollfds[MAX_POLLFDS];
4f973eb5 557 int npollfds, i;
74c94831 558
2ac463bf 559 adns__consistency(ads,0,cc_entex);
4f973eb5 560 adns__must_gettimeofday(ads,&now,&tv_buf);
1389dc72 561 if (!now) goto xit;
74c94831 562 adns_processtimeouts(ads,now);
563
564 npollfds= adns__pollfds(ads,pollfds);
4f973eb5 565 for (i=0; i<npollfds; i++) pollfds[i].revents= POLLIN|POLLOUT|POLLPRI;
74c94831 566 adns__fdevents(ads,
567 pollfds,npollfds,
568 maxfd,readfds,writefds,exceptfds,
569 *now, 0);
1389dc72 570xit:
2ac463bf 571 adns__consistency(ads,0,cc_entex);
74c94831 572}
573
574/* General helpful functions. */
575
576void adns_globalsystemfailure(adns_state ads) {
2ac463bf 577 adns__consistency(ads,0,cc_entex);
1389dc72 578
d0a057ac 579 while (ads->udpw.head) adns__query_fail(ads->udpw.head, adns_s_systemfail);
580 while (ads->tcpw.head) adns__query_fail(ads->tcpw.head, adns_s_systemfail);
74c94831 581
582 switch (ads->tcpstate) {
583 case server_connecting:
584 case server_ok:
d0a057ac 585 adns__tcp_broken(ads,0,0);
74c94831 586 break;
587 case server_disconnected:
588 break;
589 default:
590 abort();
591 }
2ac463bf 592 adns__consistency(ads,0,cc_entex);
6f17710a 593}
594
74c94831 595int adns_processany(adns_state ads) {
634186ec 596 int r, i;
74c94831 597 struct timeval now;
598 struct pollfd pollfds[MAX_POLLFDS];
599 int npollfds;
600
2ac463bf 601 adns__consistency(ads,0,cc_entex);
1389dc72 602
74c94831 603 r= gettimeofday(&now,0);
604 if (!r) adns_processtimeouts(ads,&now);
605
82ab0d30 606 /* We just use adns__fdevents to loop over the fd's trying them.
607 * This seems more sensible than calling select, since we're most
608 * likely just to want to do a read on one or two fds anyway.
609 */
74c94831 610 npollfds= adns__pollfds(ads,pollfds);
634186ec 611 for (i=0; i<npollfds; i++) pollfds[i].revents= pollfds[i].events;
74c94831 612 adns__fdevents(ads,
613 pollfds,npollfds,
614 0,0,0,0,
615 now,&r);
1389dc72 616
2ac463bf 617 adns__consistency(ads,0,cc_entex);
d16697d9 618 return 0;
74c94831 619}
96e79df5 620
d05cc330 621void adns__autosys(adns_state ads, struct timeval now) {
96e79df5 622 if (ads->iflags & adns_if_noautosys) return;
74c94831 623 adns_processany(ads);
96e79df5 624}
625
ef20fccf 626int adns__internal_check(adns_state ads,
627 adns_query *query_io,
628 adns_answer **answer,
629 void **context_r) {
6f17710a 630 adns_query qu;
631
632 qu= *query_io;
633 if (!qu) {
5773be3c 634 if (ads->output.head) {
635 qu= ads->output.head;
d0a057ac 636 } else if (ads->udpw.head || ads->tcpw.head) {
5773be3c 637 return EAGAIN;
638 } else {
639 return ESRCH;
640 }
6f17710a 641 } else {
c6f9dc7b 642 if (qu->id>=0) return EAGAIN;
6f17710a 643 }
644 LIST_UNLINK(ads->output,qu);
965c9782 645 *answer= qu->answer;
cd1bde2f 646 if (context_r) *context_r= qu->ctx.ext;
8f2aa812 647 *query_io= qu;
6f17710a 648 free(qu);
649 return 0;
650}
651
652int adns_wait(adns_state ads,
653 adns_query *query_io,
654 adns_answer **answer_r,
655 void **context_r) {
74c94831 656 int r, maxfd, rsel;
6f17710a 657 fd_set readfds, writefds, exceptfds;
658 struct timeval tvbuf, *tvp;
659
2ac463bf 660 adns__consistency(ads,*query_io,cc_entex);
6f17710a 661 for (;;) {
ef20fccf 662 r= adns__internal_check(ads,query_io,answer_r,context_r);
c6f9dc7b 663 if (r != EAGAIN) break;
6f17710a 664 maxfd= 0; tvp= 0;
dfdbb32c 665 FD_ZERO(&readfds); FD_ZERO(&writefds); FD_ZERO(&exceptfds);
74c94831 666 adns_beforeselect(ads,&maxfd,&readfds,&writefds,&exceptfds,&tvp,&tvbuf,0);
6f17710a 667 rsel= select(maxfd,&readfds,&writefds,&exceptfds,tvp);
f318f883 668 if (rsel==-1) {
74c94831 669 if (errno == EINTR) {
1389dc72 670 if (ads->iflags & adns_if_eintr) { r= EINTR; break; }
74c94831 671 } else {
672 adns__diag(ads,-1,0,"select failed in wait: %s",strerror(errno));
673 adns_globalsystemfailure(ads);
674 }
675 } else {
676 assert(rsel >= 0);
677 adns_afterselect(ads,maxfd,&readfds,&writefds,&exceptfds,0);
f318f883 678 }
6f17710a 679 }
2ac463bf 680 adns__consistency(ads,0,cc_entex);
1389dc72 681 return r;
6f17710a 682}
683
684int adns_check(adns_state ads,
685 adns_query *query_io,
686 adns_answer **answer_r,
687 void **context_r) {
d05cc330 688 struct timeval now;
689 int r;
690
2ac463bf 691 adns__consistency(ads,*query_io,cc_entex);
74c94831 692 r= gettimeofday(&now,0);
693 if (!r) adns__autosys(ads,now);
1389dc72 694
ef20fccf 695 r= adns__internal_check(ads,query_io,answer_r,context_r);
2ac463bf 696 adns__consistency(ads,0,cc_entex);
1389dc72 697 return r;
6f17710a 698}