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