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