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