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