]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/configreader.cpp
1185078615224f9a959c60eb76ea6297afabb3e1
[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                 {"security",    "userstats",    "",                     new ValueContainerChar (this->UserStats),               DT_CHARPTR,  NoValidation},
807                 {"security",    "customversion","",                     new ValueContainerChar (this->CustomVersion),           DT_CHARPTR,  NoValidation},
808                 {"security",    "hidesplits",   "0",                    new ValueContainerBool (&this->HideSplits),             DT_BOOLEAN,  NoValidation},
809                 {"security",    "hidebans",     "0",                    new ValueContainerBool (&this->HideBans),               DT_BOOLEAN,  NoValidation},
810                 {"security",    "hidewhois",    "",                     new ValueContainerChar (this->HideWhoisServer),         DT_NOSPACES, NoValidation},
811                 {"security",    "hidekills",    "",                     new ValueContainerChar (this->HideKillsServer),         DT_NOSPACES,  NoValidation},
812                 {"security",    "operspywhois", "0",                    new ValueContainerBool (&this->OperSpyWhois),           DT_BOOLEAN,  NoValidation},
813                 {"performance", "nouserdns",    "0",                    new ValueContainerBool (&this->NoUserDns),              DT_BOOLEAN,  NoValidation},
814                 {"options",     "syntaxhints",  "0",                    new ValueContainerBool (&this->SyntaxHints),            DT_BOOLEAN,  NoValidation},
815                 {"options",     "cyclehosts",   "0",                    new ValueContainerBool (&this->CycleHosts),             DT_BOOLEAN,  NoValidation},
816                 {"options",     "ircumsgprefix","0",                    new ValueContainerBool (&this->UndernetMsgPrefix),      DT_BOOLEAN,  NoValidation},
817                 {"security",    "announceinvites", "1",                 new ValueContainerChar (announceinvites),               DT_CHARPTR,  ValidateInvite},
818                 {"options",     "hostintopic",  "1",                    new ValueContainerBool (&this->FullHostInTopic),        DT_BOOLEAN,  NoValidation},
819                 {"security",    "hidemodes",    "",                     new ValueContainerChar (hidemodes),                     DT_CHARPTR,  ValidateModeLists},
820                 {"options",     "exemptchanops","",                     new ValueContainerChar (exemptchanops),                 DT_CHARPTR,  ValidateExemptChanOps},
821                 {"security",    "maxtargets",   "20",                   new ValueContainerUInt (&this->MaxTargets),             DT_INTEGER,  ValidateMaxTargets},
822                 {"options",     "defaultmodes", "nt",                   new ValueContainerChar (this->DefaultModes),            DT_CHARPTR,  NoValidation},
823                 {"pid",         "file",         "",                     new ValueContainerChar (this->PID),                     DT_CHARPTR,  NoValidation},
824                 {"whowas",      "groupsize",    "10",                   new ValueContainerInt  (&this->WhoWasGroupSize),        DT_INTEGER,  NoValidation},
825                 {"whowas",      "maxgroups",    "10240",                new ValueContainerInt  (&this->WhoWasMaxGroups),        DT_INTEGER,  NoValidation},
826                 {"whowas",      "maxkeep",      "3600",                 new ValueContainerChar (maxkeep),                       DT_CHARPTR,  ValidateWhoWas},
827                 {"die",         "value",        "",                     new ValueContainerChar (this->DieValue),                DT_CHARPTR,  NoValidation},
828                 {"channels",    "users",        "20",                   new ValueContainerUInt (&this->MaxChans),               DT_INTEGER,  NoValidation},
829                 {"channels",    "opers",        "60",                   new ValueContainerUInt (&this->OperMaxChans),           DT_INTEGER,  NoValidation},
830                 {"cidr",        "ipv4clone",    "32",                   new ValueContainerInt (&this->c_ipv4_range),            DT_INTEGER,  NoValidation},
831                 {"cidr",        "ipv6clone",    "128",                  new ValueContainerInt (&this->c_ipv6_range),            DT_INTEGER,  NoValidation},
832                 {"limits",      "maxnick",      "32",                   new ValueContainerST (&this->Limits.NickMax),           DT_INTEGER,  NoValidation},
833                 {"limits",      "maxchan",      "64",                   new ValueContainerST (&this->Limits.ChanMax),           DT_INTEGER,  NoValidation},
834                 {"limits",      "maxmodes",     "20",                   new ValueContainerST (&this->Limits.MaxModes),          DT_INTEGER,  NoValidation},
835                 {"limits",      "maxident",     "11",                   new ValueContainerST (&this->Limits.IdentMax),          DT_INTEGER,  NoValidation},
836                 {"limits",      "maxquit",      "255",                  new ValueContainerST (&this->Limits.MaxQuit),           DT_INTEGER,  NoValidation},
837                 {"limits",      "maxtopic",     "307",                  new ValueContainerST (&this->Limits.MaxTopic),          DT_INTEGER,  NoValidation},
838                 {"limits",      "maxkick",      "255",                  new ValueContainerST (&this->Limits.MaxKick),           DT_INTEGER,  NoValidation},
839                 {"limits",      "maxgecos",     "128",                  new ValueContainerST (&this->Limits.MaxGecos),          DT_INTEGER,  NoValidation},
840                 {"limits",      "maxaway",      "200",                  new ValueContainerST (&this->Limits.MaxAway),           DT_INTEGER,  NoValidation},
841                 {"options",     "invitebypassmodes",    "1",                    new ValueContainerBool (&this->InvBypassModes),         DT_BOOLEAN,  NoValidation},
842                 {NULL,          NULL,           NULL,                   NULL,                                                   DT_NOTHING,  NoValidation}
843         };
844
845
846         /* These tags can occur multiple times, and therefore they have special code to read them
847          * which is different to the code for reading the singular tags listed above.
848          */
849         MultiConfig MultiValues[] = {
850
851                 {"connect",
852                                 {"allow",       "deny",         "password",     "timeout",      "pingfreq",     "flood",
853                                 "threshold",    "sendq",        "recvq",        "localmax",     "globalmax",    "port",
854                                 "name",         "parent",       "maxchans",     "limit",        "hash",
855                                 NULL},
856                                 {"",            "",             "",             "",             "120",          "",
857                                  "",            "",             "",             "3",            "3",            "0",
858                                  "",            "",             "0",        "0",        "",
859                                  NULL},
860                                 {DT_IPADDRESS|DT_ALLOW_WILD,
861                                                 DT_IPADDRESS|DT_ALLOW_WILD,
862                                                                 DT_CHARPTR,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,
863                                 DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,     DT_INTEGER,
864                                 DT_NOSPACES,    DT_NOSPACES,    DT_INTEGER,     DT_INTEGER,     DT_CHARPTR},
865                                 InitConnect, DoConnect, DoneConnect},
866
867                 {"uline",
868                                 {"server",      "silent",       NULL},
869                                 {"",            "0",            NULL},
870                                 {DT_HOSTNAME,   DT_BOOLEAN},
871                                 InitULine,DoULine,DoneULine},
872
873                 {"banlist",
874                                 {"chan",        "limit",        NULL},
875                                 {"",            "",             NULL},
876                                 {DT_CHARPTR,    DT_INTEGER},
877                                 InitMaxBans, DoMaxBans, DoneMaxBans},
878
879                 {"module",
880                                 {"name",        NULL},
881                                 {"",            NULL},
882                                 {DT_CHARPTR},
883                                 InitModule, DoModule, DoneModule},
884
885                 {"badip",
886                                 {"reason",      "ipmask",       NULL},
887                                 {"No reason",   "",             NULL},
888                                 {DT_CHARPTR,    DT_IPADDRESS|DT_ALLOW_WILD},
889                                 InitXLine, DoZLine, DoneConfItem},
890
891                 {"badnick",
892                                 {"reason",      "nick",         NULL},
893                                 {"No reason",   "",             NULL},
894                                 {DT_CHARPTR,    DT_CHARPTR},
895                                 InitXLine, DoQLine, DoneConfItem},
896         
897                 {"badhost",
898                                 {"reason",      "host",         NULL},
899                                 {"No reason",   "",             NULL},
900                                 {DT_CHARPTR,    DT_CHARPTR},
901                                 InitXLine, DoKLine, DoneConfItem},
902
903                 {"exception",
904                                 {"reason",      "host",         NULL},
905                                 {"No reason",   "",             NULL},
906                                 {DT_CHARPTR,    DT_CHARPTR},
907                                 InitXLine, DoELine, DoneELine},
908         
909                 {"type",
910                                 {"name",        "classes",      NULL},
911                                 {"",            "",             NULL},
912                                 {DT_NOSPACES,   DT_CHARPTR},
913                                 InitTypes, DoType, DoneClassesAndTypes},
914
915                 {"class",
916                                 {"name",        "commands",     "usermodes",    "chanmodes",    NULL},
917                                 {"",            "",             "",             "",             NULL},
918                                 {DT_NOSPACES,   DT_CHARPTR,     DT_CHARPTR,     DT_CHARPTR},
919                                 InitClasses, DoClass, DoneClassesAndTypes},
920         
921                 {NULL,
922                                 {NULL},
923                                 {NULL},
924                                 {0},
925                                 NULL, NULL, NULL}
926         };
927
928         /* Load and parse the config file, if there are any errors then explode */
929
930         /* Make a copy here so if it fails then we can carry on running with an unaffected config */
931         newconfig.clear();
932
933         if (!this->DoInclude(newconfig, ServerInstance->ConfigFileName, errstr))
934         {
935                 ReportConfigError(errstr.str(), bail, useruid);
936                 return;
937         }
938
939         /* The stuff in here may throw CoreException, be sure we're in a position to catch it. */
940         try
941         {
942                 /* Check we dont have more than one of singular tags, or any of them missing
943                  */
944                 for (int Index = 0; Once[Index]; Index++)
945                         if (!CheckOnce(Once[Index], newconfig))
946                                 return;
947
948                 for (int Index = 0; ChangedConfig[Index].tag; Index++)
949                 {
950                         char item[MAXBUF];
951                         *item = 0;
952                         if (ConfValue(newconfig, ChangedConfig[Index].tag, ChangedConfig[Index].value, "", 0, item, MAXBUF, true) || *item)
953                                 throw CoreException(std::string("Your configuration contains a deprecated value: <") + ChangedConfig[Index].tag + ":" + ChangedConfig[Index].value + "> - " + ChangedConfig[Index].reason);
954                         else
955                                 ServerInstance->Logs->Log("CONFIG",DEBUG,"Deprecated item <%s:%s> does not exist, good.", ChangedConfig[Index].tag, ChangedConfig[Index].value);
956                 }
957
958                 /* Read the values of all the tags which occur once or not at all, and call their callbacks.
959                  */
960                 for (int Index = 0; Values[Index].tag; ++Index)
961                 {
962                         char item[MAXBUF];
963                         int dt = Values[Index].datatype;
964                         bool allow_newlines = ((dt & DT_ALLOW_NEWLINE) > 0);
965                         bool allow_wild = ((dt & DT_ALLOW_WILD) > 0);
966                         bool bootonly = ((dt & DT_BOOTONLY) > 0);
967                         dt &= ~DT_ALLOW_NEWLINE;
968                         dt &= ~DT_ALLOW_WILD;
969                         dt &= ~DT_BOOTONLY;
970
971                         /* Silently ignore boot only values */
972                         if (bootonly && !bail)
973                                 continue;
974
975                         ConfValue(newconfig, Values[Index].tag, Values[Index].value, Values[Index].default_value, 0, item, MAXBUF, allow_newlines);
976                         ValueItem vi(item);
977                         
978                         if (!Values[Index].validation_function(this, Values[Index].tag, Values[Index].value, vi))
979                                 throw CoreException("One or more values in your configuration file failed to validate. Please see your ircd.log for more information.");
980         
981                         ServerInstance->Threads->Lock();
982                         switch (dt)
983                         {
984                                 case DT_NOSPACES:
985                                 {
986                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
987                                         this->ValidateNoSpaces(vi.GetString(), Values[Index].tag, Values[Index].value);
988                                         vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
989                                 }
990                                 break;
991                                 case DT_HOSTNAME:
992                                 {
993                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
994                                         this->ValidateHostname(vi.GetString(), Values[Index].tag, Values[Index].value);
995                                         vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
996                                 }
997                                 break;
998                                 case DT_IPADDRESS:
999                                 {
1000                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
1001                                         this->ValidateIP(vi.GetString(), Values[Index].tag, Values[Index].value, allow_wild);
1002                                         vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
1003                                 }
1004                                 break;
1005                                 case DT_CHANNEL:
1006                                 {
1007                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
1008                                         if (*(vi.GetString()) && !ServerInstance->IsChannel(vi.GetString(), MAXBUF))
1009                                         {
1010                                                 ServerInstance->Threads->Unlock();
1011                                                 throw CoreException("The value of <"+std::string(Values[Index].tag)+":"+Values[Index].value+"> is not a valid channel name");
1012                                         }
1013                                         vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
1014                                 }
1015                                 break;
1016                                 case DT_CHARPTR:
1017                                 {
1018                                         ValueContainerChar* vcc = (ValueContainerChar*)Values[Index].val;
1019                                         /* Make sure we also copy the null terminator */
1020                                         vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
1021                                 }
1022                                 break;
1023                                 case DT_INTEGER:
1024                                 {
1025                                         int val = vi.GetInteger();
1026                                         ValueContainerInt* vci = (ValueContainerInt*)Values[Index].val;
1027                                         vci->Set(&val, sizeof(int));
1028                                 }
1029                                 break;
1030                                 case DT_BOOLEAN:
1031                                 {
1032                                         bool val = vi.GetBool();
1033                                         ValueContainerBool* vcb = (ValueContainerBool*)Values[Index].val;
1034                                         vcb->Set(&val, sizeof(bool));
1035                                 }
1036                                 break;
1037                                 default:
1038                                         /* You don't want to know what happens if someones bad code sends us here. */
1039                                 break;
1040                         }
1041                         /* We're done with this now */
1042                         delete Values[Index].val;
1043                         ServerInstance->Threads->Unlock();
1044                 }
1045
1046                 /* Read the multiple-tag items (class tags, connect tags, etc)
1047                  * and call the callbacks associated with them. We have three
1048                  * callbacks for these, a 'start', 'item' and 'end' callback.
1049                  */
1050                 for (int Index = 0; MultiValues[Index].tag; ++Index)
1051                 {
1052                         ServerInstance->Threads->Lock();
1053                         MultiValues[Index].init_function(this, MultiValues[Index].tag);
1054                         ServerInstance->Threads->Unlock();
1055
1056                         int number_of_tags = ConfValueEnum(newconfig, MultiValues[Index].tag);
1057
1058                         for (int tagnum = 0; tagnum < number_of_tags; ++tagnum)
1059                         {
1060                                 ValueList vl;
1061                                 for (int valuenum = 0; (MultiValues[Index].items[valuenum]) && (valuenum < MAX_VALUES_PER_TAG); ++valuenum)
1062                                 {
1063                                         int dt = MultiValues[Index].datatype[valuenum];
1064                                         bool allow_newlines =  ((dt & DT_ALLOW_NEWLINE) > 0);
1065                                         bool allow_wild = ((dt & DT_ALLOW_WILD) > 0);
1066                                         dt &= ~DT_ALLOW_NEWLINE;
1067                                         dt &= ~DT_ALLOW_WILD;
1068
1069                                         ServerInstance->Threads->Lock();
1070                                         /* We catch and rethrow any exception here just so we can free our mutex
1071                                          */
1072                                         try
1073                                         {
1074                                                 switch (dt)
1075                                                 {
1076                                                         case DT_NOSPACES:
1077                                                         {
1078                                                                 char item[MAXBUF];
1079                                                                 if (ConfValue(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1080                                                                         vl.push_back(ValueItem(item));
1081                                                                 else
1082                                                                         vl.push_back(ValueItem(""));
1083                                                                 this->ValidateNoSpaces(vl[vl.size()-1].GetString(), MultiValues[Index].tag, MultiValues[Index].items[valuenum]);
1084                                                         }
1085                                                         break;
1086                                                         case DT_HOSTNAME:
1087                                                         {
1088                                                                 char item[MAXBUF];
1089                                                                 if (ConfValue(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1090                                                                         vl.push_back(ValueItem(item));
1091                                                                 else
1092                                                                         vl.push_back(ValueItem(""));
1093                                                                 this->ValidateHostname(vl[vl.size()-1].GetString(), MultiValues[Index].tag, MultiValues[Index].items[valuenum]);
1094                                                         }
1095                                                         break;
1096                                                         case DT_IPADDRESS:
1097                                                         {
1098                                                                 char item[MAXBUF];
1099                                                                 if (ConfValue(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1100                                                                         vl.push_back(ValueItem(item));
1101                                                                 else
1102                                                                         vl.push_back(ValueItem(""));
1103                                                                 this->ValidateIP(vl[vl.size()-1].GetString(), MultiValues[Index].tag, MultiValues[Index].items[valuenum], allow_wild);
1104                                                         }
1105                                                         break;
1106                                                         case DT_CHANNEL:
1107                                                         {
1108                                                                 char item[MAXBUF];
1109                                                                 if (ConfValue(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1110                                                                         vl.push_back(ValueItem(item));
1111                                                                 else
1112                                                                         vl.push_back(ValueItem(""));
1113                                                                 if (!ServerInstance->IsChannel(vl[vl.size()-1].GetString(), MAXBUF))
1114                                                                         throw CoreException("The value of <"+std::string(MultiValues[Index].tag)+":"+MultiValues[Index].items[valuenum]+"> number "+ConvToStr(tagnum + 1)+" is not a valid channel name");
1115                                                         }
1116                                                         break;
1117                                                         case DT_CHARPTR:
1118                                                         {
1119                                                                 char item[MAXBUF];
1120                                                                 if (ConfValue(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item, MAXBUF, allow_newlines))
1121                                                                         vl.push_back(ValueItem(item));
1122                                                                 else
1123                                                                         vl.push_back(ValueItem(""));
1124                                                         }
1125                                                         break;
1126                                                         case DT_INTEGER:
1127                                                         {
1128                                                                 int item = 0;
1129                                                                 if (ConfValueInteger(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum, item))
1130                                                                         vl.push_back(ValueItem(item));
1131                                                                 else
1132                                                                         vl.push_back(ValueItem(0));
1133                                                         }
1134                                                         break;
1135                                                         case DT_BOOLEAN:
1136                                                         {
1137                                                                 bool item = ConfValueBool(newconfig, MultiValues[Index].tag, MultiValues[Index].items[valuenum], MultiValues[Index].items_default[valuenum], tagnum);
1138                                                                 vl.push_back(ValueItem(item));
1139                                                         }
1140                                                         break;
1141                                                         default:
1142                                                                 /* Someone was smoking craq if we got here, and we're all gonna die. */
1143                                                         break;
1144                                                 }
1145                                         }
1146                                         catch (CoreException &e)
1147                                         {
1148                                                 ServerInstance->Threads->Unlock();
1149                                                 throw e;
1150                                         }
1151                                         ServerInstance->Threads->Unlock();
1152                                 }
1153                                 MultiValues[Index].validation_function(this, MultiValues[Index].tag, (char**)MultiValues[Index].items, vl, MultiValues[Index].datatype);
1154                         }
1155                         MultiValues[Index].finish_function(this, MultiValues[Index].tag);
1156                 }
1157
1158                 /* Finalise the limits, increment them all by one so that we can just put assign(str, 0, val)
1159                  * rather than assign(str, 0, val + 1)
1160                  */
1161                 Limits.Finalise();
1162
1163         }
1164
1165         catch (CoreException &ce)
1166         {
1167                 ReportConfigError(ce.GetReason(), bail, useruid);
1168                 return;
1169         }
1170
1171         ServerInstance->Threads->Lock();
1172         for (int i = 0; i < ConfValueEnum(newconfig, "type"); ++i)
1173         {
1174                 char item[MAXBUF], classn[MAXBUF], classes[MAXBUF];
1175                 std::string classname;
1176                 ConfValue(newconfig, "type", "classes", "", i, classes, MAXBUF, false);
1177                 irc::spacesepstream str(classes);
1178                 ConfValue(newconfig, "type", "name", "", i, item, MAXBUF, false);
1179                 while (str.GetToken(classname))
1180                 {
1181                         std::string lost;
1182                         bool foundclass = false;
1183                         for (int j = 0; j < ConfValueEnum(newconfig, "class"); ++j)
1184                         {
1185                                 ConfValue(newconfig, "class", "name", "", j, classn, MAXBUF, false);
1186                                 if (!strcmp(classn, classname.c_str()))
1187                                 {
1188                                         foundclass = true;
1189                                         break;
1190                                 }
1191                         }
1192                         if (!foundclass)
1193                         {
1194                                 if (!useruid.empty())
1195                                 {
1196                                         User* user = ServerInstance->FindNick(useruid);
1197                                         if (user)
1198                                                 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());
1199                                 }
1200                                 else
1201                                 {
1202                                         if (bail)
1203                                                 printf("Warning: Oper type '%s' has a missing class named '%s', this does nothing!\n", item, classname.c_str());
1204                                         else
1205                                                 ServerInstance->SNO->WriteToSnoMask('A', "Warning: Oper type '%s' has a missing class named '%s', this does nothing!", item, classname.c_str());
1206                                 }
1207                         }
1208                 }
1209         }
1210
1211         /* If we succeeded, set the ircd config to the new one */
1212         this->config_data = newconfig;
1213
1214         ServerInstance->Threads->Unlock();
1215
1216         // write once here, to try it out and make sure its ok
1217         ServerInstance->WritePID(this->PID);
1218
1219         /* Switch over logfiles */
1220         ServerInstance->Logs->CloseLogs();
1221         ServerInstance->Logs->OpenFileLogs();
1222
1223         ServerInstance->Logs->Log("CONFIG", DEFAULT, "Done reading configuration file.");
1224
1225         /* If we're rehashing, let's load any new modules, and unload old ones
1226          */
1227         if (!bail)
1228         {
1229                 int found_ports = 0;
1230                 FailedPortList pl;
1231                 ServerInstance->BindPorts(false, found_ports, pl);
1232
1233                 if (pl.size() && !useruid.empty())
1234                 {
1235                         ServerInstance->Threads->Lock();
1236                         User* user = ServerInstance->FindNick(useruid);
1237                         if (user)
1238                         {
1239                                 user->WriteServ("NOTICE %s :*** Not all your client ports could be bound.", user->nick.c_str());
1240                                 user->WriteServ("NOTICE %s :*** The following port(s) failed to bind:", user->nick.c_str());
1241                                 int j = 1;
1242                                 for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
1243                                 {
1244                                         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());
1245                                 }
1246                         }
1247                         ServerInstance->Threads->Unlock();
1248                 }
1249
1250                 ServerInstance->Threads->Lock();
1251                 if (!removed_modules.empty())
1252                 {
1253                         for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
1254                         {
1255                                 if (ServerInstance->Modules->Unload(removing->c_str()))
1256                                 {
1257                                         ServerInstance->SNO->WriteToSnoMask('A', "*** REHASH UNLOADED MODULE: %s",removing->c_str());
1258
1259                                         if (!useruid.empty())
1260                                         {
1261                                                 User* user = ServerInstance->FindNick(useruid);
1262                                                 if (user)
1263                                                         user->WriteNumeric(RPL_UNLOADEDMODULE, "%s %s :Module %s successfully unloaded.",user->nick.c_str(), removing->c_str(), removing->c_str());
1264                                         }
1265                                         else
1266                                                 ServerInstance->SNO->WriteToSnoMask('A', "Module %s successfully unloaded.", removing->c_str());
1267
1268                                         rem++;
1269                                 }
1270                                 else
1271                                 {
1272                                         if (!useruid.empty())
1273                                         {
1274                                                 User* user = ServerInstance->FindNick(useruid);
1275                                                 if (user)
1276                                                         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());
1277                                         }
1278                                         else
1279                                                  ServerInstance->SNO->WriteToSnoMask('A', "Failed to unload module %s: %s", removing->c_str(), ServerInstance->Modules->LastError().c_str());
1280                                 }
1281                         }
1282                 }
1283
1284                 if (!added_modules.empty())
1285                 {
1286                         for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
1287                         {
1288                                 if (ServerInstance->Modules->Load(adding->c_str()))
1289                                 {
1290                                         ServerInstance->SNO->WriteToSnoMask('A', "*** REHASH LOADED MODULE: %s",adding->c_str());
1291                                         if (!useruid.empty())
1292                                         {
1293                                                 User* user = ServerInstance->FindNick(useruid);
1294                                                 if (user)
1295                                                         user->WriteNumeric(RPL_LOADEDMODULE, "%s %s :Module %s successfully loaded.",user->nick.c_str(), adding->c_str(), adding->c_str());
1296                                         }
1297                                         else
1298                                                 ServerInstance->SNO->WriteToSnoMask('A', "Module %s successfully loaded.", adding->c_str());
1299
1300                                         add++;
1301                                 }
1302                                 else
1303                                 {
1304                                         if (!useruid.empty())
1305                                         {
1306                                                 User* user = ServerInstance->FindNick(useruid);
1307                                                 if (user)
1308                                                         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());
1309                                         }
1310                                         else
1311                                                 ServerInstance->SNO->WriteToSnoMask('A', "Failed to load module %s: %s", adding->c_str(), ServerInstance->Modules->LastError().c_str());
1312                                 }
1313                         }
1314                 }
1315
1316                 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());
1317
1318                 ServerInstance->Threads->Unlock();
1319
1320         }
1321
1322         if (bail)
1323         {
1324                 /** Note: This is safe, the method checks for user == NULL */
1325                 ServerInstance->Threads->Lock();
1326                 User* user = NULL;
1327                 if (!useruid.empty())
1328                         user = ServerInstance->FindNick(useruid);
1329                 ServerInstance->Parser->SetupCommandTable(user);
1330                 ServerInstance->Threads->Unlock();
1331         }
1332         else
1333         {
1334                 if (!useruid.empty())
1335                 {
1336                         User* user = ServerInstance->FindNick(useruid);
1337                         if (user)
1338                                 user->WriteServ("NOTICE %s :*** Successfully rehashed server.", user->nick.c_str());
1339                 }
1340                 else
1341                         ServerInstance->SNO->WriteToSnoMask('A', "*** Successfully rehashed server.");
1342         }
1343
1344 }
1345
1346
1347 bool ServerConfig::LoadConf(ConfigDataHash &target, FILE* &conf, const char* filename, std::ostringstream &errorstream)
1348 {
1349         std::string line;
1350         char ch;
1351         long linenumber = 1;
1352         long last_successful_parse = 1;
1353         bool in_tag;
1354         bool in_quote;
1355         bool in_comment;
1356         int character_count = 0;
1357
1358         in_tag = false;
1359         in_quote = false;
1360         in_comment = false;
1361
1362         ServerInstance->Logs->Log("CONFIG", DEBUG, "Reading %s", filename);
1363
1364         /* Check if the file open failed first */
1365         if (!conf)
1366         {
1367                 errorstream << "LoadConf: Couldn't open config file: " << filename << std::endl;
1368                 return false;
1369         }
1370
1371         for (unsigned int t = 0; t < include_stack.size(); t++)
1372         {
1373                 if (std::string(filename) == include_stack[t])
1374                 {
1375                         errorstream << "File " << filename << " is included recursively (looped inclusion)." << std::endl;
1376                         return false;
1377                 }
1378         }
1379
1380         /* It's not already included, add it to the list of files we've loaded */
1381         include_stack.push_back(filename);
1382
1383         /* Start reading characters... */
1384         while ((ch = fgetc(conf)) != EOF)
1385         {
1386                 /*
1387                  * Fix for moronic windows issue spotted by Adremelech.
1388                  * Some windows editors save text files as utf-16, which is
1389                  * a total pain in the ass to parse. Users should save in the
1390                  * right config format! If we ever see a file where the first
1391                  * byte is 0xFF or 0xFE, or the second is 0xFF or 0xFE, then
1392                  * this is most likely a utf-16 file. Bail out and insult user.
1393                  */
1394                 if ((character_count++ < 2) && (ch == '\xFF' || ch == '\xFE'))
1395                 {
1396                         errorstream << "File " << filename << " cannot be read, as it is encoded in braindead UTF-16. Save your file as plain ASCII!" << std::endl;
1397                         return false;
1398                 }
1399
1400                 /*
1401                  * Here we try and get individual tags on separate lines,
1402                  * this would be so easy if we just made people format
1403                  * their config files like that, but they don't so...
1404                  * We check for a '<' and then know the line is over when
1405                  * we get a '>' not inside quotes. If we find two '<' and
1406                  * no '>' then die with an error.
1407                  */
1408
1409                 if ((ch == '#') && !in_quote)
1410                         in_comment = true;
1411
1412                 switch (ch)
1413                 {
1414                         case '\n':
1415                                 if (in_quote)
1416                                         line += '\n';
1417                                 linenumber++;
1418                         case '\r':
1419                                 if (!in_quote)
1420                                         in_comment = false;
1421                         case '\0':
1422                                 continue;
1423                         case '\t':
1424                                 ch = ' ';
1425                 }
1426
1427                 if(in_comment)
1428                         continue;
1429
1430                 /* XXX: Added by Brain, May 1st 2006 - Escaping of characters.
1431                  * Note that this WILL NOT usually allow insertion of newlines,
1432                  * because a newline is two characters long. Use it primarily to
1433                  * insert the " symbol.
1434                  *
1435                  * Note that this also involves a further check when parsing the line,
1436                  * which can be found below.
1437                  */
1438                 if ((ch == '\\') && (in_quote) && (in_tag))
1439                 {
1440                         line += ch;
1441                         char real_character;
1442                         if (!feof(conf))
1443                         {
1444                                 real_character = fgetc(conf);
1445                                 if (real_character == 'n')
1446                                         real_character = '\n';
1447                                 line += real_character;
1448                                 continue;
1449                         }
1450                         else
1451                         {
1452                                 errorstream << "End of file after a \\, what did you want to escape?: " << filename << ":" << linenumber << std::endl;
1453                                 return false;
1454                         }
1455                 }
1456
1457                 if (ch != '\r')
1458                         line += ch;
1459
1460                 if ((ch != '<') && (!in_tag) && (!in_comment) && (ch > ' ') && (ch != 9))
1461                 {
1462                         errorstream << "You have stray characters beyond the tag which starts at " << filename << ":" << last_successful_parse << std::endl;
1463                         return false;
1464                 }
1465
1466                 if (ch == '<')
1467                 {
1468                         if (in_tag)
1469                         {
1470                                 if (!in_quote)
1471                                 {
1472                                         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;
1473                                         return false;
1474                                 }
1475                         }
1476                         else
1477                         {
1478                                 if (in_quote)
1479                                 {
1480                                         errorstream << "Parser error: Inside a quote but not within the last valid tag, which was opened at: " << filename << ":" << last_successful_parse << std::endl;
1481                                         return false;
1482                                 }
1483                                 else
1484                                 {
1485                                         // errorstream << "Opening new config tag on line " << linenumber << std::endl;
1486                                         in_tag = true;
1487                                 }
1488                         }
1489                 }
1490                 else if (ch == '"')
1491                 {
1492                         if (in_tag)
1493                         {
1494                                 if (in_quote)
1495                                 {
1496                                         // errorstream << "Closing quote in config tag on line " << linenumber << std::endl;
1497                                         in_quote = false;
1498                                 }
1499                                 else
1500                                 {
1501                                         // errorstream << "Opening quote in config tag on line " << linenumber << std::endl;
1502                                         in_quote = true;
1503                                 }
1504                         }
1505                         else
1506                         {
1507                                 if (in_quote)
1508                                 {
1509                                         errorstream << "The tag immediately after the one at " << filename << ":" << last_successful_parse << " has a missing closing \" symbol. Please check this." << std::endl;
1510                                 }
1511                                 else
1512                                 {
1513                                         errorstream << "You have opened a quote (\") beyond the tag at " << filename << ":" << last_successful_parse << " without opening a new tag. Please check this." << std::endl;
1514                                 }
1515                         }
1516                 }
1517                 else if (ch == '>')
1518                 {
1519                         if (!in_quote)
1520                         {
1521                                 if (in_tag)
1522                                 {
1523                                         // errorstream << "Closing config tag on line " << linenumber << std::endl;
1524                                         in_tag = false;
1525         
1526                                         /*
1527                                          * If this finds an <include> then ParseLine can simply call
1528                                          * LoadConf() and load the included config into the same ConfigDataHash
1529                                          */
1530                                         long bl = linenumber;
1531                                         if (!this->ParseLine(target, filename, line, linenumber, errorstream))
1532                                                 return false;
1533                                         last_successful_parse = linenumber;
1534
1535                                         linenumber = bl;
1536         
1537                                         line.clear();
1538                                 }
1539                                 else
1540                                 {
1541                                         errorstream << "You forgot to close the tag which comes immediately after the one at " << filename << ":" << last_successful_parse << std::endl;
1542                                         return false;
1543                                 }
1544                         }
1545                 }
1546         }
1547
1548         /* 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 */
1549         if (in_comment || in_quote)
1550         {
1551                 errorstream << "Reached end of file whilst still inside a quoted section or tag. This is most likely an error or there \
1552                         is a newline missing from the end of the file: " << filename << ":" << linenumber << std::endl;
1553         }
1554
1555         return true;
1556 }
1557
1558
1559 bool ServerConfig::LoadConf(ConfigDataHash &target, FILE* &conf, const std::string &filename, std::ostringstream &errorstream)
1560 {
1561         return this->LoadConf(target, conf, filename.c_str(), errorstream);
1562 }
1563
1564 bool ServerConfig::ParseLine(ConfigDataHash &target, const std::string &filename, std::string &line, long &linenumber, std::ostringstream &errorstream)
1565 {
1566         std::string tagname;
1567         std::string current_key;
1568         std::string current_value;
1569         KeyValList results;
1570         char last_char = 0;
1571         bool got_name;
1572         bool got_key;
1573         bool in_quote;
1574
1575         got_name = got_key = in_quote = false;
1576
1577         for(std::string::iterator c = line.begin(); c != line.end(); c++)
1578         {
1579                 if (!got_name)
1580                 {
1581                         /* We don't know the tag name yet. */
1582
1583                         if (*c != ' ')
1584                         {
1585                                 if (*c != '<')
1586                                 {
1587                                         if ((*c >= 'a' && *c <= 'z') || (*c >= 'A' && *c <='Z') || (*c >= '0' && *c <= '9') || *c == '_')
1588                                                 tagname += *c;
1589                                         else
1590                                         {
1591                                                 errorstream << "Invalid character in value name of tag: '" << *c << "' in value '" << tagname << "' in filename: " << filename << ":" << linenumber << std::endl;
1592                                                 return false;
1593                                         }
1594                                 }
1595                         }
1596                         else
1597                         {
1598                                 /* We got to a space, we should have the tagname now. */
1599                                 if(tagname.length())
1600                                 {
1601                                         got_name = true;
1602                                 }
1603                         }
1604                 }
1605                 else
1606                 {
1607                         /* We have the tag name */
1608                         if (!got_key)
1609                         {
1610                                 /* We're still reading the key name */
1611                                 if ((*c != '=') && (*c != '>'))
1612                                 {
1613                                         if (*c != ' ')
1614                                         {
1615                                                 if ((*c >= 'a' && *c <= 'z') || (*c >= 'A' && *c <='Z') || (*c >= '0' && *c <= '9') || *c == '_')
1616                                                         current_key += *c;
1617                                                 else
1618                                                 {
1619                                                         errorstream << "Invalid character in key: '" << *c << "' in key '" << current_key << "' in filename: " << filename << ":" << linenumber << std::endl;
1620                                                         return false;
1621                                                 }
1622                                         }
1623                                 }
1624                                 else
1625                                 {
1626                                         /* We got an '=', end of the key name. */
1627                                         got_key = true;
1628                                 }
1629                         }
1630                         else
1631                         {
1632                                 /* We have the key name, now we're looking for quotes and the value */
1633
1634                                 /* Correctly handle escaped characters here.
1635                                  * See the XXX'ed section above.
1636                                  */
1637                                 if ((*c == '\\') && (in_quote))
1638                                 {
1639                                         c++;
1640                                         if (*c == 'n')
1641                                                 current_value += '\n';
1642                                         else
1643                                                 current_value += *c;
1644                                         continue;
1645                                 }
1646                                 else if ((*c == '\\') && (!in_quote))
1647                                 {
1648                                         errorstream << "You can't have an escape sequence outside of a quoted section: " << filename << ":" << linenumber << std::endl;
1649                                         return false;
1650                                 }
1651                                 else if ((*c == '\n') && (in_quote))
1652                                 {
1653                                         /* Got a 'real' \n, treat it as part of the value */
1654                                         current_value += '\n';
1655                                         continue;
1656                                 }
1657                                 else if ((*c == '\r') && (in_quote))
1658                                 {
1659                                         /* Got a \r, drop it */
1660                                         continue;
1661                                 }
1662
1663                                 if (*c == '"')
1664                                 {
1665                                         if (!in_quote)
1666                                         {
1667                                                 /* We're not already in a quote. */
1668                                                 in_quote = true;
1669                                         }
1670                                         else
1671                                         {
1672                                                 /* Leaving the quotes, we have the current value */
1673                                                 results.push_back(KeyVal(current_key, current_value));
1674
1675                                                 // std::cout << "<" << tagname << ":" << current_key << "> " << current_value << std::endl;
1676
1677                                                 in_quote = false;
1678                                                 got_key = false;
1679
1680                                                 if ((tagname == "include") && (current_key == "file"))
1681                                                 {       
1682                                                         if (!this->DoInclude(target, current_value, errorstream))
1683                                                                 return false;
1684                                                 }
1685                                                 else if ((tagname == "include") && (current_key == "executable"))
1686                                                 {
1687                                                         /* Pipe an executable and use its stdout as config data */
1688                                                         if (!this->DoPipe(target, current_value, errorstream))
1689                                                                 return false;
1690                                                 }
1691
1692                                                 current_key.clear();
1693                                                 current_value.clear();
1694                                         }
1695                                 }
1696                                 else
1697                                 {
1698                                         if (in_quote)
1699                                         {
1700                                                 last_char = *c;
1701                                                 current_value += *c;
1702                                         }
1703                                 }
1704                         }
1705                 }
1706         }
1707
1708         /* Finished parsing the tag, add it to the config hash */
1709         target.insert(std::pair<std::string, KeyValList > (tagname, results));
1710
1711         return true;
1712 }
1713
1714 bool ServerConfig::DoPipe(ConfigDataHash &target, const std::string &file, std::ostringstream &errorstream)
1715 {
1716         FILE* conf = popen(file.c_str(), "r");
1717         bool ret = false;
1718
1719         if (conf)
1720         {
1721                 ret = LoadConf(target, conf, file.c_str(), errorstream);
1722                 pclose(conf);
1723         }
1724         else
1725                 errorstream << "Couldn't execute: " << file << std::endl;
1726
1727         return ret;
1728 }
1729
1730 bool ServerConfig::StartsWithWindowsDriveLetter(const std::string &path)
1731 {
1732         return (path.length() > 2 && isalpha(path[0]) && path[1] == ':');
1733 }
1734
1735 bool ServerConfig::DoInclude(ConfigDataHash &target, const std::string &file, std::ostringstream &errorstream)
1736 {
1737         std::string confpath;
1738         std::string newfile;
1739         std::string::size_type pos;
1740
1741         confpath = ServerInstance->ConfigFileName;
1742         newfile = file;
1743
1744         std::replace(newfile.begin(),newfile.end(),'\\','/');
1745         std::replace(confpath.begin(),confpath.end(),'\\','/');
1746
1747         if ((newfile[0] != '/') && (!StartsWithWindowsDriveLetter(newfile)))
1748         {
1749                 if((pos = confpath.rfind("/")) != std::string::npos)
1750                 {
1751                         /* Leaves us with just the path */
1752                         newfile = confpath.substr(0, pos) + std::string("/") + newfile;
1753                 }
1754                 else
1755                 {
1756                         errorstream << "Couldn't get config path from: " << ServerInstance->ConfigFileName << std::endl;
1757                         return false;
1758                 }
1759         }
1760
1761         FILE* conf = fopen(newfile.c_str(), "r");
1762         bool ret = false;
1763
1764         if (conf)
1765         {
1766                 ret = LoadConf(target, conf, newfile, errorstream);
1767                 fclose(conf);
1768         }
1769         else
1770                 errorstream << "Couldn't open config file: " << file << std::endl;
1771
1772         return ret;
1773 }
1774
1775 bool ServerConfig::ConfValue(ConfigDataHash &target, const char* tag, const char* var, int index, char* result, int length, bool allow_linefeeds)
1776 {
1777         return ConfValue(target, tag, var, "", index, result, length, allow_linefeeds);
1778 }
1779
1780 bool ServerConfig::ConfValue(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, char* result, int length, bool allow_linefeeds)
1781 {
1782         std::string value;
1783         bool r = ConfValue(target, std::string(tag), std::string(var), std::string(default_value), index, value, allow_linefeeds);
1784         strlcpy(result, value.c_str(), length);
1785         return r;
1786 }
1787
1788 bool ServerConfig::ConfValue(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, std::string &result, bool allow_linefeeds)
1789 {
1790         return ConfValue(target, tag, var, "", index, result, allow_linefeeds);
1791 }
1792
1793 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)
1794 {
1795         ConfigDataHash::size_type pos = index;
1796         if (pos < target.count(tag))
1797         {
1798                 ConfigDataHash::iterator iter = target.find(tag);
1799
1800                 for(int i = 0; i < index; i++)
1801                         iter++;
1802
1803                 for(KeyValList::iterator j = iter->second.begin(); j != iter->second.end(); j++)
1804                 {
1805                         if(j->first == var)
1806                         {
1807                                 if ((!allow_linefeeds) && (j->second.find('\n') != std::string::npos))
1808                                 {
1809                                         ServerInstance->Logs->Log("CONFIG",DEFAULT, "Value of <" + tag + ":" + var+ "> contains a linefeed, and linefeeds in this value are not permitted -- stripped to spaces.");
1810                                         for (std::string::iterator n = j->second.begin(); n != j->second.end(); n++)
1811                                                 if (*n == '\n')
1812                                                         *n = ' ';
1813                                 }
1814                                 else
1815                                 {
1816                                         result = j->second;
1817                                         return true;
1818                                 }
1819                         }
1820                 }
1821                 if (!default_value.empty())
1822                 {
1823                         result = default_value;
1824                         return true;
1825                 }
1826         }
1827         else if (pos == 0)
1828         {
1829                 if (!default_value.empty())
1830                 {
1831                         result = default_value;
1832                         return true;
1833                 }
1834         }
1835         return false;
1836 }
1837
1838 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, int index, int &result)
1839 {
1840         return ConfValueInteger(target, std::string(tag), std::string(var), "", index, result);
1841 }
1842
1843 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index, int &result)
1844 {
1845         return ConfValueInteger(target, std::string(tag), std::string(var), std::string(default_value), index, result);
1846 }
1847
1848 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, int index, int &result)
1849 {
1850         return ConfValueInteger(target, tag, var, "", index, result);
1851 }
1852
1853 bool ServerConfig::ConfValueInteger(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index, int &result)
1854 {
1855         std::string value;
1856         std::istringstream stream;
1857         bool r = ConfValue(target, tag, var, default_value, index, value);
1858         stream.str(value);
1859         if(!(stream >> result))
1860                 return false;
1861         else
1862         {
1863                 if (!value.empty())
1864                 {
1865                         if (value.substr(0,2) == "0x")
1866                         {
1867                                 char* endptr;
1868
1869                                 value.erase(0,2);
1870                                 result = strtol(value.c_str(), &endptr, 16);
1871
1872                                 /* No digits found */
1873                                 if (endptr == value.c_str())
1874                                         return false;
1875                         }
1876                         else
1877                         {
1878                                 char denominator = *(value.end() - 1);
1879                                 switch (toupper(denominator))
1880                                 {
1881                                         case 'K':
1882                                                 /* Kilobytes -> bytes */
1883                                                 result = result * 1024;
1884                                         break;
1885                                         case 'M':
1886                                                 /* Megabytes -> bytes */
1887                                                 result = result * 1024 * 1024;
1888                                         break;
1889                                         case 'G':
1890                                                 /* Gigabytes -> bytes */
1891                                                 result = result * 1024 * 1024 * 1024;
1892                                         break;
1893                                 }
1894                         }
1895                 }
1896         }
1897         return r;
1898 }
1899
1900
1901 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, int index)
1902 {
1903         return ConfValueBool(target, std::string(tag), std::string(var), "", index);
1904 }
1905
1906 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const char* tag, const char* var, const char* default_value, int index)
1907 {
1908         return ConfValueBool(target, std::string(tag), std::string(var), std::string(default_value), index);
1909 }
1910
1911 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, int index)
1912 {
1913         return ConfValueBool(target, tag, var, "", index);
1914 }
1915
1916 bool ServerConfig::ConfValueBool(ConfigDataHash &target, const std::string &tag, const std::string &var, const std::string &default_value, int index)
1917 {
1918         std::string result;
1919         if(!ConfValue(target, tag, var, default_value, index, result))
1920                 return false;
1921
1922         return ((result == "yes") || (result == "true") || (result == "1"));
1923 }
1924
1925 int ServerConfig::ConfValueEnum(ConfigDataHash &target, const char* tag)
1926 {
1927         return target.count(tag);
1928 }
1929
1930 int ServerConfig::ConfValueEnum(ConfigDataHash &target, const std::string &tag)
1931 {
1932         return target.count(tag);
1933 }
1934
1935 int ServerConfig::ConfVarEnum(ConfigDataHash &target, const char* tag, int index)
1936 {
1937         return ConfVarEnum(target, std::string(tag), index);
1938 }
1939
1940 int ServerConfig::ConfVarEnum(ConfigDataHash &target, const std::string &tag, int index)
1941 {
1942         ConfigDataHash::size_type pos = index;
1943
1944         if (pos < target.count(tag))
1945         {
1946                 ConfigDataHash::const_iterator iter = target.find(tag);
1947
1948                 for(int i = 0; i < index; i++)
1949                         iter++;
1950
1951                 return iter->second.size();
1952         }
1953
1954         return 0;
1955 }
1956
1957 /** Read the contents of a file located by `fname' into a file_cache pointed at by `F'.
1958  */
1959 bool ServerConfig::ReadFile(file_cache &F, const char* fname)
1960 {
1961         if (!fname || !*fname)
1962                 return false;
1963
1964         FILE* file = NULL;
1965         char linebuf[MAXBUF];
1966
1967         F.clear();
1968
1969         if ((*fname != '/') && (*fname != '\\') && (!StartsWithWindowsDriveLetter(fname)))
1970         {
1971                 std::string::size_type pos;
1972                 std::string confpath = ServerInstance->ConfigFileName;
1973                 std::string newfile = fname;
1974
1975                 if (((pos = confpath.rfind("/"))) != std::string::npos)
1976                         newfile = confpath.substr(0, pos) + std::string("/") + fname;
1977                 else if (((pos = confpath.rfind("\\"))) != std::string::npos)
1978                         newfile = confpath.substr(0, pos) + std::string("\\") + fname;
1979
1980                 ServerInstance->Logs->Log("config", DEBUG, "Filename: %s", newfile.c_str());
1981
1982                 if (!FileExists(newfile.c_str()))
1983                         return false;
1984                 file =  fopen(newfile.c_str(), "r");
1985         }
1986         else
1987         {
1988                 if (!FileExists(fname))
1989                         return false;
1990                 file =  fopen(fname, "r");
1991         }
1992
1993         if (file)
1994         {
1995                 while (!feof(file))
1996                 {
1997                         if (fgets(linebuf, sizeof(linebuf), file))
1998                                 linebuf[strlen(linebuf)-1] = 0;
1999                         else
2000                                 *linebuf = 0;
2001
2002                         F.push_back(*linebuf ? linebuf : " ");
2003                 }
2004
2005                 fclose(file);
2006         }
2007         else
2008                 return false;
2009
2010         return true;
2011 }
2012
2013 bool ServerConfig::FileExists(const char* file)
2014 {
2015         struct stat sb;
2016         if (stat(file, &sb) == -1)
2017                 return false;
2018
2019         if ((sb.st_mode & S_IFDIR) > 0)
2020                 return false;
2021              
2022         FILE *input;
2023         if ((input = fopen (file, "r")) == NULL)
2024                 return false;
2025         else
2026         {
2027                 fclose(input);
2028                 return true;
2029         }
2030 }
2031
2032 char* ServerConfig::CleanFilename(char* name)
2033 {
2034         char* p = name + strlen(name);
2035         while ((p != name) && (*p != '/') && (*p != '\\')) p--;
2036         return (p != name ? ++p : p);
2037 }
2038
2039
2040 bool ServerConfig::DirValid(const char* dirandfile)
2041 {
2042 #ifdef WINDOWS
2043         return true;
2044 #else
2045
2046         char work[1024];
2047         char buffer[1024];
2048         char otherdir[1024];
2049         int p;
2050
2051         strlcpy(work, dirandfile, 1024);
2052         p = strlen(work);
2053
2054         // we just want the dir
2055         while (*work)
2056         {
2057                 if (work[p] == '/')
2058                 {
2059                         work[p] = '\0';
2060                         break;
2061                 }
2062
2063                 work[p--] = '\0';
2064         }
2065
2066         // Get the current working directory
2067         if (getcwd(buffer, 1024 ) == NULL )
2068                 return false;
2069
2070         if (chdir(work) == -1)
2071                 return false;
2072
2073         if (getcwd(otherdir, 1024 ) == NULL )
2074                 return false;
2075
2076         if (chdir(buffer) == -1)
2077                 return false;
2078
2079         size_t t = strlen(work);
2080
2081         if (strlen(otherdir) >= t)
2082         {
2083                 otherdir[t] = '\0';
2084                 if (!strcmp(otherdir,work))
2085                 {
2086                         return true;
2087                 }
2088
2089                 return false;
2090         }
2091         else
2092         {
2093                 return false;
2094         }
2095 #endif
2096 }
2097
2098 std::string ServerConfig::GetFullProgDir()
2099 {
2100         char buffer[PATH_MAX];
2101 #ifdef WINDOWS
2102         /* Windows has specific api calls to get the exe path that never fail.
2103          * For once, windows has something of use, compared to the POSIX code
2104          * for this, this is positively neato.
2105          */
2106         if (GetModuleFileName(NULL, buffer, MAX_PATH))
2107         {
2108                 std::string fullpath = buffer;
2109                 std::string::size_type n = fullpath.rfind("\\inspircd.exe");
2110                 return std::string(fullpath, 0, n);
2111         }
2112 #else
2113         // Get the current working directory
2114         if (getcwd(buffer, PATH_MAX))
2115         {
2116                 std::string remainder = this->argv[0];
2117
2118                 /* Does argv[0] start with /? its a full path, use it */
2119                 if (remainder[0] == '/')
2120                 {
2121                         std::string::size_type n = remainder.rfind("/inspircd");
2122                         return std::string(remainder, 0, n);
2123                 }
2124
2125                 std::string fullpath = std::string(buffer) + "/" + remainder;
2126                 std::string::size_type n = fullpath.rfind("/inspircd");
2127                 return std::string(fullpath, 0, n);
2128         }
2129 #endif
2130         return "/";
2131 }
2132
2133 InspIRCd* ServerConfig::GetInstance()
2134 {
2135         return ServerInstance;
2136 }
2137
2138 std::string ServerConfig::GetSID()
2139 {
2140         return sid;
2141 }
2142
2143 ValueItem::ValueItem(int value)
2144 {
2145         std::stringstream n;
2146         n << value;
2147         v = n.str();
2148 }
2149
2150 ValueItem::ValueItem(bool value)
2151 {
2152         std::stringstream n;
2153         n << value;
2154         v = n.str();
2155 }
2156
2157 ValueItem::ValueItem(const char* value)
2158 {
2159         v = value;
2160 }
2161
2162 void ValueItem::Set(const char* value)
2163 {
2164         v = value;
2165 }
2166
2167 void ValueItem::Set(int value)
2168 {
2169         std::stringstream n;
2170         n << value;
2171         v = n.str();
2172 }
2173
2174 int ValueItem::GetInteger()
2175 {
2176         if (v.empty())
2177                 return 0;
2178         return atoi(v.c_str());
2179 }
2180
2181 char* ValueItem::GetString()
2182 {
2183         return (char*)v.c_str();
2184 }
2185
2186 bool ValueItem::GetBool()
2187 {
2188         return (GetInteger() || v == "yes" || v == "true");
2189 }
2190
2191
2192
2193
2194 /*
2195  * XXX should this be in a class? -- w00t
2196  */
2197 bool InitTypes(ServerConfig* conf, const char*)
2198 {
2199         if (conf->opertypes.size())
2200         {
2201                 for (opertype_t::iterator n = conf->opertypes.begin(); n != conf->opertypes.end(); n++)
2202                 {
2203                         if (n->second)
2204                                 delete[] n->second;
2205                 }
2206         }
2207
2208         conf->opertypes.clear();
2209         return true;
2210 }
2211
2212 /*
2213  * XXX should this be in a class? -- w00t
2214  */
2215 bool InitClasses(ServerConfig* conf, const char*)
2216 {
2217         if (conf->operclass.size())
2218         {
2219                 for (operclass_t::iterator n = conf->operclass.begin(); n != conf->operclass.end(); n++)
2220                 {
2221                         if (n->second.commandlist)
2222                                 delete[] n->second.commandlist;
2223                         if (n->second.cmodelist)
2224                                 delete[] n->second.cmodelist;
2225                         if (n->second.umodelist)
2226                                 delete[] n->second.umodelist;
2227                 }
2228         }
2229
2230         conf->operclass.clear();
2231         return true;
2232 }
2233
2234 /*
2235  * XXX should this be in a class? -- w00t
2236  */
2237 bool DoType(ServerConfig* conf, const char*, char**, ValueList &values, int*)
2238 {
2239         const char* TypeName = values[0].GetString();
2240         const char* Classes = values[1].GetString();
2241
2242         conf->opertypes[TypeName] = strnewdup(Classes);
2243         return true;
2244 }
2245
2246 /*
2247  * XXX should this be in a class? -- w00t
2248  */
2249 bool DoClass(ServerConfig* conf, const char* tag, char**, ValueList &values, int*)
2250 {
2251         const char* ClassName = values[0].GetString();
2252         const char* CommandList = values[1].GetString();
2253         const char* UModeList = values[2].GetString();
2254         const char* CModeList = values[3].GetString();
2255
2256         for (const char* c = UModeList; *c; ++c)
2257         {
2258                 if ((*c < 'A' || *c > 'z') && *c != '*')
2259                 {
2260                         throw CoreException("Character " + std::string(1, *c) + " is not a valid mode in <class:usermodes>");
2261                 }
2262         }
2263         for (const char* c = CModeList; *c; ++c)
2264         {
2265                 if ((*c < 'A' || *c > 'z') && *c != '*')
2266                 {
2267                         throw CoreException("Character " + std::string(1, *c) + " is not a valid mode in <class:chanmodes>");
2268                 }
2269         }
2270
2271         conf->operclass[ClassName].commandlist = strnewdup(CommandList);
2272         conf->operclass[ClassName].umodelist = strnewdup(UModeList);
2273         conf->operclass[ClassName].cmodelist = strnewdup(CModeList);
2274         return true;
2275 }
2276
2277 /*
2278  * XXX should this be in a class? -- w00t
2279  */
2280 bool DoneClassesAndTypes(ServerConfig*, const char*)
2281 {
2282         return true;
2283 }
2284
2285
2286
2287 bool InitXLine(ServerConfig* conf, const char* tag)
2288 {
2289         return true;
2290 }
2291
2292 bool DoZLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
2293 {
2294         const char* reason = values[0].GetString();
2295         const char* ipmask = values[1].GetString();
2296
2297         ZLine* zl = new ZLine(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, ipmask);
2298         if (!conf->GetInstance()->XLines->AddLine(zl, NULL))
2299                 delete zl;
2300
2301         return true;
2302 }
2303
2304 bool DoQLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
2305 {
2306         const char* reason = values[0].GetString();
2307         const char* nick = values[1].GetString();
2308
2309         QLine* ql = new QLine(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, nick);
2310         if (!conf->GetInstance()->XLines->AddLine(ql, NULL))
2311                 delete ql;
2312
2313         return true;
2314 }
2315
2316 bool DoKLine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
2317 {
2318         const char* reason = values[0].GetString();
2319         const char* host = values[1].GetString();
2320
2321         XLineManager* xlm = conf->GetInstance()->XLines;
2322
2323         IdentHostPair ih = xlm->IdentSplit(host);
2324
2325         KLine* kl = new KLine(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, ih.first.c_str(), ih.second.c_str());
2326         if (!xlm->AddLine(kl, NULL))
2327                 delete kl;
2328         return true;
2329 }
2330
2331 bool DoELine(ServerConfig* conf, const char* tag, char** entries, ValueList &values, int* types)
2332 {
2333         const char* reason = values[0].GetString();
2334         const char* host = values[1].GetString();
2335
2336         XLineManager* xlm = conf->GetInstance()->XLines;
2337
2338         IdentHostPair ih = xlm->IdentSplit(host);
2339
2340         ELine* el = new ELine(conf->GetInstance(), conf->GetInstance()->Time(), 0, "<Config>", reason, ih.first.c_str(), ih.second.c_str());
2341         if (!xlm->AddLine(el, NULL))
2342                 delete el;
2343         return true;
2344 }
2345
2346 // this should probably be moved to configreader, but atm it relies on CheckELines above.
2347 bool DoneELine(ServerConfig* conf, const char* tag)
2348 {
2349         for (std::vector<User*>::const_iterator u2 = conf->GetInstance()->Users->local_users.begin(); u2 != conf->GetInstance()->Users->local_users.end(); u2++)
2350         {
2351                 User* u = (User*)(*u2);
2352                 u->exempt = false;
2353         }
2354
2355         conf->GetInstance()->XLines->CheckELines();
2356         return true;
2357 }
2358
2359 void ConfigReaderThread::Run()
2360 {
2361         ServerInstance->Config->Read(do_bail, TheUserUID);
2362         ServerInstance->Threads->Lock();
2363         this->SetExitFlag();
2364         ServerInstance->Threads->Unlock();
2365 }
2366