]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/configreader.cpp
56ea492893c117340d68d39b25695cd8f9c57423
[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 = *FixedQuit = '\0';
29         *CustomVersion = *motd = *rules = *PrefixQuit = *DieValue = *DNSServer = '\0';
30         *UserStats = *ModPath = *MyExecutable = *DisabledCommands = *PID = *SuffixQuit = '\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         const bool silent = values[1].GetBool();
416         conf->ulines[server] = silent;
417         return true;
418 }
419
420 /* Callback called when there are no more <uline> tags
421  */
422 bool DoneULine(ServerConfig* conf, const char* tag)
423 {
424         return true;
425 }
426
427 /* Callback called before processing the first <module> tag
428  */
429 bool InitModule(ServerConfig* conf, const char* tag)
430 {
431         old_module_names.clear();
432         new_module_names.clear();
433         added_modules.clear();
434         removed_modules.clear();
435         for (std::vector<std::string>::iterator t = conf->module_names.begin(); t != conf->module_names.end(); t++)
436         {
437                 old_module_names.push_back(*t);
438         }
439         return true;
440 }
441
442 /* Callback called to process a single <module> tag
443  */
444 bool DoModule(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
445 {
446         const char* modname = values[0].GetString();
447         new_module_names.push_back(modname);
448         return true;
449 }
450
451 /* Callback called when there are no more <module> tags
452  */
453 bool DoneModule(ServerConfig* conf, const char* tag)
454 {
455         // now create a list of new modules that are due to be loaded
456         // and a seperate list of modules which are due to be unloaded
457         for (std::vector<std::string>::iterator _new = new_module_names.begin(); _new != new_module_names.end(); _new++)
458         {
459                 bool added = true;
460
461                 for (std::vector<std::string>::iterator old = old_module_names.begin(); old != old_module_names.end(); old++)
462                 {
463                         if (*old == *_new)
464                                 added = false;
465                 }
466
467                 if (added)
468                         added_modules.push_back(*_new);
469         }
470
471         for (std::vector<std::string>::iterator oldm = old_module_names.begin(); oldm != old_module_names.end(); oldm++)
472         {
473                 bool removed = true;
474                 for (std::vector<std::string>::iterator newm = new_module_names.begin(); newm != new_module_names.end(); newm++)
475                 {
476                         if (*newm == *oldm)
477                                 removed = false;
478                 }
479
480                 if (removed)
481                         removed_modules.push_back(*oldm);
482         }
483         return true;
484 }
485
486 /* Callback called before processing the first <banlist> tag
487  */
488 bool InitMaxBans(ServerConfig* conf, const char* tag)
489 {
490         conf->maxbans.clear();
491         return true;
492 }
493
494 /* Callback called to process a single <banlist> tag
495  */
496 bool DoMaxBans(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
497 {
498         const char* channel = values[0].GetString();
499         int limit = values[1].GetInteger();
500         conf->maxbans[channel] = limit;
501         return true;
502 }
503
504 /* Callback called when there are no more <banlist> tags.
505  */
506 bool DoneMaxBans(ServerConfig* conf, const char* tag)
507 {
508         return true;
509 }
510
511 void ServerConfig::ReportConfigError(const std::string &errormessage, bool bail, userrec* user)
512 {
513         ServerInstance->Log(DEFAULT, "There were errors in your configuration file: %s", errormessage.c_str());
514         if (bail)
515         {
516                 /* Unneeded because of the ServerInstance->Log() aboive? */
517                 printf("There were errors in your configuration:\n%s\n\n",errormessage.c_str());
518                 InspIRCd::Exit(EXIT_STATUS_CONFIG);
519         }
520         else
521         {
522                 std::string errors = errormessage;
523                 std::string::size_type start;
524                 unsigned int prefixlen;
525                 start = 0;
526                 /* ":ServerInstance->Config->ServerName NOTICE user->nick :" */
527                 if (user)
528                 {
529                         prefixlen = strlen(this->ServerName) + strlen(user->nick) + 11;
530                         user->WriteServ("NOTICE %s :There were errors in the configuration file:",user->nick);
531                         while (start < errors.length())
532                         {
533                                 user->WriteServ("NOTICE %s :%s",user->nick, errors.substr(start, 510 - prefixlen).c_str());
534                                 start += 510 - prefixlen;
535                         }
536                 }
537                 else
538                 {
539                         ServerInstance->WriteOpers("There were errors in the configuration file:");
540                         while (start < errors.length())
541                         {
542                                 ServerInstance->WriteOpers(errors.substr(start, 360).c_str());
543                                 start += 360;
544                         }
545                 }
546                 return;
547         }
548 }
549
550 void ServerConfig::Read(bool bail, userrec* user)
551 {
552         static char debug[MAXBUF];      /* Temporary buffer for debugging value */
553         static char maxkeep[MAXBUF];    /* Temporary buffer for WhoWasMaxKeep value */
554         int rem = 0, add = 0;           /* Number of modules added, number of modules removed */
555         std::ostringstream errstr;      /* String stream containing the error output */
556
557         /* These tags MUST occur and must ONLY occur once in the config file */
558         static char* Once[] = { "server", "admin", "files", "power", "options", NULL };
559
560         /* These tags can occur ONCE or not at all */
561         InitialConfig Values[] = {
562                 {"options",     "softlimit",    MAXCLIENTS_S,           new ValueContainerUInt (&this->SoftLimit),              DT_INTEGER, ValidateSoftLimit},
563                 {"options",     "somaxconn",    SOMAXCONN_S,            new ValueContainerInt  (&this->MaxConn),                DT_INTEGER, ValidateMaxConn},
564                 {"server",      "name",         "",                     new ValueContainerChar (this->ServerName),              DT_CHARPTR, ValidateServerName},
565                 {"server",      "description",  "Configure Me",         new ValueContainerChar (this->ServerDesc),              DT_CHARPTR, NoValidation},
566                 {"server",      "network",      "Network",              new ValueContainerChar (this->Network),                 DT_CHARPTR, NoValidation},
567                 {"admin",       "name",         "",                     new ValueContainerChar (this->AdminName),               DT_CHARPTR, NoValidation},
568                 {"admin",       "email",        "Mis@configu.red",      new ValueContainerChar (this->AdminEmail),              DT_CHARPTR, NoValidation},
569                 {"admin",       "nick",         "Misconfigured",        new ValueContainerChar (this->AdminNick),               DT_CHARPTR, NoValidation},
570                 {"files",       "motd",         "",                     new ValueContainerChar (this->motd),                    DT_CHARPTR, ValidateMotd},
571                 {"files",       "rules",        "",                     new ValueContainerChar (this->rules),                   DT_CHARPTR, ValidateRules},
572                 {"power",       "diepass",      "",                     new ValueContainerChar (this->diepass),                 DT_CHARPTR, NoValidation},
573                 {"power",       "pause",        "",                     new ValueContainerInt  (&this->DieDelay),               DT_INTEGER, NoValidation},
574                 {"power",       "restartpass",  "",                     new ValueContainerChar (this->restartpass),             DT_CHARPTR, NoValidation},
575                 {"options",     "prefixquit",   "",                     new ValueContainerChar (this->PrefixQuit),              DT_CHARPTR, NoValidation},
576                 {"options",     "suffixquit",   "",                     new ValueContainerChar (this->SuffixQuit),              DT_CHARPTR, NoValidation},
577                 {"options",     "fixedquit",    "",                     new ValueContainerChar (this->FixedQuit),               DT_CHARPTR, NoValidation},
578                 {"options",     "loglevel",     "default",              new ValueContainerChar (debug),                         DT_CHARPTR, ValidateLogLevel},
579                 {"options",     "netbuffersize","10240",                new ValueContainerInt  (&this->NetBufferSize),          DT_INTEGER, ValidateNetBufferSize},
580                 {"options",     "maxwho",       "128",                  new ValueContainerInt  (&this->MaxWhoResults),          DT_INTEGER, ValidateMaxWho},
581                 {"options",     "allowhalfop",  "0",                    new ValueContainerBool (&this->AllowHalfop),            DT_BOOLEAN, NoValidation},
582                 {"dns",         "server",       "",                     new ValueContainerChar (this->DNSServer),               DT_CHARPTR, ValidateDnsServer},
583                 {"dns",         "timeout",      "5",                    new ValueContainerInt  (&this->dns_timeout),            DT_INTEGER, NoValidation},
584                 {"options",     "moduledir",    MOD_PATH,               new ValueContainerChar (this->ModPath),                 DT_CHARPTR, NoValidation},
585                 {"disabled",    "commands",     "",                     new ValueContainerChar (this->DisabledCommands),        DT_CHARPTR, NoValidation},
586                 {"options",     "userstats",    "",                     new ValueContainerChar (this->UserStats),               DT_CHARPTR, NoValidation},
587                 {"options",     "customversion","",                     new ValueContainerChar (this->CustomVersion),           DT_CHARPTR, NoValidation},
588                 {"options",     "hidesplits",   "0",                    new ValueContainerBool (&this->HideSplits),             DT_BOOLEAN, NoValidation},
589                 {"options",     "hidebans",     "0",                    new ValueContainerBool (&this->HideBans),               DT_BOOLEAN, NoValidation},
590                 {"options",     "hidewhois",    "",                     new ValueContainerChar (this->HideWhoisServer),         DT_CHARPTR, NoValidation},
591                 {"options",     "operspywhois", "0",                    new ValueContainerBool (&this->OperSpyWhois),           DT_BOOLEAN, NoValidation},
592                 {"options",     "nouserdns",    "0",                    new ValueContainerBool (&this->NoUserDns),              DT_BOOLEAN, NoValidation},
593                 {"options",     "syntaxhints",  "0",                    new ValueContainerBool (&this->SyntaxHints),            DT_BOOLEAN, NoValidation},
594                 {"options",     "cyclehosts",   "0",                    new ValueContainerBool (&this->CycleHosts),             DT_BOOLEAN, NoValidation},
595                 {"options",     "ircumsgprefix","0",                    new ValueContainerBool (&this->UndernetMsgPrefix),      DT_BOOLEAN, NoValidation},
596                 {"options",     "announceinvites", "1",                 new ValueContainerBool (&this->AnnounceInvites),        DT_BOOLEAN, NoValidation},
597                 {"options",     "hostintopic",  "1",                    new ValueContainerBool (&this->FullHostInTopic),        DT_BOOLEAN, NoValidation},
598                 {"pid",         "file",         "",                     new ValueContainerChar (this->PID),                     DT_CHARPTR, NoValidation},
599                 {"whowas",      "groupsize",    "10",                   new ValueContainerInt  (&this->WhoWasGroupSize),        DT_INTEGER, NoValidation},
600                 {"whowas",      "maxgroups",    "10240",                new ValueContainerInt  (&this->WhoWasMaxGroups),        DT_INTEGER, NoValidation},
601                 {"whowas",      "maxkeep",      "3600",                 new ValueContainerChar (maxkeep),                       DT_CHARPTR, ValidateWhoWas},
602                 {"die",         "value",        "",                     new ValueContainerChar (this->DieValue),                DT_CHARPTR, NoValidation},
603                 {"channels",    "users",        "20",                   new ValueContainerUInt (&this->MaxChans),               DT_INTEGER, NoValidation},
604                 {"channels",    "opers",        "60",                   new ValueContainerUInt (&this->OperMaxChans),           DT_INTEGER, NoValidation},
605                 {NULL}
606         };
607
608         /* These tags can occur multiple times, and therefore they have special code to read them
609          * which is different to the code for reading the singular tags listed above.
610          */
611         MultiConfig MultiValues[] = {
612
613                 {"connect",
614                                 {"allow",       "deny",         "password",     "timeout",      "pingfreq",     "flood",
615                                 "threshold",    "sendq",        "recvq",        "localmax",     "globalmax",    "port",
616                                 NULL},
617                                 {"",            "",             "",             "",             "120",          "",
618                                  "",            "",             "",             "3",            "3",            "0",
619                                  NULL},
620                                 {DT_CHARPTR,    DT_CHARPTR,     DT_CHARPTR,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,
621                                  DT_INTEGER,    DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER},
622                                 InitConnect, DoConnect, DoneConnect},
623
624                 {"uline",
625                                 {"server",      "silent",       NULL},
626                                 {"",            "0",            NULL},
627                                 {DT_CHARPTR,    DT_BOOLEAN},
628                                 InitULine,DoULine,DoneULine},
629
630                 {"banlist",
631                                 {"chan",        "limit",        NULL},
632                                 {"",            "",             NULL},
633                                 {DT_CHARPTR,    DT_INTEGER},
634                                 InitMaxBans, DoMaxBans, DoneMaxBans},
635
636                 {"module",
637                                 {"name",        NULL},
638                                 {"",            NULL},
639                                 {DT_CHARPTR},
640                                 InitModule, DoModule, DoneModule},
641
642                 {"badip",
643                                 {"reason",      "ipmask",       NULL},
644                                 {"No reason",   "",             NULL},
645                                 {DT_CHARPTR,    DT_CHARPTR},
646                                 InitXLine, DoZLine, DoneZLine},
647
648                 {"badnick",
649                                 {"reason",      "nick",         NULL},
650                                 {"No reason",   "",             NULL},
651                                 {DT_CHARPTR,    DT_CHARPTR},
652                                 InitXLine, DoQLine, DoneQLine},
653
654                 {"badhost",
655                                 {"reason",      "host",         NULL},
656                                 {"No reason",   "",             NULL},
657                                 {DT_CHARPTR,    DT_CHARPTR},
658                                 InitXLine, DoKLine, DoneKLine},
659
660                 {"exception",
661                                 {"reason",      "host",         NULL},
662                                 {"No reason",   "",             NULL},
663                                 {DT_CHARPTR,    DT_CHARPTR},
664                                 InitXLine, DoELine, DoneELine},
665
666                 {"type",
667                                 {"name",        "classes",      NULL},
668                                 {"",            "",             NULL},
669                                 {DT_CHARPTR,    DT_CHARPTR},
670                                 InitTypes, DoType, DoneClassesAndTypes},
671
672                 {"class",
673                                 {"name",        "commands",     NULL},
674                                 {"",            "",             NULL},
675                                 {DT_CHARPTR,    DT_CHARPTR},
676                                 InitClasses, DoClass, DoneClassesAndTypes},
677
678                 {NULL}
679         };
680
681         include_stack.clear();
682
683         /* Load and parse the config file, if there are any errors then explode */
684
685         /* Make a copy here so if it fails then we can carry on running with an unaffected config */
686         ConfigDataHash newconfig;
687
688         if (this->LoadConf(newconfig, ServerInstance->ConfigFileName, errstr))
689         {
690                 /* If we succeeded, set the ircd config to the new one */
691                 this->config_data = newconfig;
692         }
693         else
694         {
695                 ReportConfigError(errstr.str(), bail, user);
696                 return;
697         }
698
699         /* The stuff in here may throw CoreException, be sure we're in a position to catch it. */
700         try
701         {
702                 /* Check we dont have more than one of singular tags, or any of them missing
703                  */
704                 for (int Index = 0; Once[Index]; Index++)
705                         if (!CheckOnce(Once[Index], bail, user))
706                                 return;
707
708                 /* Read the values of all the tags which occur once or not at all, and call their callbacks.
709                  */
710                 for (int Index = 0; Values[Index].tag; Index++)
711                 {
712                         char item[MAXBUF];
713                         int dt = Values[Index].datatype;
714                         bool allow_newlines =  ((dt & DT_ALLOW_NEWLINE) > 0);
715                         dt &= ~DT_ALLOW_NEWLINE;
716
717                         ConfValue(this->config_data, Values[Index].tag, Values[Index].value, Values[Index].default_value, 0, item, MAXBUF, allow_newlines);
718                         ValueItem vi(item);
719
720                         if (!Values[Index].validation_function(this, Values[Index].tag, Values[Index].value, vi))
721                                 throw CoreException("One or more values in your configuration file failed to validate. Please see your ircd.log for more information.");
722
723                         switch (Values[Index].datatype)
724                         {
725                                 case DT_CHARPTR:
726                                 {
727                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
728                                         /* Make sure we also copy the null terminator */
729                                         vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
730                                 }
731                                 break;
732                                 case DT_INTEGER:
733                                 {
734                                         int val = vi.GetInteger();
735                                         ValueContainerInt* vci = (ValueContainerInt*)Values[Index].val;
736                                         vci->Set(&val, sizeof(int));
737                                 }
738                                 break;
739                                 case DT_BOOLEAN:
740                                 {
741                                         bool val = vi.GetBool();
742                                         ValueContainerBool* vcb = (ValueContainerBool*)Values[Index].val;
743                                         vcb->Set(&val, sizeof(bool));
744                                 }
745                                 break;
746                                 default:
747                                         /* You don't want to know what happens if someones bad code sends us here. */
748                                 break;
749                         }
750
751                         /* We're done with this now */
752                         delete Values[Index].val;
753                 }
754
755                 /* Read the multiple-tag items (class tags, connect tags, etc)
756                  * and call the callbacks associated with them. We have three
757                  * callbacks for these, a 'start', 'item' and 'end' callback.
758                  */
759                 for (int Index = 0; MultiValues[Index].tag; Index++)
760                 {
761                         MultiValues[Index].init_function(this, MultiValues[Index].tag);
762
763                         int number_of_tags = ConfValueEnum(this->config_data, MultiValues[Index].tag);
764
765                         for (int tagnum = 0; tagnum < number_of_tags; tagnum++)
766                         {
767                                 ValueList vl;
768                                 for (int valuenum = 0; MultiValues[Index].items[valuenum]; valuenum++)
769                                 {
770                                         int dt = MultiValues[Index].datatype[valuenum];
771                                         bool allow_newlines =  ((dt & DT_ALLOW_NEWLINE) > 0);
772                                         dt &= ~DT_ALLOW_NEWLINE;
773
774                                         switch (dt)
775                                         {
776                                                 case DT_CHARPTR:
777                                                 {
778                                                         char item[MAXBUF];
779                                                         if (ConfValue(this->config_data, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
780                                                                 vl.push_back(ValueItem(item));
781                                                         else
782                                                                 vl.push_back(ValueItem(""));
783                                                 }
784                                                 break;
785                                                 case DT_INTEGER:
786                                                 {
787                                                         int item = 0;
788                                                         if (ConfValueInteger(this->config_data, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item))
789                                                                 vl.push_back(ValueItem(item));
790                                                         else
791                                                                 vl.push_back(ValueItem(0));
792                                                 }
793                                                 break;
794                                                 case DT_BOOLEAN:
795                                                 {
796                                                         bool item = ConfValueBool(this->config_data, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum);
797                                                         vl.push_back(ValueItem(item));
798                                                 }
799                                                 break;
800                                                 default:
801                                                         /* Someone was smoking craq if we got here, and we're all gonna die. */
802                                                 break;
803                                         }
804                                 }
805
806                                 MultiValues[Index].validation_function(this, MultiValues[Index].tag, (char**)MultiValues[Index].items, vl, MultiValues[Index].datatype);
807                         }
808
809                         MultiValues[Index].finish_function(this, MultiValues[Index].tag);
810                 }
811
812         }
813
814         catch (CoreException &ce)
815         {
816                 ReportConfigError(ce.GetReason(), bail, user);
817                 return;
818         }
819
820         // write once here, to try it out and make sure its ok
821         ServerInstance->WritePID(this->PID);
822
823         ServerInstance->Log(DEFAULT,"Done reading configuration file.");
824
825         /* If we're rehashing, let's load any new modules, and unload old ones
826          */
827         if (!bail)
828         {
829                 int found_ports = 0;
830                 FailedPortList pl;
831                 ServerInstance->stats->BoundPortCount = ServerInstance->BindPorts(false, found_ports, pl);
832
833                 if (pl.size())
834                 {
835                         user->WriteServ("NOTICE %s :*** Not all your client ports could be bound.", user->nick);
836                         user->WriteServ("NOTICE %s :*** The following port%s failed to bind:", user->nick, found_ports - ServerInstance->stats->BoundPortCount != 1 ? "s" : "");
837                         int j = 1;
838                         for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
839                         {
840                                 user->WriteServ("NOTICE %s :*** %d.   IP: %s     Port: %lu", user->nick, j, i->first.empty() ? "<all>" : i->first.c_str(), (unsigned long)i->second);
841                         }
842                 }
843
844                 if (!removed_modules.empty())
845                 {
846                         for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
847                         {
848                                 if (ServerInstance->UnloadModule(removing->c_str()))
849                                 {
850                                         ServerInstance->WriteOpers("*** REHASH UNLOADED MODULE: %s",removing->c_str());
851
852                                         if (user)
853                                                 user->WriteServ("973 %s %s :Module %s successfully unloaded.",user->nick, removing->c_str(), removing->c_str());
854
855                                         rem++;
856                                 }
857                                 else
858                                 {
859                                         if (user)
860                                                 user->WriteServ("972 %s %s :Failed to unload module %s: %s",user->nick, removing->c_str(), removing->c_str(), ServerInstance->ModuleError());
861                                 }
862                         }
863                 }
864
865                 if (!added_modules.empty())
866                 {
867                         for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
868                         {
869                                 if (ServerInstance->LoadModule(adding->c_str()))
870                                 {
871                                         ServerInstance->WriteOpers("*** REHASH LOADED MODULE: %s",adding->c_str());
872
873                                         if (user)
874                                                 user->WriteServ("975 %s %s :Module %s successfully loaded.",user->nick, adding->c_str(), adding->c_str());
875
876                                         add++;
877                                 }
878                                 else
879                                 {
880                                         if (user)
881                                                 user->WriteServ("974 %s %s :Failed to load module %s: %s",user->nick, adding->c_str(), adding->c_str(), ServerInstance->ModuleError());
882                                 }
883                         }
884                 }
885
886                 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());
887         }
888
889         if (user)
890                 user->WriteServ("NOTICE %s :*** Successfully rehashed server.", user->nick);
891         else
892                 ServerInstance->WriteOpers("*** Successfully rehashed server.");
893 }
894
895 bool ServerConfig::LoadConf(ConfigDataHash &target, const char* filename, std::ostringstream &errorstream)
896 {
897         std::ifstream conf(filename);
898         std::string line;
899         char ch;
900         long linenumber;
901         bool in_tag;
902         bool in_quote;
903         bool in_comment;
904
905         linenumber = 1;
906         in_tag = false;
907         in_quote = false;
908         in_comment = false;
909
910         /* Check if the file open failed first */
911         if (!conf)
912         {
913                 errorstream << "LoadConf: Couldn't open config file: " << filename << std::endl;
914                 return false;
915         }
916
917         /* Fix the chmod of the file to restrict it to the current user and group */
918         chmod(filename,0600);
919
920         for (unsigned int t = 0; t < include_stack.size(); t++)
921         {
922                 if (std::string(filename) == include_stack[t])
923                 {
924                         errorstream << "File " << filename << " is included recursively (looped inclusion)." << std::endl;
925                         return false;
926                 }
927         }
928
929         /* It's not already included, add it to the list of files we've loaded */
930         include_stack.push_back(filename);
931
932         /* Start reading characters... */
933         while(conf.get(ch))
934         {
935                 /*
936                  * Here we try and get individual tags on separate lines,
937                  * this would be so easy if we just made people format
938                  * their config files like that, but they don't so...
939                  * We check for a '<' and then know the line is over when
940                  * we get a '>' not inside quotes. If we find two '<' and
941                  * no '>' then die with an error.
942                  */
943
944                 if((ch == '#') && !in_quote)
945                         in_comment = true;
946
947                 /*if(((ch == '\n') || (ch == '\r')) && in_quote)
948                 {
949                         errorstream << "Got a newline within a quoted section, this is probably a typo: " << filename << ":" << linenumber << std::endl;
950                         return false;
951                 }*/
952
953                 switch(ch)
954                 {
955                         case '\n':
956                                 if (in_quote)
957                                         line += '\n';
958                                 linenumber++;
959                         case '\r':
960                                 if (!in_quote)
961                                         in_comment = false;
962                         case '\0':
963                                 continue;
964                         case '\t':
965                                 ch = ' ';
966                 }
967
968                 if(in_comment)
969                         continue;
970
971                 /* XXX: Added by Brain, May 1st 2006 - Escaping of characters.
972                  * Note that this WILL NOT usually allow insertion of newlines,
973                  * because a newline is two characters long. Use it primarily to
974                  * insert the " symbol.
975                  *
976                  * Note that this also involves a further check when parsing the line,
977                  * which can be found below.
978                  */
979                 if ((ch == '\\') && (in_quote) && (in_tag))
980                 {
981                         line += ch;
982                         char real_character;
983                         if (conf.get(real_character))
984                         {
985                                 if (real_character == 'n')
986                                         real_character = '\n';
987                                 line += real_character;
988                                 continue;
989                         }
990                         else
991                         {
992                                 errorstream << "End of file after a \\, what did you want to escape?: " << filename << ":" << linenumber << std::endl;
993                                 return false;
994                         }
995                 }
996
997                 if (ch != '\r')
998                         line += ch;
999
1000                 if(ch == '<')
1001                 {
1002                         if(in_tag)
1003                         {
1004                                 if(!in_quote)
1005                                 {
1006                                         errorstream << "Got another opening < when the first one wasn't closed: " << filename << ":" << linenumber << std::endl;
1007                                         return false;
1008                                 }
1009                         }
1010                         else
1011                         {
1012                                 if(in_quote)
1013                                 {
1014                                         errorstream << "We're in a quote but outside a tag, interesting. " << filename << ":" << linenumber << std::endl;
1015                                         return false;
1016                                 }
1017                                 else
1018                                 {
1019                                         // errorstream << "Opening new config tag on line " << linenumber << std::endl;
1020                                         in_tag = true;
1021                                 }
1022                         }
1023                 }
1024                 else if(ch == '"')
1025                 {
1026                         if(in_tag)
1027                         {
1028                                 if(in_quote)
1029                                 {
1030                                         // errorstream << "Closing quote in config tag on line " << linenumber << std::endl;
1031                                         in_quote = false;
1032                                 }
1033                                 else
1034                                 {
1035                                         // errorstream << "Opening quote in config tag on line " << linenumber << std::endl;
1036                                         in_quote = true;
1037                                 }
1038                         }
1039                         else
1040                         {
1041                                 if(in_quote)
1042                                 {
1043                                         errorstream << "Found a (closing) \" outside a tag: " << filename << ":" << linenumber << std::endl;
1044                                 }
1045                                 else
1046                                 {
1047                                         errorstream << "Found a (opening) \" outside a tag: " << filename << ":" << linenumber << std::endl;
1048                                 }
1049                         }
1050                 }
1051                 else if(ch == '>')
1052                 {
1053                         if(!in_quote)
1054                         {
1055                                 if(in_tag)
1056                                 {
1057                                         // errorstream << "Closing config tag on line " << linenumber << std::endl;
1058                                         in_tag = false;
1059
1060                                         /*
1061                                          * If this finds an <include> then ParseLine can simply call
1062                                          * LoadConf() and load the included config into the same ConfigDataHash
1063                                          */
1064
1065                                         if(!this->ParseLine(target, line, linenumber, errorstream))
1066                                                 return false;
1067
1068                                         line.clear();
1069                                 }
1070                                 else
1071                                 {
1072                                         errorstream << "Got a closing > when we weren't inside a tag: " << filename << ":" << linenumber << std::endl;
1073                                         return false;
1074                                 }
1075                         }
1076                 }
1077         }
1078
1079         return true;
1080 }
1081
1082 bool ServerConfig::LoadConf(ConfigDataHash &target, const std::string &filename, std::ostringstream &errorstream)
1083 {
1084         return this->LoadConf(target, filename.c_str(), errorstream);
1085 }
1086
1087 bool ServerConfig::ParseLine(ConfigDataHash &target, std::string &line, long linenumber, std::ostringstream &errorstream)
1088 {
1089         std::string tagname;
1090         std::string current_key;
1091         std::string current_value;
1092         KeyValList results;
1093         bool got_name;
1094         bool got_key;
1095         bool in_quote;
1096
1097         got_name = got_key = in_quote = false;
1098
1099         //std::cout << "ParseLine(data, '" << line << "', " << linenumber << ", stream)" << std::endl;
1100
1101         for(std::string::iterator c = line.begin(); c != line.end(); c++)
1102         {
1103                 if(!got_name)
1104                 {
1105                         /* We don't know the tag name yet. */
1106
1107                         if(*c != ' ')
1108                         {
1109                                 if(*c != '<')
1110                                 {
1111                                         tagname += *c;
1112                                 }
1113                         }
1114                         else
1115                         {
1116                                 /* We got to a space, we should have the tagname now. */
1117                                 if(tagname.length())
1118                                 {
1119                                         got_name = true;
1120                                 }
1121                         }
1122                 }
1123                 else
1124                 {
1125                         /* We have the tag name */
1126                         if (!got_key)
1127                         {
1128                                 /* We're still reading the key name */
1129                                 if (*c != '=')
1130                                 {
1131                                         if (*c != ' ')
1132                                         {
1133                                                 current_key += *c;
1134                                         }
1135                                 }
1136                                 else
1137                                 {
1138                                         /* We got an '=', end of the key name. */
1139                                         got_key = true;
1140                                 }
1141                         }
1142                         else
1143                         {
1144                                 /* We have the key name, now we're looking for quotes and the value */
1145
1146                                 /* Correctly handle escaped characters here.
1147                                  * See the XXX'ed section above.
1148                                  */
1149                                 if ((*c == '\\') && (in_quote))
1150                                 {
1151                                         c++;
1152                                         if (*c == 'n')
1153                                                 current_value += '\n';
1154                                         else
1155                                                 current_value += *c;
1156                                         continue;
1157                                 }
1158                                 else if ((*c == '\n') && (in_quote))
1159                                 {
1160                                         /* Got a 'real' \n, treat it as part of the value */
1161                                         current_value += '\n';
1162                                         continue;
1163                                 }
1164                                 else if ((*c == '\r') && (in_quote))
1165                                         /* Got a \r, drop it */
1166                                         continue;
1167
1168                                 if (*c == '"')
1169                                 {
1170                                         if (!in_quote)
1171                                         {
1172                                                 /* We're not already in a quote. */
1173                                                 in_quote = true;
1174                                         }
1175                                         else
1176                                         {
1177                                                 /* Leaving quotes, we have the value */
1178                                                 results.push_back(KeyVal(current_key, current_value));
1179
1180                                                 // std::cout << "<" << tagname << ":" << current_key << "> " << current_value << std::endl;
1181
1182                                                 in_quote = false;
1183                                                 got_key = false;
1184
1185                                                 if((tagname == "include") && (current_key == "file"))
1186                                                 {
1187                                                         if(!this->DoInclude(target, current_value, errorstream))
1188                                                                 return false;
1189                                                 }
1190
1191                                                 current_key.clear();
1192                                                 current_value.clear();
1193                                         }
1194                                 }
1195                                 else
1196                                 {
1197                                         if(in_quote)
1198                                         {
1199                                                 current_value += *c;
1200                                         }
1201                                 }
1202                         }
1203                 }
1204         }
1205
1206         /* Finished parsing the tag, add it to the config hash */
1207         target.insert(std::pair<std::string, KeyValList > (tagname, results));
1208
1209         return true;
1210 }
1211
1212 bool ServerConfig::DoInclude(ConfigDataHash &target, const std::string &file, std::ostringstream &errorstream)
1213 {
1214         std::string confpath;
1215         std::string newfile;
1216         std::string::size_type pos;
1217
1218         confpath = ServerInstance->ConfigFileName;
1219         newfile = file;
1220
1221         for (std::string::iterator c = newfile.begin(); c != newfile.end(); c++)
1222         {
1223                 if (*c == '\\')
1224                 {
1225                         *c = '/';
1226                 }
1227         }
1228
1229         if (file[0] != '/')
1230         {
1231                 if((pos = confpath.rfind("/")) != std::string::npos)
1232                 {
1233                         /* Leaves us with just the path */
1234                         newfile = confpath.substr(0, pos) + std::string("/") + newfile;
1235                 }
1236                 else
1237                 {
1238                         errorstream << "Couldn't get config path from: " << confpath << std::endl;
1239                         return false;
1240                 }
1241         }
1242
1243         return LoadConf(target, newfile, errorstream);
1244 }
1245
1246 bool ServerConfig::ConfValue(ConfigDataHash &target, const char* tag, const char* var, int index, char* result, int length, bool allow_linefeeds)
1247 {
1248         return ConfValue(target, tag, var, "", index, result, length, allow_linefeeds);
1249 }
1250
1251 bool ServerConfig::ConfValue(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, char* result, int length, bool allow_linefeeds)
1252 {
1253         std::string value;
1254         bool r = ConfValue(target, std::string(tag), std::string(var), std::string(default_value), index, value, allow_linefeeds);
1255         strlcpy(result, value.c_str(), length);
1256         return r;
1257 }
1258
1259 bool ServerConfig::ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, std::string &result, bool allow_linefeeds)
1260 {
1261         return ConfValue(target, tag, var, "", index, result, allow_linefeeds);
1262 }
1263
1264 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)
1265 {
1266         ConfigDataHash::size_type pos = index;
1267         if((pos >= 0) && (pos < target.count(tag)))
1268         {
1269                 ConfigDataHash::iterator iter = target.find(tag);
1270
1271                 for(int i = 0; i < index; i++)
1272                         iter++;
1273
1274                 for(KeyValList::iterator j = iter->second.begin(); j != iter->second.end(); j++)
1275                 {
1276                         if(j->first == var)
1277                         {
1278                                 if ((!allow_linefeeds) && (j->second.find('\n') != std::string::npos))
1279                                 {
1280                                         ServerInstance->Log(DEFAULT, "Value of <" + tag + ":" + var+ "> contains a linefeed, and linefeeds in this value are not permitted -- stripped to spaces.");
1281                                         for (std::string::iterator n = j->second.begin(); n != j->second.end(); n++)
1282                                                 if (*n == '\n')
1283                                                         *n = ' ';
1284                                 }
1285                                 else
1286                                 {
1287                                         result = j->second;
1288                                         return true;
1289                                 }
1290                         }
1291                 }
1292                 if (!default_value.empty())
1293                 {
1294                         result = default_value;
1295                         return true;
1296                 }
1297         }
1298         else if(pos == 0)
1299         {
1300                 if (!default_value.empty())
1301                 {
1302                         result = default_value;
1303                         return true;
1304                 }
1305         }
1306         return false;
1307 }
1308
1309 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, int index, int &result)
1310 {
1311         return ConfValueInteger(target, std::string(tag), std::string(var), "", index, result);
1312 }
1313
1314 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, int &result)
1315 {
1316         return ConfValueInteger(target, std::string(tag), std::string(var), std::string(default_value), index, result);
1317 }
1318
1319 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, int &result)
1320 {
1321         return ConfValueInteger(target, tag, var, "", index, result);
1322 }
1323
1324 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index, int &result)
1325 {
1326         std::string value;
1327         std::istringstream stream;
1328         bool r = ConfValue(target, tag, var, default_value, index, value);
1329         stream.str(value);
1330         if(!(stream >> result))
1331                 return false;
1332         else
1333         {
1334                 if (!value.empty())
1335                 {
1336                         if (value.substr(0,2) == "0x")
1337                         {
1338                                 char* endptr;
1339
1340                                 value.erase(0,2);
1341                                 result = strtol(value.c_str(), &endptr, 16);
1342
1343                                 /* No digits found */
1344                                 if (endptr == value.c_str())
1345                                         return false;
1346                         }
1347                         else
1348                         {
1349                                 char denominator = *(value.end() - 1);
1350                                 switch (toupper(denominator))
1351                                 {
1352                                         case 'K':
1353                                                 /* Kilobytes -> bytes */
1354                                                 result = result * 1024;
1355                                         break;
1356                                         case 'M':
1357                                                 /* Megabytes -> bytes */
1358                                                 result = result * 1024 * 1024;
1359                                         break;
1360                                         case 'G':
1361                                                 /* Gigabytes -> bytes */
1362                                                 result = result * 1024 * 1024 * 1024;
1363                                         break;
1364                                 }
1365                         }
1366                 }
1367         }
1368         return r;
1369 }
1370
1371
1372 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, int index)
1373 {
1374         return ConfValueBool(target, std::string(tag), std::string(var), "", index);
1375 }
1376
1377 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index)
1378 {
1379         return ConfValueBool(target, std::string(tag), std::string(var), std::string(default_value), index);
1380 }
1381
1382 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, int index)
1383 {
1384         return ConfValueBool(target, tag, var, "", index);
1385 }
1386
1387 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index)
1388 {
1389         std::string result;
1390         if(!ConfValue(target, tag, var, default_value, index, result))
1391                 return false;
1392
1393         return ((result == "yes") || (result == "true") || (result == "1"));
1394 }
1395
1396 int ServerConfig::ConfValueEnum(ConfigDataHash &target, const char* tag)
1397 {
1398         return target.count(tag);
1399 }
1400
1401 int ServerConfig::ConfValueEnum(ConfigDataHash &target, const std::string &tag)
1402 {
1403         return target.count(tag);
1404 }
1405
1406 int ServerConfig::ConfVarEnum(ConfigDataHash &target, const char* tag, int index)
1407 {
1408         return ConfVarEnum(target, std::string(tag), index);
1409 }
1410
1411 int ServerConfig::ConfVarEnum(ConfigDataHash &target, const std::string &tag, int index)
1412 {
1413         ConfigDataHash::size_type pos = index;
1414
1415         if((pos >= 0) && (pos < target.count(tag)))
1416         {
1417                 ConfigDataHash::const_iterator iter = target.find(tag);
1418
1419                 for(int i = 0; i < index; i++)
1420                         iter++;
1421
1422                 return iter->second.size();
1423         }
1424
1425         return 0;
1426 }
1427
1428 /** Read the contents of a file located by `fname' into a file_cache pointed at by `F'.
1429  */
1430 bool ServerConfig::ReadFile(file_cache &F, const char* fname)
1431 {
1432         if (!fname || !*fname)
1433                 return false;
1434
1435         FILE* file = NULL;
1436         char linebuf[MAXBUF];
1437
1438         F.clear();
1439
1440         if (*fname != '/')
1441         {
1442                 std::string::size_type pos;
1443                 std::string confpath = ServerInstance->ConfigFileName;
1444                 if((pos = confpath.rfind("/")) != std::string::npos)
1445                 {
1446                         /* Leaves us with just the path */
1447                         std::string newfile = confpath.substr(0, pos) + std::string("/") + fname;
1448                         if (!FileExists(newfile.c_str()))
1449                                 return false;
1450                         file =  fopen(newfile.c_str(), "r");
1451
1452                 }
1453         }
1454         else
1455         {
1456                 if (!FileExists(fname))
1457                         return false;
1458                 file =  fopen(fname, "r");
1459         }
1460
1461         if (file)
1462         {
1463                 while (!feof(file))
1464                 {
1465                         if (fgets(linebuf, sizeof(linebuf), file))
1466                                 linebuf[strlen(linebuf)-1] = 0;
1467                         else
1468                                 *linebuf = 0;
1469
1470                         if (!feof(file))
1471                         {
1472                                 F.push_back(*linebuf ? linebuf : " ");
1473                         }
1474                 }
1475
1476                 fclose(file);
1477         }
1478         else
1479                 return false;
1480
1481         return true;
1482 }
1483
1484 bool ServerConfig::FileExists(const char* file)
1485 {
1486         struct stat sb;
1487         if (stat(file, &sb) == -1)
1488                 return false;
1489
1490         if ((sb.st_mode & S_IFDIR) > 0)
1491                 return false;
1492              
1493         FILE *input;
1494         if ((input = fopen (file, "r")) == NULL)
1495                 return false;
1496         else
1497         {
1498                 fclose(input);
1499                 return true;
1500         }
1501 }
1502
1503 char* ServerConfig::CleanFilename(char* name)
1504 {
1505         char* p = name + strlen(name);
1506         while ((p != name) && (*p != '/')) p--;
1507         return (p != name ? ++p : p);
1508 }
1509
1510
1511 bool ServerConfig::DirValid(const char* dirandfile)
1512 {
1513         char work[1024];
1514         char buffer[1024];
1515         char otherdir[1024];
1516         int p;
1517
1518         strlcpy(work, dirandfile, 1024);
1519         p = strlen(work);
1520
1521         // we just want the dir
1522         while (*work)
1523         {
1524                 if (work[p] == '/')
1525                 {
1526                         work[p] = '\0';
1527                         break;
1528                 }
1529
1530                 work[p--] = '\0';
1531         }
1532
1533         // Get the current working directory
1534         if (getcwd(buffer, 1024 ) == NULL )
1535                 return false;
1536
1537         if (chdir(work) == -1)
1538                 return false;
1539
1540         if (getcwd(otherdir, 1024 ) == NULL )
1541                 return false;
1542
1543         if (chdir(buffer) == -1)
1544                 return false;
1545
1546         size_t t = strlen(work);
1547
1548         if (strlen(otherdir) >= t)
1549         {
1550                 otherdir[t] = '\0';
1551
1552                 if (!strcmp(otherdir,work))
1553                 {
1554                         return true;
1555                 }
1556
1557                 return false;
1558         }
1559         else
1560         {
1561                 return false;
1562         }
1563 }
1564
1565 std::string ServerConfig::GetFullProgDir(char** argv, int argc)
1566 {
1567         char work[1024];
1568         char buffer[1024];
1569         char otherdir[1024];
1570         int p;
1571
1572         strlcpy(work,argv[0],1024);
1573         p = strlen(work);
1574
1575         // we just want the dir
1576         while (*work)
1577         {
1578                 if (work[p] == '/')
1579                 {
1580                         work[p] = '\0';
1581                         break;
1582                 }
1583
1584                 work[p--] = '\0';
1585         }
1586
1587         // Get the current working directory
1588         if (getcwd(buffer, 1024) == NULL)
1589                 return "";
1590
1591         if (chdir(work) == -1)
1592                 return "";
1593
1594         if (getcwd(otherdir, 1024) == NULL)
1595                 return "";
1596
1597         if (chdir(buffer) == -1)
1598                 return "";
1599
1600         return otherdir;
1601 }
1602
1603 InspIRCd* ServerConfig::GetInstance()
1604 {
1605         return ServerInstance;
1606 }
1607
1608
1609 ValueItem::ValueItem(int value)
1610 {
1611         std::stringstream n;
1612         n << value;
1613         v = n.str();
1614 }
1615
1616 ValueItem::ValueItem(bool value)
1617 {
1618         std::stringstream n;
1619         n << value;
1620         v = n.str();
1621 }
1622
1623 ValueItem::ValueItem(char* value)
1624 {
1625         v = value;
1626 }
1627
1628 void ValueItem::Set(char* value)
1629 {
1630         v = value;
1631 }
1632
1633 void ValueItem::Set(const char* value)
1634 {
1635         v = value;
1636 }
1637
1638 void ValueItem::Set(int value)
1639 {
1640         std::stringstream n;
1641         n << value;
1642         v = n.str();
1643 }
1644
1645 int ValueItem::GetInteger()
1646 {
1647         if (v.empty())
1648                 return 0;
1649         return atoi(v.c_str());
1650 }
1651
1652 char* ValueItem::GetString()
1653 {
1654         return (char*)v.c_str();
1655 }
1656
1657 bool ValueItem::GetBool()
1658 {
1659         return (GetInteger() || v == "yes" || v == "true");
1660 }
1661