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