]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd_io.cpp
..
[user/henk/code/inspircd.git] / src / inspircd_io.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 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 using namespace std;
18
19 #include "inspircd_config.h"
20 #include <sys/time.h>
21 #include <sys/resource.h>
22 #include <sys/types.h>
23 #include <string>
24 #include <unistd.h>
25 #include <sstream>
26 #include <iostream>
27 #include <fstream>
28 #include "inspircd.h"
29 #include "inspircd_io.h"
30 #include "inspstring.h"
31 #include "helperfuncs.h"
32 #include "userprocess.h"
33 #include "xline.h"
34
35 extern ServerConfig *Config;
36 extern InspIRCd* ServerInstance;
37 extern int openSockfd[MAXSOCKS];
38 extern time_t TIME;
39
40 extern int MODCOUNT;
41 extern std::vector<Module*> modules;
42 extern std::vector<ircd_module*> factory;
43
44 ServerConfig::ServerConfig()
45 {
46         this->ClearStack();
47         *TempDir = *ServerName = *Network = *ServerDesc = *AdminName = '\0';
48         *HideWhoisServer = *AdminEmail = *AdminNick = *diepass = *restartpass = '\0';
49         *CustomVersion = *motd = *rules = *PrefixQuit = *DieValue = *DNSServer = '\0';
50         *OperOnlyStats = *ModPath = *MyExecutable = *DisabledCommands = *PID = '\0';
51         log_file = NULL;
52         nofork = HideBans = HideSplits = unlimitcore = false;
53         AllowHalfop = true;
54         dns_timeout = DieDelay = 5;
55         MaxTargets = 20;
56         NetBufferSize = 10240;
57         SoftLimit = MAXCLIENTS;
58         MaxConn = SOMAXCONN;
59         MaxWhoResults = 100;
60         debugging = 0;
61         LogLevel = DEFAULT;
62 }
63
64 void ServerConfig::ClearStack()
65 {
66         include_stack.clear();
67 }
68
69 Module* ServerConfig::GetIOHook(int port)
70 {
71         std::map<int,Module*>::iterator x = IOHookModule.find(port);
72         return (x != IOHookModule.end() ? x->second : NULL);
73 }
74
75 bool ServerConfig::AddIOHook(int port, Module* iomod)
76 {
77         if (!GetIOHook(port))
78         {
79                 IOHookModule[port] = iomod;
80                 return true;
81         }
82         else
83         {
84                 ModuleException err("Port already hooked by another module");
85                 throw(err);
86                 return false;
87         }
88 }
89
90 bool ServerConfig::DelIOHook(int port)
91 {
92         std::map<int,Module*>::iterator x = IOHookModule.find(port);
93         if (x != IOHookModule.end())
94         {
95                 IOHookModule.erase(x);
96                 return true;
97         }
98         return false;
99 }
100
101 bool ServerConfig::CheckOnce(char* tag, bool bail, userrec* user)
102 {
103         int count = ConfValueEnum(tag,&Config->config_f);
104         if (count > 1)
105         {
106                 if (bail)
107                 {
108                         printf("There were errors in your configuration:\nYou have more than one <%s> tag, this is not permitted.\n",tag);
109                         Exit(0);
110                 }
111                 else
112                 {
113                         if (user)
114                         {
115                                 WriteServ(user->fd,"There were errors in your configuration:");
116                                 WriteServ(user->fd,"You have more than one <%s> tag, this is not permitted.\n",tag);
117                         }
118                         else
119                         {
120                                 WriteOpers("There were errors in the configuration file:");
121                                 WriteOpers("You have more than one <%s> tag, this is not permitted.\n",tag);
122                         }
123                 }
124                 return false;
125         }
126         if (count < 1)
127         {
128                 if (bail)
129                 {
130                         printf("There were errors in your configuration:\nYou have not defined a <%s> tag, this is required.\n",tag);
131                         Exit(0);
132                 }
133                 else
134                 {
135                         if (user)
136                         {
137                                 WriteServ(user->fd,"There were errors in your configuration:");
138                                 WriteServ(user->fd,"You have not defined a <%s> tag, this is required.",tag);
139                         }
140                         else
141                         {
142                                 WriteOpers("There were errors in the configuration file:");
143                                 WriteOpers("You have not defined a <%s> tag, this is required.",tag);
144                         }
145                 }
146                 return false;
147         }
148         return true;
149 }
150
151 void ServerConfig::Read(bool bail, userrec* user)
152 {
153         /** Yes yes, i know, this function is craq worthy of
154          * sirv. Its a mess, and some day i will tidy it.
155          * ...But that day will not be today. or probaby not
156          * tomorrow even, because it works fine.
157          */
158         char dbg[MAXBUF],pauseval[MAXBUF],Value[MAXBUF],timeout[MAXBUF],NB[MAXBUF],flood[MAXBUF],MW[MAXBUF],MCON[MAXBUF],MT[MAXBUF];
159         char AH[MAXBUF],AP[MAXBUF],AF[MAXBUF],DNT[MAXBUF],pfreq[MAXBUF],thold[MAXBUF],sqmax[MAXBUF],rqmax[MAXBUF],SLIMT[MAXBUF];
160         char localmax[MAXBUF],globalmax[MAXBUF],HS[MAXBUF],HB[MAXBUF],ServName[MAXBUF];
161         ConnectClass c;
162         std::stringstream errstr;
163         include_stack.clear();
164
165         if (!LoadConf(CONFIG_FILE,&Config->config_f,&errstr))
166         {
167                 errstr.seekg(0);
168                 log(DEFAULT,"There were errors in your configuration:\n%s",errstr.str().c_str());
169                 if (bail)
170                 {
171                         printf("There were errors in your configuration:\n%s",errstr.str().c_str());
172                         Exit(0);
173                 }
174                 else
175                 {
176                         char dataline[1024];
177                         if (user)
178                         {
179                                 WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
180                                 while (!errstr.eof())
181                                 {
182                                         errstr.getline(dataline,1024);
183                                         WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
184                                 }
185                         }
186                         else
187                         {
188                                 WriteOpers("There were errors in the configuration file:");
189                                 while (!errstr.eof())
190                                 {
191                                         errstr.getline(dataline,1024);
192                                         WriteOpers(dataline);
193                                 }
194                         }
195                         return;
196                 }
197         }
198
199         /* Check we dont have more than one of singular tags
200          */
201         if (!CheckOnce("server",bail,user) || !CheckOnce("admin",bail,user) || !CheckOnce("files",bail,user)
202                 || !CheckOnce("power",bail,user) || !CheckOnce("options",bail,user) || !CheckOnce("pid",bail,user))
203         {
204                 return;
205         }
206
207         ConfValue("server","name",0,Config->ServerName,&Config->config_f);
208         ConfValue("server","description",0,Config->ServerDesc,&Config->config_f);
209         ConfValue("server","network",0,Config->Network,&Config->config_f);
210         ConfValue("admin","name",0,Config->AdminName,&Config->config_f);
211         ConfValue("admin","email",0,Config->AdminEmail,&Config->config_f);
212         ConfValue("admin","nick",0,Config->AdminNick,&Config->config_f);
213         ConfValue("files","motd",0,Config->motd,&Config->config_f);
214         ConfValue("files","rules",0,Config->rules,&Config->config_f);
215         ConfValue("power","diepass",0,Config->diepass,&Config->config_f);
216         ConfValue("power","pause",0,pauseval,&Config->config_f);
217         ConfValue("power","restartpass",0,Config->restartpass,&Config->config_f);
218         ConfValue("options","prefixquit",0,Config->PrefixQuit,&Config->config_f);
219         ConfValue("die","value",0,Config->DieValue,&Config->config_f);
220         ConfValue("options","loglevel",0,dbg,&Config->config_f);
221         ConfValue("options","netbuffersize",0,NB,&Config->config_f);
222         ConfValue("options","maxwho",0,MW,&Config->config_f);
223         ConfValue("options","allowhalfop",0,AH,&Config->config_f);
224         ConfValue("options","allowprotect",0,AP,&Config->config_f);
225         ConfValue("options","allowfounder",0,AF,&Config->config_f);
226         ConfValue("dns","server",0,Config->DNSServer,&Config->config_f);
227         ConfValue("dns","timeout",0,DNT,&Config->config_f);
228         ConfValue("options","moduledir",0,Config->ModPath,&Config->config_f);
229         ConfValue("disabled","commands",0,Config->DisabledCommands,&Config->config_f);
230         ConfValue("options","somaxconn",0,MCON,&Config->config_f);
231         ConfValue("options","softlimit",0,SLIMT,&Config->config_f);
232         ConfValue("options","operonlystats",0,Config->OperOnlyStats,&Config->config_f);
233         ConfValue("options","customversion",0,Config->CustomVersion,&Config->config_f);
234         ConfValue("options","maxtargets",0,MT,&Config->config_f);
235         ConfValue("options","hidesplits",0,HS,&Config->config_f);
236         ConfValue("options","hidebans",0,HB,&Config->config_f);
237         ConfValue("options","hidewhois",0,Config->HideWhoisServer,&Config->config_f);
238         ConfValue("options","tempdir",0,Config->TempDir,&Config->config_f);
239
240         strlower(Config->ServerName);
241
242         if (!*Config->TempDir)
243                 strlcpy(Config->TempDir,"/tmp",1024);
244         Config->HideSplits = ((*HS == 'y') || (*HS == 'Y') || (*HS == '1') || (*HS == 't') || (*HS == 'T'));
245         Config->HideBans = ((*HB == 'y') || (*HB == 'Y') || (*HB == '1') || (*HB == 't') || (*HB == 'T'));
246         Config->SoftLimit = atoi(SLIMT);
247         if (*MT)
248                 Config->MaxTargets = atoi(MT);
249         if ((Config->MaxTargets < 0) || (Config->MaxTargets > 31))
250         {
251                 log(DEFAULT,"WARNING: <options:maxtargets> value is greater than 31 or less than 0, set to 20.");
252                 Config->MaxTargets = 20;
253         }
254         if ((Config->SoftLimit < 1) || (Config->SoftLimit > MAXCLIENTS))
255         {
256                 log(DEFAULT,"WARNING: <options:softlimit> value is greater than %d or less than 0, set to %d.",MAXCLIENTS,MAXCLIENTS);
257                 Config->SoftLimit = MAXCLIENTS;
258         }
259         Config->MaxConn = atoi(MCON);
260         if (Config->MaxConn > SOMAXCONN)
261                 log(DEFAULT,"WARNING: <options:somaxconn> value may be higher than the system-defined SOMAXCONN value!");
262         Config->NetBufferSize = atoi(NB);
263         Config->MaxWhoResults = atoi(MW);
264         Config->dns_timeout = atoi(DNT);
265         if (!strchr(Config->ServerName,'.'))
266         {
267                 log(DEFAULT,"WARNING: <server:name> '%s' is not a fully-qualified domain name. Changed to '%s%c'",Config->ServerName,Config->ServerName,'.');
268                 charlcat(Config->ServerName,'.',MAXBUF);
269         }
270         if (!Config->dns_timeout)
271                 Config->dns_timeout = 5;
272         if (!Config->MaxConn)
273                 Config->MaxConn = SOMAXCONN;
274         if (!*Config->DNSServer)
275         {
276                 // attempt to look up their nameserver from /etc/resolv.conf
277                 log(DEFAULT,"WARNING: <dns:server> not defined, attempting to find working server in /etc/resolv.conf...");
278                 ifstream resolv("/etc/resolv.conf");
279                 std::string nameserver;
280                 bool found_server = false;
281                 if (resolv.is_open())
282                 {
283                         while (resolv >> nameserver)
284                         {
285                                 if ((nameserver == "nameserver") && (!found_server))
286                                 {
287                                         resolv >> nameserver;
288                                         strlcpy(Config->DNSServer,nameserver.c_str(),MAXBUF);
289                                         found_server = true;
290                                         log(DEFAULT,"<dns:server> set to '%s' as first resolver in /etc/resolv.conf.",nameserver.c_str());
291                                 }
292                         }
293                         if (!found_server)
294                         {
295                                 log(DEFAULT,"/etc/resolv.conf contains no viable nameserver entries! Defaulting to nameserver '127.0.0.1'!");
296                                 strlcpy(Config->DNSServer,"127.0.0.1",MAXBUF);
297                         }
298                 }
299                 else
300                 {
301                         log(DEFAULT,"/etc/resolv.conf can't be opened! Defaulting to nameserver '127.0.0.1'!");
302                         strlcpy(Config->DNSServer,"127.0.0.1",MAXBUF);
303                 }
304         }
305         if (!*Config->ModPath)
306                 strlcpy(Config->ModPath,MOD_PATH,MAXBUF);
307         Config->AllowHalfop = ((!strcasecmp(AH,"true")) || (!strcasecmp(AH,"1")) || (!strcasecmp(AH,"yes")));
308         if ((!Config->NetBufferSize) || (Config->NetBufferSize > 65535) || (Config->NetBufferSize < 1024))
309         {
310                 log(DEFAULT,"No NetBufferSize specified or size out of range, setting to default of 10240.");
311                 Config->NetBufferSize = 10240;
312         }
313         if ((!Config->MaxWhoResults) || (Config->MaxWhoResults > 65535) || (Config->MaxWhoResults < 1))
314         {
315                 log(DEFAULT,"No MaxWhoResults specified or size out of range, setting to default of 128.");
316                 Config->MaxWhoResults = 128;
317         }
318         Config->LogLevel = DEFAULT;
319         if (!strcmp(dbg,"debug"))
320         {
321                 Config->LogLevel = DEBUG;
322                 Config->debugging = 1;
323         }
324         if (!strcmp(dbg,"verbose"))
325                 Config->LogLevel = VERBOSE;
326         if (!strcmp(dbg,"default"))
327                 Config->LogLevel = DEFAULT;
328         if (!strcmp(dbg,"sparse"))
329                 Config->LogLevel = SPARSE;
330         if (!strcmp(dbg,"none"))
331                 Config->LogLevel = NONE;
332
333         readfile(Config->MOTD,Config->motd);
334         log(DEFAULT,"Reading message of the day...");
335         readfile(Config->RULES,Config->rules);
336         log(DEFAULT,"Reading connect classes...");
337         Classes.clear();
338         for (int i = 0; i < ConfValueEnum("connect",&Config->config_f); i++)
339         {
340                 *Value = 0;
341                 ConfValue("connect","allow",i,Value,&Config->config_f);
342                 ConfValue("connect","timeout",i,timeout,&Config->config_f);
343                 ConfValue("connect","flood",i,flood,&Config->config_f);
344                 ConfValue("connect","pingfreq",i,pfreq,&Config->config_f);
345                 ConfValue("connect","threshold",i,thold,&Config->config_f);
346                 ConfValue("connect","sendq",i,sqmax,&Config->config_f);
347                 ConfValue("connect","recvq",i,rqmax,&Config->config_f);
348                 ConfValue("connect","localmax",i,localmax,&Config->config_f);
349                 ConfValue("connect","globalmax",i,globalmax,&Config->config_f);
350                 if (*Value)
351                 {
352                         c.host = Value;
353                         c.type = CC_ALLOW;
354                         strlcpy(Value,"",MAXBUF);
355                         ConfValue("connect","password",i,Value,&Config->config_f);
356                         c.pass = Value;
357                         c.registration_timeout = 90; // default is 2 minutes
358                         c.pingtime = 120;
359                         c.flood = atoi(flood);
360                         c.threshold = 5;
361                         c.sendqmax = 262144; // 256k
362                         c.recvqmax = 4096;   // 4k
363                         c.maxlocal = 3;
364                         c.maxglobal = 3;
365                         if (atoi(localmax)>0)
366                         {
367                                 c.maxlocal = atoi(localmax);
368                         }
369                         if (atoi(globalmax)>0)
370                         {
371                                 c.maxglobal = atoi(globalmax);
372                         }
373                         if (atoi(thold)>0)
374                         {
375                                 c.threshold = atoi(thold);
376                         }
377                         else
378                         {
379                                 c.threshold = 1;
380                                 c.flood = 999;
381                                 log(DEFAULT,"Warning: Connect allow line '%s' has no flood/threshold settings. Setting this tag to 999 lines in 1 second.",c.host.c_str());
382                         }
383                         if (atoi(sqmax)>0)
384                         {
385                                 c.sendqmax = atoi(sqmax);
386                         }
387                         if (atoi(rqmax)>0)
388                         {
389                                 c.recvqmax = atoi(rqmax);
390                         }
391                         if (atoi(timeout)>0)
392                         {
393                                 c.registration_timeout = atoi(timeout);
394                         }
395                         if (atoi(pfreq)>0)
396                         {
397                                 c.pingtime = atoi(pfreq);
398                         }
399                         Classes.push_back(c);
400                 }
401                 else
402                 {
403                         ConfValue("connect","deny",i,Value,&Config->config_f);
404                         c.host = Value;
405                         c.type = CC_DENY;
406                         Classes.push_back(c);
407                         log(DEBUG,"Read connect class type DENY, host=%s",c.host.c_str());
408                 }
409
410         }
411         Config->ulines.clear();
412         for (int i = 0; i < ConfValueEnum("uline",&Config->config_f); i++)
413         {       
414                 ConfValue("uline","server",i,ServName,&Config->config_f);
415                 {
416                         log(DEBUG,"Read ULINE '%s'",ServName);
417                         Config->ulines.push_back(ServName);
418                 }
419         }
420         log(DEFAULT,"Reading K lines,Q lines and Z lines from config...");
421         read_xline_defaults();
422         log(DEFAULT,"Applying K lines, Q lines and Z lines...");
423         apply_lines(APPLY_ALL);
424
425         ConfValue("pid","file",0,Config->PID,&Config->config_f);
426         // write once here, to try it out and make sure its ok
427         WritePID(Config->PID);
428
429         log(DEFAULT,"Done reading configuration file, InspIRCd is now starting.");
430         if (!bail)
431         {
432                 log(DEFAULT,"Adding and removing modules due to rehash...");
433
434                 std::vector<std::string> old_module_names, new_module_names, added_modules, removed_modules;
435
436                 // store the old module names
437                 for (std::vector<std::string>::iterator t = module_names.begin(); t != module_names.end(); t++)
438                 {
439                         old_module_names.push_back(*t);
440                 }
441
442                 // get the new module names
443                 for (int count2 = 0; count2 < ConfValueEnum("module",&Config->config_f); count2++)
444                 {
445                         ConfValue("module","name",count2,Value,&Config->config_f);
446                         new_module_names.push_back(Value);
447                 }
448
449                 // now create a list of new modules that are due to be loaded
450                 // and a seperate list of modules which are due to be unloaded
451                 for (std::vector<std::string>::iterator _new = new_module_names.begin(); _new != new_module_names.end(); _new++)
452                 {
453                         bool added = true;
454                         for (std::vector<std::string>::iterator old = old_module_names.begin(); old != old_module_names.end(); old++)
455                         {
456                                 if (*old == *_new)
457                                         added = false;
458                         }
459                         if (added)
460                                 added_modules.push_back(*_new);
461                 }
462                 for (std::vector<std::string>::iterator oldm = old_module_names.begin(); oldm != old_module_names.end(); oldm++)
463                 {
464                         bool removed = true;
465                         for (std::vector<std::string>::iterator newm = new_module_names.begin(); newm != new_module_names.end(); newm++)
466                         {
467                                 if (*newm == *oldm)
468                                         removed = false;
469                         }
470                         if (removed)
471                                 removed_modules.push_back(*oldm);
472                 }
473                 // now we have added_modules, a vector of modules to be loaded, and removed_modules, a vector of modules
474                 // to be removed.
475                 int rem = 0, add = 0;
476                 if (!removed_modules.empty())
477                 for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
478                 {
479                         if (ServerInstance->UnloadModule(removing->c_str()))
480                         {
481                                 WriteOpers("*** REHASH UNLOADED MODULE: %s",removing->c_str());
482                                 if (user)
483                                         WriteServ(user->fd,"973 %s %s :Module %s successfully unloaded.",user->nick, removing->c_str(), removing->c_str());
484                                 rem++;
485                         }
486                         else
487                         {
488                                 if (user)
489                                         WriteServ(user->fd,"972 %s %s :Failed to unload module %s: %s",user->nick, removing->c_str(), removing->c_str(), ServerInstance->ModuleError());
490                         }
491                 }
492                 if (!added_modules.empty())
493                 for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
494                 {
495                         if (ServerInstance->LoadModule(adding->c_str()))
496                         {
497                                 WriteOpers("*** REHASH LOADED MODULE: %s",adding->c_str());
498                                 if (user)
499                                         WriteServ(user->fd,"975 %s %s :Module %s successfully loaded.",user->nick, adding->c_str(), adding->c_str());
500                                 add++;
501                         }
502                         else
503                         {
504                                 if (user)
505                                         WriteServ(user->fd,"974 %s %s :Failed to load module %s: %s",user->nick, adding->c_str(), adding->c_str(), ServerInstance->ModuleError());
506                         }
507                 }
508                 log(DEFAULT,"Successfully unloaded %lu of %lu modules and loaded %lu of %lu modules.",(unsigned long)rem,(unsigned long)removed_modules.size(),
509                                                                                                         (unsigned long)add,(unsigned long)added_modules.size());
510         }
511 }
512
513
514 void Exit (int status)
515 {
516         if (Config->log_file)
517                 fclose(Config->log_file);
518         send_error("Server shutdown.");
519         exit (status);
520 }
521
522 void Killed(int status)
523 {
524         if (Config->log_file)
525                 fclose(Config->log_file);
526         send_error("Server terminated.");
527         exit(status);
528 }
529
530 char* CleanFilename(char* name)
531 {
532         char* p = name + strlen(name);
533         while ((p != name) && (*p != '/')) p--;
534         return (p != name ? ++p : p);
535 }
536
537
538 void Rehash(int status)
539 {
540         WriteOpers("Rehashing config file %s due to SIGHUP",CleanFilename(CONFIG_FILE));
541         fclose(Config->log_file);
542         OpenLog(NULL,0);
543         Config->Read(false,NULL);
544         FOREACH_MOD(I_OnRehash,OnRehash(""));
545 }
546
547
548
549 void Start (void)
550 {
551         printf("\033[1;32mInspire Internet Relay Chat Server, compiled %s at %s\n",__DATE__,__TIME__);
552         printf("(C) ChatSpike Development team.\033[0m\n\n");
553         printf("Developers:\033[1;32m     Brain, FrostyCoolSlug\033[0m\n");
554         printf("Documentation:\033[1;32m  FrostyCoolSlug, w00t\033[0m\n");
555         printf("Testers:\033[1;32m        typobox43, piggles, Lord_Zathras, CC\033[0m\n");
556         printf("Name concept:\033[1;32m   Lord_Zathras\033[0m\n\n");
557 }
558
559 void WritePID(std::string filename)
560 {
561         ofstream outfile(filename.c_str());
562         if (outfile.is_open())
563         {
564                 outfile << getpid();
565                 outfile.close();
566         }
567         else
568         {
569                 printf("Failed to write PID-file '%s', exiting.\n",filename.c_str());
570                 log(DEFAULT,"Failed to write PID-file '%s', exiting.",filename.c_str());
571                 Exit(0);
572         }
573 }
574
575 void SetSignals()
576 {
577         signal (SIGALRM, SIG_IGN);
578         signal (SIGHUP, Rehash);
579         signal (SIGPIPE, SIG_IGN);
580         signal (SIGTERM, Exit);
581         signal (SIGSEGV, Error);
582 }
583
584
585 int DaemonSeed (void)
586 {
587         int childpid;
588         if ((childpid = fork ()) < 0)
589                 return (ERROR);
590         else if (childpid > 0)
591                 exit (0);
592         setsid ();
593         umask (007);
594         printf("InspIRCd Process ID: \033[1;32m%lu\033[0m\n",(unsigned long)getpid());
595
596         if (Config->unlimitcore)
597         {
598                 rlimit rl;
599                 if (getrlimit(RLIMIT_CORE, &rl) == -1)
600                 {
601                         log(DEFAULT,"Failed to getrlimit()!");
602                         return(FALSE);
603                 }
604                 else
605                 {
606                         rl.rlim_cur = rl.rlim_max;
607                         if (setrlimit(RLIMIT_CORE, &rl) == -1)
608                                 log(DEFAULT,"setrlimit() failed, cannot increase coredump size.");
609                 }
610         }
611   
612         return (TRUE);
613 }
614
615
616 /* Make Sure Modules Are Avaliable!
617  * (BugFix By Craig.. See? I do work! :p)
618  * Modified by brain, requires const char*
619  * to work with other API functions
620  */
621
622 bool FileExists (const char* file)
623 {
624         FILE *input;
625         if ((input = fopen (file, "r")) == NULL)
626         {
627                 return(false);
628         }
629         else
630         {
631                 fclose (input);
632                 return(true);
633         }
634 }
635
636 /* ConfProcess does the following things to a config line in the following order:
637  *
638  * Processes the line for syntax errors as shown below
639  *      (1) Line void of quotes or equals (a malformed, illegal tag format)
640  *      (2) Odd number of quotes on the line indicating a missing quote
641  *      (3) number of equals signs not equal to number of quotes / 2 (missing an equals sign)
642  *      (4) Spaces between the opening bracket (<) and the keyword
643  *      (5) Spaces between a keyword and an equals sign
644  *      (6) Spaces between an equals sign and a quote
645  * Removes trailing spaces
646  * Removes leading spaces
647  * Converts tabs to spaces
648  * Turns multiple spaces that are outside of quotes into single spaces
649  */
650
651 std::string ServerConfig::ConfProcess(char* buffer, long linenumber, std::stringstream* errorstream, bool &error, std::string filename)
652 {
653         long number_of_quotes = 0;
654         long number_of_equals = 0;
655         bool has_open_bracket = false;
656         bool in_quotes = false;
657         error = false;
658         if (!buffer)
659         {
660                 return "";
661         }
662         // firstly clean up the line by stripping spaces from the start and end and converting tabs to spaces
663         for (char* d = buffer; *d; d++)
664                 if (*d == 9)
665                         *d = ' ';
666         while (*buffer == ' ') buffer++;
667         while ((buffer[strlen(buffer)-1] == ' ') && (*buffer)) buffer[strlen(buffer)-1] = '\0';
668
669         // empty lines are syntactically valid, as are comments
670         if (!(*buffer) || buffer[0] == '#')
671                 return "";
672
673         for (unsigned int c = 0; c < strlen(buffer); c++)
674         {
675                 // convert all spaces that are OUTSIDE quotes into hardspace (0xA0) as this will make them easier to
676                 // search and replace later :)
677                 if ((!in_quotes) && (buffer[c] == ' '))
678                         buffer[c] = '\xA0';
679                 if ((buffer[c] == '<') && (!in_quotes))
680                 {
681                         has_open_bracket = true;
682                         if (strlen(buffer) == 1)
683                         {
684                                 *errorstream << "Tag without identifier at " << filename << ":" << linenumber << endl;
685                                 error = true;
686                                 return "";
687                         }
688                         else if ((tolower(buffer[c+1]) < 'a') || (tolower(buffer[c+1]) > 'z'))
689                         {
690                                 *errorstream << "Invalid characters in identifier at " << filename << ":" << linenumber << endl;
691                                 error = true;
692                                 return "";
693                         }
694                 }
695                 if (buffer[c] == '"')
696                 {
697                         number_of_quotes++;
698                         in_quotes = (!in_quotes);
699                 }
700                 if ((buffer[c] == '=') && (!in_quotes))
701                 {
702                         number_of_equals++;
703                         if (strlen(buffer) == c)
704                         {
705                                 *errorstream << "Variable without a value at " << filename << ":" << linenumber << endl;
706                                 error = true;
707                                 return "";
708                         }
709                         else if (buffer[c+1] != '"')
710                         {
711                                 *errorstream << "Variable name not followed immediately by its value at " << filename << ":" << linenumber << endl;
712                                 error = true;
713                                 return "";
714                         }
715                         else if (!c)
716                         {
717                                 *errorstream << "Value without a variable (line starts with '=') at " << filename << ":" << linenumber << endl;
718                                 error = true;
719                                 return "";
720                         }
721                         else if (buffer[c-1] == '\xA0')
722                         {
723                                 *errorstream << "Variable name not followed immediately by its value at " << filename << ":" << linenumber << endl;
724                                 error = true;
725                                 return "";
726                         }
727                 }
728         }
729         // no quotes, and no equals. something freaky.
730         if ((!number_of_quotes) || (!number_of_equals) && (strlen(buffer)>2) && (buffer[0]=='<'))
731         {
732                 *errorstream << "Malformed tag at " << filename << ":" << linenumber << endl;
733                 error = true;
734                 return "";
735         }
736         // odd number of quotes. thats just wrong.
737         if ((number_of_quotes % 2) != 0)
738         {
739                 *errorstream << "Missing \" at " << filename << ":" << linenumber << endl;
740                 error = true;
741                 return "";
742         }
743         if (number_of_equals < (number_of_quotes/2))
744         {
745                 *errorstream << "Missing '=' at " << filename << ":" << linenumber << endl;
746         }
747         if (number_of_equals > (number_of_quotes/2))
748         {
749                 *errorstream << "Too many '=' at " << filename << ":" << linenumber << endl;
750         }
751
752         std::string parsedata = buffer;
753         // turn multispace into single space
754         while (parsedata.find("\xA0\xA0") != std::string::npos)
755         {
756                 parsedata.erase(parsedata.find("\xA0\xA0"),1);
757         }
758
759         // turn our hardspace back into softspace
760         for (unsigned int d = 0; d < parsedata.length(); d++)
761         {
762                 if (parsedata[d] == '\xA0')
763                         parsedata[d] = ' ';
764         }
765
766         // and we're done, the line is fine!
767         return parsedata;
768 }
769
770 int ServerConfig::fgets_safe(char* buffer, size_t maxsize, FILE* &file)
771 {
772         char c_read = '\0';
773         unsigned int bufptr = 0;
774         while ((!feof(file)) && (c_read != '\n') && (c_read != '\r') && (bufptr < maxsize))
775         {
776                 c_read = fgetc(file);
777                 if ((c_read != '\n') && (c_read != '\r'))
778                         buffer[bufptr++] = c_read;
779         }
780         buffer[bufptr] = '\0';
781         return bufptr;
782 }
783
784 bool ServerConfig::LoadConf(const char* filename, std::stringstream *target, std::stringstream* errorstream)
785 {
786         target->str("");
787         errorstream->str("");
788         long linenumber = 1;
789         // first, check that the file exists before we try to do anything with it
790         if (!FileExists(filename))
791         {
792                 *errorstream << "File " << filename << " not found." << endl;
793                 return false;
794         }
795         // Fix the chmod of the file to restrict it to the current user and group
796         chmod(filename,0600);
797         for (unsigned int t = 0; t < include_stack.size(); t++)
798         {
799                 if (std::string(filename) == include_stack[t])
800                 {
801                         *errorstream << "File " << filename << " is included recursively (looped inclusion)." << endl;
802                         return false;
803                 }
804         }
805         include_stack.push_back(filename);
806         // now open it
807         FILE* conf = fopen(filename,"r");
808         char buffer[MAXBUF];
809         if (conf)
810         {
811                 while (!feof(conf))
812                 {
813                         if (fgets_safe(buffer, MAXBUF, conf))
814                         {
815                                 if ((!feof(conf)) && (buffer) && (strlen(buffer)))
816                                 {
817                                         if ((buffer[0] != '#') && (buffer[0] != '\r')  && (buffer[0] != '\n'))
818                                         {
819                                                 if (!strncmp(buffer,"<include file=\"",15))
820                                                 {
821                                                         char* buf = buffer;
822                                                         char confpath[10240],newconf[10240];
823                                                         // include file directive
824                                                         buf += 15;      // advance to filename
825                                                         for (unsigned int j = 0; j < strlen(buf); j++)
826                                                         {
827                                                                 if (buf[j] == '\\')
828                                                                         buf[j] = '/';
829                                                                 if (buf[j] == '"')
830                                                                 {
831                                                                         buf[j] = '\0';
832                                                                         break;
833                                                                 }
834                                                         }
835                                                         log(DEBUG,"Opening included file '%s'",buf);
836                                                         if (*buf != '/')
837                                                         {
838                                                                 strlcpy(confpath,CONFIG_FILE,10240);
839                                                                 if (strstr(confpath,"/inspircd.conf"))
840                                                                 {
841                                                                         // leaves us with just the path
842                                                                         *(strstr(confpath,"/inspircd.conf")) = '\0';
843                                                                 }
844                                                                 snprintf(newconf,10240,"%s/%s",confpath,buf);
845                                                         }
846                                                         else strlcpy(newconf,buf,10240);
847                                                         std::stringstream merge(stringstream::in | stringstream::out);
848                                                         // recursively call LoadConf and get the new data, use the same errorstream
849                                                         if (LoadConf(newconf, &merge, errorstream))
850                                                         {
851                                                                 // append to the end of the file
852                                                                 std::string newstuff = merge.str();
853                                                                 *target << newstuff;
854                                                         }
855                                                         else
856                                                         {
857                                                                 // the error propogates up to its parent recursively
858                                                                 // causing the config reader to bail at the top level.
859                                                                 fclose(conf);
860                                                                 return false;
861                                                         }
862                                                 }
863                                                 else
864                                                 {
865                                                         bool error = false;
866                                                         std::string data = this->ConfProcess(buffer,linenumber++,errorstream,error,filename);
867                                                         if (error)
868                                                         {
869                                                                 return false;
870                                                         }
871                                                         *target << data;
872                                                 }
873                                         }
874                                         else linenumber++;
875                                 }
876                         }
877                 }
878                 fclose(conf);
879         }
880         target->seekg(0);
881         return true;
882 }
883
884 /* Counts the number of tags of a certain type within the config file, e.g. to enumerate opers */
885
886 int ServerConfig::EnumConf(std::stringstream *config, const char* tag)
887 {
888         int ptr = 0;
889         char buffer[MAXBUF], c_tag[MAXBUF], c, lastc;
890         int in_token, in_quotes, tptr, idx = 0;
891
892         std::string x = config->str();
893         const char* buf = x.c_str();
894         long bptr = 0;
895         long len = config->str().length();
896         
897         ptr = 0;
898         in_token = 0;
899         in_quotes = 0;
900         lastc = '\0';
901         while (bptr<len)
902         {
903                 lastc = c;
904                 c = buf[bptr++];
905                 if ((c == '#') && (lastc == '\n'))
906                 {
907                         while ((c != '\n') && (bptr<len))
908                         {
909                                 lastc = c;
910                                 c = buf[bptr++];
911                         }
912                 }
913                 if ((c == '<') && (!in_quotes))
914                 {
915                         tptr = 0;
916                         in_token = 1;
917                         do {
918                                 c = buf[bptr++];
919                                 if (c != ' ')
920                                 {
921                                         c_tag[tptr++] = c;
922                                         c_tag[tptr] = '\0';
923                                 }
924                         } while (c != ' ');
925                 }
926                 if (c == '"')
927                 {
928                         in_quotes = (!in_quotes);
929                 }
930                 if ((c == '>') && (!in_quotes))
931                 {
932                         in_token = 0;
933                         if (!strcmp(c_tag,tag))
934                         {
935                                 /* correct tag, but wrong index */
936                                 idx++;
937                         }
938                         c_tag[0] = '\0';
939                         buffer[0] = '\0';
940                         ptr = 0;
941                         tptr = 0;
942                 }
943                 if (c != '>')
944                 {
945                         if ((in_token) && (c != '\n') && (c != '\r'))
946                         {
947                                 buffer[ptr++] = c;
948                                 buffer[ptr] = '\0';
949                         }
950                 }
951         }
952         return idx;
953 }
954
955 /* Counts the number of values within a certain tag */
956
957 int ServerConfig::EnumValues(std::stringstream *config, const char* tag, int index)
958 {
959         int ptr = 0;
960         char buffer[MAXBUF], c_tag[MAXBUF], c, lastc;
961         int in_token, in_quotes, tptr, idx = 0;
962         
963         bool correct_tag = false;
964         int num_items = 0;
965
966         const char* buf = config->str().c_str();
967         long bptr = 0;
968         long len = strlen(buf);
969         
970         ptr = 0;
971         in_token = 0;
972         in_quotes = 0;
973         lastc = '\0';
974         while (bptr<len)
975         {
976                 lastc = c;
977                 c = buf[bptr++];
978                 if ((c == '#') && (lastc == '\n'))
979                 {
980                         while ((c != '\n') && (bptr<len))
981                         {
982                                 lastc = c;
983                                 c = buf[bptr++];
984                         }
985                 }
986                 if ((c == '<') && (!in_quotes))
987                 {
988                         tptr = 0;
989                         in_token = 1;
990                         do {
991                                 c = buf[bptr++];
992                                 if (c != ' ')
993                                 {
994                                         c_tag[tptr++] = c;
995                                         c_tag[tptr] = '\0';
996                                         
997                                         if ((!strcmp(c_tag,tag)) && (idx == index))
998                                         {
999                                                 correct_tag = true;
1000                                         }
1001                                 }
1002                         } while (c != ' ');
1003                 }
1004                 if (c == '"')
1005                 {
1006                         in_quotes = (!in_quotes);
1007                 }
1008                 
1009                 if ( (correct_tag) && (!in_quotes) && ( (c == ' ') || (c == '\n') || (c == '\r') ) )
1010                 {
1011                         num_items++;
1012                 }
1013                 if ((c == '>') && (!in_quotes))
1014                 {
1015                         in_token = 0;
1016                         if (correct_tag)
1017                                 correct_tag = false;
1018                         if (!strcmp(c_tag,tag))
1019                         {
1020                                 /* correct tag, but wrong index */
1021                                 idx++;
1022                         }
1023                         c_tag[0] = '\0';
1024                         buffer[0] = '\0';
1025                         ptr = 0;
1026                         tptr = 0;
1027                 }
1028                 if (c != '>')
1029                 {
1030                         if ((in_token) && (c != '\n') && (c != '\r'))
1031                         {
1032                                 buffer[ptr++] = c;
1033                                 buffer[ptr] = '\0';
1034                         }
1035                 }
1036         }
1037         return num_items+1;
1038 }
1039
1040
1041
1042 int ServerConfig::ConfValueEnum(char* tag, std::stringstream* config)
1043 {
1044         return EnumConf(config,tag);
1045 }
1046
1047
1048
1049 /* Retrieves a value from the config file. If there is more than one value of the specified
1050  * key and section (e.g. for opers etc) then the index value specifies which to retreive, e.g.
1051  *
1052  * ConfValue("oper","name",2,result);
1053  */
1054
1055 int ServerConfig::ReadConf(std::stringstream *config, const char* tag, const char* var, int index, char *result)
1056 {
1057         int ptr = 0;
1058         char buffer[65535], c_tag[MAXBUF], c, lastc;
1059         int in_token, in_quotes, tptr, idx = 0;
1060         char* key;
1061
1062         std::string x = config->str();
1063         const char* buf = x.c_str();
1064         long bptr = 0;
1065         long len = config->str().length();
1066         
1067         ptr = 0;
1068         in_token = 0;
1069         in_quotes = 0;
1070         lastc = '\0';
1071         c_tag[0] = '\0';
1072         buffer[0] = '\0';
1073         while (bptr<len)
1074         {
1075                 lastc = c;
1076                 c = buf[bptr++];
1077                 // FIX: Treat tabs as spaces
1078                 if (c == 9)
1079                         c = 32;
1080                 if ((c == '<') && (!in_quotes))
1081                 {
1082                         tptr = 0;
1083                         in_token = 1;
1084                         do {
1085                                 c = buf[bptr++];
1086                                 if (c != ' ')
1087                                 {
1088                                         c_tag[tptr++] = c;
1089                                         c_tag[tptr] = '\0';
1090                                 }
1091                         // FIX: Tab can follow a tagname as well as space.
1092                         } while ((c != ' ') && (c != 9));
1093                 }
1094                 if (c == '"')
1095                 {
1096                         in_quotes = (!in_quotes);
1097                 }
1098                 if ((c == '>') && (!in_quotes))
1099                 {
1100                         in_token = 0;
1101                         if (idx == index)
1102                         {
1103                                 if (!strcmp(c_tag,tag))
1104                                 {
1105                                         if ((buffer) && (c_tag) && (var))
1106                                         {
1107                                                 key = strstr(buffer,var);
1108                                                 if (!key)
1109                                                 {
1110                                                         /* value not found in tag */
1111                                                         *result = 0;
1112                                                         return 0;
1113                                                 }
1114                                                 else
1115                                                 {
1116                                                         key+=strlen(var);
1117                                                         while (*key !='"')
1118                                                         {
1119                                                                 if (!*key)
1120                                                                 {
1121                                                                         /* missing quote */
1122                                                                         *result = 0;
1123                                                                         return 0;
1124                                                                 }
1125                                                                 key++;
1126                                                         }
1127                                                         key++;
1128                                                         for (unsigned j = 0; j < strlen(key); j++)
1129                                                         {
1130                                                                 if (key[j] == '"')
1131                                                                 {
1132                                                                         key[j] = '\0';
1133                                                                 }
1134                                                         }
1135                                                         strlcpy(result,key,MAXBUF);
1136                                                         return 1;
1137                                                 }
1138                                         }
1139                                 }
1140                         }
1141                         if (!strcmp(c_tag,tag))
1142                         {
1143                                 /* correct tag, but wrong index */
1144                                 idx++;
1145                         }
1146                         c_tag[0] = '\0';
1147                         buffer[0] = '\0';
1148                         ptr = 0;
1149                         tptr = 0;
1150                 }
1151                 if (c != '>')
1152                 {
1153                         if ((in_token) && (c != '\n') && (c != '\r'))
1154                         {
1155                                 buffer[ptr++] = c;
1156                                 buffer[ptr] = '\0';
1157                         }
1158                 }
1159         }
1160         *result = 0; // value or its tag not found at all
1161         return 0;
1162 }
1163
1164
1165
1166 int ServerConfig::ConfValue(char* tag, char* var, int index, char *result,std::stringstream *config)
1167 {
1168         ReadConf(config, tag, var, index, result);
1169         return 0;
1170 }
1171
1172
1173
1174 // This will bind a socket to a port. It works for UDP/TCP
1175 int BindSocket (int sockfd, struct sockaddr_in client, struct sockaddr_in server, int port, char* addr)
1176 {
1177         memset((char *)&server,0,sizeof(server));
1178         struct in_addr addy;
1179         inet_aton(addr,&addy);
1180         server.sin_family = AF_INET;
1181         if (!strcmp(addr,""))
1182         {
1183                 server.sin_addr.s_addr = htonl(INADDR_ANY);
1184         }
1185         else
1186         {
1187                 server.sin_addr = addy;
1188         }
1189         server.sin_port = htons(port);
1190         if (bind(sockfd,(struct sockaddr*)&server,sizeof(server))<0)
1191         {
1192                 return(ERROR);
1193         }
1194         else
1195         {
1196                 listen(sockfd, Config->MaxConn);
1197                 return(TRUE);
1198         }
1199 }
1200
1201
1202 // Open a TCP Socket
1203 int OpenTCPSocket (void)
1204 {
1205         int sockfd;
1206         int on = 1;
1207         struct linger linger = { 0 };
1208   
1209         if ((sockfd = socket (AF_INET, SOCK_STREAM, 0)) < 0)
1210                 return (ERROR);
1211         else
1212         {
1213                 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, (const char*)&on, sizeof(on));
1214                 /* This is BSD compatible, setting l_onoff to 0 is *NOT* http://web.irc.org/mla/ircd-dev/msg02259.html */
1215                 linger.l_onoff = 1;
1216                 linger.l_linger = 1;
1217                 setsockopt(sockfd, SOL_SOCKET, SO_LINGER, (const char*)&linger,sizeof(linger));
1218                 return (sockfd);
1219         }
1220 }
1221
1222 int BindPorts()
1223 {
1224         char configToken[MAXBUF], Addr[MAXBUF], Type[MAXBUF];
1225         sockaddr_in client,server;
1226         int clientportcount = 0;
1227         int BoundPortCount = 0;
1228         for (int count = 0; count < Config->ConfValueEnum("bind",&Config->config_f); count++)
1229         {
1230                 Config->ConfValue("bind","port",count,configToken,&Config->config_f);
1231                 Config->ConfValue("bind","address",count,Addr,&Config->config_f);
1232                 Config->ConfValue("bind","type",count,Type,&Config->config_f);
1233                 if ((!*Type) || (!strcmp(Type,"clients")))
1234                 {
1235                         // modules handle server bind types now
1236                         Config->ports[clientportcount] = atoi(configToken);
1237
1238                         // If the client put bind "*", this is an unrealism.
1239                         // We don't actually support this as documented, but
1240                         // i got fed up of people trying it, so now it converts
1241                         // it to an empty string meaning the same 'bind to all'.
1242                         if (*Addr == '*')
1243                                 *Addr = 0;
1244
1245                         strlcpy(Config->addrs[clientportcount],Addr,256);
1246                         clientportcount++;
1247                         log(DEBUG,"InspIRCd: startup: read binding %s:%s [%s] from config",Addr,configToken, Type);
1248                 }
1249         }
1250         int PortCount = clientportcount;
1251
1252         for (int count = 0; count < PortCount; count++)
1253         {
1254                 if ((openSockfd[BoundPortCount] = OpenTCPSocket()) == ERROR)
1255                 {
1256                         log(DEBUG,"InspIRCd: startup: bad fd %lu binding port [%s:%d]",(unsigned long)openSockfd[BoundPortCount],Config->addrs[count],(unsigned long)Config->ports[count]);
1257                         return(ERROR);
1258                 }
1259                 if (BindSocket(openSockfd[BoundPortCount],client,server,Config->ports[count],Config->addrs[count]) == ERROR)
1260                 {
1261                         log(DEFAULT,"InspIRCd: startup: failed to bind port [%s:%lu]: %s",Config->addrs[count],(unsigned long)Config->ports[count],strerror(errno));
1262                 }
1263                 else    /* well we at least bound to one socket so we'll continue */
1264                 {
1265                         BoundPortCount++;
1266                 }
1267         }
1268
1269         /* if we didn't bind to anything then abort */
1270         if (!BoundPortCount)
1271         {
1272                 log(DEFAULT,"InspIRCd: startup: no ports bound, bailing!");
1273                 printf("\nERROR: Was not able to bind any of %lu ports! Please check your configuration.\n\n", (unsigned long)PortCount);
1274                 return (ERROR);
1275         }
1276
1277         return BoundPortCount;
1278 }
1279