]> jfr.im git - solanum.git/blob - ssld/ssld.c
Merge pull request #137 from lp0/fix-ssld-change_connid-20160207
[solanum.git] / ssld / ssld.c
1 /*
2 * ssld.c: The ircd-ratbox ssl/zlib helper daemon thingy
3 * Copyright (C) 2007 Aaron Sethman <androsyn@ratbox.org>
4 * Copyright (C) 2007 ircd-ratbox development team
5 *
6 * This program 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 this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 * USA
20 *
21 * $Id$
22 */
23
24
25 #include "stdinc.h"
26
27 #ifdef HAVE_LIBZ
28 #include <zlib.h>
29 #endif
30
31 #define MAXPASSFD 4
32 #ifndef READBUF_SIZE
33 #define READBUF_SIZE 16384
34 #endif
35
36 static void setup_signals(void);
37 static pid_t ppid;
38
39 static inline uint32_t
40 buf_to_uint32(uint8_t *buf)
41 {
42 uint32_t x;
43 memcpy(&x, buf, sizeof(x));
44 return x;
45 }
46
47 static inline void
48 uint32_to_buf(uint8_t *buf, uint32_t x)
49 {
50 memcpy(buf, &x, sizeof(x));
51 return;
52 }
53
54 typedef struct _mod_ctl_buf
55 {
56 rb_dlink_node node;
57 uint8_t *buf;
58 size_t buflen;
59 rb_fde_t *F[MAXPASSFD];
60 int nfds;
61 } mod_ctl_buf_t;
62
63 typedef struct _mod_ctl
64 {
65 rb_dlink_node node;
66 int cli_count;
67 rb_fde_t *F;
68 rb_fde_t *F_pipe;
69 rb_dlink_list readq;
70 rb_dlink_list writeq;
71 } mod_ctl_t;
72
73 static mod_ctl_t *mod_ctl;
74
75
76 #ifdef HAVE_LIBZ
77 typedef struct _zlib_stream
78 {
79 z_stream instream;
80 z_stream outstream;
81 } zlib_stream_t;
82 #endif
83
84 typedef struct _conn
85 {
86 rb_dlink_node node;
87 mod_ctl_t *ctl;
88 rawbuf_head_t *modbuf_out;
89 rawbuf_head_t *plainbuf_out;
90
91 uint32_t id;
92
93 rb_fde_t *mod_fd;
94 rb_fde_t *plain_fd;
95 uint64_t mod_out;
96 uint64_t mod_in;
97 uint64_t plain_in;
98 uint64_t plain_out;
99 uint8_t flags;
100 void *stream;
101 } conn_t;
102
103 #define FLAG_SSL 0x01
104 #define FLAG_ZIP 0x02
105 #define FLAG_CORK 0x04
106 #define FLAG_DEAD 0x08
107 #define FLAG_SSL_W_WANTS_R 0x10 /* output needs to wait until input possible */
108 #define FLAG_SSL_R_WANTS_W 0x20 /* input needs to wait until output possible */
109 #define FLAG_ZIPSSL 0x40
110
111 #define IsSSL(x) ((x)->flags & FLAG_SSL)
112 #define IsZip(x) ((x)->flags & FLAG_ZIP)
113 #define IsCork(x) ((x)->flags & FLAG_CORK)
114 #define IsDead(x) ((x)->flags & FLAG_DEAD)
115 #define IsSSLWWantsR(x) ((x)->flags & FLAG_SSL_W_WANTS_R)
116 #define IsSSLRWantsW(x) ((x)->flags & FLAG_SSL_R_WANTS_W)
117 #define IsZipSSL(x) ((x)->flags & FLAG_ZIPSSL)
118
119 #define SetSSL(x) ((x)->flags |= FLAG_SSL)
120 #define SetZip(x) ((x)->flags |= FLAG_ZIP)
121 #define SetCork(x) ((x)->flags |= FLAG_CORK)
122 #define SetDead(x) ((x)->flags |= FLAG_DEAD)
123 #define SetSSLWWantsR(x) ((x)->flags |= FLAG_SSL_W_WANTS_R)
124 #define SetSSLRWantsW(x) ((x)->flags |= FLAG_SSL_R_WANTS_W)
125 #define SetZipSSL(x) ((x)->flags |= FLAG_ZIPSSL)
126
127 #define ClearSSL(x) ((x)->flags &= ~FLAG_SSL)
128 #define ClearZip(x) ((x)->flags &= ~FLAG_ZIP)
129 #define ClearCork(x) ((x)->flags &= ~FLAG_CORK)
130 #define ClearDead(x) ((x)->flags &= ~FLAG_DEAD)
131 #define ClearSSLWWantsR(x) ((x)->flags &= ~FLAG_SSL_W_WANTS_R)
132 #define ClearSSLRWantsW(x) ((x)->flags &= ~FLAG_SSL_R_WANTS_W)
133 #define ClearZipSSL(x) ((x)->flags &= ~FLAG_ZIPSSL)
134
135 #define NO_WAIT 0x0
136 #define WAIT_PLAIN 0x1
137
138 #define HASH_WALK_SAFE(i, max, ptr, next, table) for(i = 0; i < max; i++) { RB_DLINK_FOREACH_SAFE(ptr, next, table[i].head)
139 #define HASH_WALK_END }
140 #define CONN_HASH_SIZE 2000
141 #define connid_hash(x) (&connid_hash_table[(x % CONN_HASH_SIZE)])
142
143
144
145 static rb_dlink_list connid_hash_table[CONN_HASH_SIZE];
146 static rb_dlink_list dead_list;
147
148 static void conn_mod_read_cb(rb_fde_t *fd, void *data);
149 static void conn_mod_write_sendq(rb_fde_t *, void *data);
150 static void conn_plain_write_sendq(rb_fde_t *, void *data);
151 static void mod_write_ctl(rb_fde_t *, void *data);
152 static void conn_plain_read_cb(rb_fde_t *fd, void *data);
153 static void conn_plain_read_shutdown_cb(rb_fde_t *fd, void *data);
154 static void mod_cmd_write_queue(mod_ctl_t * ctl, const void *data, size_t len);
155 static const char *remote_closed = "Remote host closed the connection";
156 static int ssl_ok;
157 static int certfp_method = RB_SSL_CERTFP_METH_SHA1;
158 #ifdef HAVE_LIBZ
159 static int zlib_ok = 1;
160 #else
161 static int zlib_ok = 0;
162 #endif
163
164
165 #ifdef HAVE_LIBZ
166 static void *
167 ssld_alloc(void *unused, size_t count, size_t size)
168 {
169 return rb_malloc(count * size);
170 }
171
172 static void
173 ssld_free(void *unused, void *ptr)
174 {
175 rb_free(ptr);
176 }
177 #endif
178
179 static conn_t *
180 conn_find_by_id(uint32_t id)
181 {
182 rb_dlink_node *ptr;
183 conn_t *conn;
184
185 RB_DLINK_FOREACH(ptr, (connid_hash(id))->head)
186 {
187 conn = ptr->data;
188 if(conn->id == id && !IsDead(conn))
189 return conn;
190 }
191 return NULL;
192 }
193
194 static void
195 conn_add_id_hash(conn_t * conn, uint32_t id)
196 {
197 conn->id = id;
198 rb_dlinkAdd(conn, &conn->node, connid_hash(id));
199 }
200
201 static void
202 free_conn(conn_t * conn)
203 {
204 rb_free_rawbuffer(conn->modbuf_out);
205 rb_free_rawbuffer(conn->plainbuf_out);
206 #ifdef HAVE_LIBZ
207 if(IsZip(conn))
208 {
209 zlib_stream_t *stream = conn->stream;
210 inflateEnd(&stream->instream);
211 deflateEnd(&stream->outstream);
212 rb_free(stream);
213 }
214 #endif
215 rb_free(conn);
216 }
217
218 static void
219 clean_dead_conns(void *unused)
220 {
221 conn_t *conn;
222 rb_dlink_node *ptr, *next;
223 RB_DLINK_FOREACH_SAFE(ptr, next, dead_list.head)
224 {
225 conn = ptr->data;
226 free_conn(conn);
227 }
228 dead_list.tail = dead_list.head = NULL;
229 }
230
231
232 static void
233 close_conn(conn_t * conn, int wait_plain, const char *fmt, ...)
234 {
235 va_list ap;
236 char reason[128]; /* must always be under 250 bytes */
237 uint8_t buf[256];
238 int len;
239 if(IsDead(conn))
240 return;
241
242 rb_rawbuf_flush(conn->modbuf_out, conn->mod_fd);
243 rb_rawbuf_flush(conn->plainbuf_out, conn->plain_fd);
244 rb_close(conn->mod_fd);
245 SetDead(conn);
246
247 if(!IsZipSSL(conn))
248 rb_dlinkDelete(&conn->node, connid_hash(conn->id));
249
250 if(!wait_plain || fmt == NULL)
251 {
252 rb_close(conn->plain_fd);
253 rb_dlinkAdd(conn, &conn->node, &dead_list);
254 return;
255 }
256 rb_setselect(conn->plain_fd, RB_SELECT_READ, conn_plain_read_shutdown_cb, conn);
257 rb_setselect(conn->plain_fd, RB_SELECT_WRITE, NULL, NULL);
258 va_start(ap, fmt);
259 vsnprintf(reason, sizeof(reason), fmt, ap);
260 va_end(ap);
261
262 buf[0] = 'D';
263 uint32_to_buf(&buf[1], conn->id);
264 rb_strlcpy((char *) &buf[5], reason, sizeof(buf) - 5);
265 len = (strlen(reason) + 1) + 5;
266 mod_cmd_write_queue(conn->ctl, buf, len);
267 }
268
269 static conn_t *
270 make_conn(mod_ctl_t * ctl, rb_fde_t *mod_fd, rb_fde_t *plain_fd)
271 {
272 conn_t *conn = rb_malloc(sizeof(conn_t));
273 conn->ctl = ctl;
274 conn->modbuf_out = rb_new_rawbuffer();
275 conn->plainbuf_out = rb_new_rawbuffer();
276 conn->mod_fd = mod_fd;
277 conn->plain_fd = plain_fd;
278 conn->id = -1;
279 conn->stream = NULL;
280 rb_set_nb(mod_fd);
281 rb_set_nb(plain_fd);
282 return conn;
283 }
284
285 static void
286 check_handshake_flood(void *unused)
287 {
288 conn_t *conn;
289 rb_dlink_node *ptr, *next;
290 unsigned int count;
291 int i;
292 HASH_WALK_SAFE(i, CONN_HASH_SIZE, ptr, next, connid_hash_table)
293 {
294 conn = ptr->data;
295 if(!IsSSL(conn))
296 continue;
297
298 count = rb_ssl_handshake_count(conn->mod_fd);
299 /* nothing needs to do this more than twice in ten seconds i don't think */
300 if(count > 2)
301 close_conn(conn, WAIT_PLAIN, "Handshake flooding");
302 else
303 rb_ssl_clear_handshake_count(conn->mod_fd);
304 }
305 HASH_WALK_END}
306
307 static void
308 conn_mod_write_sendq(rb_fde_t *fd, void *data)
309 {
310 conn_t *conn = data;
311 const char *err;
312 int retlen;
313 if(IsDead(conn))
314 return;
315
316 if(IsSSLWWantsR(conn))
317 {
318 ClearSSLWWantsR(conn);
319 conn_mod_read_cb(conn->mod_fd, conn);
320 if(IsDead(conn))
321 return;
322 }
323
324 while((retlen = rb_rawbuf_flush(conn->modbuf_out, fd)) > 0)
325 conn->mod_out += retlen;
326
327 if(retlen == 0 || (retlen < 0 && !rb_ignore_errno(errno)))
328 {
329 if(retlen == 0)
330 close_conn(conn, WAIT_PLAIN, "%s", remote_closed);
331 if(IsSSL(conn) && retlen == RB_RW_SSL_ERROR)
332 err = rb_get_ssl_strerror(conn->mod_fd);
333 else
334 err = strerror(errno);
335 close_conn(conn, WAIT_PLAIN, "Write error: %s", err);
336 return;
337 }
338 if(rb_rawbuf_length(conn->modbuf_out) > 0)
339 {
340 if(retlen != RB_RW_SSL_NEED_READ)
341 rb_setselect(conn->mod_fd, RB_SELECT_WRITE, conn_mod_write_sendq, conn);
342 else
343 {
344 rb_setselect(conn->mod_fd, RB_SELECT_READ, conn_mod_write_sendq, conn);
345 rb_setselect(conn->mod_fd, RB_SELECT_WRITE, NULL, NULL);
346 SetSSLWWantsR(conn);
347 }
348 }
349 else
350 rb_setselect(conn->mod_fd, RB_SELECT_WRITE, NULL, NULL);
351
352 if(IsCork(conn) && rb_rawbuf_length(conn->modbuf_out) == 0)
353 {
354 ClearCork(conn);
355 conn_plain_read_cb(conn->plain_fd, conn);
356 }
357
358 }
359
360 static void
361 conn_mod_write(conn_t * conn, void *data, size_t len)
362 {
363 if(IsDead(conn)) /* no point in queueing to a dead man */
364 return;
365 rb_rawbuf_append(conn->modbuf_out, data, len);
366 }
367
368 static void
369 conn_plain_write(conn_t * conn, void *data, size_t len)
370 {
371 if(IsDead(conn)) /* again no point in queueing to dead men */
372 return;
373 rb_rawbuf_append(conn->plainbuf_out, data, len);
374 }
375
376 static void
377 mod_cmd_write_queue(mod_ctl_t * ctl, const void *data, size_t len)
378 {
379 mod_ctl_buf_t *ctl_buf;
380 ctl_buf = rb_malloc(sizeof(mod_ctl_buf_t));
381 ctl_buf->buf = rb_malloc(len);
382 ctl_buf->buflen = len;
383 memcpy(ctl_buf->buf, data, len);
384 ctl_buf->nfds = 0;
385 rb_dlinkAddTail(ctl_buf, &ctl_buf->node, &ctl->writeq);
386 mod_write_ctl(ctl->F, ctl);
387 }
388
389 #ifdef HAVE_LIBZ
390 static void
391 common_zlib_deflate(conn_t * conn, void *buf, size_t len)
392 {
393 char outbuf[READBUF_SIZE];
394 int ret, have;
395 z_stream *outstream = &((zlib_stream_t *) conn->stream)->outstream;
396 outstream->next_in = buf;
397 outstream->avail_in = len;
398 outstream->next_out = (Bytef *) outbuf;
399 outstream->avail_out = sizeof(outbuf);
400
401 ret = deflate(outstream, Z_SYNC_FLUSH);
402 if(ret != Z_OK)
403 {
404 /* deflate error */
405 close_conn(conn, WAIT_PLAIN, "Deflate failed: %s", zError(ret));
406 return;
407 }
408 if(outstream->avail_out == 0)
409 {
410 /* avail_out empty */
411 close_conn(conn, WAIT_PLAIN, "error compressing data, avail_out == 0");
412 return;
413 }
414 if(outstream->avail_in != 0)
415 {
416 /* avail_in isn't empty... */
417 close_conn(conn, WAIT_PLAIN, "error compressing data, avail_in != 0");
418 return;
419 }
420 have = sizeof(outbuf) - outstream->avail_out;
421 conn_mod_write(conn, outbuf, have);
422 }
423
424 static void
425 common_zlib_inflate(conn_t * conn, void *buf, size_t len)
426 {
427 char outbuf[READBUF_SIZE];
428 int ret, have = 0;
429 ((zlib_stream_t *) conn->stream)->instream.next_in = buf;
430 ((zlib_stream_t *) conn->stream)->instream.avail_in = len;
431 ((zlib_stream_t *) conn->stream)->instream.next_out = (Bytef *) outbuf;
432 ((zlib_stream_t *) conn->stream)->instream.avail_out = sizeof(outbuf);
433
434 while(((zlib_stream_t *) conn->stream)->instream.avail_in)
435 {
436 ret = inflate(&((zlib_stream_t *) conn->stream)->instream, Z_NO_FLUSH);
437 if(ret != Z_OK)
438 {
439 if(!strncmp("ERROR ", buf, 6))
440 {
441 close_conn(conn, WAIT_PLAIN, "Received uncompressed ERROR");
442 return;
443 }
444 close_conn(conn, WAIT_PLAIN, "Inflate failed: %s", zError(ret));
445 return;
446 }
447 have = sizeof(outbuf) - ((zlib_stream_t *) conn->stream)->instream.avail_out;
448
449 if(((zlib_stream_t *) conn->stream)->instream.avail_in)
450 {
451 conn_plain_write(conn, outbuf, have);
452 have = 0;
453 ((zlib_stream_t *) conn->stream)->instream.next_out = (Bytef *) outbuf;
454 ((zlib_stream_t *) conn->stream)->instream.avail_out = sizeof(outbuf);
455 }
456 }
457 if(have == 0)
458 return;
459
460 conn_plain_write(conn, outbuf, have);
461 }
462 #endif
463
464 static int
465 plain_check_cork(conn_t * conn)
466 {
467 if(rb_rawbuf_length(conn->modbuf_out) >= 4096)
468 {
469 /* if we have over 4k pending outbound, don't read until
470 * we've cleared the queue */
471 SetCork(conn);
472 rb_setselect(conn->plain_fd, RB_SELECT_READ, NULL, NULL);
473 /* try to write */
474 conn_mod_write_sendq(conn->mod_fd, conn);
475 return 1;
476 }
477 return 0;
478 }
479
480
481 static void
482 conn_plain_read_cb(rb_fde_t *fd, void *data)
483 {
484 char inbuf[READBUF_SIZE];
485 conn_t *conn = data;
486 int length = 0;
487 if(conn == NULL)
488 return;
489
490 if(IsDead(conn))
491 return;
492
493 if(plain_check_cork(conn))
494 return;
495
496 while(1)
497 {
498 if(IsDead(conn))
499 return;
500
501 length = rb_read(conn->plain_fd, inbuf, sizeof(inbuf));
502
503 if(length == 0 || (length < 0 && !rb_ignore_errno(errno)))
504 {
505 close_conn(conn, NO_WAIT, NULL);
506 return;
507 }
508
509 if(length < 0)
510 {
511 rb_setselect(conn->plain_fd, RB_SELECT_READ, conn_plain_read_cb, conn);
512 conn_mod_write_sendq(conn->mod_fd, conn);
513 return;
514 }
515 conn->plain_in += length;
516
517 #ifdef HAVE_LIBZ
518 if(IsZip(conn))
519 common_zlib_deflate(conn, inbuf, length);
520 else
521 #endif
522 conn_mod_write(conn, inbuf, length);
523 if(IsDead(conn))
524 return;
525 if(plain_check_cork(conn))
526 return;
527 }
528 }
529
530 static void
531 conn_plain_read_shutdown_cb(rb_fde_t *fd, void *data)
532 {
533 char inbuf[READBUF_SIZE];
534 conn_t *conn = data;
535 int length = 0;
536
537 if(conn == NULL)
538 return;
539
540 while(1)
541 {
542 length = rb_read(conn->plain_fd, inbuf, sizeof(inbuf));
543
544 if(length == 0 || (length < 0 && !rb_ignore_errno(errno)))
545 {
546 rb_close(conn->plain_fd);
547 rb_dlinkAdd(conn, &conn->node, &dead_list);
548 return;
549 }
550
551 if(length < 0)
552 {
553 rb_setselect(conn->plain_fd, RB_SELECT_READ, conn_plain_read_shutdown_cb, conn);
554 return;
555 }
556 }
557 }
558
559 static void
560 conn_mod_read_cb(rb_fde_t *fd, void *data)
561 {
562 char inbuf[READBUF_SIZE];
563 conn_t *conn = data;
564 const char *err = remote_closed;
565 int length;
566 if(conn == NULL)
567 return;
568 if(IsDead(conn))
569 return;
570
571 if(IsSSLRWantsW(conn))
572 {
573 ClearSSLRWantsW(conn);
574 conn_mod_write_sendq(conn->mod_fd, conn);
575 if(IsDead(conn))
576 return;
577 }
578
579 while(1)
580 {
581 if(IsDead(conn))
582 return;
583
584 length = rb_read(conn->mod_fd, inbuf, sizeof(inbuf));
585
586 if(length == 0 || (length < 0 && !rb_ignore_errno(errno)))
587 {
588 if(length == 0)
589 {
590 close_conn(conn, WAIT_PLAIN, "%s", remote_closed);
591 return;
592 }
593
594 if(IsSSL(conn) && length == RB_RW_SSL_ERROR)
595 err = rb_get_ssl_strerror(conn->mod_fd);
596 else
597 err = strerror(errno);
598 close_conn(conn, WAIT_PLAIN, "Read error: %s", err);
599 return;
600 }
601 if(length < 0)
602 {
603 if(length != RB_RW_SSL_NEED_WRITE)
604 rb_setselect(conn->mod_fd, RB_SELECT_READ, conn_mod_read_cb, conn);
605 else
606 {
607 rb_setselect(conn->mod_fd, RB_SELECT_READ, NULL, NULL);
608 rb_setselect(conn->mod_fd, RB_SELECT_WRITE, conn_mod_read_cb, conn);
609 SetSSLRWantsW(conn);
610 }
611 conn_plain_write_sendq(conn->plain_fd, conn);
612 return;
613 }
614 conn->mod_in += length;
615 #ifdef HAVE_LIBZ
616 if(IsZip(conn))
617 common_zlib_inflate(conn, inbuf, length);
618 else
619 #endif
620 conn_plain_write(conn, inbuf, length);
621 }
622 }
623
624 static void
625 conn_plain_write_sendq(rb_fde_t *fd, void *data)
626 {
627 conn_t *conn = data;
628 int retlen;
629
630 if(IsDead(conn))
631 return;
632
633 while((retlen = rb_rawbuf_flush(conn->plainbuf_out, fd)) > 0)
634 {
635 conn->plain_out += retlen;
636 }
637 if(retlen == 0 || (retlen < 0 && !rb_ignore_errno(errno)))
638 {
639 close_conn(data, NO_WAIT, NULL);
640 return;
641 }
642
643
644 if(rb_rawbuf_length(conn->plainbuf_out) > 0)
645 rb_setselect(conn->plain_fd, RB_SELECT_WRITE, conn_plain_write_sendq, conn);
646 else
647 rb_setselect(conn->plain_fd, RB_SELECT_WRITE, NULL, NULL);
648 }
649
650 static int
651 maxconn(void)
652 {
653 #if defined(RLIMIT_NOFILE) && defined(HAVE_SYS_RESOURCE_H)
654 struct rlimit limit;
655
656 if(!getrlimit(RLIMIT_NOFILE, &limit))
657 {
658 return limit.rlim_cur;
659 }
660 #endif /* RLIMIT_FD_MAX */
661 return MAXCONNECTIONS;
662 }
663
664 static void
665 ssl_send_cipher(conn_t *conn)
666 {
667 size_t len;
668 uint8_t buf[512];
669 char cstring[256];
670 const char *p;
671 if(!IsSSL(conn))
672 return;
673
674 p = rb_ssl_get_cipher(conn->mod_fd);
675
676 if(p == NULL)
677 return;
678
679 rb_strlcpy(cstring, p, sizeof(cstring));
680
681 buf[0] = 'C';
682 uint32_to_buf(&buf[1], conn->id);
683 strcpy((char *) &buf[5], cstring);
684 len = (strlen(cstring) + 1) + 5;
685 mod_cmd_write_queue(conn->ctl, buf, len);
686 }
687
688 static void
689 ssl_send_certfp(conn_t *conn)
690 {
691 uint8_t buf[9 + RB_SSL_CERTFP_LEN];
692
693 int len = rb_get_ssl_certfp(conn->mod_fd, &buf[9], certfp_method);
694 if (!len)
695 return;
696
697 lrb_assert(len <= RB_SSL_CERTFP_LEN);
698 buf[0] = 'F';
699 uint32_to_buf(&buf[1], conn->id);
700 uint32_to_buf(&buf[5], len);
701 mod_cmd_write_queue(conn->ctl, buf, 9 + len);
702 }
703
704 static void
705 ssl_process_accept_cb(rb_fde_t *F, int status, struct sockaddr *addr, rb_socklen_t len, void *data)
706 {
707 conn_t *conn = data;
708
709 if(status == RB_OK)
710 {
711 conn_mod_read_cb(conn->mod_fd, conn);
712 conn_plain_read_cb(conn->plain_fd, conn);
713 ssl_send_cipher(conn);
714 ssl_send_certfp(conn);
715 return;
716 }
717 /* ircd doesn't care about the reason for this */
718 close_conn(conn, NO_WAIT, 0);
719 return;
720 }
721
722 static void
723 ssl_process_connect_cb(rb_fde_t *F, int status, void *data)
724 {
725 conn_t *conn = data;
726
727 if(status == RB_OK)
728 {
729 conn_mod_read_cb(conn->mod_fd, conn);
730 conn_plain_read_cb(conn->plain_fd, conn);
731 ssl_send_cipher(conn);
732 ssl_send_certfp(conn);
733 }
734 else if(status == RB_ERR_TIMEOUT)
735 close_conn(conn, WAIT_PLAIN, "SSL handshake timed out");
736 else if(status == RB_ERROR_SSL)
737 close_conn(conn, WAIT_PLAIN, "%s", rb_get_ssl_strerror(conn->mod_fd));
738 else
739 close_conn(conn, WAIT_PLAIN, "SSL handshake failed");
740 }
741
742
743 static void
744 cleanup_bad_message(mod_ctl_t * ctl, mod_ctl_buf_t * ctlb)
745 {
746 int i;
747
748 /* XXX should log this somehow */
749 for (i = 0; i < ctlb->nfds; i++)
750 rb_close(ctlb->F[i]);
751 }
752
753 static void
754 ssl_process_accept(mod_ctl_t * ctl, mod_ctl_buf_t * ctlb)
755 {
756 conn_t *conn;
757 uint32_t id;
758
759 conn = make_conn(ctl, ctlb->F[0], ctlb->F[1]);
760
761 id = buf_to_uint32(&ctlb->buf[1]);
762 conn_add_id_hash(conn, id);
763 SetSSL(conn);
764
765 if(rb_get_type(conn->mod_fd) & RB_FD_UNKNOWN)
766 rb_set_type(conn->mod_fd, RB_FD_SOCKET);
767
768 if(rb_get_type(conn->plain_fd) == RB_FD_UNKNOWN)
769 rb_set_type(conn->plain_fd, RB_FD_SOCKET);
770
771 rb_ssl_start_accepted(ctlb->F[0], ssl_process_accept_cb, conn, 10);
772 }
773
774 static void
775 ssl_change_certfp_method(mod_ctl_t * ctl, mod_ctl_buf_t * ctlb)
776 {
777 certfp_method = buf_to_uint32(&ctlb->buf[1]);
778 }
779
780 static void
781 ssl_process_connect(mod_ctl_t * ctl, mod_ctl_buf_t * ctlb)
782 {
783 conn_t *conn;
784 uint32_t id;
785 conn = make_conn(ctl, ctlb->F[0], ctlb->F[1]);
786
787 id = buf_to_uint32(&ctlb->buf[1]);
788 conn_add_id_hash(conn, id);
789 SetSSL(conn);
790
791 if(rb_get_type(conn->mod_fd) == RB_FD_UNKNOWN)
792 rb_set_type(conn->mod_fd, RB_FD_SOCKET);
793
794 if(rb_get_type(conn->plain_fd) == RB_FD_UNKNOWN)
795 rb_set_type(conn->plain_fd, RB_FD_SOCKET);
796
797
798 rb_ssl_start_connected(ctlb->F[0], ssl_process_connect_cb, conn, 10);
799 }
800
801 static void
802 process_stats(mod_ctl_t * ctl, mod_ctl_buf_t * ctlb)
803 {
804 char outstat[512];
805 conn_t *conn;
806 uint8_t *odata;
807 uint32_t id;
808
809 id = buf_to_uint32(&ctlb->buf[1]);
810
811 odata = &ctlb->buf[5];
812 conn = conn_find_by_id(id);
813
814 if(conn == NULL)
815 return;
816
817 snprintf(outstat, sizeof(outstat), "S %s %llu %llu %llu %llu", odata,
818 conn->plain_out, conn->mod_in, conn->plain_in, conn->mod_out);
819 conn->plain_out = 0;
820 conn->plain_in = 0;
821 conn->mod_in = 0;
822 conn->mod_out = 0;
823 mod_cmd_write_queue(ctl, outstat, strlen(outstat) + 1); /* +1 is so we send the \0 as well */
824 }
825
826 static void
827 change_connid(mod_ctl_t *ctl, mod_ctl_buf_t *ctlb)
828 {
829 uint32_t id = buf_to_uint32(&ctlb->buf[1]);
830 uint32_t newid = buf_to_uint32(&ctlb->buf[5]);
831 conn_t *conn = conn_find_by_id(id);
832 lrb_assert(conn != NULL);
833 if(conn == NULL)
834 {
835 char buf[256];
836 int len;
837
838 buf[0] = 'D';
839 uint32_to_buf(&buf[1], newid);
840 sprintf(&buf[5], "connid %d does not exist", id);
841 len = (strlen(&buf[5]) + 1) + 5;
842 mod_cmd_write_queue(ctl, buf, len);
843
844 return;
845 }
846 rb_dlinkDelete(&conn->node, connid_hash(conn->id));
847 SetZipSSL(conn);
848 conn->id = newid;
849 }
850
851 #ifdef HAVE_LIBZ
852 static void
853 zlib_process(mod_ctl_t * ctl, mod_ctl_buf_t * ctlb)
854 {
855 uint8_t level;
856 size_t recvqlen;
857 size_t hdr = (sizeof(uint8_t) * 2) + sizeof(uint32_t);
858 void *recvq_start;
859 z_stream *instream, *outstream;
860 conn_t *conn;
861 uint32_t id;
862
863 conn = make_conn(ctl, ctlb->F[0], ctlb->F[1]);
864 if(rb_get_type(conn->mod_fd) == RB_FD_UNKNOWN)
865 rb_set_type(conn->mod_fd, RB_FD_SOCKET);
866
867 if(rb_get_type(conn->plain_fd) == RB_FD_UNKNOWN)
868 rb_set_type(conn->plain_fd, RB_FD_SOCKET);
869
870 id = buf_to_uint32(&ctlb->buf[1]);
871 conn_add_id_hash(conn, id);
872
873 level = (uint8_t)ctlb->buf[5];
874
875 recvqlen = ctlb->buflen - hdr;
876 recvq_start = &ctlb->buf[6];
877
878 SetZip(conn);
879 conn->stream = rb_malloc(sizeof(zlib_stream_t));
880 instream = &((zlib_stream_t *) conn->stream)->instream;
881 outstream = &((zlib_stream_t *) conn->stream)->outstream;
882
883 instream->total_in = 0;
884 instream->total_out = 0;
885 instream->zalloc = (alloc_func) ssld_alloc;
886 instream->zfree = (free_func) ssld_free;
887 instream->data_type = Z_ASCII;
888 inflateInit(&((zlib_stream_t *) conn->stream)->instream);
889
890 outstream->total_in = 0;
891 outstream->total_out = 0;
892 outstream->zalloc = (alloc_func) ssld_alloc;
893 outstream->zfree = (free_func) ssld_free;
894 outstream->data_type = Z_ASCII;
895
896 if(level > 9)
897 level = (uint8_t) Z_DEFAULT_COMPRESSION;
898
899 deflateInit(&((zlib_stream_t *) conn->stream)->outstream, level);
900 if(recvqlen > 0)
901 common_zlib_inflate(conn, recvq_start, recvqlen);
902
903 conn_mod_read_cb(conn->mod_fd, conn);
904 conn_plain_read_cb(conn->plain_fd, conn);
905 return;
906
907 }
908 #endif
909
910 static void
911 init_prng(mod_ctl_t * ctl, mod_ctl_buf_t * ctl_buf)
912 {
913 char *path;
914 prng_seed_t seed_type;
915
916 seed_type = (prng_seed_t) ctl_buf->buf[1];
917 path = (char *) &ctl_buf->buf[2];
918 rb_init_prng(path, seed_type);
919 }
920
921
922 static void
923 ssl_new_keys(mod_ctl_t * ctl, mod_ctl_buf_t * ctl_buf)
924 {
925 char *buf;
926 char *cert, *key, *dhparam, *cipher_list;
927
928 buf = (char *) &ctl_buf->buf[2];
929 cert = buf;
930 buf += strlen(cert) + 1;
931 key = buf;
932 buf += strlen(key) + 1;
933 dhparam = buf;
934 if(strlen(dhparam) == 0)
935 dhparam = NULL;
936 buf += strlen(dhparam) + 1;
937 cipher_list = buf;
938 if(strlen(cipher_list) == 0)
939 cipher_list = NULL;
940
941 if(!rb_setup_ssl_server(cert, key, dhparam, cipher_list))
942 {
943 const char *invalid = "I";
944 mod_cmd_write_queue(ctl, invalid, strlen(invalid));
945 return;
946 }
947 }
948
949 static void
950 send_nossl_support(mod_ctl_t * ctl, mod_ctl_buf_t * ctlb)
951 {
952 static const char *nossl_cmd = "N";
953 conn_t *conn;
954 uint32_t id;
955
956 if(ctlb != NULL)
957 {
958 conn = make_conn(ctl, ctlb->F[0], ctlb->F[1]);
959 id = buf_to_uint32(&ctlb->buf[1]);
960 conn_add_id_hash(conn, id);
961 close_conn(conn, WAIT_PLAIN, "libratbox reports no SSL/TLS support");
962 }
963 mod_cmd_write_queue(ctl, nossl_cmd, strlen(nossl_cmd));
964 }
965
966 static void
967 send_i_am_useless(mod_ctl_t * ctl)
968 {
969 static const char *useless = "U";
970 mod_cmd_write_queue(ctl, useless, strlen(useless));
971 }
972
973 static void
974 send_nozlib_support(mod_ctl_t * ctl, mod_ctl_buf_t * ctlb)
975 {
976 static const char *nozlib_cmd = "z";
977 conn_t *conn;
978 uint32_t id;
979 if(ctlb != NULL)
980 {
981 conn = make_conn(ctl, ctlb->F[0], ctlb->F[1]);
982 id = buf_to_uint32(&ctlb->buf[1]);
983 conn_add_id_hash(conn, id);
984 close_conn(conn, WAIT_PLAIN, "libratbox reports no zlib support");
985 }
986 mod_cmd_write_queue(ctl, nozlib_cmd, strlen(nozlib_cmd));
987 }
988
989 static void
990 mod_process_cmd_recv(mod_ctl_t * ctl)
991 {
992 rb_dlink_node *ptr, *next;
993 mod_ctl_buf_t *ctl_buf;
994
995 RB_DLINK_FOREACH_SAFE(ptr, next, ctl->readq.head)
996 {
997 ctl_buf = ptr->data;
998
999 switch (*ctl_buf->buf)
1000 {
1001 case 'A':
1002 {
1003 if (ctl_buf->nfds != 2 || ctl_buf->buflen != 5)
1004 {
1005 cleanup_bad_message(ctl, ctl_buf);
1006 break;
1007 }
1008
1009 if(!ssl_ok)
1010 {
1011 send_nossl_support(ctl, ctl_buf);
1012 break;
1013 }
1014 ssl_process_accept(ctl, ctl_buf);
1015 break;
1016 }
1017 case 'C':
1018 {
1019 if (ctl_buf->nfds != 2 || ctl_buf->buflen != 5)
1020 {
1021 cleanup_bad_message(ctl, ctl_buf);
1022 break;
1023 }
1024
1025 if(!ssl_ok)
1026 {
1027 send_nossl_support(ctl, ctl_buf);
1028 break;
1029 }
1030 ssl_process_connect(ctl, ctl_buf);
1031 break;
1032 }
1033 case 'F':
1034 {
1035 if (ctl_buf->nfds != 2 || ctl_buf->buflen != 5)
1036 {
1037 cleanup_bad_message(ctl, ctl_buf);
1038 break;
1039 }
1040 ssl_change_certfp_method(ctl, ctl_buf);
1041 break;
1042 }
1043 case 'K':
1044 {
1045 if(!ssl_ok)
1046 {
1047 send_nossl_support(ctl, ctl_buf);
1048 break;
1049 }
1050 ssl_new_keys(ctl, ctl_buf);
1051 break;
1052 }
1053 case 'I':
1054 init_prng(ctl, ctl_buf);
1055 break;
1056 case 'S':
1057 {
1058 process_stats(ctl, ctl_buf);
1059 break;
1060 }
1061 case 'Y':
1062 {
1063 change_connid(ctl, ctl_buf);
1064 break;
1065 }
1066
1067 #ifdef HAVE_LIBZ
1068 case 'Z':
1069 {
1070 if (ctl_buf->nfds != 2 || ctl_buf->buflen < 6)
1071 {
1072 cleanup_bad_message(ctl, ctl_buf);
1073 break;
1074 }
1075
1076 /* just zlib only */
1077 zlib_process(ctl, ctl_buf);
1078 break;
1079 }
1080 #else
1081
1082 case 'Z':
1083 send_nozlib_support(ctl, ctl_buf);
1084 break;
1085
1086 #endif
1087 default:
1088 break;
1089 /* Log unknown commands */
1090 }
1091 rb_dlinkDelete(ptr, &ctl->readq);
1092 rb_free(ctl_buf->buf);
1093 rb_free(ctl_buf);
1094 }
1095
1096 }
1097
1098
1099
1100 static void
1101 mod_read_ctl(rb_fde_t *F, void *data)
1102 {
1103 mod_ctl_buf_t *ctl_buf;
1104 mod_ctl_t *ctl = data;
1105 int retlen;
1106 int i;
1107
1108 do
1109 {
1110 ctl_buf = rb_malloc(sizeof(mod_ctl_buf_t));
1111 ctl_buf->buf = rb_malloc(READBUF_SIZE);
1112 ctl_buf->buflen = READBUF_SIZE;
1113 retlen = rb_recv_fd_buf(ctl->F, ctl_buf->buf, ctl_buf->buflen, ctl_buf->F,
1114 MAXPASSFD);
1115 if(retlen <= 0)
1116 {
1117 rb_free(ctl_buf->buf);
1118 rb_free(ctl_buf);
1119 }
1120 else
1121 {
1122 ctl_buf->buflen = retlen;
1123 rb_dlinkAddTail(ctl_buf, &ctl_buf->node, &ctl->readq);
1124 for (i = 0; i < MAXPASSFD && ctl_buf->F[i] != NULL; i++)
1125 ;
1126 ctl_buf->nfds = i;
1127 }
1128 }
1129 while(retlen > 0);
1130
1131 if(retlen == 0 || (retlen < 0 && !rb_ignore_errno(errno)))
1132 exit(0);
1133
1134 mod_process_cmd_recv(ctl);
1135 rb_setselect(ctl->F, RB_SELECT_READ, mod_read_ctl, ctl);
1136 }
1137
1138 static void
1139 mod_write_ctl(rb_fde_t *F, void *data)
1140 {
1141 mod_ctl_t *ctl = data;
1142 mod_ctl_buf_t *ctl_buf;
1143 rb_dlink_node *ptr, *next;
1144 int retlen, x;
1145
1146 RB_DLINK_FOREACH_SAFE(ptr, next, ctl->writeq.head)
1147 {
1148 ctl_buf = ptr->data;
1149 retlen = rb_send_fd_buf(ctl->F, ctl_buf->F, ctl_buf->nfds, ctl_buf->buf,
1150 ctl_buf->buflen, ppid);
1151 if(retlen > 0)
1152 {
1153 rb_dlinkDelete(ptr, &ctl->writeq);
1154 for(x = 0; x < ctl_buf->nfds; x++)
1155 rb_close(ctl_buf->F[x]);
1156 rb_free(ctl_buf->buf);
1157 rb_free(ctl_buf);
1158
1159 }
1160 if(retlen == 0 || (retlen < 0 && !rb_ignore_errno(errno)))
1161 exit(0);
1162
1163 }
1164 if(rb_dlink_list_length(&ctl->writeq) > 0)
1165 rb_setselect(ctl->F, RB_SELECT_WRITE, mod_write_ctl, ctl);
1166 }
1167
1168
1169 static void
1170 read_pipe_ctl(rb_fde_t *F, void *data)
1171 {
1172 char inbuf[READBUF_SIZE];
1173 int retlen;
1174 while((retlen = rb_read(F, inbuf, sizeof(inbuf))) > 0)
1175 {
1176 ;; /* we don't do anything with the pipe really, just care if the other process dies.. */
1177 }
1178 if(retlen == 0 || (retlen < 0 && !rb_ignore_errno(errno)))
1179 exit(0);
1180 rb_setselect(F, RB_SELECT_READ, read_pipe_ctl, NULL);
1181
1182 }
1183
1184 int
1185 main(int argc, char **argv)
1186 {
1187 const char *s_ctlfd, *s_pipe, *s_pid;
1188 int ctlfd, pipefd, x, maxfd;
1189 maxfd = maxconn();
1190
1191 s_ctlfd = getenv("CTL_FD");
1192 s_pipe = getenv("CTL_PIPE");
1193 s_pid = getenv("CTL_PPID");
1194
1195 if(s_ctlfd == NULL || s_pipe == NULL || s_pid == NULL)
1196 {
1197 fprintf(stderr,
1198 "This is ircd-ratbox ssld. You know you aren't supposed to run me directly?\n");
1199 fprintf(stderr,
1200 "You get an Id tag for this: $Id$\n");
1201 fprintf(stderr, "Have a nice life\n");
1202 exit(1);
1203 }
1204
1205 ctlfd = atoi(s_ctlfd);
1206 pipefd = atoi(s_pipe);
1207 ppid = atoi(s_pid);
1208 x = 0;
1209 #ifndef _WIN32
1210 for(x = 0; x < maxfd; x++)
1211 {
1212 if(x != ctlfd && x != pipefd && x > 2)
1213 close(x);
1214 }
1215 x = open("/dev/null", O_RDWR);
1216
1217 if(x >= 0)
1218 {
1219 if(ctlfd != 0 && pipefd != 0)
1220 dup2(x, 0);
1221 if(ctlfd != 1 && pipefd != 1)
1222 dup2(x, 1);
1223 if(ctlfd != 2 && pipefd != 2)
1224 dup2(x, 2);
1225 if(x > 2)
1226 close(x);
1227 }
1228 #endif
1229 setup_signals();
1230 rb_lib_init(NULL, NULL, NULL, 0, maxfd, 1024, 4096);
1231 rb_init_rawbuffers(1024);
1232 ssl_ok = rb_supports_ssl();
1233 mod_ctl = rb_malloc(sizeof(mod_ctl_t));
1234 mod_ctl->F = rb_open(ctlfd, RB_FD_SOCKET, "ircd control socket");
1235 mod_ctl->F_pipe = rb_open(pipefd, RB_FD_PIPE, "ircd pipe");
1236 rb_set_nb(mod_ctl->F);
1237 rb_set_nb(mod_ctl->F_pipe);
1238 rb_event_addish("clean_dead_conns", clean_dead_conns, NULL, 10);
1239 rb_event_add("check_handshake_flood", check_handshake_flood, NULL, 10);
1240 read_pipe_ctl(mod_ctl->F_pipe, NULL);
1241 mod_read_ctl(mod_ctl->F, mod_ctl);
1242 if(!zlib_ok && !ssl_ok)
1243 {
1244 /* this is really useless... */
1245 send_i_am_useless(mod_ctl);
1246 /* sleep until the ircd kills us */
1247 rb_sleep(2 << 30, 0);
1248 exit(1);
1249 }
1250
1251 if(!zlib_ok)
1252 send_nozlib_support(mod_ctl, NULL);
1253 if(!ssl_ok)
1254 send_nossl_support(mod_ctl, NULL);
1255 rb_lib_loop(0);
1256 return 0;
1257 }
1258
1259
1260 #ifndef _WIN32
1261 static void
1262 dummy_handler(int sig)
1263 {
1264 return;
1265 }
1266 #endif
1267
1268 static void
1269 setup_signals()
1270 {
1271 #ifndef _WIN32
1272 struct sigaction act;
1273
1274 act.sa_flags = 0;
1275 act.sa_handler = SIG_IGN;
1276 sigemptyset(&act.sa_mask);
1277 sigaddset(&act.sa_mask, SIGPIPE);
1278 sigaddset(&act.sa_mask, SIGALRM);
1279 #ifdef SIGTRAP
1280 sigaddset(&act.sa_mask, SIGTRAP);
1281 #endif
1282
1283 #ifdef SIGWINCH
1284 sigaddset(&act.sa_mask, SIGWINCH);
1285 sigaction(SIGWINCH, &act, 0);
1286 #endif
1287 sigaction(SIGPIPE, &act, 0);
1288 #ifdef SIGTRAP
1289 sigaction(SIGTRAP, &act, 0);
1290 #endif
1291
1292 act.sa_handler = dummy_handler;
1293 sigaction(SIGALRM, &act, 0);
1294 #endif
1295 }