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