summaryrefslogtreecommitdiff
path: root/usr.sbin/dhcpd
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2005-01-31 18:27:39 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2005-01-31 18:27:39 +0000
commit29f38f656947b7ba2945a774700488b989b62931 (patch)
tree61fc3c21507522622738e9d0c203b72bdb2bc84c /usr.sbin/dhcpd
parenta3b0efe0cf4c63b069838fca20b80a3f92663520 (diff)
Don't malloc fds each time, just realloc() as needed.
There's no need to clear revents -- poll() does that for us. Move setting of cur_time to the top of the loop for better accuracy. When poll returns 0, don't check revents since we know none were set.
Diffstat (limited to 'usr.sbin/dhcpd')
-rw-r--r--usr.sbin/dhcpd/dispatch.c60
1 files changed, 26 insertions, 34 deletions
diff --git a/usr.sbin/dhcpd/dispatch.c b/usr.sbin/dhcpd/dispatch.c
index ca70682a9d7..152540093cb 100644
--- a/usr.sbin/dhcpd/dispatch.c
+++ b/usr.sbin/dhcpd/dispatch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dispatch.c,v 1.15 2004/10/31 10:43:38 canacar Exp $ */
+/* $OpenBSD: dispatch.c,v 1.16 2005/01/31 18:27:38 millert Exp $ */
/*
* Copyright (c) 1995, 1996, 1997, 1998, 1999
@@ -279,29 +279,32 @@ discover_interfaces(int state)
void
dispatch(void)
{
- int count, i, nfds = 0, to_msec;
+ int nfds, i, to_msec;
struct protocol *l;
- struct pollfd *fds;
+ static struct pollfd *fds;
+ static int nfds_max;
time_t howlong;
- for (l = protocols; l; l = l->next)
- ++nfds;
- fds = (struct pollfd *)malloc((nfds) * sizeof (struct pollfd));
- if (fds == NULL)
- error("Can't allocate poll structures.");
+ for (nfds = 0, l = protocols; l; l = l->next)
+ nfds++;
+ if (nfds > nfds_max) {
+ fds = realloc(fds, nfds * sizeof(struct pollfd));
+ if (fds == NULL)
+ error("Can't allocate poll structures.");
+ nfds_max = nfds;
+ }
- do {
+ for (;;) {
/*
* Call any expired timeouts, and then if there's
- * still a timeout registered, time out the select
+ * still a timeout registered, time out the poll
* call then.
*/
+ time(&cur_time);
another:
if (timeouts) {
- struct timeout *t;
-
if (timeouts->when <= cur_time) {
- t = timeouts;
+ struct timeout *t = timeouts;
timeouts = timeouts->next;
(*(t->func))(t->what);
t->next = free_timeouts;
@@ -323,43 +326,32 @@ another:
to_msec = -1;
/* Set up the descriptors to be polled. */
- i = 0;
-
- for (l = protocols; l; l = l->next) {
+ for (i = 0, l = protocols; l; l = l->next) {
struct interface_info *ip = l->local;
if (ip && (l->handler != got_one || !ip->dead)) {
fds[i].fd = l->fd;
fds[i].events = POLLIN;
- fds[i].revents = 0;
++i;
}
}
-
if (i == 0)
error("No live interfaces to poll on - exiting.");
- /* Wait for a packet or a timeout... XXX */
- count = poll(fds, nfds, to_msec);
-
- /* Not likely to be transitory... */
- if (count == -1) {
- if (errno == EAGAIN || errno == EINTR) {
- time(&cur_time);
- continue;
- } else
+ /* Wait for a packet or a timeout... */
+ switch (poll(fds, nfds, to_msec)) {
+ case -1:
+ if (errno != EAGAIN && errno != EINTR)
error("poll: %m");
+ /* FALLTHROUGH */
+ case 0:
+ continue; /* no packets */
}
- /* Get the current time... */
- time(&cur_time);
-
- i = 0;
- for (l = protocols; l; l = l->next) {
+ for (i = 0, l = protocols; l; l = l->next) {
struct interface_info *ip = l->local;
if ((fds[i].revents & (POLLIN | POLLHUP))) {
- fds[i].revents = 0;
if (ip && (l->handler != got_one ||
!ip->dead))
(*(l->handler))(l);
@@ -369,7 +361,7 @@ another:
++i;
}
interfaces_invalidated = 0;
- } while (1);
+ }
}