29 |
|
#include "channel.h" |
30 |
|
#include "channel_mode.h" |
31 |
|
#include "client.h" |
32 |
– |
#include "common.h" |
32 |
|
#include "event.h" |
33 |
|
#include "fdlist.h" |
34 |
|
#include "hash.h" |
36 |
|
#include "ircd_signal.h" |
37 |
|
#include "s_gline.h" |
38 |
|
#include "motd.h" |
40 |
– |
#include "ircd_handler.h" |
41 |
– |
#include "msg.h" /* msgtab */ |
39 |
|
#include "hostmask.h" |
40 |
|
#include "numeric.h" |
41 |
|
#include "packet.h" |
72 |
|
struct admin_info AdminInfo = { NULL, NULL, NULL }; |
73 |
|
struct Counter Count = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; |
74 |
|
struct ServerState_t server_state = { 0 }; |
75 |
< |
struct logging_entry ConfigLoggingEntry = { 1, {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0} }; |
75 |
> |
struct logging_entry ConfigLoggingEntry = { 1, 1 }; |
76 |
|
struct ServerStatistics ServerStats; |
77 |
|
struct timeval SystemTime; |
78 |
|
struct Client me; /* That's me */ |
178 |
|
|
179 |
|
if (gettimeofday(&newtime, NULL) == -1) |
180 |
|
{ |
181 |
< |
ilog(L_ERROR, "Clock Failure (%s), TS can be corrupted", |
181 |
> |
ilog(LOG_TYPE_IRCD, "Clock Failure (%s), TS can be corrupted", |
182 |
|
strerror(errno)); |
183 |
|
sendto_realops_flags(UMODE_ALL, L_ALL, |
184 |
|
"Clock Failure (%s), TS can be corrupted", |
325 |
|
add_capability("QS", CAP_QS, 1); |
326 |
|
add_capability("EOB", CAP_EOB, 1); |
327 |
|
add_capability("TS6", CAP_TS6, 0); |
331 |
– |
add_capability("ZIP", CAP_ZIP, 0); |
328 |
|
add_capability("CLUSTER", CAP_CLUSTER, 1); |
329 |
|
add_capability("SVS", CAP_SVS, 1); |
330 |
|
#ifdef HALFOPS |
350 |
|
size_t nbytes = snprintf(buff, sizeof(buff), "%u\n", pid); |
351 |
|
|
352 |
|
if ((fbputs(buff, fb, nbytes) == -1)) |
353 |
< |
ilog(L_ERROR, "Error writing %u to pid file %s (%s)", |
353 |
> |
ilog(LOG_TYPE_IRCD, "Error writing %u to pid file %s (%s)", |
354 |
|
pid, filename, strerror(errno)); |
355 |
|
|
356 |
|
fbclose(fb); |
358 |
|
} |
359 |
|
else |
360 |
|
{ |
361 |
< |
ilog(L_ERROR, "Error opening pid file %s", filename); |
361 |
> |
ilog(LOG_TYPE_IRCD, "Error opening pid file %s", filename); |
362 |
|
} |
363 |
|
} |
364 |
|
|
445 |
|
{ |
446 |
|
const char *s; |
447 |
|
|
448 |
< |
fprintf(stderr, "ERROR: Could not initialize the SSL context -- %s\n", |
448 |
> |
fprintf(stderr, "ERROR: Could not initialize the SSL Server context -- %s\n", |
449 |
|
s = ERR_lib_error_string(ERR_get_error())); |
450 |
< |
ilog(L_CRIT, "ERROR: Could not initialize the SSL context -- %s\n", s); |
450 |
> |
ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Server context -- %s\n", s); |
451 |
|
} |
452 |
|
|
453 |
|
SSL_CTX_set_options(ServerInfo.server_ctx, SSL_OP_NO_SSLv2); |
454 |
|
SSL_CTX_set_options(ServerInfo.server_ctx, SSL_OP_TLS_ROLLBACK_BUG|SSL_OP_ALL); |
455 |
|
SSL_CTX_set_verify(ServerInfo.server_ctx, SSL_VERIFY_NONE, NULL); |
456 |
|
|
457 |
+ |
if ((ServerInfo.client_ctx = SSL_CTX_new(SSLv23_client_method())) == NULL) |
458 |
+ |
{ |
459 |
+ |
const char *s; |
460 |
+ |
|
461 |
+ |
fprintf(stderr, "ERROR: Could not initialize the SSL Client context -- %s\n", |
462 |
+ |
s = ERR_lib_error_string(ERR_get_error())); |
463 |
+ |
ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Client context -- %s\n", s); |
464 |
+ |
} |
465 |
+ |
|
466 |
+ |
SSL_CTX_set_options(ServerInfo.client_ctx, SSL_OP_NO_SSLv2); |
467 |
+ |
SSL_CTX_set_options(ServerInfo.client_ctx, SSL_OP_TLS_ROLLBACK_BUG|SSL_OP_ALL); |
468 |
+ |
SSL_CTX_set_verify(ServerInfo.client_ctx, SSL_VERIFY_NONE, NULL); |
469 |
+ |
|
470 |
|
bio_spare_fd = save_spare_fd("SSL private key validation"); |
471 |
|
#endif /* HAVE_LIBCRYPTO */ |
472 |
|
} |
482 |
|
{ |
483 |
|
iorecv_cb = register_callback("iorecv", iorecv_default); |
484 |
|
iosend_cb = register_callback("iosend", iosend_default); |
476 |
– |
iorecvctrl_cb = register_callback("iorecvctrl", NULL); |
477 |
– |
iosendctrl_cb = register_callback("iosendctrl", NULL); |
485 |
|
} |
486 |
|
|
487 |
|
int |
556 |
|
eventInit(); |
557 |
|
/* We need this to initialise the fd array before anything else */ |
558 |
|
fdlist_init(); |
559 |
< |
init_log(logFileName); |
559 |
> |
log_add_file(LOG_TYPE_IRCD, 0, logFileName); |
560 |
|
check_can_use_v6(); |
561 |
|
init_comm(); /* This needs to be setup early ! -- adrian */ |
562 |
|
/* Check if there is pidfile and daemon already running */ |
585 |
|
|
586 |
|
if (EmptyString(ServerInfo.sid)) |
587 |
|
{ |
588 |
< |
ilog(L_CRIT, "ERROR: No server id specified in serverinfo block."); |
588 |
> |
ilog(LOG_TYPE_IRCD, "ERROR: No server id specified in serverinfo block."); |
589 |
|
exit(EXIT_FAILURE); |
590 |
|
} |
591 |
|
|
593 |
|
|
594 |
|
if (EmptyString(ServerInfo.name)) |
595 |
|
{ |
596 |
< |
ilog(L_CRIT, "ERROR: No server name specified in serverinfo block."); |
596 |
> |
ilog(LOG_TYPE_IRCD, "ERROR: No server name specified in serverinfo block."); |
597 |
|
exit(EXIT_FAILURE); |
598 |
|
} |
599 |
|
|
602 |
|
/* serverinfo{} description must exist. If not, error out.*/ |
603 |
|
if (EmptyString(ServerInfo.description)) |
604 |
|
{ |
605 |
< |
ilog(L_CRIT, "ERROR: No server description specified in serverinfo block."); |
605 |
> |
ilog(LOG_TYPE_IRCD, "ERROR: No server description specified in serverinfo block."); |
606 |
|
exit(EXIT_FAILURE); |
607 |
|
} |
608 |
|
|
625 |
|
|
626 |
|
if (chdir(MODPATH)) |
627 |
|
{ |
628 |
< |
ilog(L_CRIT, "Could not load core modules. Terminating!"); |
628 |
> |
ilog(LOG_TYPE_IRCD, "Could not load core modules. Terminating!"); |
629 |
|
exit(EXIT_FAILURE); |
630 |
|
} |
631 |
|
|
648 |
|
|
649 |
|
write_pidfile(pidFileName); |
650 |
|
|
651 |
< |
ilog(L_NOTICE, "Server Ready"); |
651 |
> |
ilog(LOG_TYPE_IRCD, "Server Ready"); |
652 |
|
|
653 |
|
eventAddIsh("cleanup_glines", cleanup_glines, NULL, CLEANUP_GLINES_TIME); |
654 |
|
eventAddIsh("cleanup_tklines", cleanup_tklines, NULL, CLEANUP_TKLINES_TIME); |
657 |
|
/* No, 'cause after a restart it would cause all sorts of nick collides */ |
658 |
|
eventAddIsh("try_connections", try_connections, NULL, STARTUP_CONNECTIONS_TIME); |
659 |
|
|
653 |
– |
eventAddIsh("collect_zipstats", collect_zipstats, NULL, ZIPSTATS_TIME); |
654 |
– |
|
660 |
|
/* Setup the timeout check. I'll shift it later :) -- adrian */ |
661 |
|
eventAddIsh("comm_checktimeouts", comm_checktimeouts, NULL, 1); |
662 |
|
|