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