]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd_io.cpp
Added IS_SINGLE, see comment in include/inspircd.h
[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         ReadClassesAndTypes();
421         log(DEFAULT,"Reading K lines,Q lines and Z lines from config...");
422         read_xline_defaults();
423         log(DEFAULT,"Applying K lines, Q lines and Z lines...");
424         apply_lines(APPLY_ALL);
425
426         ConfValue("pid","file",0,Config->PID,&Config->config_f);
427         // write once here, to try it out and make sure its ok
428         WritePID(Config->PID);
429
430         log(DEFAULT,"Done reading configuration file, InspIRCd is now starting.");
431         if (!bail)
432         {
433                 log(DEFAULT,"Adding and removing modules due to rehash...");
434
435                 std::vector<std::string> old_module_names, new_module_names, added_modules, removed_modules;
436
437                 // store the old module names
438                 for (std::vector<std::string>::iterator t = module_names.begin(); t != module_names.end(); t++)
439                 {
440                         old_module_names.push_back(*t);
441                 }
442
443                 // get the new module names
444                 for (int count2 = 0; count2 < ConfValueEnum("module",&Config->config_f); count2++)
445                 {
446                         ConfValue("module","name",count2,Value,&Config->config_f);
447                         new_module_names.push_back(Value);
448                 }
449
450                 // now create a list of new modules that are due to be loaded
451                 // and a seperate list of modules which are due to be unloaded
452                 for (std::vector<std::string>::iterator _new = new_module_names.begin(); _new != new_module_names.end(); _new++)
453                 {
454                         bool added = true;
455                         for (std::vector<std::string>::iterator old = old_module_names.begin(); old != old_module_names.end(); old++)
456                         {
457                                 if (*old == *_new)
458                                         added = false;
459                         }
460                         if (added)
461                                 added_modules.push_back(*_new);
462                 }
463                 for (std::vector<std::string>::iterator oldm = old_module_names.begin(); oldm != old_module_names.end(); oldm++)
464                 {
465                         bool removed = true;
466                         for (std::vector<std::string>::iterator newm = new_module_names.begin(); newm != new_module_names.end(); newm++)
467                         {
468                                 if (*newm == *oldm)
469                                         removed = false;
470                         }
471                         if (removed)
472                                 removed_modules.push_back(*oldm);
473                 }
474                 // now we have added_modules, a vector of modules to be loaded, and removed_modules, a vector of modules
475                 // to be removed.
476                 int rem = 0, add = 0;
477                 if (!removed_modules.empty())
478                 for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
479                 {
480                         if (ServerInstance->UnloadModule(removing->c_str()))
481                         {
482                                 WriteOpers("*** REHASH UNLOADED MODULE: %s",removing->c_str());
483                                 if (user)
484                                         WriteServ(user->fd,"973 %s %s :Module %s successfully unloaded.",user->nick, removing->c_str(), removing->c_str());
485                                 rem++;
486                         }
487                         else
488                         {
489                                 if (user)
490                                         WriteServ(user->fd,"972 %s %s :Failed to unload module %s: %s",user->nick, removing->c_str(), removing->c_str(), ServerInstance->ModuleError());
491                         }
492                 }
493                 if (!added_modules.empty())
494                 for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
495                 {
496                         if (ServerInstance->LoadModule(adding->c_str()))
497                         {
498                                 WriteOpers("*** REHASH LOADED MODULE: %s",adding->c_str());
499                                 if (user)
500                                         WriteServ(user->fd,"975 %s %s :Module %s successfully loaded.",user->nick, adding->c_str(), adding->c_str());
501                                 add++;
502                         }
503                         else
504                         {
505                                 if (user)
506                                         WriteServ(user->fd,"974 %s %s :Failed to load module %s: %s",user->nick, adding->c_str(), adding->c_str(), ServerInstance->ModuleError());
507                         }
508                 }
509                 log(DEFAULT,"Successfully unloaded %lu of %lu modules and loaded %lu of %lu modules.",(unsigned long)rem,(unsigned long)removed_modules.size(),
510                                                                                                         (unsigned long)add,(unsigned long)added_modules.size());
511         }
512 }
513
514
515 void Exit (int status)
516 {
517         if (Config->log_file)
518                 fclose(Config->log_file);
519         send_error("Server shutdown.");
520         exit (status);
521 }
522
523 void Killed(int status)
524 {
525         if (Config->log_file)
526                 fclose(Config->log_file);
527         send_error("Server terminated.");
528         exit(status);
529 }
530
531 char* CleanFilename(char* name)
532 {
533         char* p = name + strlen(name);
534         while ((p != name) && (*p != '/')) p--;
535         return (p != name ? ++p : p);
536 }
537
538
539 void Rehash(int status)
540 {
541         WriteOpers("Rehashing config file %s due to SIGHUP",CleanFilename(CONFIG_FILE));
542         fclose(Config->log_file);
543         OpenLog(NULL,0);
544         Config->Read(false,NULL);
545         FOREACH_MOD(I_OnRehash,OnRehash(""));
546 }
547
548
549
550 void Start (void)
551 {
552         printf("\033[1;32mInspire Internet Relay Chat Server, compiled %s at %s\n",__DATE__,__TIME__);
553         printf("(C) ChatSpike Development team.\033[0m\n\n");
554         printf("Developers:\033[1;32m     Brain, FrostyCoolSlug\033[0m\n");
555         printf("Documentation:\033[1;32m  FrostyCoolSlug, w00t\033[0m\n");
556         printf("Testers:\033[1;32m        typobox43, piggles, Lord_Zathras, CC\033[0m\n");
557         printf("Name concept:\033[1;32m   Lord_Zathras\033[0m\n\n");
558 }
559
560 void WritePID(std::string filename)
561 {
562         ofstream outfile(filename.c_str());
563         if (outfile.is_open())
564         {
565                 outfile << getpid();
566                 outfile.close();
567         }
568         else
569         {
570                 printf("Failed to write PID-file '%s', exiting.\n",filename.c_str());
571                 log(DEFAULT,"Failed to write PID-file '%s', exiting.",filename.c_str());
572                 Exit(0);
573         }
574 }
575
576 void SetSignals()
577 {
578         signal (SIGALRM, SIG_IGN);
579         signal (SIGHUP, Rehash);
580         signal (SIGPIPE, SIG_IGN);
581         signal (SIGTERM, Exit);
582         signal (SIGSEGV, Error);
583 }
584
585
586 int DaemonSeed (void)
587 {
588         int childpid;
589         if ((childpid = fork ()) < 0)
590                 return (ERROR);
591         else if (childpid > 0)
592         {
593                 /* We wait a few seconds here, so that the shell prompt doesnt come back over the output */
594                 sleep(6);
595                 exit (0);
596         }
597         setsid ();
598         umask (007);
599         printf("InspIRCd Process ID: \033[1;32m%lu\033[0m\n",(unsigned long)getpid());
600
601         if (Config->unlimitcore)
602         {
603                 rlimit rl;
604                 if (getrlimit(RLIMIT_CORE, &rl) == -1)
605                 {
606                         log(DEFAULT,"Failed to getrlimit()!");
607                         return(FALSE);
608                 }
609                 else
610                 {
611                         rl.rlim_cur = rl.rlim_max;
612                         if (setrlimit(RLIMIT_CORE, &rl) == -1)
613                                 log(DEFAULT,"setrlimit() failed, cannot increase coredump size.");
614                 }
615         }
616   
617         return (TRUE);
618 }
619
620
621 /* Make Sure Modules Are Avaliable!
622  * (BugFix By Craig.. See? I do work! :p)
623  * Modified by brain, requires const char*
624  * to work with other API functions
625  */
626
627 bool FileExists (const char* file)
628 {
629         FILE *input;
630         if ((input = fopen (file, "r")) == NULL)
631         {
632                 return(false);
633         }
634         else
635         {
636                 fclose (input);
637                 return(true);
638         }
639 }
640
641 /* ConfProcess does the following things to a config line in the following order:
642  *
643  * Processes the line for syntax errors as shown below
644  *      (1) Line void of quotes or equals (a malformed, illegal tag format)
645  *      (2) Odd number of quotes on the line indicating a missing quote
646  *      (3) number of equals signs not equal to number of quotes / 2 (missing an equals sign)
647  *      (4) Spaces between the opening bracket (<) and the keyword
648  *      (5) Spaces between a keyword and an equals sign
649  *      (6) Spaces between an equals sign and a quote
650  * Removes trailing spaces
651  * Removes leading spaces
652  * Converts tabs to spaces
653  * Turns multiple spaces that are outside of quotes into single spaces
654  */
655
656 std::string ServerConfig::ConfProcess(char* buffer, long linenumber, std::stringstream* errorstream, bool &error, std::string filename)
657 {
658         long number_of_quotes = 0;
659         long number_of_equals = 0;
660         bool has_open_bracket = false;
661         bool in_quotes = false;
662         error = false;
663         if (!buffer)
664         {
665                 return "";
666         }
667         // firstly clean up the line by stripping spaces from the start and end and converting tabs to spaces
668         for (char* d = buffer; *d; d++)
669                 if (*d == 9)
670                         *d = ' ';
671         while (*buffer == ' ') buffer++;
672         while ((buffer[strlen(buffer)-1] == ' ') && (*buffer)) buffer[strlen(buffer)-1] = '\0';
673
674         // empty lines are syntactically valid, as are comments
675         if (!(*buffer) || buffer[0] == '#')
676                 return "";
677
678         for (unsigned int c = 0; c < strlen(buffer); c++)
679         {
680                 // convert all spaces that are OUTSIDE quotes into hardspace (0xA0) as this will make them easier to
681                 // search and replace later :)
682                 if ((!in_quotes) && (buffer[c] == ' '))
683                         buffer[c] = '\xA0';
684                 if ((buffer[c] == '<') && (!in_quotes))
685                 {
686                         has_open_bracket = true;
687                         if (strlen(buffer) == 1)
688                         {
689                                 *errorstream << "Tag without identifier at " << filename << ":" << linenumber << endl;
690                                 error = true;
691                                 return "";
692                         }
693                         else if ((tolower(buffer[c+1]) < 'a') || (tolower(buffer[c+1]) > 'z'))
694                         {
695                                 *errorstream << "Invalid characters in identifier at " << filename << ":" << linenumber << endl;
696                                 error = true;
697                                 return "";
698                         }
699                 }
700                 if (buffer[c] == '"')
701                 {
702                         number_of_quotes++;
703                         in_quotes = (!in_quotes);
704                 }
705                 if ((buffer[c] == '=') && (!in_quotes))
706                 {
707                         number_of_equals++;
708                         if (strlen(buffer) == c)
709                         {
710                                 *errorstream << "Variable without a value at " << filename << ":" << linenumber << endl;
711                                 error = true;
712                                 return "";
713                         }
714                         else if (buffer[c+1] != '"')
715                         {
716                                 *errorstream << "Variable name not followed immediately by its value at " << filename << ":" << linenumber << endl;
717                                 error = true;
718                                 return "";
719                         }
720                         else if (!c)
721                         {
722                                 *errorstream << "Value without a variable (line starts with '=') at " << filename << ":" << linenumber << endl;
723                                 error = true;
724                                 return "";
725                         }
726                         else if (buffer[c-1] == '\xA0')
727                         {
728                                 *errorstream << "Variable name not followed immediately by its value at " << filename << ":" << linenumber << endl;
729                                 error = true;
730                                 return "";
731                         }
732                 }
733         }
734         // no quotes, and no equals. something freaky.
735         if ((!number_of_quotes) || (!number_of_equals) && (strlen(buffer)>2) && (buffer[0]=='<'))
736         {
737                 *errorstream << "Malformed tag at " << filename << ":" << linenumber << endl;
738                 error = true;
739                 return "";
740         }
741         // odd number of quotes. thats just wrong.
742         if ((number_of_quotes % 2) != 0)
743         {
744                 *errorstream << "Missing \" at " << filename << ":" << linenumber << endl;
745                 error = true;
746                 return "";
747         }
748         if (number_of_equals < (number_of_quotes/2))
749         {
750                 *errorstream << "Missing '=' at " << filename << ":" << linenumber << endl;
751         }
752         if (number_of_equals > (number_of_quotes/2))
753         {
754                 *errorstream << "Too many '=' at " << filename << ":" << linenumber << endl;
755         }
756
757         std::string parsedata = buffer;
758         // turn multispace into single space
759         while (parsedata.find("\xA0\xA0") != std::string::npos)
760         {
761                 parsedata.erase(parsedata.find("\xA0\xA0"),1);
762         }
763
764         // turn our hardspace back into softspace
765         for (unsigned int d = 0; d < parsedata.length(); d++)
766         {
767                 if (parsedata[d] == '\xA0')
768                         parsedata[d] = ' ';
769         }
770
771         // and we're done, the line is fine!
772         return parsedata;
773 }
774
775 int ServerConfig::fgets_safe(char* buffer, size_t maxsize, FILE* &file)
776 {
777         char c_read = '\0';
778         unsigned int bufptr = 0;
779         while ((!feof(file)) && (c_read != '\n') && (c_read != '\r') && (bufptr < maxsize))
780         {
781                 c_read = fgetc(file);
782                 if ((c_read != '\n') && (c_read != '\r'))
783                         buffer[bufptr++] = c_read;
784         }
785         buffer[bufptr] = '\0';
786         return bufptr;
787 }
788
789 bool ServerConfig::LoadConf(const char* filename, std::stringstream *target, std::stringstream* errorstream)
790 {
791         target->str("");
792         errorstream->str("");
793         long linenumber = 1;
794         // first, check that the file exists before we try to do anything with it
795         if (!FileExists(filename))
796         {
797                 *errorstream << "File " << filename << " not found." << endl;
798                 return false;
799         }
800         // Fix the chmod of the file to restrict it to the current user and group
801         chmod(filename,0600);
802         for (unsigned int t = 0; t < include_stack.size(); t++)
803         {
804                 if (std::string(filename) == include_stack[t])
805                 {
806                         *errorstream << "File " << filename << " is included recursively (looped inclusion)." << endl;
807                         return false;
808                 }
809         }
810         include_stack.push_back(filename);
811         // now open it
812         FILE* conf = fopen(filename,"r");
813         char buffer[MAXBUF];
814         if (conf)
815         {
816                 while (!feof(conf))
817                 {
818                         if (fgets_safe(buffer, MAXBUF, conf))
819                         {
820                                 if ((!feof(conf)) && (buffer) && (strlen(buffer)))
821                                 {
822                                         if ((buffer[0] != '#') && (buffer[0] != '\r')  && (buffer[0] != '\n'))
823                                         {
824                                                 if (!strncmp(buffer,"<include file=\"",15))
825                                                 {
826                                                         char* buf = buffer;
827                                                         char confpath[10240],newconf[10240];
828                                                         // include file directive
829                                                         buf += 15;      // advance to filename
830                                                         for (unsigned int j = 0; j < strlen(buf); j++)
831                                                         {
832                                                                 if (buf[j] == '\\')
833                                                                         buf[j] = '/';
834                                                                 if (buf[j] == '"')
835                                                                 {
836                                                                         buf[j] = '\0';
837                                                                         break;
838                                                                 }
839                                                         }
840                                                         log(DEBUG,"Opening included file '%s'",buf);
841                                                         if (*buf != '/')
842                                                         {
843                                                                 strlcpy(confpath,CONFIG_FILE,10240);
844                                                                 if (strstr(confpath,"/inspircd.conf"))
845                                                                 {
846                                                                         // leaves us with just the path
847                                                                         *(strstr(confpath,"/inspircd.conf")) = '\0';
848                                                                 }
849                                                                 snprintf(newconf,10240,"%s/%s",confpath,buf);
850                                                         }
851                                                         else strlcpy(newconf,buf,10240);
852                                                         std::stringstream merge(stringstream::in | stringstream::out);
853                                                         // recursively call LoadConf and get the new data, use the same errorstream
854                                                         if (LoadConf(newconf, &merge, errorstream))
855                                                         {
856                                                                 // append to the end of the file
857                                                                 std::string newstuff = merge.str();
858                                                                 *target << newstuff;
859                                                         }
860                                                         else
861                                                         {
862                                                                 // the error propogates up to its parent recursively
863                                                                 // causing the config reader to bail at the top level.
864                                                                 fclose(conf);
865                                                                 return false;
866                                                         }
867                                                 }
868                                                 else
869                                                 {
870                                                         bool error = false;
871                                                         std::string data = this->ConfProcess(buffer,linenumber++,errorstream,error,filename);
872                                                         if (error)
873                                                         {
874                                                                 return false;
875                                                         }
876                                                         *target << data;
877                                                 }
878                                         }
879                                         else linenumber++;
880                                 }
881                         }
882                 }
883                 fclose(conf);
884         }
885         target->seekg(0);
886         return true;
887 }
888
889 /* Counts the number of tags of a certain type within the config file, e.g. to enumerate opers */
890
891 int ServerConfig::EnumConf(std::stringstream *config, const char* tag)
892 {
893         int ptr = 0;
894         char buffer[MAXBUF], c_tag[MAXBUF], c, lastc;
895         int in_token, in_quotes, tptr, idx = 0;
896
897         std::string x = config->str();
898         const char* buf = x.c_str();
899         long bptr = 0;
900         long len = config->str().length();
901         
902         ptr = 0;
903         in_token = 0;
904         in_quotes = 0;
905         lastc = '\0';
906         while (bptr<len)
907         {
908                 lastc = c;
909                 c = buf[bptr++];
910                 if ((c == '#') && (lastc == '\n'))
911                 {
912                         while ((c != '\n') && (bptr<len))
913                         {
914                                 lastc = c;
915                                 c = buf[bptr++];
916                         }
917                 }
918                 if ((c == '<') && (!in_quotes))
919                 {
920                         tptr = 0;
921                         in_token = 1;
922                         do {
923                                 c = buf[bptr++];
924                                 if (c != ' ')
925                                 {
926                                         c_tag[tptr++] = c;
927                                         c_tag[tptr] = '\0';
928                                 }
929                         } while (c != ' ');
930                 }
931                 if (c == '"')
932                 {
933                         in_quotes = (!in_quotes);
934                 }
935                 if ((c == '>') && (!in_quotes))
936                 {
937                         in_token = 0;
938                         if (!strcmp(c_tag,tag))
939                         {
940                                 /* correct tag, but wrong index */
941                                 idx++;
942                         }
943                         c_tag[0] = '\0';
944                         buffer[0] = '\0';
945                         ptr = 0;
946                         tptr = 0;
947                 }
948                 if (c != '>')
949                 {
950                         if ((in_token) && (c != '\n') && (c != '\r'))
951                         {
952                                 buffer[ptr++] = c;
953                                 buffer[ptr] = '\0';
954                         }
955                 }
956         }
957         return idx;
958 }
959
960 /* Counts the number of values within a certain tag */
961
962 int ServerConfig::EnumValues(std::stringstream *config, const char* tag, int index)
963 {
964         int ptr = 0;
965         char buffer[MAXBUF], c_tag[MAXBUF], c, lastc;
966         int in_token, in_quotes, tptr, idx = 0;
967         
968         bool correct_tag = false;
969         int num_items = 0;
970
971         const char* buf = config->str().c_str();
972         long bptr = 0;
973         long len = strlen(buf);
974         
975         ptr = 0;
976         in_token = 0;
977         in_quotes = 0;
978         lastc = '\0';
979         while (bptr<len)
980         {
981                 lastc = c;
982                 c = buf[bptr++];
983                 if ((c == '#') && (lastc == '\n'))
984                 {
985                         while ((c != '\n') && (bptr<len))
986                         {
987                                 lastc = c;
988                                 c = buf[bptr++];
989                         }
990                 }
991                 if ((c == '<') && (!in_quotes))
992                 {
993                         tptr = 0;
994                         in_token = 1;
995                         do {
996                                 c = buf[bptr++];
997                                 if (c != ' ')
998                                 {
999                                         c_tag[tptr++] = c;
1000                                         c_tag[tptr] = '\0';
1001                                         
1002                                         if ((!strcmp(c_tag,tag)) && (idx == index))
1003                                         {
1004                                                 correct_tag = true;
1005                                         }
1006                                 }
1007                         } while (c != ' ');
1008                 }
1009                 if (c == '"')
1010                 {
1011                         in_quotes = (!in_quotes);
1012                 }
1013                 
1014                 if ( (correct_tag) && (!in_quotes) && ( (c == ' ') || (c == '\n') || (c == '\r') ) )
1015                 {
1016                         num_items++;
1017                 }
1018                 if ((c == '>') && (!in_quotes))
1019                 {
1020                         in_token = 0;
1021                         if (correct_tag)
1022                                 correct_tag = false;
1023                         if (!strcmp(c_tag,tag))
1024                         {
1025                                 /* correct tag, but wrong index */
1026                                 idx++;
1027                         }
1028                         c_tag[0] = '\0';
1029                         buffer[0] = '\0';
1030                         ptr = 0;
1031                         tptr = 0;
1032                 }
1033                 if (c != '>')
1034                 {
1035                         if ((in_token) && (c != '\n') && (c != '\r'))
1036                         {
1037                                 buffer[ptr++] = c;
1038                                 buffer[ptr] = '\0';
1039                         }
1040                 }
1041         }
1042         return num_items+1;
1043 }
1044
1045
1046
1047 int ServerConfig::ConfValueEnum(char* tag, std::stringstream* config)
1048 {
1049         return EnumConf(config,tag);
1050 }
1051
1052
1053
1054 /* Retrieves a value from the config file. If there is more than one value of the specified
1055  * key and section (e.g. for opers etc) then the index value specifies which to retreive, e.g.
1056  *
1057  * ConfValue("oper","name",2,result);
1058  */
1059
1060 int ServerConfig::ReadConf(std::stringstream *config, const char* tag, const char* var, int index, char *result)
1061 {
1062         int ptr = 0;
1063         char buffer[65535], c_tag[MAXBUF], c, lastc;
1064         int in_token, in_quotes, tptr, idx = 0;
1065         char* key;
1066
1067         std::string x = config->str();
1068         const char* buf = x.c_str();
1069         long bptr = 0;
1070         long len = config->str().length();
1071         
1072         ptr = 0;
1073         in_token = 0;
1074         in_quotes = 0;
1075         lastc = '\0';
1076         c_tag[0] = '\0';
1077         buffer[0] = '\0';
1078         while (bptr<len)
1079         {
1080                 lastc = c;
1081                 c = buf[bptr++];
1082                 // FIX: Treat tabs as spaces
1083                 if (c == 9)
1084                         c = 32;
1085                 if ((c == '<') && (!in_quotes))
1086                 {
1087                         tptr = 0;
1088                         in_token = 1;
1089                         do {
1090                                 c = buf[bptr++];
1091                                 if (c != ' ')
1092                                 {
1093                                         c_tag[tptr++] = c;
1094                                         c_tag[tptr] = '\0';
1095                                 }
1096                         // FIX: Tab can follow a tagname as well as space.
1097                         } while ((c != ' ') && (c != 9));
1098                 }
1099                 if (c == '"')
1100                 {
1101                         in_quotes = (!in_quotes);
1102                 }
1103                 if ((c == '>') && (!in_quotes))
1104                 {
1105                         in_token = 0;
1106                         if (idx == index)
1107                         {
1108                                 if (!strcmp(c_tag,tag))
1109                                 {
1110                                         if ((buffer) && (c_tag) && (var))
1111                                         {
1112                                                 key = strstr(buffer,var);
1113                                                 if (!key)
1114                                                 {
1115                                                         /* value not found in tag */
1116                                                         *result = 0;
1117                                                         return 0;
1118                                                 }
1119                                                 else
1120                                                 {
1121                                                         key+=strlen(var);
1122                                                         while (*key !='"')
1123                                                         {
1124                                                                 if (!*key)
1125                                                                 {
1126                                                                         /* missing quote */
1127                                                                         *result = 0;
1128                                                                         return 0;
1129                                                                 }
1130                                                                 key++;
1131                                                         }
1132                                                         key++;
1133                                                         for (unsigned j = 0; j < strlen(key); j++)
1134                                                         {
1135                                                                 if (key[j] == '"')
1136                                                                 {
1137                                                                         key[j] = '\0';
1138                                                                 }
1139                                                         }
1140                                                         strlcpy(result,key,MAXBUF);
1141                                                         return 1;
1142                                                 }
1143                                         }
1144                                 }
1145                         }
1146                         if (!strcmp(c_tag,tag))
1147                         {
1148                                 /* correct tag, but wrong index */
1149                                 idx++;
1150                         }
1151                         c_tag[0] = '\0';
1152                         buffer[0] = '\0';
1153                         ptr = 0;
1154                         tptr = 0;
1155                 }
1156                 if (c != '>')
1157                 {
1158                         if ((in_token) && (c != '\n') && (c != '\r'))
1159                         {
1160                                 buffer[ptr++] = c;
1161                                 buffer[ptr] = '\0';
1162                         }
1163                 }
1164         }
1165         *result = 0; // value or its tag not found at all
1166         return 0;
1167 }
1168
1169
1170
1171 int ServerConfig::ConfValue(char* tag, char* var, int index, char *result,std::stringstream *config)
1172 {
1173         ReadConf(config, tag, var, index, result);
1174         return 0;
1175 }
1176
1177
1178
1179 // This will bind a socket to a port. It works for UDP/TCP
1180 int BindSocket (int sockfd, struct sockaddr_in client, struct sockaddr_in server, int port, char* addr)
1181 {
1182         memset((char *)&server,0,sizeof(server));
1183         struct in_addr addy;
1184         inet_aton(addr,&addy);
1185         server.sin_family = AF_INET;
1186         if (!*addr)
1187         {
1188                 server.sin_addr.s_addr = htonl(INADDR_ANY);
1189         }
1190         else
1191         {
1192                 server.sin_addr = addy;
1193         }
1194         server.sin_port = htons(port);
1195         if (bind(sockfd,(struct sockaddr*)&server,sizeof(server))<0)
1196         {
1197                 return(ERROR);
1198         }
1199         else
1200         {
1201                 listen(sockfd, Config->MaxConn);
1202                 return(TRUE);
1203         }
1204 }
1205
1206
1207 // Open a TCP Socket
1208 int OpenTCPSocket (void)
1209 {
1210         int sockfd;
1211         int on = 1;
1212         struct linger linger = { 0 };
1213   
1214         if ((sockfd = socket (AF_INET, SOCK_STREAM, 0)) < 0)
1215                 return (ERROR);
1216         else
1217         {
1218                 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, (const char*)&on, sizeof(on));
1219                 /* This is BSD compatible, setting l_onoff to 0 is *NOT* http://web.irc.org/mla/ircd-dev/msg02259.html */
1220                 linger.l_onoff = 1;
1221                 linger.l_linger = 1;
1222                 setsockopt(sockfd, SOL_SOCKET, SO_LINGER, (const char*)&linger,sizeof(linger));
1223                 return (sockfd);
1224         }
1225 }
1226
1227 int BindPorts()
1228 {
1229         char configToken[MAXBUF], Addr[MAXBUF], Type[MAXBUF];
1230         sockaddr_in client,server;
1231         int clientportcount = 0;
1232         int BoundPortCount = 0;
1233         for (int count = 0; count < Config->ConfValueEnum("bind",&Config->config_f); count++)
1234         {
1235                 Config->ConfValue("bind","port",count,configToken,&Config->config_f);
1236                 Config->ConfValue("bind","address",count,Addr,&Config->config_f);
1237                 Config->ConfValue("bind","type",count,Type,&Config->config_f);
1238                 if ((!*Type) || (!strcmp(Type,"clients")))
1239                 {
1240                         // modules handle server bind types now
1241                         Config->ports[clientportcount] = atoi(configToken);
1242
1243                         // If the client put bind "*", this is an unrealism.
1244                         // We don't actually support this as documented, but
1245                         // i got fed up of people trying it, so now it converts
1246                         // it to an empty string meaning the same 'bind to all'.
1247                         if (*Addr == '*')
1248                                 *Addr = 0;
1249
1250                         strlcpy(Config->addrs[clientportcount],Addr,256);
1251                         clientportcount++;
1252                         log(DEBUG,"InspIRCd: startup: read binding %s:%s [%s] from config",Addr,configToken, Type);
1253                 }
1254         }
1255         int PortCount = clientportcount;
1256
1257         for (int count = 0; count < PortCount; count++)
1258         {
1259                 if ((openSockfd[BoundPortCount] = OpenTCPSocket()) == ERROR)
1260                 {
1261                         log(DEBUG,"InspIRCd: startup: bad fd %lu binding port [%s:%d]",(unsigned long)openSockfd[BoundPortCount],Config->addrs[count],(unsigned long)Config->ports[count]);
1262                         return(ERROR);
1263                 }
1264                 if (BindSocket(openSockfd[BoundPortCount],client,server,Config->ports[count],Config->addrs[count]) == ERROR)
1265                 {
1266                         log(DEFAULT,"InspIRCd: startup: failed to bind port [%s:%lu]: %s",Config->addrs[count],(unsigned long)Config->ports[count],strerror(errno));
1267                 }
1268                 else    /* well we at least bound to one socket so we'll continue */
1269                 {
1270                         BoundPortCount++;
1271                 }
1272         }
1273
1274         /* if we didn't bind to anything then abort */
1275         if (!BoundPortCount)
1276         {
1277                 log(DEFAULT,"InspIRCd: startup: no ports bound, bailing!");
1278                 printf("\nERROR: Was not able to bind any of %lu ports! Please check your configuration.\n\n", (unsigned long)PortCount);
1279                 return (ERROR);
1280         }
1281
1282         return BoundPortCount;
1283 }
1284