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