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