ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/ircd.c
Revision: 1831
Committed: Mon Apr 15 10:57:05 2013 UTC (10 years, 11 months ago) by michael
Content type: text/x-csrc
File size: 17422 byte(s)
Log Message:
- Forward-port -r1741 [Fixed logfiles not getting reopened on /rehash]

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3 * ircd.c: Starts up and runs the ircd.
4 *
5 * Copyright (C) 2002 by the past and present ircd coders, and others.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 * USA
21 *
22 * $Id$
23 */
24
25 #include "stdinc.h"
26 #include "s_user.h"
27 #include "list.h"
28 #include "ircd.h"
29 #include "channel.h"
30 #include "channel_mode.h"
31 #include "client.h"
32 #include "event.h"
33 #include "fdlist.h"
34 #include "hash.h"
35 #include "irc_string.h"
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"
43 #include "parse.h"
44 #include "irc_res.h"
45 #include "restart.h"
46 #include "rng_mt.h"
47 #include "s_auth.h"
48 #include "s_bsd.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"
59 #include "motd.h"
60 #include "supported.h"
61 #include "watch.h"
62 #include "conf_db.h"
63 #include "conf_class.h"
64
65 /* /quote set variables */
66 struct SetOptions GlobalSetOptions;
67
68 /* configuration set from ircd.conf */
69 struct config_file_entry ConfigFileEntry;
70 /* server info set from ircd.conf */
71 struct server_info ServerInfo;
72 /* admin info set from ircd.conf */
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 = { .use_logging = 1 };
77 struct ServerStatistics ServerStats;
78 struct timeval SystemTime;
79 struct Client me; /* That's me */
80 struct LocalUser meLocalUser; /* That's also part of me */
81
82 const char *logFileName = LPATH;
83 const char *pidFileName = PPATH;
84
85 char **myargv;
86
87 int dorehash = 0;
88 int doremotd = 0;
89
90 /* Set to zero because it should be initialized later using
91 * initialize_server_capabs
92 */
93 int default_server_capabs = 0;
94 unsigned int splitmode;
95 unsigned int splitchecking;
96 unsigned int split_users;
97 unsigned int split_servers;
98
99 /* Do klines the same way hybrid-6 did them, i.e. at the
100 * top of the next io_loop instead of in the same loop as
101 * the klines are being applied.
102 *
103 * This should fix strange CPU starvation as very indirectly reported.
104 * (Why do you people not email bug reports? WHY? WHY?)
105 *
106 * - Dianora
107 */
108
109 int rehashed_klines = 0;
110
111
112 /*
113 * print_startup - print startup information
114 */
115 static void
116 print_startup(int pid)
117 {
118 printf("ircd: version %s\n", ircd_version);
119 printf("ircd: pid %d\n", pid);
120 printf("ircd: running in %s mode from %s\n", !server_state.foreground ? "background"
121 : "foreground", ConfigFileEntry.dpath);
122 }
123
124 static void
125 make_daemon(void)
126 {
127 int pid;
128
129 if ((pid = fork()) < 0)
130 {
131 perror("fork");
132 exit(EXIT_FAILURE);
133 }
134 else if (pid > 0)
135 {
136 print_startup(pid);
137 exit(EXIT_SUCCESS);
138 }
139
140 setsid();
141 }
142
143 static int printVersion = 0;
144
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 database"},
152 {"dlinefile", &ConfigFileEntry.dlinefile,
153 STRING, "File to use for dline database"},
154 {"xlinefile", &ConfigFileEntry.xlinefile,
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,
161 STRING, "File to use for process ID"},
162 {"foreground", &server_state.foreground,
163 YESNO, "Run in foreground (don't detach)"},
164 {"version", &printVersion,
165 YESNO, "Print version and exit"},
166 {"help", NULL, USAGE, "Print this text"},
167 {NULL, NULL, STRING, NULL},
168 };
169
170 void
171 set_time(void)
172 {
173 static char to_send[200];
174 struct timeval newtime;
175 newtime.tv_sec = 0;
176 newtime.tv_usec = 0;
177
178 if (gettimeofday(&newtime, NULL) == -1)
179 {
180 ilog(LOG_TYPE_IRCD, "Clock Failure (%s), TS can be corrupted",
181 strerror(errno));
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");
186 }
187
188 if (newtime.tv_sec < CurrentTime)
189 {
190 snprintf(to_send, sizeof(to_send),
191 "System clock is running backwards - (%lu < %lu)",
192 (unsigned long)newtime.tv_sec, (unsigned long)CurrentTime);
193 report_error(L_ALL, to_send, me.name, 0);
194 set_back_events(CurrentTime - newtime.tv_sec);
195 }
196
197 SystemTime.tv_sec = newtime.tv_sec;
198 SystemTime.tv_usec = newtime.tv_usec;
199 }
200
201 static void
202 io_loop(void)
203 {
204 while (1 == 1)
205 {
206 /*
207 * Maybe we want a flags word?
208 * ie. if (REHASHED_KLINES(global_flags))
209 * SET_REHASHED_KLINES(global_flags)
210 * CLEAR_REHASHED_KLINES(global_flags)
211 *
212 * - Dianora
213 */
214 if (rehashed_klines)
215 {
216 check_conf_klines();
217 rehashed_klines = 0;
218 }
219
220 if (listing_client_list.head)
221 {
222 dlink_node *ptr = NULL, *ptr_next = NULL;
223 DLINK_FOREACH_SAFE(ptr, ptr_next, listing_client_list.head)
224 {
225 struct Client *client_p = ptr->data;
226 assert(client_p->localClient->list_task);
227 safe_list_channels(client_p, client_p->localClient->list_task, 0);
228 }
229 }
230
231 /* Run pending events, then get the number of seconds to the next
232 * event
233 */
234 while (eventNextTime() <= CurrentTime)
235 eventRun();
236
237 comm_select();
238 exit_aborted_clients();
239 free_exited_clients();
240 send_queued_all();
241
242 /* Check to see whether we have to rehash the configuration .. */
243 if (dorehash)
244 {
245 rehash(1);
246 dorehash = 0;
247 }
248 if (doremotd)
249 {
250 read_message_file(&ConfigFileEntry.motd);
251 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
252 "Got signal SIGUSR1, reloading ircd motd file");
253 doremotd = 0;
254 }
255 }
256 }
257
258 /* initalialize_global_set_options()
259 *
260 * inputs - none
261 * output - none
262 * side effects - This sets all global set options needed
263 */
264 static void
265 initialize_global_set_options(void)
266 {
267 memset(&GlobalSetOptions, 0, sizeof(GlobalSetOptions));
268
269 GlobalSetOptions.autoconn = 1;
270 GlobalSetOptions.spam_time = MIN_JOIN_LEAVE_TIME;
271 GlobalSetOptions.spam_num = MAX_JOIN_LEAVE_COUNT;
272
273 if (ConfigFileEntry.default_floodcount)
274 GlobalSetOptions.floodcount = ConfigFileEntry.default_floodcount;
275 else
276 GlobalSetOptions.floodcount = 10;
277
278 /* XXX I have no idea what to try here - Dianora */
279 GlobalSetOptions.joinfloodcount = 16;
280 GlobalSetOptions.joinfloodtime = 8;
281
282 split_servers = ConfigChannel.default_split_server_count;
283 split_users = ConfigChannel.default_split_user_count;
284
285 if (split_users && split_servers && (ConfigChannel.no_create_on_split ||
286 ConfigChannel.no_join_on_split))
287 {
288 splitmode = 1;
289 splitchecking = 1;
290 }
291
292 GlobalSetOptions.ident_timeout = IDENT_TIMEOUT;
293 /* End of global set options */
294 }
295
296 /* initialize_message_files()
297 *
298 * inputs - none
299 * output - none
300 * side effects - Set up all message files needed, motd etc.
301 */
302 static void
303 initialize_message_files(void)
304 {
305 init_message_file(USER_MOTD, MPATH, &ConfigFileEntry.motd);
306 init_message_file(USER_LINKS, LIPATH, &ConfigFileEntry.linksfile);
307
308 read_message_file(&ConfigFileEntry.motd);
309 read_message_file(&ConfigFileEntry.linksfile);
310
311 init_isupport();
312 }
313
314 /* initialize_server_capabs()
315 *
316 * inputs - none
317 * output - none
318 */
319 static void
320 initialize_server_capabs(void)
321 {
322 add_capability("QS", CAP_QS, 1);
323 add_capability("EOB", CAP_EOB, 1);
324 add_capability("TS6", CAP_TS6, 0);
325 add_capability("CLUSTER", CAP_CLUSTER, 1);
326 add_capability("SVS", CAP_SVS, 1);
327 #ifdef HALFOPS
328 add_capability("HOPS", CAP_HOPS, 1);
329 #endif
330 }
331
332 /* write_pidfile()
333 *
334 * inputs - filename+path of pid file
335 * output - NONE
336 * side effects - write the pid of the ircd to filename
337 */
338 static void
339 write_pidfile(const char *filename)
340 {
341 FILE *fb;
342
343 if ((fb = fopen(filename, "w")))
344 {
345 char buff[32];
346 unsigned int pid = (unsigned int)getpid();
347
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 fclose(fb);
355 }
356 else
357 {
358 ilog(LOG_TYPE_IRCD, "Error opening pid file %s", filename);
359 }
360 }
361
362 /* check_pidfile()
363 *
364 * inputs - filename+path of pid file
365 * output - none
366 * side effects - reads pid from pidfile and checks if ircd is in process
367 * list. if it is, gracefully exits
368 * -kre
369 */
370 static void
371 check_pidfile(const char *filename)
372 {
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 = fopen(filename, "r")))
379 {
380 if (fgets(buff, 20, fb) == NULL)
381 {
382 /* log(L_ERROR, "Error reading from pid file %s (%s)", filename,
383 * strerror(errno));
384 */
385 }
386 else
387 {
388 pidfromfile = atoi(buff);
389
390 if (!kill(pidfromfile, 0))
391 {
392 /* log(L_ERROR, "Server is already running"); */
393 printf("ircd: daemon is already running\n");
394 exit(-1);
395 }
396 }
397
398 fclose(fb);
399 }
400 else if (errno != ENOENT)
401 {
402 /* log(L_ERROR, "Error opening pid file %s", filename); */
403 }
404 }
405
406 /* setup_corefile()
407 *
408 * inputs - nothing
409 * output - nothing
410 * side effects - setups corefile to system limits.
411 * -kre
412 */
413 static void
414 setup_corefile(void)
415 {
416 #ifdef HAVE_SYS_RESOURCE_H
417 struct rlimit rlim; /* resource limits */
418
419 /* Set corefilesize to maximum */
420 if (!getrlimit(RLIMIT_CORE, &rlim))
421 {
422 rlim.rlim_cur = rlim.rlim_max;
423 setrlimit(RLIMIT_CORE, &rlim);
424 }
425 #endif
426 }
427
428 /* init_ssl()
429 *
430 * inputs - nothing
431 * output - nothing
432 * side effects - setups SSL context.
433 */
434 static void
435 ssl_init(void)
436 {
437 #ifdef HAVE_LIBCRYPTO
438 SSL_load_error_strings();
439 SSLeay_add_ssl_algorithms();
440
441 if ((ServerInfo.server_ctx = SSL_CTX_new(SSLv23_server_method())) == NULL)
442 {
443 const char *s;
444
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 Server context -- %s\n", s);
448 }
449
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 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
469 int
470 main(int argc, char *argv[])
471 {
472 /* Check to see if the user is running
473 * us as root, which is a nono
474 */
475 if (geteuid() == 0)
476 {
477 fprintf(stderr, "Don't run ircd as root!!!\n");
478 return -1;
479 }
480
481 /* Setup corefile size immediately after boot -kre */
482 setup_corefile();
483
484 /* save server boot time right away, so getrusage works correctly */
485 set_time();
486
487 /* It ain't random, but it ought to be a little harder to guess */
488 init_genrand(SystemTime.tv_sec ^ (SystemTime.tv_usec | (getpid() << 20)));
489
490 me.localClient = &meLocalUser;
491 dlinkAdd(&me, &me.node, &global_client_list); /* Pointer to beginning
492 of Client list */
493 /* Initialise the channel capability usage counts... */
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.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
507 parseargs(&argc, &argv, myopts);
508
509 if (printVersion)
510 {
511 printf("ircd: version %s\n", ircd_version);
512 exit(EXIT_SUCCESS);
513 }
514
515 if (chdir(ConfigFileEntry.dpath))
516 {
517 perror("chdir");
518 exit(EXIT_FAILURE);
519 }
520
521 ssl_init();
522
523 if (!server_state.foreground)
524 {
525 make_daemon();
526 close_standard_fds(); /* this needs to be before init_netio()! */
527 }
528 else
529 print_startup(getpid());
530
531 setup_signals();
532
533 /* Init the event subsystem */
534 eventInit();
535 /* We need this to initialise the fd array before anything else */
536 fdlist_init();
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 mp_pool_init();
544 init_dlink_nodes();
545 initialize_message_files();
546 dbuf_init();
547 hash_init();
548 init_ip_hash_table(); /* client host ip hash table */
549 init_host_hash(); /* Host-hashtable. */
550 client_init();
551 class_init();
552 whowas_init();
553 watch_init();
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 channel_init();
562
563 if (EmptyString(ServerInfo.sid))
564 {
565 ilog(LOG_TYPE_IRCD, "ERROR: No server id specified in serverinfo block.");
566 exit(EXIT_FAILURE);
567 }
568
569 strlcpy(me.id, ServerInfo.sid, sizeof(me.id));
570
571 if (EmptyString(ServerInfo.name))
572 {
573 ilog(LOG_TYPE_IRCD, "ERROR: No server name specified in serverinfo block.");
574 exit(EXIT_FAILURE);
575 }
576
577 strlcpy(me.name, ServerInfo.name, sizeof(me.name));
578
579 /* serverinfo{} description must exist. If not, error out.*/
580 if (EmptyString(ServerInfo.description))
581 {
582 ilog(LOG_TYPE_IRCD, "ERROR: No server description specified in serverinfo block.");
583 exit(EXIT_FAILURE);
584 }
585
586 strlcpy(me.info, ServerInfo.description, sizeof(me.info));
587
588 me.from = &me;
589 me.servptr = &me;
590 me.localClient->lasttime = CurrentTime;
591 me.localClient->since = CurrentTime;
592 me.localClient->firsttime = CurrentTime;
593
594 SetMe(&me);
595 make_server(&me);
596
597 hash_add_id(&me);
598 hash_add_client(&me);
599
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!");
612 exit(EXIT_FAILURE);
613 }
614
615 load_all_modules(1);
616 load_conf_modules();
617 load_core_modules(1);
618
619 /* Go back to DPATH after checking to see if we can chdir to MODPATH */
620 if (chdir(ConfigFileEntry.dpath))
621 {
622 perror("chdir");
623 exit(EXIT_FAILURE);
624 }
625
626 /*
627 * assemble_umode_buffer() has to be called after
628 * reading conf/loading modules.
629 */
630 assemble_umode_buffer();
631
632 write_pidfile(pidFileName);
633
634 ilog(LOG_TYPE_IRCD, "Server Ready");
635
636 eventAddIsh("cleanup_glines", cleanup_glines, NULL, CLEANUP_GLINES_TIME);
637 eventAddIsh("cleanup_tklines", cleanup_tklines, NULL, CLEANUP_TKLINES_TIME);
638
639 /* We want try_connections to be called as soon as possible now! -- adrian */
640 /* No, 'cause after a restart it would cause all sorts of nick collides */
641 eventAddIsh("try_connections", try_connections, NULL, STARTUP_CONNECTIONS_TIME);
642
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
651 ConfigServerHide.links_disabled = 1;
652
653 if (splitmode)
654 eventAddIsh("check_splitmode", check_splitmode, NULL, 60);
655
656 io_loop();
657 return 0;
658 }

Properties

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