]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/configreader.cpp
21bfce3db84f217e8e260af43fd88f7f71a5a459
[user/henk/code/inspircd.git] / src / configreader.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $Core */
15 /* $CopyInstall: conf/inspircd.quotes.example $(CONPATH) */
16 /* $CopyInstall: conf/inspircd.rules.example $(CONPATH) */
17 /* $CopyInstall: conf/inspircd.motd.example $(CONPATH) */
18 /* $CopyInstall: conf/inspircd.helpop-full.example $(CONPATH) */
19 /* $CopyInstall: conf/inspircd.helpop.example $(CONPATH) */
20 /* $CopyInstall: conf/inspircd.censor.example $(CONPATH) */
21 /* $CopyInstall: conf/inspircd.filter.example $(CONPATH) */
22 /* $CopyInstall: conf/inspircd.conf.example $(CONPATH) */
23 /* $CopyInstall: conf/modules.conf.example $(CONPATH) */
24 /* $CopyInstall: conf/opers.conf.example $(CONPATH) */
25 /* $CopyInstall: conf/links.conf.example $(CONPATH) */
26 /* $CopyInstall: .gdbargs $(BASE) */
27
28 #include "inspircd.h"
29 #include <fstream>
30 #include "xline.h"
31 #include "exitcodes.h"
32 #include "commands/cmd_whowas.h"
33 #include "modes/cmode_h.h"
34
35 ServerConfig::ServerConfig()
36 {
37         *sid = *ServerName = *Network = *ServerDesc = *AdminName = '\0';
38         *HideWhoisServer = *AdminEmail = *AdminNick = *diepass = *restartpass = *FixedQuit = *HideKillsServer = '\0';
39         *DefaultModes = *CustomVersion = *motd = *rules = *PrefixQuit = *DieValue = *DNSServer = '\0';
40         *UserStats = *DisabledCommands = *SuffixQuit = '\0';
41         WhoWasGroupSize = WhoWasMaxGroups = WhoWasMaxKeep = 0;
42         log_file = NULL;
43         NoUserDns = forcedebug = OperSpyWhois = nofork = HideBans = HideSplits = UndernetMsgPrefix = false;
44         CycleHosts = writelog = AllowHalfop = InvBypassModes = true;
45         dns_timeout = DieDelay = 5;
46         MaxTargets = 20;
47         NetBufferSize = 10240;
48         SoftLimit = ServerInstance->SE->GetMaxFds();
49         MaxConn = SOMAXCONN;
50         MaxWhoResults = 0;
51         debugging = 0;
52         MaxChans = 20;
53         OperMaxChans = 30;
54         c_ipv4_range = 32;
55         c_ipv6_range = 128;
56 }
57
58 void ServerConfig::Update005()
59 {
60         std::stringstream out(data005);
61         std::string token;
62         std::string line5;
63         int token_counter = 0;
64         isupport.clear();
65         while (out >> token)
66         {
67                 line5 = line5 + token + " ";
68                 token_counter++;
69                 if (token_counter >= 13)
70                 {
71                         char buf[MAXBUF];
72                         snprintf(buf, MAXBUF, "%s:are supported by this server", line5.c_str());
73                         isupport.push_back(buf);
74                         line5.clear();
75                         token_counter = 0;
76                 }
77         }
78         if (!line5.empty())
79         {
80                 char buf[MAXBUF];
81                 snprintf(buf, MAXBUF, "%s:are supported by this server", line5.c_str());
82                 isupport.push_back(buf);
83         }
84 }
85
86 void ServerConfig::Send005(User* user)
87 {
88         for (std::vector<std::string>::iterator line = ServerInstance->Config->isupport.begin(); line != ServerInstance->Config->isupport.end(); line++)
89                 user->WriteNumeric(RPL_ISUPPORT, "%s %s", user->nick.c_str(), line->c_str());
90 }
91
92 bool ServerConfig::CheckOnce(const char* tag)
93 {
94         int count = ConfValueEnum(tag);
95
96         if (count > 1)
97                 throw CoreException("You have more than one <"+std::string(tag)+"> tag, this is not permitted.");
98         if (count < 1)
99                 throw CoreException("You have not defined a <"+std::string(tag)+"> tag, this is required.");
100         return true;
101 }
102
103 static void ValidateNoSpaces(const char* p, const std::string &tag, const std::string &val)
104 {
105         for (const char* ptr = p; *ptr; ++ptr)
106         {
107                 if (*ptr == ' ')
108                         throw CoreException("The value of <"+tag+":"+val+"> cannot contain spaces");
109         }
110 }
111
112 /* NOTE: Before anyone asks why we're not using inet_pton for this, it is because inet_pton and friends do not return so much detail,
113  * even in strerror(errno). They just return 'yes' or 'no' to an address without such detail as to whats WRONG with the address.
114  * Because ircd users arent as technical as they used to be (;)) we are going to give more of a useful error message.
115  */
116 static void ValidateIP(const char* p, const std::string &tag, const std::string &val, bool wild)
117 {
118         int num_dots = 0;
119         int num_seps = 0;
120         int not_numbers = false;
121         int not_hex = false;
122
123         if (*p)
124         {
125                 if (*p == '.')
126                         throw CoreException("The value of <"+tag+":"+val+"> is not an IP address");
127
128                 for (const char* ptr = p; *ptr; ++ptr)
129                 {
130                         if (wild && (*ptr == '*' || *ptr == '?' || *ptr == '/'))
131                                 continue;
132
133                         if (*ptr != ':' && *ptr != '.')
134                         {
135                                 if (*ptr < '0' || *ptr > '9')
136                                         not_numbers = true;
137                                 if ((*ptr < '0' || *ptr > '9') && (toupper(*ptr) < 'A' || toupper(*ptr) > 'F'))
138                                         not_hex = true;
139                         }
140                         switch (*ptr)
141                         {
142                                 case ' ':
143                                         throw CoreException("The value of <"+tag+":"+val+"> is not an IP address");
144                                 case '.':
145                                         num_dots++;
146                                 break;
147                                 case ':':
148                                         num_seps++;
149                                 break;
150                         }
151                 }
152
153                 if (num_dots > 3)
154                         throw CoreException("The value of <"+tag+":"+val+"> is an IPv4 address with too many fields!");
155
156                 if (num_seps > 8)
157                         throw CoreException("The value of <"+tag+":"+val+"> is an IPv6 address with too many fields!");
158
159                 if (num_seps == 0 && num_dots < 3 && !wild)
160                         throw CoreException("The value of <"+tag+":"+val+"> looks to be a malformed IPv4 address");
161
162                 if (num_seps == 0 && num_dots == 3 && not_numbers)
163                         throw CoreException("The value of <"+tag+":"+val+"> contains non-numeric characters in an IPv4 address");
164
165                 if (num_seps != 0 && not_hex)
166                         throw CoreException("The value of <"+tag+":"+val+"> contains non-hexdecimal characters in an IPv6 address");
167
168                 if (num_seps != 0 && num_dots != 3 && num_dots != 0 && !wild)
169                         throw CoreException("The value of <"+tag+":"+val+"> is a malformed IPv6 4in6 address");
170         }
171 }
172
173 static void ValidateHostname(const char* p, const std::string &tag, const std::string &val)
174 {
175         int num_dots = 0;
176         if (*p)
177         {
178                 if (*p == '.')
179                         throw CoreException("The value of <"+tag+":"+val+"> is not a valid hostname");
180                 for (const char* ptr = p; *ptr; ++ptr)
181                 {
182                         switch (*ptr)
183                         {
184                                 case ' ':
185                                         throw CoreException("The value of <"+tag+":"+val+"> is not a valid hostname");
186                                 case '.':
187                                         num_dots++;
188                                 break;
189                         }
190                 }
191                 if (num_dots == 0)
192                         throw CoreException("The value of <"+tag+":"+val+"> is not a valid hostname");
193         }
194 }
195
196 // Specialized validators
197
198 static bool ValidateMaxTargets(ServerConfig* conf, const char*, const char*, ValueItem &data)
199 {
200         if ((data.GetInteger() < 1) || (data.GetInteger() > 31))
201         {
202                 ServerInstance->Logs->Log("CONFIG",DEFAULT,"WARNING: <security:maxtargets> value is greater than 31 or less than 1, set to 20.");
203                 data.Set(20);
204         }
205         return true;
206 }
207
208 static bool ValidateSoftLimit(ServerConfig* conf, const char*, const char*, ValueItem &data)
209 {
210         if ((data.GetInteger() < 1) || (data.GetInteger() > ServerInstance->SE->GetMaxFds()))
211         {
212                 ServerInstance->Logs->Log("CONFIG",DEFAULT,"WARNING: <performance:softlimit> value is greater than %d or less than 0, set to %d.",ServerInstance->SE->GetMaxFds(),ServerInstance->SE->GetMaxFds());
213                 data.Set(ServerInstance->SE->GetMaxFds());
214         }
215         return true;
216 }
217
218 static bool ValidateMaxConn(ServerConfig* conf, const char*, const char*, ValueItem &data)
219 {
220         if (data.GetInteger() > SOMAXCONN)
221                 ServerInstance->Logs->Log("CONFIG",DEFAULT,"WARNING: <performance:somaxconn> value may be higher than the system-defined SOMAXCONN value!");
222         return true;
223 }
224
225 bool ServerConfig::ApplyDisabledCommands(const char* data)
226 {
227         std::stringstream dcmds(data);
228         std::string thiscmd;
229
230         /* Enable everything first */
231         for (Commandtable::iterator x = ServerInstance->Parser->cmdlist.begin(); x != ServerInstance->Parser->cmdlist.end(); x++)
232                 x->second->Disable(false);
233
234         /* Now disable all the ones which the user wants disabled */
235         while (dcmds >> thiscmd)
236         {
237                 Commandtable::iterator cm = ServerInstance->Parser->cmdlist.find(thiscmd);
238                 if (cm != ServerInstance->Parser->cmdlist.end())
239                 {
240                         cm->second->Disable(true);
241                 }
242         }
243         return true;
244 }
245
246 static bool ValidateDisabledUModes(ServerConfig* conf, const char*, const char*, ValueItem &data)
247 {
248         memset(conf->DisabledUModes, 0, sizeof(conf->DisabledUModes));
249         for (const unsigned char* p = (const unsigned char*)data.GetString(); *p; ++p)
250         {
251                 if (*p < 'A' || *p > ('A' + 64)) throw CoreException(std::string("Invalid usermode ")+(char)*p+" was found.");
252                 conf->DisabledUModes[*p - 'A'] = 1;
253         }
254         return true;
255 }
256
257 static bool ValidateDisabledCModes(ServerConfig* conf, const char*, const char*, ValueItem &data)
258 {
259         memset(conf->DisabledCModes, 0, sizeof(conf->DisabledCModes));
260         for (const unsigned char* p = (const unsigned char*)data.GetString(); *p; ++p)
261         {
262                 if (*p < 'A' || *p > ('A' + 64)) throw CoreException(std::string("Invalid chanmode ")+(char)*p+" was found.");
263                 conf->DisabledCModes[*p - 'A'] = 1;
264         }
265         return true;
266 }
267
268 #ifdef WINDOWS
269 // Note: the windows validator is in win32wrapper.cpp
270 bool ValidateDnsServer(ServerConfig* conf, const char*, const char*, ValueItem &data);
271 #else
272 static bool ValidateDnsServer(ServerConfig* conf, const char*, const char*, ValueItem &data)
273 {
274         if (!*(data.GetString()))
275         {
276                 std::string nameserver;
277                 // attempt to look up their nameserver from /etc/resolv.conf
278                 ServerInstance->Logs->Log("CONFIG",DEFAULT,"WARNING: <dns:server> not defined, attempting to find working server in /etc/resolv.conf...");
279                 std::ifstream resolv("/etc/resolv.conf");
280                 bool found_server = false;
281
282                 if (resolv.is_open())
283                 {
284                         while (resolv >> nameserver)
285                         {
286                                 if ((nameserver == "nameserver") && (!found_server))
287                                 {
288                                         resolv >> nameserver;
289                                         data.Set(nameserver.c_str());
290                                         found_server = true;
291                                         ServerInstance->Logs->Log("CONFIG",DEFAULT,"<dns:server> set to '%s' as first resolver in /etc/resolv.conf.",nameserver.c_str());
292                                 }
293                         }
294
295                         if (!found_server)
296                         {
297                                 ServerInstance->Logs->Log("CONFIG",DEFAULT,"/etc/resolv.conf contains no viable nameserver entries! Defaulting to nameserver '127.0.0.1'!");
298                                 data.Set("127.0.0.1");
299                         }
300                 }
301                 else
302                 {
303                         ServerInstance->Logs->Log("CONFIG",DEFAULT,"/etc/resolv.conf can't be opened! Defaulting to nameserver '127.0.0.1'!");
304                         data.Set("127.0.0.1");
305                 }
306         }
307         return true;
308 }
309 #endif
310
311 static bool ValidateServerName(ServerConfig* conf, const char*, const char*, ValueItem &data)
312 {
313         ServerInstance->Logs->Log("CONFIG",DEFAULT,"Validating server name");
314         /* If we already have a servername, and they changed it, we should throw an exception. */
315         if (!strchr(data.GetString(), '.'))
316         {
317                 ServerInstance->Logs->Log("CONFIG",DEFAULT,"WARNING: <server:name> '%s' is not a fully-qualified domain name. Changed to '%s.'",
318                         data.GetString(),data.GetString());
319                 std::string moo = data.GetValue();
320                 data.Set(moo.append("."));
321         }
322         ValidateHostname(data.GetString(), "server", "name");
323         return true;
324 }
325
326 static bool ValidateNetBufferSize(ServerConfig* conf, const char*, const char*, ValueItem &data)
327 {
328         // 65534 not 65535 because of null terminator
329         if ((!data.GetInteger()) || (data.GetInteger() > 65534) || (data.GetInteger() < 1024))
330         {
331                 ServerInstance->Logs->Log("CONFIG",DEFAULT,"No NetBufferSize specified or size out of range, setting to default of 10240.");
332                 data.Set(10240);
333         }
334         return true;
335 }
336
337 static bool ValidateMaxWho(ServerConfig* conf, const char*, const char*, ValueItem &data)
338 {
339         if ((data.GetInteger() > 65535) || (data.GetInteger() < 1))
340         {
341                 ServerInstance->Logs->Log("CONFIG",DEFAULT,"<performance:maxwho> size out of range, setting to default of 1024.");
342                 data.Set(1024);
343         }
344         return true;
345 }
346
347 static bool ValidateHalfOp(ServerConfig* conf, const char*, const char*, ValueItem &data)
348 {
349         ModeHandler* mh = ServerInstance->Modes->FindMode('h', MODETYPE_CHANNEL);
350         if (data.GetBool() && !mh) {
351                 ServerInstance->Logs->Log("CONFIG", DEFAULT, "Enabling halfop mode.");
352                 mh = new ModeChannelHalfOp;
353                 ServerInstance->Modes->AddMode(mh);
354         } else if (!data.GetBool() && mh) {
355                 ServerInstance->Logs->Log("CONFIG", DEFAULT, "Disabling halfop mode.");
356                 ServerInstance->Modes->DelMode(mh);
357                 delete mh;
358         }
359         return true;
360 }
361
362 static bool ValidateMotd(ServerConfig* conf, const char*, const char*, ValueItem &data)
363 {
364         conf->ReadFile(conf->MOTD, data.GetString());
365         return true;
366 }
367
368 static bool ValidateNotEmpty(ServerConfig*, const char* tag, const char* val, ValueItem &data)
369 {
370         if (data.GetValue().empty())
371                 throw CoreException(std::string("The value for <")+tag+":"+val+"> cannot be empty!");
372         return true;
373 }
374
375 static bool ValidateRules(ServerConfig* conf, const char*, const char*, ValueItem &data)
376 {
377         conf->ReadFile(conf->RULES, data.GetString());
378         return true;
379 }
380
381 static bool ValidateModeLists(ServerConfig* conf, const char*, const char*, ValueItem &data)
382 {
383         memset(conf->HideModeLists, 0, sizeof(conf->HideModeLists));
384         for (const unsigned char* x = (const unsigned char*)data.GetString(); *x; ++x)
385                 conf->HideModeLists[*x] = true;
386         return true;
387 }
388
389 static bool ValidateExemptChanOps(ServerConfig* conf, const char*, const char*, ValueItem &data)
390 {
391         memset(conf->ExemptChanOps, 0, sizeof(conf->ExemptChanOps));
392         for (const unsigned char* x = (const unsigned char*)data.GetString(); *x; ++x)
393                 conf->ExemptChanOps[*x] = true;
394         return true;
395 }
396
397 static bool ValidateInvite(ServerConfig* conf, const char*, const char*, ValueItem &data)
398 {
399         const std::string& v = data.GetValue();
400
401         if (v == "ops")
402                 conf->AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_OPS;
403         else if (v == "all")
404                 conf->AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_ALL;
405         else if (v == "dynamic")
406                 conf->AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_DYNAMIC;
407         else
408                 conf->AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_NONE;
409
410         return true;
411 }
412
413 static bool ValidateSID(ServerConfig* conf, const char*, const char*, ValueItem &data)
414 {
415         ServerInstance->Logs->Log("CONFIG",DEFAULT,"Validating server id");
416
417         const char *sid = data.GetString();
418
419         if (*sid && !ServerInstance->IsSID(sid))
420         {
421                 throw CoreException(std::string(sid) + " is not a valid server ID. A server ID must be 3 characters long, with the first character a digit and the next two characters a digit or letter.");
422         }
423
424         strlcpy(conf->sid, sid, 5);
425
426         return true;
427 }
428
429 static bool ValidateWhoWas(ServerConfig* conf, const char*, const char*, ValueItem &data)
430 {
431         conf->WhoWasMaxKeep = ServerInstance->Duration(data.GetString());
432
433         if (conf->WhoWasGroupSize < 0)
434                 conf->WhoWasGroupSize = 0;
435
436         if (conf->WhoWasMaxGroups < 0)
437                 conf->WhoWasMaxGroups = 0;
438
439         if (conf->WhoWasMaxKeep < 3600)
440         {
441                 conf->WhoWasMaxKeep = 3600;
442                 ServerInstance->Logs->Log("CONFIG",DEFAULT,"WARNING: <whowas:maxkeep> value less than 3600, setting to default 3600");
443         }
444
445         Module* whowas = ServerInstance->Modules->Find("cmd_whowas.so");
446         if (whowas)
447         {
448                 WhowasRequest(NULL, whowas, WhowasRequest::WHOWAS_PRUNE).Send();
449         }
450
451         return true;
452 }
453
454 /* Callback called to process a single <uline> tag
455  */
456 static bool DoULine(ServerConfig* conf, const char*, const char**, ValueList &values, int*)
457 {
458         const char* server = values[0].GetString();
459         const bool silent = values[1].GetBool();
460         conf->ulines[server] = silent;
461         return true;
462 }
463
464 /* Callback called to process a single <banlist> tag
465  */
466 static bool DoMaxBans(ServerConfig* conf, const char*, const char**, ValueList &values, int*)
467 {
468         const char* channel = values[0].GetString();
469         int limit = values[1].GetInteger();
470         conf->maxbans[channel] = limit;
471         return true;
472 }
473
474 static bool DoZLine(ServerConfig* conf, const char* tag, const char** entries, ValueList &values, int* types)
475 {
476         const char* reason = values[0].GetString();
477         const char* ipmask = values[1].GetString();
478
479         ZLine* zl = new ZLine(ServerInstance->Time(), 0, "<Config>", reason, ipmask);
480         if (!ServerInstance->XLines->AddLine(zl, NULL))
481                 delete zl;
482
483         return true;
484 }
485
486 static bool DoQLine(ServerConfig* conf, const char* tag, const char** entries, ValueList &values, int* types)
487 {
488         const char* reason = values[0].GetString();
489         const char* nick = values[1].GetString();
490
491         QLine* ql = new QLine(ServerInstance->Time(), 0, "<Config>", reason, nick);
492         if (!ServerInstance->XLines->AddLine(ql, NULL))
493                 delete ql;
494
495         return true;
496 }
497
498 static bool DoKLine(ServerConfig* conf, const char* tag, const char** entries, ValueList &values, int* types)
499 {
500         const char* reason = values[0].GetString();
501         const char* host = values[1].GetString();
502
503         XLineManager* xlm = ServerInstance->XLines;
504
505         IdentHostPair ih = xlm->IdentSplit(host);
506
507         KLine* kl = new KLine(ServerInstance->Time(), 0, "<Config>", reason, ih.first.c_str(), ih.second.c_str());
508         if (!xlm->AddLine(kl, NULL))
509                 delete kl;
510         return true;
511 }
512
513 static bool DoELine(ServerConfig* conf, const char* tag, const char** entries, ValueList &values, int* types)
514 {
515         const char* reason = values[0].GetString();
516         const char* host = values[1].GetString();
517
518         XLineManager* xlm = ServerInstance->XLines;
519
520         IdentHostPair ih = xlm->IdentSplit(host);
521
522         ELine* el = new ELine(ServerInstance->Time(), 0, "<Config>", reason, ih.first.c_str(), ih.second.c_str());
523         if (!xlm->AddLine(el, NULL))
524                 delete el;
525         return true;
526 }
527
528 static bool DoType(ServerConfig* conf, const char*, const char**, ValueList &values, int*)
529 {
530         const char* TypeName = values[0].GetString();
531         const char* Classes = values[1].GetString();
532
533         conf->opertypes[TypeName] = std::string(Classes);
534         return true;
535 }
536
537 static bool DoClass(ServerConfig* conf, const char* tag, const char**, ValueList &values, int*)
538 {
539         const char* ClassName = values[0].GetString();
540         const char* CommandList = values[1].GetString();
541         const char* UModeList = values[2].GetString();
542         const char* CModeList = values[3].GetString();
543         const char *PrivsList = values[4].GetString();
544
545         for (const char* c = UModeList; *c; ++c)
546         {
547                 if ((*c < 'A' || *c > 'z') && *c != '*')
548                 {
549                         throw CoreException("Character " + std::string(1, *c) + " is not a valid mode in <class:usermodes>");
550                 }
551         }
552         for (const char* c = CModeList; *c; ++c)
553         {
554                 if ((*c < 'A' || *c > 'z') && *c != '*')
555                 {
556                         throw CoreException("Character " + std::string(1, *c) + " is not a valid mode in <class:chanmodes>");
557                 }
558         }
559
560         conf->operclass[ClassName].commandlist = CommandList;
561         conf->operclass[ClassName].umodelist = UModeList;
562         conf->operclass[ClassName].cmodelist = CModeList;
563         conf->operclass[ClassName].privs = PrivsList;
564         return true;
565 }
566
567 void ServerConfig::CrossCheckOperClassType()
568 {
569         for (int i = 0; i < ConfValueEnum("type"); ++i)
570         {
571                 char item[MAXBUF], classn[MAXBUF], classes[MAXBUF];
572                 std::string classname;
573                 ConfValue("type", "classes", "", i, classes, MAXBUF, false);
574                 irc::spacesepstream str(classes);
575                 ConfValue("type", "name", "", i, item, MAXBUF, false);
576                 while (str.GetToken(classname))
577                 {
578                         std::string lost;
579                         bool foundclass = false;
580                         for (int j = 0; j < ConfValueEnum("class"); ++j)
581                         {
582                                 ConfValue("class", "name", "", j, classn, MAXBUF, false);
583                                 if (!strcmp(classn, classname.c_str()))
584                                 {
585                                         foundclass = true;
586                                         break;
587                                 }
588                         }
589                         if (!foundclass)
590                         {
591                                 char msg[MAXBUF];
592                                 snprintf(msg, MAXBUF, " Warning: Oper type '%s' has a missing class named '%s', this does nothing!\n",
593                                         item, classname.c_str());
594                                 throw CoreException(msg);
595                         }
596                 }
597         }
598 }
599
600 void ServerConfig::CrossCheckConnectBlocks(ServerConfig* current)
601 {
602         typedef std::map<std::string, ConnectClass*> ClassMap;
603         ClassMap oldBlocksByMask;
604         if (current)
605         {
606                 for(ClassVector::iterator i = current->Classes.begin(); i != current->Classes.end(); ++i)
607                 {
608                         ConnectClass* c = *i;
609                         std::string typeMask = (c->type == CC_ALLOW) ? "a" : "d";
610                         typeMask += c->host;
611                         oldBlocksByMask[typeMask] = c;
612                 }
613         }
614
615         int block_count = ConfValueEnum("connect");
616         ClassMap newBlocksByMask;
617         Classes.resize(block_count, NULL);
618         std::map<std::string, int> names;
619
620         bool try_again = true;
621         for(int tries=0; try_again && tries < block_count + 1; tries++)
622         {
623                 try_again = false;
624                 for(int i=0; i < block_count; i++)
625                 {
626                         if (Classes[i])
627                                 continue;
628
629                         ConnectClass* parent = NULL;
630                         std::string parentName;
631                         if (ConfValue("connect", "parent", i, parentName, false))
632                         {
633                                 std::map<std::string,int>::iterator parentIter = names.find(parentName);
634                                 if (parentIter == names.end())
635                                 {
636                                         try_again = true;
637                                         // couldn't find parent this time. If it's the last time, we'll never find it.
638                                         if (tries == block_count)
639                                                 throw CoreException("Could not find parent connect class \"" + parentName + "\" for connect block " + ConvToStr(i));
640                                         continue;
641                                 }
642                                 parent = Classes[parentIter->second];
643                         }
644
645                         std::string name;
646                         if (ConfValue("connect", "name", i, name, false))
647                         {
648                                 if (names.find(name) != names.end())
649                                         throw CoreException("Two connect classes with name \"" + name + "\" defined!");
650                                 names[name] = i;
651                         }
652
653                         std::string mask, typeMask;
654                         char type;
655
656                         if (ConfValue("connect", "allow", i, mask, false))
657                         {
658                                 type = CC_ALLOW;
659                                 typeMask = 'a' + mask;
660                         }
661                         else if (ConfValue("connect", "deny", i, mask, false))
662                         {
663                                 type = CC_DENY;
664                                 typeMask = 'd' + mask;
665                         }
666                         else
667                         {
668                                 throw CoreException("Connect class must have an allow or deny mask (#" + ConvToStr(i) + ")");
669                         }
670                         ClassMap::iterator dupMask = newBlocksByMask.find(typeMask);
671                         if (dupMask != newBlocksByMask.end())
672                                 throw CoreException("Two connect classes cannot have the same mask (" + mask + ")");
673
674                         ConnectClass* me = parent ? 
675                                 new ConnectClass(type, mask, *parent) :
676                                 new ConnectClass(type, mask);
677
678                         if (!name.empty())
679                                 me->name = name;
680
681                         std::string tmpv;
682                         if (ConfValue("connect", "password", i, tmpv, false))
683                                 me->pass= tmpv;
684                         if (ConfValue("connect", "hash", i, tmpv, false))
685                                 me->hash = tmpv;
686                         if (ConfValue("connect", "timeout", i, tmpv, false))
687                                 me->registration_timeout = atol(tmpv.c_str());
688                         if (ConfValue("connect", "pingfreq", i, tmpv, false))
689                                 me->pingtime = atol(tmpv.c_str());
690                         if (ConfValue("connect", "sendq", i, tmpv, false))
691                         {
692                                 // attempt to guess a good hard/soft sendq from a single value
693                                 long value = atol(tmpv.c_str());
694                                 if (value > 16384)
695                                         me->softsendqmax = value / 16;
696                                 else
697                                         me->softsendqmax = value;
698                                 me->hardsendqmax = value * 8;
699                         }
700                         if (ConfValue("connect", "softsendq", i, tmpv, false))
701                                 me->softsendqmax = atol(tmpv.c_str());
702                         if (ConfValue("connect", "hardsendq", i, tmpv, false))
703                                 me->hardsendqmax = atol(tmpv.c_str());
704                         if (ConfValue("connect", "recvq", i, tmpv, false))
705                                 me->recvqmax = atol(tmpv.c_str());
706                         if (ConfValue("connect", "localmax", i, tmpv, false))
707                                 me->maxlocal = atol(tmpv.c_str());
708                         if (ConfValue("connect", "globalmax", i, tmpv, false))
709                                 me->maxglobal = atol(tmpv.c_str());
710                         if (ConfValue("connect", "port", i, tmpv, false))
711                                 me->port = atol(tmpv.c_str());
712                         if (ConfValue("connect", "maxchans", i, tmpv, false))
713                                 me->maxchans = atol(tmpv.c_str());
714                         if (ConfValue("connect", "limit", i, tmpv, false))
715                                 me->limit = atol(tmpv.c_str());
716
717                         ClassMap::iterator oldMask = oldBlocksByMask.find(typeMask);
718                         if (oldMask != oldBlocksByMask.end())
719                         {
720                                 ConnectClass* old = oldMask->second;
721                                 oldBlocksByMask.erase(oldMask);
722                                 old->Update(me);
723                                 delete me;
724                                 me = old;
725                         }
726                         newBlocksByMask[typeMask] = me;
727                         Classes[i] = me;
728                 }
729         }
730
731         for(ClassMap::iterator toRemove = oldBlocksByMask.begin(); toRemove != oldBlocksByMask.end(); toRemove++)
732         {
733                 removed_classes.push_back(toRemove->second);
734         }
735 }
736
737
738 static const Deprecated ChangedConfig[] = {
739         {"options", "hidelinks",                "has been moved to <security:hidelinks> as of 1.2a3"},
740         {"options", "hidewhois",                "has been moved to <security:hidewhois> as of 1.2a3"},
741         {"options", "userstats",                "has been moved to <security:userstats> as of 1.2a3"},
742         {"options", "customversion",    "has been moved to <security:customversion> as of 1.2a3"},
743         {"options", "hidesplits",               "has been moved to <security:hidesplits> as of 1.2a3"},
744         {"options", "hidebans",         "has been moved to <security:hidebans> as of 1.2a3"},
745         {"options", "hidekills",                "has been moved to <security:hidekills> as of 1.2a3"},
746         {"options", "operspywhois",             "has been moved to <security:operspywhois> as of 1.2a3"},
747         {"options", "announceinvites",  "has been moved to <security:announceinvites> as of 1.2a3"},
748         {"options", "hidemodes",                "has been moved to <security:hidemodes> as of 1.2a3"},
749         {"options", "maxtargets",               "has been moved to <security:maxtargets> as of 1.2a3"},
750         {"options",     "nouserdns",            "has been moved to <performance:nouserdns> as of 1.2a3"},
751         {"options",     "maxwho",               "has been moved to <performance:maxwho> as of 1.2a3"},
752         {"options",     "softlimit",            "has been moved to <performance:softlimit> as of 1.2a3"},
753         {"options", "somaxconn",                "has been moved to <performance:somaxconn> as of 1.2a3"},
754         {"options", "netbuffersize",    "has been moved to <performance:netbuffersize> as of 1.2a3"},
755         {"options", "maxwho",           "has been moved to <performance:maxwho> as of 1.2a3"},
756         {"options",     "loglevel",             "1.2 does not use the loglevel value. Please define <log> tags instead."},
757         {"die",     "value",            "has always been deprecated"},
758 };
759
760 /* These tags can occur ONCE or not at all */
761 static const InitialConfig Values[] = {
762         {"performance", "softlimit",    "0",                    new ValueContainerUInt (&ServerConfig::SoftLimit),              DT_INTEGER,  ValidateSoftLimit},
763         {"performance", "somaxconn",    SOMAXCONN_S,            new ValueContainerInt  (&ServerConfig::MaxConn),                DT_INTEGER,  ValidateMaxConn},
764         {"options",     "moronbanner",  "You're banned!",       new ValueContainerChar (&ServerConfig::MoronBanner),            DT_CHARPTR,  NULL},
765         {"server",      "name",         "",                     new ValueContainerChar (&ServerConfig::ServerName),             DT_HOSTNAME, ValidateServerName},
766         {"server",      "description",  "Configure Me",         new ValueContainerChar (&ServerConfig::ServerDesc),             DT_CHARPTR,  NULL},
767         {"server",      "network",      "Network",              new ValueContainerChar (&ServerConfig::Network),                        DT_NOSPACES, NULL},
768         {"server",      "id",           "",                     new ValueContainerChar (&ServerConfig::sid),                    DT_CHARPTR,  ValidateSID},
769         {"admin",       "name",         "",                     new ValueContainerChar (&ServerConfig::AdminName),              DT_CHARPTR,  NULL},
770         {"admin",       "email",        "Mis@configu.red",      new ValueContainerChar (&ServerConfig::AdminEmail),             DT_CHARPTR,  NULL},
771         {"admin",       "nick",         "Misconfigured",        new ValueContainerChar (&ServerConfig::AdminNick),              DT_CHARPTR,  NULL},
772         {"files",       "motd",         "",                     new ValueContainerChar (&ServerConfig::motd),                   DT_CHARPTR,  ValidateMotd},
773         {"files",       "rules",        "",                     new ValueContainerChar (&ServerConfig::rules),                  DT_CHARPTR,  ValidateRules},
774         {"power",       "diepass",      "",                     new ValueContainerChar (&ServerConfig::diepass),                        DT_CHARPTR,  ValidateNotEmpty},
775         {"power",       "pause",        "",                     new ValueContainerInt  (&ServerConfig::DieDelay),               DT_INTEGER,  NULL},
776         {"power",       "hash",         "",                     new ValueContainerChar (&ServerConfig::powerhash),              DT_CHARPTR,  NULL},
777         {"power",       "restartpass",  "",                     new ValueContainerChar (&ServerConfig::restartpass),            DT_CHARPTR,  ValidateNotEmpty},
778         {"options",     "prefixquit",   "",                     new ValueContainerChar (&ServerConfig::PrefixQuit),             DT_CHARPTR,  NULL},
779         {"options",     "suffixquit",   "",                     new ValueContainerChar (&ServerConfig::SuffixQuit),             DT_CHARPTR,  NULL},
780         {"options",     "fixedquit",    "",                     new ValueContainerChar (&ServerConfig::FixedQuit),              DT_CHARPTR,  NULL},
781         {"options",     "prefixpart",   "",                     new ValueContainerChar (&ServerConfig::PrefixPart),             DT_CHARPTR,  NULL},
782         {"options",     "suffixpart",   "",                     new ValueContainerChar (&ServerConfig::SuffixPart),             DT_CHARPTR,  NULL},
783         {"options",     "fixedpart",    "",                     new ValueContainerChar (&ServerConfig::FixedPart),              DT_CHARPTR,  NULL},
784         {"performance", "netbuffersize","10240",                new ValueContainerInt  (&ServerConfig::NetBufferSize),          DT_INTEGER,  ValidateNetBufferSize},
785         {"performance", "maxwho",       "1024",                 new ValueContainerInt  (&ServerConfig::MaxWhoResults),          DT_INTEGER,  ValidateMaxWho},
786         {"options",     "allowhalfop",  "0",                    new ValueContainerBool (&ServerConfig::AllowHalfop),            DT_BOOLEAN,  ValidateHalfOp},
787         {"dns",         "server",       "",                     new ValueContainerChar (&ServerConfig::DNSServer),              DT_IPADDRESS,ValidateDnsServer},
788         {"dns",         "timeout",      "5",                    new ValueContainerInt  (&ServerConfig::dns_timeout),            DT_INTEGER,  NULL},
789         {"options",     "moduledir",    MOD_PATH,               new ValueContainerString (&ServerConfig::ModPath),                      DT_CHARPTR,  NULL},
790         {"disabled",    "commands",     "",                     new ValueContainerChar (&ServerConfig::DisabledCommands),       DT_CHARPTR,  NULL},
791         {"disabled",    "usermodes",    "",                     NULL, DT_NOTHING,  ValidateDisabledUModes},
792         {"disabled",    "chanmodes",    "",                     NULL, DT_NOTHING,  ValidateDisabledCModes},
793         {"disabled",    "fakenonexistant",      "0",            new ValueContainerBool (&ServerConfig::DisabledDontExist),              DT_BOOLEAN,  NULL},
794
795         {"security",            "runasuser",    "",             new ValueContainerChar(&ServerConfig::SetUser),                         DT_CHARPTR, NULL},
796         {"security",            "runasgroup",   "",             new ValueContainerChar(&ServerConfig::SetGroup),                                DT_CHARPTR, NULL},
797         {"security",    "userstats",    "",                     new ValueContainerChar (&ServerConfig::UserStats),              DT_CHARPTR,  NULL},
798         {"security",    "customversion","",                     new ValueContainerChar (&ServerConfig::CustomVersion),          DT_CHARPTR,  NULL},
799         {"security",    "hidesplits",   "0",                    new ValueContainerBool (&ServerConfig::HideSplits),             DT_BOOLEAN,  NULL},
800         {"security",    "hidebans",     "0",                    new ValueContainerBool (&ServerConfig::HideBans),               DT_BOOLEAN,  NULL},
801         {"security",    "hidewhois",    "",                     new ValueContainerChar (&ServerConfig::HideWhoisServer),                DT_NOSPACES, NULL},
802         {"security",    "hidekills",    "",                     new ValueContainerChar (&ServerConfig::HideKillsServer),                DT_NOSPACES,  NULL},
803         {"security",    "operspywhois", "0",                    new ValueContainerBool (&ServerConfig::OperSpyWhois),           DT_BOOLEAN,  NULL},
804         {"security",    "restrictbannedusers",  "1",            new ValueContainerBool (&ServerConfig::RestrictBannedUsers),            DT_BOOLEAN,  NULL},
805         {"security",    "genericoper",  "0",                    new ValueContainerBool (&ServerConfig::GenericOper),            DT_BOOLEAN,  NULL},
806         {"performance", "nouserdns",    "0",                    new ValueContainerBool (&ServerConfig::NoUserDns),              DT_BOOLEAN,  NULL},
807         {"options",     "syntaxhints",  "0",                    new ValueContainerBool (&ServerConfig::SyntaxHints),            DT_BOOLEAN,  NULL},
808         {"options",     "cyclehosts",   "0",                    new ValueContainerBool (&ServerConfig::CycleHosts),             DT_BOOLEAN,  NULL},
809         {"options",     "ircumsgprefix","0",                    new ValueContainerBool (&ServerConfig::UndernetMsgPrefix),      DT_BOOLEAN,  NULL},
810         {"security",    "announceinvites", "1",                 NULL, DT_NOTHING,  ValidateInvite},
811         {"options",     "hostintopic",  "1",                    new ValueContainerBool (&ServerConfig::FullHostInTopic),        DT_BOOLEAN,  NULL},
812         {"security",    "hidemodes",    "",                     NULL, DT_NOTHING,  ValidateModeLists},
813         {"options",     "exemptchanops","",                     NULL, DT_NOTHING,  ValidateExemptChanOps},
814         {"security",    "maxtargets",   "20",                   new ValueContainerUInt (&ServerConfig::MaxTargets),             DT_INTEGER,  ValidateMaxTargets},
815         {"options",     "defaultmodes", "nt",                   new ValueContainerChar (&ServerConfig::DefaultModes),           DT_CHARPTR,  NULL},
816         {"pid",         "file",         "",                     new ValueContainerString (&ServerConfig::PID),                  DT_CHARPTR,  NULL},
817         {"whowas",      "groupsize",    "10",                   new ValueContainerInt  (&ServerConfig::WhoWasGroupSize),        DT_INTEGER,  NULL},
818         {"whowas",      "maxgroups",    "10240",                new ValueContainerInt  (&ServerConfig::WhoWasMaxGroups),        DT_INTEGER,  NULL},
819         {"whowas",      "maxkeep",      "3600",                 NULL, DT_NOTHING,  ValidateWhoWas},
820         {"die",         "value",        "",                     new ValueContainerChar (&ServerConfig::DieValue),               DT_CHARPTR,  NULL},
821         {"channels",    "users",        "20",                   new ValueContainerUInt (&ServerConfig::MaxChans),               DT_INTEGER,  NULL},
822         {"channels",    "opers",        "60",                   new ValueContainerUInt (&ServerConfig::OperMaxChans),           DT_INTEGER,  NULL},
823         {"cidr",        "ipv4clone",    "32",                   new ValueContainerInt (&ServerConfig::c_ipv4_range),            DT_INTEGER,  NULL},
824         {"cidr",        "ipv6clone",    "128",                  new ValueContainerInt (&ServerConfig::c_ipv6_range),            DT_INTEGER,  NULL},
825         {"limits",      "maxnick",      "32",                   new ValueContainerLimit (&ServerLimits::NickMax),               DT_LIMIT,  NULL},
826         {"limits",      "maxchan",      "64",                   new ValueContainerLimit (&ServerLimits::ChanMax),               DT_LIMIT,  NULL},
827         {"limits",      "maxmodes",     "20",                   new ValueContainerLimit (&ServerLimits::MaxModes),              DT_LIMIT,  NULL},
828         {"limits",      "maxident",     "11",                   new ValueContainerLimit (&ServerLimits::IdentMax),              DT_LIMIT,  NULL},
829         {"limits",      "maxquit",      "255",                  new ValueContainerLimit (&ServerLimits::MaxQuit),               DT_LIMIT,  NULL},
830         {"limits",      "maxtopic",     "307",                  new ValueContainerLimit (&ServerLimits::MaxTopic),              DT_LIMIT,  NULL},
831         {"limits",      "maxkick",      "255",                  new ValueContainerLimit (&ServerLimits::MaxKick),               DT_LIMIT,  NULL},
832         {"limits",      "maxgecos",     "128",                  new ValueContainerLimit (&ServerLimits::MaxGecos),              DT_LIMIT,  NULL},
833         {"limits",      "maxaway",      "200",                  new ValueContainerLimit (&ServerLimits::MaxAway),               DT_LIMIT,  NULL},
834         {"options",     "invitebypassmodes",    "1",                    new ValueContainerBool (&ServerConfig::InvBypassModes),         DT_BOOLEAN,  NULL},
835 };
836
837 /* These tags can occur multiple times, and therefore they have special code to read them
838  * which is different to the code for reading the singular tags listed above.
839  */
840 MultiConfig MultiValues[] = {
841
842         {"connect",
843                         {"allow",       "deny",         "password",     "timeout",      "pingfreq",
844                         "sendq",        "recvq",        "localmax",     "globalmax",    "port",
845                         "name",         "parent",       "maxchans",     "limit",        "hash",
846                         NULL},
847                         {"",            "",                             "",                     "",                     "120",
848                          "",            "",                             "3",            "3",            "0",
849                          "",            "",                             "0",        "0",                "",
850                          NULL},
851                         {DT_IPADDRESS|DT_ALLOW_WILD, DT_IPADDRESS|DT_ALLOW_WILD, DT_CHARPTR,    DT_INTEGER,     DT_INTEGER,
852                         DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,
853                         DT_NOSPACES,    DT_NOSPACES,    DT_INTEGER,     DT_INTEGER,     DT_CHARPTR},
854                         NULL,},
855
856         {"uline",
857                         {"server",      "silent",       NULL},
858                         {"",            "0",            NULL},
859                         {DT_HOSTNAME,   DT_BOOLEAN},
860                         DoULine},
861
862         {"banlist",
863                         {"chan",        "limit",        NULL},
864                         {"",            "",             NULL},
865                         {DT_CHARPTR,    DT_INTEGER},
866                         DoMaxBans},
867
868         {"module",
869                         {"name",        NULL},
870                         {"",            NULL},
871                         {DT_CHARPTR},
872                         NULL},
873
874         {"badip",
875                         {"reason",      "ipmask",       NULL},
876                         {"No reason",   "",             NULL},
877                         {DT_CHARPTR,    DT_IPADDRESS|DT_ALLOW_WILD},
878                         DoZLine},
879
880         {"badnick",
881                         {"reason",      "nick",         NULL},
882                         {"No reason",   "",             NULL},
883                         {DT_CHARPTR,    DT_CHARPTR},
884                         DoQLine},
885
886         {"badhost",
887                         {"reason",      "host",         NULL},
888                         {"No reason",   "",             NULL},
889                         {DT_CHARPTR,    DT_CHARPTR},
890                         DoKLine},
891
892         {"exception",
893                         {"reason",      "host",         NULL},
894                         {"No reason",   "",             NULL},
895                         {DT_CHARPTR,    DT_CHARPTR},
896                         DoELine},
897
898         {"type",
899                         {"name",        "classes",      NULL},
900                         {"",            "",             NULL},
901                         {DT_NOSPACES,   DT_CHARPTR},
902                         DoType},
903
904         {"class",
905                         {"name",        "commands",     "usermodes",    "chanmodes",    "privs",        NULL},
906                         {"",            "",                             "",                             "",                     "",                     NULL},
907                         {DT_NOSPACES,   DT_CHARPTR,     DT_CHARPTR,     DT_CHARPTR, DT_CHARPTR},
908                         DoClass},
909 };
910
911 /* These tags MUST occur and must ONLY occur once in the config file */
912 static const char* Once[] = { "server", "admin", "files", "power", "options" };
913
914 // WARNING: it is not safe to use most of the codebase in this function, as it
915 // will run in the config reader thread
916 void ServerConfig::Read()
917 {
918         /* Load and parse the config file, if there are any errors then explode */
919
920         if (!this->DoInclude(ServerInstance->ConfigFileName, true))
921         {
922                 valid = false;
923                 return;
924         }
925 }
926
927 void ServerConfig::Apply(ServerConfig* old, const std::string &useruid)
928 {
929         valid = true;
930         /* std::ostringstream::clear() does not clear the string itself, only the error flags. */
931         errstr.clear();
932         errstr.str().clear();
933         include_stack.clear();
934
935         /* The stuff in here may throw CoreException, be sure we're in a position to catch it. */
936         try
937         {
938                 /* Check we dont have more than one of singular tags, or any of them missing
939                  */
940                 for (int Index = 0; Index * sizeof(*Once) < sizeof(Once); Index++)
941                         CheckOnce(Once[Index]);
942
943                 for (int Index = 0; Index * sizeof(Deprecated) < sizeof(ChangedConfig); Index++)
944                 {
945                         char item[MAXBUF];
946                         *item = 0;
947                         if (ConfValue(ChangedConfig[Index].tag, ChangedConfig[Index].value, "", 0, item, MAXBUF, true) || *item)
948                                 throw CoreException(std::string("Your configuration contains a deprecated value: <") + ChangedConfig[Index].tag + ":" + ChangedConfig[Index].value + "> - " + ChangedConfig[Index].reason);
949                 }
950
951                 /* Read the values of all the tags which occur once or not at all, and call their callbacks.
952                  */
953                 for (int Index = 0; Index * sizeof(*Values) < sizeof(Values); ++Index)
954                 {
955                         char item[MAXBUF];
956                         int dt = Values[Index].datatype;
957                         bool allow_newlines = ((dt & DT_ALLOW_NEWLINE) > 0);
958                         bool allow_wild = ((dt & DT_ALLOW_WILD) > 0);
959                         dt &= ~DT_ALLOW_NEWLINE;
960                         dt &= ~DT_ALLOW_WILD;
961
962                         ConfValue(Values[Index].tag, Values[Index].value, Values[Index].default_value, 0, item, MAXBUF, allow_newlines);
963                         ValueItem vi(item);
964
965                         if (Values[Index].validation_function && !Values[Index].validation_function(this, Values[Index].tag, Values[Index].value, vi))
966                                 throw CoreException("One or more values in your configuration file failed to validate. Please see your ircd.log for more information.");
967
968                         switch (dt)
969                         {
970                                 case DT_NOSPACES:
971                                 {
972                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
973                                         ValidateNoSpaces(vi.GetString(), Values[Index].tag, Values[Index].value);
974                                         vcc->Set(this, vi);
975                                 }
976                                 break;
977                                 case DT_HOSTNAME:
978                                 {
979                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
980                                         ValidateHostname(vi.GetString(), Values[Index].tag, Values[Index].value);
981                                         vcc->Set(this, vi);
982                                 }
983                                 break;
984                                 case DT_IPADDRESS:
985                                 {
986                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
987                                         ValidateIP(vi.GetString(), Values[Index].tag, Values[Index].value, allow_wild);
988                                         vcc->Set(this, vi);
989                                 }
990                                 break;
991                                 case DT_CHANNEL:
992                                 {
993                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
994                                         if (*(vi.GetString()) && !ServerInstance->IsChannel(vi.GetString(), MAXBUF))
995                                         {
996                                                 throw CoreException("The value of <"+std::string(Values[Index].tag)+":"+Values[Index].value+"> is not a valid channel name");
997                                         }
998                                         vcc->Set(this, vi);
999                                 }
1000                                 break;
1001                                 case DT_CHARPTR:
1002                                 {
1003                                         ValueContainerChar* vcc = dynamic_cast<ValueContainerChar*>(Values[Index].val);
1004                                         if (vcc)
1005                                                 vcc->Set(this, vi);
1006                                         ValueContainerString* vcs = dynamic_cast<ValueContainerString*>(Values[Index].val);
1007                                         if (vcs)
1008                                                 vcs->Set(this, vi.GetValue());
1009                                 }
1010                                 break;
1011                                 case DT_INTEGER:
1012                                 {
1013                                         int val = vi.GetInteger();
1014                                         ValueContainerInt* vci = (ValueContainerInt*)Values[Index].val;
1015                                         vci->Set(this, val);
1016                                 }
1017                                 break;
1018                                 case DT_LIMIT:
1019                                 {
1020                                         int val = vi.GetInteger();
1021                                         ValueContainerLimit* vci = (ValueContainerLimit*)Values[Index].val;
1022                                         vci->Set(this, val);
1023                                 }
1024                                 break;
1025                                 case DT_BOOLEAN:
1026                                 {
1027                                         bool val = vi.GetBool();
1028                                         ValueContainerBool* vcb = (ValueContainerBool*)Values[Index].val;
1029                                         vcb->Set(this, val);
1030                                 }
1031                                 break;
1032                         }
1033                 }
1034
1035                 /* Read the multiple-tag items (class tags, connect tags, etc)
1036                  * and call the callbacks associated with them. We have three
1037                  * callbacks for these, a 'start', 'item' and 'end' callback.
1038                  */
1039                 for (int Index = 0; Index * sizeof(MultiConfig) < sizeof(MultiValues); ++Index)
1040                 {
1041                         int number_of_tags = ConfValueEnum(MultiValues[Index].tag);
1042
1043                         for (int tagnum = 0; tagnum < number_of_tags; ++tagnum)
1044                         {
1045                                 ValueList vl;
1046                                 for (int valuenum = 0; (MultiValues[Index].items[valuenum]) && (valuenum < MAX_VALUES_PER_TAG); ++valuenum)
1047                                 {
1048                                         int dt = MultiValues[Index].datatype[valuenum];
1049                                         bool allow_newlines =  ((dt & DT_ALLOW_NEWLINE) > 0);
1050                                         bool allow_wild = ((dt & DT_ALLOW_WILD) > 0);
1051                                         dt &= ~DT_ALLOW_NEWLINE;
1052                                         dt &= ~DT_ALLOW_WILD;
1053
1054                                         switch (dt)
1055                                         {
1056                                                 case DT_NOSPACES:
1057                                                 {
1058                                                         char item[MAXBUF];
1059                                                         if (ConfValue(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1060                                                                 vl.push_back(ValueItem(item));
1061                                                         else
1062                                                                 vl.push_back(ValueItem(""));
1063                                                         ValidateNoSpaces(vl[vl.size()-1].GetString(), MultiValues[Index].tag, MultiValues[Index].items[valuenum]);
1064                                                 }
1065                                                 break;
1066                                                 case DT_HOSTNAME:
1067                                                 {
1068                                                         char item[MAXBUF];
1069                                                         if (ConfValue(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1070                                                                 vl.push_back(ValueItem(item));
1071                                                         else
1072                                                                 vl.push_back(ValueItem(""));
1073                                                         ValidateHostname(vl[vl.size()-1].GetString(), MultiValues[Index].tag, MultiValues[Index].items[valuenum]);
1074                                                 }
1075                                                 break;
1076                                                 case DT_IPADDRESS:
1077                                                 {
1078                                                         char item[MAXBUF];
1079                                                         if (ConfValue(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1080                                                                 vl.push_back(ValueItem(item));
1081                                                         else
1082                                                                 vl.push_back(ValueItem(""));
1083                                                         ValidateIP(vl[vl.size()-1].GetString(), MultiValues[Index].tag, MultiValues[Index].items[valuenum], allow_wild);
1084                                                 }
1085                                                 break;
1086                                                 case DT_CHANNEL:
1087                                                 {
1088                                                         char item[MAXBUF];
1089                                                         if (ConfValue(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1090                                                                 vl.push_back(ValueItem(item));
1091                                                         else
1092                                                                 vl.push_back(ValueItem(""));
1093                                                         if (!ServerInstance->IsChannel(vl[vl.size()-1].GetString(), MAXBUF))
1094                                                                 throw CoreException("The value of <"+std::string(MultiValues[Index].tag)+":"+MultiValues[Index].items[valuenum]+"> number "+ConvToStr(tagnum + 1)+" is not a valid channel name");
1095                                                 }
1096                                                 break;
1097                                                 case DT_CHARPTR:
1098                                                 {
1099                                                         char item[MAXBUF];
1100                                                         if (ConfValue(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1101                                                                 vl.push_back(ValueItem(item));
1102                                                         else
1103                                                                 vl.push_back(ValueItem(""));
1104                                                 }
1105                                                 break;
1106                                                 case DT_INTEGER:
1107                                                 {
1108                                                         int item = 0;
1109                                                         if (ConfValueInteger(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item))
1110                                                                 vl.push_back(ValueItem(item));
1111                                                         else
1112                                                                 vl.push_back(ValueItem(0));
1113                                                 }
1114                                                 break;
1115                                                 case DT_BOOLEAN:
1116                                                 {
1117                                                         bool item = ConfValueBool(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum);
1118                                                         vl.push_back(ValueItem(item));
1119                                                 }
1120                                                 break;
1121                                         }
1122                                 }
1123                                 if (MultiValues[Index].validation_function)
1124                                         MultiValues[Index].validation_function(this, MultiValues[Index].tag, MultiValues[Index].items, vl, MultiValues[Index].datatype);
1125                         }
1126                 }
1127
1128                 /* Finalise the limits, increment them all by one so that we can just put assign(str, 0, val)
1129                  * rather than assign(str, 0, val + 1)
1130                  */
1131                 Limits.Finalise();
1132
1133                 // Handle special items
1134                 CrossCheckOperClassType();
1135                 CrossCheckConnectBlocks(old);
1136         }
1137         catch (CoreException &ce)
1138         {
1139                 errstr << ce.GetReason();
1140                 valid = false;
1141         }
1142
1143         // write once here, to try it out and make sure its ok
1144         ServerInstance->WritePID(this->PID);
1145
1146         FailedPortList pl;
1147         ServerInstance->BindPorts(pl);
1148
1149         /*
1150          * These values can only be set on boot. Keep their old values. Do it before we send messages so we actually have a servername.
1151          */
1152         if (old)
1153         {
1154                 memcpy(this->ServerName, old->ServerName, sizeof(this->ServerName));
1155                 memcpy(this->sid, old->sid, sizeof(this->sid));
1156         }
1157
1158         if (pl.size())
1159         {
1160                 errstr << "Not all your client ports could be bound.\nThe following port(s) failed to bind:\n";
1161
1162                 int j = 1;
1163                 for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
1164                 {
1165                         char buf[MAXBUF];
1166                         snprintf(buf, MAXBUF, "%d.   Address: %s   Reason: %s\n", j, i->first.empty() ? "<all>" : i->first.c_str(), i->second.c_str());
1167                         errstr << buf;
1168                 }
1169         }
1170
1171         User* user = useruid.empty() ? NULL : ServerInstance->FindNick(useruid);
1172
1173         valid = errstr.str().empty();
1174         if (!valid)
1175                 ServerInstance->Logs->Log("CONFIG",DEFAULT, "There were errors in your configuration file:");
1176
1177         while (errstr.good())
1178         {
1179                 std::string line;
1180                 getline(errstr, line, '\n');
1181                 if (!line.empty())
1182                 {
1183                         if (user)
1184                                 user->WriteServ("NOTICE %s :*** %s", user->nick.c_str(), line.c_str());
1185                         else
1186                                 ServerInstance->SNO->WriteGlobalSno('a', line);
1187                 }
1188
1189                 if (!old)
1190                 {
1191                         // Starting up, so print it out so it's seen. XXX this is a bit of a hack.
1192                         printf("%s\n", line.c_str());
1193                 }
1194         }
1195
1196         errstr.clear();
1197         errstr.str(std::string());
1198
1199         /* No old configuration -> initial boot, nothing more to do here */
1200         if (!old)
1201         {
1202                 if (!valid)
1203                 {
1204                         ServerInstance->Exit(EXIT_STATUS_CONFIG);
1205                 }
1206
1207                 return;
1208         }
1209
1210         // If there were errors processing configuration, don't touch modules.
1211         if (!valid)
1212                 return;
1213
1214         ApplyModules(user);
1215         for (std::vector<ConnectClass*>::iterator i = removed_classes.begin(); i != removed_classes.end(); i++)
1216         {
1217                 ConnectClass* c = *i;
1218                 if (0 == --c->RefCount)
1219                         delete c;
1220         }
1221 }
1222
1223 void ServerConfig::ApplyModules(User* user)
1224 {
1225         const std::vector<std::string> v = ServerInstance->Modules->GetAllModuleNames(0);
1226         std::vector<std::string> added_modules;
1227         std::set<std::string> removed_modules(v.begin(), v.end());
1228
1229         int new_module_count = ConfValueEnum("module");
1230         for(int i=0; i < new_module_count; i++)
1231         {
1232                 std::string name;
1233                 if (ConfValue("module", "name", i, name, false))
1234                 {
1235                         // if this module is already loaded, the erase will succeed, so we need do nothing
1236                         // otherwise, we need to add the module (which will be done later)
1237                         if (removed_modules.erase(name) == 0)
1238                                 added_modules.push_back(name);
1239                 }
1240         }
1241
1242         for (std::set<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
1243         {
1244                 // Don't remove cmd_*.so, just remove m_*.so
1245                 if (removing->c_str()[0] == 'c')
1246                         continue;
1247                 if (ServerInstance->Modules->Unload(removing->c_str()))
1248                 {
1249                         ServerInstance->SNO->WriteToSnoMask('a', "*** REHASH UNLOADED MODULE: %s",removing->c_str());
1250
1251                         if (user)
1252                                 user->WriteNumeric(RPL_UNLOADEDMODULE, "%s %s :Module %s successfully unloaded.",user->nick.c_str(), removing->c_str(), removing->c_str());
1253                         else
1254                                 ServerInstance->SNO->WriteToSnoMask('a', "Module %s successfully unloaded.", removing->c_str());
1255                 }
1256                 else
1257                 {
1258                         if (user)
1259                                 user->WriteNumeric(ERR_CANTUNLOADMODULE, "%s %s :Failed to unload module %s: %s",user->nick.c_str(), removing->c_str(), removing->c_str(), ServerInstance->Modules->LastError().c_str());
1260                         else
1261                                  ServerInstance->SNO->WriteToSnoMask('a', "Failed to unload module %s: %s", removing->c_str(), ServerInstance->Modules->LastError().c_str());
1262                 }
1263         }
1264
1265         for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
1266         {
1267                 if (ServerInstance->Modules->Load(adding->c_str()))
1268                 {
1269                         ServerInstance->SNO->WriteToSnoMask('a', "*** REHASH LOADED MODULE: %s",adding->c_str());
1270                         if (user)
1271                                 user->WriteNumeric(RPL_LOADEDMODULE, "%s %s :Module %s successfully loaded.",user->nick.c_str(), adding->c_str(), adding->c_str());
1272                         else
1273                                 ServerInstance->SNO->WriteToSnoMask('a', "Module %s successfully loaded.", adding->c_str());
1274                 }
1275                 else
1276                 {
1277                         if (user)
1278                                 user->WriteNumeric(ERR_CANTLOADMODULE, "%s %s :Failed to load module %s: %s",user->nick.c_str(), adding->c_str(), adding->c_str(), ServerInstance->Modules->LastError().c_str());
1279                         else
1280                                 ServerInstance->SNO->WriteToSnoMask('a', "Failed to load module %s: %s", adding->c_str(), ServerInstance->Modules->LastError().c_str());
1281                 }
1282         }
1283
1284         if (user)
1285                 user->WriteServ("NOTICE %s :*** Successfully rehashed server.", user->nick.c_str());
1286         else
1287                 ServerInstance->SNO->WriteToSnoMask('a', "*** Successfully rehashed server.");
1288 }
1289
1290 bool ServerConfig::LoadConf(FILE* &conf, const char* filename, bool allowexeinc)
1291 {
1292         std::string line;
1293         char ch;
1294         long linenumber = 1;
1295         long last_successful_parse = 1;
1296         bool in_tag;
1297         bool in_quote;
1298         bool in_comment;
1299         int character_count = 0;
1300
1301         in_tag = false;
1302         in_quote = false;
1303         in_comment = false;
1304
1305         ServerInstance->Logs->Log("CONFIG", DEBUG, "Reading %s", filename);
1306
1307         /* Check if the file open failed first */
1308         if (!conf)
1309         {
1310                 errstr << "LoadConf: Couldn't open config file: " << filename << std::endl;
1311                 return false;
1312         }
1313
1314         for (unsigned int t = 0; t < include_stack.size(); t++)
1315         {
1316                 if (std::string(filename) == include_stack[t])
1317                 {
1318                         errstr << "File " << filename << " is included recursively (looped inclusion)." << std::endl;
1319                         return false;
1320                 }
1321         }
1322
1323         /* It's not already included, add it to the list of files we've loaded */
1324         include_stack.push_back(filename);
1325
1326         /* Start reading characters... */
1327         while ((ch = fgetc(conf)) != EOF)
1328         {
1329                 /*
1330                  * Fix for moronic windows issue spotted by Adremelech.
1331                  * Some windows editors save text files as utf-16, which is
1332                  * a total pain in the ass to parse. Users should save in the
1333                  * right config format! If we ever see a file where the first
1334                  * byte is 0xFF or 0xFE, or the second is 0xFF or 0xFE, then
1335                  * this is most likely a utf-16 file. Bail out and insult user.
1336                  */
1337                 if ((character_count++ < 2) && (ch == '\xFF' || ch == '\xFE'))
1338                 {
1339                         errstr << "File " << filename << " cannot be read, as it is encoded in braindead UTF-16. Save your file as plain ASCII!" << std::endl;
1340                         return false;
1341                 }
1342
1343                 /*
1344                  * Here we try and get individual tags on separate lines,
1345                  * this would be so easy if we just made people format
1346                  * their config files like that, but they don't so...
1347                  * We check for a '<' and then know the line is over when
1348                  * we get a '>' not inside quotes. If we find two '<' and
1349                  * no '>' then die with an error.
1350                  */
1351
1352                 if ((ch == '#') && !in_quote)
1353                         in_comment = true;
1354
1355                 switch (ch)
1356                 {
1357                         case '\n':
1358                                 if (in_quote)
1359                                         line += '\n';
1360                                 linenumber++;
1361                         case '\r':
1362                                 if (!in_quote)
1363                                         in_comment = false;
1364                         case '\0':
1365                                 continue;
1366                         case '\t':
1367                                 ch = ' ';
1368                 }
1369
1370                 if(in_comment)
1371                         continue;
1372
1373                 /* XXX: Added by Brain, May 1st 2006 - Escaping of characters.
1374                  * Note that this WILL NOT usually allow insertion of newlines,
1375                  * because a newline is two characters long. Use it primarily to
1376                  * insert the " symbol.
1377                  *
1378                  * Note that this also involves a further check when parsing the line,
1379                  * which can be found below.
1380                  */
1381                 if ((ch == '\\') && (in_quote) && (in_tag))
1382                 {
1383                         line += ch;
1384                         char real_character;
1385                         if (!feof(conf))
1386                         {
1387                                 real_character = fgetc(conf);
1388                                 if (real_character == 'n')
1389                                         real_character = '\n';
1390                                 line += real_character;
1391                                 continue;
1392                         }
1393                         else
1394                         {
1395                                 errstr << "End of file after a \\, what did you want to escape?: " << filename << ":" << linenumber << std::endl;
1396                                 return false;
1397                         }
1398                 }
1399
1400                 if (ch != '\r')
1401                         line += ch;
1402
1403                 if ((ch != '<') && (!in_tag) && (!in_comment) && (ch > ' ') && (ch != 9))
1404                 {
1405                         errstr << "You have stray characters beyond the tag which starts at " << filename << ":" << last_successful_parse << std::endl;
1406                         return false;
1407                 }
1408
1409                 if (ch == '<')
1410                 {
1411                         if (in_tag)
1412                         {
1413                                 if (!in_quote)
1414                                 {
1415                                         errstr << "The tag at location " << filename << ":" << last_successful_parse << " was valid, but there is an error in the tag which comes after it. You are possibly missing a \" or >. Please check this." << std::endl;
1416                                         return false;
1417                                 }
1418                         }
1419                         else
1420                         {
1421                                 if (in_quote)
1422                                 {
1423                                         errstr << "Parser error: Inside a quote but not within the last valid tag, which was opened at: " << filename << ":" << last_successful_parse << std::endl;
1424                                         return false;
1425                                 }
1426                                 else
1427                                 {
1428                                         // errstr << "Opening new config tag on line " << linenumber << std::endl;
1429                                         in_tag = true;
1430                                 }
1431                         }
1432                 }
1433                 else if (ch == '"')
1434                 {
1435                         if (in_tag)
1436                         {
1437                                 if (in_quote)
1438                                 {
1439                                         // errstr << "Closing quote in config tag on line " << linenumber << std::endl;
1440                                         in_quote = false;
1441                                 }
1442                                 else
1443                                 {
1444                                         // errstr << "Opening quote in config tag on line " << linenumber << std::endl;
1445                                         in_quote = true;
1446                                 }
1447                         }
1448                         else
1449                         {
1450                                 if (in_quote)
1451                                 {
1452                                         errstr << "The tag immediately after the one at " << filename << ":" << last_successful_parse << " has a missing closing \" symbol. Please check this." << std::endl;
1453                                 }
1454                                 else
1455                                 {
1456                                         errstr << "You have opened a quote (\") beyond the tag at " << filename << ":" << last_successful_parse << " without opening a new tag. Please check this." << std::endl;
1457                                 }
1458                         }
1459                 }
1460                 else if (ch == '>')
1461                 {
1462                         if (!in_quote)
1463                         {
1464                                 if (in_tag)
1465                                 {
1466                                         // errstr << "Closing config tag on line " << linenumber << std::endl;
1467                                         in_tag = false;
1468
1469                                         /*
1470                                          * If this finds an <include> then ParseLine can simply call
1471                                          * LoadConf() and load the included config into the same ConfigDataHash
1472                                          */
1473                                         long bl = linenumber;
1474                                         if (!this->ParseLine(filename, line, linenumber, allowexeinc))
1475                                                 return false;
1476                                         last_successful_parse = linenumber;
1477
1478                                         linenumber = bl;
1479
1480                                         line.clear();
1481                                 }
1482                                 else
1483                                 {
1484                                         errstr << "You forgot to close the tag which comes immediately after the one at " << filename << ":" << last_successful_parse << std::endl;
1485                                         return false;
1486                                 }
1487                         }
1488                 }
1489         }
1490
1491         /* Fix for bug #392 - if we reach the end of a file and we are still in a quote or comment, most likely the user fucked up */
1492         if (in_comment || in_quote)
1493         {
1494                 errstr << "Reached end of file whilst still inside a quoted section or tag. This is most likely an error or there \
1495                         is a newline missing from the end of the file: " << filename << ":" << linenumber << std::endl;
1496         }
1497
1498         return true;
1499 }
1500
1501
1502 bool ServerConfig::LoadConf(FILE* &conf, const std::string &filename, bool allowexeinc)
1503 {
1504         return this->LoadConf(conf, filename.c_str(), allowexeinc);
1505 }
1506
1507 bool ServerConfig::ParseLine(const std::string &filename, std::string &line, long &linenumber, bool allowexeinc)
1508 {
1509         std::string tagname;
1510         std::string current_key;
1511         std::string current_value;
1512         KeyValList results;
1513         char last_char = 0;
1514         bool got_name;
1515         bool got_key;
1516         bool in_quote;
1517
1518         got_name = got_key = in_quote = false;
1519
1520         for(std::string::iterator c = line.begin(); c != line.end(); c++)
1521         {
1522                 if (!got_name)
1523                 {
1524                         /* We don't know the tag name yet. */
1525
1526                         if (*c != ' ')
1527                         {
1528                                 if (*c != '<')
1529                                 {
1530                                         if ((*c >= 'a' && *c <= 'z') || (*c >= 'A' && *c <='Z') || (*c >= '0' && *c <= '9') || *c == '_')
1531                                                 tagname += *c;
1532                                         else
1533                                         {
1534                                                 errstr << "Invalid character in value name of tag: '" << *c << "' in value '" << tagname << "' in filename: " << filename << ":" << linenumber << std::endl;
1535                                                 return false;
1536                                         }
1537                                 }
1538                         }
1539                         else
1540                         {
1541                                 /* We got to a space, we should have the tagname now. */
1542                                 if(tagname.length())
1543                                 {
1544                                         got_name = true;
1545                                 }
1546                         }
1547                 }
1548                 else
1549                 {
1550                         /* We have the tag name */
1551                         if (!got_key)
1552                         {
1553                                 /* We're still reading the key name */
1554                                 if ((*c != '=') && (*c != '>'))
1555                                 {
1556                                         if (*c != ' ')
1557                                         {
1558                                                 if ((*c >= 'a' && *c <= 'z') || (*c >= 'A' && *c <='Z') || (*c >= '0' && *c <= '9') || *c == '_')
1559                                                         current_key += *c;
1560                                                 else
1561                                                 {
1562                                                         errstr << "Invalid character in key: '" << *c << "' in key '" << current_key << "' in filename: " << filename << ":" << linenumber << std::endl;
1563                                                         return false;
1564                                                 }
1565                                         }
1566                                 }
1567                                 else
1568                                 {
1569                                         /* We got an '=', end of the key name. */
1570                                         got_key = true;
1571                                 }
1572                         }
1573                         else
1574                         {
1575                                 /* We have the key name, now we're looking for quotes and the value */
1576
1577                                 /* Correctly handle escaped characters here.
1578                                  * See the XXX'ed section above.
1579                                  */
1580                                 if ((*c == '\\') && (in_quote))
1581                                 {
1582                                         c++;
1583                                         if (*c == 'n')
1584                                                 current_value += '\n';
1585                                         else
1586                                                 current_value += *c;
1587                                         continue;
1588                                 }
1589                                 else if ((*c == '\\') && (!in_quote))
1590                                 {
1591                                         errstr << "You can't have an escape sequence outside of a quoted section: " << filename << ":" << linenumber << std::endl;
1592                                         return false;
1593                                 }
1594                                 else if ((*c == '\n') && (in_quote))
1595                                 {
1596                                         /* Got a 'real' \n, treat it as part of the value */
1597                                         current_value += '\n';
1598                                         continue;
1599                                 }
1600                                 else if ((*c == '\r') && (in_quote))
1601                                 {
1602                                         /* Got a \r, drop it */
1603                                         continue;
1604                                 }
1605
1606                                 if (*c == '"')
1607                                 {
1608                                         if (!in_quote)
1609                                         {
1610                                                 /* We're not already in a quote. */
1611                                                 in_quote = true;
1612                                         }
1613                                         else
1614                                         {
1615                                                 /* Leaving the quotes, we have the current value */
1616                                                 results.push_back(KeyVal(current_key, current_value));
1617
1618                                                 // std::cout << "<" << tagname << ":" << current_key << "> " << current_value << std::endl;
1619
1620                                                 in_quote = false;
1621                                                 got_key = false;
1622
1623                                                 if ((tagname == "include") && (current_key == "file"))
1624                                                 {
1625                                                         if (!this->DoInclude(current_value, allowexeinc))
1626                                                                 return false;
1627                                                 }
1628                                                 else if ((tagname == "include") && (current_key == "executable"))
1629                                                 {
1630                                                         if (!allowexeinc)
1631                                                         {
1632                                                                 errstr << "Executable includes are not allowed to use <include:executable>\n"
1633                                                                         "This could be an attempt to execute commands from a malicious remote include.\n"
1634                                                                         "If you need multiple levels of remote include, create a script to assemble the "
1635                                                                         "contents locally or include files using <include:file>\n";
1636                                                                 return false;
1637                                                         }
1638
1639                                                         /* Pipe an executable and use its stdout as config data */
1640                                                         if (!this->DoPipe(current_value))
1641                                                                 return false;
1642                                                 }
1643
1644                                                 current_key.clear();
1645                                                 current_value.clear();
1646                                         }
1647                                 }
1648                                 else
1649                                 {
1650                                         if (in_quote)
1651                                         {
1652                                                 last_char = *c;
1653                                                 current_value += *c;
1654                                         }
1655                                 }
1656                         }
1657                 }
1658         }
1659
1660         /* Finished parsing the tag, add it to the config hash */
1661         config_data.insert(std::pair<std::string, KeyValList > (tagname, results));
1662
1663         return true;
1664 }
1665
1666 bool ServerConfig::DoPipe(const std::string &file)
1667 {
1668         FILE* conf = popen(file.c_str(), "r");
1669         bool ret = false;
1670
1671         if (conf)
1672         {
1673                 ret = LoadConf(conf, file.c_str(), false);
1674                 pclose(conf);
1675         }
1676         else
1677                 errstr << "Couldn't execute: " << file << std::endl;
1678
1679         return ret;
1680 }
1681
1682 bool ServerConfig::StartsWithWindowsDriveLetter(const std::string &path)
1683 {
1684         return (path.length() > 2 && isalpha(path[0]) && path[1] == ':');
1685 }
1686
1687 bool ServerConfig::DoInclude(const std::string &file, bool allowexeinc)
1688 {
1689         std::string confpath;
1690         std::string newfile;
1691         std::string::size_type pos;
1692
1693         confpath = ServerInstance->ConfigFileName;
1694         newfile = file;
1695
1696         std::replace(newfile.begin(),newfile.end(),'\\','/');
1697         std::replace(confpath.begin(),confpath.end(),'\\','/');
1698
1699         if ((newfile[0] != '/') && (!StartsWithWindowsDriveLetter(newfile)))
1700         {
1701                 if((pos = confpath.rfind("/")) != std::string::npos)
1702                 {
1703                         /* Leaves us with just the path */
1704                         newfile = confpath.substr(0, pos) + std::string("/") + newfile;
1705                 }
1706                 else
1707                 {
1708                         errstr << "Couldn't get config path from: " << ServerInstance->ConfigFileName << std::endl;
1709                         return false;
1710                 }
1711         }
1712
1713         FILE* conf = fopen(newfile.c_str(), "r");
1714         bool ret = false;
1715
1716         if (conf)
1717         {
1718                 ret = LoadConf(conf, newfile, allowexeinc);
1719                 fclose(conf);
1720         }
1721         else
1722                 errstr << "Couldn't open config file: " << file << std::endl;
1723
1724         return ret;
1725 }
1726
1727 bool ServerConfig::ConfValue(const char* tag, const char* var, int index, char* result, int length, bool allow_linefeeds)
1728 {
1729         return ConfValue(tag, var, "", index, result, length, allow_linefeeds);
1730 }
1731
1732 bool ServerConfig::ConfValue(const char* tag, const char* var, const char* default_value, int index, char* result, int length, bool allow_linefeeds)
1733 {
1734         std::string value;
1735         bool r = ConfValue(std::string(tag), std::string(var), std::string(default_value), index, value, allow_linefeeds);
1736         strlcpy(result, value.c_str(), length);
1737         return r;
1738 }
1739
1740 bool ServerConfig::ConfValue(const std::string &tag, const std::string &var, int index, std::string &result, bool allow_linefeeds)
1741 {
1742         return ConfValue(tag, var, "", index, result, allow_linefeeds);
1743 }
1744
1745 bool ServerConfig::ConfValue(const std::string &tag, const std::string &var, const std::string &default_value, int index, std::string &result, bool allow_linefeeds)
1746 {
1747         ConfigDataHash::size_type pos = index;
1748         if (pos < config_data.count(tag))
1749         {
1750                 ConfigDataHash::iterator iter = config_data.find(tag);
1751
1752                 for(int i = 0; i < index; i++)
1753                         iter++;
1754
1755                 for(KeyValList::iterator j = iter->second.begin(); j != iter->second.end(); j++)
1756                 {
1757                         if(j->first == var)
1758                         {
1759                                 if ((!allow_linefeeds) && (j->second.find('\n') != std::string::npos))
1760                                 {
1761                                         ServerInstance->Logs->Log("CONFIG",DEFAULT, "Value of <" + tag + ":" + var+ "> contains a linefeed, and linefeeds in this value are not permitted -- stripped to spaces.");
1762                                         for (std::string::iterator n = j->second.begin(); n != j->second.end(); n++)
1763                                                 if (*n == '\n')
1764                                                         *n = ' ';
1765                                 }
1766                                 else
1767                                 {
1768                                         result = j->second;
1769                                         return true;
1770                                 }
1771                         }
1772                 }
1773                 if (!default_value.empty())
1774                 {
1775                         result = default_value;
1776                         return true;
1777                 }
1778         }
1779         else if (pos == 0)
1780         {
1781                 if (!default_value.empty())
1782                 {
1783                         result = default_value;
1784                         return true;
1785                 }
1786         }
1787         return false;
1788 }
1789
1790 bool ServerConfig::ConfValueInteger(const char* tag, const char* var, int index, int &result)
1791 {
1792         return ConfValueInteger(std::string(tag), std::string(var), "", index, result);
1793 }
1794
1795 bool ServerConfig::ConfValueInteger(const char* tag, const char* var, const char* default_value, int index, int &result)
1796 {
1797         return ConfValueInteger(std::string(tag), std::string(var), std::string(default_value), index, result);
1798 }
1799
1800 bool ServerConfig::ConfValueInteger(const std::string &tag, const std::string &var, int index, int &result)
1801 {
1802         return ConfValueInteger(tag, var, "", index, result);
1803 }
1804
1805 bool ServerConfig::ConfValueInteger(const std::string &tag, const std::string &var, const std::string &default_value, int index, int &result)
1806 {
1807         std::string value;
1808         std::istringstream stream;
1809         bool r = ConfValue(tag, var, default_value, index, value);
1810         stream.str(value);
1811         if(!(stream >> result))
1812                 return false;
1813         else
1814         {
1815                 if (!value.empty())
1816                 {
1817                         if (value.substr(0,2) == "0x")
1818                         {
1819                                 char* endptr;
1820
1821                                 value.erase(0,2);
1822                                 result = strtol(value.c_str(), &endptr, 16);
1823
1824                                 /* No digits found */
1825                                 if (endptr == value.c_str())
1826                                         return false;
1827                         }
1828                         else
1829                         {
1830                                 char denominator = *(value.end() - 1);
1831                                 switch (toupper(denominator))
1832                                 {
1833                                         case 'K':
1834                                                 /* Kilobytes -> bytes */
1835                                                 result = result * 1024;
1836                                         break;
1837                                         case 'M':
1838                                                 /* Megabytes -> bytes */
1839                                                 result = result * 1024 * 1024;
1840                                         break;
1841                                         case 'G':
1842                                                 /* Gigabytes -> bytes */
1843                                                 result = result * 1024 * 1024 * 1024;
1844                                         break;
1845                                 }
1846                         }
1847                 }
1848         }
1849         return r;
1850 }
1851
1852
1853 bool ServerConfig::ConfValueBool(const char* tag, const char* var, int index)
1854 {
1855         return ConfValueBool(std::string(tag), std::string(var), "", index);
1856 }
1857
1858 bool ServerConfig::ConfValueBool(const char* tag, const char* var, const char* default_value, int index)
1859 {
1860         return ConfValueBool(std::string(tag), std::string(var), std::string(default_value), index);
1861 }
1862
1863 bool ServerConfig::ConfValueBool(const std::string &tag, const std::string &var, int index)
1864 {
1865         return ConfValueBool(tag, var, "", index);
1866 }
1867
1868 bool ServerConfig::ConfValueBool(const std::string &tag, const std::string &var, const std::string &default_value, int index)
1869 {
1870         std::string result;
1871         if(!ConfValue(tag, var, default_value, index, result))
1872                 return false;
1873
1874         return ((result == "yes") || (result == "true") || (result == "1"));
1875 }
1876
1877 int ServerConfig::ConfValueEnum(const char* tag)
1878 {
1879         return config_data.count(tag);
1880 }
1881
1882 int ServerConfig::ConfValueEnum(const std::string &tag)
1883 {
1884         return config_data.count(tag);
1885 }
1886
1887 int ServerConfig::ConfVarEnum(const char* tag, int index)
1888 {
1889         return ConfVarEnum(std::string(tag), index);
1890 }
1891
1892 int ServerConfig::ConfVarEnum(const std::string &tag, int index)
1893 {
1894         ConfigDataHash::size_type pos = index;
1895
1896         if (pos < config_data.count(tag))
1897         {
1898                 ConfigDataHash::const_iterator iter = config_data.find(tag);
1899
1900                 for(int i = 0; i < index; i++)
1901                         iter++;
1902
1903                 return iter->second.size();
1904         }
1905
1906         return 0;
1907 }
1908
1909 /** Read the contents of a file located by `fname' into a file_cache pointed at by `F'.
1910  */
1911 bool ServerConfig::ReadFile(file_cache &F, const char* fname)
1912 {
1913         if (!fname || !*fname)
1914                 return false;
1915
1916         FILE* file = NULL;
1917         char linebuf[MAXBUF];
1918
1919         F.clear();
1920
1921         if ((*fname != '/') && (*fname != '\\') && (!StartsWithWindowsDriveLetter(fname)))
1922         {
1923                 std::string::size_type pos;
1924                 std::string confpath = ServerInstance->ConfigFileName;
1925                 std::string newfile = fname;
1926
1927                 if (((pos = confpath.rfind("/"))) != std::string::npos)
1928                         newfile = confpath.substr(0, pos) + std::string("/") + fname;
1929                 else if (((pos = confpath.rfind("\\"))) != std::string::npos)
1930                         newfile = confpath.substr(0, pos) + std::string("\\") + fname;
1931
1932                 ServerInstance->Logs->Log("config", DEBUG, "Filename: %s", newfile.c_str());
1933
1934                 if (!FileExists(newfile.c_str()))
1935                         return false;
1936                 file =  fopen(newfile.c_str(), "r");
1937         }
1938         else
1939         {
1940                 if (!FileExists(fname))
1941                         return false;
1942                 file =  fopen(fname, "r");
1943         }
1944
1945         if (file)
1946         {
1947                 while (!feof(file))
1948                 {
1949                         if (fgets(linebuf, sizeof(linebuf), file))
1950                                 linebuf[strlen(linebuf)-1] = 0;
1951                         else
1952                                 *linebuf = 0;
1953
1954                         F.push_back(*linebuf ? linebuf : " ");
1955                 }
1956
1957                 fclose(file);
1958         }
1959         else
1960                 return false;
1961
1962         return true;
1963 }
1964
1965 bool ServerConfig::FileExists(const char* file)
1966 {
1967         struct stat sb;
1968         if (stat(file, &sb) == -1)
1969                 return false;
1970
1971         if ((sb.st_mode & S_IFDIR) > 0)
1972                 return false;
1973
1974         FILE *input;
1975         if ((input = fopen (file, "r")) == NULL)
1976                 return false;
1977         else
1978         {
1979                 fclose(input);
1980                 return true;
1981         }
1982 }
1983
1984 const char* ServerConfig::CleanFilename(const char* name)
1985 {
1986         const char* p = name + strlen(name);
1987         while ((p != name) && (*p != '/') && (*p != '\\')) p--;
1988         return (p != name ? ++p : p);
1989 }
1990
1991
1992 std::string ServerConfig::GetFullProgDir()
1993 {
1994         char buffer[PATH_MAX];
1995 #ifdef WINDOWS
1996         /* Windows has specific api calls to get the exe path that never fail.
1997          * For once, windows has something of use, compared to the POSIX code
1998          * for this, this is positively neato.
1999          */
2000         if (GetModuleFileName(NULL, buffer, MAX_PATH))
2001         {
2002                 std::string fullpath = buffer;
2003                 std::string::size_type n = fullpath.rfind("\\inspircd.exe");
2004                 return std::string(fullpath, 0, n);
2005         }
2006 #else
2007         // Get the current working directory
2008         if (getcwd(buffer, PATH_MAX))
2009         {
2010                 std::string remainder = this->argv[0];
2011
2012                 /* Does argv[0] start with /? its a full path, use it */
2013                 if (remainder[0] == '/')
2014                 {
2015                         std::string::size_type n = remainder.rfind("/inspircd");
2016                         return std::string(remainder, 0, n);
2017                 }
2018
2019                 std::string fullpath = std::string(buffer) + "/" + remainder;
2020                 std::string::size_type n = fullpath.rfind("/inspircd");
2021                 return std::string(fullpath, 0, n);
2022         }
2023 #endif
2024         return "/";
2025 }
2026
2027 std::string ServerConfig::GetSID()
2028 {
2029         return sid;
2030 }
2031
2032 ValueItem::ValueItem(int value)
2033 {
2034         std::stringstream n;
2035         n << value;
2036         v = n.str();
2037 }
2038
2039 ValueItem::ValueItem(bool value)
2040 {
2041         std::stringstream n;
2042         n << value;
2043         v = n.str();
2044 }
2045
2046 void ValueItem::Set(const std::string& value)
2047 {
2048         v = value;
2049 }
2050
2051 void ValueItem::Set(int value)
2052 {
2053         std::stringstream n;
2054         n << value;
2055         v = n.str();
2056 }
2057
2058 int ValueItem::GetInteger()
2059 {
2060         if (v.empty())
2061                 return 0;
2062         return atoi(v.c_str());
2063 }
2064
2065 const char* ValueItem::GetString() const
2066 {
2067         return v.c_str();
2068 }
2069
2070 bool ValueItem::GetBool()
2071 {
2072         return (GetInteger() || v == "yes" || v == "true");
2073 }
2074
2075
2076 void ConfigReaderThread::Run()
2077 {
2078         Config = new ServerConfig;
2079         Config->Read();
2080         done = true;
2081 }
2082
2083 void ConfigReaderThread::Finish()
2084 {
2085         ServerConfig* old = ServerInstance->Config;
2086         ServerInstance->Logs->Log("CONFIG",DEBUG,"Switching to new configuration...");
2087         ServerInstance->Logs->CloseLogs();
2088         ServerInstance->Config = this->Config;
2089         ServerInstance->Logs->OpenFileLogs();
2090         Config->Apply(old, TheUserUID);
2091
2092         if (Config->valid)
2093         {
2094                 /*
2095                  * Apply the changed configuration from the rehash.
2096                  *
2097                  * XXX: The order of these is IMPORTANT, do not reorder them without testing
2098                  * thoroughly!!!
2099                  */
2100                 ServerInstance->XLines->CheckELines();
2101                 ServerInstance->XLines->CheckELines();
2102                 ServerInstance->XLines->ApplyLines();
2103                 ServerInstance->Res->Rehash();
2104                 ServerInstance->ResetMaxBans();
2105                 Config->ApplyDisabledCommands(Config->DisabledCommands);
2106                 User* user = TheUserUID.empty() ? ServerInstance->FindNick(TheUserUID) : NULL;
2107                 FOREACH_MOD(I_OnRehash, OnRehash(user));
2108                 ServerInstance->BuildISupport();
2109
2110                 delete old;
2111         }
2112         else
2113         {
2114                 // whoops, abort!
2115                 ServerInstance->Logs->CloseLogs();
2116                 ServerInstance->Config = old;
2117                 ServerInstance->Logs->OpenFileLogs();
2118                 delete this->Config;
2119         }
2120 }
2121
2122 template<>
2123 void ValueContainer<char[MAXBUF]>::Set(ServerConfig* conf, ValueItem const& item)
2124 {
2125         strlcpy(conf->*vptr, item.GetString(), MAXBUF);
2126 }