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