Fix an infinite loop in ircd.c and skip clone checking for 0.0.0.0 clients.
[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
252   assert(ET_EXPIRE == ev_type(ev));
253   assert(0 != ev_timer(ev));
254
255   Debug((DEBUG_NOTICE, "Connection check at   : %s", myctime(CurrentTime)));
256   for (aconf = GlobalConfList; aconf; aconf = aconf->next) {
257     /* Only consider server items with non-zero port and non-zero
258      * connect times that are not actively juped.
259      */
260     if (!(aconf->status & CONF_SERVER)
261         || aconf->address.port == 0
262         || aconf->hold == 0
263         || ((ajupe = jupe_find(aconf->name)) && JupeIsActive(ajupe)))
264       continue;
265
266     /* Update next possible connection check time. */
267     if (next > aconf->hold || next == 0)
268         next = aconf->hold;
269
270     /* Update the next time we can consider this entry. */
271     cltmp = aconf->conn_class;
272     aconf->hold = ConFreq(cltmp) ? CurrentTime + ConFreq(cltmp) : 0;
273
274     /* Do not try to connect if its use is still on hold until future,
275      * too many links in its connection class, it is already linked,
276      * or if connect rules forbid a link now.
277      */
278     if ((aconf->hold > CurrentTime)
279         || (Links(cltmp) >= MaxLinks(cltmp))
280         || FindServer(aconf->name)
281         || conf_eval_crule(aconf->name, CRULE_MASK))
282       continue;
283
284     /* Ensure it is at the end of the list for future checks. */
285     if (aconf->next) {
286       /* Find aconf's location in the list and splice it out. */
287       for (pconf = &GlobalConfList; *pconf; pconf = &(*pconf)->next)
288         if (*pconf == aconf)
289           *pconf = aconf->next;
290       /* Reinsert it at the end of the list (where pconf is now). */
291       *pconf = aconf;
292       aconf->next = 0;
293     }
294
295     /* Activate the connection itself. */
296     if (connect_server(aconf, 0))
297       sendto_opmask_butone(0, SNO_OLDSNO, "Connection to %s activated.",
298                            aconf->name);
299
300     /* And stop looking for further candidates. */
301     break;
302   }
303
304   if (next == 0)
305     next = CurrentTime + feature_int(FEAT_CONNECTFREQUENCY);
306
307   Debug((DEBUG_NOTICE, "Next connection check : %s", myctime(next)));
308
309   timer_add(&connect_timer, try_connections, 0, TT_ABSOLUTE, next);
310 }
311
312
313 /** Check for clients that have not sent a ping response recently.
314  * Reschedules itself to run again at the appropriate time.
315  * @param[in] ev Timer event (ignored).
316  */
317 static void check_pings(struct Event* ev) {
318   int expire     = 0;
319   int next_check = CurrentTime;
320   int max_ping   = 0;
321   int i;
322
323   assert(ET_EXPIRE == ev_type(ev));
324   assert(0 != ev_timer(ev));
325
326   next_check += feature_int(FEAT_PINGFREQUENCY);
327   
328   /* Scan through the client table */
329   for (i=0; i <= HighestFd; i++) {
330     struct Client *cptr = LocalClientArray[i];
331    
332     if (!cptr)
333       continue;
334      
335     assert(&me != cptr);  /* I should never be in the local client array! */
336    
337
338     /* Remove dead clients. */
339     if (IsDead(cptr)) {
340       exit_client(cptr, cptr, &me, cli_info(cptr));
341       continue;
342     }
343
344     max_ping = IsRegistered(cptr) ? client_get_ping(cptr) :
345       feature_int(FEAT_CONNECTTIMEOUT);
346    
347     Debug((DEBUG_DEBUG, "check_pings(%s)=status:%s limit: %d current: %d",
348            cli_name(cptr),
349            IsPingSent(cptr) ? "[Ping Sent]" : "[]", 
350            max_ping, (int)(CurrentTime - cli_lasttime(cptr))));
351
352     /* Ok, the thing that will happen most frequently, is that someone will
353      * have sent something recently.  Cover this first for speed.
354      * -- 
355      * If it's an unregisterd client and hasn't managed to register within
356      * max_ping then it's obviously having problems (broken client) or it's
357      * just up to no good, so we won't skip it, even if its been sending
358      * data to us. 
359      * -- hikari
360      */
361     if ((CurrentTime-cli_lasttime(cptr) < max_ping) && IsRegistered(cptr)) {
362       expire = cli_lasttime(cptr) + max_ping;
363       if (expire < next_check) 
364         next_check = expire;
365       continue;
366     }
367
368     /* Unregistered clients pingout after max_ping seconds, they don't
369      * get given a second chance - if they were then people could not quite
370      * finish registration and hold resources without being subject to k/g
371      * lines
372      */
373     if (!IsRegistered(cptr)) {
374       assert(!IsServer(cptr));
375       if ((CurrentTime-cli_firsttime(cptr) >= max_ping)) {
376        /* Display message if they have sent a NICK and a USER but no
377         * nospoof PONG.
378         */
379        if (*(cli_name(cptr)) && cli_user(cptr) && *(cli_user(cptr))->username) {
380          send_reply(cptr, SND_EXPLICIT | ERR_BADPING,
381            ":Your client may not be compatible with this server.");
382          send_reply(cptr, SND_EXPLICIT | ERR_BADPING,
383            ":Compatible clients are available at %s",
384          feature_str(FEAT_URL_CLIENTS));
385        }
386        exit_client_msg(cptr,cptr,&me, "Registration Timeout");
387        continue;
388       } else {
389         /* OK, they still have enough time left, so we'll just skip to the
390          * next client.  Set the next check to be when their time is up, if
391          * that's before the currently scheduled next check -- hikari */
392         expire = cli_firsttime(cptr) + max_ping;
393         if (expire < next_check)
394           next_check = expire;
395         continue;
396       }
397     }
398
399     /* Quit the client after max_ping*2 - they should have answered by now */
400     if (CurrentTime-cli_lasttime(cptr) >= (max_ping*2) )
401     {
402       /* If it was a server, then tell ops about it. */
403       if (IsServer(cptr) || IsConnecting(cptr) || IsHandshake(cptr))
404         sendto_opmask_butone(0, SNO_OLDSNO,
405                              "No response from %s, closing link",
406                              cli_name(cptr));
407       exit_client_msg(cptr, cptr, &me, "Ping timeout");
408       continue;
409     }
410     
411     if (!IsPingSent(cptr))
412     {
413       /* If we havent PINGed the connection and we havent heard from it in a
414        * while, PING it to make sure it is still alive.
415        */
416       SetPingSent(cptr);
417
418       /* If we're late in noticing don't hold it against them :) */
419       cli_lasttime(cptr) = CurrentTime - max_ping;
420       
421       if (IsUser(cptr))
422         sendrawto_one(cptr, MSG_PING " :%s", cli_name(&me));
423       else
424       {
425         char *asll_ts = militime_float(NULL);
426         sendcmdto_one(&me, CMD_PING, cptr, "!%s %s %s", asll_ts,
427                       cli_name(cptr), asll_ts);
428       }
429     }
430     
431     expire = cli_lasttime(cptr) + max_ping * 2;
432     if (expire < next_check)
433       next_check=expire;
434   }
435   
436   assert(next_check >= CurrentTime);
437   
438   Debug((DEBUG_DEBUG, "[%i] check_pings() again in %is",
439          CurrentTime, next_check-CurrentTime));
440   
441   timer_add(&ping_timer, check_pings, 0, TT_ABSOLUTE, next_check);
442 }
443
444
445 /** Parse command line arguments.
446  * Global variables are updated to reflect the arguments.
447  * As a side effect, makes sure the process's effective user id is the
448  * same as the real user id.
449  * @param[in] argc Number of arguments on command line.
450  * @param[in,out] argv Command-lne arguments.
451  */
452 static void parse_command_line(int argc, char** argv) {
453   const char *options = "d:f:h:nktvx:";
454   int opt;
455
456   if (thisServer.euid != thisServer.uid)
457     setuid(thisServer.uid);
458
459   /* Do we really need to santiy check the non-NULLness of optarg?  That's
460    * getopt()'s job...  Removing those... -zs
461    */
462   while ((opt = getopt(argc, argv, options)) != EOF)
463     switch (opt) {
464     case 'k':  thisServer.bootopt |= BOOT_CHKCONF;     break;
465     case 'n':
466     case 't':  thisServer.bootopt |= BOOT_TTY;         break;
467     case 'd':  dpath      = optarg;                    break;
468     case 'f':  configfile = optarg;                    break;
469     case 'h':  ircd_strncpy(cli_name(&me), optarg, HOSTLEN); break;
470     case 'v':
471       printf("ircd %s\n", version);
472       printf("Event engines: ");
473 #ifdef USE_KQUEUE
474       printf("kqueue() ");
475 #endif
476 #ifdef USE_DEVPOLL
477       printf("/dev/poll ");
478 #endif
479 #ifdef USE_POLL
480       printf("poll()");
481 #else
482       printf("select()");
483 #endif
484       printf("\nCompiled for a maximum of %d connections.\n", MAXCONNECTIONS);
485
486
487       exit(0);
488       break;
489       
490     case 'x':
491       debuglevel = atoi(optarg);
492       if (debuglevel < 0)
493         debuglevel = 0;
494       debugmode = optarg;
495       thisServer.bootopt |= BOOT_DEBUG;
496       break;
497       
498     default:
499       printf("Usage: ircd [-f config] [-h servername] [-x loglevel] [-ntvk]\n");
500       printf("\n -n -t\t Don't detach\n -v\t display version\n -k\t exit after checking config\n\n");
501       printf("Server not started.\n");
502       exit(1);
503     }
504 }
505
506
507 /** Become a daemon.
508  * @param[in] no_fork If non-zero, do not fork into the background.
509  */
510 static void daemon_init(int no_fork) {
511   if (no_fork)
512     return;
513
514   if (fork())
515     exit(0);
516
517 #ifdef TIOCNOTTY
518   {
519     int fd;
520     if ((fd = open("/dev/tty", O_RDWR)) > -1) {
521       ioctl(fd, TIOCNOTTY, 0);
522       close(fd);
523     }
524   }
525 #endif
526
527   setsid();
528 }
529
530 /** Check that we have access to a particular file.
531  * If we do not have access to the file, complain on stderr.
532  * @param[in] path File name to check for access.
533  * @param[in] which Configuration character associated with file.
534  * @param[in] mode Bitwise combination of R_OK, W_OK, X_OK and/or F_OK.
535  * @return Non-zero if we have the necessary access, zero if not.
536  */
537 static char check_file_access(const char *path, char which, int mode) {
538   if (!access(path, mode))
539     return 1;
540
541   fprintf(stderr, 
542           "Check on %cPATH (%s) failed: %s\n"
543           "Please create this file and/or rerun `configure' "
544           "using --with-%cpath and recompile to correct this.\n",
545           which, path, strerror(errno), which);
546
547   return 0;
548 }
549
550
551 /*----------------------------------------------------------------------------
552  * set_core_limit
553  *--------------------------------------------------------------------------*/
554 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_CORE)
555 /** Set the core size soft limit to the same as the hard limit. */
556 static void set_core_limit(void) {
557   struct rlimit corelim;
558
559   if (getrlimit(RLIMIT_CORE, &corelim)) {
560     fprintf(stderr, "Read of rlimit core size failed: %s\n", strerror(errno));
561     corelim.rlim_max = RLIM_INFINITY;   /* Try to recover */
562   }
563
564   corelim.rlim_cur = corelim.rlim_max;
565   if (setrlimit(RLIMIT_CORE, &corelim))
566     fprintf(stderr, "Setting rlimit core size failed: %s\n", strerror(errno));
567 }
568 #endif
569
570
571
572 /** Complain to stderr if any user or group ID belongs to the superuser.
573  * @return Non-zero if all IDs are okay, zero if some are 0.
574  */
575 static int set_userid_if_needed(void) {
576   if (getuid() == 0 || geteuid() == 0 ||
577       getgid() == 0 || getegid() == 0) {
578     fprintf(stderr, "ERROR:  This server will not run as superuser.\n");
579     return 0;
580   }
581
582   return 1;
583 }
584
585
586 /*----------------------------------------------------------------------------
587  * main - entrypoint
588  *
589  * TODO:  This should set the basic environment up and start the main loop.
590  *        we're doing waaaaaaaaay too much server initialization here.  I hate
591  *        long and ugly control paths...  -smd
592  *--------------------------------------------------------------------------*/
593 /** Run the daemon.
594  * @param[in] argc Number of arguments in \a argv.
595  * @param[in] argv Arguments to program execution.
596  */
597 int main(int argc, char **argv) {
598   CurrentTime = time(NULL);
599
600   thisServer.argc = argc;
601   thisServer.argv = argv;
602   thisServer.uid  = getuid();
603   thisServer.euid = geteuid();
604
605 #ifdef MDEBUG
606   mem_dbg_initialise();
607 #endif
608
609 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_CORE)
610   set_core_limit();
611 #endif
612
613   umask(077);                   /* better safe than sorry --SRB */
614   memset(&me, 0, sizeof(me));
615   memset(&me_con, 0, sizeof(me_con));
616   cli_connect(&me) = &me_con;
617   cli_fd(&me) = -1;
618
619   parse_command_line(argc, argv);
620
621   if (chdir(dpath)) {
622     fprintf(stderr, "Fail: Cannot chdir(%s): %s, check DPATH\n", dpath, strerror(errno));
623     return 2;
624   }
625
626   if (!set_userid_if_needed())
627     return 3;
628
629   /* Check paths for accessibility */
630   if (!check_file_access(SPATH, 'S', X_OK) ||
631       !check_file_access(configfile, 'C', R_OK))
632     return 4;
633
634   if (!init_connection_limits())
635     return 9;
636
637   close_connections(!(thisServer.bootopt & (BOOT_DEBUG | BOOT_TTY | BOOT_CHKCONF)));
638
639   event_init(MAXCONNECTIONS);
640
641   setup_signals();
642   feature_init(); /* initialize features... */
643   log_init(*argv);
644   set_nomem_handler(outofmemory);
645
646   if (!init_string()) {
647     log_write(LS_SYSTEM, L_CRIT, 0, "Failed to initialize string module");
648     return 6;
649   }
650
651   initload();
652   init_list();
653   init_hash();
654   init_class();
655   initwhowas();
656   initmsgtree();
657   initstats();
658
659   /* we need this for now, when we're modular this 
660      should be removed -- hikari */
661   ircd_crypt_init();
662
663   motd_init();
664
665   if (!init_conf()) {
666     log_write(LS_SYSTEM, L_CRIT, 0, "Failed to read configuration file %s",
667               configfile);
668     return 7;
669   }
670
671   if (thisServer.bootopt & BOOT_CHKCONF) {
672     fprintf(stderr, "Configuration file %s checked okay.\n", configfile);
673     return 0;
674   }
675
676   debug_init(thisServer.bootopt & BOOT_TTY);
677   daemon_init(thisServer.bootopt & BOOT_TTY);
678   if (check_pid()) {
679     Debug((DEBUG_FATAL, "Failed to acquire PID file lock after fork"));
680     exit(2);
681   }
682
683   init_server_identity();
684
685   uping_init();
686
687   stats_init();
688
689   IPcheck_init();
690   timer_add(timer_init(&connect_timer), try_connections, 0, TT_RELATIVE, 1);
691   timer_add(timer_init(&ping_timer), check_pings, 0, TT_RELATIVE, 1);
692   timer_add(timer_init(&destruct_event_timer), exec_expired_destruct_events, 0, TT_PERIODIC, 60);
693
694   CurrentTime = time(NULL);
695
696   SetMe(&me);
697   cli_magic(&me) = CLIENT_MAGIC;
698   cli_from(&me) = &me;
699   make_server(&me);
700
701   cli_serv(&me)->timestamp = TStime();  /* Abuse own link timestamp as start TS */
702   cli_serv(&me)->prot      = atoi(MAJOR_PROTOCOL);
703   cli_serv(&me)->up        = &me;
704   cli_serv(&me)->down      = NULL;
705   cli_handler(&me)         = SERVER_HANDLER;
706
707   SetYXXCapacity(&me, MAXCLIENTS);
708
709   cli_lasttime(&me) = cli_since(&me) = cli_firsttime(&me) = CurrentTime;
710
711   hAddClient(&me);
712
713   write_pidfile();
714   init_counters();
715
716   Debug((DEBUG_NOTICE, "Server ready..."));
717   log_write(LS_SYSTEM, L_NOTICE, 0, "Server Ready");
718
719   event_loop();
720
721   return 0;
722 }
723
724