]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
Split all commands into seperate files and redid command system to take classes,...
[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 std::vector<InspSocket*> module_sockets;
71 std::vector<userrec*> local_users;
72
73 extern int MODCOUNT;
74 int openSockfd[MAXSOCKS];
75 sockaddr_in client,server;
76 socklen_t length;
77 extern Module* IOHookModule;
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         printf("\n");
197         if (!Config->nofork)
198         {
199                 if (DaemonSeed() == ERROR)
200                 {
201                         printf("ERROR: could not go into daemon mode. Shutting down.\n");
202                         Exit(ERROR);
203                 }
204         }
205
206         /* Because of limitations in kqueue on freebsd, we must fork BEFORE we
207          * initialize the socket engine.
208          */
209         SE = new SocketEngine();
210
211         /* We must load the modules AFTER initializing the socket engine, now */
212
213         return;
214 }
215
216 std::string InspIRCd::GetVersionString()
217 {
218         char versiondata[MAXBUF];
219 #ifdef THREADED_DNS
220         char dnsengine[] = "multithread";
221 #else
222         char dnsengine[] = "singlethread";
223 #endif
224         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);
225         return versiondata;
226 }
227
228 char* InspIRCd::ModuleError()
229 {
230         return MODERR;
231 }
232
233 void InspIRCd::erase_factory(int j)
234 {
235         int v = 0;
236         for (std::vector<ircd_module*>::iterator t = factory.begin(); t != factory.end(); t++)
237         {
238                 if (v == j)
239                 {
240                         factory.erase(t);
241                         factory.push_back(NULL);
242                         return;
243                 }
244                 v++;
245         }
246 }
247
248 void InspIRCd::erase_module(int j)
249 {
250         int v1 = 0;
251         for (std::vector<Module*>::iterator m = modules.begin(); m!= modules.end(); m++)
252         {
253                 if (v1 == j)
254                 {
255                         delete *m;
256                         modules.erase(m);
257                         modules.push_back(NULL);
258                         break;
259                 }
260                 v1++;
261         }
262         int v2 = 0;
263         for (std::vector<std::string>::iterator v = Config->module_names.begin(); v != Config->module_names.end(); v++)
264         {
265                 if (v2 == j)
266                 {
267                        Config->module_names.erase(v);
268                        break;
269                 }
270                 v2++;
271         }
272
273 }
274
275 bool InspIRCd::UnloadModule(const char* filename)
276 {
277         std::string filename_str = filename;
278         for (unsigned int j = 0; j != Config->module_names.size(); j++)
279         {
280                 if (Config->module_names[j] == filename_str)
281                 {
282                         if (modules[j]->GetVersion().Flags & VF_STATIC)
283                         {
284                                 log(DEFAULT,"Failed to unload STATIC module %s",filename);
285                                 snprintf(MODERR,MAXBUF,"Module not unloadable (marked static)");
286                                 return false;
287                         }
288                         /* Give the module a chance to tidy out all its metadata */
289                         for (chan_hash::iterator c = chanlist.begin(); c != chanlist.end(); c++)
290                         {
291                                 modules[j]->OnCleanup(TYPE_CHANNEL,c->second);
292                         }
293                         for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
294                         {
295                                 modules[j]->OnCleanup(TYPE_USER,u->second);
296                         }
297                         FOREACH_MOD OnUnloadModule(modules[j],Config->module_names[j]);
298                         // found the module
299                         log(DEBUG,"Deleting module...");
300                         erase_module(j);
301                         log(DEBUG,"Erasing module entry...");
302                         erase_factory(j);
303                         log(DEBUG,"Removing dependent commands...");
304                         Parser->RemoveCommands(filename);
305                         log(DEFAULT,"Module %s unloaded",filename);
306                         MODCOUNT--;
307                         return true;
308                 }
309         }
310         log(DEFAULT,"Module %s is not loaded, cannot unload it!",filename);
311         snprintf(MODERR,MAXBUF,"Module not loaded");
312         return false;
313 }
314
315 bool InspIRCd::LoadModule(const char* filename)
316 {
317         char modfile[MAXBUF];
318 #ifdef STATIC_LINK
319         snprintf(modfile,MAXBUF,"%s",filename);
320 #else
321         snprintf(modfile,MAXBUF,"%s/%s",Config->ModPath,filename);
322 #endif
323         std::string filename_str = filename;
324 #ifndef STATIC_LINK
325         if (!DirValid(modfile))
326         {
327                 log(DEFAULT,"Module %s is not within the modules directory.",modfile);
328                 snprintf(MODERR,MAXBUF,"Module %s is not within the modules directory.",modfile);
329                 return false;
330         }
331 #endif
332         log(DEBUG,"Loading module: %s",modfile);
333 #ifndef STATIC_LINK
334         if (FileExists(modfile))
335         {
336 #endif
337                 for (unsigned int j = 0; j < Config->module_names.size(); j++)
338                 {
339                         if (Config->module_names[j] == filename_str)
340                         {
341                                 log(DEFAULT,"Module %s is already loaded, cannot load a module twice!",modfile);
342                                 snprintf(MODERR,MAXBUF,"Module already loaded");
343                                 return false;
344                         }
345                 }
346                 ircd_module* a = new ircd_module(modfile);
347                 factory[MODCOUNT+1] = a;
348                 if (factory[MODCOUNT+1]->LastError())
349                 {
350                         log(DEFAULT,"Unable to load %s: %s",modfile,factory[MODCOUNT+1]->LastError());
351                         snprintf(MODERR,MAXBUF,"Loader/Linker error: %s",factory[MODCOUNT+1]->LastError());
352                         MODCOUNT--;
353                         return false;
354                 }
355                 if (factory[MODCOUNT+1]->factory)
356                 {
357                         Module* m = factory[MODCOUNT+1]->factory->CreateModule(MyServer);
358                         modules[MODCOUNT+1] = m;
359                         /* save the module and the module's classfactory, if
360                          * this isnt done, random crashes can occur :/ */
361                         Config->module_names.push_back(filename);
362                 }
363                 else
364                 {
365                         log(DEFAULT,"Unable to load %s",modfile);
366                         snprintf(MODERR,MAXBUF,"Factory function failed!");
367                         return false;
368                 }
369 #ifndef STATIC_LINK
370         }
371         else
372         {
373                 log(DEFAULT,"InspIRCd: startup: Module Not Found %s",modfile);
374                 snprintf(MODERR,MAXBUF,"Module file could not be found");
375                 return false;
376         }
377 #endif
378         MODCOUNT++;
379         FOREACH_MOD OnLoadModule(modules[MODCOUNT],filename_str);
380         return true;
381 }
382
383 int InspIRCd::Run()
384 {
385         bool expire_run = false;
386         std::vector<int> activefds;
387         int incomingSockfd;
388         int in_port;
389         userrec* cu = NULL;
390         InspSocket* s = NULL;
391         InspSocket* s_del = NULL;
392         char* target;
393         unsigned int numberactive;
394         sockaddr_in sock_us;     // our port number
395         socklen_t uslen;         // length of our port number
396
397         /* Until THIS point, ServerInstance == NULL */
398         
399         LoadAllModules(this);
400
401         printf("\nInspIRCd is now running!\n");
402         
403         if (!Config->nofork)
404         {
405                 freopen("/dev/null","w",stdout);
406                 freopen("/dev/null","w",stderr);
407         }
408
409         /* Add the listening sockets used for client inbound connections
410          * to the socket engine
411          */
412         for (int count = 0; count < stats->BoundPortCount; count++)
413                 SE->AddFd(openSockfd[count],true,X_LISTEN);
414
415         WritePID(Config->PID);
416
417         /* main loop, this never returns */
418         for (;;)
419         {
420                 /* time() seems to be a pretty expensive syscall, so avoid calling it too much.
421                  * Once per loop iteration is pleanty.
422                  */
423                 OLDTIME = TIME;
424                 TIME = time(NULL);
425
426                 /* Run background module timers every few seconds
427                  * (the docs say modules shouldnt rely on accurate
428                  * timing using this event, so we dont have to
429                  * time this exactly).
430                  */
431                 if (((TIME % 8) == 0) && (!expire_run))
432                 {
433                         expire_lines();
434                         FOREACH_MOD OnBackgroundTimer(TIME);
435                         expire_run = true;
436                         continue;
437                 }
438                 if ((TIME % 8) == 1)
439                         expire_run = false;
440                 
441                 /* Once a second, do the background processing */
442                 if (TIME != OLDTIME)
443                         while (DoBackgroundUserStuff(TIME));
444
445                 /* Call the socket engine to wait on the active
446                  * file descriptors. The socket engine has everything's
447                  * descriptors in its list... dns, modules, users,
448                  * servers... so its nice and easy, just one call.
449                  */
450                 SE->Wait(activefds);
451
452                 /**
453                  * Now process each of the fd's. For users, we have a fast
454                  * lookup table which can find a user by file descriptor, so
455                  * processing them by fd isnt expensive. If we have a lot of
456                  * listening ports or module sockets though, things could get
457                  * ugly.
458                  */
459                 numberactive = activefds.size();
460                 for (unsigned int activefd = 0; activefd < numberactive; activefd++)
461                 {
462                         int socket_type = SE->GetType(activefds[activefd]);
463                         switch (socket_type)
464                         {
465                                 case X_ESTAB_CLIENT:
466
467                                         cu = fd_ref_table[activefds[activefd]];
468                                         if (cu)
469                                                 ProcessUser(cu);
470
471                                 break;
472
473                                 case X_ESTAB_MODULE:
474
475                                         /* Process module-owned sockets.
476                                          * Modules are encouraged to inherit their sockets from
477                                          * InspSocket so we can process them neatly like this.
478                                          */
479                                         s = socket_ref[activefds[activefd]];
480
481                                         if ((s) && (!s->Poll()))
482                                         {
483                                                 log(DEBUG,"Socket poll returned false, close and bail");
484                                                 SE->DelFd(s->GetFd());
485                                                 for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++)
486                                                 {
487                                                         s_del = (InspSocket*)*a;
488                                                         if ((s_del) && (s_del->GetFd() == activefds[activefd]))
489                                                         {
490                                                                 module_sockets.erase(a);
491                                                                 break;
492                                                         }
493                                                 }
494                                                 s->Close();
495                                                 delete s;
496                                         }
497
498                                 break;
499
500                                 case X_ESTAB_DNS:
501
502                                         /* When we are using single-threaded dns,
503                                          * the sockets for dns end up in our mainloop.
504                                          * When we are using multi-threaded dns,
505                                          * each thread has its own basic poll() loop
506                                          * within it, making them 'fire and forget'
507                                          * and independent of the mainloop.
508                                          */
509 #ifndef THREADED_DNS
510                                         dns_poll(activefds[activefd]);
511 #endif
512                                 break;
513                                 
514                                 case X_LISTEN:
515
516                                         /* It's a listener */
517                                         uslen = sizeof(sock_us);
518                                         length = sizeof(client);
519                                         incomingSockfd = accept (activefds[activefd],(struct sockaddr*)&client,&length);
520                                         if (!getsockname(incomingSockfd,(sockaddr*)&sock_us,&uslen))
521                                         {
522                                                 in_port = ntohs(sock_us.sin_port);
523                                                 log(DEBUG,"Accepted socket %d",incomingSockfd);
524                                                 target = (char*)inet_ntoa(client.sin_addr);
525                                                 /* Years and years ago, we used to resolve here
526                                                  * using gethostbyaddr(). That is sucky and we
527                                                  * don't do that any more...
528                                                  */
529                                                 if (incomingSockfd >= 0)
530                                                 {
531                                                         if (IOHookModule)
532                                                         {
533                                                                 IOHookModule->OnRawSocketAccept(incomingSockfd, target, in_port);
534                                                         }
535                                                         stats->statsAccept++;
536                                                         AddClient(incomingSockfd, target, in_port, false, target);
537                                                         log(DEBUG,"Adding client on port %lu fd=%lu",(unsigned long)in_port,(unsigned long)incomingSockfd);
538                                                 }
539                                                 else
540                                                 {
541                                                         WriteOpers("*** WARNING: accept() failed on port %lu (%s)",(unsigned long)in_port,target);
542                                                         log(DEBUG,"accept failed: %lu",(unsigned long)in_port);
543                                                         stats->statsRefused++;
544                                                 }
545                                         }
546                                         else
547                                         {
548                                                 log(DEBUG,"Couldnt look up the port number for fd %lu (OS BROKEN?!)",incomingSockfd);
549                                                 shutdown(incomingSockfd,2);
550                                                 close(incomingSockfd);
551                                         }
552                                 break;
553
554                                 default:
555                                         /* Something went wrong if we're in here.
556                                          * In fact, so wrong, im not quite sure
557                                          * what we would do, so for now, its going
558                                          * to safely do bugger all.
559                                          */
560                                 break;
561                         }
562                 }
563
564         }
565         /* This is never reached -- we hope! */
566         return 0;
567 }
568
569 /**********************************************************************************/
570
571 /**
572  * An ircd in four lines! bwahahaha. ahahahahaha. ahahah *cough*.
573  */
574
575 int main(int argc, char** argv)
576 {
577         ServerInstance = new InspIRCd(argc, argv);
578         ServerInstance->Run();
579         delete ServerInstance;
580         return 0;
581 }
582