]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
dbae71a9b1335e9d391d757415bcb9aba918b0eb
[user/henk/code/inspircd.git] / src / inspircd.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2005 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 /* Now with added unF! ;) */
18
19 using namespace std;
20
21 #include "inspircd_config.h"
22 #include "inspircd.h"
23 #include "inspircd_io.h"
24 #include <unistd.h>
25 #include <fcntl.h>
26 #include <sys/errno.h>
27 #include <sys/ioctl.h>
28 #include <sys/utsname.h>
29 #include <time.h>
30 #include <string>
31 #ifdef GCC3
32 #include <ext/hash_map>
33 #else
34 #include <hash_map>
35 #endif
36 #include <map>
37 #include <sstream>
38 #include <vector>
39 #include <deque>
40 #ifdef THREADED_DNS
41 #include <pthread.h>
42 #endif
43 #include "users.h"
44 #include "ctables.h"
45 #include "globals.h"
46 #include "modules.h"
47 #include "dynamic.h"
48 #include "wildcard.h"
49 #include "message.h"
50 #include "mode.h"
51 #include "commands.h"
52 #include "xline.h"
53 #include "inspstring.h"
54 #include "dnsqueue.h"
55 #include "helperfuncs.h"
56 #include "hashcomp.h"
57 #include "socketengine.h"
58 #include "userprocess.h"
59 #include "socket.h"
60 #include "typedefs.h"
61 #include "command_parse.h"
62
63 InspIRCd* ServerInstance;
64
65 int WHOWAS_STALE = 48; // default WHOWAS Entries last 2 days before they go 'stale'
66 int WHOWAS_MAX = 100;  // default 100 people maximum in the WHOWAS list
67
68 extern std::vector<Module*> modules;
69 extern std::vector<ircd_module*> factory;
70
71 std::vector<InspSocket*> module_sockets;
72 std::vector<userrec*> local_users;
73
74 extern int MODCOUNT;
75 int openSockfd[MAXSOCKS];
76 sockaddr_in client,server;
77 socklen_t length;
78
79 extern InspSocket* socket_ref[MAX_DESCRIPTORS];
80
81 time_t TIME = time(NULL), OLDTIME = time(NULL);
82
83 // This table references users by file descriptor.
84 // its an array to make it VERY fast, as all lookups are referenced
85 // by an integer, meaning there is no need for a scan/search operation.
86 userrec* fd_ref_table[65536];
87
88 Server* MyServer = new Server;
89 ServerConfig *Config = new ServerConfig;
90
91 user_hash clientlist;
92 chan_hash chanlist;
93 whowas_hash whowas;
94 servernamelist servernames;
95 char lowermap[255];
96
97 void AddServerName(std::string servername)
98 {
99         log(DEBUG,"Adding server name: %s",servername.c_str());
100         for (servernamelist::iterator a = servernames.begin(); a < servernames.end(); a++)
101         {
102                 if (*a == servername)
103                         return;
104         }
105         servernames.push_back(servername);
106 }
107
108 const char* FindServerNamePtr(std::string servername)
109 {
110         for (servernamelist::iterator a = servernames.begin(); a < servernames.end(); a++)
111         {
112                 if (*a == servername)
113                         return a->c_str();
114         }
115         AddServerName(servername);
116         return FindServerNamePtr(servername);
117 }
118
119 std::string InspIRCd::GetRevision()
120 {
121         /* w00t got me to replace a bunch of strtok_r
122          * with something nicer, so i did this. Its the
123          * same thing really, only in C++. It places the
124          * text into a std::stringstream which is a readable
125          * and writeable buffer stream, and then pops two
126          * words off it, space delimited. Because it reads
127          * into the same variable twice, the first word
128          * is discarded, and the second one returned.
129          */
130         std::stringstream Revision("$Revision$");
131         std::string single;
132         Revision >> single >> single;
133         return single;
134 }
135
136 void InspIRCd::MakeLowerMap()
137 {
138         // initialize the lowercase mapping table
139         for (unsigned int cn = 0; cn < 256; cn++)
140                 lowermap[cn] = cn;
141         // lowercase the uppercase chars
142         for (unsigned int cn = 65; cn < 91; cn++)
143                 lowermap[cn] = tolower(cn);
144         // now replace the specific chars for scandanavian comparison
145         lowermap[(unsigned)'['] = '{';
146         lowermap[(unsigned)']'] = '}';
147         lowermap[(unsigned)'\\'] = '|';
148 }
149
150 InspIRCd::InspIRCd(int argc, char** argv)
151 {
152         Start();
153         module_sockets.clear();
154         this->startup_time = time(NULL);
155         srand(time(NULL));
156         log(DEBUG,"*** InspIRCd starting up!");
157         if (!FileExists(CONFIG_FILE))
158         {
159                 printf("ERROR: Cannot open config file: %s\nExiting...\n",CONFIG_FILE);
160                 log(DEFAULT,"main: no config");
161                 printf("ERROR: Your config file is missing, this IRCd will self destruct in 10 seconds!\n");
162                 Exit(ERROR);
163         }
164         if (argc > 1) {
165                 for (int i = 1; i < argc; i++)
166                 {
167                         if (!strcmp(argv[i],"-nofork")) {
168                                 Config->nofork = true;
169                         }
170                         if (!strcmp(argv[i],"-wait")) {
171                                 sleep(6);
172                         }
173                         if (!strcmp(argv[i],"-nolimit")) {
174                                 Config->unlimitcore = true;
175                         }
176                 }
177         }
178
179         strlcpy(Config->MyExecutable,argv[0],MAXBUF);
180
181         this->MakeLowerMap();
182
183         OpenLog(argv, argc);
184         Config->ClearStack();
185         Config->Read(true,NULL);
186         CheckRoot();
187         this->ModeGrok = new ModeParser();
188         this->Parser = new CommandParser();
189         this->stats = new serverstats();
190         AddServerName(Config->ServerName);
191         CheckDie();
192         stats->BoundPortCount = BindPorts();
193
194         for(int t = 0; t < 255; t++)
195                 Config->global_implementation[t] = 0;
196
197         memset(&Config->implement_lists,0,sizeof(Config->implement_lists));
198
199         printf("\n");
200         SetSignals();
201         if (!Config->nofork)
202         {
203                 if (DaemonSeed() == ERROR)
204                 {
205                         printf("ERROR: could not go into daemon mode. Shutting down.\n");
206                         Exit(ERROR);
207                 }
208         }
209
210         /* Because of limitations in kqueue on freebsd, we must fork BEFORE we
211          * initialize the socket engine.
212          */
213         SE = new SocketEngine();
214
215         /* We must load the modules AFTER initializing the socket engine, now */
216
217         return;
218 }
219
220 std::string InspIRCd::GetVersionString()
221 {
222         char versiondata[MAXBUF];
223 #ifdef THREADED_DNS
224         char dnsengine[] = "multithread";
225 #else
226         char dnsengine[] = "singlethread";
227 #endif
228         snprintf(versiondata,MAXBUF,"%s Rev. %s %s :%s [FLAGS=%lu,%s,%s]",VERSION,GetRevision().c_str(),Config->ServerName,SYSTEM,(unsigned long)OPTIMISATION,SE->GetName().c_str(),dnsengine);
229         return versiondata;
230 }
231
232 char* InspIRCd::ModuleError()
233 {
234         return MODERR;
235 }
236
237 void InspIRCd::erase_factory(int j)
238 {
239         int v = 0;
240         for (std::vector<ircd_module*>::iterator t = factory.begin(); t != factory.end(); t++)
241         {
242                 if (v == j)
243                 {
244                         factory.erase(t);
245                         factory.push_back(NULL);
246                         return;
247                 }
248                 v++;
249         }
250 }
251
252 void InspIRCd::erase_module(int j)
253 {
254         int v1 = 0;
255         for (std::vector<Module*>::iterator m = modules.begin(); m!= modules.end(); m++)
256         {
257                 if (v1 == j)
258                 {
259                         delete *m;
260                         modules.erase(m);
261                         modules.push_back(NULL);
262                         break;
263                 }
264                 v1++;
265         }
266         int v2 = 0;
267         for (std::vector<std::string>::iterator v = Config->module_names.begin(); v != Config->module_names.end(); v++)
268         {
269                 if (v2 == j)
270                 {
271                        Config->module_names.erase(v);
272                        break;
273                 }
274                 v2++;
275         }
276
277 }
278
279 void InspIRCd::BuildISupport()
280 {
281         // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it...
282         std::stringstream v;
283         v << "WALLCHOPS MODES=13 CHANTYPES=# PREFIX=(ohv)@%+ MAP SAFELIST MAXCHANNELS=" << MAXCHANS << " MAXBANS=60 NICKLEN=" << NICKMAX;
284         v << " CASEMAPPING=rfc1459 STATUSMSG=@+ CHARSET=ascii TOPICLEN=" << MAXTOPIC << " KICKLEN=" << MAXKICK << " MAXTARGETS=20 AWAYLEN=";
285         v << MAXAWAY << " CHANMODES=ohvb,k,l,psmnti NETWORK=" << Config->Network;
286         Config->data005 = v.str();
287         FOREACH_MOD(I_On005Numeric,On005Numeric(Config->data005));
288 }
289
290 bool InspIRCd::UnloadModule(const char* filename)
291 {
292         std::string filename_str = filename;
293         for (unsigned int j = 0; j != Config->module_names.size(); j++)
294         {
295                 if (Config->module_names[j] == filename_str)
296                 {
297                         if (modules[j]->GetVersion().Flags & VF_STATIC)
298                         {
299                                 log(DEFAULT,"Failed to unload STATIC module %s",filename);
300                                 snprintf(MODERR,MAXBUF,"Module not unloadable (marked static)");
301                                 return false;
302                         }
303                         /* Give the module a chance to tidy out all its metadata */
304                         for (chan_hash::iterator c = chanlist.begin(); c != chanlist.end(); c++)
305                         {
306                                 modules[j]->OnCleanup(TYPE_CHANNEL,c->second);
307                         }
308                         for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
309                         {
310                                 modules[j]->OnCleanup(TYPE_USER,u->second);
311                         }
312
313                         for(int t = 0; t < 255; t++)
314                         {
315                                 Config->global_implementation[t] -= Config->implement_lists[j][t];
316                         }
317
318                         FOREACH_MOD(I_OnUnloadModule,OnUnloadModule(modules[j],Config->module_names[j]));
319                         // found the module
320                         log(DEBUG,"Deleting module...");
321                         erase_module(j);
322                         log(DEBUG,"Erasing module entry...");
323                         erase_factory(j);
324                         log(DEBUG,"Removing dependent commands...");
325                         Parser->RemoveCommands(filename);
326                         log(DEFAULT,"Module %s unloaded",filename);
327                         MODCOUNT--;
328                         BuildISupport();
329                         return true;
330                 }
331         }
332         log(DEFAULT,"Module %s is not loaded, cannot unload it!",filename);
333         snprintf(MODERR,MAXBUF,"Module not loaded");
334         return false;
335 }
336
337 bool InspIRCd::LoadModule(const char* filename)
338 {
339         char modfile[MAXBUF];
340 #ifdef STATIC_LINK
341         strlcpy(modfile,filename,MAXBUF);
342 #else
343         snprintf(modfile,MAXBUF,"%s/%s",Config->ModPath,filename);
344 #endif
345         std::string filename_str = filename;
346 #ifndef STATIC_LINK
347         if (!DirValid(modfile))
348         {
349                 log(DEFAULT,"Module %s is not within the modules directory.",modfile);
350                 snprintf(MODERR,MAXBUF,"Module %s is not within the modules directory.",modfile);
351                 return false;
352         }
353 #endif
354         log(DEBUG,"Loading module: %s",modfile);
355 #ifndef STATIC_LINK
356         if (FileExists(modfile))
357         {
358 #endif
359                 for (unsigned int j = 0; j < Config->module_names.size(); j++)
360                 {
361                         if (Config->module_names[j] == filename_str)
362                         {
363                                 log(DEFAULT,"Module %s is already loaded, cannot load a module twice!",modfile);
364                                 snprintf(MODERR,MAXBUF,"Module already loaded");
365                                 return false;
366                         }
367                 }
368                 ircd_module* a = new ircd_module(modfile);
369                 factory[MODCOUNT+1] = a;
370                 if (factory[MODCOUNT+1]->LastError())
371                 {
372                         log(DEFAULT,"Unable to load %s: %s",modfile,factory[MODCOUNT+1]->LastError());
373                         snprintf(MODERR,MAXBUF,"Loader/Linker error: %s",factory[MODCOUNT+1]->LastError());
374                         MODCOUNT--;
375                         return false;
376                 }
377                 if (factory[MODCOUNT+1]->factory)
378                 {
379                         Module* m = factory[MODCOUNT+1]->factory->CreateModule(MyServer);
380                         modules[MODCOUNT+1] = m;
381                         /* save the module and the module's classfactory, if
382                          * this isnt done, random crashes can occur :/ */
383                         Config->module_names.push_back(filename);
384
385                         char* x = &Config->implement_lists[MODCOUNT+1][0];
386                         for(int t = 0; t < 255; t++)
387                                 x[t] = 0;
388
389                         modules[MODCOUNT+1]->Implements(x);
390
391                         for(int t = 0; t < 255; t++)
392                         {
393                                 Config->global_implementation[t] += Config->implement_lists[MODCOUNT+1][t];
394                                 if (Config->implement_lists[MODCOUNT+1][t])
395                                 {
396                                         log(DEBUG,"Add global implementation: %d %d => %d",MODCOUNT+1,t,Config->global_implementation[t]);
397                                 }
398                         }
399                 }
400                 else
401                 {
402                         log(DEFAULT,"Unable to load %s",modfile);
403                         snprintf(MODERR,MAXBUF,"Factory function failed!");
404                         return false;
405                 }
406 #ifndef STATIC_LINK
407         }
408         else
409         {
410                 log(DEFAULT,"InspIRCd: startup: Module Not Found %s",modfile);
411                 snprintf(MODERR,MAXBUF,"Module file could not be found");
412                 return false;
413         }
414 #endif
415         MODCOUNT++;
416         FOREACH_MOD(I_OnLoadModule,OnLoadModule(modules[MODCOUNT],filename_str));
417         BuildISupport();
418         return true;
419 }
420
421 int InspIRCd::Run()
422 {
423         bool expire_run = false;
424         int activefds[MAX_DESCRIPTORS];
425         int incomingSockfd;
426         int in_port;
427         userrec* cu = NULL;
428         InspSocket* s = NULL;
429         InspSocket* s_del = NULL;
430         char* target;
431         unsigned int numberactive;
432         sockaddr_in sock_us;     // our port number
433         socklen_t uslen;         // length of our port number
434
435         /* Until THIS point, ServerInstance == NULL */
436         
437         LoadAllModules(this);
438
439         printf("\nInspIRCd is now running!\n");
440         
441         if (!Config->nofork)
442         {
443                 freopen("/dev/null","w",stdout);
444                 freopen("/dev/null","w",stderr);
445         }
446
447         /* Add the listening sockets used for client inbound connections
448          * to the socket engine
449          */
450         for (int count = 0; count < stats->BoundPortCount; count++)
451                 SE->AddFd(openSockfd[count],true,X_LISTEN);
452
453         WritePID(Config->PID);
454
455         /* main loop, this never returns */
456         for (;;)
457         {
458                 /* time() seems to be a pretty expensive syscall, so avoid calling it too much.
459                  * Once per loop iteration is pleanty.
460                  */
461                 OLDTIME = TIME;
462                 TIME = time(NULL);
463
464                 /* Run background module timers every few seconds
465                  * (the docs say modules shouldnt rely on accurate
466                  * timing using this event, so we dont have to
467                  * time this exactly).
468                  */
469                 if (((TIME % 8) == 0) && (!expire_run))
470                 {
471                         expire_lines();
472                         FOREACH_MOD(I_OnBackgroundTimer,OnBackgroundTimer(TIME));
473                         expire_run = true;
474                         continue;
475                 }
476                 else if ((TIME % 8) == 1)
477                 {
478                         expire_run = false;
479                 }
480                 
481                 /* Once a second, do the background processing */
482                 if (TIME != OLDTIME)
483                         DoBackgroundUserStuff(TIME);
484
485                 /* Call the socket engine to wait on the active
486                  * file descriptors. The socket engine has everything's
487                  * descriptors in its list... dns, modules, users,
488                  * servers... so its nice and easy, just one call.
489                  */
490                 if (!(numberactive = SE->Wait(activefds)))
491                         continue;
492
493                 /**
494                  * Now process each of the fd's. For users, we have a fast
495                  * lookup table which can find a user by file descriptor, so
496                  * processing them by fd isnt expensive. If we have a lot of
497                  * listening ports or module sockets though, things could get
498                  * ugly.
499                  */
500                 for (unsigned int activefd = 0; activefd < numberactive; activefd++)
501                 {
502                         int socket_type = SE->GetType(activefds[activefd]);
503                         switch (socket_type)
504                         {
505                                 case X_ESTAB_CLIENT:
506
507                                         cu = fd_ref_table[activefds[activefd]];
508                                         if (cu)
509                                                 ProcessUser(cu);
510
511                                 break;
512
513                                 case X_ESTAB_MODULE:
514
515                                         /* Process module-owned sockets.
516                                          * Modules are encouraged to inherit their sockets from
517                                          * InspSocket so we can process them neatly like this.
518                                          */
519                                         s = socket_ref[activefds[activefd]];
520
521                                         if ((s) && (!s->Poll()))
522                                         {
523                                                 log(DEBUG,"Socket poll returned false, close and bail");
524                                                 SE->DelFd(s->GetFd());
525                                                 for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++)
526                                                 {
527                                                         s_del = (InspSocket*)*a;
528                                                         if ((s_del) && (s_del->GetFd() == activefds[activefd]))
529                                                         {
530                                                                 module_sockets.erase(a);
531                                                                 break;
532                                                         }
533                                                 }
534                                                 s->Close();
535                                                 delete s;
536                                         }
537
538                                 break;
539
540                                 case X_ESTAB_DNS:
541
542                                         /* When we are using single-threaded dns,
543                                          * the sockets for dns end up in our mainloop.
544                                          * When we are using multi-threaded dns,
545                                          * each thread has its own basic poll() loop
546                                          * within it, making them 'fire and forget'
547                                          * and independent of the mainloop.
548                                          */
549 #ifndef THREADED_DNS
550                                         dns_poll(activefds[activefd]);
551 #endif
552                                 break;
553                                 
554                                 case X_LISTEN:
555
556                                         /* It's a listener */
557                                         uslen = sizeof(sock_us);
558                                         length = sizeof(client);
559                                         incomingSockfd = accept (activefds[activefd],(struct sockaddr*)&client,&length);
560                                         if (!getsockname(incomingSockfd,(sockaddr*)&sock_us,&uslen))
561                                         {
562                                                 in_port = ntohs(sock_us.sin_port);
563                                                 log(DEBUG,"Accepted socket %d",incomingSockfd);
564                                                 target = (char*)inet_ntoa(client.sin_addr);
565                                                 /* Years and years ago, we used to resolve here
566                                                  * using gethostbyaddr(). That is sucky and we
567                                                  * don't do that any more...
568                                                  */
569                                                 if (incomingSockfd >= 0)
570                                                 {
571                                                         NonBlocking(incomingSockfd);
572                                                         if (Config->GetIOHook(in_port))
573                                                         {
574                                                                 Config->GetIOHook(in_port)->OnRawSocketAccept(incomingSockfd, target, in_port);
575                                                         }
576                                                         stats->statsAccept++;
577                                                         AddClient(incomingSockfd, target, in_port, false, target);
578                                                         log(DEBUG,"Adding client on port %lu fd=%lu",(unsigned long)in_port,(unsigned long)incomingSockfd);
579                                                 }
580                                                 else
581                                                 {
582                                                         WriteOpers("*** WARNING: accept() failed on port %lu (%s)",(unsigned long)in_port,target);
583                                                         log(DEBUG,"accept failed: %lu",(unsigned long)in_port);
584                                                         stats->statsRefused++;
585                                                 }
586                                         }
587                                         else
588                                         {
589                                                 log(DEBUG,"Couldnt look up the port number for fd %lu (OS BROKEN?!)",incomingSockfd);
590                                                 shutdown(incomingSockfd,2);
591                                                 close(incomingSockfd);
592                                         }
593                                 break;
594
595                                 default:
596                                         /* Something went wrong if we're in here.
597                                          * In fact, so wrong, im not quite sure
598                                          * what we would do, so for now, its going
599                                          * to safely do bugger all.
600                                          */
601                                 break;
602                         }
603                 }
604
605         }
606         /* This is never reached -- we hope! */
607         return 0;
608 }
609
610 /**********************************************************************************/
611
612 /**
613  * An ircd in four lines! bwahahaha. ahahahahaha. ahahah *cough*.
614  */
615
616 int main(int argc, char** argv)
617 {
618         ServerInstance = new InspIRCd(argc, argv);
619         ServerInstance->Run();
620         delete ServerInstance;
621         return 0;
622 }
623