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