]> jfr.im git - solanum.git/blame - ircd/sslproc.c
More cleanup
[solanum.git] / ircd / sslproc.c
CommitLineData
f8451915
AC
1/*
2 * sslproc.c: An interface to ssld
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
f8451915
AC
20 */
21
fe037171 22#include <rb_lib.h>
f8451915 23#include "stdinc.h"
3202e249
VY
24
25
f8451915
AC
26#include "s_conf.h"
27#include "logger.h"
28#include "listener.h"
29#include "sslproc.h"
30#include "s_serv.h"
31#include "ircd.h"
32#include "hash.h"
33#include "client.h"
34#include "send.h"
35#include "packet.h"
36
37#define ZIPSTATS_TIME 60
38
39static void collect_zipstats(void *unused);
3202e249 40static void ssl_read_ctl(rb_fde_t * F, void *data);
f8451915
AC
41static int ssld_count;
42
3202e249 43static char tmpbuf[READBUF_SIZE];
f8451915
AC
44static char nul = '\0';
45
46#define MAXPASSFD 4
47#define READSIZE 1024
48typedef struct _ssl_ctl_buf
49{
50 rb_dlink_node node;
51 char *buf;
52 size_t buflen;
53 rb_fde_t *F[MAXPASSFD];
54 int nfds;
55} ssl_ctl_buf_t;
56
57
58struct _ssl_ctl
59{
60 rb_dlink_node node;
61 int cli_count;
62 rb_fde_t *F;
63 rb_fde_t *P;
64 pid_t pid;
65 rb_dlink_list readq;
66 rb_dlink_list writeq;
eb1b303d 67 uint8_t shutdown;
0862e335 68 uint8_t dead;
e9ffc3c1 69 char version[256];
f8451915
AC
70};
71
3202e249 72static void send_new_ssl_certs_one(ssl_ctl_t * ctl, const char *ssl_cert,
c1725bda
AC
73 const char *ssl_private_key, const char *ssl_dh_params,
74 const char *ssl_cipher_list);
3202e249 75static void send_init_prng(ssl_ctl_t * ctl, prng_seed_t seedtype, const char *path);
13d8f0ed 76static void send_certfp_method(ssl_ctl_t *ctl, int method);
f8451915
AC
77
78
79static rb_dlink_list ssl_daemons;
80
196740c4
AC
81static inline uint32_t
82buf_to_uint32(char *buf)
f8451915 83{
196740c4 84 uint32_t x;
0862e335 85 memcpy(&x, buf, sizeof(x));
f8451915
AC
86 return x;
87}
88
3202e249 89static inline void
196740c4 90uint32_to_buf(char *buf, uint32_t x)
f8451915 91{
0862e335 92 memcpy(buf, &x, sizeof(x));
f8451915
AC
93 return;
94}
95
f8451915 96static ssl_ctl_t *
3202e249 97allocate_ssl_daemon(rb_fde_t * F, rb_fde_t * P, int pid)
f8451915
AC
98{
99 ssl_ctl_t *ctl;
3202e249 100
f8451915
AC
101 if(F == NULL || pid < 0)
102 return NULL;
3202e249 103 ctl = rb_malloc(sizeof(ssl_ctl_t));
f8451915
AC
104 ctl->F = F;
105 ctl->P = P;
106 ctl->pid = pid;
107 ssld_count++;
108 rb_dlinkAdd(ctl, &ctl->node, &ssl_daemons);
109 return ctl;
110}
111
112static void
3202e249 113free_ssl_daemon(ssl_ctl_t * ctl)
f8451915
AC
114{
115 rb_dlink_node *ptr;
116 ssl_ctl_buf_t *ctl_buf;
117 int x;
118 if(ctl->cli_count)
119 return;
3202e249 120
f8451915
AC
121 RB_DLINK_FOREACH(ptr, ctl->readq.head)
122 {
123 ctl_buf = ptr->data;
124 for(x = 0; x < ctl_buf->nfds; x++)
3202e249 125 rb_close(ctl_buf->F[x]);
f8451915
AC
126
127 rb_free(ctl_buf->buf);
3202e249 128 rb_free(ctl_buf);
f8451915
AC
129 }
130
131 RB_DLINK_FOREACH(ptr, ctl->writeq.head)
132 {
133 ctl_buf = ptr->data;
134 for(x = 0; x < ctl_buf->nfds; x++)
135 rb_close(ctl_buf->F[x]);
136
137 rb_free(ctl_buf->buf);
138 rb_free(ctl_buf);
139 }
140 rb_close(ctl->F);
141 rb_close(ctl->P);
142 rb_dlinkDelete(&ctl->node, &ssl_daemons);
143 rb_free(ctl);
144}
145
146static char *ssld_path;
147
148static int ssld_spin_count = 0;
149static time_t last_spin;
150static int ssld_wait = 0;
151
152
eb1b303d
SA
153void
154restart_ssld(void)
155{
156 rb_dlink_node *ptr, *next;
157 ssl_ctl_t *ctl;
158
159 RB_DLINK_FOREACH_SAFE(ptr, next, ssl_daemons.head)
160 {
161 ctl = ptr->data;
162 if(ctl->dead)
163 continue;
164 if(ctl->shutdown)
165 continue;
166 ctl->shutdown = 1;
167 ssld_count--;
168 if(!ctl->cli_count)
169 {
170 rb_kill(ctl->pid, SIGKILL);
171 free_ssl_daemon(ctl);
172 }
173 }
174
175 start_ssldaemon(ServerInfo.ssld_count, ServerInfo.ssl_cert, ServerInfo.ssl_private_key, ServerInfo.ssl_dh_params, ServerInfo.ssl_cipher_list);
176}
177
f8451915
AC
178static void
179ssl_killall(void)
180{
181 rb_dlink_node *ptr, *next;
182 ssl_ctl_t *ctl;
183 RB_DLINK_FOREACH_SAFE(ptr, next, ssl_daemons.head)
184 {
185 ctl = ptr->data;
186 if(ctl->dead)
187 continue;
188 ctl->dead = 1;
eb1b303d
SA
189 if(!ctl->shutdown)
190 ssld_count--;
3202e249 191 rb_kill(ctl->pid, SIGKILL);
eb1b303d
SA
192 if(!ctl->cli_count)
193 free_ssl_daemon(ctl);
f8451915
AC
194 }
195}
196
197static void
3202e249 198ssl_dead(ssl_ctl_t * ctl)
f8451915
AC
199{
200 if(ctl->dead)
201 return;
3202e249 202
f8451915 203 ctl->dead = 1;
3202e249 204 rb_kill(ctl->pid, SIGKILL); /* make sure the process is really gone */
eb1b303d
SA
205
206 if(!ctl->shutdown)
207 {
208 ssld_count--;
209 ilog(L_MAIN, "ssld helper died - attempting to restart");
210 sendto_realops_snomask(SNO_GENERAL, L_ALL, "ssld helper died - attempting to restart");
211 start_ssldaemon(1, ServerInfo.ssl_cert, ServerInfo.ssl_private_key, ServerInfo.ssl_dh_params, ServerInfo.ssl_cipher_list);
212 }
f8451915
AC
213}
214
215static void
3202e249 216ssl_do_pipe(rb_fde_t * F, void *data)
f8451915
AC
217{
218 int retlen;
219 ssl_ctl_t *ctl = data;
220 retlen = rb_write(F, "0", 1);
221 if(retlen == 0 || (retlen < 0 && !rb_ignore_errno(errno)))
222 {
223 ssl_dead(ctl);
224 return;
225 }
226 rb_setselect(F, RB_SELECT_READ, ssl_do_pipe, data);
227}
228
229static void
230restart_ssld_event(void *unused)
231{
232 ssld_spin_count = 0;
233 last_spin = 0;
234 ssld_wait = 0;
235 if(ServerInfo.ssld_count > get_ssld_count())
236 {
237 int start = ServerInfo.ssld_count - get_ssld_count();
238 ilog(L_MAIN, "Attempting to restart ssld processes");
536845c5 239 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Attempt to restart ssld processes");
c1725bda 240 start_ssldaemon(start, ServerInfo.ssl_cert, ServerInfo.ssl_private_key, ServerInfo.ssl_dh_params, ServerInfo.ssl_cipher_list);
f8451915
AC
241 }
242}
243
244int
c1725bda 245start_ssldaemon(int count, const char *ssl_cert, const char *ssl_private_key, const char *ssl_dh_params, const char *ssl_cipher_list)
f8451915
AC
246{
247 rb_fde_t *F1, *F2;
248 rb_fde_t *P1, *P2;
3202e249
VY
249#ifdef _WIN32
250 const char *suffix = ".exe";
251#else
252 const char *suffix = "";
253#endif
254
f8451915
AC
255 char fullpath[PATH_MAX + 1];
256 char fdarg[6];
257 const char *parv[2];
258 char buf[128];
3202e249 259 char s_pid[10];
f8451915
AC
260 pid_t pid;
261 int started = 0, i;
262
263 if(ssld_wait)
264 return 0;
265
266 if(ssld_spin_count > 20 && (rb_current_time() - last_spin < 5))
267 {
b9249347 268 ilog(L_MAIN, "ssld helper is spinning - will attempt to restart in 1 minute");
3202e249
VY
269 sendto_realops_snomask(SNO_GENERAL, L_ALL,
270 "ssld helper is spinning - will attempt to restart in 1 minute");
f8451915
AC
271 rb_event_add("restart_ssld_event", restart_ssld_event, NULL, 60);
272 ssld_wait = 1;
273 return 0;
274 }
275
276 ssld_spin_count++;
277 last_spin = rb_current_time();
3202e249 278
f8451915
AC
279 if(ssld_path == NULL)
280 {
5203cba5 281 snprintf(fullpath, sizeof(fullpath), "%s/ssld%s", PKGLIBEXECDIR, suffix);
3202e249 282
f8451915
AC
283 if(access(fullpath, X_OK) == -1)
284 {
5203cba5 285 snprintf(fullpath, sizeof(fullpath), "%s/bin/ssld%s",
3202e249 286 ConfigFileEntry.dpath, suffix);
f8451915
AC
287 if(access(fullpath, X_OK) == -1)
288 {
3202e249 289 ilog(L_MAIN,
c74836dc
NPB
290 "Unable to execute ssld%s in %s or %s/bin",
291 suffix, PKGLIBEXECDIR, ConfigFileEntry.dpath);
3202e249 292 return 0;
f8451915
AC
293 }
294 }
295 ssld_path = rb_strdup(fullpath);
296 }
b697c329 297 rb_strlcpy(buf, "-ircd ssld daemon", sizeof(buf));
f8451915
AC
298 parv[0] = buf;
299 parv[1] = NULL;
300
301 for(i = 0; i < count; i++)
302 {
303 ssl_ctl_t *ctl;
eda22d87
JT
304 if(rb_socketpair(AF_UNIX, SOCK_DGRAM, 0, &F1, &F2, "SSL/TLS handle passing socket") == -1)
305 {
306 ilog(L_MAIN, "Unable to create ssld - rb_socketpair failed: %s", strerror(errno));
307 return started;
308 }
55abcbb2 309
f8451915
AC
310 rb_set_buffers(F1, READBUF_SIZE);
311 rb_set_buffers(F2, READBUF_SIZE);
5203cba5 312 snprintf(fdarg, sizeof(fdarg), "%d", rb_get_fd(F2));
3202e249 313 rb_setenv("CTL_FD", fdarg, 1);
cf09122b
JT
314 if(rb_pipe(&P1, &P2, "SSL/TLS pipe") == -1)
315 {
316 ilog(L_MAIN, "Unable to create ssld - rb_pipe failed: %s", strerror(errno));
317 return started;
318 }
5203cba5 319 snprintf(fdarg, sizeof(fdarg), "%d", rb_get_fd(P1));
3202e249 320 rb_setenv("CTL_PIPE", fdarg, 1);
5203cba5 321 snprintf(s_pid, sizeof(s_pid), "%d", (int)getpid());
3202e249
VY
322 rb_setenv("CTL_PPID", s_pid, 1);
323#ifdef _WIN32
324 SetHandleInformation((HANDLE) rb_get_fd(F2), HANDLE_FLAG_INHERIT, 1);
325 SetHandleInformation((HANDLE) rb_get_fd(P1), HANDLE_FLAG_INHERIT, 1);
326#endif
327
328 pid = rb_spawn_process(ssld_path, (const char **) parv);
f8451915
AC
329 if(pid == -1)
330 {
331 ilog(L_MAIN, "Unable to create ssld: %s\n", strerror(errno));
332 rb_close(F1);
333 rb_close(F2);
334 rb_close(P1);
335 rb_close(P2);
336 return started;
337 }
338 started++;
339 rb_close(F2);
340 rb_close(P1);
341 ctl = allocate_ssl_daemon(F1, P2, pid);
bfc44622 342 if(ircd_ssl_ok)
13d8f0ed 343 {
e861902f 344 send_init_prng(ctl, RB_PRNG_DEFAULT, NULL);
13d8f0ed
AC
345 send_certfp_method(ctl, ConfigFileEntry.certfp_method);
346
347 if(ssl_cert != NULL && ssl_private_key != NULL)
348 send_new_ssl_certs_one(ctl, ssl_cert, ssl_private_key,
c1725bda
AC
349 ssl_dh_params != NULL ? ssl_dh_params : "",
350 ssl_cipher_list != NULL ? ssl_cipher_list : "");
13d8f0ed 351 }
f8451915
AC
352 ssl_read_ctl(ctl->F, ctl);
353 ssl_do_pipe(P2, ctl);
3202e249 354
f8451915 355 }
3202e249 356 return started;
f8451915
AC
357}
358
359static void
3202e249 360ssl_process_zipstats(ssl_ctl_t * ctl, ssl_ctl_buf_t * ctl_buf)
f8451915
AC
361{
362 struct Client *server;
363 struct ZipStats *zips;
4f7a1fee 364 char *parv[7];
32fb5895 365 (void) rb_string_to_array(ctl_buf->buf, parv, 6);
f8451915
AC
366 server = find_server(NULL, parv[1]);
367 if(server == NULL || server->localClient == NULL || !IsCapable(server, CAP_ZIP))
368 return;
369 if(server->localClient->zipstats == NULL)
370 server->localClient->zipstats = rb_malloc(sizeof(struct ZipStats));
3202e249 371
f8451915
AC
372 zips = server->localClient->zipstats;
373
374 zips->in += strtoull(parv[2], NULL, 10);
375 zips->in_wire += strtoull(parv[3], NULL, 10);
376 zips->out += strtoull(parv[4], NULL, 10);
377 zips->out_wire += strtoull(parv[5], NULL, 10);
3202e249 378
f8451915 379 if(zips->in > 0)
3202e249 380 zips->in_ratio = ((double) (zips->in - zips->in_wire) / (double) zips->in) * 100.00;
f8451915
AC
381 else
382 zips->in_ratio = 0;
3202e249 383
f8451915 384 if(zips->out > 0)
3202e249 385 zips->out_ratio = ((double) (zips->out - zips->out_wire) / (double) zips->out) * 100.00;
f8451915
AC
386 else
387 zips->out_ratio = 0;
388}
389
390static void
3202e249 391ssl_process_dead_fd(ssl_ctl_t * ctl, ssl_ctl_buf_t * ctl_buf)
f8451915
AC
392{
393 struct Client *client_p;
394 char reason[256];
196740c4 395 uint32_t fd;
f8451915
AC
396
397 if(ctl_buf->buflen < 6)
3202e249
VY
398 return; /* bogus message..drop it.. XXX should warn here */
399
196740c4 400 fd = buf_to_uint32(&ctl_buf->buf[1]);
f8451915 401 rb_strlcpy(reason, &ctl_buf->buf[5], sizeof(reason));
b5b4a0e7 402 client_p = find_cli_connid_hash(fd);
f8451915
AC
403 if(client_p == NULL)
404 return;
42d609f6
JT
405 if(IsAnyServer(client_p) || IsRegistered(client_p))
406 {
407 /* read any last moment ERROR, QUIT or the like -- jilles */
408 if (!strcmp(reason, "Remote host closed the connection"))
409 read_packet(client_p->localClient->F, client_p);
410 if (IsAnyDead(client_p))
411 return;
412 }
f8451915 413 if(IsAnyServer(client_p))
81c5873e 414 {
2a073ca2 415 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) && !IsServer(client_p) ? L_NETWIDE : L_ALL, "ssld error for %s: %s", client_p->name, reason);
81c5873e
JT
416 ilog(L_SERVER, "ssld error for %s: %s", log_client_name(client_p, SHOW_IP), reason);
417 }
f8451915
AC
418 exit_client(client_p, client_p, &me, reason);
419}
420
ebe33dbf
AC
421
422static void
423ssl_process_cipher_string(ssl_ctl_t *ctl, ssl_ctl_buf_t *ctl_buf)
424{
425 struct Client *client_p;
426 const char *cstring;
427 uint32_t fd;
428
429 if(ctl_buf->buflen < 6)
430 return; /* bogus message..drop it.. XXX should warn here */
431
432 fd = buf_to_uint32(&ctl_buf->buf[1]);
433 cstring = (const char *)&ctl_buf->buf[5];
434
435 if(EmptyString(cstring))
436 return;
437
b5b4a0e7 438 client_p = find_cli_connid_hash(fd);
ebe33dbf
AC
439 if(client_p != NULL && client_p->localClient != NULL)
440 {
441 rb_free(client_p->localClient->cipher_string);
442 client_p->localClient->cipher_string = rb_strdup(cstring);
443 }
444}
445
446
7247337a
JT
447static void
448ssl_process_certfp(ssl_ctl_t * ctl, ssl_ctl_buf_t * ctl_buf)
449{
450 struct Client *client_p;
196740c4
AC
451 uint32_t fd;
452 uint32_t len;
7247337a 453 uint8_t *certfp;
8eda114a 454 char *certfp_string;
7247337a 455
772c95cc 456 if(ctl_buf->buflen > 5 + RB_SSL_CERTFP_LEN)
7247337a
JT
457 return; /* bogus message..drop it.. XXX should warn here */
458
196740c4
AC
459 fd = buf_to_uint32(&ctl_buf->buf[1]);
460 len = buf_to_uint32(&ctl_buf->buf[5]);
e6bbb410 461 certfp = (uint8_t *)&ctl_buf->buf[9];
b5b4a0e7 462 client_p = find_cli_connid_hash(fd);
7247337a
JT
463 if(client_p == NULL)
464 return;
8eda114a 465 rb_free(client_p->certfp);
e6bbb410 466 certfp_string = rb_malloc(len * 2 + 1);
66769bc1 467 for(uint32_t i = 0; i < len; i++)
5203cba5 468 snprintf(certfp_string + 2 * i, 3, "%02x",
7247337a 469 certfp[i]);
8eda114a 470 client_p->certfp = certfp_string;
7247337a
JT
471}
472
f8451915 473static void
3202e249 474ssl_process_cmd_recv(ssl_ctl_t * ctl)
f8451915
AC
475{
476 static const char *cannot_setup_ssl = "ssld cannot setup ssl, check your certificates and private key";
477 static const char *no_ssl_or_zlib = "ssld has neither SSL/TLS or zlib support killing all sslds";
3202e249 478 rb_dlink_node *ptr, *next;
f8451915 479 ssl_ctl_buf_t *ctl_buf;
66769bc1 480 unsigned long len;
e9ffc3c1 481
f8451915
AC
482 if(ctl->dead)
483 return;
e9ffc3c1 484
f8451915
AC
485 RB_DLINK_FOREACH_SAFE(ptr, next, ctl->readq.head)
486 {
3202e249
VY
487 ctl_buf = ptr->data;
488 switch (*ctl_buf->buf)
f8451915 489 {
3202e249 490 case 'N':
bfc44622 491 ircd_ssl_ok = false; /* ssld says it can't do ssl/tls */
3202e249
VY
492 break;
493 case 'D':
494 ssl_process_dead_fd(ctl, ctl_buf);
495 break;
ebe33dbf
AC
496 case 'C':
497 ssl_process_cipher_string(ctl, ctl_buf);
498 break;
7247337a
JT
499 case 'F':
500 ssl_process_certfp(ctl, ctl_buf);
501 break;
3202e249
VY
502 case 'S':
503 ssl_process_zipstats(ctl, ctl_buf);
504 break;
505 case 'I':
bfc44622 506 ircd_ssl_ok = false;
32ea9d3d 507 ilog(L_MAIN, "%s", cannot_setup_ssl);
481b443b 508 sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s", cannot_setup_ssl);
f1709d5a 509 break;
3202e249 510 case 'U':
43f06d8d 511 ircd_zlib_ok = 0;
bfc44622 512 ircd_ssl_ok = false;
32ea9d3d 513 ilog(L_MAIN, "%s", no_ssl_or_zlib);
481b443b 514 sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s", no_ssl_or_zlib);
3202e249 515 ssl_killall();
7cc67225 516 return;
e9ffc3c1
SA
517 case 'V':
518 len = ctl_buf->buflen - 1;
519 if (len > sizeof(ctl->version) - 1)
520 len = sizeof(ctl->version) - 1;
521 strncpy(ctl->version, &ctl_buf->buf[1], len);
3202e249 522 case 'z':
43f06d8d 523 ircd_zlib_ok = 0;
3202e249
VY
524 break;
525 default:
526 ilog(L_MAIN, "Received invalid command from ssld: %s", ctl_buf->buf);
527 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Received invalid command from ssld");
528 break;
f8451915
AC
529 }
530 rb_dlinkDelete(ptr, &ctl->readq);
531 rb_free(ctl_buf->buf);
532 rb_free(ctl_buf);
533 }
534
535}
536
537
538static void
3202e249 539ssl_read_ctl(rb_fde_t * F, void *data)
f8451915
AC
540{
541 ssl_ctl_buf_t *ctl_buf;
542 ssl_ctl_t *ctl = data;
543 int retlen;
544
545 if(ctl->dead)
546 return;
547 do
548 {
549 ctl_buf = rb_malloc(sizeof(ssl_ctl_buf_t));
550 ctl_buf->buf = rb_malloc(READSIZE);
551 retlen = rb_recv_fd_buf(ctl->F, ctl_buf->buf, READSIZE, ctl_buf->F, 4);
552 ctl_buf->buflen = retlen;
3202e249
VY
553 if(retlen <= 0)
554 {
f8451915
AC
555 rb_free(ctl_buf->buf);
556 rb_free(ctl_buf);
557 }
558 else
559 rb_dlinkAddTail(ctl_buf, &ctl_buf->node, &ctl->readq);
3202e249
VY
560 }
561 while(retlen > 0);
562
f8451915
AC
563 if(retlen == 0 || (retlen < 0 && !rb_ignore_errno(errno)))
564 {
565 ssl_dead(ctl);
566 return;
3202e249 567 }
f8451915
AC
568 ssl_process_cmd_recv(ctl);
569 rb_setselect(ctl->F, RB_SELECT_READ, ssl_read_ctl, ctl);
570}
571
572static ssl_ctl_t *
573which_ssld(void)
574{
575 ssl_ctl_t *ctl, *lowest = NULL;
576 rb_dlink_node *ptr;
3202e249 577
f8451915
AC
578 RB_DLINK_FOREACH(ptr, ssl_daemons.head)
579 {
580 ctl = ptr->data;
581 if(ctl->dead)
582 continue;
eb1b303d
SA
583 if(ctl->shutdown)
584 continue;
3202e249
VY
585 if(lowest == NULL)
586 {
f8451915
AC
587 lowest = ctl;
588 continue;
589 }
590 if(ctl->cli_count < lowest->cli_count)
591 lowest = ctl;
592 }
3202e249 593 return (lowest);
f8451915
AC
594}
595
596static void
3202e249 597ssl_write_ctl(rb_fde_t * F, void *data)
f8451915
AC
598{
599 ssl_ctl_t *ctl = data;
600 ssl_ctl_buf_t *ctl_buf;
601 rb_dlink_node *ptr, *next;
602 int retlen, x;
603
604 if(ctl->dead)
605 return;
606
607 RB_DLINK_FOREACH_SAFE(ptr, next, ctl->writeq.head)
608 {
609 ctl_buf = ptr->data;
610 /* in theory unix sock_dgram shouldn't ever short write this.. */
3202e249 611 retlen = rb_send_fd_buf(ctl->F, ctl_buf->F, ctl_buf->nfds, ctl_buf->buf, ctl_buf->buflen, ctl->pid);
f8451915
AC
612 if(retlen > 0)
613 {
614 rb_dlinkDelete(ptr, &ctl->writeq);
615 for(x = 0; x < ctl_buf->nfds; x++)
616 rb_close(ctl_buf->F[x]);
617 rb_free(ctl_buf->buf);
618 rb_free(ctl_buf);
3202e249 619
f8451915
AC
620 }
621 if(retlen == 0 || (retlen < 0 && !rb_ignore_errno(errno)))
622 {
623 ssl_dead(ctl);
624 return;
3202e249
VY
625 }
626 else
627 {
f8451915
AC
628 rb_setselect(ctl->F, RB_SELECT_WRITE, ssl_write_ctl, ctl);
629 }
630 }
631}
632
633static void
3202e249 634ssl_cmd_write_queue(ssl_ctl_t * ctl, rb_fde_t ** F, int count, const void *buf, size_t buflen)
f8451915
AC
635{
636 ssl_ctl_buf_t *ctl_buf;
3202e249 637 int x;
f8451915
AC
638
639 /* don't bother */
640 if(ctl->dead)
641 return;
3202e249 642
f8451915
AC
643 ctl_buf = rb_malloc(sizeof(ssl_ctl_buf_t));
644 ctl_buf->buf = rb_malloc(buflen);
645 memcpy(ctl_buf->buf, buf, buflen);
646 ctl_buf->buflen = buflen;
3202e249 647
f8451915
AC
648 for(x = 0; x < count && x < MAXPASSFD; x++)
649 {
3202e249 650 ctl_buf->F[x] = F[x];
f8451915
AC
651 }
652 ctl_buf->nfds = count;
653 rb_dlinkAddTail(ctl_buf, &ctl_buf->node, &ctl->writeq);
654 ssl_write_ctl(ctl->F, ctl);
655}
656
657
658static void
c1725bda 659send_new_ssl_certs_one(ssl_ctl_t * ctl, const char *ssl_cert, const char *ssl_private_key, const char *ssl_dh_params, const char *ssl_cipher_list)
f8451915
AC
660{
661 size_t len;
662
3202e249 663 len = strlen(ssl_cert) + strlen(ssl_private_key) + strlen(ssl_dh_params) + 5;
f8451915
AC
664 if(len > sizeof(tmpbuf))
665 {
3202e249
VY
666 sendto_realops_snomask(SNO_GENERAL, L_ALL,
667 "Parameters for send_new_ssl_certs_one too long (%zu > %zu) to pass to ssld, not sending...",
668 len, sizeof(tmpbuf));
669 ilog(L_MAIN,
670 "Parameters for send_new_ssl_certs_one too long (%zu > %zu) to pass to ssld, not sending...",
671 len, sizeof(tmpbuf));
f8451915
AC
672 return;
673 }
5203cba5 674 len = snprintf(tmpbuf, sizeof(tmpbuf), "K%c%s%c%s%c%s%c%s%c", nul, ssl_cert, nul,
0a604c72
AC
675 ssl_private_key, nul, ssl_dh_params, nul,
676 ssl_cipher_list != NULL ? ssl_cipher_list : "", nul);
f8451915
AC
677 ssl_cmd_write_queue(ctl, NULL, 0, tmpbuf, len);
678}
679
680static void
3202e249 681send_init_prng(ssl_ctl_t * ctl, prng_seed_t seedtype, const char *path)
f8451915
AC
682{
683 size_t len;
684 const char *s;
0862e335 685 uint8_t seed = (uint8_t) seedtype;
f8451915
AC
686
687 if(path == NULL)
688 s = "";
689 else
690 s = path;
691
692 len = strlen(s) + 3;
693 if(len > sizeof(tmpbuf))
694 {
3202e249
VY
695 sendto_realops_snomask(SNO_GENERAL, L_ALL,
696 "Parameters for send_init_prng too long (%zd > %zd) to pass to ssld, not sending...",
697 len, sizeof(tmpbuf));
698 ilog(L_MAIN,
699 "Parameters for send_init_prng too long (%zd > %zd) to pass to ssld, not sending...",
700 len, sizeof(tmpbuf));
f8451915 701 return;
3202e249
VY
702
703 }
5203cba5 704 len = snprintf(tmpbuf, sizeof(tmpbuf), "I%c%s%c", seed, s, nul);
f8451915
AC
705 ssl_cmd_write_queue(ctl, NULL, 0, tmpbuf, len);
706}
707
13d8f0ed
AC
708static void
709send_certfp_method(ssl_ctl_t *ctl, int method)
710{
711 char buf[5];
712
713 buf[0] = 'F';
196740c4 714 uint32_to_buf(&buf[1], method);
13d8f0ed
AC
715 ssl_cmd_write_queue(ctl, NULL, 0, buf, sizeof(buf));
716}
717
f8451915 718void
c1725bda 719send_new_ssl_certs(const char *ssl_cert, const char *ssl_private_key, const char *ssl_dh_params, const char *ssl_cipher_list)
f8451915
AC
720{
721 rb_dlink_node *ptr;
722 if(ssl_cert == NULL || ssl_private_key == NULL || ssl_dh_params == NULL)
723 {
bfc44622 724 ircd_ssl_ok = false;
f8451915
AC
725 return;
726 }
727 RB_DLINK_FOREACH(ptr, ssl_daemons.head)
728 {
729 ssl_ctl_t *ctl = ptr->data;
c1725bda 730 send_new_ssl_certs_one(ctl, ssl_cert, ssl_private_key, ssl_dh_params, ssl_cipher_list);
f8451915
AC
731 }
732}
733
734
3202e249 735ssl_ctl_t *
196740c4 736start_ssld_accept(rb_fde_t * sslF, rb_fde_t * plainF, uint32_t id)
f8451915
AC
737{
738 rb_fde_t *F[2];
739 ssl_ctl_t *ctl;
740 char buf[5];
741 F[0] = sslF;
742 F[1] = plainF;
743
744 buf[0] = 'A';
196740c4 745 uint32_to_buf(&buf[1], id);
f8451915 746 ctl = which_ssld();
5e270e7d
SA
747 if(!ctl)
748 return NULL;
f8451915
AC
749 ctl->cli_count++;
750 ssl_cmd_write_queue(ctl, F, 2, buf, sizeof(buf));
751 return ctl;
752}
753
754ssl_ctl_t *
196740c4 755start_ssld_connect(rb_fde_t * sslF, rb_fde_t * plainF, uint32_t id)
f8451915
AC
756{
757 rb_fde_t *F[2];
758 ssl_ctl_t *ctl;
759 char buf[5];
760 F[0] = sslF;
761 F[1] = plainF;
762
763 buf[0] = 'C';
196740c4 764 uint32_to_buf(&buf[1], id);
f8451915
AC
765
766 ctl = which_ssld();
5e270e7d
SA
767 if(!ctl)
768 return NULL;
f8451915
AC
769 ctl->cli_count++;
770 ssl_cmd_write_queue(ctl, F, 2, buf, sizeof(buf));
3202e249 771 return ctl;
f8451915
AC
772}
773
3202e249
VY
774void
775ssld_decrement_clicount(ssl_ctl_t * ctl)
f8451915
AC
776{
777 if(ctl == NULL)
778 return;
779
780 ctl->cli_count--;
eb1b303d
SA
781 if(ctl->shutdown && !ctl->cli_count)
782 {
783 ctl->dead = 1;
784 rb_kill(ctl->pid, SIGKILL);
785 }
f8451915
AC
786 if(ctl->dead && !ctl->cli_count)
787 {
788 free_ssl_daemon(ctl);
789 }
790}
791
55abcbb2 792/*
f8451915 793 * what we end up sending to the ssld process for ziplinks is the following
55abcbb2
KB
794 * Z[ourfd][level][RECVQ]
795 * Z = ziplinks command = buf[0]
f8451915
AC
796 * ourfd = Our end of the socketpair = buf[1..4]
797 * level = zip level buf[5]
798 * recvqlen = our recvq len = buf[6-7]
799 * recvq = any data we read prior to starting ziplinks
800 */
801void
802start_zlib_session(void *data)
803{
3202e249 804 struct Client *server = (struct Client *) data;
0862e335
VY
805 uint16_t recvqlen;
806 uint8_t level;
f8451915
AC
807 void *xbuf;
808
809 rb_fde_t *F[2];
810 rb_fde_t *xF1, *xF2;
811 char *buf;
07c2bb75 812 char buf2[9];
f8451915
AC
813 void *recvq_start;
814
196740c4 815 size_t hdr = (sizeof(uint8_t) * 2) + sizeof(uint32_t);
f8451915
AC
816 size_t len;
817 int cpylen, left;
818
819 server->localClient->event = NULL;
820
821 recvqlen = rb_linebuf_len(&server->localClient->buf_recvq);
3202e249 822
f8451915
AC
823 len = recvqlen + hdr;
824
825 if(len > READBUF_SIZE)
826 {
3202e249
VY
827 sendto_realops_snomask(SNO_GENERAL, L_ALL,
828 "ssld - attempted to pass message of %zd len, max len %d, giving up",
829 len, READBUF_SIZE);
f8451915
AC
830 ilog(L_MAIN, "ssld - attempted to pass message of %zd len, max len %d, giving up", len, READBUF_SIZE);
831 exit_client(server, server, server, "ssld readbuf exceeded");
832 return;
833 }
834
3202e249 835 buf = rb_malloc(len);
f8451915
AC
836 level = ConfigFileEntry.compression_level;
837
196740c4 838 uint32_to_buf(&buf[1], rb_get_fd(server->localClient->F));
3202e249 839 buf[5] = (char) level;
f8451915 840
3202e249 841 recvq_start = &buf[6];
f8451915
AC
842 server->localClient->zipstats = rb_malloc(sizeof(struct ZipStats));
843
844 xbuf = recvq_start;
845 left = recvqlen;
846
847 do
848 {
849 cpylen = rb_linebuf_get(&server->localClient->buf_recvq, xbuf, left, LINEBUF_PARTIAL, LINEBUF_RAW);
850 left -= cpylen;
3202e249
VY
851 xbuf = (void *) (((uintptr_t) xbuf) + cpylen);
852 }
853 while(cpylen > 0);
f8451915
AC
854
855 /* Pass the socket to ssld. */
856 *buf = 'Z';
eda22d87
JT
857 if(rb_socketpair(AF_UNIX, SOCK_STREAM, 0, &xF1, &xF2, "Initial zlib socketpairs") == -1)
858 {
859 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Error creating zlib socketpair - %s", strerror(errno));
860 ilog(L_MAIN, "Error creating zlib socketpairs - %s", strerror(errno));
861 exit_client(server, server, server, "Error creating zlib socketpair");
b9ff4868 862 rb_free(buf);
eda22d87
JT
863 return;
864 }
55abcbb2 865
07c2bb75
JT
866 if(IsSSL(server))
867 {
868 /* tell ssld the new connid for the ssl part*/
869 buf2[0] = 'Y';
196740c4
AC
870 uint32_to_buf(&buf2[1], rb_get_fd(server->localClient->F));
871 uint32_to_buf(&buf2[5], rb_get_fd(xF2));
07c2bb75
JT
872 ssl_cmd_write_queue(server->localClient->ssl_ctl, NULL, 0, buf2, sizeof(buf2));
873 }
874
875
3202e249 876 F[0] = server->localClient->F;
f8451915 877 F[1] = xF1;
1b6568f6 878 del_from_zconnid_hash(server);
f8451915
AC
879 server->localClient->F = xF2;
880 /* need to redo as what we did before isn't valid now */
a0130f9d 881 uint32_to_buf(&buf[1], server->localClient->zconnid);
1b6568f6 882 add_to_zconnid_hash(server);
a4165b42
AS
883
884 server->localClient->z_ctl = which_ssld();
5e270e7d
SA
885 if(!server->localClient->z_ctl)
886 {
887 exit_client(server, server, server, "Error finding available ssld");
888 rb_free(buf);
889 return;
890 }
a4165b42
AS
891 server->localClient->z_ctl->cli_count++;
892 ssl_cmd_write_queue(server->localClient->z_ctl, F, 2, buf, len);
f8451915
AC
893 rb_free(buf);
894}
895
896static void
897collect_zipstats(void *unused)
898{
899 rb_dlink_node *ptr;
900 struct Client *target_p;
196740c4 901 char buf[sizeof(uint8_t) + sizeof(uint32_t) + HOSTLEN];
f8451915
AC
902 void *odata;
903 size_t len;
196740c4 904 uint32_t id;
f8451915
AC
905
906 buf[0] = 'S';
196740c4 907 odata = buf + sizeof(uint8_t) + sizeof(uint32_t);
f8451915
AC
908
909 RB_DLINK_FOREACH(ptr, serv_list.head)
910 {
911 target_p = ptr->data;
912 if(IsCapable(target_p, CAP_ZIP))
913 {
0862e335 914 len = sizeof(uint8_t) + sizeof(uint32_t);
f8451915
AC
915
916 id = rb_get_fd(target_p->localClient->F);
196740c4 917 uint32_to_buf(&buf[1], id);
3202e249
VY
918 rb_strlcpy(odata, target_p->name, (sizeof(buf) - len));
919 len += strlen(odata) + 1; /* Get the \0 as well */
a4165b42 920 ssl_cmd_write_queue(target_p->localClient->z_ctl, NULL, 0, buf, len);
f8451915
AC
921 }
922 }
923}
924
925static void
926cleanup_dead_ssl(void *unused)
927{
928 rb_dlink_node *ptr, *next;
929 ssl_ctl_t *ctl;
930 RB_DLINK_FOREACH_SAFE(ptr, next, ssl_daemons.head)
931 {
932 ctl = ptr->data;
933 if(ctl->dead && !ctl->cli_count)
934 {
3202e249 935 free_ssl_daemon(ctl);
f8451915
AC
936 }
937 }
938}
939
940int
941get_ssld_count(void)
942{
943 return ssld_count;
944}
945
035d9143 946void
e9ffc3c1 947ssld_foreach_info(void (*func)(void *data, pid_t pid, int cli_count, enum ssld_status status, const char *version), void *data)
035d9143
SA
948{
949 rb_dlink_node *ptr, *next;
950 ssl_ctl_t *ctl;
951 RB_DLINK_FOREACH_SAFE(ptr, next, ssl_daemons.head)
952 {
953 ctl = ptr->data;
954 func(data, ctl->pid, ctl->cli_count,
955 ctl->dead ? SSLD_DEAD :
e9ffc3c1
SA
956 (ctl->shutdown ? SSLD_SHUTDOWN : SSLD_ACTIVE),
957 ctl->version);
035d9143
SA
958 }
959}
960
3202e249
VY
961void
962init_ssld(void)
f8451915
AC
963{
964 rb_event_addish("collect_zipstats", collect_zipstats, NULL, ZIPSTATS_TIME);
c42a66be 965 rb_event_addish("cleanup_dead_ssld", cleanup_dead_ssl, NULL, 60);
f8451915 966}