006263b8f55eab5547162a1d2c47ebc553be07d8
[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       break;
512
513     default:
514       printf("Usage: ircd [-f config] [-h servername] [-x loglevel] [-ntv] [-k [-c clispec]]\n"
515              "\n -f config\t specify explicit configuration file"
516              "\n -x loglevel\t set debug logging verbosity"
517              "\n -n or -t\t don't detach"
518              "\n -v\t\t display version"
519              "\n -k\t\t exit after checking config"
520              "\n -c clispec\t search for client/kill blocks matching client"
521              "\n\t\t clispec is comma-separated list of user@host,"
522              "\n\t\t user@ip, $Rrealname, and port number"
523              "\n\nServer not started.\n");
524       exit(1);
525     }
526 }
527
528
529 /** Become a daemon.
530  * @param[in] no_fork If non-zero, do not fork into the background.
531  */
532 static void daemon_init(int no_fork) {
533   if (no_fork)
534     return;
535
536   if (fork())
537     exit(0);
538
539 #ifdef TIOCNOTTY
540   {
541     int fd;
542     if ((fd = open("/dev/tty", O_RDWR)) > -1) {
543       ioctl(fd, TIOCNOTTY, 0);
544       close(fd);
545     }
546   }
547 #endif
548
549   setsid();
550 }
551
552 /** Check that we have access to a particular file.
553  * If we do not have access to the file, complain on stderr.
554  * @param[in] path File name to check for access.
555  * @param[in] which Configuration character associated with file.
556  * @param[in] mode Bitwise combination of R_OK, W_OK, X_OK and/or F_OK.
557  * @return Non-zero if we have the necessary access, zero if not.
558  */
559 static char check_file_access(const char *path, char which, int mode) {
560   if (!access(path, mode))
561     return 1;
562
563   fprintf(stderr, 
564           "Check on %cPATH (%s) failed: %s\n"
565           "Please create this file and/or rerun `configure' "
566           "using --with-%cpath and recompile to correct this.\n",
567           which, path, strerror(errno), which);
568
569   return 0;
570 }
571
572
573 /*----------------------------------------------------------------------------
574  * set_core_limit
575  *--------------------------------------------------------------------------*/
576 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_CORE)
577 /** Set the core size soft limit to the same as the hard limit. */
578 static void set_core_limit(void) {
579   struct rlimit corelim;
580
581   if (getrlimit(RLIMIT_CORE, &corelim)) {
582     fprintf(stderr, "Read of rlimit core size failed: %s\n", strerror(errno));
583     corelim.rlim_max = RLIM_INFINITY;   /* Try to recover */
584   }
585
586   corelim.rlim_cur = corelim.rlim_max;
587   if (setrlimit(RLIMIT_CORE, &corelim))
588     fprintf(stderr, "Setting rlimit core size failed: %s\n", strerror(errno));
589 }
590 #endif
591
592
593
594 /** Complain to stderr if any user or group ID belongs to the superuser.
595  * @return Non-zero if all IDs are okay, zero if some are 0.
596  */
597 static int set_userid_if_needed(void) {
598   if (getuid() == 0 || geteuid() == 0 ||
599       getgid() == 0 || getegid() == 0) {
600     fprintf(stderr, "ERROR:  This server will not run as superuser.\n");
601     return 0;
602   }
603
604   return 1;
605 }
606
607
608 /*----------------------------------------------------------------------------
609  * main - entrypoint
610  *
611  * TODO:  This should set the basic environment up and start the main loop.
612  *        we're doing waaaaaaaaay too much server initialization here.  I hate
613  *        long and ugly control paths...  -smd
614  *--------------------------------------------------------------------------*/
615 /** Run the daemon.
616  * @param[in] argc Number of arguments in \a argv.
617  * @param[in] argv Arguments to program execution.
618  */
619 int main(int argc, char **argv) {
620   CurrentTime = time(NULL);
621
622   thisServer.argc = argc;
623   thisServer.argv = argv;
624   thisServer.uid  = getuid();
625   thisServer.euid = geteuid();
626
627 #ifdef MDEBUG
628   mem_dbg_initialise();
629 #endif
630
631 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_CORE)
632   set_core_limit();
633 #endif
634
635   umask(077);                   /* better safe than sorry --SRB */
636   memset(&me, 0, sizeof(me));
637   memset(&me_con, 0, sizeof(me_con));
638   cli_connect(&me) = &me_con;
639   cli_fd(&me) = -1;
640
641   parse_command_line(argc, argv);
642
643   if (chdir(dpath)) {
644     fprintf(stderr, "Fail: Cannot chdir(%s): %s, check DPATH\n", dpath, strerror(errno));
645     return 2;
646   }
647
648   if (!set_userid_if_needed())
649     return 3;
650
651   /* Check paths for accessibility */
652   if (!check_file_access(SPATH, 'S', X_OK) ||
653       !check_file_access(configfile, 'C', R_OK))
654     return 4;
655
656   if (!init_connection_limits())
657     return 9;
658
659   close_connections(!(thisServer.bootopt & (BOOT_DEBUG | BOOT_TTY | BOOT_CHKCONF)));
660
661   /* daemon_init() must be before event_init() because kqueue() FDs
662    * are, perversely, not inherited across fork().
663    */
664   daemon_init(thisServer.bootopt & BOOT_TTY);
665
666 #ifdef DEBUGMODE
667   /* Must reserve fd 2... */
668   if (debuglevel >= 0 && !(thisServer.bootopt & BOOT_TTY)) {
669     int fd;
670     if ((fd = open("/dev/null", O_WRONLY)) < 0) {
671       fprintf(stderr, "Unable to open /dev/null (to reserve fd 2): %s\n",
672               strerror(errno));
673       return 8;
674     }
675     if (fd != 2 && dup2(fd, 2) < 0) {
676       fprintf(stderr, "Unable to reserve fd 2; dup2 said: %s\n",
677               strerror(errno));
678       return 8;
679     }
680   }
681 #endif
682
683   event_init(MAXCONNECTIONS);
684
685   setup_signals();
686   feature_init(); /* initialize features... */
687   log_init(*argv);
688   set_nomem_handler(outofmemory);
689
690   initload();
691   init_list();
692   init_hash();
693   init_class();
694   initwhowas();
695   initmsgtree();
696   initstats();
697
698   /* we need this for now, when we're modular this 
699      should be removed -- hikari */
700   ircd_crypt_init();
701
702   motd_init();
703
704   if (!init_conf()) {
705     log_write(LS_SYSTEM, L_CRIT, 0, "Failed to read configuration file %s",
706               configfile);
707     return 7;
708   }
709
710   if (thisServer.bootopt & BOOT_CHKCONF) {
711     if (dbg_client)
712       conf_debug_iline(dbg_client);
713     fprintf(stderr, "Configuration file %s checked okay.\n", configfile);
714     return 0;
715   }
716
717   debug_init(thisServer.bootopt & BOOT_TTY);
718   if (check_pid()) {
719     Debug((DEBUG_FATAL, "Failed to acquire PID file lock after fork"));
720     exit(2);
721   }
722
723   init_server_identity();
724
725   uping_init();
726
727   stats_init();
728
729   IPcheck_init();
730   timer_add(timer_init(&connect_timer), try_connections, 0, TT_RELATIVE, 1);
731   timer_add(timer_init(&ping_timer), check_pings, 0, TT_RELATIVE, 1);
732   timer_add(timer_init(&destruct_event_timer), exec_expired_destruct_events, 0, TT_PERIODIC, 60);
733
734   CurrentTime = time(NULL);
735
736   SetMe(&me);
737   cli_magic(&me) = CLIENT_MAGIC;
738   cli_from(&me) = &me;
739   make_server(&me);
740
741   cli_serv(&me)->timestamp = TStime();  /* Abuse own link timestamp as start TS */
742   cli_serv(&me)->prot      = atoi(MAJOR_PROTOCOL);
743   cli_serv(&me)->up        = &me;
744   cli_serv(&me)->down      = NULL;
745   cli_handler(&me)         = SERVER_HANDLER;
746
747   SetYXXCapacity(&me, MAXCLIENTS);
748
749   cli_lasttime(&me) = cli_since(&me) = cli_firsttime(&me) = CurrentTime;
750
751   hAddClient(&me);
752
753   write_pidfile();
754   init_counters();
755
756   Debug((DEBUG_NOTICE, "Server ready..."));
757   log_write(LS_SYSTEM, L_NOTICE, 0, "Server Ready");
758
759   event_loop();
760
761   return 0;
762 }
763
764