forked from wlangstroth/thttpd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fdwatch.c
834 lines (700 loc) · 19.3 KB
/
fdwatch.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
/* fdwatch.c - fd watcher routines, either select() or poll()
**
** Copyright © 1999,2000 by Jef Poskanzer <[email protected]>.
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
** 1. Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** 2. Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
**
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
** ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
** OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
** SUCH DAMAGE.
*/
#include <sys/types.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <syslog.h>
#include <fcntl.h>
#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#else /* HAVE_POLL_H */
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif /* HAVE_SYS_POLL_H */
#endif /* HAVE_POLL_H */
#ifdef HAVE_SYS_DEVPOLL_H
#include <sys/devpoll.h>
#ifndef HAVE_DEVPOLL
#define HAVE_DEVPOLL
#endif /* !HAVE_DEVPOLL */
#endif /* HAVE_SYS_DEVPOLL_H */
#ifdef HAVE_SYS_EVENT_H
#include <sys/event.h>
#endif /* HAVE_SYS_EVENT_H */
#include "fdwatch.h"
#ifdef HAVE_SELECT
#ifndef FD_SET
#define NFDBITS 32
#define FD_SETSIZE 32
#define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
#define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
#define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
#define FD_ZERO(p) bzero((char*)(p), sizeof(*(p)))
#endif /* !FD_SET */
#endif /* HAVE_SELECT */
static int nfiles;
static long nwatches;
static int* fd_rw;
static void** fd_data;
static int nreturned, next_ridx;
#ifdef HAVE_KQUEUE
#define WHICH "kevent"
#define INIT( nfiles ) kqueue_init( nfiles )
#define ADD_FD( fd, rw ) kqueue_add_fd( fd, rw )
#define DEL_FD( fd ) kqueue_del_fd( fd )
#define WATCH( timeout_msecs ) kqueue_watch( timeout_msecs )
#define CHECK_FD( fd ) kqueue_check_fd( fd )
#define GET_FD( ridx ) kqueue_get_fd( ridx )
static int kqueue_init( int nfiles );
static void kqueue_add_fd( int fd, int rw );
static void kqueue_del_fd( int fd );
static int kqueue_watch( long timeout_msecs );
static int kqueue_check_fd( int fd );
static int kqueue_get_fd( int ridx );
#else /* HAVE_KQUEUE */
# ifdef HAVE_DEVPOLL
#define WHICH "devpoll"
#define INIT( nfiles ) devpoll_init( nfiles )
#define ADD_FD( fd, rw ) devpoll_add_fd( fd, rw )
#define DEL_FD( fd ) devpoll_del_fd( fd )
#define WATCH( timeout_msecs ) devpoll_watch( timeout_msecs )
#define CHECK_FD( fd ) devpoll_check_fd( fd )
#define GET_FD( ridx ) devpoll_get_fd( ridx )
static int devpoll_init( int nfiles );
static void devpoll_add_fd( int fd, int rw );
static void devpoll_del_fd( int fd );
static int devpoll_watch( long timeout_msecs );
static int devpoll_check_fd( int fd );
static int devpoll_get_fd( int ridx );
# else /* HAVE_DEVPOLL */
# ifdef HAVE_POLL
#define WHICH "poll"
#define INIT( nfiles ) poll_init( nfiles )
#define ADD_FD( fd, rw ) poll_add_fd( fd, rw )
#define DEL_FD( fd ) poll_del_fd( fd )
#define WATCH( timeout_msecs ) poll_watch( timeout_msecs )
#define CHECK_FD( fd ) poll_check_fd( fd )
#define GET_FD( ridx ) poll_get_fd( ridx )
static int poll_init( int nfiles );
static void poll_add_fd( int fd, int rw );
static void poll_del_fd( int fd );
static int poll_watch( long timeout_msecs );
static int poll_check_fd( int fd );
static int poll_get_fd( int ridx );
# else /* HAVE_POLL */
# ifdef HAVE_SELECT
#define WHICH "select"
#define INIT( nfiles ) select_init( nfiles )
#define ADD_FD( fd, rw ) select_add_fd( fd, rw )
#define DEL_FD( fd ) select_del_fd( fd )
#define WATCH( timeout_msecs ) select_watch( timeout_msecs )
#define CHECK_FD( fd ) select_check_fd( fd )
#define GET_FD( ridx ) select_get_fd( ridx )
static int select_init( int nfiles );
static void select_add_fd( int fd, int rw );
static void select_del_fd( int fd );
static int select_watch( long timeout_msecs );
static int select_check_fd( int fd );
static int select_get_fd( int ridx );
# endif /* HAVE_SELECT */
# endif /* HAVE_POLL */
# endif /* HAVE_DEVPOLL */
#endif /* HAVE_KQUEUE */
/* Routines. */
/* Figure out how many file descriptors the system allows, and
** initialize the fdwatch data structures. Returns -1 on failure.
*/
int
fdwatch_get_nfiles( void )
{
int i;
#ifdef RLIMIT_NOFILE
struct rlimit rl;
#endif /* RLIMIT_NOFILE */
/* Figure out how many fd's we can have. */
nfiles = getdtablesize();
#ifdef RLIMIT_NOFILE
/* If we have getrlimit(), use that, and attempt to raise the limit. */
if ( getrlimit( RLIMIT_NOFILE, &rl ) == 0 )
{
nfiles = rl.rlim_cur;
if ( rl.rlim_max == RLIM_INFINITY )
rl.rlim_cur = 8192; /* arbitrary */
else if ( rl.rlim_max > rl.rlim_cur )
rl.rlim_cur = rl.rlim_max;
if ( setrlimit( RLIMIT_NOFILE, &rl ) == 0 )
nfiles = rl.rlim_cur;
}
#endif /* RLIMIT_NOFILE */
#if defined(HAVE_SELECT) && ! ( defined(HAVE_POLL) || defined(HAVE_DEVPOLL) || defined(HAVE_KQUEUE) )
/* If we use select(), then we must limit ourselves to FD_SETSIZE. */
nfiles = MIN( nfiles, FD_SETSIZE );
#endif /* HAVE_SELECT && ! ( HAVE_POLL || HAVE_DEVPOLL || HAVE_KQUEUE ) */
/* Initialize the fdwatch data structures. */
nwatches = 0;
fd_rw = (int*) malloc( sizeof(int) * nfiles );
fd_data = (void**) malloc( sizeof(void*) * nfiles );
if ( fd_rw == (int*) 0 || fd_data == (void**) 0 )
return -1;
for ( i = 0; i < nfiles; ++i )
fd_rw[i] = -1;
if ( INIT( nfiles ) == -1 )
return -1;
return nfiles;
}
/* Add a descriptor to the watch list. rw is either FDW_READ or FDW_WRITE. */
void
fdwatch_add_fd( int fd, void* client_data, int rw )
{
if ( fd < 0 || fd >= nfiles || fd_rw[fd] != -1 )
{
syslog( LOG_ERR, "bad fd (%d) passed to fdwatch_add_fd!", fd );
return;
}
ADD_FD( fd, rw );
fd_rw[fd] = rw;
fd_data[fd] = client_data;
}
/* Remove a descriptor from the watch list. */
void
fdwatch_del_fd( int fd )
{
if ( fd < 0 || fd >= nfiles || fd_rw[fd] == -1 )
{
syslog( LOG_ERR, "bad fd (%d) passed to fdwatch_del_fd!", fd );
return;
}
DEL_FD( fd );
fd_rw[fd] = -1;
fd_data[fd] = (void*) 0;
}
/* Do the watch. Return value is the number of descriptors that are ready,
** or 0 if the timeout expired, or -1 on errors. A timeout of INFTIM means
** wait indefinitely.
*/
int
fdwatch( long timeout_msecs )
{
++nwatches;
nreturned = WATCH( timeout_msecs );
next_ridx = 0;
return nreturned;
}
/* Check if a descriptor was ready. */
int
fdwatch_check_fd( int fd )
{
if ( fd < 0 || fd >= nfiles || fd_rw[fd] == -1 )
{
syslog( LOG_ERR, "bad fd (%d) passed to fdwatch_check_fd!", fd );
return 0;
}
return CHECK_FD( fd );
}
void*
fdwatch_get_next_client_data( void )
{
int fd;
if ( next_ridx >= nreturned )
return (void*) -1;
fd = GET_FD( next_ridx++ );
if ( fd < 0 || fd >= nfiles )
return (void*) 0;
return fd_data[fd];
}
/* Generate debugging statistics syslog message. */
void
fdwatch_logstats( long secs )
{
if ( secs > 0 )
syslog(
LOG_INFO, " fdwatch - %ld %ss (%g/sec)",
nwatches, WHICH, (float) nwatches / secs );
nwatches = 0;
}
#ifdef HAVE_KQUEUE
static int maxkqevents;
static struct kevent* kqevents;
static int nkqevents;
static struct kevent* kqrevents;
static int* kqrfdidx;
static int kq;
static int
kqueue_init( int nfiles )
{
kq = kqueue();
if ( kq == -1 )
return -1;
maxkqevents = nfiles * 2;
kqevents = (struct kevent*) malloc( sizeof(struct kevent) * maxkqevents );
kqrevents = (struct kevent*) malloc( sizeof(struct kevent) * nfiles );
kqrfdidx = (int*) malloc( sizeof(int) * nfiles );
if ( kqevents == (struct kevent*) 0 || kqrevents == (struct kevent*) 0 ||
kqrfdidx == (int*) 0 )
return -1;
(void) memset( kqevents, 0, sizeof(struct kevent) * maxkqevents );
(void) memset( kqrfdidx, 0, sizeof(int) * nfiles );
return 0;
}
static void
kqueue_add_fd( int fd, int rw )
{
if ( nkqevents >= maxkqevents )
{
syslog( LOG_ERR, "too many kqevents in kqueue_add_fd!" );
return;
}
kqevents[nkqevents].ident = fd;
kqevents[nkqevents].flags = EV_ADD;
switch ( rw )
{
case FDW_READ: kqevents[nkqevents].filter = EVFILT_READ; break;
case FDW_WRITE: kqevents[nkqevents].filter = EVFILT_WRITE; break;
default: break;
}
++nkqevents;
}
static void
kqueue_del_fd( int fd )
{
if ( nkqevents >= maxkqevents )
{
syslog( LOG_ERR, "too many kqevents in kqueue_del_fd!" );
return;
}
kqevents[nkqevents].ident = fd;
kqevents[nkqevents].flags = EV_DELETE;
switch ( fd_rw[fd] )
{
case FDW_READ: kqevents[nkqevents].filter = EVFILT_READ; break;
case FDW_WRITE: kqevents[nkqevents].filter = EVFILT_WRITE; break;
}
++nkqevents;
}
static int
kqueue_watch( long timeout_msecs )
{
int i, r;
if ( timeout_msecs == INFTIM )
r = kevent(
kq, kqevents, nkqevents, kqrevents, nfiles, (struct timespec*) 0 );
else
{
struct timespec ts;
ts.tv_sec = timeout_msecs / 1000L;
ts.tv_nsec = ( timeout_msecs % 1000L ) * 1000000L;
r = kevent( kq, kqevents, nkqevents, kqrevents, nfiles, &ts );
}
nkqevents = 0;
if ( r == -1 )
return -1;
for ( i = 0; i < r; ++i )
kqrfdidx[kqrevents[i].ident] = i;
return r;
}
static int
kqueue_check_fd( int fd )
{
int ridx = kqrfdidx[fd];
if ( ridx < 0 || ridx >= nfiles )
{
syslog( LOG_ERR, "bad ridx (%d) in kqueue_check_fd!", ridx );
return 0;
}
if ( ridx >= nreturned )
return 0;
if ( kqrevents[ridx].ident != fd )
return 0;
if ( kqrevents[ridx].flags & EV_ERROR )
return 0;
switch ( fd_rw[fd] )
{
case FDW_READ: return kqrevents[ridx].filter == EVFILT_READ;
case FDW_WRITE: return kqrevents[ridx].filter == EVFILT_WRITE;
default: return 0;
}
}
static int
kqueue_get_fd( int ridx )
{
if ( ridx < 0 || ridx >= nfiles )
{
syslog( LOG_ERR, "bad ridx (%d) in kqueue_get_fd!", ridx );
return -1;
}
return kqrevents[ridx].ident;
}
#else /* HAVE_KQUEUE */
# ifdef HAVE_DEVPOLL
static int maxdpevents;
static struct pollfd* dpevents;
static int ndpevents;
static struct pollfd* dprevents;
static int* dp_rfdidx;
static int dp;
static int
devpoll_init( int nfiles )
{
dp = open( "/dev/poll", O_RDWR );
if ( dp == -1 )
return -1;
(void) fcntl( dp, F_SETFD, 1 );
maxdpevents = nfiles * 2;
dpevents = (struct pollfd*) malloc( sizeof(struct pollfd) * maxdpevents );
dprevents = (struct pollfd*) malloc( sizeof(struct pollfd) * nfiles );
dp_rfdidx = (int*) malloc( sizeof(int) * nfiles );
if ( dpevents == (struct pollfd*) 0 || dprevents == (struct pollfd*) 0 ||
dp_rfdidx == (int*) 0 )
return -1;
(void) memset( dp_rfdidx, 0, sizeof(int) * nfiles );
return 0;
}
static void
devpoll_add_fd( int fd, int rw )
{
if ( ndpevents >= maxdpevents )
{
syslog( LOG_ERR, "too many fds in devpoll_add_fd!" );
return;
}
dpevents[ndpevents].fd = fd;
switch ( rw )
{
case FDW_READ: dpevents[ndpevents].events = POLLIN; break;
case FDW_WRITE: dpevents[ndpevents].events = POLLOUT; break;
default: break;
}
++ndpevents;
}
static void
devpoll_del_fd( int fd )
{
if ( ndpevents >= maxdpevents )
{
syslog( LOG_ERR, "too many fds in devpoll_del_fd!" );
return;
}
dpevents[ndpevents].fd = fd;
dpevents[ndpevents].events = POLLREMOVE;
++ndpevents;
}
static int
devpoll_watch( long timeout_msecs )
{
int i, r;
struct dvpoll dvp;
r = sizeof(struct pollfd) * ndpevents;
if ( r > 0 && write( dp, dpevents, r ) != r )
return -1;
ndpevents = 0;
dvp.dp_fds = dprevents;
dvp.dp_nfds = nfiles;
dvp.dp_timeout = (int) timeout_msecs;
r = ioctl( dp, DP_POLL, &dvp );
if ( r == -1 )
return -1;
for ( i = 0; i < r; ++i )
dp_rfdidx[dprevents[i].fd] = i;
return r;
}
static int
devpoll_check_fd( int fd )
{
int ridx = dp_rfdidx[fd];
if ( ridx < 0 || ridx >= nfiles )
{
syslog( LOG_ERR, "bad ridx (%d) in devpoll_check_fd!", ridx );
return 0;
}
if ( ridx >= nreturned )
return 0;
if ( dprevents[ridx].fd != fd )
return 0;
if ( dprevents[ridx].revents & POLLERR )
return 0;
switch ( fd_rw[fd] )
{
case FDW_READ: return dprevents[ridx].revents & ( POLLIN | POLLHUP | POLLNVAL );
case FDW_WRITE: return dprevents[ridx].revents & ( POLLOUT | POLLHUP | POLLNVAL );
default: return 0;
}
}
static int
devpoll_get_fd( int ridx )
{
if ( ridx < 0 || ridx >= nfiles )
{
syslog( LOG_ERR, "bad ridx (%d) in devpoll_get_fd!", ridx );
return -1;
}
return dprevents[ridx].fd;
}
# else /* HAVE_DEVPOLL */
# ifdef HAVE_POLL
static struct pollfd* pollfds;
static int npoll_fds;
static int* poll_fdidx;
static int* poll_rfdidx;
static int
poll_init( int nfiles )
{
int i;
pollfds = (struct pollfd*) malloc( sizeof(struct pollfd) * nfiles );
poll_fdidx = (int*) malloc( sizeof(int) * nfiles );
poll_rfdidx = (int*) malloc( sizeof(int) * nfiles );
if ( pollfds == (struct pollfd*) 0 || poll_fdidx == (int*) 0 ||
poll_rfdidx == (int*) 0 )
return -1;
for ( i = 0; i < nfiles; ++i )
pollfds[i].fd = poll_fdidx[i] = -1;
return 0;
}
static void
poll_add_fd( int fd, int rw )
{
if ( npoll_fds >= nfiles )
{
syslog( LOG_ERR, "too many fds in poll_add_fd!" );
return;
}
pollfds[npoll_fds].fd = fd;
switch ( rw )
{
case FDW_READ: pollfds[npoll_fds].events = POLLIN; break;
case FDW_WRITE: pollfds[npoll_fds].events = POLLOUT; break;
default: break;
}
poll_fdidx[fd] = npoll_fds;
++npoll_fds;
}
static void
poll_del_fd( int fd )
{
int idx = poll_fdidx[fd];
if ( idx < 0 || idx >= nfiles )
{
syslog( LOG_ERR, "bad idx (%d) in poll_del_fd!", idx );
return;
}
--npoll_fds;
pollfds[idx] = pollfds[npoll_fds];
poll_fdidx[pollfds[idx].fd] = idx;
pollfds[npoll_fds].fd = -1;
poll_fdidx[fd] = -1;
}
static int
poll_watch( long timeout_msecs )
{
int r, ridx, i;
r = poll( pollfds, npoll_fds, (int) timeout_msecs );
if ( r <= 0 )
return r;
ridx = 0;
for ( i = 0; i < npoll_fds; ++i )
if ( pollfds[i].revents &
( POLLIN | POLLOUT | POLLERR | POLLHUP | POLLNVAL ) )
{
poll_rfdidx[ridx++] = pollfds[i].fd;
if ( ridx == r )
break;
}
return ridx; /* should be equal to r */
}
static int
poll_check_fd( int fd )
{
int fdidx = poll_fdidx[fd];
if ( fdidx < 0 || fdidx >= nfiles )
{
syslog( LOG_ERR, "bad fdidx (%d) in poll_check_fd!", fdidx );
return 0;
}
if ( pollfds[fdidx].revents & POLLERR )
return 0;
switch ( fd_rw[fd] )
{
case FDW_READ: return pollfds[fdidx].revents & ( POLLIN | POLLHUP | POLLNVAL );
case FDW_WRITE: return pollfds[fdidx].revents & ( POLLOUT | POLLHUP | POLLNVAL );
default: return 0;
}
}
static int
poll_get_fd( int ridx )
{
if ( ridx < 0 || ridx >= nfiles )
{
syslog( LOG_ERR, "bad ridx (%d) in poll_get_fd!", ridx );
return -1;
}
return poll_rfdidx[ridx];
}
# else /* HAVE_POLL */
# ifdef HAVE_SELECT
static fd_set master_rfdset;
static fd_set master_wfdset;
static fd_set working_rfdset;
static fd_set working_wfdset;
static int* select_fds;
static int* select_fdidx;
static int* select_rfdidx;
static int nselect_fds;
static int maxfd;
static int maxfd_changed;
static int
select_init( int nfiles )
{
int i;
FD_ZERO( &master_rfdset );
FD_ZERO( &master_wfdset );
select_fds = (int*) malloc( sizeof(int) * nfiles );
select_fdidx = (int*) malloc( sizeof(int) * nfiles );
select_rfdidx = (int*) malloc( sizeof(int) * nfiles );
if ( select_fds == (int*) 0 || select_fdidx == (int*) 0 ||
select_rfdidx == (int*) 0 )
return -1;
nselect_fds = 0;
maxfd = -1;
maxfd_changed = 0;
for ( i = 0; i < nfiles; ++i )
select_fds[i] = select_fdidx[i] = -1;
return 0;
}
static void
select_add_fd( int fd, int rw )
{
if ( nselect_fds >= nfiles )
{
syslog( LOG_ERR, "too many fds in select_add_fd!" );
return;
}
select_fds[nselect_fds] = fd;
switch ( rw )
{
case FDW_READ: FD_SET( fd, &master_rfdset ); break;
case FDW_WRITE: FD_SET( fd, &master_wfdset ); break;
default: break;
}
if ( fd > maxfd )
maxfd = fd;
select_fdidx[fd] = nselect_fds;
++nselect_fds;
}
static void
select_del_fd( int fd )
{
int idx = select_fdidx[fd];
if ( idx < 0 || idx >= nfiles )
{
syslog( LOG_ERR, "bad idx (%d) in select_del_fd!", idx );
return;
}
--nselect_fds;
select_fds[idx] = select_fds[nselect_fds];
select_fdidx[select_fds[idx]] = idx;
select_fds[nselect_fds] = -1;
select_fdidx[fd] = -1;
FD_CLR( fd, &master_rfdset );
FD_CLR( fd, &master_wfdset );
if ( fd >= maxfd )
maxfd_changed = 1;
}
static int
select_get_maxfd( void )
{
if ( maxfd_changed )
{
int i;
maxfd = -1;
for ( i = 0; i < nselect_fds; ++i )
if ( select_fds[i] > maxfd )
maxfd = select_fds[i];
maxfd_changed = 0;
}
return maxfd;
}
static int
select_watch( long timeout_msecs )
{
int mfd;
int r, idx, ridx;
working_rfdset = master_rfdset;
working_wfdset = master_wfdset;
mfd = select_get_maxfd();
if ( timeout_msecs == INFTIM )
r = select(
mfd + 1, &working_rfdset, &working_wfdset, (fd_set*) 0,
(struct timeval*) 0 );
else
{
struct timeval timeout;
timeout.tv_sec = timeout_msecs / 1000L;
timeout.tv_usec = ( timeout_msecs % 1000L ) * 1000L;
r = select(
mfd + 1, &working_rfdset, &working_wfdset, (fd_set*) 0, &timeout );
}
if ( r <= 0 )
return r;
ridx = 0;
for ( idx = 0; idx < nselect_fds; ++idx )
if ( select_check_fd( select_fds[idx] ) )
{
select_rfdidx[ridx++] = select_fds[idx];
if ( ridx == r )
break;
}
return ridx; /* should be equal to r */
}
static int
select_check_fd( int fd )
{
switch ( fd_rw[fd] )
{
case FDW_READ: return FD_ISSET( fd, &working_rfdset );
case FDW_WRITE: return FD_ISSET( fd, &working_wfdset );
default: return 0;
}
}
static int
select_get_fd( int ridx )
{
if ( ridx < 0 || ridx >= nfiles )
{
syslog( LOG_ERR, "bad ridx (%d) in select_get_fd!", ridx );
return -1;
}
return select_rfdidx[ridx];
}
# endif /* HAVE_SELECT */
# endif /* HAVE_POLL */
# endif /* HAVE_DEVPOLL */
#endif /* HAVE_KQUEUE */