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