a199275f1d3fa2c87196a53dc006421de5623902
[srvx.git] / src / ioset.c
1 /* ioset.h - srvx event loop
2  * Copyright 2002-2004, 2006 srvx Development Team
3  *
4  * This file is part of srvx.
5  *
6  * srvx is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with srvx; if not, write to the Free Software Foundation,
18  * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
19  */
20
21 #include "ioset-impl.h"
22 #include "log.h"
23 #include "timeq.h"
24 #include "saxdb.h"
25 #include "conf.h"
26
27 #ifdef HAVE_FCNTL_H
28 #include <fcntl.h>
29 #endif
30 #ifdef HAVE_SYS_SOCKET_H
31 #include <sys/socket.h>
32 #endif
33
34 #define IS_EOL(CH) ((CH) == '\n')
35
36 extern int uplink_connect(void);
37 int clock_skew;
38 int do_write_dbs;
39 int do_reopen;
40 static struct io_engine *engine;
41 static struct io_fd *active_fd;
42
43 static void
44 ioq_init(struct ioq *ioq, int size) {
45     ioq->buf = malloc(size);
46     ioq->get = ioq->put = 0;
47     ioq->size = size;
48 }
49
50 static unsigned int
51 ioq_put_avail(const struct ioq *ioq) {
52     /* Subtract 1 from ioq->get to be sure we don't fill the buffer
53      * and make it look empty even when there's data in it. */
54     if (ioq->put < ioq->get)
55         return ioq->get - ioq->put - 1;
56     else if (ioq->get == 0)
57         return ioq->size - ioq->put - 1;
58     else
59         return ioq->size - ioq->put;
60 }
61
62 static unsigned int
63 ioq_get_avail(const struct ioq *ioq) {
64     return ((ioq->put < ioq->get) ? ioq->size : ioq->put) - ioq->get;
65 }
66
67 static unsigned int
68 ioq_used(const struct ioq *ioq) {
69     return ((ioq->put < ioq->get) ? ioq->size : 0) + ioq->put - ioq->get;
70 }
71
72 static unsigned int
73 ioq_grow(struct ioq *ioq) {
74     int new_size = ioq->size << 1;
75     char *new_buf = malloc(new_size);
76     int get_avail = ioq_get_avail(ioq);
77     memcpy(new_buf, ioq->buf + ioq->get, get_avail);
78     if (ioq->put < ioq->get)
79         memcpy(new_buf + get_avail, ioq->buf, ioq->put);
80     free(ioq->buf);
81     ioq->put = ioq_used(ioq);
82     ioq->get = 0;
83     ioq->buf = new_buf;
84     ioq->size = new_size;
85     return new_size - ioq->put;
86 }
87
88 extern struct io_engine io_engine_kqueue;
89 extern struct io_engine io_engine_epoll;
90 extern struct io_engine io_engine_win32;
91 extern struct io_engine io_engine_select;
92
93 void
94 ioset_init(void)
95 {
96     if (engine) /* someone beat us to it */
97         return;
98
99 #if WITH_IOSET_KQUEUE
100     if (!engine && io_engine_kqueue.init())
101         engine = &io_engine_kqueue;
102 #endif
103
104 #if WITH_IOSET_EPOLL
105     if (!engine && io_engine_epoll.init())
106         engine = &io_engine_epoll;
107 #endif
108
109 #if WITH_IOSET_WIN32
110     if (!engine && io_engine_win32.init())
111         engine = &io_engine_win32;
112 #endif
113
114     if (engine) {
115         /* we found one that works */
116     } else if (io_engine_select.init())
117         engine = &io_engine_select;
118     else
119         log_module(MAIN_LOG, LOG_FATAL, "No usable I/O engine found.");
120     log_module(MAIN_LOG, LOG_DEBUG, "Using %s I/O engine.", engine->name);
121 }
122
123 void
124 ioset_cleanup(void) {
125     engine->cleanup();
126 }
127
128 struct io_fd *
129 ioset_add(int fd) {
130     struct io_fd *res;
131     int flags;
132
133     if (fd < 0) {
134         log_module(MAIN_LOG, LOG_ERROR, "Somebody called ioset_add(%d) on a negative fd!", fd);
135         return 0;
136     }
137     if (!engine)
138         ioset_init();
139     res = calloc(1, sizeof(*res));
140     if (!res)
141         return 0;
142     res->fd = fd;
143     ioq_init(&res->send, 1024);
144     ioq_init(&res->recv, 1024);
145     flags = fcntl(fd, F_GETFL);
146     fcntl(fd, F_SETFL, flags|O_NONBLOCK);
147     flags = fcntl(fd, F_GETFD);
148     fcntl(fd, F_SETFD, flags|FD_CLOEXEC);
149     engine->add(res);
150     return res;
151 }
152
153 struct io_fd *ioset_listen(struct sockaddr *local, unsigned int sa_size, void *data, void (*accept_cb)(struct io_fd *listener, struct io_fd *new_connect))
154 {
155     struct io_fd *io_fd;
156     unsigned int opt;
157     int res;
158     int fd;
159
160     fd = socket(local ? local->sa_family : PF_INET, SOCK_STREAM, 0);
161     if (fd < 0) {
162         log_module(MAIN_LOG, LOG_ERROR, "Unable to create listening socket: %s", strerror(errno));
163         return NULL;
164     }
165
166     if (local && sa_size) {
167         res = bind(fd, local, sa_size);
168         if (res < 0) {
169             log_module(MAIN_LOG, LOG_ERROR, "Unable to bind listening socket %d: %s", fd, strerror(errno));
170             close(fd);
171             return NULL;
172         }
173
174         opt = 1;
175         res = setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char*)&opt, sizeof(opt));
176         if (res < 0) {
177             log_module(MAIN_LOG, LOG_WARNING, "Unable to mark listener address as re-usable: %s", strerror(errno));
178         }
179     }
180
181     res = listen(fd, 1);
182     if (res < 0) {
183         log_module(MAIN_LOG, LOG_ERROR, "Unable to listen on socket %d: %s", fd, strerror(errno));
184         close(fd);
185         return NULL;
186     }
187
188     io_fd = ioset_add(fd);
189     if (!io_fd) {
190         close(fd);
191         return NULL;
192     }
193     io_fd->state = IO_LISTENING;
194     io_fd->data = data;
195     io_fd->accept_cb = accept_cb;
196     engine->update(io_fd);
197     return io_fd;
198 }
199
200 struct io_fd *
201 ioset_connect(struct sockaddr *local, unsigned int sa_size, const char *peer, unsigned int port, int blocking, void *data, void (*connect_cb)(struct io_fd *fd, int error)) {
202     struct addrinfo hints;
203     struct addrinfo *ai;
204     struct io_fd *io_fd;
205     struct io_fd *old_active;
206     int res;
207     int fd;
208     char portnum[10];
209
210     memset(&hints, 0, sizeof(hints));
211     hints.ai_family = local ? local->sa_family : 0;
212     hints.ai_socktype = SOCK_STREAM;
213     snprintf(portnum, sizeof(portnum), "%u", port);
214     if (getaddrinfo(peer, portnum, &hints, &ai)) {
215         log_module(MAIN_LOG, LOG_ERROR, "getaddrinfo(%s, %s) failed.", peer, portnum);
216         return NULL;
217     }
218
219     if (local) {
220         if ((fd = socket(local->sa_family, SOCK_STREAM, 0)) < 0) {
221             log_module(MAIN_LOG, LOG_ERROR, "socket() for %s returned errno %d (%s)", peer, errno, strerror(errno));
222             freeaddrinfo(ai);
223             return NULL;
224         }
225         if (bind(fd, local, sa_size) < 0) {
226             log_module(MAIN_LOG, LOG_ERROR, "bind() of socket for %s (fd %d) returned errno %d (%s).  Will let operating system choose.", peer, fd, errno, strerror(errno));
227         }
228     } else {
229         if ((fd = socket(PF_INET, SOCK_STREAM, 0)) < 0) {
230             log_module(MAIN_LOG, LOG_ERROR, "socket() for %s returned errno %d (%s).", peer, errno, strerror(errno));
231             freeaddrinfo(ai);
232             return NULL;
233         }
234     }
235
236     if (blocking) {
237         res = connect(fd, ai->ai_addr, ai->ai_addrlen);
238         io_fd = ioset_add(fd);
239     } else {
240         io_fd = ioset_add(fd);
241         res = connect(fd, ai->ai_addr, ai->ai_addrlen);
242     }
243     freeaddrinfo(ai);
244     if (!io_fd) {
245         close(fd);
246         return NULL;
247     }
248     io_fd->state = IO_CONNECTING;
249     io_fd->data = data;
250     io_fd->connect_cb = connect_cb;
251     if (res < 0) {
252         switch (errno) {
253         case EINPROGRESS: /* only if !blocking */
254             engine->update(io_fd);
255             return io_fd;
256         default:
257             log_module(MAIN_LOG, LOG_ERROR, "connect(%s:%d) (fd %d) returned errno %d (%s).", peer, port, io_fd->fd, errno, strerror(errno));
258             /* then fall through */
259         case EHOSTUNREACH:
260         case ECONNREFUSED:
261             ioset_close(io_fd, 1);
262             return NULL;
263         }
264     }
265     io_fd->state = IO_CONNECTED;
266     old_active = active_fd;
267     if (connect_cb)
268         connect_cb(io_fd, ((res < 0) ? errno : 0));
269     if (active_fd)
270         engine->update(io_fd);
271     if (old_active != io_fd)
272         active_fd = old_active;
273     return io_fd;
274 }
275
276 void ioset_update(struct io_fd *fd) {
277     engine->update(fd);
278 }
279
280 static void
281 ioset_try_write(struct io_fd *fd) {
282     int res;
283     unsigned int req;
284
285     req = ioq_get_avail(&fd->send);
286     res = write(fd->fd, fd->send.buf+fd->send.get, req);
287     if (res < 0) {
288         switch (errno) {
289         case EAGAIN:
290             break;
291         default:
292             log_module(MAIN_LOG, LOG_ERROR, "write() on fd %d error %d: %s", fd->fd, errno, strerror(errno));
293         }
294     } else {
295         fd->send.get += res;
296         if (fd->send.get == fd->send.size)
297             fd->send.get = 0;
298         engine->update(fd);
299     }
300 }
301
302 void
303 ioset_close(struct io_fd *fdp, int os_close) {
304     if (!fdp)
305         return;
306     if (active_fd == fdp)
307         active_fd = NULL;
308     if (fdp->destroy_cb)
309         fdp->destroy_cb(fdp);
310     if (fdp->send.get != fdp->send.put && (os_close & 2)) {
311         int flags;
312
313         flags = fcntl(fdp->fd, F_GETFL);
314         fcntl(fdp->fd, F_SETFL, flags&~O_NONBLOCK);
315         ioset_try_write(fdp);
316         /* it may need to send the beginning of the buffer now.. */
317         if (fdp->send.get != fdp->send.put)
318             ioset_try_write(fdp);
319     }
320     free(fdp->send.buf);
321     free(fdp->recv.buf);
322     if (os_close & 1)
323         close(fdp->fd);
324     engine->remove(fdp);
325     free(fdp);
326 }
327
328 static void
329 ioset_accept(struct io_fd *listener)
330 {
331     struct io_fd *old_active;
332     struct io_fd *new_fd;
333     int fd;
334
335     fd = accept(listener->fd, NULL, 0);
336     if (fd < 0) {
337         log_module(MAIN_LOG, LOG_ERROR, "Unable to accept new connection on listener %d: %s", listener->fd, strerror(errno));
338         return;
339     }
340
341     new_fd = ioset_add(fd);
342     new_fd->state = IO_CONNECTED;
343     old_active = active_fd;
344     active_fd = new_fd;
345     listener->accept_cb(listener, new_fd);
346     assert(active_fd == NULL || active_fd == new_fd);
347     if (active_fd == new_fd) {
348         if (new_fd->send.get != new_fd->send.put)
349             ioset_try_write(new_fd);
350         else
351             engine->update(new_fd);
352     }
353     active_fd = old_active;
354 }
355
356 static int
357 ioset_find_line_length(struct io_fd *fd) {
358     unsigned int pos, max, len;
359     len = 0;
360     max = (fd->recv.put < fd->recv.get) ? fd->recv.size : fd->recv.put;
361     for (pos = fd->recv.get; pos < max; ++pos, ++len)
362         if (IS_EOL(fd->recv.buf[pos]))
363             return fd->line_len = len + 1;
364     if (fd->recv.put < fd->recv.get)
365         for (pos = 0; pos < fd->recv.put; ++pos, ++len)
366             if (IS_EOL(fd->recv.buf[pos]))
367                 return fd->line_len = len + 1;
368     return fd->line_len = 0;
369 }
370
371 static void
372 ioset_buffered_read(struct io_fd *fd) {
373     int put_avail, nbr, fdnum;
374
375     if (!(put_avail = ioq_put_avail(&fd->recv)))
376         put_avail = ioq_grow(&fd->recv);
377     nbr = read(fd->fd, fd->recv.buf + fd->recv.put, put_avail);
378     if (nbr < 0) {
379         switch (errno) {
380         case EAGAIN:
381             break;
382         default:
383             log_module(MAIN_LOG, LOG_ERROR, "Unexpected read() error %d on fd %d: %s", errno, fd->fd, strerror(errno));
384             /* Just flag it as EOF and call readable_cb() to notify the fd's owner. */
385             fd->state = IO_CLOSED;
386             fd->readable_cb(fd);
387             if (active_fd == fd)
388                 engine->update(fd);
389         }
390     } else if (nbr == 0) {
391         fd->state = IO_CLOSED;
392         fd->readable_cb(fd);
393         if (active_fd == fd)
394             engine->update(fd);
395     } else {
396         if (fd->line_len == 0) {
397             unsigned int pos;
398             for (pos = fd->recv.put; pos < fd->recv.put + nbr; ++pos) {
399                 if (IS_EOL(fd->recv.buf[pos])) {
400                     if (fd->recv.put < fd->recv.get)
401                         fd->line_len = fd->recv.size + pos + 1 - fd->recv.get;
402                     else
403                         fd->line_len = pos + 1 - fd->recv.get;
404                     break;
405                 }
406             }
407         }
408         fd->recv.put += nbr;
409         if (fd->recv.put == fd->recv.size)
410             fd->recv.put = 0;
411         fdnum = fd->fd;
412         while (fd->line_len > 0) {
413             struct io_fd *old_active;
414             int died = 0;
415
416             old_active = active_fd;
417             active_fd = fd;
418             fd->readable_cb(fd);
419             if (active_fd)
420                 ioset_find_line_length(fd);
421             else
422                 died = 1;
423             if (old_active != fd)
424                 active_fd = old_active;
425             if (died)
426                 break;
427         }
428     }
429 }
430
431 int
432 ioset_line_read(struct io_fd *fd, char *dest, int max) {
433     int avail, done;
434     if ((fd->state == IO_CLOSED) && (!ioq_get_avail(&fd->recv) ||  (fd->line_len < 0)))
435         return 0;
436     if (fd->line_len < 0)
437         return -1;
438     if (fd->line_len < max)
439         max = fd->line_len;
440     avail = ioq_get_avail(&fd->recv);
441     if (max > avail) {
442         memcpy(dest, fd->recv.buf + fd->recv.get, avail);
443         fd->recv.get += avail;
444         assert(fd->recv.get == fd->recv.size);
445         fd->recv.get = 0;
446         done = avail;
447     } else {
448         done = 0;
449     }
450     memcpy(dest + done, fd->recv.buf + fd->recv.get, max - done);
451     fd->recv.get += max - done;
452     if (fd->recv.get == fd->recv.size)
453         fd->recv.get = 0;
454     dest[max] = 0;
455     ioset_find_line_length(fd);
456     return max;
457 }
458
459 void
460 ioset_events(struct io_fd *fd, int readable, int writable)
461 {
462     if (!fd || (!readable && !writable))
463         return;
464     active_fd = fd;
465     switch (fd->state) {
466     case IO_CLOSED:
467         break;
468     case IO_LISTENING:
469         if (active_fd && readable)
470             ioset_accept(fd);
471         break;
472     case IO_CONNECTING:
473         assert(active_fd == NULL || active_fd == fd);
474         if (active_fd && readable) {
475             socklen_t arglen;
476             int rc;
477             arglen = sizeof(rc);
478             if (getsockopt(fd->fd, SOL_SOCKET, SO_ERROR, &rc, &arglen) < 0)
479                 rc = errno;
480             fd->state = IO_CLOSED;
481             if (fd->connect_cb)
482                 fd->connect_cb(fd, rc);
483         } else if (active_fd && writable) {
484             fd->state = IO_CONNECTED;
485             if (fd->connect_cb)
486                 fd->connect_cb(fd, 0);
487         }
488         if (active_fd != fd)
489             break;
490         engine->update(fd);
491         /* and fall through */
492     case IO_CONNECTED:
493         assert(active_fd == NULL || active_fd == fd);
494         if (active_fd && readable) {
495             if (fd->line_reads)
496                 ioset_buffered_read(fd);
497             else
498                 fd->readable_cb(fd);
499         }
500
501         assert(active_fd == NULL || active_fd == fd);
502         if (active_fd && writable)
503             ioset_try_write(fd);
504         break;
505     }
506 }
507
508 void
509 ioset_run(void) {
510     extern struct io_fd *socket_io_fd;
511     struct timeval timeout;
512     time_t wakey;
513
514     while (!quit_services) {
515         while (!socket_io_fd)
516             uplink_connect();
517
518         /* How long to sleep? (fill in select_timeout) */
519         wakey = timeq_next();
520         if ((wakey - now) < 0)
521             timeout.tv_sec = 0;
522         else
523             timeout.tv_sec = wakey - now;
524         timeout.tv_usec = 0;
525
526         if (engine->loop(&timeout))
527             continue;
528
529         /* Call any timeq events we need to call. */
530         timeq_run();
531         if (do_write_dbs) {
532             saxdb_write_all();
533             do_write_dbs = 0;
534         }
535         if (do_reopen) {
536             extern char *services_config;
537             conf_read(services_config);
538             do_reopen = 0;
539         }
540     }
541 }
542
543 void
544 ioset_write(struct io_fd *fd, const char *buf, unsigned int nbw) {
545     unsigned int avail;
546     while (ioq_used(&fd->send) + nbw >= fd->send.size)
547         ioq_grow(&fd->send);
548     avail = ioq_put_avail(&fd->send);
549     if (nbw > avail) {
550         memcpy(fd->send.buf + fd->send.put, buf, avail);
551         buf += avail;
552         nbw -= avail;
553         fd->send.put = 0;
554     }
555     memcpy(fd->send.buf + fd->send.put, buf, nbw);
556     fd->send.put += nbw;
557     if (fd->send.put == fd->send.size)
558         fd->send.put = 0;
559     engine->update(fd);
560 }
561
562 int
563 ioset_printf(struct io_fd *fd, const char *fmt, ...) {
564     char tmpbuf[MAXLEN];
565     va_list ap;
566     int res;
567
568     va_start(ap, fmt);
569     res = vsnprintf(tmpbuf, sizeof(tmpbuf), fmt, ap);
570     va_end(ap);
571     if (res > 0 && (size_t)res <= sizeof(tmpbuf))
572         ioset_write(fd, tmpbuf, res);
573     return res;
574 }
575
576 void
577 ioset_set_time(unsigned long new_now) {
578     clock_skew = new_now - time(NULL);
579     now = new_now;
580 }