]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/configreader.cpp
3060b98663404c92128cd853c3a88112daf5db14
[user/henk/code/inspircd.git] / src / configreader.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "configreader.h"
15 #include <sstream>
16 #include <fstream>
17 #include "inspircd.h"
18 #include "xline.h"
19 #include "exitcodes.h"
20 #include "commands/cmd_whowas.h"
21
22 std::vector<std::string> old_module_names, new_module_names, added_modules, removed_modules;
23
24 ServerConfig::ServerConfig(InspIRCd* Instance) : ServerInstance(Instance)
25 {
26         this->ClearStack();
27         *ServerName = *Network = *ServerDesc = *AdminName = '\0';
28         *HideWhoisServer = *AdminEmail = *AdminNick = *diepass = *restartpass = '\0';
29         *CustomVersion = *motd = *rules = *PrefixQuit = *DieValue = *DNSServer = '\0';
30         *UserStats = *ModPath = *MyExecutable = *DisabledCommands = *PID = '\0';
31         WhoWasGroupSize = WhoWasMaxGroups = WhoWasMaxKeep = 0;
32         log_file = NULL;
33         NoUserDns = forcedebug = OperSpyWhois = nofork = HideBans = HideSplits = UndernetMsgPrefix = false;
34         CycleHosts = writelog = AllowHalfop = true;
35         dns_timeout = DieDelay = 5;
36         MaxTargets = 20;
37         NetBufferSize = 10240;
38         SoftLimit = MAXCLIENTS;
39         MaxConn = SOMAXCONN;
40         MaxWhoResults = 100;
41         debugging = 0;
42         LogLevel = DEFAULT;
43         maxbans.clear();
44 }
45
46 void ServerConfig::ClearStack()
47 {
48         include_stack.clear();
49 }
50
51 Module* ServerConfig::GetIOHook(int port)
52 {
53         std::map<int,Module*>::iterator x = IOHookModule.find(port);
54         return (x != IOHookModule.end() ? x->second : NULL);
55 }
56
57 Module* ServerConfig::GetIOHook(InspSocket* is)
58 {
59         std::map<InspSocket*,Module*>::iterator x = SocketIOHookModule.find(is);
60         return (x != SocketIOHookModule.end() ? x->second : NULL);
61 }
62
63 bool ServerConfig::AddIOHook(int port, Module* iomod)
64 {
65         if (!GetIOHook(port))
66         {
67                 IOHookModule[port] = iomod;
68                 return true;
69         }
70         else
71         {
72                 throw ModuleException("Port already hooked by another module");
73                 return false;
74         }
75 }
76
77 bool ServerConfig::AddIOHook(Module* iomod, InspSocket* is)
78 {
79         if (!GetIOHook(is))
80         {
81                 SocketIOHookModule[is] = iomod;
82                 is->IsIOHooked = true;
83                 return true;
84         }
85         else
86         {
87                 throw ModuleException("InspSocket derived class already hooked by another module");
88                 return false;
89         }
90 }
91
92 bool ServerConfig::DelIOHook(int port)
93 {
94         std::map<int,Module*>::iterator x = IOHookModule.find(port);
95         if (x != IOHookModule.end())
96         {
97                 IOHookModule.erase(x);
98                 return true;
99         }
100         return false;
101 }
102
103 bool ServerConfig::DelIOHook(InspSocket* is)
104 {
105         std::map<InspSocket*,Module*>::iterator x = SocketIOHookModule.find(is);
106         if (x != SocketIOHookModule.end())
107         {
108                 SocketIOHookModule.erase(x);
109                 return true;
110         }
111         return false;
112 }
113
114 void ServerConfig::Update005()
115 {
116         std::stringstream out(data005);
117         std::string token;
118         std::string line5;
119         int token_counter = 0;
120         isupport.clear();
121         while (out >> token)
122         {
123                 line5 = line5 + token + " ";
124                 token_counter++;
125                 if (token_counter >= 13)
126                 {
127                         char buf[MAXBUF];
128                         snprintf(buf, MAXBUF, "%s:are supported by this server", line5.c_str());
129                         isupport.push_back(buf);
130                         line5 = "";
131                         token_counter = 0;
132                 }
133         }
134         if (!line5.empty())
135         {
136                 char buf[MAXBUF];
137                 snprintf(buf, MAXBUF, "%s:are supported by this server", line5.c_str());
138                 isupport.push_back(buf);
139         }
140 }
141
142 void ServerConfig::Send005(userrec* user)
143 {
144         for (std::vector<std::string>::iterator line = ServerInstance->Config->isupport.begin(); line != ServerInstance->Config->isupport.end(); line++)
145                 user->WriteServ("005 %s %s", user->nick, line->c_str());
146 }
147
148 bool ServerConfig::CheckOnce(char* tag, bool bail, userrec* user)
149 {
150         int count = ConfValueEnum(this->config_data, tag);
151
152         if (count > 1)
153         {
154                 throw CoreException("You have more than one <"+std::string(tag)+"> tag, this is not permitted.");
155                 return false;
156         }
157         if (count < 1)
158         {
159                 throw CoreException("You have not defined a <"+std::string(tag)+"> tag, this is required.");
160                 return false;
161         }
162         return true;
163 }
164
165 bool NoValidation(ServerConfig* conf, const char* tag, const char* value, ValueItem &data)
166 {
167         return true;
168 }
169
170 bool ValidateMaxTargets(ServerConfig* conf, const char* tag, const char* value, ValueItem &data)
171 {
172         if ((data.GetInteger() < 0) || (data.GetInteger() > 31))
173         {
174                 conf->GetInstance()->Log(DEFAULT,"WARNING: <options:maxtargets> value is greater than 31 or less than 0, set to 20.");
175                 data.Set(20);
176         }
177         return true;
178 }
179
180 bool ValidateSoftLimit(ServerConfig* conf, const char* tag, const char* value, ValueItem &data)
181 {
182         if ((data.GetInteger() < 1) || (data.GetInteger() > MAXCLIENTS))
183         {
184                 conf->GetInstance()->Log(DEFAULT,"WARNING: <options:softlimit> value is greater than %d or less than 0, set to %d.",MAXCLIENTS,MAXCLIENTS);
185                 data.Set(MAXCLIENTS);
186         }
187         return true;
188 }
189
190 bool ValidateMaxConn(ServerConfig* conf, const char* tag, const char* value, ValueItem &data)
191 {
192         if (data.GetInteger() > SOMAXCONN)
193                 conf->GetInstance()->Log(DEFAULT,"WARNING: <options:somaxconn> value may be higher than the system-defined SOMAXCONN value!");
194         return true;
195 }
196
197 bool InitializeDisabledCommands(const char* data, InspIRCd* ServerInstance)
198 {
199         std::stringstream dcmds(data);
200         std::string thiscmd;
201
202         /* Enable everything first */
203         for (nspace::hash_map<std::string,command_t*>::iterator x = ServerInstance->Parser->cmdlist.begin(); x != ServerInstance->Parser->cmdlist.end(); x++)
204                 x->second->Disable(false);
205
206         /* Now disable all the ones which the user wants disabled */
207         while (dcmds >> thiscmd)
208         {
209                 nspace::hash_map<std::string,command_t*>::iterator cm = ServerInstance->Parser->cmdlist.find(thiscmd);
210                 if (cm != ServerInstance->Parser->cmdlist.end())
211                 {
212                         cm->second->Disable(true);
213                 }
214         }
215         return true;
216 }
217
218 bool ValidateDnsServer(ServerConfig* conf, const char* tag, const char* value, ValueItem &data)
219 {
220         if (!*(data.GetString()))
221         {
222                 // attempt to look up their nameserver from /etc/resolv.conf
223                 conf->GetInstance()->Log(DEFAULT,"WARNING: <dns:server> not defined, attempting to find working server in /etc/resolv.conf...");
224                 ifstream resolv("/etc/resolv.conf");
225                 std::string nameserver;
226                 bool found_server = false;
227
228                 if (resolv.is_open())
229                 {
230                         while (resolv >> nameserver)
231                         {
232                                 if ((nameserver == "nameserver") && (!found_server))
233                                 {
234                                         resolv >> nameserver;
235                                         data.Set(nameserver.c_str());
236                                         found_server = true;
237                                         conf->GetInstance()->Log(DEFAULT,"<dns:server> set to '%s' as first resolver in /etc/resolv.conf.",nameserver.c_str());
238                                 }
239                         }
240
241                         if (!found_server)
242                         {
243                                 conf->GetInstance()->Log(DEFAULT,"/etc/resolv.conf contains no viable nameserver entries! Defaulting to nameserver '127.0.0.1'!");
244                                 data.Set("127.0.0.1");
245                         }
246                 }
247                 else
248                 {
249                         conf->GetInstance()->Log(DEFAULT,"/etc/resolv.conf can't be opened! Defaulting to nameserver '127.0.0.1'!");
250                         data.Set("127.0.0.1");
251                 }
252         }
253         return true;
254 }
255
256 bool ValidateServerName(ServerConfig* conf, const char* tag, const char* value, ValueItem &data)
257 {
258         /* If we already have a servername, and they changed it, we should throw an exception. */
259         if ((strcasecmp(conf->ServerName, data.GetString())) && (*conf->ServerName))
260         {
261                 throw CoreException("Configuration error: You cannot change your servername at runtime! Please restart your server for this change to be applied.");
262                 /* XXX: We don't actually reach this return of course... */
263                 return false;
264         }
265         if (!strchr(data.GetString(),'.'))
266         {
267                 conf->GetInstance()->Log(DEFAULT,"WARNING: <server:name> '%s' is not a fully-qualified domain name. Changed to '%s%c'",data.GetString(),data.GetString(),'.');
268                 std::string moo = std::string(data.GetString()).append(".");
269                 data.Set(moo.c_str());
270         }
271         return true;
272 }
273
274 bool ValidateNetBufferSize(ServerConfig* conf, const char* tag, const char* value, ValueItem &data)
275 {
276         if ((!data.GetInteger()) || (data.GetInteger() > 65535) || (data.GetInteger() < 1024))
277         {
278                 conf->GetInstance()->Log(DEFAULT,"No NetBufferSize specified or size out of range, setting to default of 10240.");
279                 data.Set(10240);
280         }
281         return true;
282 }
283
284 bool ValidateMaxWho(ServerConfig* conf, const char* tag, const char* value, ValueItem &data)
285 {
286         if ((!data.GetInteger()) || (data.GetInteger() > 65535) || (data.GetInteger() < 1))
287         {
288                 conf->GetInstance()->Log(DEFAULT,"No MaxWhoResults specified or size out of range, setting to default of 128.");
289                 data.Set(128);
290         }
291         return true;
292 }
293
294 bool ValidateLogLevel(ServerConfig* conf, const char* tag, const char* value, ValueItem &data)
295 {
296         std::string dbg = data.GetString();
297         conf->LogLevel = DEFAULT;
298
299         if (dbg == "debug")
300                 conf->LogLevel = DEBUG;
301         else if (dbg  == "verbose")
302                 conf->LogLevel = VERBOSE;
303         else if (dbg == "default")
304                 conf->LogLevel = DEFAULT;
305         else if (dbg == "sparse")
306                 conf->LogLevel = SPARSE;
307         else if (dbg == "none")
308                 conf->LogLevel = NONE;
309
310         conf->debugging = (conf->LogLevel == DEBUG);
311
312         return true;
313 }
314
315 bool ValidateMotd(ServerConfig* conf, const char* tag, const char* value, ValueItem &data)
316 {
317         conf->ReadFile(conf->MOTD, data.GetString());
318         return true;
319 }
320
321 bool ValidateRules(ServerConfig* conf, const char* tag, const char* value, ValueItem &data)
322 {
323         conf->ReadFile(conf->RULES, data.GetString());
324         return true;
325 }
326
327 bool ValidateWhoWas(ServerConfig* conf, const char* tag, const char* value, ValueItem &data)
328 {
329         conf->WhoWasMaxKeep = conf->GetInstance()->Duration(data.GetString());
330
331         if (conf->WhoWasGroupSize < 0)
332                 conf->WhoWasGroupSize = 0;
333
334         if (conf->WhoWasMaxGroups < 0)
335                 conf->WhoWasMaxGroups = 0;
336
337         if (conf->WhoWasMaxKeep < 3600)
338         {
339                 conf->WhoWasMaxKeep = 3600;
340                 conf->GetInstance()->Log(DEFAULT,"WARNING: <whowas:maxkeep> value less than 3600, setting to default 3600");
341         }
342
343         command_t* whowas_command = conf->GetInstance()->Parser->GetHandler("WHOWAS");
344         if (whowas_command)
345         {
346                 std::deque<classbase*> params;
347                 whowas_command->HandleInternal(WHOWAS_PRUNE, params);
348         }
349
350         return true;
351 }
352
353 /* Callback called before processing the first <connect> tag
354  */
355 bool InitConnect(ServerConfig* conf, const char* tag)
356 {
357         conf->GetInstance()->Log(DEFAULT,"Reading connect classes...");
358         conf->Classes.clear();
359         return true;
360 }
361
362 /* Callback called to process a single <connect> tag
363  */
364 bool DoConnect(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
365 {
366         ConnectClass c;
367         const char* allow = values[0].GetString(); /* Yeah, there are a lot of values. Live with it. */
368         const char* deny = values[1].GetString();
369         const char* password = values[2].GetString();
370         int timeout = values[3].GetInteger();
371         int pingfreq = values[4].GetInteger();
372         int flood = values[5].GetInteger();
373         int threshold = values[6].GetInteger();
374         int sendq = values[7].GetInteger();
375         int recvq = values[8].GetInteger();
376         int localmax = values[9].GetInteger();
377         int globalmax = values[10].GetInteger();
378
379         if (*allow)
380         {
381                 ConnectClass c(timeout, flood, allow, pingfreq, password, threshold, sendq, recvq, localmax, globalmax);
382                 conf->Classes.push_back(c);
383         }
384         else
385         {
386                 ConnectClass c(deny);
387                 conf->Classes.push_back(c);
388         }
389
390         return true;
391 }
392
393 /* Callback called when there are no more <connect> tags
394  */
395 bool DoneConnect(ServerConfig* conf, const char* tag)
396 {
397         return true;
398 }
399
400 /* Callback called before processing the first <uline> tag
401  */
402 bool InitULine(ServerConfig* conf, const char* tag)
403 {
404         conf->ulines.clear();
405         return true;
406 }
407
408 /* Callback called to process a single <uline> tag
409  */
410 bool DoULine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
411 {
412         const char* server = values[0].GetString();
413         conf->ulines.push_back(server);
414         return true;
415 }
416
417 /* Callback called when there are no more <uline> tags
418  */
419 bool DoneULine(ServerConfig* conf, const char* tag)
420 {
421         return true;
422 }
423
424 /* Callback called before processing the first <module> tag
425  */
426 bool InitModule(ServerConfig* conf, const char* tag)
427 {
428         old_module_names.clear();
429         new_module_names.clear();
430         added_modules.clear();
431         removed_modules.clear();
432         for (std::vector<std::string>::iterator t = conf->module_names.begin(); t != conf->module_names.end(); t++)
433         {
434                 old_module_names.push_back(*t);
435         }
436         return true;
437 }
438
439 /* Callback called to process a single <module> tag
440  */
441 bool DoModule(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
442 {
443         const char* modname = values[0].GetString();
444         new_module_names.push_back(modname);
445         return true;
446 }
447
448 /* Callback called when there are no more <module> tags
449  */
450 bool DoneModule(ServerConfig* conf, const char* tag)
451 {
452         // now create a list of new modules that are due to be loaded
453         // and a seperate list of modules which are due to be unloaded
454         for (std::vector<std::string>::iterator _new = new_module_names.begin(); _new != new_module_names.end(); _new++)
455         {
456                 bool added = true;
457
458                 for (std::vector<std::string>::iterator old = old_module_names.begin(); old != old_module_names.end(); old++)
459                 {
460                         if (*old == *_new)
461                                 added = false;
462                 }
463
464                 if (added)
465                         added_modules.push_back(*_new);
466         }
467
468         for (std::vector<std::string>::iterator oldm = old_module_names.begin(); oldm != old_module_names.end(); oldm++)
469         {
470                 bool removed = true;
471                 for (std::vector<std::string>::iterator newm = new_module_names.begin(); newm != new_module_names.end(); newm++)
472                 {
473                         if (*newm == *oldm)
474                                 removed = false;
475                 }
476
477                 if (removed)
478                         removed_modules.push_back(*oldm);
479         }
480         return true;
481 }
482
483 /* Callback called before processing the first <banlist> tag
484  */
485 bool InitMaxBans(ServerConfig* conf, const char* tag)
486 {
487         conf->maxbans.clear();
488         return true;
489 }
490
491 /* Callback called to process a single <banlist> tag
492  */
493 bool DoMaxBans(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
494 {
495         const char* channel = values[0].GetString();
496         int limit = values[1].GetInteger();
497         conf->maxbans[channel] = limit;
498         return true;
499 }
500
501 /* Callback called when there are no more <banlist> tags.
502  */
503 bool DoneMaxBans(ServerConfig* conf, const char* tag)
504 {
505         return true;
506 }
507
508 void ServerConfig::ReportConfigError(const std::string &errormessage, bool bail, userrec* user)
509 {
510         ServerInstance->Log(DEFAULT, "There were errors in your configuration file: %s", errormessage.c_str());
511         if (bail)
512         {
513                 /* Unneeded because of the ServerInstance->Log() aboive? */
514                 printf("There were errors in your configuration:\n%s\n\n",errormessage.c_str());
515                 InspIRCd::Exit(EXIT_STATUS_CONFIG);
516         }
517         else
518         {
519                 std::string errors = errormessage;
520                 std::string::size_type start;
521                 unsigned int prefixlen;
522                 start = 0;
523                 /* ":ServerInstance->Config->ServerName NOTICE user->nick :" */
524                 if (user)
525                 {
526                         prefixlen = strlen(this->ServerName) + strlen(user->nick) + 11;
527                         user->WriteServ("NOTICE %s :There were errors in the configuration file:",user->nick);
528                         while (start < errors.length())
529                         {
530                                 user->WriteServ("NOTICE %s :%s",user->nick, errors.substr(start, 510 - prefixlen).c_str());
531                                 start += 510 - prefixlen;
532                         }
533                 }
534                 else
535                 {
536                         ServerInstance->WriteOpers("There were errors in the configuration file:");
537                         while (start < errors.length())
538                         {
539                                 ServerInstance->WriteOpers(errors.substr(start, 360).c_str());
540                                 start += 360;
541                         }
542                 }
543                 return;
544         }
545 }
546
547 void ServerConfig::Read(bool bail, userrec* user)
548 {
549         static char debug[MAXBUF];      /* Temporary buffer for debugging value */
550         static char maxkeep[MAXBUF];    /* Temporary buffer for WhoWasMaxKeep value */
551         int rem = 0, add = 0;           /* Number of modules added, number of modules removed */
552         std::ostringstream errstr;      /* String stream containing the error output */
553
554         /* These tags MUST occur and must ONLY occur once in the config file */
555         static char* Once[] = { "server", "admin", "files", "power", "options", NULL };
556
557         /* These tags can occur ONCE or not at all */
558         InitialConfig Values[] = {
559                 {"options",     "softlimit",    MAXCLIENTS_S,           new ValueContainerUInt (&this->SoftLimit),              DT_INTEGER, ValidateSoftLimit},
560                 {"options",     "somaxconn",    SOMAXCONN_S,            new ValueContainerInt  (&this->MaxConn),                DT_INTEGER, ValidateMaxConn},
561                 {"server",      "name",         "",                     new ValueContainerChar (this->ServerName),              DT_CHARPTR, ValidateServerName},
562                 {"server",      "description",  "Configure Me",         new ValueContainerChar (this->ServerDesc),              DT_CHARPTR, NoValidation},
563                 {"server",      "network",      "Network",              new ValueContainerChar (this->Network),                 DT_CHARPTR, NoValidation},
564                 {"admin",       "name",         "",                     new ValueContainerChar (this->AdminName),               DT_CHARPTR, NoValidation},
565                 {"admin",       "email",        "Mis@configu.red",      new ValueContainerChar (this->AdminEmail),              DT_CHARPTR, NoValidation},
566                 {"admin",       "nick",         "Misconfigured",        new ValueContainerChar (this->AdminNick),               DT_CHARPTR, NoValidation},
567                 {"files",       "motd",         "",                     new ValueContainerChar (this->motd),                    DT_CHARPTR, ValidateMotd},
568                 {"files",       "rules",        "",                     new ValueContainerChar (this->rules),                   DT_CHARPTR, ValidateRules},
569                 {"power",       "diepass",      "",                     new ValueContainerChar (this->diepass),                 DT_CHARPTR, NoValidation},
570                 {"power",       "pause",        "",                     new ValueContainerInt  (&this->DieDelay),               DT_INTEGER, NoValidation},
571                 {"power",       "restartpass",  "",                     new ValueContainerChar (this->restartpass),             DT_CHARPTR, NoValidation},
572                 {"options",     "prefixquit",   "",                     new ValueContainerChar (this->PrefixQuit),              DT_CHARPTR, NoValidation},
573                 {"options",     "loglevel",     "default",              new ValueContainerChar (debug),                         DT_CHARPTR, ValidateLogLevel},
574                 {"options",     "netbuffersize","10240",                new ValueContainerInt  (&this->NetBufferSize),          DT_INTEGER, ValidateNetBufferSize},
575                 {"options",     "maxwho",       "128",                  new ValueContainerInt  (&this->MaxWhoResults),          DT_INTEGER, ValidateMaxWho},
576                 {"options",     "allowhalfop",  "0",                    new ValueContainerBool (&this->AllowHalfop),            DT_BOOLEAN, NoValidation},
577                 {"dns",         "server",       "",                     new ValueContainerChar (this->DNSServer),               DT_CHARPTR, ValidateDnsServer},
578                 {"dns",         "timeout",      "5",                    new ValueContainerInt  (&this->dns_timeout),            DT_INTEGER, NoValidation},
579                 {"options",     "moduledir",    MOD_PATH,               new ValueContainerChar (this->ModPath),                 DT_CHARPTR, NoValidation},
580                 {"disabled",    "commands",     "",                     new ValueContainerChar (this->DisabledCommands),        DT_CHARPTR, NoValidation},
581                 {"options",     "userstats",    "",                     new ValueContainerChar (this->UserStats),               DT_CHARPTR, NoValidation},
582                 {"options",     "customversion","",                     new ValueContainerChar (this->CustomVersion),           DT_CHARPTR, NoValidation},
583                 {"options",     "hidesplits",   "0",                    new ValueContainerBool (&this->HideSplits),             DT_BOOLEAN, NoValidation},
584                 {"options",     "hidebans",     "0",                    new ValueContainerBool (&this->HideBans),               DT_BOOLEAN, NoValidation},
585                 {"options",     "hidewhois",    "",                     new ValueContainerChar (this->HideWhoisServer),         DT_CHARPTR, NoValidation},
586                 {"options",     "operspywhois", "0",                    new ValueContainerBool (&this->OperSpyWhois),           DT_BOOLEAN, NoValidation},
587                 {"options",     "nouserdns",    "0",                    new ValueContainerBool (&this->NoUserDns),              DT_BOOLEAN, NoValidation},
588                 {"options",     "syntaxhints",  "0",                    new ValueContainerBool (&this->SyntaxHints),            DT_BOOLEAN, NoValidation},
589                 {"options",     "cyclehosts",   "0",                    new ValueContainerBool (&this->CycleHosts),             DT_BOOLEAN, NoValidation},
590                 {"options",     "ircumsgprefix","0",                    new ValueContainerBool (&this->UndernetMsgPrefix),      DT_BOOLEAN, NoValidation},
591                 {"pid",         "file",         "",                     new ValueContainerChar (this->PID),                     DT_CHARPTR, NoValidation},
592                 {"whowas",      "groupsize",    "10",                   new ValueContainerInt  (&this->WhoWasGroupSize),        DT_INTEGER, NoValidation},
593                 {"whowas",      "maxgroups",    "10240",                new ValueContainerInt  (&this->WhoWasMaxGroups),        DT_INTEGER, NoValidation},
594                 {"whowas",      "maxkeep",      "3600",                 new ValueContainerChar (maxkeep),                       DT_CHARPTR, ValidateWhoWas},
595                 {"die",         "value",        "",                     new ValueContainerChar (this->DieValue),                DT_CHARPTR, NoValidation},
596                 {NULL}
597         };
598
599         /* These tags can occur multiple times, and therefore they have special code to read them
600          * which is different to the code for reading the singular tags listed above.
601          */
602         MultiConfig MultiValues[] = {
603
604                 {"connect",
605                                 {"allow",       "deny",         "password",     "timeout",      "pingfreq",     "flood",
606                                 "threshold",    "sendq",        "recvq",        "localmax",     "globalmax",    NULL},
607                                 {"",            "",             "",             "",             "120",          "",
608                                  "",            "",             "",             "3",            "3",            NULL},
609                                 {DT_CHARPTR,    DT_CHARPTR,     DT_CHARPTR,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,
610                                  DT_INTEGER,    DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER},
611                                 InitConnect, DoConnect, DoneConnect},
612
613                 {"uline",
614                                 {"server",      NULL},
615                                 {"",            NULL},
616                                 {DT_CHARPTR},
617                                 InitULine,DoULine,DoneULine},
618
619                 {"banlist",
620                                 {"chan",        "limit",        NULL},
621                                 {"",            "",             NULL},
622                                 {DT_CHARPTR,    DT_INTEGER},
623                                 InitMaxBans, DoMaxBans, DoneMaxBans},
624
625                 {"module",
626                                 {"name",        NULL},
627                                 {"",            NULL},
628                                 {DT_CHARPTR},
629                                 InitModule, DoModule, DoneModule},
630
631                 {"badip",
632                                 {"reason",      "ipmask",       NULL},
633                                 {"No reason",   "",             NULL},
634                                 {DT_CHARPTR,    DT_CHARPTR},
635                                 InitXLine, DoZLine, DoneZLine},
636
637                 {"badnick",
638                                 {"reason",      "nick",         NULL},
639                                 {"No reason",   "",             NULL},
640                                 {DT_CHARPTR,    DT_CHARPTR},
641                                 InitXLine, DoQLine, DoneQLine},
642
643                 {"badhost",
644                                 {"reason",      "host",         NULL},
645                                 {"No reason",   "",             NULL},
646                                 {DT_CHARPTR,    DT_CHARPTR},
647                                 InitXLine, DoKLine, DoneKLine},
648
649                 {"exception",
650                                 {"reason",      "host",         NULL},
651                                 {"No reason",   "",             NULL},
652                                 {DT_CHARPTR,    DT_CHARPTR},
653                                 InitXLine, DoELine, DoneELine},
654
655                 {"type",
656                                 {"name",        "classes",      NULL},
657                                 {"",            "",             NULL},
658                                 {DT_CHARPTR,    DT_CHARPTR},
659                                 InitTypes, DoType, DoneClassesAndTypes},
660
661                 {"class",
662                                 {"name",        "commands",     NULL},
663                                 {"",            "",             NULL},
664                                 {DT_CHARPTR,    DT_CHARPTR},
665                                 InitClasses, DoClass, DoneClassesAndTypes},
666
667                 {NULL}
668         };
669
670         include_stack.clear();
671
672         /* Load and parse the config file, if there are any errors then explode */
673
674         /* Make a copy here so if it fails then we can carry on running with an unaffected config */
675         ConfigDataHash newconfig;
676
677         if (this->LoadConf(newconfig, CONFIG_FILE, errstr))
678         {
679                 /* If we succeeded, set the ircd config to the new one */
680                 this->config_data = newconfig;
681         }
682         else
683         {
684                 ReportConfigError(errstr.str(), bail, user);
685                 return;
686         }
687
688         /* The stuff in here may throw CoreException, be sure we're in a position to catch it. */
689         try
690         {
691                 /* Check we dont have more than one of singular tags, or any of them missing
692                  */
693                 for (int Index = 0; Once[Index]; Index++)
694                         if (!CheckOnce(Once[Index], bail, user))
695                                 return;
696
697                 /* Read the values of all the tags which occur once or not at all, and call their callbacks.
698                  */
699                 for (int Index = 0; Values[Index].tag; Index++)
700                 {
701                         char item[MAXBUF];
702                         int dt = Values[Index].datatype;
703                         bool allow_newlines =  ((dt & DT_ALLOW_NEWLINE) > 0);
704                         dt &= ~DT_ALLOW_NEWLINE;
705
706                         ConfValue(this->config_data, Values[Index].tag, Values[Index].value, Values[Index].default_value, 0, item, MAXBUF, allow_newlines);
707                         ValueItem vi(item);
708
709                         if (!Values[Index].validation_function(this, Values[Index].tag, Values[Index].value, vi))
710                                 throw CoreException("One or more values in your configuration file failed to validate. Please see your ircd.log for more information.");
711
712                         switch (Values[Index].datatype)
713                         {
714                                 case DT_CHARPTR:
715                                 {
716                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
717                                         vcc->Set(vi.GetString(), strlen(vi.GetString()));
718                                 }
719                                 break;
720                                 case DT_INTEGER:
721                                 {
722                                         int val = vi.GetInteger();
723                                         ValueContainerInt* vci = (ValueContainerInt*)Values[Index].val;
724                                         vci->Set(&val, sizeof(int));
725                                 }
726                                 break;
727                                 case DT_BOOLEAN:
728                                 {
729                                         bool val = vi.GetBool();
730                                         ValueContainerBool* vcb = (ValueContainerBool*)Values[Index].val;
731                                         vcb->Set(&val, sizeof(bool));
732                                 }
733                                 break;
734                                 default:
735                                         /* You don't want to know what happens if someones bad code sends us here. */
736                                 break;
737                         }
738
739                         /* We're done with this now */
740                         delete Values[Index].val;
741                 }
742
743                 /* Read the multiple-tag items (class tags, connect tags, etc)
744                  * and call the callbacks associated with them. We have three
745                  * callbacks for these, a 'start', 'item' and 'end' callback.
746                  */
747                 for (int Index = 0; MultiValues[Index].tag; Index++)
748                 {
749                         MultiValues[Index].init_function(this, MultiValues[Index].tag);
750
751                         int number_of_tags = ConfValueEnum(this->config_data, MultiValues[Index].tag);
752
753                         for (int tagnum = 0; tagnum < number_of_tags; tagnum++)
754                         {
755                                 ValueList vl;
756                                 for (int valuenum = 0; MultiValues[Index].items[valuenum]; valuenum++)
757                                 {
758                                         int dt = MultiValues[Index].datatype[valuenum];
759                                         bool allow_newlines =  ((dt & DT_ALLOW_NEWLINE) > 0);
760                                         dt &= ~DT_ALLOW_NEWLINE;
761
762                                         switch (dt)
763                                         {
764                                                 case DT_CHARPTR:
765                                                 {
766                                                         char item[MAXBUF];
767                                                         if (ConfValue(this->config_data, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
768                                                                 vl.push_back(ValueItem(item));
769                                                         else
770                                                                 vl.push_back(ValueItem(""));
771                                                 }
772                                                 break;
773                                                 case DT_INTEGER:
774                                                 {
775                                                         int item = 0;
776                                                         if (ConfValueInteger(this->config_data, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item))
777                                                                 vl.push_back(ValueItem(item));
778                                                         else
779                                                                 vl.push_back(ValueItem(0));
780                                                 }
781                                                 break;
782                                                 case DT_BOOLEAN:
783                                                 {
784                                                         bool item = ConfValueBool(this->config_data, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum);
785                                                         vl.push_back(ValueItem(item));
786                                                 }
787                                                 break;
788                                                 default:
789                                                         /* Someone was smoking craq if we got here, and we're all gonna die. */
790                                                 break;
791                                         }
792                                 }
793
794                                 MultiValues[Index].validation_function(this, MultiValues[Index].tag, (char**)MultiValues[Index].items, vl, MultiValues[Index].datatype);
795                         }
796
797                         MultiValues[Index].finish_function(this, MultiValues[Index].tag);
798                 }
799
800         }
801
802         catch (CoreException &ce)
803         {
804                 ReportConfigError(ce.GetReason(), bail, user);
805                 return;
806         }
807
808         // write once here, to try it out and make sure its ok
809         ServerInstance->WritePID(this->PID);
810
811         ServerInstance->Log(DEFAULT,"Done reading configuration file.");
812
813         /* If we're rehashing, let's load any new modules, and unload old ones
814          */
815         if (!bail)
816         {
817                 int found_ports = 0;
818                 FailedPortList pl;
819                 ServerInstance->stats->BoundPortCount = ServerInstance->BindPorts(false, found_ports, pl);
820
821                 if (pl.size())
822                 {
823                         user->WriteServ("NOTICE %s :*** Not all your client ports could be bound.", user->nick);
824                         user->WriteServ("NOTICE %s :*** The following port%s failed to bind:", user->nick, found_ports - ServerInstance->stats->BoundPortCount != 1 ? "s" : "");
825                         int j = 1;
826                         for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
827                         {
828                                 user->WriteServ("NOTICE %s :*** %d.   IP: %s     Port: %lu", user->nick, j, i->first.empty() ? "<all>" : i->first.c_str(), (unsigned long)i->second);
829                         }
830                 }
831
832                 if (!removed_modules.empty())
833                 {
834                         for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
835                         {
836                                 if (ServerInstance->UnloadModule(removing->c_str()))
837                                 {
838                                         ServerInstance->WriteOpers("*** REHASH UNLOADED MODULE: %s",removing->c_str());
839
840                                         if (user)
841                                                 user->WriteServ("973 %s %s :Module %s successfully unloaded.",user->nick, removing->c_str(), removing->c_str());
842
843                                         rem++;
844                                 }
845                                 else
846                                 {
847                                         if (user)
848                                                 user->WriteServ("972 %s %s :Failed to unload module %s: %s",user->nick, removing->c_str(), removing->c_str(), ServerInstance->ModuleError());
849                                 }
850                         }
851                 }
852
853                 if (!added_modules.empty())
854                 {
855                         for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
856                         {
857                                 if (ServerInstance->LoadModule(adding->c_str()))
858                                 {
859                                         ServerInstance->WriteOpers("*** REHASH LOADED MODULE: %s",adding->c_str());
860
861                                         if (user)
862                                                 user->WriteServ("975 %s %s :Module %s successfully loaded.",user->nick, adding->c_str(), adding->c_str());
863
864                                         add++;
865                                 }
866                                 else
867                                 {
868                                         if (user)
869                                                 user->WriteServ("974 %s %s :Failed to load module %s: %s",user->nick, adding->c_str(), adding->c_str(), ServerInstance->ModuleError());
870                                 }
871                         }
872                 }
873
874                 ServerInstance->Log(DEFAULT,"Successfully unloaded %lu of %lu modules and loaded %lu of %lu modules.",(unsigned long)rem,(unsigned long)removed_modules.size(),(unsigned long)add,(unsigned long)added_modules.size());
875         }
876
877         if (user)
878                 user->WriteServ("NOTICE %s :*** Successfully rehashed server.", user->nick);
879         else
880                 ServerInstance->WriteOpers("*** Successfully rehashed server.");
881 }
882
883 bool ServerConfig::LoadConf(ConfigDataHash &target, const char* filename, std::ostringstream &errorstream)
884 {
885         std::ifstream conf(filename);
886         std::string line;
887         char ch;
888         long linenumber;
889         bool in_tag;
890         bool in_quote;
891         bool in_comment;
892
893         linenumber = 1;
894         in_tag = false;
895         in_quote = false;
896         in_comment = false;
897
898         /* Check if the file open failed first */
899         if (!conf)
900         {
901                 errorstream << "LoadConf: Couldn't open config file: " << filename << std::endl;
902                 return false;
903         }
904
905         /* Fix the chmod of the file to restrict it to the current user and group */
906         chmod(filename,0600);
907
908         for (unsigned int t = 0; t < include_stack.size(); t++)
909         {
910                 if (std::string(filename) == include_stack[t])
911                 {
912                         errorstream << "File " << filename << " is included recursively (looped inclusion)." << std::endl;
913                         return false;
914                 }
915         }
916
917         /* It's not already included, add it to the list of files we've loaded */
918         include_stack.push_back(filename);
919
920         /* Start reading characters... */
921         while(conf.get(ch))
922         {
923                 /*
924                  * Here we try and get individual tags on separate lines,
925                  * this would be so easy if we just made people format
926                  * their config files like that, but they don't so...
927                  * We check for a '<' and then know the line is over when
928                  * we get a '>' not inside quotes. If we find two '<' and
929                  * no '>' then die with an error.
930                  */
931
932                 if((ch == '#') && !in_quote)
933                         in_comment = true;
934
935                 /*if(((ch == '\n') || (ch == '\r')) && in_quote)
936                 {
937                         errorstream << "Got a newline within a quoted section, this is probably a typo: " << filename << ":" << linenumber << std::endl;
938                         return false;
939                 }*/
940
941                 switch(ch)
942                 {
943                         case '\n':
944                                 if (in_quote)
945                                         line += '\n';
946                                 linenumber++;
947                         case '\r':
948                                 if (!in_quote)
949                                         in_comment = false;
950                         case '\0':
951                                 continue;
952                         case '\t':
953                                 ch = ' ';
954                 }
955
956                 if(in_comment)
957                         continue;
958
959                 /* XXX: Added by Brain, May 1st 2006 - Escaping of characters.
960                  * Note that this WILL NOT usually allow insertion of newlines,
961                  * because a newline is two characters long. Use it primarily to
962                  * insert the " symbol.
963                  *
964                  * Note that this also involves a further check when parsing the line,
965                  * which can be found below.
966                  */
967                 if ((ch == '\\') && (in_quote) && (in_tag))
968                 {
969                         line += ch;
970                         char real_character;
971                         if (conf.get(real_character))
972                         {
973                                 if (real_character == 'n')
974                                         real_character = '\n';
975                                 line += real_character;
976                                 continue;
977                         }
978                         else
979                         {
980                                 errorstream << "End of file after a \\, what did you want to escape?: " << filename << ":" << linenumber << std::endl;
981                                 return false;
982                         }
983                 }
984
985                 if (ch != '\r')
986                         line += ch;
987
988                 if(ch == '<')
989                 {
990                         if(in_tag)
991                         {
992                                 if(!in_quote)
993                                 {
994                                         errorstream << "Got another opening < when the first one wasn't closed: " << filename << ":" << linenumber << std::endl;
995                                         return false;
996                                 }
997                         }
998                         else
999                         {
1000                                 if(in_quote)
1001                                 {
1002                                         errorstream << "We're in a quote but outside a tag, interesting. " << filename << ":" << linenumber << std::endl;
1003                                         return false;
1004                                 }
1005                                 else
1006                                 {
1007                                         // errorstream << "Opening new config tag on line " << linenumber << std::endl;
1008                                         in_tag = true;
1009                                 }
1010                         }
1011                 }
1012                 else if(ch == '"')
1013                 {
1014                         if(in_tag)
1015                         {
1016                                 if(in_quote)
1017                                 {
1018                                         // errorstream << "Closing quote in config tag on line " << linenumber << std::endl;
1019                                         in_quote = false;
1020                                 }
1021                                 else
1022                                 {
1023                                         // errorstream << "Opening quote in config tag on line " << linenumber << std::endl;
1024                                         in_quote = true;
1025                                 }
1026                         }
1027                         else
1028                         {
1029                                 if(in_quote)
1030                                 {
1031                                         errorstream << "Found a (closing) \" outside a tag: " << filename << ":" << linenumber << std::endl;
1032                                 }
1033                                 else
1034                                 {
1035                                         errorstream << "Found a (opening) \" outside a tag: " << filename << ":" << linenumber << std::endl;
1036                                 }
1037                         }
1038                 }
1039                 else if(ch == '>')
1040                 {
1041                         if(!in_quote)
1042                         {
1043                                 if(in_tag)
1044                                 {
1045                                         // errorstream << "Closing config tag on line " << linenumber << std::endl;
1046                                         in_tag = false;
1047
1048                                         /*
1049                                          * If this finds an <include> then ParseLine can simply call
1050                                          * LoadConf() and load the included config into the same ConfigDataHash
1051                                          */
1052
1053                                         if(!this->ParseLine(target, line, linenumber, errorstream))
1054                                                 return false;
1055
1056                                         line.clear();
1057                                 }
1058                                 else
1059                                 {
1060                                         errorstream << "Got a closing > when we weren't inside a tag: " << filename << ":" << linenumber << std::endl;
1061                                         return false;
1062                                 }
1063                         }
1064                 }
1065         }
1066
1067         return true;
1068 }
1069
1070 bool ServerConfig::LoadConf(ConfigDataHash &target, const std::string &filename, std::ostringstream &errorstream)
1071 {
1072         return this->LoadConf(target, filename.c_str(), errorstream);
1073 }
1074
1075 bool ServerConfig::ParseLine(ConfigDataHash &target, std::string &line, long linenumber, std::ostringstream &errorstream)
1076 {
1077         std::string tagname;
1078         std::string current_key;
1079         std::string current_value;
1080         KeyValList results;
1081         bool got_name;
1082         bool got_key;
1083         bool in_quote;
1084
1085         got_name = got_key = in_quote = false;
1086
1087         //std::cout << "ParseLine(data, '" << line << "', " << linenumber << ", stream)" << std::endl;
1088
1089         for(std::string::iterator c = line.begin(); c != line.end(); c++)
1090         {
1091                 if(!got_name)
1092                 {
1093                         /* We don't know the tag name yet. */
1094
1095                         if(*c != ' ')
1096                         {
1097                                 if(*c != '<')
1098                                 {
1099                                         tagname += *c;
1100                                 }
1101                         }
1102                         else
1103                         {
1104                                 /* We got to a space, we should have the tagname now. */
1105                                 if(tagname.length())
1106                                 {
1107                                         got_name = true;
1108                                 }
1109                         }
1110                 }
1111                 else
1112                 {
1113                         /* We have the tag name */
1114                         if (!got_key)
1115                         {
1116                                 /* We're still reading the key name */
1117                                 if (*c != '=')
1118                                 {
1119                                         if (*c != ' ')
1120                                         {
1121                                                 current_key += *c;
1122                                         }
1123                                 }
1124                                 else
1125                                 {
1126                                         /* We got an '=', end of the key name. */
1127                                         got_key = true;
1128                                 }
1129                         }
1130                         else
1131                         {
1132                                 /* We have the key name, now we're looking for quotes and the value */
1133
1134                                 /* Correctly handle escaped characters here.
1135                                  * See the XXX'ed section above.
1136                                  */
1137                                 if ((*c == '\\') && (in_quote))
1138                                 {
1139                                         c++;
1140                                         if (*c == 'n')
1141                                                 current_value += '\n';
1142                                         else
1143                                                 current_value += *c;
1144                                         continue;
1145                                 }
1146                                 else if ((*c == '\n') && (in_quote))
1147                                 {
1148                                         /* Got a 'real' \n, treat it as part of the value */
1149                                         current_value += '\n';
1150                                         continue;
1151                                 }
1152                                 else if ((*c == '\r') && (in_quote))
1153                                         /* Got a \r, drop it */
1154                                         continue;
1155
1156                                 if (*c == '"')
1157                                 {
1158                                         if (!in_quote)
1159                                         {
1160                                                 /* We're not already in a quote. */
1161                                                 in_quote = true;
1162                                         }
1163                                         else
1164                                         {
1165                                                 /* Leaving quotes, we have the value */
1166                                                 results.push_back(KeyVal(current_key, current_value));
1167
1168                                                 // std::cout << "<" << tagname << ":" << current_key << "> " << current_value << std::endl;
1169
1170                                                 in_quote = false;
1171                                                 got_key = false;
1172
1173                                                 if((tagname == "include") && (current_key == "file"))
1174                                                 {
1175                                                         if(!this->DoInclude(target, current_value, errorstream))
1176                                                                 return false;
1177                                                 }
1178
1179                                                 current_key.clear();
1180                                                 current_value.clear();
1181                                         }
1182                                 }
1183                                 else
1184                                 {
1185                                         if(in_quote)
1186                                         {
1187                                                 current_value += *c;
1188                                         }
1189                                 }
1190                         }
1191                 }
1192         }
1193
1194         /* Finished parsing the tag, add it to the config hash */
1195         target.insert(std::pair<std::string, KeyValList > (tagname, results));
1196
1197         return true;
1198 }
1199
1200 bool ServerConfig::DoInclude(ConfigDataHash &target, const std::string &file, std::ostringstream &errorstream)
1201 {
1202         std::string confpath;
1203         std::string newfile;
1204         std::string::size_type pos;
1205
1206         confpath = CONFIG_FILE;
1207         newfile = file;
1208
1209         for (std::string::iterator c = newfile.begin(); c != newfile.end(); c++)
1210         {
1211                 if (*c == '\\')
1212                 {
1213                         *c = '/';
1214                 }
1215         }
1216
1217         if (file[0] != '/')
1218         {
1219                 if((pos = confpath.find("/inspircd.conf")) != std::string::npos)
1220                 {
1221                         /* Leaves us with just the path */
1222                         newfile = confpath.substr(0, pos) + std::string("/") + newfile;
1223                 }
1224                 else
1225                 {
1226                         errorstream << "Couldn't get config path from: " << confpath << std::endl;
1227                         return false;
1228                 }
1229         }
1230
1231         return LoadConf(target, newfile, errorstream);
1232 }
1233
1234 bool ServerConfig::ConfValue(ConfigDataHash &target, const char* tag, const char* var, int index, char* result, int length, bool allow_linefeeds)
1235 {
1236         return ConfValue(target, tag, var, "", index, result, length, allow_linefeeds);
1237 }
1238
1239 bool ServerConfig::ConfValue(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, char* result, int length, bool allow_linefeeds)
1240 {
1241         std::string value;
1242         bool r = ConfValue(target, std::string(tag), std::string(var), std::string(default_value), index, value, allow_linefeeds);
1243         strlcpy(result, value.c_str(), length);
1244         return r;
1245 }
1246
1247 bool ServerConfig::ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, std::string &result, bool allow_linefeeds)
1248 {
1249         return ConfValue(target, tag, var, "", index, result, allow_linefeeds);
1250 }
1251
1252 bool ServerConfig::ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index, std::string &result, bool allow_linefeeds)
1253 {
1254         ConfigDataHash::size_type pos = index;
1255         if((pos >= 0) && (pos < target.count(tag)))
1256         {
1257                 ConfigDataHash::iterator iter = target.find(tag);
1258
1259                 for(int i = 0; i < index; i++)
1260                         iter++;
1261
1262                 for(KeyValList::iterator j = iter->second.begin(); j != iter->second.end(); j++)
1263                 {
1264                         if(j->first == var)
1265                         {
1266                                 if ((!allow_linefeeds) && (j->second.find('\n') != std::string::npos))
1267                                 {
1268                                         ServerInstance->Log(DEFAULT, "Value of <" + tag + ":" + var+ "> contains a linefeed, and linefeeds in this value are not permitted -- stripped to spaces.");
1269                                         for (std::string::iterator n = j->second.begin(); n != j->second.end(); n++)
1270                                                 if (*n == '\n')
1271                                                         *n = ' ';
1272                                 }
1273                                 else
1274                                 {
1275                                         result = j->second;
1276                                         return true;
1277                                 }
1278                         }
1279                 }
1280                 if (!default_value.empty())
1281                 {
1282                         result = default_value;
1283                         return true;
1284                 }
1285         }
1286         else if(pos == 0)
1287         {
1288                 if (!default_value.empty())
1289                 {
1290                         result = default_value;
1291                         return true;
1292                 }
1293         }
1294         return false;
1295 }
1296
1297 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, int index, int &result)
1298 {
1299         return ConfValueInteger(target, std::string(tag), std::string(var), "", index, result);
1300 }
1301
1302 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, int &result)
1303 {
1304         return ConfValueInteger(target, std::string(tag), std::string(var), std::string(default_value), index, result);
1305 }
1306
1307 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, int &result)
1308 {
1309         return ConfValueInteger(target, tag, var, "", index, result);
1310 }
1311
1312 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index, int &result)
1313 {
1314         std::string value;
1315         std::istringstream stream;
1316         bool r = ConfValue(target, tag, var, default_value, index, value);
1317         stream.str(value);
1318         if(!(stream >> result))
1319                 return false;
1320         else
1321         {
1322                 if (!value.empty())
1323                 {
1324                         if (value.substr(0,2) == "0x")
1325                         {
1326                                 char* endptr;
1327
1328                                 value.erase(0,2);
1329                                 result = strtol(value.c_str(), &endptr, 16);
1330
1331                                 /* No digits found */
1332                                 if (endptr == value.c_str())
1333                                         return false;
1334                         }
1335                         else
1336                         {
1337                                 char denominator = *(value.end() - 1);
1338                                 switch (toupper(denominator))
1339                                 {
1340                                         case 'K':
1341                                                 /* Kilobytes -> bytes */
1342                                                 result = result * 1024;
1343                                         break;
1344                                         case 'M':
1345                                                 /* Megabytes -> bytes */
1346                                                 result = result * 1024 * 1024;
1347                                         break;
1348                                         case 'G':
1349                                                 /* Gigabytes -> bytes */
1350                                                 result = result * 1024 * 1024 * 1024;
1351                                         break;
1352                                 }
1353                         }
1354                 }
1355         }
1356         return r;
1357 }
1358
1359
1360 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, int index)
1361 {
1362         return ConfValueBool(target, std::string(tag), std::string(var), "", index);
1363 }
1364
1365 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index)
1366 {
1367         return ConfValueBool(target, std::string(tag), std::string(var), std::string(default_value), index);
1368 }
1369
1370 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, int index)
1371 {
1372         return ConfValueBool(target, tag, var, "", index);
1373 }
1374
1375 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index)
1376 {
1377         std::string result;
1378         if(!ConfValue(target, tag, var, default_value, index, result))
1379                 return false;
1380
1381         return ((result == "yes") || (result == "true") || (result == "1"));
1382 }
1383
1384 int ServerConfig::ConfValueEnum(ConfigDataHash &target, const char* tag)
1385 {
1386         return target.count(tag);
1387 }
1388
1389 int ServerConfig::ConfValueEnum(ConfigDataHash &target, const std::string &tag)
1390 {
1391         return target.count(tag);
1392 }
1393
1394 int ServerConfig::ConfVarEnum(ConfigDataHash &target, const char* tag, int index)
1395 {
1396         return ConfVarEnum(target, std::string(tag), index);
1397 }
1398
1399 int ServerConfig::ConfVarEnum(ConfigDataHash &target, const std::string &tag, int index)
1400 {
1401         ConfigDataHash::size_type pos = index;
1402
1403         if((pos >= 0) && (pos < target.count(tag)))
1404         {
1405                 ConfigDataHash::const_iterator iter = target.find(tag);
1406
1407                 for(int i = 0; i < index; i++)
1408                         iter++;
1409
1410                 return iter->second.size();
1411         }
1412
1413         return 0;
1414 }
1415
1416 /** Read the contents of a file located by `fname' into a file_cache pointed at by `F'.
1417  */
1418 bool ServerConfig::ReadFile(file_cache &F, const char* fname)
1419 {
1420         if (!fname || !*fname)
1421                 return false;
1422
1423         FILE* file = NULL;
1424         char linebuf[MAXBUF];
1425
1426         F.clear();
1427
1428         if (*fname != '/')
1429         {
1430                 std::string::size_type pos;
1431                 std::string confpath = CONFIG_FILE;
1432                 if((pos = confpath.find("/inspircd.conf")) != std::string::npos)
1433                 {
1434                         /* Leaves us with just the path */
1435                         std::string newfile = confpath.substr(0, pos) + std::string("/") + fname;
1436                         if (!FileExists(newfile.c_str()))
1437                                 return false;
1438                         file =  fopen(newfile.c_str(), "r");
1439
1440                 }
1441         }
1442         else
1443         {
1444                 if (!FileExists(fname))
1445                         return false;
1446                 file =  fopen(fname, "r");
1447         }
1448
1449         if (file)
1450         {
1451                 while (!feof(file))
1452                 {
1453                         if (fgets(linebuf, sizeof(linebuf), file))
1454                                 linebuf[strlen(linebuf)-1] = 0;
1455                         else
1456                                 *linebuf = 0;
1457
1458                         if (!feof(file))
1459                         {
1460                                 F.push_back(*linebuf ? linebuf : " ");
1461                         }
1462                 }
1463
1464                 fclose(file);
1465         }
1466         else
1467                 return false;
1468
1469         return true;
1470 }
1471
1472 bool ServerConfig::FileExists(const char* file)
1473 {
1474         struct stat sb;
1475         if (stat(file, &sb) == -1)
1476                 return false;
1477
1478         if ((sb.st_mode & S_IFDIR) > 0)
1479                 return false;
1480              
1481         FILE *input;
1482         if ((input = fopen (file, "r")) == NULL)
1483                 return false;
1484         else
1485         {
1486                 fclose(input);
1487                 return true;
1488         }
1489 }
1490
1491 char* ServerConfig::CleanFilename(char* name)
1492 {
1493         char* p = name + strlen(name);
1494         while ((p != name) && (*p != '/')) p--;
1495         return (p != name ? ++p : p);
1496 }
1497
1498
1499 bool ServerConfig::DirValid(const char* dirandfile)
1500 {
1501         char work[MAXBUF];
1502         char buffer[MAXBUF];
1503         char otherdir[MAXBUF];
1504         int p;
1505
1506         strlcpy(work, dirandfile, MAXBUF);
1507         p = strlen(work);
1508
1509         // we just want the dir
1510         while (*work)
1511         {
1512                 if (work[p] == '/')
1513                 {
1514                         work[p] = '\0';
1515                         break;
1516                 }
1517
1518                 work[p--] = '\0';
1519         }
1520
1521         // Get the current working directory
1522         if (getcwd(buffer, MAXBUF ) == NULL )
1523                 return false;
1524
1525         if (chdir(work) == -1)
1526                 return false;
1527
1528         if (getcwd(otherdir, MAXBUF ) == NULL )
1529                 return false;
1530
1531         if (chdir(buffer) == -1)
1532                 return false;
1533
1534         size_t t = strlen(work);
1535
1536         if (strlen(otherdir) >= t)
1537         {
1538                 otherdir[t] = '\0';
1539
1540                 if (!strcmp(otherdir,work))
1541                 {
1542                         return true;
1543                 }
1544
1545                 return false;
1546         }
1547         else
1548         {
1549                 return false;
1550         }
1551 }
1552
1553 std::string ServerConfig::GetFullProgDir(char** argv, int argc)
1554 {
1555         char work[MAXBUF];
1556         char buffer[MAXBUF];
1557         char otherdir[MAXBUF];
1558         int p;
1559
1560         strlcpy(work,argv[0],MAXBUF);
1561         p = strlen(work);
1562
1563         // we just want the dir
1564         while (*work)
1565         {
1566                 if (work[p] == '/')
1567                 {
1568                         work[p] = '\0';
1569                         break;
1570                 }
1571
1572                 work[p--] = '\0';
1573         }
1574
1575         // Get the current working directory
1576         if (getcwd(buffer, MAXBUF) == NULL)
1577                 return "";
1578
1579         if (chdir(work) == -1)
1580                 return "";
1581
1582         if (getcwd(otherdir, MAXBUF) == NULL)
1583                 return "";
1584
1585         if (chdir(buffer) == -1)
1586                 return "";
1587
1588         return otherdir;
1589 }
1590
1591 InspIRCd* ServerConfig::GetInstance()
1592 {
1593         return ServerInstance;
1594 }
1595
1596
1597 ValueItem::ValueItem(int value)
1598 {
1599         std::stringstream n;
1600         n << value;
1601         v = n.str();
1602 }
1603
1604 ValueItem::ValueItem(bool value)
1605 {
1606         std::stringstream n;
1607         n << value;
1608         v = n.str();
1609 }
1610
1611 ValueItem::ValueItem(char* value)
1612 {
1613         v = value;
1614 }
1615
1616 void ValueItem::Set(char* value)
1617 {
1618         v = value;
1619 }
1620
1621 void ValueItem::Set(const char* value)
1622 {
1623         v = value;
1624 }
1625
1626 void ValueItem::Set(int value)
1627 {
1628         std::stringstream n;
1629         n << value;
1630         v = n.str();
1631 }
1632
1633 int ValueItem::GetInteger()
1634 {
1635         if (v.empty())
1636                 return 0;
1637         return atoi(v.c_str());
1638 }
1639
1640 char* ValueItem::GetString()
1641 {
1642         return (char*)v.c_str();
1643 }
1644
1645 bool ValueItem::GetBool()
1646 {
1647         return (GetInteger() || v == "yes" || v == "true");
1648 }
1649