ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/ircd.c
Revision: 5499
Committed: Sun Feb 8 18:20:23 2015 UTC (10 years, 6 months ago) by michael
Content type: text/x-csrc
File size: 16727 byte(s)
Log Message:
- Allow to disable the NOTICE/PRIVMSG anti-flood mechanism by setting 'default_floodcount' to 0

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 1997-2015 ircd-hybrid 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 */
21
22 /*! \file ircd.c
23 * \brief Starts up and runs the ircd.
24 * \version $Id$
25 */
26
27 #include "stdinc.h"
28 #include "user.h"
29 #include "list.h"
30 #include "ircd.h"
31 #include "channel.h"
32 #include "client.h"
33 #include "event.h"
34 #include "fdlist.h"
35 #include "hash.h"
36 #include "irc_string.h"
37 #include "ircd_signal.h"
38 #include "gline.h"
39 #include "motd.h"
40 #include "conf.h"
41 #include "hostmask.h"
42 #include "parse.h"
43 #include "res.h"
44 #include "restart.h"
45 #include "rng_mt.h"
46 #include "auth.h"
47 #include "s_bsd.h"
48 #include "log.h"
49 #include "server.h" /* try_connections */
50 #include "send.h"
51 #include "whowas.h"
52 #include "modules.h"
53 #include "memory.h"
54 #include "mempool.h"
55 #include "ircd_getopt.h"
56 #include "watch.h"
57 #include "conf_db.h"
58 #include "conf_class.h"
59 #include "ipcache.h"
60
61
62 #ifdef HAVE_LIBGEOIP
63 GeoIP *geoip_ctx;
64 #endif
65
66 struct timeval SystemTime;
67 struct Connection meConnection; /* That's also part of me */
68 struct Client me = { .connection = &meConnection }; /* That's me */
69
70 char **myargv;
71 const char *logFileName = LPATH;
72 const char *pidFileName = PPATH;
73
74 unsigned int dorehash;
75 unsigned int doremotd;
76 unsigned int default_server_capabs;
77 unsigned int splitmode;
78 unsigned int splitchecking;
79 unsigned int split_users;
80 unsigned int split_servers;
81
82 static struct event event_cleanup_glines =
83 {
84 .name = "cleanup_glines",
85 .handler = cleanup_glines,
86 .when = CLEANUP_GLINES_TIME
87 };
88
89 static struct event event_cleanup_tklines =
90 {
91 .name = "cleanup_tklines",
92 .handler = cleanup_tklines,
93 .when = CLEANUP_TKLINES_TIME
94 };
95
96 static struct event event_try_connections =
97 {
98 .name = "try_connections",
99 .handler = try_connections,
100 .when = STARTUP_CONNECTIONS_TIME
101 };
102
103 static struct event event_comm_checktimeouts =
104 {
105 .name = "comm_checktimeouts",
106 .handler = comm_checktimeouts,
107 .when = 1
108 };
109
110 static struct event event_save_all_databases =
111 {
112 .name = "save_all_databases",
113 .handler = save_all_databases,
114 .when = DATABASE_UPDATE_TIMEOUT
115 };
116
117 struct event event_write_links_file =
118 {
119 .name = "write_links_file",
120 .handler = write_links_file,
121 };
122
123
124 /*
125 * print_startup - print startup information
126 */
127 static void
128 print_startup(int pid)
129 {
130 printf("ircd: version %s(%s)\n", ircd_version, serno);
131 printf("ircd: pid %d\n", pid);
132 printf("ircd: running in %s mode from %s\n", !server_state.foreground ? "background"
133 : "foreground", ConfigGeneral.dpath);
134 }
135
136 static void
137 make_daemon(void)
138 {
139 int pid;
140
141 if ((pid = fork()) < 0)
142 {
143 perror("fork");
144 exit(EXIT_FAILURE);
145 }
146 else if (pid > 0)
147 {
148 print_startup(pid);
149 exit(EXIT_SUCCESS);
150 }
151
152 setsid();
153 }
154
155 static int printVersion = 0;
156
157 static struct lgetopt myopts[] =
158 {
159 {"configfile", &ConfigGeneral.configfile,
160 STRING, "File to use for ircd.conf"},
161 {"glinefile", &ConfigGeneral.glinefile,
162 STRING, "File to use for gline database"},
163 {"klinefile", &ConfigGeneral.klinefile,
164 STRING, "File to use for kline database"},
165 {"dlinefile", &ConfigGeneral.dlinefile,
166 STRING, "File to use for dline database"},
167 {"xlinefile", &ConfigGeneral.xlinefile,
168 STRING, "File to use for xline database"},
169 {"resvfile", &ConfigGeneral.resvfile,
170 STRING, "File to use for resv database"},
171 {"logfile", &logFileName,
172 STRING, "File to use for ircd.log"},
173 {"pidfile", &pidFileName,
174 STRING, "File to use for process ID"},
175 {"foreground", &server_state.foreground,
176 YESNO, "Run in foreground (don't detach)"},
177 {"version", &printVersion,
178 YESNO, "Print version and exit"},
179 {"help", NULL, USAGE, "Print this text"},
180 {NULL, NULL, STRING, NULL},
181 };
182
183 void
184 set_time(void)
185 {
186 struct timeval newtime = { .tv_sec = 0, .tv_usec = 0 };
187
188 if (gettimeofday(&newtime, NULL) == -1)
189 {
190 ilog(LOG_TYPE_IRCD, "Clock Failure (%s), TS can be corrupted",
191 strerror(errno));
192 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
193 "Clock Failure (%s), TS can be corrupted",
194 strerror(errno));
195 server_die("Clock Failure", 1);
196 }
197
198 if (newtime.tv_sec < CurrentTime)
199 {
200 ilog(LOG_TYPE_IRCD, "System clock is running backwards - (%lu < %lu)",
201 (unsigned long)newtime.tv_sec, (unsigned long)CurrentTime);
202 sendto_realops_flags(UMODE_DEBUG, L_ALL, SEND_NOTICE,
203 "System clock is running backwards - (%lu < %lu)",
204 (unsigned long)newtime.tv_sec,
205 (unsigned long)CurrentTime);
206 set_back_events(CurrentTime - newtime.tv_sec);
207 }
208
209 SystemTime.tv_sec = newtime.tv_sec;
210 SystemTime.tv_usec = newtime.tv_usec;
211 }
212
213 static void
214 io_loop(void)
215 {
216 while (1)
217 {
218 if (listing_client_list.head)
219 {
220 dlink_node *node = NULL, *node_next = NULL;
221 DLINK_FOREACH_SAFE(node, node_next, listing_client_list.head)
222 safe_list_channels(node->data, 0);
223 }
224
225 /* Run pending events */
226 event_run();
227
228 comm_select();
229 exit_aborted_clients();
230 free_exited_clients();
231
232 /* Check to see whether we have to rehash the configuration .. */
233 if (dorehash)
234 {
235 conf_rehash(1);
236 dorehash = 0;
237 }
238
239 if (doremotd)
240 {
241 motd_recache();
242 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
243 "Got signal SIGUSR1, reloading motd file(s)");
244 doremotd = 0;
245 }
246 }
247 }
248
249 /* initalialize_global_set_options()
250 *
251 * inputs - none
252 * output - none
253 * side effects - This sets all global set options needed
254 */
255 static void
256 initialize_global_set_options(void)
257 {
258 GlobalSetOptions.maxclients = ConfigServerInfo.default_max_clients;
259 GlobalSetOptions.autoconn = 1;
260 GlobalSetOptions.spam_time = MIN_JOIN_LEAVE_TIME;
261 GlobalSetOptions.spam_num = MAX_JOIN_LEAVE_COUNT;
262 GlobalSetOptions.floodcount = ConfigGeneral.default_floodcount;
263 GlobalSetOptions.joinfloodcount = ConfigChannel.default_join_flood_count;
264 GlobalSetOptions.joinfloodtime = ConfigChannel.default_join_flood_time;
265
266 split_servers = ConfigChannel.default_split_server_count;
267 split_users = ConfigChannel.default_split_user_count;
268
269 if (split_users && split_servers && (ConfigChannel.no_create_on_split ||
270 ConfigChannel.no_join_on_split))
271 {
272 splitmode = 1;
273 splitchecking = 1;
274 }
275
276 GlobalSetOptions.ident_timeout = IDENT_TIMEOUT;
277 }
278
279 /* initialize_server_capabs()
280 *
281 * inputs - none
282 * output - none
283 */
284 static void
285 initialize_server_capabs(void)
286 {
287 add_capability("QS", CAP_QS, 1);
288 add_capability("EOB", CAP_EOB, 1);
289 add_capability("TS6", CAP_TS6, 0);
290 add_capability("CLUSTER", CAP_CLUSTER, 1);
291 add_capability("SVS", CAP_SVS, 1);
292 add_capability("CHW", CAP_CHW, 1);
293 add_capability("HOPS", CAP_HOPS, 1);
294 }
295
296 /* write_pidfile()
297 *
298 * inputs - filename+path of pid file
299 * output - NONE
300 * side effects - write the pid of the ircd to filename
301 */
302 static void
303 write_pidfile(const char *filename)
304 {
305 FILE *fb;
306
307 if ((fb = fopen(filename, "w")))
308 {
309 char buff[IRCD_BUFSIZE];
310 unsigned int pid = (unsigned int)getpid();
311
312 snprintf(buff, sizeof(buff), "%u\n", pid);
313
314 if (fputs(buff, fb) == -1)
315 ilog(LOG_TYPE_IRCD, "Error writing %u to pid file %s (%s)",
316 pid, filename, strerror(errno));
317
318 fclose(fb);
319 }
320 else
321 {
322 ilog(LOG_TYPE_IRCD, "Error opening pid file %s (%s)",
323 filename, strerror(errno));
324 }
325 }
326
327 /* check_pidfile()
328 *
329 * inputs - filename+path of pid file
330 * output - none
331 * side effects - reads pid from pidfile and checks if ircd is in process
332 * list. if it is, gracefully exits
333 * -kre
334 */
335 static void
336 check_pidfile(const char *filename)
337 {
338 FILE *fb;
339 char buff[IRCD_BUFSIZE];
340 pid_t pidfromfile;
341
342 /* Don't do logging here, since we don't have log() initialised */
343 if ((fb = fopen(filename, "r")))
344 {
345 if (!fgets(buff, 20, fb))
346 {
347 /* log(L_ERROR, "Error reading from pid file %s (%s)", filename,
348 * strerror(errno));
349 */
350 }
351 else
352 {
353 pidfromfile = atoi(buff);
354
355 if (!kill(pidfromfile, 0))
356 {
357 /* log(L_ERROR, "Server is already running"); */
358 printf("ircd: daemon is already running\n");
359 exit(-1);
360 }
361 }
362
363 fclose(fb);
364 }
365 else if (errno != ENOENT)
366 {
367 /* log(L_ERROR, "Error opening pid file %s", filename); */
368 }
369 }
370
371 /* setup_corefile()
372 *
373 * inputs - nothing
374 * output - nothing
375 * side effects - setups corefile to system limits.
376 * -kre
377 */
378 static void
379 setup_corefile(void)
380 {
381 #ifdef HAVE_SYS_RESOURCE_H
382 struct rlimit rlim; /* resource limits */
383
384 /* Set corefilesize to maximum */
385 if (!getrlimit(RLIMIT_CORE, &rlim))
386 {
387 rlim.rlim_cur = rlim.rlim_max;
388 setrlimit(RLIMIT_CORE, &rlim);
389 }
390 #endif
391 }
392
393 #ifdef HAVE_LIBCRYPTO
394 static int
395 always_accept_verify_cb(int preverify_ok, X509_STORE_CTX *x509_ctx)
396 {
397 return 1;
398 }
399 #endif
400
401 /* init_ssl()
402 *
403 * inputs - nothing
404 * output - nothing
405 * side effects - setups SSL context.
406 */
407 static void
408 ssl_init(void)
409 {
410 #ifdef HAVE_LIBCRYPTO
411 SSL_load_error_strings();
412 SSLeay_add_ssl_algorithms();
413
414 if (!(ConfigServerInfo.server_ctx = SSL_CTX_new(SSLv23_server_method())))
415 {
416 const char *s = ERR_lib_error_string(ERR_get_error());
417
418 fprintf(stderr, "ERROR: Could not initialize the SSL Server context -- %s\n", s);
419 ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Server context -- %s", s);
420 exit(EXIT_FAILURE);
421 return; /* Not reached */
422 }
423
424 SSL_CTX_set_options(ConfigServerInfo.server_ctx, SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TICKET);
425 SSL_CTX_set_options(ConfigServerInfo.server_ctx, SSL_OP_SINGLE_DH_USE|SSL_OP_CIPHER_SERVER_PREFERENCE);
426 SSL_CTX_set_verify(ConfigServerInfo.server_ctx, SSL_VERIFY_PEER|SSL_VERIFY_CLIENT_ONCE,
427 always_accept_verify_cb);
428 SSL_CTX_set_session_cache_mode(ConfigServerInfo.server_ctx, SSL_SESS_CACHE_OFF);
429 SSL_CTX_set_cipher_list(ConfigServerInfo.server_ctx, "EECDH+HIGH:EDH+HIGH:HIGH:!aNULL");
430
431 #if OPENSSL_VERSION_NUMBER >= 0x009080FFL && !defined(OPENSSL_NO_ECDH)
432 {
433 EC_KEY *key = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
434
435 if (key)
436 {
437 SSL_CTX_set_tmp_ecdh(ConfigServerInfo.server_ctx, key);
438 EC_KEY_free(key);
439 }
440 }
441
442 SSL_CTX_set_options(ConfigServerInfo.server_ctx, SSL_OP_SINGLE_ECDH_USE);
443 #endif
444
445 if (!(ConfigServerInfo.client_ctx = SSL_CTX_new(SSLv23_client_method())))
446 {
447 const char *s = ERR_lib_error_string(ERR_get_error());
448
449 fprintf(stderr, "ERROR: Could not initialize the SSL Client context -- %s\n", s);
450 ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Client context -- %s", s);
451 exit(EXIT_FAILURE);
452 return; /* Not reached */
453 }
454
455 SSL_CTX_set_options(ConfigServerInfo.client_ctx, SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TICKET);
456 SSL_CTX_set_options(ConfigServerInfo.client_ctx, SSL_OP_SINGLE_DH_USE);
457 SSL_CTX_set_verify(ConfigServerInfo.client_ctx, SSL_VERIFY_PEER|SSL_VERIFY_CLIENT_ONCE,
458 always_accept_verify_cb);
459 SSL_CTX_set_session_cache_mode(ConfigServerInfo.client_ctx, SSL_SESS_CACHE_OFF);
460 #endif /* HAVE_LIBCRYPTO */
461 }
462
463 int
464 main(int argc, char *argv[])
465 {
466 /* Check to see if the user is running us as root, which is a nono */
467 if (!geteuid())
468 {
469 fprintf(stderr, "ERROR: This server won't run as root/superuser\n");
470 return -1;
471 }
472
473 /* Setup corefile size immediately after boot -kre */
474 setup_corefile();
475
476 /* save server boot time right away, so getrusage works correctly */
477 set_time();
478
479 /* It ain't random, but it ought to be a little harder to guess */
480 init_genrand(SystemTime.tv_sec ^ (SystemTime.tv_usec | (getpid() << 20)));
481
482 dlinkAdd(&me, &me.node, &global_client_list); /* Pointer to beginning
483 of Client list */
484 ConfigLog.use_logging = 1;
485 ConfigGeneral.dpath = DPATH;
486 ConfigGeneral.spath = SPATH;
487 ConfigGeneral.mpath = MPATH;
488 ConfigGeneral.configfile = CPATH; /* Server configuration file */
489 ConfigGeneral.klinefile = KPATH; /* Server kline file */
490 ConfigGeneral.glinefile = GPATH; /* Server gline file */
491 ConfigGeneral.xlinefile = XPATH; /* Server xline file */
492 ConfigGeneral.dlinefile = DLPATH; /* dline file */
493 ConfigGeneral.resvfile = RESVPATH; /* resv file */
494
495 myargv = argv;
496 umask(077); /* better safe than sorry --SRB */
497
498 parseargs(&argc, &argv, myopts);
499
500 if (printVersion)
501 {
502 printf("ircd: version %s(%s)\n", ircd_version, serno);
503 exit(EXIT_SUCCESS);
504 }
505
506 if (chdir(ConfigGeneral.dpath))
507 {
508 perror("chdir");
509 exit(EXIT_FAILURE);
510 }
511
512 ssl_init();
513
514 if (!server_state.foreground)
515 {
516 make_daemon();
517 close_standard_fds(); /* this needs to be before init_netio()! */
518 }
519 else
520 print_startup(getpid());
521
522 setup_signals();
523
524 /* We need this to initialise the fd array before anything else */
525 fdlist_init();
526 log_set_file(LOG_TYPE_IRCD, 0, logFileName);
527
528 init_netio(); /* This needs to be setup early ! -- adrian */
529
530 /* Check if there is pidfile and daemon already running */
531 check_pidfile(pidFileName);
532
533 mp_pool_init();
534 init_dlink_nodes();
535 init_isupport();
536 dbuf_init();
537 hash_init();
538 ipcache_init();
539 client_init();
540 class_init();
541 whowas_init();
542 watch_init();
543 auth_init(); /* Initialise the auth code */
544 init_resolver(); /* Needs to be setup before the io loop */
545 modules_init();
546 read_conf_files(1); /* cold start init conf files */
547 init_uid();
548 initialize_server_capabs(); /* Set up default_server_capabs */
549 initialize_global_set_options(); /* Has to be called after read_conf_files() */
550 channel_init();
551 read_links_file();
552 motd_init();
553 user_usermodes_init();
554 #ifdef HAVE_LIBGEOIP
555 geoip_ctx = GeoIP_new(GEOIP_MEMORY_CACHE);
556 #endif
557
558 if (EmptyString(ConfigServerInfo.sid))
559 {
560 ilog(LOG_TYPE_IRCD, "ERROR: No server id specified in serverinfo block.");
561 exit(EXIT_FAILURE);
562 }
563
564 strlcpy(me.id, ConfigServerInfo.sid, sizeof(me.id));
565
566 if (EmptyString(ConfigServerInfo.name))
567 {
568 ilog(LOG_TYPE_IRCD, "ERROR: No server name specified in serverinfo block.");
569 exit(EXIT_FAILURE);
570 }
571
572 strlcpy(me.name, ConfigServerInfo.name, sizeof(me.name));
573
574 /* serverinfo{} description must exist. If not, error out.*/
575 if (EmptyString(ConfigServerInfo.description))
576 {
577 ilog(LOG_TYPE_IRCD, "ERROR: No server description specified in serverinfo block.");
578 exit(EXIT_FAILURE);
579 }
580
581 strlcpy(me.info, ConfigServerInfo.description, sizeof(me.info));
582
583 me.from = &me;
584 me.servptr = &me;
585 me.connection->lasttime = CurrentTime;
586 me.connection->since = CurrentTime;
587 me.connection->firsttime = CurrentTime;
588
589 SetMe(&me);
590 make_server(&me);
591
592 hash_add_id(&me);
593 hash_add_client(&me);
594
595 dlinkAdd(&me, make_dlink_node(), &global_server_list);
596
597 load_kline_database();
598 load_dline_database();
599 load_gline_database();
600 load_xline_database();
601 load_resv_database();
602
603 load_all_modules(1);
604 load_conf_modules();
605 load_core_modules(1);
606
607 write_pidfile(pidFileName);
608
609 ilog(LOG_TYPE_IRCD, "Server Ready");
610
611 event_addish(&event_cleanup_glines, NULL);
612 event_addish(&event_cleanup_tklines, NULL);
613
614 /* We want try_connections to be called as soon as possible now! -- adrian */
615 /* No, 'cause after a restart it would cause all sorts of nick collides */
616 event_addish(&event_try_connections, NULL);
617
618 /* Setup the timeout check. I'll shift it later :) -- adrian */
619 event_add(&event_comm_checktimeouts, NULL);
620
621 event_addish(&event_save_all_databases, NULL);
622
623 if (ConfigServerHide.links_delay > 0)
624 {
625 event_write_links_file.when = ConfigServerHide.links_delay;
626 event_addish(&event_write_links_file, NULL);
627 }
628 else
629 ConfigServerHide.links_disabled = 1;
630
631 if (splitmode)
632 event_addish(&splitmode_event, NULL);
633
634 io_loop();
635 return 0;
636 }

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision