IPv6 support (hopefully with fewer future transition pains)
[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  * $Id$
21  */
22 #include "config.h"
23
24 #include "ircd.h"
25 #include "IPcheck.h"
26 #include "class.h"
27 #include "client.h"
28 #include "crule.h"
29 #include "destruct_event.h"
30 #include "hash.h"
31 #include "ircd_alloc.h"
32 #include "ircd_events.h"
33 #include "ircd_features.h"
34 #include "ircd_log.h"
35 #include "ircd_reply.h"
36 #include "ircd_signal.h"
37 #include "ircd_string.h"
38 #include "ircd_crypt.h"
39 #include "jupe.h"
40 #include "list.h"
41 #include "match.h"
42 #include "motd.h"
43 #include "msg.h"
44 #include "numeric.h"
45 #include "numnicks.h"
46 #include "opercmds.h"
47 #include "parse.h"
48 #include "res.h"
49 #include "s_auth.h"
50 #include "s_bsd.h"
51 #include "s_conf.h"
52 #include "s_debug.h"
53 #include "s_misc.h"
54 #include "s_stats.h"
55 #include "send.h"
56 #include "sys.h"
57 #include "uping.h"
58 #include "userload.h"
59 #include "version.h"
60 #include "whowas.h"
61
62 #include <assert.h>
63 #include <errno.h>
64 #include <fcntl.h>
65 #include <netdb.h>
66 #include <pwd.h>
67 #include <stdio.h>
68 #include <stdlib.h>
69 #include <string.h>
70 #include <sys/socket.h>
71 #include <sys/stat.h>
72 #include <sys/types.h>
73 #include <unistd.h>
74
75
76
77 /*----------------------------------------------------------------------------
78  * External stuff
79  *--------------------------------------------------------------------------*/
80 extern void init_counters(void);
81 extern void mem_dbg_initialise(void);
82
83 /*----------------------------------------------------------------------------
84  * Constants / Enums
85  *--------------------------------------------------------------------------*/
86 enum {
87   BOOT_DEBUG = 1,
88   BOOT_TTY   = 2
89 };
90
91
92 /*----------------------------------------------------------------------------
93  * Global data (YUCK!)
94  *--------------------------------------------------------------------------*/
95 struct Client  me;                      /* That's me */
96 struct Connection me_con;               /* That's me too */
97 struct Client *GlobalClientList  = &me; /* Pointer to beginning of
98                                            Client list */
99 time_t         TSoffset          = 0;/* Offset of timestamps to system clock */
100 int            GlobalRehashFlag  = 0;   /* do a rehash if set */
101 int            GlobalRestartFlag = 0;   /* do a restart if set */
102 time_t         CurrentTime;          /* Updated every time we leave select() */
103
104 char          *configfile        = CPATH; /* Server configuration file */
105 int            debuglevel        = -1;    /* Server debug level  */
106 char          *debugmode         = "";    /* Server debug level */
107 static char   *dpath             = DPATH;
108
109 static struct Timer connect_timer; /* timer structure for try_connections() */
110 static struct Timer ping_timer; /* timer structure for check_pings() */
111 static struct Timer destruct_event_timer; /* timer structure for exec_expired_destruct_events() */
112
113 static struct Daemon thisServer  = { 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0 };
114
115 int running = 1;
116
117
118 /*----------------------------------------------------------------------------
119  * API: server_die
120  *--------------------------------------------------------------------------*/
121 void server_die(const char *message)
122 {
123   /* log_write will send out message to both log file and as server notice */
124   log_write(LS_SYSTEM, L_CRIT, 0, "Server terminating: %s", message);
125   flush_connections(0);
126   close_connections(1);
127   running = 0;
128 }
129
130 /*----------------------------------------------------------------------------
131  * API: server_panic
132  *--------------------------------------------------------------------------*/
133 void server_panic(const char *message)
134 {
135   /* inhibit sending server notice--we may be panicing due to low memory */
136   log_write(LS_SYSTEM, L_CRIT, LOG_NOSNOTICE, "Server panic: %s", message);
137   flush_connections(0);
138   log_close();
139   close_connections(1);
140   exit(1);
141 }
142
143 /*----------------------------------------------------------------------------
144  * API: server_restart
145  *--------------------------------------------------------------------------*/
146 void server_restart(const char *message)
147 {
148   static int restarting = 0;
149
150   /* inhibit sending any server notices; we may be in a loop */
151   log_write(LS_SYSTEM, L_WARNING, LOG_NOSNOTICE, "Restarting Server: %s",
152             message);
153   if (restarting++) /* increment restarting to prevent looping */
154     return;
155
156   sendto_opmask_butone(0, SNO_OLDSNO, "Restarting server: %s", message);
157   Debug((DEBUG_NOTICE, "Restarting server..."));
158   flush_connections(0);
159
160   log_close();
161
162   close_connections(!(thisServer.bootopt & (BOOT_TTY | BOOT_DEBUG)));
163
164   execv(SPATH, thisServer.argv);
165
166   /* Have to reopen since it has been closed above */
167   log_reopen();
168
169   log_write(LS_SYSTEM, L_CRIT, 0, "execv(%s,%s) failed: %m", SPATH,
170             *thisServer.argv);
171
172   Debug((DEBUG_FATAL, "Couldn't restart server \"%s\": %s",
173          SPATH, (strerror(errno)) ? strerror(errno) : ""));
174   exit(8);
175 }
176
177
178 /*----------------------------------------------------------------------------
179  * outofmemory:  Handler for out of memory conditions...
180  *--------------------------------------------------------------------------*/
181 static void outofmemory(void) {
182   Debug((DEBUG_FATAL, "Out of memory: restarting server..."));
183   server_restart("Out of Memory");
184
185
186
187 /*----------------------------------------------------------------------------
188  * write_pidfile
189  *--------------------------------------------------------------------------*/
190 static void write_pidfile(void) {
191   char buff[20];
192
193   if (thisServer.pid_fd >= 0) {
194     memset(buff, 0, sizeof(buff));
195     sprintf(buff, "%5d\n", (int)getpid());
196     if (write(thisServer.pid_fd, buff, strlen(buff)) == -1)
197       Debug((DEBUG_NOTICE, "Error writing to pid file %s: %m",
198              feature_str(FEAT_PPATH)));
199     return;
200   }
201   Debug((DEBUG_NOTICE, "Error opening pid file %s: %m",
202          feature_str(FEAT_PPATH)));
203 }
204
205 /* check_pid
206  * 
207  * inputs: 
208  *   none
209  * returns:
210  *   true - if the pid file exists (and is readable), and the pid refered
211  *          to in the file is still running.
212  *   false - otherwise.
213  */
214 static int check_pid(void)
215 {
216   struct flock lock;
217
218   lock.l_type = F_WRLCK;
219   lock.l_start = 0;
220   lock.l_whence = SEEK_SET;
221   lock.l_len = 0;
222
223   if ((thisServer.pid_fd = open(feature_str(FEAT_PPATH), O_CREAT | O_RDWR,
224                                 0600)) >= 0)
225     return fcntl(thisServer.pid_fd, F_SETLK, &lock);
226
227   return 0;
228 }
229   
230
231 /*----------------------------------------------------------------------------
232  * try_connections
233  *
234  * Scan through configuration and try new connections.
235  *
236  * Returns the calendar time when the next call to this
237  * function should be made latest. (No harm done if this
238  * is called earlier or later...)
239  *--------------------------------------------------------------------------*/
240 static void try_connections(struct Event* ev) {
241   struct ConfItem*  aconf;
242   struct Client*    cptr;
243   struct ConfItem** pconf;
244   int               connecting;
245   int               confrq;
246   time_t            next        = 0;
247   struct ConnectionClass* cltmp;
248   struct ConfItem*  con_conf    = 0;
249   struct Jupe*      ajupe;
250   const char*       con_class   = NULL;
251
252   assert(ET_EXPIRE == ev_type(ev));
253   assert(0 != ev_timer(ev));
254
255   connecting = FALSE;
256   Debug((DEBUG_NOTICE, "Connection check at   : %s", myctime(CurrentTime)));
257   for (aconf = GlobalConfList; aconf; aconf = aconf->next) {
258     /* Also when already connecting! (update holdtimes) --SRB */
259     if (!(aconf->status & CONF_SERVER) || aconf->address.port == 0 || aconf->hold == 0)
260       continue;
261
262     /* Also skip juped servers */
263     if ((ajupe = jupe_find(aconf->name)) && JupeIsActive(ajupe))
264       continue;
265
266     /* Skip this entry if the use of it is still on hold until
267      * future. Otherwise handle this entry (and set it on hold until next
268      * time). Will reset only hold times, if already made one successfull
269      * connection... [this algorithm is a bit fuzzy... -- msa >;) ]
270      */
271     if (aconf->hold > CurrentTime && (next > aconf->hold || next == 0)) {
272       next = aconf->hold;
273       continue;
274     }
275
276     cltmp = aconf->conn_class;
277     confrq = get_con_freq(cltmp);
278     if(confrq == 0)
279       aconf->hold = next = 0;
280     else
281       aconf->hold = CurrentTime + confrq;
282
283     /* Found a CONNECT config with port specified, scan clients and see if
284      * this server is already connected?
285      */
286     cptr = FindServer(aconf->name);
287
288     if (!cptr && (Links(cltmp) < MaxLinks(cltmp)) &&
289         (!connecting /*|| (ConClass(cltmp) > con_class)*/)) {
290       /*
291        * Check connect rules to see if we're allowed to try
292        */
293       if (0 == conf_eval_crule(aconf->name, CRULE_MASK)) {
294         con_class = ConClass(cltmp);
295         con_conf = aconf;
296         /* We connect only one at time... */
297         connecting = TRUE;
298       }
299     }
300     if ((next > aconf->hold) || (next == 0))
301       next = aconf->hold;
302   }
303   if (connecting) {
304     if (con_conf->next) { /* are we already last? */
305       /* Put the current one at the end and make sure we try all connections */
306       for (pconf = &GlobalConfList; (aconf = *pconf); pconf = &(aconf->next))
307         if (aconf == con_conf)
308           *pconf = aconf->next;
309       (*pconf = con_conf)->next = 0;
310     }
311
312     if (connect_server(con_conf, 0))
313       sendto_opmask_butone(0, SNO_OLDSNO, "Connection to %s activated.",
314                            con_conf->name);
315   }
316
317   if (next == 0)
318     next = CurrentTime + feature_int(FEAT_CONNECTFREQUENCY);
319
320   Debug((DEBUG_NOTICE, "Next connection check : %s", myctime(next)));
321
322   timer_add(&connect_timer, try_connections, 0, TT_ABSOLUTE, next);
323 }
324
325
326 /*----------------------------------------------------------------------------
327  * check_pings
328  *
329  * TODO: This should be moved out of ircd.c.  It's protocol-specific when you
330  *       get right down to it.  Can't really be done until the server is more
331  *       modular, however...
332  *--------------------------------------------------------------------------*/
333 static void check_pings(struct Event* ev) {
334   int expire     = 0;
335   int next_check = CurrentTime;
336   int max_ping   = 0;
337   int i;
338
339   assert(ET_EXPIRE == ev_type(ev));
340   assert(0 != ev_timer(ev));
341
342   next_check += feature_int(FEAT_PINGFREQUENCY);
343   
344   /* Scan through the client table */
345   for (i=0; i <= HighestFd; i++) {
346     struct Client *cptr = LocalClientArray[i];
347    
348     if (!cptr)
349       continue;
350      
351     assert(&me != cptr);  /* I should never be in the local client array! */
352    
353
354     /* Remove dead clients. */
355     if (IsDead(cptr)) {
356       exit_client(cptr, cptr, &me, cli_info(cptr));
357       continue;
358     }
359
360     max_ping = IsRegistered(cptr) ? client_get_ping(cptr) :
361       feature_int(FEAT_CONNECTTIMEOUT);
362    
363     Debug((DEBUG_DEBUG, "check_pings(%s)=status:%s limit: %d current: %d",
364            cli_name(cptr),
365            IsPingSent(cptr) ? "[Ping Sent]" : "[]", 
366            max_ping, (int)(CurrentTime - cli_lasttime(cptr))));
367
368     /* Ok, the thing that will happen most frequently, is that someone will
369      * have sent something recently.  Cover this first for speed.
370      * -- 
371      * If it's an unregisterd client and hasn't managed to register within
372      * max_ping then it's obviously having problems (broken client) or it's
373      * just up to no good, so we won't skip it, even if its been sending
374      * data to us. 
375      * -- hikari
376      */
377     if ((CurrentTime-cli_lasttime(cptr) < max_ping) && IsRegistered(cptr)) {
378       expire = cli_lasttime(cptr) + max_ping;
379       if (expire < next_check) 
380         next_check = expire;
381       continue;
382     }
383
384     /* Unregistered clients pingout after max_ping seconds, they don't
385      * get given a second chance - if they were then people could not quite
386      * finish registration and hold resources without being subject to k/g
387      * lines
388      */
389     if (!IsRegistered(cptr)) {
390       assert(!IsServer(cptr));
391       if ((CurrentTime-cli_firsttime(cptr) >= max_ping)) {
392        /* Display message if they have sent a NICK and a USER but no
393         * nospoof PONG.
394         */
395        if (*(cli_name(cptr)) && cli_user(cptr) && *(cli_user(cptr))->username) {
396          send_reply(cptr, SND_EXPLICIT | ERR_BADPING,
397            ":Your client may not be compatible with this server.");
398          send_reply(cptr, SND_EXPLICIT | ERR_BADPING,
399            ":Compatible clients are available at %s",
400          feature_str(FEAT_URL_CLIENTS));
401        }
402        exit_client_msg(cptr,cptr,&me, "Registration Timeout");
403        continue;
404       } else {
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
415     /* Quit the client after max_ping*2 - they should have answered by now */
416     if (CurrentTime-cli_lasttime(cptr) >= (max_ping*2) )
417     {
418       /* If it was a server, then tell ops about it. */
419       if (IsServer(cptr) || IsConnecting(cptr) || IsHandshake(cptr))
420         sendto_opmask_butone(0, SNO_OLDSNO,
421                              "No response from %s, closing link",
422                              cli_name(cptr));
423       exit_client_msg(cptr, cptr, &me, "Ping timeout");
424       continue;
425     }
426     
427     if (!IsPingSent(cptr))
428     {
429       /* If we havent PINGed the connection and we havent heard from it in a
430        * while, PING it to make sure it is still alive.
431        */
432       SetPingSent(cptr);
433
434       /* If we're late in noticing don't hold it against them :) */
435       cli_lasttime(cptr) = CurrentTime - max_ping;
436       
437       if (IsUser(cptr))
438         sendrawto_one(cptr, MSG_PING " :%s", cli_name(&me));
439       else
440       {
441         char *asll_ts = militime_float(NULL);
442         sendcmdto_one(&me, CMD_PING, cptr, "!%s %s %s", asll_ts,
443                       cli_name(cptr), asll_ts);
444       }
445     }
446     
447     expire = cli_lasttime(cptr) + max_ping * 2;
448     if (expire < next_check)
449       next_check=expire;
450   }
451   
452   assert(next_check >= CurrentTime);
453   
454   Debug((DEBUG_DEBUG, "[%i] check_pings() again in %is",
455          CurrentTime, next_check-CurrentTime));
456   
457   timer_add(&ping_timer, check_pings, 0, TT_ABSOLUTE, next_check);
458 }
459
460
461 /*----------------------------------------------------------------------------
462  * parse_command_line
463  * Side Effects: changes GLOBALS me, thisServer, dpath, configfile, debuglevel
464  * debugmode
465  *--------------------------------------------------------------------------*/
466 static void parse_command_line(int argc, char** argv) {
467   const char *options = "d:f:h:ntvx:";
468   int opt;
469
470   if (thisServer.euid != thisServer.uid)
471     setuid(thisServer.uid);
472
473   /* Do we really need to santiy check the non-NULLness of optarg?  That's
474    * getopt()'s job...  Removing those... -zs
475    */
476   while ((opt = getopt(argc, argv, options)) != EOF)
477     switch (opt) {
478     case 'n':
479     case 't':  thisServer.bootopt |= BOOT_TTY;         break;
480     case 'd':  dpath      = optarg;                    break;
481     case 'f':  configfile = optarg;                    break;
482     case 'h':  ircd_strncpy(cli_name(&me), optarg, HOSTLEN); break;
483     case 'v':
484       printf("ircd %s\n", version);
485       printf("Event engines: ");
486 #ifdef USE_KQUEUE
487       printf("kqueue() ");
488 #endif
489 #ifdef USE_DEVPOLL
490       printf("/dev/poll ");
491 #endif
492 #ifdef USE_POLL
493       printf("poll()");
494 #else
495       printf("select()");
496 #endif
497       printf("\nCompiled for a maximum of %d connections.\n", MAXCONNECTIONS);
498
499
500       exit(0);
501       break;
502       
503     case 'x':
504       debuglevel = atoi(optarg);
505       if (debuglevel < 0)
506         debuglevel = 0;
507       debugmode = optarg;
508       thisServer.bootopt |= BOOT_DEBUG;
509       break;
510       
511     default:
512       printf("Usage: ircd [-f config] [-h servername] [-x loglevel] [-ntv]\n");
513       printf("\n -n -t\t Don't detach\n -v\t display version\n\n");
514       printf("Server not started.\n");
515       exit(1);
516     }
517 }
518
519
520 /*----------------------------------------------------------------------------
521  * daemon_init
522  *--------------------------------------------------------------------------*/
523 static void daemon_init(int no_fork) {
524   if (!init_connection_limits())
525     exit(9);
526
527   close_connections(!(thisServer.bootopt & (BOOT_DEBUG | BOOT_TTY)));
528
529   if (no_fork)
530     return;
531
532   if (fork())
533     exit(0);
534
535 #ifdef TIOCNOTTY
536   {
537     int fd;
538     if ((fd = open("/dev/tty", O_RDWR)) > -1) {
539       ioctl(fd, TIOCNOTTY, 0);
540       close(fd);
541     }
542   }
543 #endif
544
545   setsid();
546 }
547
548 /*----------------------------------------------------------------------------
549  * check_file_access:  random helper function to make sure that a file is
550  *                     accessible in a certain way, and complain if not.
551  *--------------------------------------------------------------------------*/
552 static char check_file_access(const char *path, char which, int mode) {
553   if (!access(path, mode))
554     return 1;
555
556   fprintf(stderr, 
557           "Check on %cPATH (%s) failed: %s\n"
558           "Please create this file and/or rerun `configure' "
559           "using --with-%cpath and recompile to correct this.\n",
560           which, path, strerror(errno), which);
561
562   return 0;
563 }
564
565
566 /*----------------------------------------------------------------------------
567  * set_core_limit
568  *--------------------------------------------------------------------------*/
569 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_CORE)
570 static void set_core_limit(void) {
571   struct rlimit corelim;
572
573   if (getrlimit(RLIMIT_CORE, &corelim)) {
574     fprintf(stderr, "Read of rlimit core size failed: %s\n", strerror(errno));
575     corelim.rlim_max = RLIM_INFINITY;   /* Try to recover */
576   }
577
578   corelim.rlim_cur = corelim.rlim_max;
579   if (setrlimit(RLIMIT_CORE, &corelim))
580     fprintf(stderr, "Setting rlimit core size failed: %s\n", strerror(errno));
581 }
582 #endif
583
584
585
586 /*----------------------------------------------------------------------------
587  * set_userid_if_needed()
588  *--------------------------------------------------------------------------*/
589 static int set_userid_if_needed(void) {
590   if (getuid() == 0 || geteuid() == 0 ||
591       getgid() == 0 || getegid() == 0) {
592     fprintf(stderr, "ERROR:  This server will not run as superuser.\n");
593     return 0;
594   }
595
596   return 1;
597 }
598
599
600 /*----------------------------------------------------------------------------
601  * main - entrypoint
602  *
603  * TODO:  This should set the basic environment up and start the main loop.
604  *        we're doing waaaaaaaaay too much server initialization here.  I hate
605  *        long and ugly control paths...  -smd
606  *--------------------------------------------------------------------------*/
607 int main(int argc, char **argv) {
608   CurrentTime = time(NULL);
609
610   thisServer.argc = argc;
611   thisServer.argv = argv;
612   thisServer.uid  = getuid();
613   thisServer.euid = geteuid();
614
615 #ifdef MDEBUG
616   mem_dbg_initialise();
617 #endif
618
619 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_CORE)
620   set_core_limit();
621 #endif
622
623   umask(077);                   /* better safe than sorry --SRB */
624   memset(&me, 0, sizeof(me));
625   memset(&me_con, 0, sizeof(me_con));
626   cli_connect(&me) = &me_con;
627   cli_fd(&me) = -1;
628
629   parse_command_line(argc, argv);
630
631   if (chdir(dpath)) {
632     fprintf(stderr, "Fail: Cannot chdir(%s): %s, check DPATH\n", dpath, strerror(errno));
633     return 2;
634   }
635
636   if (!set_userid_if_needed())
637     return 3;
638
639   /* Check paths for accessibility */
640   if (!check_file_access(SPATH, 'S', X_OK) ||
641       !check_file_access(configfile, 'C', R_OK))
642     return 4;
643
644   debug_init(thisServer.bootopt & BOOT_TTY);
645   daemon_init(thisServer.bootopt & BOOT_TTY);
646   event_init(MAXCONNECTIONS);
647
648   setup_signals();
649   feature_init(); /* initialize features... */
650   log_init(*argv);
651   set_nomem_handler(outofmemory);
652   
653   if (!init_string()) {
654     log_write(LS_SYSTEM, L_CRIT, 0, "Failed to initialize string module");
655     return 6;
656   }
657
658   initload();
659   init_list();
660   init_hash();
661   init_class();
662   initwhowas();
663   initmsgtree();
664   initstats();
665
666   init_resolver();
667
668   /* we need this for now, when we're modular this 
669      should be removed -- hikari */
670   ircd_crypt_init();
671
672   motd_init();
673
674   if (!init_conf()) {
675     log_write(LS_SYSTEM, L_CRIT, 0, "Failed to read configuration file %s",
676               configfile);
677     return 7;
678   }
679
680   if (check_pid()) {
681     Debug((DEBUG_FATAL, "Failed to acquire PID file lock after fork"));
682     exit(2);
683   }
684
685   init_server_identity();
686
687   uping_init();
688
689   stats_init();
690
691   IPcheck_init();
692   timer_add(timer_init(&connect_timer), try_connections, 0, TT_RELATIVE, 1);
693   timer_add(timer_init(&ping_timer), check_pings, 0, TT_RELATIVE, 1);
694   timer_add(timer_init(&destruct_event_timer), exec_expired_destruct_events, 0, TT_PERIODIC, 60);
695
696   CurrentTime = time(NULL);
697
698   SetMe(&me);
699   cli_magic(&me) = CLIENT_MAGIC;
700   cli_from(&me) = &me;
701   make_server(&me);
702
703   cli_serv(&me)->timestamp = TStime();  /* Abuse own link timestamp as start TS */
704   cli_serv(&me)->prot      = atoi(MAJOR_PROTOCOL);
705   cli_serv(&me)->up        = &me;
706   cli_serv(&me)->down      = NULL;
707   cli_handler(&me)         = SERVER_HANDLER;
708
709   SetYXXCapacity(&me, MAXCLIENTS);
710
711   cli_lasttime(&me) = cli_since(&me) = cli_firsttime(&me) = CurrentTime;
712
713   hAddClient(&me);
714
715   write_pidfile();
716   init_counters();
717
718   Debug((DEBUG_NOTICE, "Server ready..."));
719   log_write(LS_SYSTEM, L_NOTICE, 0, "Server Ready");
720
721   event_loop();
722
723   return 0;
724 }
725
726