]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/configreader.cpp
Utilise OnRawMode and OnPostTopicChange hooks to write a dynamic conf of permchannels...
[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(InspIRCd* Instance) : ServerInstance(Instance)
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 = Instance->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                 conf->GetInstance()->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() > conf->GetInstance()->SE->GetMaxFds()))
211         {
212                 conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"WARNING: <performance:softlimit> value is greater than %d or less than 0, set to %d.",conf->GetInstance()->SE->GetMaxFds(),conf->GetInstance()->SE->GetMaxFds());
213                 data.Set(conf->GetInstance()->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                 conf->GetInstance()->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                 conf->GetInstance()->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                                         conf->GetInstance()->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                                 conf->GetInstance()->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                         conf->GetInstance()->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         conf->GetInstance()->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                 conf->GetInstance()->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                 conf->GetInstance()->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                 conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"<performance:maxwho> size out of range, setting to default of 128.");
342                 data.Set(128);
343         }
344         return true;
345 }
346
347 static bool ValidateHalfOp(ServerConfig* conf, const char*, const char*, ValueItem &data)
348 {
349         ModeHandler* mh = conf->GetInstance()->Modes->FindMode('h', MODETYPE_CHANNEL);
350         if (data.GetBool() && !mh) {
351                 conf->GetInstance()->Logs->Log("CONFIG", DEFAULT, "Enabling halfop mode.");
352                 mh = new ModeChannelHalfOp(conf->GetInstance());
353                 conf->GetInstance()->Modes->AddMode(mh);
354         } else if (!data.GetBool() && mh) {
355                 conf->GetInstance()->Logs->Log("CONFIG", DEFAULT, "Disabling halfop mode.");
356                 conf->GetInstance()->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         conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"Validating server id");
416
417         const char *sid = data.GetString();
418
419         if (*sid && !conf->GetInstance()->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 = conf->GetInstance()->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                 conf->GetInstance()->Logs->Log("CONFIG",DEFAULT,"WARNING: <whowas:maxkeep> value less than 3600, setting to default 3600");
443         }
444
445         Module* whowas = conf->GetInstance()->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(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, ipmask);
480         if (!conf->GetInstance()->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(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, nick);
492         if (!conf->GetInstance()->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 = conf->GetInstance()->XLines;
504
505         IdentHostPair ih = xlm->IdentSplit(host);
506
507         KLine* kl = new KLine(conf->GetInstance(), conf->GetInstance()->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 = conf->GetInstance()->XLines;
519
520         IdentHostPair ih = xlm->IdentSplit(host);
521
522         ELine* el = new ELine(conf->GetInstance(), conf->GetInstance()->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                                 me->sendqmax = atol(tmpv.c_str());
692                         if (ConfValue("connect", "recvq", i, tmpv, false))
693                                 me->recvqmax = atol(tmpv.c_str());
694                         if (ConfValue("connect", "localmax", i, tmpv, false))
695                                 me->maxlocal = atol(tmpv.c_str());
696                         if (ConfValue("connect", "globalmax", i, tmpv, false))
697                                 me->maxglobal = atol(tmpv.c_str());
698                         if (ConfValue("connect", "port", i, tmpv, false))
699                                 me->port = atol(tmpv.c_str());
700                         if (ConfValue("connect", "maxchans", i, tmpv, false))
701                                 me->maxchans = atol(tmpv.c_str());
702                         if (ConfValue("connect", "limit", i, tmpv, false))
703                                 me->limit = atol(tmpv.c_str());
704
705                         ClassMap::iterator oldMask = oldBlocksByMask.find(typeMask);
706                         if (oldMask != oldBlocksByMask.end())
707                         {
708                                 ConnectClass* old = oldMask->second;
709                                 oldBlocksByMask.erase(oldMask);
710                                 old->Update(me);
711                                 delete me;
712                                 me = old;
713                         }
714                         newBlocksByMask[typeMask] = me;
715                         Classes[i] = me;
716                 }
717         }
718
719         for(ClassMap::iterator toRemove = oldBlocksByMask.begin(); toRemove != oldBlocksByMask.end(); toRemove++)
720         {
721                 removed_classes.push_back(toRemove->second);
722         }
723 }
724
725
726 static const Deprecated ChangedConfig[] = {
727         {"options", "hidelinks",                "has been moved to <security:hidelinks> as of 1.2a3"},
728         {"options", "hidewhois",                "has been moved to <security:hidewhois> as of 1.2a3"},
729         {"options", "userstats",                "has been moved to <security:userstats> as of 1.2a3"},
730         {"options", "customversion",    "has been moved to <security:customversion> as of 1.2a3"},
731         {"options", "hidesplits",               "has been moved to <security:hidesplits> as of 1.2a3"},
732         {"options", "hidebans",         "has been moved to <security:hidebans> as of 1.2a3"},
733         {"options", "hidekills",                "has been moved to <security:hidekills> as of 1.2a3"},
734         {"options", "operspywhois",             "has been moved to <security:operspywhois> as of 1.2a3"},
735         {"options", "announceinvites",  "has been moved to <security:announceinvites> as of 1.2a3"},
736         {"options", "hidemodes",                "has been moved to <security:hidemodes> as of 1.2a3"},
737         {"options", "maxtargets",               "has been moved to <security:maxtargets> as of 1.2a3"},
738         {"options",     "nouserdns",            "has been moved to <performance:nouserdns> as of 1.2a3"},
739         {"options",     "maxwho",               "has been moved to <performance:maxwho> as of 1.2a3"},
740         {"options",     "softlimit",            "has been moved to <performance:softlimit> as of 1.2a3"},
741         {"options", "somaxconn",                "has been moved to <performance:somaxconn> as of 1.2a3"},
742         {"options", "netbuffersize",    "has been moved to <performance:netbuffersize> as of 1.2a3"},
743         {"options", "maxwho",           "has been moved to <performance:maxwho> as of 1.2a3"},
744         {"options",     "loglevel",             "1.2 does not use the loglevel value. Please define <log> tags instead."},
745         {"die",     "value",            "has always been deprecated"},
746 };
747
748 /* These tags can occur ONCE or not at all */
749 static const InitialConfig Values[] = {
750         {"performance", "softlimit",    "0",                    new ValueContainerUInt (&ServerConfig::SoftLimit),              DT_INTEGER,  ValidateSoftLimit},
751         {"performance", "somaxconn",    SOMAXCONN_S,            new ValueContainerInt  (&ServerConfig::MaxConn),                DT_INTEGER,  ValidateMaxConn},
752         {"options",     "moronbanner",  "You're banned!",       new ValueContainerChar (&ServerConfig::MoronBanner),            DT_CHARPTR,  NULL},
753         {"server",      "name",         "",                     new ValueContainerChar (&ServerConfig::ServerName),             DT_HOSTNAME, ValidateServerName},
754         {"server",      "description",  "Configure Me",         new ValueContainerChar (&ServerConfig::ServerDesc),             DT_CHARPTR,  NULL},
755         {"server",      "network",      "Network",              new ValueContainerChar (&ServerConfig::Network),                        DT_NOSPACES, NULL},
756         {"server",      "id",           "",                     new ValueContainerChar (&ServerConfig::sid),                    DT_CHARPTR,  ValidateSID},
757         {"admin",       "name",         "",                     new ValueContainerChar (&ServerConfig::AdminName),              DT_CHARPTR,  NULL},
758         {"admin",       "email",        "Mis@configu.red",      new ValueContainerChar (&ServerConfig::AdminEmail),             DT_CHARPTR,  NULL},
759         {"admin",       "nick",         "Misconfigured",        new ValueContainerChar (&ServerConfig::AdminNick),              DT_CHARPTR,  NULL},
760         {"files",       "motd",         "",                     new ValueContainerChar (&ServerConfig::motd),                   DT_CHARPTR,  ValidateMotd},
761         {"files",       "rules",        "",                     new ValueContainerChar (&ServerConfig::rules),                  DT_CHARPTR,  ValidateRules},
762         {"power",       "diepass",      "",                     new ValueContainerChar (&ServerConfig::diepass),                        DT_CHARPTR,  ValidateNotEmpty},
763         {"power",       "pause",        "",                     new ValueContainerInt  (&ServerConfig::DieDelay),               DT_INTEGER,  NULL},
764         {"power",       "hash",         "",                     new ValueContainerChar (&ServerConfig::powerhash),              DT_CHARPTR,  NULL},
765         {"power",       "restartpass",  "",                     new ValueContainerChar (&ServerConfig::restartpass),            DT_CHARPTR,  ValidateNotEmpty},
766         {"options",     "prefixquit",   "",                     new ValueContainerChar (&ServerConfig::PrefixQuit),             DT_CHARPTR,  NULL},
767         {"options",     "suffixquit",   "",                     new ValueContainerChar (&ServerConfig::SuffixQuit),             DT_CHARPTR,  NULL},
768         {"options",     "fixedquit",    "",                     new ValueContainerChar (&ServerConfig::FixedQuit),              DT_CHARPTR,  NULL},
769         {"options",     "prefixpart",   "",                     new ValueContainerChar (&ServerConfig::PrefixPart),             DT_CHARPTR,  NULL},
770         {"options",     "suffixpart",   "",                     new ValueContainerChar (&ServerConfig::SuffixPart),             DT_CHARPTR,  NULL},
771         {"options",     "fixedpart",    "",                     new ValueContainerChar (&ServerConfig::FixedPart),              DT_CHARPTR,  NULL},
772         {"performance", "netbuffersize","10240",                new ValueContainerInt  (&ServerConfig::NetBufferSize),          DT_INTEGER,  ValidateNetBufferSize},
773         {"performance", "maxwho",       "128",                  new ValueContainerInt  (&ServerConfig::MaxWhoResults),          DT_INTEGER,  ValidateMaxWho},
774         {"options",     "allowhalfop",  "0",                    new ValueContainerBool (&ServerConfig::AllowHalfop),            DT_BOOLEAN,  ValidateHalfOp},
775         {"dns",         "server",       "",                     new ValueContainerChar (&ServerConfig::DNSServer),              DT_IPADDRESS,ValidateDnsServer},
776         {"dns",         "timeout",      "5",                    new ValueContainerInt  (&ServerConfig::dns_timeout),            DT_INTEGER,  NULL},
777         {"options",     "moduledir",    MOD_PATH,               new ValueContainerString (&ServerConfig::ModPath),                      DT_CHARPTR,  NULL},
778         {"disabled",    "commands",     "",                     new ValueContainerChar (&ServerConfig::DisabledCommands),       DT_CHARPTR,  NULL},
779         {"disabled",    "usermodes",    "",                     NULL, DT_NOTHING,  ValidateDisabledUModes},
780         {"disabled",    "chanmodes",    "",                     NULL, DT_NOTHING,  ValidateDisabledCModes},
781         {"disabled",    "fakenonexistant",      "0",            new ValueContainerBool (&ServerConfig::DisabledDontExist),              DT_BOOLEAN,  NULL},
782
783         {"security",            "runasuser",    "",             new ValueContainerChar(&ServerConfig::SetUser),                         DT_CHARPTR, NULL},
784         {"security",            "runasgroup",   "",             new ValueContainerChar(&ServerConfig::SetGroup),                                DT_CHARPTR, NULL},
785         {"security",    "userstats",    "",                     new ValueContainerChar (&ServerConfig::UserStats),              DT_CHARPTR,  NULL},
786         {"security",    "customversion","",                     new ValueContainerChar (&ServerConfig::CustomVersion),          DT_CHARPTR,  NULL},
787         {"security",    "hidesplits",   "0",                    new ValueContainerBool (&ServerConfig::HideSplits),             DT_BOOLEAN,  NULL},
788         {"security",    "hidebans",     "0",                    new ValueContainerBool (&ServerConfig::HideBans),               DT_BOOLEAN,  NULL},
789         {"security",    "hidewhois",    "",                     new ValueContainerChar (&ServerConfig::HideWhoisServer),                DT_NOSPACES, NULL},
790         {"security",    "hidekills",    "",                     new ValueContainerChar (&ServerConfig::HideKillsServer),                DT_NOSPACES,  NULL},
791         {"security",    "operspywhois", "0",                    new ValueContainerBool (&ServerConfig::OperSpyWhois),           DT_BOOLEAN,  NULL},
792         {"security",    "restrictbannedusers",  "1",            new ValueContainerBool (&ServerConfig::RestrictBannedUsers),            DT_BOOLEAN,  NULL},
793         {"security",    "genericoper",  "0",                    new ValueContainerBool (&ServerConfig::GenericOper),            DT_BOOLEAN,  NULL},
794         {"performance", "nouserdns",    "0",                    new ValueContainerBool (&ServerConfig::NoUserDns),              DT_BOOLEAN,  NULL},
795         {"options",     "syntaxhints",  "0",                    new ValueContainerBool (&ServerConfig::SyntaxHints),            DT_BOOLEAN,  NULL},
796         {"options",     "cyclehosts",   "0",                    new ValueContainerBool (&ServerConfig::CycleHosts),             DT_BOOLEAN,  NULL},
797         {"options",     "ircumsgprefix","0",                    new ValueContainerBool (&ServerConfig::UndernetMsgPrefix),      DT_BOOLEAN,  NULL},
798         {"security",    "announceinvites", "1",                 NULL, DT_NOTHING,  ValidateInvite},
799         {"options",     "hostintopic",  "1",                    new ValueContainerBool (&ServerConfig::FullHostInTopic),        DT_BOOLEAN,  NULL},
800         {"security",    "hidemodes",    "",                     NULL, DT_NOTHING,  ValidateModeLists},
801         {"options",     "exemptchanops","",                     NULL, DT_NOTHING,  ValidateExemptChanOps},
802         {"security",    "maxtargets",   "20",                   new ValueContainerUInt (&ServerConfig::MaxTargets),             DT_INTEGER,  ValidateMaxTargets},
803         {"options",     "defaultmodes", "nt",                   new ValueContainerChar (&ServerConfig::DefaultModes),           DT_CHARPTR,  NULL},
804         {"pid",         "file",         "",                     new ValueContainerString (&ServerConfig::PID),                  DT_CHARPTR,  NULL},
805         {"whowas",      "groupsize",    "10",                   new ValueContainerInt  (&ServerConfig::WhoWasGroupSize),        DT_INTEGER,  NULL},
806         {"whowas",      "maxgroups",    "10240",                new ValueContainerInt  (&ServerConfig::WhoWasMaxGroups),        DT_INTEGER,  NULL},
807         {"whowas",      "maxkeep",      "3600",                 NULL, DT_NOTHING,  ValidateWhoWas},
808         {"die",         "value",        "",                     new ValueContainerChar (&ServerConfig::DieValue),               DT_CHARPTR,  NULL},
809         {"channels",    "users",        "20",                   new ValueContainerUInt (&ServerConfig::MaxChans),               DT_INTEGER,  NULL},
810         {"channels",    "opers",        "60",                   new ValueContainerUInt (&ServerConfig::OperMaxChans),           DT_INTEGER,  NULL},
811         {"cidr",        "ipv4clone",    "32",                   new ValueContainerInt (&ServerConfig::c_ipv4_range),            DT_INTEGER,  NULL},
812         {"cidr",        "ipv6clone",    "128",                  new ValueContainerInt (&ServerConfig::c_ipv6_range),            DT_INTEGER,  NULL},
813         {"limits",      "maxnick",      "32",                   new ValueContainerLimit (&ServerLimits::NickMax),               DT_LIMIT,  NULL},
814         {"limits",      "maxchan",      "64",                   new ValueContainerLimit (&ServerLimits::ChanMax),               DT_LIMIT,  NULL},
815         {"limits",      "maxmodes",     "20",                   new ValueContainerLimit (&ServerLimits::MaxModes),              DT_LIMIT,  NULL},
816         {"limits",      "maxident",     "11",                   new ValueContainerLimit (&ServerLimits::IdentMax),              DT_LIMIT,  NULL},
817         {"limits",      "maxquit",      "255",                  new ValueContainerLimit (&ServerLimits::MaxQuit),               DT_LIMIT,  NULL},
818         {"limits",      "maxtopic",     "307",                  new ValueContainerLimit (&ServerLimits::MaxTopic),              DT_LIMIT,  NULL},
819         {"limits",      "maxkick",      "255",                  new ValueContainerLimit (&ServerLimits::MaxKick),               DT_LIMIT,  NULL},
820         {"limits",      "maxgecos",     "128",                  new ValueContainerLimit (&ServerLimits::MaxGecos),              DT_LIMIT,  NULL},
821         {"limits",      "maxaway",      "200",                  new ValueContainerLimit (&ServerLimits::MaxAway),               DT_LIMIT,  NULL},
822         {"options",     "invitebypassmodes",    "1",                    new ValueContainerBool (&ServerConfig::InvBypassModes),         DT_BOOLEAN,  NULL},
823 };
824
825 /* These tags can occur multiple times, and therefore they have special code to read them
826  * which is different to the code for reading the singular tags listed above.
827  */
828 MultiConfig MultiValues[] = {
829
830         {"connect",
831                         {"allow",       "deny",         "password",     "timeout",      "pingfreq",
832                         "sendq",        "recvq",        "localmax",     "globalmax",    "port",
833                         "name",         "parent",       "maxchans",     "limit",        "hash",
834                         NULL},
835                         {"",            "",                             "",                     "",                     "120",
836                          "",            "",                             "3",            "3",            "0",
837                          "",            "",                             "0",        "0",                "",
838                          NULL},
839                         {DT_IPADDRESS|DT_ALLOW_WILD, DT_IPADDRESS|DT_ALLOW_WILD, DT_CHARPTR,    DT_INTEGER,     DT_INTEGER,
840                         DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,
841                         DT_NOSPACES,    DT_NOSPACES,    DT_INTEGER,     DT_INTEGER,     DT_CHARPTR},
842                         NULL,},
843
844         {"uline",
845                         {"server",      "silent",       NULL},
846                         {"",            "0",            NULL},
847                         {DT_HOSTNAME,   DT_BOOLEAN},
848                         DoULine},
849
850         {"banlist",
851                         {"chan",        "limit",        NULL},
852                         {"",            "",             NULL},
853                         {DT_CHARPTR,    DT_INTEGER},
854                         DoMaxBans},
855
856         {"module",
857                         {"name",        NULL},
858                         {"",            NULL},
859                         {DT_CHARPTR},
860                         NULL},
861
862         {"badip",
863                         {"reason",      "ipmask",       NULL},
864                         {"No reason",   "",             NULL},
865                         {DT_CHARPTR,    DT_IPADDRESS|DT_ALLOW_WILD},
866                         DoZLine},
867
868         {"badnick",
869                         {"reason",      "nick",         NULL},
870                         {"No reason",   "",             NULL},
871                         {DT_CHARPTR,    DT_CHARPTR},
872                         DoQLine},
873
874         {"badhost",
875                         {"reason",      "host",         NULL},
876                         {"No reason",   "",             NULL},
877                         {DT_CHARPTR,    DT_CHARPTR},
878                         DoKLine},
879
880         {"exception",
881                         {"reason",      "host",         NULL},
882                         {"No reason",   "",             NULL},
883                         {DT_CHARPTR,    DT_CHARPTR},
884                         DoELine},
885
886         {"type",
887                         {"name",        "classes",      NULL},
888                         {"",            "",             NULL},
889                         {DT_NOSPACES,   DT_CHARPTR},
890                         DoType},
891
892         {"class",
893                         {"name",        "commands",     "usermodes",    "chanmodes",    "privs",        NULL},
894                         {"",            "",                             "",                             "",                     "",                     NULL},
895                         {DT_NOSPACES,   DT_CHARPTR,     DT_CHARPTR,     DT_CHARPTR, DT_CHARPTR},
896                         DoClass},
897 };
898
899 /* These tags MUST occur and must ONLY occur once in the config file */
900 static const char* Once[] = { "server", "admin", "files", "power", "options" };
901
902 // WARNING: it is not safe to use most of the codebase in this function, as it
903 // will run in the config reader thread
904 void ServerConfig::Read()
905 {
906         /* Load and parse the config file, if there are any errors then explode */
907
908         if (!this->DoInclude(ServerInstance->ConfigFileName))
909         {
910                 valid = false;
911                 return;
912         }
913 }
914
915 void ServerConfig::Apply(ServerConfig* old, const std::string &useruid)
916 {
917         valid = true;
918         /* std::ostringstream::clear() does not clear the string itself, only the error flags. */
919         errstr.clear();
920         errstr.str().clear();
921         include_stack.clear();
922
923         /* The stuff in here may throw CoreException, be sure we're in a position to catch it. */
924         try
925         {
926                 /* Check we dont have more than one of singular tags, or any of them missing
927                  */
928                 for (int Index = 0; Index * sizeof(*Once) < sizeof(Once); Index++)
929                         CheckOnce(Once[Index]);
930
931                 for (int Index = 0; Index * sizeof(Deprecated) < sizeof(ChangedConfig); Index++)
932                 {
933                         char item[MAXBUF];
934                         *item = 0;
935                         if (ConfValue(ChangedConfig[Index].tag, ChangedConfig[Index].value, "", 0, item, MAXBUF, true) || *item)
936                                 throw CoreException(std::string("Your configuration contains a deprecated value: <") + ChangedConfig[Index].tag + ":" + ChangedConfig[Index].value + "> - " + ChangedConfig[Index].reason);
937                 }
938
939                 /* Read the values of all the tags which occur once or not at all, and call their callbacks.
940                  */
941                 for (int Index = 0; Index * sizeof(*Values) < sizeof(Values); ++Index)
942                 {
943                         char item[MAXBUF];
944                         int dt = Values[Index].datatype;
945                         bool allow_newlines = ((dt & DT_ALLOW_NEWLINE) > 0);
946                         bool allow_wild = ((dt & DT_ALLOW_WILD) > 0);
947                         dt &= ~DT_ALLOW_NEWLINE;
948                         dt &= ~DT_ALLOW_WILD;
949
950                         ConfValue(Values[Index].tag, Values[Index].value, Values[Index].default_value, 0, item, MAXBUF, allow_newlines);
951                         ValueItem vi(item);
952
953                         if (Values[Index].validation_function && !Values[Index].validation_function(this, Values[Index].tag, Values[Index].value, vi))
954                                 throw CoreException("One or more values in your configuration file failed to validate. Please see your ircd.log for more information.");
955
956                         switch (dt)
957                         {
958                                 case DT_NOSPACES:
959                                 {
960                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
961                                         ValidateNoSpaces(vi.GetString(), Values[Index].tag, Values[Index].value);
962                                         vcc->Set(this, vi);
963                                 }
964                                 break;
965                                 case DT_HOSTNAME:
966                                 {
967                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
968                                         ValidateHostname(vi.GetString(), Values[Index].tag, Values[Index].value);
969                                         vcc->Set(this, vi);
970                                 }
971                                 break;
972                                 case DT_IPADDRESS:
973                                 {
974                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
975                                         ValidateIP(vi.GetString(), Values[Index].tag, Values[Index].value, allow_wild);
976                                         vcc->Set(this, vi);
977                                 }
978                                 break;
979                                 case DT_CHANNEL:
980                                 {
981                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
982                                         if (*(vi.GetString()) && !ServerInstance->IsChannel(vi.GetString(), MAXBUF))
983                                         {
984                                                 throw CoreException("The value of <"+std::string(Values[Index].tag)+":"+Values[Index].value+"> is not a valid channel name");
985                                         }
986                                         vcc->Set(this, vi);
987                                 }
988                                 break;
989                                 case DT_CHARPTR:
990                                 {
991                                         ValueContainerChar* vcc = dynamic_cast<ValueContainerChar*>(Values[Index].val);
992                                         if (vcc)
993                                                 vcc->Set(this, vi);
994                                         ValueContainerString* vcs = dynamic_cast<ValueContainerString*>(Values[Index].val);
995                                         if (vcs)
996                                                 vcs->Set(this, vi.GetValue());
997                                 }
998                                 break;
999                                 case DT_INTEGER:
1000                                 {
1001                                         int val = vi.GetInteger();
1002                                         ValueContainerInt* vci = (ValueContainerInt*)Values[Index].val;
1003                                         vci->Set(this, val);
1004                                 }
1005                                 break;
1006                                 case DT_LIMIT:
1007                                 {
1008                                         int val = vi.GetInteger();
1009                                         ValueContainerLimit* vci = (ValueContainerLimit*)Values[Index].val;
1010                                         vci->Set(this, val);
1011                                 }
1012                                 break;
1013                                 case DT_BOOLEAN:
1014                                 {
1015                                         bool val = vi.GetBool();
1016                                         ValueContainerBool* vcb = (ValueContainerBool*)Values[Index].val;
1017                                         vcb->Set(this, val);
1018                                 }
1019                                 break;
1020                         }
1021                 }
1022
1023                 /* Read the multiple-tag items (class tags, connect tags, etc)
1024                  * and call the callbacks associated with them. We have three
1025                  * callbacks for these, a 'start', 'item' and 'end' callback.
1026                  */
1027                 for (int Index = 0; Index * sizeof(MultiConfig) < sizeof(MultiValues); ++Index)
1028                 {
1029                         int number_of_tags = ConfValueEnum(MultiValues[Index].tag);
1030
1031                         for (int tagnum = 0; tagnum < number_of_tags; ++tagnum)
1032                         {
1033                                 ValueList vl;
1034                                 for (int valuenum = 0; (MultiValues[Index].items[valuenum]) && (valuenum < MAX_VALUES_PER_TAG); ++valuenum)
1035                                 {
1036                                         int dt = MultiValues[Index].datatype[valuenum];
1037                                         bool allow_newlines =  ((dt & DT_ALLOW_NEWLINE) > 0);
1038                                         bool allow_wild = ((dt & DT_ALLOW_WILD) > 0);
1039                                         dt &= ~DT_ALLOW_NEWLINE;
1040                                         dt &= ~DT_ALLOW_WILD;
1041
1042                                         switch (dt)
1043                                         {
1044                                                 case DT_NOSPACES:
1045                                                 {
1046                                                         char item[MAXBUF];
1047                                                         if (ConfValue(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1048                                                                 vl.push_back(ValueItem(item));
1049                                                         else
1050                                                                 vl.push_back(ValueItem(""));
1051                                                         ValidateNoSpaces(vl[vl.size()-1].GetString(), MultiValues[Index].tag, MultiValues[Index].items[valuenum]);
1052                                                 }
1053                                                 break;
1054                                                 case DT_HOSTNAME:
1055                                                 {
1056                                                         char item[MAXBUF];
1057                                                         if (ConfValue(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1058                                                                 vl.push_back(ValueItem(item));
1059                                                         else
1060                                                                 vl.push_back(ValueItem(""));
1061                                                         ValidateHostname(vl[vl.size()-1].GetString(), MultiValues[Index].tag, MultiValues[Index].items[valuenum]);
1062                                                 }
1063                                                 break;
1064                                                 case DT_IPADDRESS:
1065                                                 {
1066                                                         char item[MAXBUF];
1067                                                         if (ConfValue(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1068                                                                 vl.push_back(ValueItem(item));
1069                                                         else
1070                                                                 vl.push_back(ValueItem(""));
1071                                                         ValidateIP(vl[vl.size()-1].GetString(), MultiValues[Index].tag, MultiValues[Index].items[valuenum], allow_wild);
1072                                                 }
1073                                                 break;
1074                                                 case DT_CHANNEL:
1075                                                 {
1076                                                         char item[MAXBUF];
1077                                                         if (ConfValue(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1078                                                                 vl.push_back(ValueItem(item));
1079                                                         else
1080                                                                 vl.push_back(ValueItem(""));
1081                                                         if (!ServerInstance->IsChannel(vl[vl.size()-1].GetString(), MAXBUF))
1082                                                                 throw CoreException("The value of <"+std::string(MultiValues[Index].tag)+":"+MultiValues[Index].items[valuenum]+"> number "+ConvToStr(tagnum + 1)+" is not a valid channel name");
1083                                                 }
1084                                                 break;
1085                                                 case DT_CHARPTR:
1086                                                 {
1087                                                         char item[MAXBUF];
1088                                                         if (ConfValue(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1089                                                                 vl.push_back(ValueItem(item));
1090                                                         else
1091                                                                 vl.push_back(ValueItem(""));
1092                                                 }
1093                                                 break;
1094                                                 case DT_INTEGER:
1095                                                 {
1096                                                         int item = 0;
1097                                                         if (ConfValueInteger(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item))
1098                                                                 vl.push_back(ValueItem(item));
1099                                                         else
1100                                                                 vl.push_back(ValueItem(0));
1101                                                 }
1102                                                 break;
1103                                                 case DT_BOOLEAN:
1104                                                 {
1105                                                         bool item = ConfValueBool(MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum);
1106                                                         vl.push_back(ValueItem(item));
1107                                                 }
1108                                                 break;
1109                                         }
1110                                 }
1111                                 if (MultiValues[Index].validation_function)
1112                                         MultiValues[Index].validation_function(this, MultiValues[Index].tag, MultiValues[Index].items, vl, MultiValues[Index].datatype);
1113                         }
1114                 }
1115
1116                 /* Finalise the limits, increment them all by one so that we can just put assign(str, 0, val)
1117                  * rather than assign(str, 0, val + 1)
1118                  */
1119                 Limits.Finalise();
1120
1121                 // Handle special items
1122                 CrossCheckOperClassType();
1123                 CrossCheckConnectBlocks(old);
1124         }
1125         catch (CoreException &ce)
1126         {
1127                 errstr << ce.GetReason();
1128                 valid = false;
1129         }
1130
1131         // write once here, to try it out and make sure its ok
1132         ServerInstance->WritePID(this->PID);
1133
1134         FailedPortList pl;
1135         ServerInstance->BindPorts(pl);
1136
1137         /*
1138          * These values can only be set on boot. Keep their old values. Do it before we send messages so we actually have a servername.
1139          */
1140         if (old)
1141         {
1142                 memcpy(this->ServerName, old->ServerName, sizeof(this->ServerName));
1143                 memcpy(this->sid, old->sid, sizeof(this->sid));
1144         }
1145
1146         if (pl.size())
1147         {
1148                 errstr << "Not all your client ports could be bound.\nThe following port(s) failed to bind:\n";
1149
1150                 int j = 1;
1151                 for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
1152                 {
1153                         char buf[MAXBUF];
1154                         snprintf(buf, MAXBUF, "%d.   Address: %s   Reason: %s\n", j, i->first.empty() ? "<all>" : i->first.c_str(), i->second.c_str());
1155                         errstr << buf;
1156                 }
1157         }
1158
1159         User* user = useruid.empty() ? NULL : ServerInstance->FindNick(useruid);
1160
1161         valid = errstr.str().empty();
1162         if (!valid)
1163                 ServerInstance->Logs->Log("CONFIG",DEFAULT, "There were errors in your configuration file:");
1164
1165         while (errstr.good())
1166         {
1167                 std::string line;
1168                 getline(errstr, line, '\n');
1169                 if (!line.empty())
1170                 {
1171                         if (user)
1172                                 user->WriteServ("NOTICE %s :*** %s", user->nick.c_str(), line.c_str());
1173                         else
1174                                 ServerInstance->SNO->WriteGlobalSno('a', line);
1175                 }
1176
1177                 if (!old)
1178                 {
1179                         // Starting up, so print it out so it's seen. XXX this is a bit of a hack.
1180                         printf("%s\n", line.c_str());
1181                 }
1182         }
1183
1184         errstr.clear();
1185         errstr.str(std::string());
1186
1187         /* No old configuration -> initial boot, nothing more to do here */
1188         if (!old)
1189         {
1190                 if (!valid)
1191                 {
1192                         ServerInstance->Exit(EXIT_STATUS_CONFIG);
1193                 }
1194
1195                 return;
1196         }
1197
1198         // If there were errors processing configuration, don't touch modules.
1199         if (!valid)
1200                 return;
1201
1202         ApplyModules(user);
1203         for (std::vector<ConnectClass*>::iterator i = removed_classes.begin(); i != removed_classes.end(); i++)
1204         {
1205                 ConnectClass* c = *i;
1206                 if (0 == --c->RefCount)
1207                         delete c;
1208         }
1209 }
1210
1211 void ServerConfig::ApplyModules(User* user)
1212 {
1213         const std::vector<std::string> v = ServerInstance->Modules->GetAllModuleNames(0);
1214         std::vector<std::string> added_modules;
1215         std::set<std::string> removed_modules(v.begin(), v.end());
1216
1217         int new_module_count = ConfValueEnum("module");
1218         for(int i=0; i < new_module_count; i++)
1219         {
1220                 std::string name;
1221                 if (ConfValue("module", "name", i, name, false))
1222                 {
1223                         // if this module is already loaded, the erase will succeed, so we need do nothing
1224                         // otherwise, we need to add the module (which will be done later)
1225                         if (removed_modules.erase(name) == 0)
1226                                 added_modules.push_back(name);
1227                 }
1228         }
1229
1230         for (std::set<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
1231         {
1232                 if (ServerInstance->Modules->Unload(removing->c_str()))
1233                 {
1234                         ServerInstance->SNO->WriteToSnoMask('a', "*** REHASH UNLOADED MODULE: %s",removing->c_str());
1235
1236                         if (user)
1237                                 user->WriteNumeric(RPL_UNLOADEDMODULE, "%s %s :Module %s successfully unloaded.",user->nick.c_str(), removing->c_str(), removing->c_str());
1238                         else
1239                                 ServerInstance->SNO->WriteToSnoMask('a', "Module %s successfully unloaded.", removing->c_str());
1240                 }
1241                 else
1242                 {
1243                         if (user)
1244                                 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());
1245                         else
1246                                  ServerInstance->SNO->WriteToSnoMask('a', "Failed to unload module %s: %s", removing->c_str(), ServerInstance->Modules->LastError().c_str());
1247                 }
1248         }
1249
1250         for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
1251         {
1252                 if (ServerInstance->Modules->Load(adding->c_str()))
1253                 {
1254                         ServerInstance->SNO->WriteToSnoMask('a', "*** REHASH LOADED MODULE: %s",adding->c_str());
1255                         if (user)
1256                                 user->WriteNumeric(RPL_LOADEDMODULE, "%s %s :Module %s successfully loaded.",user->nick.c_str(), adding->c_str(), adding->c_str());
1257                         else
1258                                 ServerInstance->SNO->WriteToSnoMask('a', "Module %s successfully loaded.", adding->c_str());
1259                 }
1260                 else
1261                 {
1262                         if (user)
1263                                 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());
1264                         else
1265                                 ServerInstance->SNO->WriteToSnoMask('a', "Failed to load module %s: %s", adding->c_str(), ServerInstance->Modules->LastError().c_str());
1266                 }
1267         }
1268
1269         if (user)
1270                 user->WriteServ("NOTICE %s :*** Successfully rehashed server.", user->nick.c_str());
1271         else
1272                 ServerInstance->SNO->WriteToSnoMask('a', "*** Successfully rehashed server.");
1273 }
1274
1275 bool ServerConfig::LoadConf(FILE* &conf, const char* filename)
1276 {
1277         std::string line;
1278         char ch;
1279         long linenumber = 1;
1280         long last_successful_parse = 1;
1281         bool in_tag;
1282         bool in_quote;
1283         bool in_comment;
1284         int character_count = 0;
1285
1286         in_tag = false;
1287         in_quote = false;
1288         in_comment = false;
1289
1290         ServerInstance->Logs->Log("CONFIG", DEBUG, "Reading %s", filename);
1291
1292         /* Check if the file open failed first */
1293         if (!conf)
1294         {
1295                 errstr << "LoadConf: Couldn't open config file: " << filename << std::endl;
1296                 return false;
1297         }
1298
1299         for (unsigned int t = 0; t < include_stack.size(); t++)
1300         {
1301                 if (std::string(filename) == include_stack[t])
1302                 {
1303                         errstr << "File " << filename << " is included recursively (looped inclusion)." << std::endl;
1304                         return false;
1305                 }
1306         }
1307
1308         /* It's not already included, add it to the list of files we've loaded */
1309         include_stack.push_back(filename);
1310
1311         /* Start reading characters... */
1312         while ((ch = fgetc(conf)) != EOF)
1313         {
1314                 /*
1315                  * Fix for moronic windows issue spotted by Adremelech.
1316                  * Some windows editors save text files as utf-16, which is
1317                  * a total pain in the ass to parse. Users should save in the
1318                  * right config format! If we ever see a file where the first
1319                  * byte is 0xFF or 0xFE, or the second is 0xFF or 0xFE, then
1320                  * this is most likely a utf-16 file. Bail out and insult user.
1321                  */
1322                 if ((character_count++ < 2) && (ch == '\xFF' || ch == '\xFE'))
1323                 {
1324                         errstr << "File " << filename << " cannot be read, as it is encoded in braindead UTF-16. Save your file as plain ASCII!" << std::endl;
1325                         return false;
1326                 }
1327
1328                 /*
1329                  * Here we try and get individual tags on separate lines,
1330                  * this would be so easy if we just made people format
1331                  * their config files like that, but they don't so...
1332                  * We check for a '<' and then know the line is over when
1333                  * we get a '>' not inside quotes. If we find two '<' and
1334                  * no '>' then die with an error.
1335                  */
1336
1337                 if ((ch == '#') && !in_quote)
1338                         in_comment = true;
1339
1340                 switch (ch)
1341                 {
1342                         case '\n':
1343                                 if (in_quote)
1344                                         line += '\n';
1345                                 linenumber++;
1346                         case '\r':
1347                                 if (!in_quote)
1348                                         in_comment = false;
1349                         case '\0':
1350                                 continue;
1351                         case '\t':
1352                                 ch = ' ';
1353                 }
1354
1355                 if(in_comment)
1356                         continue;
1357
1358                 /* XXX: Added by Brain, May 1st 2006 - Escaping of characters.
1359                  * Note that this WILL NOT usually allow insertion of newlines,
1360                  * because a newline is two characters long. Use it primarily to
1361                  * insert the " symbol.
1362                  *
1363                  * Note that this also involves a further check when parsing the line,
1364                  * which can be found below.
1365                  */
1366                 if ((ch == '\\') && (in_quote) && (in_tag))
1367                 {
1368                         line += ch;
1369                         char real_character;
1370                         if (!feof(conf))
1371                         {
1372                                 real_character = fgetc(conf);
1373                                 if (real_character == 'n')
1374                                         real_character = '\n';
1375                                 line += real_character;
1376                                 continue;
1377                         }
1378                         else
1379                         {
1380                                 errstr << "End of file after a \\, what did you want to escape?: " << filename << ":" << linenumber << std::endl;
1381                                 return false;
1382                         }
1383                 }
1384
1385                 if (ch != '\r')
1386                         line += ch;
1387
1388                 if ((ch != '<') && (!in_tag) && (!in_comment) && (ch > ' ') && (ch != 9))
1389                 {
1390                         errstr << "You have stray characters beyond the tag which starts at " << filename << ":" << last_successful_parse << std::endl;
1391                         return false;
1392                 }
1393
1394                 if (ch == '<')
1395                 {
1396                         if (in_tag)
1397                         {
1398                                 if (!in_quote)
1399                                 {
1400                                         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;
1401                                         return false;
1402                                 }
1403                         }
1404                         else
1405                         {
1406                                 if (in_quote)
1407                                 {
1408                                         errstr << "Parser error: Inside a quote but not within the last valid tag, which was opened at: " << filename << ":" << last_successful_parse << std::endl;
1409                                         return false;
1410                                 }
1411                                 else
1412                                 {
1413                                         // errstr << "Opening new config tag on line " << linenumber << std::endl;
1414                                         in_tag = true;
1415                                 }
1416                         }
1417                 }
1418                 else if (ch == '"')
1419                 {
1420                         if (in_tag)
1421                         {
1422                                 if (in_quote)
1423                                 {
1424                                         // errstr << "Closing quote in config tag on line " << linenumber << std::endl;
1425                                         in_quote = false;
1426                                 }
1427                                 else
1428                                 {
1429                                         // errstr << "Opening quote in config tag on line " << linenumber << std::endl;
1430                                         in_quote = true;
1431                                 }
1432                         }
1433                         else
1434                         {
1435                                 if (in_quote)
1436                                 {
1437                                         errstr << "The tag immediately after the one at " << filename << ":" << last_successful_parse << " has a missing closing \" symbol. Please check this." << std::endl;
1438                                 }
1439                                 else
1440                                 {
1441                                         errstr << "You have opened a quote (\") beyond the tag at " << filename << ":" << last_successful_parse << " without opening a new tag. Please check this." << std::endl;
1442                                 }
1443                         }
1444                 }
1445                 else if (ch == '>')
1446                 {
1447                         if (!in_quote)
1448                         {
1449                                 if (in_tag)
1450                                 {
1451                                         // errstr << "Closing config tag on line " << linenumber << std::endl;
1452                                         in_tag = false;
1453
1454                                         /*
1455                                          * If this finds an <include> then ParseLine can simply call
1456                                          * LoadConf() and load the included config into the same ConfigDataHash
1457                                          */
1458                                         long bl = linenumber;
1459                                         if (!this->ParseLine(filename, line, linenumber))
1460                                                 return false;
1461                                         last_successful_parse = linenumber;
1462
1463                                         linenumber = bl;
1464
1465                                         line.clear();
1466                                 }
1467                                 else
1468                                 {
1469                                         errstr << "You forgot to close the tag which comes immediately after the one at " << filename << ":" << last_successful_parse << std::endl;
1470                                         return false;
1471                                 }
1472                         }
1473                 }
1474         }
1475
1476         /* 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 */
1477         if (in_comment || in_quote)
1478         {
1479                 errstr << "Reached end of file whilst still inside a quoted section or tag. This is most likely an error or there \
1480                         is a newline missing from the end of the file: " << filename << ":" << linenumber << std::endl;
1481         }
1482
1483         return true;
1484 }
1485
1486
1487 bool ServerConfig::LoadConf(FILE* &conf, const std::string &filename)
1488 {
1489         return this->LoadConf(conf, filename.c_str());
1490 }
1491
1492 bool ServerConfig::ParseLine(const std::string &filename, std::string &line, long &linenumber)
1493 {
1494         std::string tagname;
1495         std::string current_key;
1496         std::string current_value;
1497         KeyValList results;
1498         char last_char = 0;
1499         bool got_name;
1500         bool got_key;
1501         bool in_quote;
1502
1503         got_name = got_key = in_quote = false;
1504
1505         for(std::string::iterator c = line.begin(); c != line.end(); c++)
1506         {
1507                 if (!got_name)
1508                 {
1509                         /* We don't know the tag name yet. */
1510
1511                         if (*c != ' ')
1512                         {
1513                                 if (*c != '<')
1514                                 {
1515                                         if ((*c >= 'a' && *c <= 'z') || (*c >= 'A' && *c <='Z') || (*c >= '0' && *c <= '9') || *c == '_')
1516                                                 tagname += *c;
1517                                         else
1518                                         {
1519                                                 errstr << "Invalid character in value name of tag: '" << *c << "' in value '" << tagname << "' in filename: " << filename << ":" << linenumber << std::endl;
1520                                                 return false;
1521                                         }
1522                                 }
1523                         }
1524                         else
1525                         {
1526                                 /* We got to a space, we should have the tagname now. */
1527                                 if(tagname.length())
1528                                 {
1529                                         got_name = true;
1530                                 }
1531                         }
1532                 }
1533                 else
1534                 {
1535                         /* We have the tag name */
1536                         if (!got_key)
1537                         {
1538                                 /* We're still reading the key name */
1539                                 if ((*c != '=') && (*c != '>'))
1540                                 {
1541                                         if (*c != ' ')
1542                                         {
1543                                                 if ((*c >= 'a' && *c <= 'z') || (*c >= 'A' && *c <='Z') || (*c >= '0' && *c <= '9') || *c == '_')
1544                                                         current_key += *c;
1545                                                 else
1546                                                 {
1547                                                         errstr << "Invalid character in key: '" << *c << "' in key '" << current_key << "' in filename: " << filename << ":" << linenumber << std::endl;
1548                                                         return false;
1549                                                 }
1550                                         }
1551                                 }
1552                                 else
1553                                 {
1554                                         /* We got an '=', end of the key name. */
1555                                         got_key = true;
1556                                 }
1557                         }
1558                         else
1559                         {
1560                                 /* We have the key name, now we're looking for quotes and the value */
1561
1562                                 /* Correctly handle escaped characters here.
1563                                  * See the XXX'ed section above.
1564                                  */
1565                                 if ((*c == '\\') && (in_quote))
1566                                 {
1567                                         c++;
1568                                         if (*c == 'n')
1569                                                 current_value += '\n';
1570                                         else
1571                                                 current_value += *c;
1572                                         continue;
1573                                 }
1574                                 else if ((*c == '\\') && (!in_quote))
1575                                 {
1576                                         errstr << "You can't have an escape sequence outside of a quoted section: " << filename << ":" << linenumber << std::endl;
1577                                         return false;
1578                                 }
1579                                 else if ((*c == '\n') && (in_quote))
1580                                 {
1581                                         /* Got a 'real' \n, treat it as part of the value */
1582                                         current_value += '\n';
1583                                         continue;
1584                                 }
1585                                 else if ((*c == '\r') && (in_quote))
1586                                 {
1587                                         /* Got a \r, drop it */
1588                                         continue;
1589                                 }
1590
1591                                 if (*c == '"')
1592                                 {
1593                                         if (!in_quote)
1594                                         {
1595                                                 /* We're not already in a quote. */
1596                                                 in_quote = true;
1597                                         }
1598                                         else
1599                                         {
1600                                                 /* Leaving the quotes, we have the current value */
1601                                                 results.push_back(KeyVal(current_key, current_value));
1602
1603                                                 // std::cout << "<" << tagname << ":" << current_key << "> " << current_value << std::endl;
1604
1605                                                 in_quote = false;
1606                                                 got_key = false;
1607
1608                                                 if ((tagname == "include") && (current_key == "file"))
1609                                                 {
1610                                                         if (!this->DoInclude(current_value))
1611                                                                 return false;
1612                                                 }
1613                                                 else if ((tagname == "include") && (current_key == "executable"))
1614                                                 {
1615                                                         /* Pipe an executable and use its stdout as config data */
1616                                                         if (!this->DoPipe(current_value))
1617                                                                 return false;
1618                                                 }
1619
1620                                                 current_key.clear();
1621                                                 current_value.clear();
1622                                         }
1623                                 }
1624                                 else
1625                                 {
1626                                         if (in_quote)
1627                                         {
1628                                                 last_char = *c;
1629                                                 current_value += *c;
1630                                         }
1631                                 }
1632                         }
1633                 }
1634         }
1635
1636         /* Finished parsing the tag, add it to the config hash */
1637         config_data.insert(std::pair<std::string, KeyValList > (tagname, results));
1638
1639         return true;
1640 }
1641
1642 bool ServerConfig::DoPipe(const std::string &file)
1643 {
1644         FILE* conf = popen(file.c_str(), "r");
1645         bool ret = false;
1646
1647         if (conf)
1648         {
1649                 ret = LoadConf(conf, file.c_str());
1650                 pclose(conf);
1651         }
1652         else
1653                 errstr << "Couldn't execute: " << file << std::endl;
1654
1655         return ret;
1656 }
1657
1658 bool ServerConfig::StartsWithWindowsDriveLetter(const std::string &path)
1659 {
1660         return (path.length() > 2 && isalpha(path[0]) && path[1] == ':');
1661 }
1662
1663 bool ServerConfig::DoInclude(const std::string &file)
1664 {
1665         std::string confpath;
1666         std::string newfile;
1667         std::string::size_type pos;
1668
1669         confpath = ServerInstance->ConfigFileName;
1670         newfile = file;
1671
1672         std::replace(newfile.begin(),newfile.end(),'\\','/');
1673         std::replace(confpath.begin(),confpath.end(),'\\','/');
1674
1675         if ((newfile[0] != '/') && (!StartsWithWindowsDriveLetter(newfile)))
1676         {
1677                 if((pos = confpath.rfind("/")) != std::string::npos)
1678                 {
1679                         /* Leaves us with just the path */
1680                         newfile = confpath.substr(0, pos) + std::string("/") + newfile;
1681                 }
1682                 else
1683                 {
1684                         errstr << "Couldn't get config path from: " << ServerInstance->ConfigFileName << std::endl;
1685                         return false;
1686                 }
1687         }
1688
1689         FILE* conf = fopen(newfile.c_str(), "r");
1690         bool ret = false;
1691
1692         if (conf)
1693         {
1694                 ret = LoadConf(conf, newfile);
1695                 fclose(conf);
1696         }
1697         else
1698                 errstr << "Couldn't open config file: " << file << std::endl;
1699
1700         return ret;
1701 }
1702
1703 bool ServerConfig::ConfValue(const char* tag, const char* var, int index, char* result, int length, bool allow_linefeeds)
1704 {
1705         return ConfValue(tag, var, "", index, result, length, allow_linefeeds);
1706 }
1707
1708 bool ServerConfig::ConfValue(const char* tag, const char* var, const char* default_value, int index, char* result, int length, bool allow_linefeeds)
1709 {
1710         std::string value;
1711         bool r = ConfValue(std::string(tag), std::string(var), std::string(default_value), index, value, allow_linefeeds);
1712         strlcpy(result, value.c_str(), length);
1713         return r;
1714 }
1715
1716 bool ServerConfig::ConfValue(const std::string &tag, const std::string &var, int index, std::string &result, bool allow_linefeeds)
1717 {
1718         return ConfValue(tag, var, "", index, result, allow_linefeeds);
1719 }
1720
1721 bool ServerConfig::ConfValue(const std::string &tag, const std::string &var, const std::string &default_value, int index, std::string &result, bool allow_linefeeds)
1722 {
1723         ConfigDataHash::size_type pos = index;
1724         if (pos < config_data.count(tag))
1725         {
1726                 ConfigDataHash::iterator iter = config_data.find(tag);
1727
1728                 for(int i = 0; i < index; i++)
1729                         iter++;
1730
1731                 for(KeyValList::iterator j = iter->second.begin(); j != iter->second.end(); j++)
1732                 {
1733                         if(j->first == var)
1734                         {
1735                                 if ((!allow_linefeeds) && (j->second.find('\n') != std::string::npos))
1736                                 {
1737                                         ServerInstance->Logs->Log("CONFIG",DEFAULT, "Value of <" + tag + ":" + var+ "> contains a linefeed, and linefeeds in this value are not permitted -- stripped to spaces.");
1738                                         for (std::string::iterator n = j->second.begin(); n != j->second.end(); n++)
1739                                                 if (*n == '\n')
1740                                                         *n = ' ';
1741                                 }
1742                                 else
1743                                 {
1744                                         result = j->second;
1745                                         return true;
1746                                 }
1747                         }
1748                 }
1749                 if (!default_value.empty())
1750                 {
1751                         result = default_value;
1752                         return true;
1753                 }
1754         }
1755         else if (pos == 0)
1756         {
1757                 if (!default_value.empty())
1758                 {
1759                         result = default_value;
1760                         return true;
1761                 }
1762         }
1763         return false;
1764 }
1765
1766 bool ServerConfig::ConfValueInteger(const char* tag, const char* var, int index, int &result)
1767 {
1768         return ConfValueInteger(std::string(tag), std::string(var), "", index, result);
1769 }
1770
1771 bool ServerConfig::ConfValueInteger(const char* tag, const char* var, const char* default_value, int index, int &result)
1772 {
1773         return ConfValueInteger(std::string(tag), std::string(var), std::string(default_value), index, result);
1774 }
1775
1776 bool ServerConfig::ConfValueInteger(const std::string &tag, const std::string &var, int index, int &result)
1777 {
1778         return ConfValueInteger(tag, var, "", index, result);
1779 }
1780
1781 bool ServerConfig::ConfValueInteger(const std::string &tag, const std::string &var, const std::string &default_value, int index, int &result)
1782 {
1783         std::string value;
1784         std::istringstream stream;
1785         bool r = ConfValue(tag, var, default_value, index, value);
1786         stream.str(value);
1787         if(!(stream >> result))
1788                 return false;
1789         else
1790         {
1791                 if (!value.empty())
1792                 {
1793                         if (value.substr(0,2) == "0x")
1794                         {
1795                                 char* endptr;
1796
1797                                 value.erase(0,2);
1798                                 result = strtol(value.c_str(), &endptr, 16);
1799
1800                                 /* No digits found */
1801                                 if (endptr == value.c_str())
1802                                         return false;
1803                         }
1804                         else
1805                         {
1806                                 char denominator = *(value.end() - 1);
1807                                 switch (toupper(denominator))
1808                                 {
1809                                         case 'K':
1810                                                 /* Kilobytes -> bytes */
1811                                                 result = result * 1024;
1812                                         break;
1813                                         case 'M':
1814                                                 /* Megabytes -> bytes */
1815                                                 result = result * 1024 * 1024;
1816                                         break;
1817                                         case 'G':
1818                                                 /* Gigabytes -> bytes */
1819                                                 result = result * 1024 * 1024 * 1024;
1820                                         break;
1821                                 }
1822                         }
1823                 }
1824         }
1825         return r;
1826 }
1827
1828
1829 bool ServerConfig::ConfValueBool(const char* tag, const char* var, int index)
1830 {
1831         return ConfValueBool(std::string(tag), std::string(var), "", index);
1832 }
1833
1834 bool ServerConfig::ConfValueBool(const char* tag, const char* var, const char* default_value, int index)
1835 {
1836         return ConfValueBool(std::string(tag), std::string(var), std::string(default_value), index);
1837 }
1838
1839 bool ServerConfig::ConfValueBool(const std::string &tag, const std::string &var, int index)
1840 {
1841         return ConfValueBool(tag, var, "", index);
1842 }
1843
1844 bool ServerConfig::ConfValueBool(const std::string &tag, const std::string &var, const std::string &default_value, int index)
1845 {
1846         std::string result;
1847         if(!ConfValue(tag, var, default_value, index, result))
1848                 return false;
1849
1850         return ((result == "yes") || (result == "true") || (result == "1"));
1851 }
1852
1853 int ServerConfig::ConfValueEnum(const char* tag)
1854 {
1855         return config_data.count(tag);
1856 }
1857
1858 int ServerConfig::ConfValueEnum(const std::string &tag)
1859 {
1860         return config_data.count(tag);
1861 }
1862
1863 int ServerConfig::ConfVarEnum(const char* tag, int index)
1864 {
1865         return ConfVarEnum(std::string(tag), index);
1866 }
1867
1868 int ServerConfig::ConfVarEnum(const std::string &tag, int index)
1869 {
1870         ConfigDataHash::size_type pos = index;
1871
1872         if (pos < config_data.count(tag))
1873         {
1874                 ConfigDataHash::const_iterator iter = config_data.find(tag);
1875
1876                 for(int i = 0; i < index; i++)
1877                         iter++;
1878
1879                 return iter->second.size();
1880         }
1881
1882         return 0;
1883 }
1884
1885 /** Read the contents of a file located by `fname' into a file_cache pointed at by `F'.
1886  */
1887 bool ServerConfig::ReadFile(file_cache &F, const char* fname)
1888 {
1889         if (!fname || !*fname)
1890                 return false;
1891
1892         FILE* file = NULL;
1893         char linebuf[MAXBUF];
1894
1895         F.clear();
1896
1897         if ((*fname != '/') && (*fname != '\\') && (!StartsWithWindowsDriveLetter(fname)))
1898         {
1899                 std::string::size_type pos;
1900                 std::string confpath = ServerInstance->ConfigFileName;
1901                 std::string newfile = fname;
1902
1903                 if (((pos = confpath.rfind("/"))) != std::string::npos)
1904                         newfile = confpath.substr(0, pos) + std::string("/") + fname;
1905                 else if (((pos = confpath.rfind("\\"))) != std::string::npos)
1906                         newfile = confpath.substr(0, pos) + std::string("\\") + fname;
1907
1908                 ServerInstance->Logs->Log("config", DEBUG, "Filename: %s", newfile.c_str());
1909
1910                 if (!FileExists(newfile.c_str()))
1911                         return false;
1912                 file =  fopen(newfile.c_str(), "r");
1913         }
1914         else
1915         {
1916                 if (!FileExists(fname))
1917                         return false;
1918                 file =  fopen(fname, "r");
1919         }
1920
1921         if (file)
1922         {
1923                 while (!feof(file))
1924                 {
1925                         if (fgets(linebuf, sizeof(linebuf), file))
1926                                 linebuf[strlen(linebuf)-1] = 0;
1927                         else
1928                                 *linebuf = 0;
1929
1930                         F.push_back(*linebuf ? linebuf : " ");
1931                 }
1932
1933                 fclose(file);
1934         }
1935         else
1936                 return false;
1937
1938         return true;
1939 }
1940
1941 bool ServerConfig::FileExists(const char* file)
1942 {
1943         struct stat sb;
1944         if (stat(file, &sb) == -1)
1945                 return false;
1946
1947         if ((sb.st_mode & S_IFDIR) > 0)
1948                 return false;
1949
1950         FILE *input;
1951         if ((input = fopen (file, "r")) == NULL)
1952                 return false;
1953         else
1954         {
1955                 fclose(input);
1956                 return true;
1957         }
1958 }
1959
1960 char* ServerConfig::CleanFilename(char* name)
1961 {
1962         char* p = name + strlen(name);
1963         while ((p != name) && (*p != '/') && (*p != '\\')) p--;
1964         return (p != name ? ++p : p);
1965 }
1966
1967
1968 std::string ServerConfig::GetFullProgDir()
1969 {
1970         char buffer[PATH_MAX];
1971 #ifdef WINDOWS
1972         /* Windows has specific api calls to get the exe path that never fail.
1973          * For once, windows has something of use, compared to the POSIX code
1974          * for this, this is positively neato.
1975          */
1976         if (GetModuleFileName(NULL, buffer, MAX_PATH))
1977         {
1978                 std::string fullpath = buffer;
1979                 std::string::size_type n = fullpath.rfind("\\inspircd.exe");
1980                 return std::string(fullpath, 0, n);
1981         }
1982 #else
1983         // Get the current working directory
1984         if (getcwd(buffer, PATH_MAX))
1985         {
1986                 std::string remainder = this->argv[0];
1987
1988                 /* Does argv[0] start with /? its a full path, use it */
1989                 if (remainder[0] == '/')
1990                 {
1991                         std::string::size_type n = remainder.rfind("/inspircd");
1992                         return std::string(remainder, 0, n);
1993                 }
1994
1995                 std::string fullpath = std::string(buffer) + "/" + remainder;
1996                 std::string::size_type n = fullpath.rfind("/inspircd");
1997                 return std::string(fullpath, 0, n);
1998         }
1999 #endif
2000         return "/";
2001 }
2002
2003 InspIRCd* ServerConfig::GetInstance()
2004 {
2005         return ServerInstance;
2006 }
2007
2008 std::string ServerConfig::GetSID()
2009 {
2010         return sid;
2011 }
2012
2013 ValueItem::ValueItem(int value)
2014 {
2015         std::stringstream n;
2016         n << value;
2017         v = n.str();
2018 }
2019
2020 ValueItem::ValueItem(bool value)
2021 {
2022         std::stringstream n;
2023         n << value;
2024         v = n.str();
2025 }
2026
2027 void ValueItem::Set(const std::string& value)
2028 {
2029         v = value;
2030 }
2031
2032 void ValueItem::Set(int value)
2033 {
2034         std::stringstream n;
2035         n << value;
2036         v = n.str();
2037 }
2038
2039 int ValueItem::GetInteger()
2040 {
2041         if (v.empty())
2042                 return 0;
2043         return atoi(v.c_str());
2044 }
2045
2046 const char* ValueItem::GetString() const
2047 {
2048         return v.c_str();
2049 }
2050
2051 bool ValueItem::GetBool()
2052 {
2053         return (GetInteger() || v == "yes" || v == "true");
2054 }
2055
2056
2057 void ConfigReaderThread::Run()
2058 {
2059         Config = new ServerConfig(ServerInstance);
2060         Config->Read();
2061         done = true;
2062 }
2063
2064 void ConfigReaderThread::Finish()
2065 {
2066         ServerConfig* old = ServerInstance->Config;
2067         ServerInstance->Logs->Log("CONFIG",DEBUG,"Switching to new configuration...");
2068         ServerInstance->Logs->CloseLogs();
2069         ServerInstance->Config = this->Config;
2070         ServerInstance->Logs->OpenFileLogs();
2071         Config->Apply(old, TheUserUID);
2072
2073         if (Config->valid)
2074         {
2075                 /*
2076                  * Apply the changed configuration from the rehash.
2077                  *
2078                  * XXX: The order of these is IMPORTANT, do not reorder them without testing
2079                  * thoroughly!!!
2080                  */
2081                 ServerInstance->XLines->CheckELines();
2082                 ServerInstance->XLines->CheckELines();
2083                 ServerInstance->XLines->ApplyLines();
2084                 ServerInstance->Res->Rehash();
2085                 ServerInstance->ResetMaxBans();
2086                 Config->ApplyDisabledCommands(Config->DisabledCommands);
2087                 User* user = TheUserUID.empty() ? ServerInstance->FindNick(TheUserUID) : NULL;
2088                 FOREACH_MOD_I(ServerInstance, I_OnRehash, OnRehash(user));
2089                 ServerInstance->BuildISupport();
2090
2091                 delete old;
2092         }
2093         else
2094         {
2095                 // whoops, abort!
2096                 ServerInstance->Logs->CloseLogs();
2097                 ServerInstance->Config = old;
2098                 ServerInstance->Logs->OpenFileLogs();
2099                 delete this->Config;
2100         }
2101 }
2102
2103 template<>
2104 void ValueContainer<char[MAXBUF]>::Set(ServerConfig* conf, ValueItem const& item)
2105 {
2106         strlcpy(conf->*vptr, item.GetString(), MAXBUF);
2107 }