Author: Michael Poole <mdpoole@troilus.org>
[ircu2.10.12-pk.git] / ircd / ircd.c
1 /*
2  * IRC - Internet Relay Chat, ircd/ircd.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
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 1, or (at your option)
9  * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20 /** @file
21  * @brief Entry point and other initialization functions for the daemon.
22  * @version $Id$
23  */
24 #include "config.h"
25
26 #include "ircd.h"
27 #include "IPcheck.h"
28 #include "class.h"
29 #include "client.h"
30 #include "crule.h"
31 #include "destruct_event.h"
32 #include "hash.h"
33 #include "ircd_alloc.h"
34 #include "ircd_events.h"
35 #include "ircd_features.h"
36 #include "ircd_log.h"
37 #include "ircd_reply.h"
38 #include "ircd_signal.h"
39 #include "ircd_string.h"
40 #include "ircd_crypt.h"
41 #include "jupe.h"
42 #include "list.h"
43 #include "match.h"
44 #include "motd.h"
45 #include "msg.h"
46 #include "numeric.h"
47 #include "numnicks.h"
48 #include "opercmds.h"
49 #include "parse.h"
50 #include "res.h"
51 #include "s_auth.h"
52 #include "s_bsd.h"
53 #include "s_conf.h"
54 #include "s_debug.h"
55 #include "s_misc.h"
56 #include "s_stats.h"
57 #include "send.h"
58 #include "sys.h"
59 #include "uping.h"
60 #include "userload.h"
61 #include "version.h"
62 #include "whowas.h"
63
64 /* #include <assert.h> -- Now using assert in ircd_log.h */
65 #include <errno.h>
66 #include <fcntl.h>
67 #include <netdb.h>
68 #include <pwd.h>
69 #include <stdio.h>
70 #include <stdlib.h>
71 #include <string.h>
72 #include <sys/time.h>
73 #ifdef HAVE_SYS_RESOURCE_H
74 #include <sys/resource.h>
75 #endif
76 #include <sys/socket.h>
77 #include <sys/stat.h>
78 #include <sys/types.h>
79 #include <unistd.h>
80
81
82
83 /*----------------------------------------------------------------------------
84  * External stuff
85  *--------------------------------------------------------------------------*/
86 extern void init_counters(void);
87 extern void mem_dbg_initialise(void);
88
89 /*----------------------------------------------------------------------------
90  * Constants / Enums
91  *--------------------------------------------------------------------------*/
92 enum {
93   BOOT_DEBUG = 1,  /**< Enable debug output. */
94   BOOT_TTY   = 2,  /**< Stay connected to TTY. */
95   BOOT_CHKCONF = 4 /**< Exit after reading configuration file. */
96 };
97
98
99 /*----------------------------------------------------------------------------
100  * Global data (YUCK!)
101  *--------------------------------------------------------------------------*/
102 struct Client  me;                      /**< That's me */
103 struct Connection me_con;               /**< That's me too */
104 struct Client *GlobalClientList  = &me; /**< Pointer to beginning of
105                                            Client list */
106 time_t         TSoffset          = 0;   /**< Offset of timestamps to system clock */
107 int            GlobalRehashFlag  = 0;   /**< do a rehash if set */
108 int            GlobalRestartFlag = 0;   /**< do a restart if set */
109 time_t         CurrentTime;             /**< Updated every time we leave select() */
110
111 char          *configfile        = CPATH; /**< Server configuration file */
112 int            debuglevel        = -1;    /**< Server debug level  */
113 char          *debugmode         = "";    /**< Server debug level */
114 static char   *dpath             = DPATH; /**< Working directory for daemon */
115 static char   *dbg_client;                /**< Client specifier for chkconf */
116
117 static struct Timer connect_timer; /**< timer structure for try_connections() */
118 static struct Timer ping_timer; /**< timer structure for check_pings() */
119 static struct Timer destruct_event_timer; /**< timer structure for exec_expired_destruct_events() */
120
121 /** Daemon information. */
122 static struct Daemon thisServer  = { 0, 0, 0, 0, 0, 0, -1 };
123
124 /** Non-zero until we want to exit. */
125 int running = 1;
126
127
128 /*----------------------------------------------------------------------------
129  * API: server_die
130  *--------------------------------------------------------------------------*/
131 /** Terminate the server with a message.
132  * @param[in] message Message to log and send to operators.
133  */
134 void server_die(const char *message)
135 {
136   /* log_write will send out message to both log file and as server notice */
137   log_write(LS_SYSTEM, L_CRIT, 0, "Server terminating: %s", message);
138   flush_connections(0);
139   close_connections(1);
140   running = 0;
141 }
142
143 /*----------------------------------------------------------------------------
144  * API: server_panic
145  *--------------------------------------------------------------------------*/
146 /** Immediately terminate the server with a message.
147  * @param[in] message Message to log, but not send to operators.
148  */
149 void server_panic(const char *message)
150 {
151   /* inhibit sending server notice--we may be panicking due to low memory */
152   log_write(LS_SYSTEM, L_CRIT, LOG_NOSNOTICE, "Server panic: %s", message);
153   flush_connections(0);
154   log_close();
155   close_connections(1);
156   exit(1);
157 }
158
159 /*----------------------------------------------------------------------------
160  * API: server_restart
161  *--------------------------------------------------------------------------*/
162 /** Restart the server with a message.
163  * @param[in] message Message to log and send to operators.
164  */
165 void server_restart(const char *message)
166 {
167   static int restarting = 0;
168
169   /* inhibit sending any server notices; we may be in a loop */
170   log_write(LS_SYSTEM, L_WARNING, LOG_NOSNOTICE, "Restarting Server: %s",
171             message);
172   if (restarting++) /* increment restarting to prevent looping */
173     return;
174
175   sendto_opmask_butone(0, SNO_OLDSNO, "Restarting server: %s", message);
176   Debug((DEBUG_NOTICE, "Restarting server..."));
177   flush_connections(0);
178
179   log_close();
180
181   close_connections(!(thisServer.bootopt & (BOOT_TTY | BOOT_DEBUG | BOOT_CHKCONF)));
182
183   reap_children();
184
185   execv(SPATH, thisServer.argv);
186
187   /* Have to reopen since it has been closed above */
188   log_reopen();
189
190   log_write(LS_SYSTEM, L_CRIT, 0, "execv(%s,%s) failed: %m", SPATH,
191             *thisServer.argv);
192
193   Debug((DEBUG_FATAL, "Couldn't restart server \"%s\": %s",
194          SPATH, (strerror(errno)) ? strerror(errno) : ""));
195   exit(8);
196 }
197
198
199 /*----------------------------------------------------------------------------
200  * outofmemory:  Handler for out of memory conditions...
201  *--------------------------------------------------------------------------*/
202 /** Handle out-of-memory condition. */
203 static void outofmemory(void) {
204   Debug((DEBUG_FATAL, "Out of memory: restarting server..."));
205   server_restart("Out of Memory");
206 }
207
208
209 /*----------------------------------------------------------------------------
210  * write_pidfile
211  *--------------------------------------------------------------------------*/
212 /** Write process ID to PID file. */
213 static void write_pidfile(void) {
214   char buff[20];
215
216   if (thisServer.pid_fd >= 0) {
217     memset(buff, 0, sizeof(buff));
218     sprintf(buff, "%5d\n", (int)getpid());
219     if (write(thisServer.pid_fd, buff, strlen(buff)) == -1)
220       Debug((DEBUG_NOTICE, "Error writing to pid file %s: %m",
221              feature_str(FEAT_PPATH)));
222     return;
223   }
224   Debug((DEBUG_NOTICE, "Error opening pid file %s: %m",
225          feature_str(FEAT_PPATH)));
226 }
227
228 /** Try to create the PID file.
229  * @return Zero on success; non-zero on any error.
230  */
231 static int check_pid(void)
232 {
233   struct flock lock;
234
235   lock.l_type = F_WRLCK;
236   lock.l_start = 0;
237   lock.l_whence = SEEK_SET;
238   lock.l_len = 0;
239
240   if ((thisServer.pid_fd = open(feature_str(FEAT_PPATH), O_CREAT | O_RDWR,
241                                 0600)) >= 0)
242     return fcntl(thisServer.pid_fd, F_SETLK, &lock) == -1;
243
244   return 1;
245 }
246
247
248 /** Look for any connections that we should try to initiate.
249  * Reschedules itself to run again at the appropriate time.
250  * @param[in] ev Timer event (ignored).
251  */
252 static void try_connections(struct Event* ev) {
253   struct ConfItem*  aconf;
254   struct ConfItem** pconf;
255   time_t            next;
256   struct Jupe*      ajupe;
257   int               hold;
258   int               done;
259
260   assert(ET_EXPIRE == ev_type(ev));
261   assert(0 != ev_timer(ev));
262
263   Debug((DEBUG_NOTICE, "Connection check at   : %s", myctime(CurrentTime)));
264   next = CurrentTime + feature_int(FEAT_CONNECTFREQUENCY);
265   done = 0;
266
267   for (aconf = GlobalConfList; aconf; aconf = aconf->next) {
268     /* Only consider server items with non-zero port and non-zero
269      * connect times that are not actively juped.
270      */
271     if (!(aconf->status & CONF_SERVER)
272         || aconf->address.port == 0
273         || !(aconf->flags & CONF_AUTOCONNECT)
274         || ((ajupe = jupe_find(aconf->name)) && JupeIsActive(ajupe)))
275       continue;
276
277     /* Do we need to postpone this connection further? */
278     hold = aconf->hold > CurrentTime;
279
280     /* Update next possible connection check time. */
281     if (hold && next > aconf->hold)
282         next = aconf->hold;
283
284     /* Do not try to connect if its use is still on hold until future,
285      * we have already initiated a connection this try_connections(),
286      * too many links in its connection class, it is already linked,
287      * or if connect rules forbid a link now.
288      */
289     if (hold || done
290         || (ConfLinks(aconf) > ConfMaxLinks(aconf))
291         || FindServer(aconf->name)
292         || conf_eval_crule(aconf->name, CRULE_MASK))
293       continue;
294
295     /* Ensure it is at the end of the list for future checks. */
296     if (aconf->next) {
297       /* Find aconf's location in the list and splice it out. */
298       for (pconf = &GlobalConfList; *pconf; pconf = &(*pconf)->next)
299         if (*pconf == aconf)
300           *pconf = aconf->next;
301       /* Reinsert it at the end of the list (where pconf is now). */
302       *pconf = aconf;
303       aconf->next = 0;
304     }
305
306     /* Activate the connection itself. */
307     if (connect_server(aconf, 0))
308       sendto_opmask_butone(0, SNO_OLDSNO, "Connection to %s activated.",
309                            aconf->name);
310
311     /* And stop looking for further candidates. */
312     done = 1;
313   }
314
315   Debug((DEBUG_NOTICE, "Next connection check : %s", myctime(next)));
316   timer_add(&connect_timer, try_connections, 0, TT_ABSOLUTE, next);
317 }
318
319
320 /** Check for clients that have not sent a ping response recently.
321  * Reschedules itself to run again at the appropriate time.
322  * @param[in] ev Timer event (ignored).
323  */
324 static void check_pings(struct Event* ev) {
325   int expire     = 0;
326   int next_check = CurrentTime;
327   int max_ping   = 0;
328   int i;
329
330   assert(ET_EXPIRE == ev_type(ev));
331   assert(0 != ev_timer(ev));
332
333   next_check += feature_int(FEAT_PINGFREQUENCY);
334   
335   /* Scan through the client table */
336   for (i=0; i <= HighestFd; i++) {
337     struct Client *cptr = LocalClientArray[i];
338    
339     if (!cptr)
340       continue;
341      
342     assert(&me != cptr);  /* I should never be in the local client array! */
343    
344
345     /* Remove dead clients. */
346     if (IsDead(cptr)) {
347       exit_client(cptr, cptr, &me, cli_info(cptr));
348       continue;
349     }
350
351     max_ping = IsRegistered(cptr) ? client_get_ping(cptr) :
352       feature_int(FEAT_CONNECTTIMEOUT);
353    
354     Debug((DEBUG_DEBUG, "check_pings(%s)=status:%s limit: %d current: %d",
355            cli_name(cptr),
356            IsPingSent(cptr) ? "[Ping Sent]" : "[]", 
357            max_ping, (int)(CurrentTime - cli_lasttime(cptr))));
358
359     /* If it's a server and we have not sent an AsLL lately, do so. */
360     if (IsServer(cptr)) {
361       if (CurrentTime - cli_serv(cptr)->asll_last >= max_ping) {
362         char *asll_ts;
363
364         SetPingSent(cptr);
365         cli_serv(cptr)->asll_last = CurrentTime;
366         expire = cli_serv(cptr)->asll_last + max_ping;
367         asll_ts = militime_float(NULL);
368         sendcmdto_prio_one(&me, CMD_PING, cptr, "!%s %s %s", asll_ts,
369                            cli_name(cptr), asll_ts);
370       }
371
372       expire = cli_serv(cptr)->asll_last + max_ping;
373       if (expire < next_check)
374         next_check = expire;
375     }
376
377     /* Ok, the thing that will happen most frequently, is that someone will
378      * have sent something recently.  Cover this first for speed.
379      * -- 
380      * If it's an unregistered client and hasn't managed to register within
381      * max_ping then it's obviously having problems (broken client) or it's
382      * just up to no good, so we won't skip it, even if its been sending
383      * data to us. 
384      * -- hikari
385      */
386     if ((CurrentTime-cli_lasttime(cptr) < max_ping) && IsRegistered(cptr)) {
387       expire = cli_lasttime(cptr) + max_ping;
388       if (expire < next_check) 
389         next_check = expire;
390       continue;
391     }
392
393     /* Unregistered clients pingout after max_ping seconds, they don't
394      * get given a second chance - if they were then people could not quite
395      * finish registration and hold resources without being subject to k/g
396      * lines
397      */
398     if (!IsRegistered(cptr)) {
399       assert(!IsServer(cptr));
400       /* If client authorization time has expired, ask auth whether they
401        * should be checked again later. */
402       if ((CurrentTime-cli_firsttime(cptr) >= max_ping)
403           && auth_ping_timeout(cptr))
404         continue;
405       /* OK, they still have enough time left, so we'll just skip to the
406        * next client.  Set the next check to be when their time is up, if
407        * that's before the currently scheduled next check -- hikari */
408       expire = cli_firsttime(cptr) + max_ping;
409       if (expire < next_check)
410         next_check = expire;
411       continue;
412     }
413
414     /* Quit the client after max_ping*2 - they should have answered by now */
415     if (CurrentTime-cli_lasttime(cptr) >= (max_ping*2) )
416     {
417       /* If it was a server, then tell ops about it. */
418       if (IsServer(cptr) || IsConnecting(cptr) || IsHandshake(cptr))
419         sendto_opmask_butone(0, SNO_OLDSNO,
420                              "No response from %s, closing link",
421                              cli_name(cptr));
422       exit_client_msg(cptr, cptr, &me, "Ping timeout");
423       continue;
424     }
425     
426     if (!IsPingSent(cptr))
427     {
428       /* If we haven't PINGed the connection and we haven't heard from it in a
429        * while, PING it to make sure it is still alive.
430        */
431       SetPingSent(cptr);
432
433       /* If we're late in noticing don't hold it against them :) */
434       cli_lasttime(cptr) = CurrentTime - max_ping;
435       
436       if (IsUser(cptr))
437         sendrawto_one(cptr, MSG_PING " :%s", cli_name(&me));
438       else
439         sendcmdto_prio_one(&me, CMD_PING, cptr, ":%s", cli_name(&me));
440     }
441     
442     expire = cli_lasttime(cptr) + max_ping * 2;
443     if (expire < next_check)
444       next_check=expire;
445   }
446   
447   assert(next_check >= CurrentTime);
448   
449   Debug((DEBUG_DEBUG, "[%i] check_pings() again in %is",
450          CurrentTime, next_check-CurrentTime));
451   
452   timer_add(&ping_timer, check_pings, 0, TT_ABSOLUTE, next_check);
453 }
454
455
456 /** Parse command line arguments.
457  * Global variables are updated to reflect the arguments.
458  * As a side effect, makes sure the process's effective user id is the
459  * same as the real user id.
460  * @param[in] argc Number of arguments on command line.
461  * @param[in,out] argv Command-lne arguments.
462  */
463 static void parse_command_line(int argc, char** argv) {
464   const char *options = "d:f:h:nktvx:c:";
465   int opt;
466
467   if (thisServer.euid != thisServer.uid)
468     setuid(thisServer.uid);
469
470   /* Do we really need to sanity check the non-NULLness of optarg?  That's
471    * getopt()'s job...  Removing those... -zs
472    */
473   while ((opt = getopt(argc, argv, options)) != EOF)
474     switch (opt) {
475     case 'k':  thisServer.bootopt |= BOOT_CHKCONF | BOOT_TTY; break;
476     case 'c':  dbg_client = optarg;                    break;
477     case 'n':
478     case 't':  thisServer.bootopt |= BOOT_TTY;         break;
479     case 'd':  dpath      = optarg;                    break;
480     case 'f':  configfile = optarg;                    break;
481     case 'h':  ircd_strncpy(cli_name(&me), optarg, HOSTLEN); break;
482     case 'v':
483       printf("ircd %s\n", version);
484       printf("Event engines: ");
485 #ifdef USE_KQUEUE
486       printf("kqueue() ");
487 #endif
488 #ifdef USE_DEVPOLL
489       printf("/dev/poll ");
490 #endif
491 #ifdef USE_EPOLL
492       printf("epoll_*() ");
493 #endif
494 #ifdef USE_POLL
495       printf("poll()");
496 #else
497       printf("select()");
498 #endif
499       printf("\nCompiled for a maximum of %d connections.\n", MAXCONNECTIONS);
500
501
502       exit(0);
503       break;
504
505     case 'x':
506       debuglevel = atoi(optarg);
507       if (debuglevel < 0)
508         debuglevel = 0;
509       debugmode = optarg;
510       thisServer.bootopt |= BOOT_DEBUG;
511 #ifndef DEBUGMODE
512       printf("WARNING: DEBUGMODE disabled; -x has no effect.\n");
513 #endif
514       break;
515
516     default:
517       printf("Usage: ircd [-f config] [-h servername] [-x loglevel] [-ntv] [-k [-c clispec]]\n"
518              "\n -f config\t specify explicit configuration file"
519              "\n -x loglevel\t set debug logging verbosity"
520              "\n -n or -t\t don't detach"
521              "\n -v\t\t display version"
522              "\n -k\t\t exit after checking config"
523              "\n -c clispec\t search for client/kill blocks matching client"
524              "\n\t\t clispec is comma-separated list of user@host,"
525              "\n\t\t user@ip, $Rrealname, and port number"
526              "\n\nServer not started.\n");
527       exit(1);
528     }
529 }
530
531
532 /** Become a daemon.
533  * @param[in] no_fork If non-zero, do not fork into the background.
534  */
535 static void daemon_init(int no_fork) {
536   if (no_fork)
537     return;
538
539   if (fork())
540     exit(0);
541
542 #ifdef TIOCNOTTY
543   {
544     int fd;
545     if ((fd = open("/dev/tty", O_RDWR)) > -1) {
546       ioctl(fd, TIOCNOTTY, 0);
547       close(fd);
548     }
549   }
550 #endif
551
552   setsid();
553 }
554
555 /** Check that we have access to a particular file.
556  * If we do not have access to the file, complain on stderr.
557  * @param[in] path File name to check for access.
558  * @param[in] which Configuration character associated with file.
559  * @param[in] mode Bitwise combination of R_OK, W_OK, X_OK and/or F_OK.
560  * @return Non-zero if we have the necessary access, zero if not.
561  */
562 static char check_file_access(const char *path, char which, int mode) {
563   if (!access(path, mode))
564     return 1;
565
566   fprintf(stderr, 
567           "Check on %cPATH (%s) failed: %s\n"
568           "Please create this file and/or rerun `configure' "
569           "using --with-%cpath and recompile to correct this.\n",
570           which, path, strerror(errno), which);
571
572   return 0;
573 }
574
575
576 /*----------------------------------------------------------------------------
577  * set_core_limit
578  *--------------------------------------------------------------------------*/
579 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_CORE)
580 /** Set the core size soft limit to the same as the hard limit. */
581 static void set_core_limit(void) {
582   struct rlimit corelim;
583
584   if (getrlimit(RLIMIT_CORE, &corelim)) {
585     fprintf(stderr, "Read of rlimit core size failed: %s\n", strerror(errno));
586     corelim.rlim_max = RLIM_INFINITY;   /* Try to recover */
587   }
588
589   corelim.rlim_cur = corelim.rlim_max;
590   if (setrlimit(RLIMIT_CORE, &corelim))
591     fprintf(stderr, "Setting rlimit core size failed: %s\n", strerror(errno));
592 }
593 #endif
594
595
596
597 /** Complain to stderr if any user or group ID belongs to the superuser.
598  * @return Non-zero if all IDs are okay, zero if some are 0.
599  */
600 static int set_userid_if_needed(void) {
601   if (getuid() == 0 || geteuid() == 0 ||
602       getgid() == 0 || getegid() == 0) {
603     fprintf(stderr, "ERROR:  This server will not run as superuser.\n");
604     return 0;
605   }
606
607   return 1;
608 }
609
610
611 /*----------------------------------------------------------------------------
612  * main - entrypoint
613  *
614  * TODO:  This should set the basic environment up and start the main loop.
615  *        we're doing waaaaaaaaay too much server initialization here.  I hate
616  *        long and ugly control paths...  -smd
617  *--------------------------------------------------------------------------*/
618 /** Run the daemon.
619  * @param[in] argc Number of arguments in \a argv.
620  * @param[in] argv Arguments to program execution.
621  */
622 int main(int argc, char **argv) {
623   CurrentTime = time(NULL);
624
625   thisServer.argc = argc;
626   thisServer.argv = argv;
627   thisServer.uid  = getuid();
628   thisServer.euid = geteuid();
629
630 #ifdef MDEBUG
631   mem_dbg_initialise();
632 #endif
633
634 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_CORE)
635   set_core_limit();
636 #endif
637
638   umask(077);                   /* better safe than sorry --SRB */
639   memset(&me, 0, sizeof(me));
640   memset(&me_con, 0, sizeof(me_con));
641   cli_connect(&me) = &me_con;
642   cli_fd(&me) = -1;
643
644   parse_command_line(argc, argv);
645
646   if (chdir(dpath)) {
647     fprintf(stderr, "Fail: Cannot chdir(%s): %s, check DPATH\n", dpath, strerror(errno));
648     return 2;
649   }
650
651   if (!set_userid_if_needed())
652     return 3;
653
654   /* Check paths for accessibility */
655   if (!check_file_access(SPATH, 'S', X_OK) ||
656       !check_file_access(configfile, 'C', R_OK))
657     return 4;
658
659   if (!init_connection_limits())
660     return 9;
661
662   close_connections(!(thisServer.bootopt & (BOOT_DEBUG | BOOT_TTY | BOOT_CHKCONF)));
663
664   /* daemon_init() must be before event_init() because kqueue() FDs
665    * are, perversely, not inherited across fork().
666    */
667   daemon_init(thisServer.bootopt & BOOT_TTY);
668
669 #ifdef DEBUGMODE
670   /* Must reserve fd 2... */
671   if (debuglevel >= 0 && !(thisServer.bootopt & BOOT_TTY)) {
672     int fd;
673     if ((fd = open("/dev/null", O_WRONLY)) < 0) {
674       fprintf(stderr, "Unable to open /dev/null (to reserve fd 2): %s\n",
675               strerror(errno));
676       return 8;
677     }
678     if (fd != 2 && dup2(fd, 2) < 0) {
679       fprintf(stderr, "Unable to reserve fd 2; dup2 said: %s\n",
680               strerror(errno));
681       return 8;
682     }
683   }
684 #endif
685
686   event_init(MAXCONNECTIONS);
687
688   setup_signals();
689   feature_init(); /* initialize features... */
690   log_init(*argv);
691   set_nomem_handler(outofmemory);
692
693   initload();
694   init_list();
695   init_hash();
696   init_class();
697   initwhowas();
698   initmsgtree();
699   initstats();
700
701   /* we need this for now, when we're modular this 
702      should be removed -- hikari */
703   ircd_crypt_init();
704
705   motd_init();
706
707   if (!init_conf()) {
708     log_write(LS_SYSTEM, L_CRIT, 0, "Failed to read configuration file %s",
709               configfile);
710     return 7;
711   }
712
713   if (thisServer.bootopt & BOOT_CHKCONF) {
714     if (dbg_client)
715       conf_debug_iline(dbg_client);
716     fprintf(stderr, "Configuration file %s checked okay.\n", configfile);
717     return 0;
718   }
719
720   debug_init(thisServer.bootopt & BOOT_TTY);
721   if (check_pid()) {
722     Debug((DEBUG_FATAL, "Failed to acquire PID file lock after fork"));
723     exit(2);
724   }
725
726   init_server_identity();
727
728   uping_init();
729
730   stats_init();
731
732   IPcheck_init();
733   timer_add(timer_init(&connect_timer), try_connections, 0, TT_RELATIVE, 1);
734   timer_add(timer_init(&ping_timer), check_pings, 0, TT_RELATIVE, 1);
735   timer_add(timer_init(&destruct_event_timer), exec_expired_destruct_events, 0, TT_PERIODIC, 60);
736
737   CurrentTime = time(NULL);
738
739   SetMe(&me);
740   cli_magic(&me) = CLIENT_MAGIC;
741   cli_from(&me) = &me;
742   make_server(&me);
743
744   cli_serv(&me)->timestamp = TStime();  /* Abuse own link timestamp as start TS */
745   cli_serv(&me)->prot      = atoi(MAJOR_PROTOCOL);
746   cli_serv(&me)->up        = &me;
747   cli_serv(&me)->down      = NULL;
748   cli_handler(&me)         = SERVER_HANDLER;
749
750   SetYXXCapacity(&me, MAXCLIENTS);
751
752   cli_lasttime(&me) = cli_since(&me) = cli_firsttime(&me) = CurrentTime;
753
754   hAddClient(&me);
755 #ifdef IPV6
756   SetIPv6(&me);
757 #endif
758
759   write_pidfile();
760   init_counters();
761
762   Debug((DEBUG_NOTICE, "Server ready..."));
763   log_write(LS_SYSTEM, L_NOTICE, 0, "Server Ready");
764
765   event_loop();
766
767   return 0;
768 }
769
770