]> git.ozlabs.org Git - ccan/blob - ccan/io/poll.c
e4058766e9f6ed9661d992ed0a603af1b2ae9520
[ccan] / ccan / io / poll.c
1 /* Licensed under LGPLv2.1+ - see LICENSE file for details */
2 #include "io.h"
3 #include "backend.h"
4 #include <assert.h>
5 #include <poll.h>
6 #include <stdlib.h>
7 #include <sys/types.h>
8 #include <sys/socket.h>
9 #include <limits.h>
10 #include <errno.h>
11 #include <ccan/list/list.h>
12 #include <ccan/time/time.h>
13 #include <ccan/timer/timer.h>
14
15 static size_t num_fds = 0, max_fds = 0, num_waiting = 0;
16 static struct pollfd *pollfds = NULL;
17 static struct fd **fds = NULL;
18 static struct io_conn *closing = NULL, *always = NULL;
19
20 static bool add_fd(struct fd *fd, short events)
21 {
22         if (!max_fds) {
23                 assert(num_fds == 0);
24                 pollfds = tal_arr(NULL, struct pollfd, 8);
25                 if (!pollfds)
26                         return false;
27                 fds = tal_arr(pollfds, struct fd *, 8);
28                 if (!fds)
29                         return false;
30                 max_fds = 8;
31         }
32
33         if (num_fds + 1 > max_fds) {
34                 size_t num = max_fds * 2;
35
36                 if (!tal_resize(&pollfds, num))
37                         return false;
38                 if (!tal_resize(&fds, num))
39                         return false;
40                 max_fds = num;
41         }
42
43         pollfds[num_fds].events = events;
44         /* In case it's idle. */
45         if (!events)
46                 pollfds[num_fds].fd = -fd->fd;
47         else
48                 pollfds[num_fds].fd = fd->fd;
49         pollfds[num_fds].revents = 0; /* In case we're iterating now */
50         fds[num_fds] = fd;
51         fd->backend_info = num_fds;
52         num_fds++;
53         if (events)
54                 num_waiting++;
55
56         return true;
57 }
58
59 static void del_fd(struct fd *fd)
60 {
61         size_t n = fd->backend_info;
62
63         assert(n != -1);
64         assert(n < num_fds);
65         if (pollfds[n].events)
66                 num_waiting--;
67         if (n != num_fds - 1) {
68                 /* Move last one over us. */
69                 pollfds[n] = pollfds[num_fds-1];
70                 fds[n] = fds[num_fds-1];
71                 assert(fds[n]->backend_info == num_fds-1);
72                 fds[n]->backend_info = n;
73         } else if (num_fds == 1) {
74                 /* Free everything when no more fds. */
75                 pollfds = tal_free(pollfds);
76                 fds = NULL;
77                 max_fds = 0;
78         }
79         num_fds--;
80         fd->backend_info = -1;
81         close(fd->fd);
82 }
83
84 bool add_listener(struct io_listener *l)
85 {
86         if (!add_fd(&l->fd, POLLIN))
87                 return false;
88         return true;
89 }
90
91 void backend_new_closing(struct io_conn *conn)
92 {
93         /* Already on always list?  Remove it. */
94         if (conn->list) {
95                 struct io_conn **p = &always;
96
97                 while (*p != conn)
98                         p = &(*p)->list;
99
100                 *p = conn->list;
101         }
102
103         conn->list = closing;
104         closing = conn;
105 }
106
107 void backend_new_always(struct io_conn *conn)
108 {
109         /* May already be in always list (other plan), or closing. */
110         if (!conn->list) {
111                 conn->list = always;
112                 always = conn;
113         }
114 }
115
116 void backend_new_plan(struct io_conn *conn)
117 {
118         struct pollfd *pfd = &pollfds[conn->fd.backend_info];
119
120         if (pfd->events)
121                 num_waiting--;
122
123         pfd->events = 0;
124         if (conn->plan[IO_IN].status == IO_POLLING)
125                 pfd->events |= POLLIN;
126         if (conn->plan[IO_OUT].status == IO_POLLING)
127                 pfd->events |= POLLOUT;
128
129         if (pfd->events) {
130                 num_waiting++;
131                 pfd->fd = conn->fd.fd;
132         } else {
133                 pfd->fd = -conn->fd.fd;
134         }
135 }
136
137 void backend_wake(const void *wait)
138 {
139         unsigned int i;
140
141         for (i = 0; i < num_fds; i++) {
142                 struct io_conn *c;
143
144                 /* Ignore listeners */
145                 if (fds[i]->listener)
146                         continue;
147
148                 c = (void *)fds[i];
149                 if (c->plan[IO_IN].status == IO_WAITING
150                     && c->plan[IO_IN].u1.const_vp == wait)
151                         io_do_wakeup(c, &c->plan[IO_IN]);
152
153                 if (c->plan[IO_OUT].status == IO_WAITING
154                     && c->plan[IO_OUT].u1.const_vp == wait)
155                         io_do_wakeup(c, &c->plan[IO_OUT]);
156         }
157 }
158
159 bool add_conn(struct io_conn *c)
160 {
161         return add_fd(&c->fd, 0);
162 }
163
164 static void del_conn(struct io_conn *conn)
165 {
166         del_fd(&conn->fd);
167         if (conn->finish) {
168                 /* Saved by io_close */
169                 errno = conn->plan[IO_IN].u1.s;
170                 conn->finish(conn, conn->finish_arg);
171         }
172         tal_free(conn);
173 }
174
175 void del_listener(struct io_listener *l)
176 {
177         del_fd(&l->fd);
178 }
179
180 static void accept_conn(struct io_listener *l)
181 {
182         int fd = accept(l->fd.fd, NULL, NULL);
183
184         /* FIXME: What to do here? */
185         if (fd < 0)
186                 return;
187
188         io_new_conn(l->ctx, fd, l->init, l->arg);
189 }
190
191 /* It's OK to miss some, as long as we make progress. */
192 static bool close_conns(void)
193 {
194         bool ret = false;
195
196         while (closing) {
197                 struct io_conn *conn = closing;
198
199                 assert(conn->plan[IO_IN].status == IO_CLOSING);
200                 assert(conn->plan[IO_OUT].status == IO_CLOSING);
201
202                 closing = closing->list;
203                 del_conn(conn);
204                 ret = true;
205         }
206         return ret;
207 }
208
209 static bool handle_always(void)
210 {
211         bool ret = false;
212
213         while (always) {
214                 struct io_conn *conn = always;
215
216                 assert(conn->plan[IO_IN].status == IO_ALWAYS
217                        || conn->plan[IO_OUT].status == IO_ALWAYS);
218
219                 /* Remove from list, and mark it so it knows that. */
220                 always = always->list;
221                 conn->list = NULL;
222                 io_do_always(conn);
223                 ret = true;
224         }
225         return ret;
226 }
227
228 /* This is the main loop. */
229 void *io_loop(struct timers *timers, struct list_head *expired)
230 {
231         void *ret;
232
233         /* if timers is NULL, expired must be.  If not, not. */
234         assert(!timers == !expired);
235
236         /* Make sure this is empty if we exit for some other reason. */
237         if (expired)
238                 list_head_init(expired);
239
240         while (!io_loop_return) {
241                 int i, r, ms_timeout = -1;
242
243                 if (close_conns()) {
244                         /* Could have started/finished more. */
245                         continue;
246                 }
247
248                 if (handle_always()) {
249                         /* Could have started/finished more. */
250                         continue;
251                 }
252
253                 /* Everything closed? */
254                 if (num_fds == 0)
255                         break;
256
257                 /* You can't tell them all to go to sleep! */
258                 assert(num_waiting);
259
260                 if (timers) {
261                         struct timeabs now, first;
262
263                         now = time_now();
264
265                         /* Call functions for expired timers. */
266                         timers_expire(timers, now, expired);
267                         if (!list_empty(expired))
268                                 break;
269
270                         /* Now figure out how long to wait for the next one. */
271                         if (timer_earliest(timers, &first)) {
272                                 uint64_t next;
273                                 next = time_to_msec(time_between(first, now));
274                                 if (next < INT_MAX)
275                                         ms_timeout = next;
276                                 else
277                                         ms_timeout = INT_MAX;
278                         }
279                 }
280
281                 r = poll(pollfds, num_fds, ms_timeout);
282                 if (r < 0)
283                         break;
284
285                 for (i = 0; i < num_fds && !io_loop_return; i++) {
286                         struct io_conn *c = (void *)fds[i];
287                         int events = pollfds[i].revents;
288
289                         if (r == 0)
290                                 break;
291
292                         if (fds[i]->listener) {
293                                 if (events & POLLIN) {
294                                         accept_conn((void *)c);
295                                         r--;
296                                 }
297                         } else if (events & (POLLIN|POLLOUT)) {
298                                 r--;
299                                 io_ready(c, events);
300                         } else if (events & (POLLHUP|POLLNVAL|POLLERR)) {
301                                 r--;
302                                 errno = EBADF;
303                                 io_close(c);
304                         }
305                 }
306         }
307
308         close_conns();
309
310         ret = io_loop_return;
311         io_loop_return = NULL;
312
313         return ret;
314 }