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