| 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" |
| 48 |
– |
#include "conf.h" |
| 49 |
|
#include "log.h" |
| 50 |
|
#include "s_misc.h" |
| 51 |
|
#include "s_serv.h" /* try_connections */ |
| 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; |
| 83 |
|
const char *pidFileName = PPATH; |
| 84 |
|
|
| 85 |
|
char **myargv; |
| 85 |
– |
char ircd_platform[PLATFORMLEN]; |
| 86 |
|
|
| 87 |
|
int dorehash = 0; |
| 88 |
|
int doremotd = 0; |
| 143 |
|
static int printVersion = 0; |
| 144 |
|
|
| 145 |
|
static struct lgetopt myopts[] = { |
| 146 |
– |
{"dlinefile", &ConfigFileEntry.dlinefile, |
| 147 |
– |
STRING, "File to use for dline.conf"}, |
| 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); |
| 302 |
– |
init_message_file(OPER_MOTD, OPATH, &ConfigFileEntry.opermotd); |
| 306 |
|
init_message_file(USER_LINKS, LIPATH, &ConfigFileEntry.linksfile); |
| 307 |
|
|
| 308 |
|
read_message_file(&ConfigFileEntry.motd); |
| 306 |
– |
read_message_file(&ConfigFileEntry.opermotd); |
| 309 |
|
read_message_file(&ConfigFileEntry.linksfile); |
| 310 |
|
|
| 311 |
|
init_isupport(); |
| 432 |
|
* side effects - setups SSL context. |
| 433 |
|
*/ |
| 434 |
|
static void |
| 435 |
< |
init_ssl(void) |
| 435 |
> |
ssl_init(void) |
| 436 |
|
{ |
| 437 |
|
#ifdef HAVE_LIBCRYPTO |
| 438 |
|
SSL_load_error_strings(); |
| 466 |
|
#endif /* HAVE_LIBCRYPTO */ |
| 467 |
|
} |
| 468 |
|
|
| 467 |
– |
/* init_callbacks() |
| 468 |
– |
* |
| 469 |
– |
* inputs - nothing |
| 470 |
– |
* output - nothing |
| 471 |
– |
* side effects - setups standard hook points |
| 472 |
– |
*/ |
| 473 |
– |
static void |
| 474 |
– |
init_callbacks(void) |
| 475 |
– |
{ |
| 476 |
– |
iorecv_cb = register_callback("iorecv", iorecv_default); |
| 477 |
– |
iosend_cb = register_callback("iosend", iosend_default); |
| 478 |
– |
} |
| 479 |
– |
|
| 469 |
|
int |
| 470 |
|
main(int argc, char *argv[]) |
| 471 |
|
{ |
| 494 |
|
init_chcap_usage_counts(); |
| 495 |
|
|
| 496 |
|
ConfigFileEntry.dpath = DPATH; |
| 497 |
< |
ConfigFileEntry.configfile = CPATH; /* Server configuration file */ |
| 498 |
< |
ConfigFileEntry.klinefile = KPATH; /* Server kline file */ |
| 499 |
< |
ConfigFileEntry.xlinefile = XPATH; /* Server xline file */ |
| 500 |
< |
ConfigFileEntry.rxlinefile = RXPATH; /* Server regex xline file */ |
| 501 |
< |
ConfigFileEntry.rklinefile = RKPATH; /* Server regex kline file */ |
| 502 |
< |
ConfigFileEntry.dlinefile = DLPATH; /* dline file */ |
| 503 |
< |
ConfigFileEntry.glinefile = GPATH; /* gline log file */ |
| 515 |
< |
ConfigFileEntry.cresvfile = CRESVPATH; /* channel resv file */ |
| 516 |
< |
ConfigFileEntry.nresvfile = NRESVPATH; /* nick resv file */ |
| 497 |
> |
ConfigFileEntry.configfile = CPATH; /* Server configuration file */ |
| 498 |
> |
ConfigFileEntry.klinefile = KPATH; /* Server kline file */ |
| 499 |
> |
ConfigFileEntry.glinefile = GPATH; /* Server gline file */ |
| 500 |
> |
ConfigFileEntry.xlinefile = XPATH; /* Server xline file */ |
| 501 |
> |
ConfigFileEntry.dlinefile = DLPATH; /* dline file */ |
| 502 |
> |
ConfigFileEntry.resvfile = RESVPATH; /* resv file */ |
| 503 |
> |
|
| 504 |
|
myargv = argv; |
| 505 |
|
umask(077); /* better safe than sorry --SRB */ |
| 506 |
|
|
| 518 |
|
exit(EXIT_FAILURE); |
| 519 |
|
} |
| 520 |
|
|
| 521 |
< |
init_ssl(); |
| 521 |
> |
ssl_init(); |
| 522 |
|
|
| 523 |
|
if (!server_state.foreground) |
| 524 |
|
{ |
| 530 |
|
|
| 531 |
|
setup_signals(); |
| 532 |
|
|
| 546 |
– |
get_ircd_platform(ircd_platform); |
| 547 |
– |
|
| 533 |
|
/* Init the event subsystem */ |
| 534 |
|
eventInit(); |
| 535 |
|
/* We need this to initialise the fd array before anything else */ |
| 536 |
|
fdlist_init(); |
| 537 |
< |
log_add_file(LOG_TYPE_IRCD, 0, logFileName); |
| 537 |
> |
log_set_file(LOG_TYPE_IRCD, 0, logFileName); |
| 538 |
|
check_can_use_v6(); |
| 539 |
|
init_comm(); /* This needs to be setup early ! -- adrian */ |
| 540 |
|
/* Check if there is pidfile and daemon already running */ |
| 541 |
|
check_pidfile(pidFileName); |
| 542 |
|
|
| 543 |
< |
initBlockHeap(); |
| 543 |
> |
mp_pool_init(); |
| 544 |
|
init_dlink_nodes(); |
| 560 |
– |
init_callbacks(); |
| 545 |
|
initialize_message_files(); |
| 546 |
|
dbuf_init(); |
| 547 |
< |
init_hash(); |
| 547 |
> |
hash_init(); |
| 548 |
|
init_ip_hash_table(); /* client host ip hash table */ |
| 549 |
|
init_host_hash(); /* Host-hashtable. */ |
| 550 |
< |
clear_tree_parse(); |
| 551 |
< |
init_client(); |
| 552 |
< |
init_class(); |
| 569 |
< |
init_whowas(); |
| 550 |
> |
client_init(); |
| 551 |
> |
class_init(); |
| 552 |
> |
whowas_init(); |
| 553 |
|
watch_init(); |
| 554 |
< |
init_auth(); /* Initialise the auth code */ |
| 554 |
> |
auth_init(); /* Initialise the auth code */ |
| 555 |
|
init_resolver(); /* Needs to be setup before the io loop */ |
| 556 |
+ |
modules_init(); |
| 557 |
|
read_conf_files(1); /* cold start init conf files */ |
| 558 |
|
init_uid(); |
| 559 |
|
initialize_server_capabs(); /* Set up default_server_capabs */ |
| 560 |
|
initialize_global_set_options(); |
| 561 |
< |
init_channels(); |
| 561 |
> |
channel_init(); |
| 562 |
|
|
| 563 |
|
if (EmptyString(ServerInfo.sid)) |
| 564 |
|
{ |
| 600 |
|
/* add ourselves to global_serv_list */ |
| 601 |
|
dlinkAdd(&me, make_dlink_node(), &global_serv_list); |
| 602 |
|
|
| 603 |
+ |
load_kline_database(); |
| 604 |
+ |
load_dline_database(); |
| 605 |
+ |
load_gline_database(); |
| 606 |
+ |
load_xline_database(); |
| 607 |
+ |
load_resv_database(); |
| 608 |
+ |
|
| 609 |
|
if (chdir(MODPATH)) |
| 610 |
|
{ |
| 611 |
|
ilog(LOG_TYPE_IRCD, "Could not load core modules. Terminating!"); |
| 643 |
|
/* Setup the timeout check. I'll shift it later :) -- adrian */ |
| 644 |
|
eventAddIsh("comm_checktimeouts", comm_checktimeouts, NULL, 1); |
| 645 |
|
|
| 646 |
+ |
eventAddIsh("save_all_databases", save_all_databases, NULL, DATABASE_UPDATE_TIMEOUT); |
| 647 |
+ |
|
| 648 |
|
if (ConfigServerHide.links_delay > 0) |
| 649 |
|
eventAddIsh("write_links_file", write_links_file, NULL, ConfigServerHide.links_delay); |
| 650 |
|
else |