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