36 |
|
#include "ircd_signal.h" |
37 |
|
#include "s_gline.h" |
38 |
|
#include "motd.h" |
39 |
+ |
#include "conf.h" |
40 |
|
#include "hostmask.h" |
41 |
|
#include "numeric.h" |
42 |
|
#include "packet.h" |
46 |
|
#include "rng_mt.h" |
47 |
|
#include "s_auth.h" |
48 |
|
#include "s_bsd.h" |
49 |
< |
#include "s_conf.h" |
49 |
< |
#include "s_log.h" |
49 |
> |
#include "log.h" |
50 |
|
#include "s_misc.h" |
51 |
|
#include "s_serv.h" /* try_connections */ |
52 |
|
#include "send.h" |
53 |
|
#include "whowas.h" |
54 |
|
#include "modules.h" |
55 |
|
#include "memory.h" |
56 |
+ |
#include "mempool.h" |
57 |
|
#include "hook.h" |
58 |
|
#include "ircd_getopt.h" |
58 |
– |
#include "balloc.h" |
59 |
|
#include "motd.h" |
60 |
|
#include "supported.h" |
61 |
|
#include "watch.h" |
62 |
< |
|
62 |
> |
#include "conf_db.h" |
63 |
> |
#include "conf_class.h" |
64 |
|
|
65 |
|
/* /quote set variables */ |
66 |
|
struct SetOptions GlobalSetOptions; |
73 |
|
struct admin_info AdminInfo = { NULL, NULL, NULL }; |
74 |
|
struct Counter Count = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; |
75 |
|
struct ServerState_t server_state = { 0 }; |
76 |
< |
struct logging_entry ConfigLoggingEntry = { 1, 1 }; |
76 |
> |
struct logging_entry ConfigLoggingEntry = { .use_logging = 1 }; |
77 |
|
struct ServerStatistics ServerStats; |
78 |
|
struct timeval SystemTime; |
79 |
|
struct Client me; /* That's me */ |
83 |
|
const char *pidFileName = PPATH; |
84 |
|
|
85 |
|
char **myargv; |
85 |
– |
char ircd_platform[PLATFORMLEN]; |
86 |
|
|
87 |
|
int dorehash = 0; |
88 |
|
int doremotd = 0; |
91 |
|
* initialize_server_capabs |
92 |
|
*/ |
93 |
|
int default_server_capabs = 0; |
94 |
– |
|
95 |
– |
#ifdef HAVE_LIBCRYPTO |
96 |
– |
int bio_spare_fd = -1; |
97 |
– |
#endif |
98 |
– |
|
94 |
|
unsigned int splitmode; |
95 |
|
unsigned int splitchecking; |
96 |
|
unsigned int split_users; |
142 |
|
|
143 |
|
static int printVersion = 0; |
144 |
|
|
145 |
< |
struct lgetopt myopts[] = { |
151 |
< |
{"dlinefile", &ConfigFileEntry.dlinefile, |
152 |
< |
STRING, "File to use for dline.conf"}, |
145 |
> |
static struct lgetopt myopts[] = { |
146 |
|
{"configfile", &ConfigFileEntry.configfile, |
147 |
|
STRING, "File to use for ircd.conf"}, |
148 |
+ |
{"glinefile", &ConfigFileEntry.glinefile, |
149 |
+ |
STRING, "File to use for gline database"}, |
150 |
|
{"klinefile", &ConfigFileEntry.klinefile, |
151 |
< |
STRING, "File to use for kline.conf"}, |
151 |
> |
STRING, "File to use for kline database"}, |
152 |
> |
{"dlinefile", &ConfigFileEntry.dlinefile, |
153 |
> |
STRING, "File to use for dline database"}, |
154 |
|
{"xlinefile", &ConfigFileEntry.xlinefile, |
155 |
< |
STRING, "File to use for xline.conf"}, |
155 |
> |
STRING, "File to use for xline database"}, |
156 |
> |
{"resvfile", &ConfigFileEntry.resvfile, |
157 |
> |
STRING, "File to use for resv database"}, |
158 |
|
{"logfile", &logFileName, |
159 |
|
STRING, "File to use for ircd.log"}, |
160 |
|
{"pidfile", &pidFileName, |
179 |
|
{ |
180 |
|
ilog(LOG_TYPE_IRCD, "Clock Failure (%s), TS can be corrupted", |
181 |
|
strerror(errno)); |
182 |
< |
sendto_realops_flags(UMODE_ALL, L_ALL, |
182 |
> |
sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, |
183 |
|
"Clock Failure (%s), TS can be corrupted", |
184 |
|
strerror(errno)); |
185 |
|
restart("Clock Failure"); |
248 |
|
if (doremotd) |
249 |
|
{ |
250 |
|
read_message_file(&ConfigFileEntry.motd); |
251 |
< |
sendto_realops_flags(UMODE_ALL, L_ALL, |
251 |
> |
sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, |
252 |
|
"Got signal SIGUSR1, reloading ircd motd file"); |
253 |
|
doremotd = 0; |
254 |
|
} |
303 |
|
initialize_message_files(void) |
304 |
|
{ |
305 |
|
init_message_file(USER_MOTD, MPATH, &ConfigFileEntry.motd); |
307 |
– |
init_message_file(OPER_MOTD, OPATH, &ConfigFileEntry.opermotd); |
306 |
|
init_message_file(USER_LINKS, LIPATH, &ConfigFileEntry.linksfile); |
307 |
|
|
308 |
|
read_message_file(&ConfigFileEntry.motd); |
311 |
– |
read_message_file(&ConfigFileEntry.opermotd); |
309 |
|
read_message_file(&ConfigFileEntry.linksfile); |
310 |
|
|
311 |
|
init_isupport(); |
338 |
|
static void |
339 |
|
write_pidfile(const char *filename) |
340 |
|
{ |
341 |
< |
FBFILE *fb; |
341 |
> |
FILE *fb; |
342 |
|
|
343 |
< |
if ((fb = fbopen(filename, "w"))) |
343 |
> |
if ((fb = fopen(filename, "w"))) |
344 |
|
{ |
345 |
|
char buff[32]; |
346 |
|
unsigned int pid = (unsigned int)getpid(); |
350 |
– |
size_t nbytes = snprintf(buff, sizeof(buff), "%u\n", pid); |
347 |
|
|
348 |
< |
if ((fbputs(buff, fb, nbytes) == -1)) |
348 |
> |
snprintf(buff, sizeof(buff), "%u\n", pid); |
349 |
> |
|
350 |
> |
if ((fputs(buff, fb) == -1)) |
351 |
|
ilog(LOG_TYPE_IRCD, "Error writing %u to pid file %s (%s)", |
352 |
|
pid, filename, strerror(errno)); |
353 |
|
|
354 |
< |
fbclose(fb); |
357 |
< |
return; |
354 |
> |
fclose(fb); |
355 |
|
} |
356 |
|
else |
357 |
|
{ |
370 |
|
static void |
371 |
|
check_pidfile(const char *filename) |
372 |
|
{ |
373 |
< |
FBFILE *fb; |
373 |
> |
FILE *fb; |
374 |
|
char buff[32]; |
375 |
|
pid_t pidfromfile; |
376 |
|
|
377 |
|
/* Don't do logging here, since we don't have log() initialised */ |
378 |
< |
if ((fb = fbopen(filename, "r"))) |
378 |
> |
if ((fb = fopen(filename, "r"))) |
379 |
|
{ |
380 |
< |
if (fbgets(buff, 20, fb) == NULL) |
380 |
> |
if (fgets(buff, 20, fb) == NULL) |
381 |
|
{ |
382 |
|
/* log(L_ERROR, "Error reading from pid file %s (%s)", filename, |
383 |
|
* strerror(errno)); |
395 |
|
} |
396 |
|
} |
397 |
|
|
398 |
< |
fbclose(fb); |
398 |
> |
fclose(fb); |
399 |
|
} |
400 |
|
else if (errno != ENOENT) |
401 |
|
{ |
442 |
|
{ |
443 |
|
const char *s; |
444 |
|
|
445 |
< |
fprintf(stderr, "ERROR: Could not initialize the SSL context -- %s\n", |
445 |
> |
fprintf(stderr, "ERROR: Could not initialize the SSL Server context -- %s\n", |
446 |
|
s = ERR_lib_error_string(ERR_get_error())); |
447 |
< |
ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL context -- %s\n", s); |
447 |
> |
ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Server context -- %s\n", s); |
448 |
|
} |
449 |
|
|
450 |
< |
SSL_CTX_set_options(ServerInfo.server_ctx, SSL_OP_NO_SSLv2); |
450 |
> |
SSL_CTX_set_options(ServerInfo.server_ctx, SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TLSv1); |
451 |
|
SSL_CTX_set_options(ServerInfo.server_ctx, SSL_OP_TLS_ROLLBACK_BUG|SSL_OP_ALL); |
452 |
|
SSL_CTX_set_verify(ServerInfo.server_ctx, SSL_VERIFY_NONE, NULL); |
453 |
|
|
454 |
< |
bio_spare_fd = save_spare_fd("SSL private key validation"); |
454 |
> |
if ((ServerInfo.client_ctx = SSL_CTX_new(SSLv23_client_method())) == NULL) |
455 |
> |
{ |
456 |
> |
const char *s; |
457 |
> |
|
458 |
> |
fprintf(stderr, "ERROR: Could not initialize the SSL Client context -- %s\n", |
459 |
> |
s = ERR_lib_error_string(ERR_get_error())); |
460 |
> |
ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Client context -- %s\n", s); |
461 |
> |
} |
462 |
> |
|
463 |
> |
SSL_CTX_set_options(ServerInfo.client_ctx, SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TLSv1); |
464 |
> |
SSL_CTX_set_options(ServerInfo.client_ctx, SSL_OP_TLS_ROLLBACK_BUG|SSL_OP_ALL); |
465 |
> |
SSL_CTX_set_verify(ServerInfo.client_ctx, SSL_VERIFY_NONE, NULL); |
466 |
|
#endif /* HAVE_LIBCRYPTO */ |
467 |
|
} |
468 |
|
|
507 |
|
init_chcap_usage_counts(); |
508 |
|
|
509 |
|
ConfigFileEntry.dpath = DPATH; |
510 |
< |
ConfigFileEntry.configfile = CPATH; /* Server configuration file */ |
511 |
< |
ConfigFileEntry.klinefile = KPATH; /* Server kline file */ |
512 |
< |
ConfigFileEntry.xlinefile = XPATH; /* Server xline file */ |
513 |
< |
ConfigFileEntry.rxlinefile = RXPATH; /* Server regex xline file */ |
514 |
< |
ConfigFileEntry.rklinefile = RKPATH; /* Server regex kline file */ |
515 |
< |
ConfigFileEntry.dlinefile = DLPATH; /* dline file */ |
516 |
< |
ConfigFileEntry.glinefile = GPATH; /* gline log file */ |
509 |
< |
ConfigFileEntry.cresvfile = CRESVPATH; /* channel resv file */ |
510 |
< |
ConfigFileEntry.nresvfile = NRESVPATH; /* nick resv file */ |
510 |
> |
ConfigFileEntry.configfile = CPATH; /* Server configuration file */ |
511 |
> |
ConfigFileEntry.klinefile = KPATH; /* Server kline file */ |
512 |
> |
ConfigFileEntry.glinefile = GPATH; /* Server gline file */ |
513 |
> |
ConfigFileEntry.xlinefile = XPATH; /* Server xline file */ |
514 |
> |
ConfigFileEntry.dlinefile = DLPATH; /* dline file */ |
515 |
> |
ConfigFileEntry.resvfile = RESVPATH; /* resv file */ |
516 |
> |
|
517 |
|
myargv = argv; |
518 |
|
umask(077); /* better safe than sorry --SRB */ |
519 |
|
|
543 |
|
|
544 |
|
setup_signals(); |
545 |
|
|
540 |
– |
get_ircd_platform(ircd_platform); |
541 |
– |
|
546 |
|
/* Init the event subsystem */ |
547 |
|
eventInit(); |
548 |
|
/* We need this to initialise the fd array before anything else */ |
553 |
|
/* Check if there is pidfile and daemon already running */ |
554 |
|
check_pidfile(pidFileName); |
555 |
|
|
556 |
< |
initBlockHeap(); |
556 |
> |
mp_pool_init(); |
557 |
|
init_dlink_nodes(); |
558 |
|
init_callbacks(); |
559 |
|
initialize_message_files(); |
561 |
|
init_hash(); |
562 |
|
init_ip_hash_table(); /* client host ip hash table */ |
563 |
|
init_host_hash(); /* Host-hashtable. */ |
560 |
– |
clear_tree_parse(); |
564 |
|
init_client(); |
565 |
< |
init_class(); |
566 |
< |
init_whowas(); |
565 |
> |
class_init(); |
566 |
> |
whowas_init(); |
567 |
|
watch_init(); |
568 |
|
init_auth(); /* Initialise the auth code */ |
569 |
|
init_resolver(); /* Needs to be setup before the io loop */ |
570 |
+ |
modules_init(); |
571 |
|
read_conf_files(1); /* cold start init conf files */ |
572 |
|
init_uid(); |
573 |
|
initialize_server_capabs(); /* Set up default_server_capabs */ |
614 |
|
/* add ourselves to global_serv_list */ |
615 |
|
dlinkAdd(&me, make_dlink_node(), &global_serv_list); |
616 |
|
|
617 |
+ |
load_kline_database(); |
618 |
+ |
load_dline_database(); |
619 |
+ |
load_gline_database(); |
620 |
+ |
load_xline_database(); |
621 |
+ |
load_resv_database(); |
622 |
+ |
|
623 |
|
if (chdir(MODPATH)) |
624 |
|
{ |
625 |
|
ilog(LOG_TYPE_IRCD, "Could not load core modules. Terminating!"); |
657 |
|
/* Setup the timeout check. I'll shift it later :) -- adrian */ |
658 |
|
eventAddIsh("comm_checktimeouts", comm_checktimeouts, NULL, 1); |
659 |
|
|
660 |
+ |
eventAddIsh("save_all_databases", save_all_databases, NULL, DATABASE_UPDATE_TIMEOUT); |
661 |
+ |
|
662 |
|
if (ConfigServerHide.links_delay > 0) |
663 |
|
eventAddIsh("write_links_file", write_links_file, NULL, ConfigServerHide.links_delay); |
664 |
|
else |