]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/configreader.cpp
Merge pull request #1238 from SaberUK/master+openssl
[user/henk/code/inspircd.git] / src / configreader.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007-2009 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2006-2009 Dennis Friis <peavey@inspircd.org>
7  *   Copyright (C) 2006-2008 Craig Edwards <craigedwards@brainbox.cc>
8  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
9  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24
25 #include "inspircd.h"
26 #include "xline.h"
27 #include "listmode.h"
28 #include "exitcodes.h"
29 #include "configparser.h"
30 #include <iostream>
31
32 ServerLimits::ServerLimits(ConfigTag* tag)
33         : NickMax(tag->getInt("maxnick", 32))
34         , ChanMax(tag->getInt("maxchan", 64))
35         , MaxModes(tag->getInt("maxmodes", 20))
36         , IdentMax(tag->getInt("maxident", 11))
37         , MaxQuit(tag->getInt("maxquit", 255))
38         , MaxTopic(tag->getInt("maxtopic", 307))
39         , MaxKick(tag->getInt("maxkick", 255))
40         , MaxGecos(tag->getInt("maxgecos", 128))
41         , MaxAway(tag->getInt("maxaway", 200))
42         , MaxLine(tag->getInt("maxline", 512))
43         , MaxHost(tag->getInt("maxhost", 64))
44 {
45 }
46
47 static ConfigTag* CreateEmptyTag()
48 {
49         std::vector<KeyVal>* items;
50         return ConfigTag::create("empty", "<auto>", 0, items);
51 }
52
53 ServerConfig::ServerConfig()
54         : EmptyTag(CreateEmptyTag())
55         , Limits(EmptyTag)
56         , NoSnoticeStack(false)
57 {
58         RawLog = HideBans = HideSplits = false;
59         WildcardIPv6 = true;
60         dns_timeout = 5;
61         MaxTargets = 20;
62         NetBufferSize = 10240;
63         MaxConn = SOMAXCONN;
64         MaxChans = 20;
65         OperMaxChans = 30;
66         c_ipv4_range = 32;
67         c_ipv6_range = 128;
68 }
69
70 ServerConfig::~ServerConfig()
71 {
72         delete EmptyTag;
73 }
74
75 static void ValidHost(const std::string& p, const std::string& msg)
76 {
77         int num_dots = 0;
78         if (p.empty() || p[0] == '.')
79                 throw CoreException("The value of "+msg+" is not a valid hostname");
80         for (unsigned int i=0;i < p.length();i++)
81         {
82                 switch (p[i])
83                 {
84                         case ' ':
85                                 throw CoreException("The value of "+msg+" is not a valid hostname");
86                         case '.':
87                                 num_dots++;
88                         break;
89                 }
90         }
91         if (num_dots == 0)
92                 throw CoreException("The value of "+msg+" is not a valid hostname");
93 }
94
95 bool ServerConfig::ApplyDisabledCommands(const std::string& data)
96 {
97         std::stringstream dcmds(data);
98         std::string thiscmd;
99
100         /* Enable everything first */
101         const CommandParser::CommandMap& commands = ServerInstance->Parser.GetCommands();
102         for (CommandParser::CommandMap::const_iterator x = commands.begin(); x != commands.end(); ++x)
103                 x->second->Disable(false);
104
105         /* Now disable all the ones which the user wants disabled */
106         while (dcmds >> thiscmd)
107         {
108                 Command* handler = ServerInstance->Parser.GetHandler(thiscmd);
109                 if (handler)
110                         handler->Disable(true);
111         }
112         return true;
113 }
114
115 static void ReadXLine(ServerConfig* conf, const std::string& tag, const std::string& key, XLineFactory* make)
116 {
117         ConfigTagList tags = conf->ConfTags(tag);
118         for(ConfigIter i = tags.first; i != tags.second; ++i)
119         {
120                 ConfigTag* ctag = i->second;
121                 std::string mask;
122                 if (!ctag->readString(key, mask))
123                         throw CoreException("<"+tag+":"+key+"> missing at " + ctag->getTagLocation());
124                 std::string reason = ctag->getString("reason", "<Config>");
125                 XLine* xl = make->Generate(ServerInstance->Time(), 0, "<Config>", reason, mask);
126                 if (!ServerInstance->XLines->AddLine(xl, NULL))
127                         delete xl;
128         }
129 }
130
131 typedef std::map<std::string, ConfigTag*> LocalIndex;
132 void ServerConfig::CrossCheckOperClassType()
133 {
134         LocalIndex operclass;
135         ConfigTagList tags = ConfTags("class");
136         for(ConfigIter i = tags.first; i != tags.second; ++i)
137         {
138                 ConfigTag* tag = i->second;
139                 std::string name = tag->getString("name");
140                 if (name.empty())
141                         throw CoreException("<class:name> missing from tag at " + tag->getTagLocation());
142                 if (operclass.find(name) != operclass.end())
143                         throw CoreException("Duplicate class block with name " + name + " at " + tag->getTagLocation());
144                 operclass[name] = tag;
145         }
146         tags = ConfTags("type");
147         for(ConfigIter i = tags.first; i != tags.second; ++i)
148         {
149                 ConfigTag* tag = i->second;
150                 std::string name = tag->getString("name");
151                 if (name.empty())
152                         throw CoreException("<type:name> is missing from tag at " + tag->getTagLocation());
153                 if (OperTypes.find(name) != OperTypes.end())
154                         throw CoreException("Duplicate type block with name " + name + " at " + tag->getTagLocation());
155
156                 OperInfo* ifo = new OperInfo;
157                 OperTypes[name] = ifo;
158                 ifo->name = name;
159                 ifo->type_block = tag;
160
161                 std::string classname;
162                 irc::spacesepstream str(tag->getString("classes"));
163                 while (str.GetToken(classname))
164                 {
165                         LocalIndex::iterator cls = operclass.find(classname);
166                         if (cls == operclass.end())
167                                 throw CoreException("Oper type " + name + " has missing class " + classname);
168                         ifo->class_blocks.push_back(cls->second);
169                 }
170         }
171
172         tags = ConfTags("oper");
173         for(ConfigIter i = tags.first; i != tags.second; ++i)
174         {
175                 ConfigTag* tag = i->second;
176
177                 std::string name = tag->getString("name");
178                 if (name.empty())
179                         throw CoreException("<oper:name> missing from tag at " + tag->getTagLocation());
180
181                 std::string type = tag->getString("type");
182                 OperIndex::iterator tblk = OperTypes.find(type);
183                 if (tblk == OperTypes.end())
184                         throw CoreException("Oper block " + name + " has missing type " + type);
185                 if (oper_blocks.find(name) != oper_blocks.end())
186                         throw CoreException("Duplicate oper block with name " + name + " at " + tag->getTagLocation());
187
188                 OperInfo* ifo = new OperInfo;
189                 ifo->name = type;
190                 ifo->oper_block = tag;
191                 ifo->type_block = tblk->second->type_block;
192                 ifo->class_blocks.assign(tblk->second->class_blocks.begin(), tblk->second->class_blocks.end());
193                 oper_blocks[name] = ifo;
194         }
195 }
196
197 void ServerConfig::CrossCheckConnectBlocks(ServerConfig* current)
198 {
199         typedef std::map<std::string, ConnectClass*> ClassMap;
200         ClassMap oldBlocksByMask;
201         if (current)
202         {
203                 for(ClassVector::iterator i = current->Classes.begin(); i != current->Classes.end(); ++i)
204                 {
205                         ConnectClass* c = *i;
206                         if (c->name.compare(0, 8, "unnamed-", 8))
207                         {
208                                 oldBlocksByMask["n" + c->name] = c;
209                         }
210                         else if (c->type == CC_ALLOW || c->type == CC_DENY)
211                         {
212                                 std::string typeMask = (c->type == CC_ALLOW) ? "a" : "d";
213                                 typeMask += c->host;
214                                 oldBlocksByMask[typeMask] = c;
215                         }
216                 }
217         }
218
219         int blk_count = config_data.count("connect");
220         if (blk_count == 0)
221         {
222                 // No connect blocks found; make a trivial default block
223                 std::vector<KeyVal>* items;
224                 ConfigTag* tag = ConfigTag::create("connect", "<auto>", 0, items);
225                 items->push_back(std::make_pair("allow", "*"));
226                 config_data.insert(std::make_pair("connect", tag));
227                 blk_count = 1;
228         }
229
230         Classes.resize(blk_count);
231         std::map<std::string, int> names;
232
233         bool try_again = true;
234         for(int tries=0; try_again; tries++)
235         {
236                 try_again = false;
237                 ConfigTagList tags = ConfTags("connect");
238                 int i=0;
239                 for(ConfigIter it = tags.first; it != tags.second; ++it, ++i)
240                 {
241                         ConfigTag* tag = it->second;
242                         if (Classes[i])
243                                 continue;
244
245                         ConnectClass* parent = NULL;
246                         std::string parentName = tag->getString("parent");
247                         if (!parentName.empty())
248                         {
249                                 std::map<std::string,int>::iterator parentIter = names.find(parentName);
250                                 if (parentIter == names.end())
251                                 {
252                                         try_again = true;
253                                         // couldn't find parent this time. If it's the last time, we'll never find it.
254                                         if (tries >= blk_count)
255                                                 throw CoreException("Could not find parent connect class \"" + parentName + "\" for connect block at " + tag->getTagLocation());
256                                         continue;
257                                 }
258                                 parent = Classes[parentIter->second];
259                         }
260
261                         std::string name = tag->getString("name");
262                         std::string mask, typeMask;
263                         char type;
264
265                         if (tag->readString("allow", mask, false))
266                         {
267                                 type = CC_ALLOW;
268                                 typeMask = 'a' + mask;
269                         }
270                         else if (tag->readString("deny", mask, false))
271                         {
272                                 type = CC_DENY;
273                                 typeMask = 'd' + mask;
274                         }
275                         else if (!name.empty())
276                         {
277                                 type = CC_NAMED;
278                                 mask = name;
279                                 typeMask = 'n' + mask;
280                         }
281                         else
282                         {
283                                 throw CoreException("Connect class must have allow, deny, or name specified at " + tag->getTagLocation());
284                         }
285
286                         if (name.empty())
287                         {
288                                 name = "unnamed-" + ConvToStr(i);
289                         }
290                         else
291                         {
292                                 typeMask = 'n' + name;
293                         }
294
295                         if (names.find(name) != names.end())
296                                 throw CoreException("Two connect classes with name \"" + name + "\" defined!");
297                         names[name] = i;
298
299                         ConnectClass* me = parent ?
300                                 new ConnectClass(tag, type, mask, *parent) :
301                                 new ConnectClass(tag, type, mask);
302
303                         me->name = name;
304
305                         me->registration_timeout = tag->getInt("timeout", me->registration_timeout);
306                         me->pingtime = tag->getInt("pingfreq", me->pingtime);
307                         std::string sendq;
308                         if (tag->readString("sendq", sendq))
309                         {
310                                 // attempt to guess a good hard/soft sendq from a single value
311                                 long value = atol(sendq.c_str());
312                                 if (value > 16384)
313                                         me->softsendqmax = value / 16;
314                                 else
315                                         me->softsendqmax = value;
316                                 me->hardsendqmax = value * 8;
317                         }
318                         me->softsendqmax = tag->getInt("softsendq", me->softsendqmax);
319                         me->hardsendqmax = tag->getInt("hardsendq", me->hardsendqmax);
320                         me->recvqmax = tag->getInt("recvq", me->recvqmax);
321                         me->penaltythreshold = tag->getInt("threshold", me->penaltythreshold);
322                         me->commandrate = tag->getInt("commandrate", me->commandrate);
323                         me->fakelag = tag->getBool("fakelag", me->fakelag);
324                         me->maxlocal = tag->getInt("localmax", me->maxlocal);
325                         me->maxglobal = tag->getInt("globalmax", me->maxglobal);
326                         me->maxchans = tag->getInt("maxchans", me->maxchans);
327                         me->maxconnwarn = tag->getBool("maxconnwarn", me->maxconnwarn);
328                         me->limit = tag->getInt("limit", me->limit);
329                         me->resolvehostnames = tag->getBool("resolvehostnames", me->resolvehostnames);
330
331                         std::string ports = tag->getString("port");
332                         if (!ports.empty())
333                         {
334                                 irc::portparser portrange(ports, false);
335                                 while (int port = portrange.GetToken())
336                                         me->ports.insert(port);
337                         }
338
339                         ClassMap::iterator oldMask = oldBlocksByMask.find(typeMask);
340                         if (oldMask != oldBlocksByMask.end())
341                         {
342                                 ConnectClass* old = oldMask->second;
343                                 oldBlocksByMask.erase(oldMask);
344                                 old->Update(me);
345                                 delete me;
346                                 me = old;
347                         }
348                         Classes[i] = me;
349                 }
350         }
351 }
352
353 /** Represents a deprecated configuration tag.
354  */
355 struct DeprecatedConfig
356 {
357         /** Tag name. */
358         std::string tag;
359
360         /** Attribute key. */
361         std::string key;
362
363         /** Attribute value. */
364         std::string value;
365
366         /** Reason for deprecation. */
367         std::string reason;
368 };
369
370 static const DeprecatedConfig ChangedConfig[] = {
371         { "bind",        "transport",   "",                 "has been moved to <bind:ssl> as of 2.0" },
372         { "die",         "value",       "",                 "you need to reread your config" },
373         { "gnutls",      "starttls",    "",                 "has been replaced with m_starttls as of 3.0" },
374         { "link",        "autoconnect", "",                 "2.0+ does not use this attribute - define <autoconnect> tags instead" },
375         { "link",        "transport",   "",                 "has been moved to <link:ssl> as of 2.0" },
376         { "module",      "name",        "m_chanprotect.so", "has been replaced with m_customprefix as of 3.0" },
377         { "module",      "name",        "m_halfop.so",      "has been replaced with m_customprefix as of 3.0" },
378         { "options",     "cyclehosts",  "",                 "has been replaced with m_hostcycle as of 3.0" },
379         { "performance", "nouserdns",   "",                 "has been moved to <connect:resolvehostnames> as of 3.0" }
380 };
381
382 void ServerConfig::Fill()
383 {
384         ConfigTag* options = ConfValue("options");
385         ConfigTag* security = ConfValue("security");
386         if (sid.empty())
387         {
388                 ServerName = ConfValue("server")->getString("name", "irc.example.com");
389                 ValidHost(ServerName, "<server:name>");
390
391                 sid = ConfValue("server")->getString("id");
392                 if (!sid.empty() && !InspIRCd::IsSID(sid))
393                         throw CoreException(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.");
394         }
395         else
396         {
397                 if (ServerName != ConfValue("server")->getString("name"))
398                         throw CoreException("You must restart to change the server name");
399
400                 std::string nsid = ConfValue("server")->getString("id");
401                 if (!nsid.empty() && nsid != sid)
402                         throw CoreException("You must restart to change the server id");
403         }
404         SoftLimit = ConfValue("performance")->getInt("softlimit", (SocketEngine::GetMaxFds() > 0 ? SocketEngine::GetMaxFds() : LONG_MAX), 10);
405         CCOnConnect = ConfValue("performance")->getBool("clonesonconnect", true);
406         MaxConn = ConfValue("performance")->getInt("somaxconn", SOMAXCONN);
407         XLineMessage = options->getString("xlinemessage", options->getString("moronbanner", "You're banned!"));
408         ServerDesc = ConfValue("server")->getString("description", "Configure Me");
409         Network = ConfValue("server")->getString("network", "Network");
410         NetBufferSize = ConfValue("performance")->getInt("netbuffersize", 10240, 1024, 65534);
411         dns_timeout = ConfValue("dns")->getInt("timeout", 5);
412         DisabledCommands = ConfValue("disabled")->getString("commands", "");
413         DisabledDontExist = ConfValue("disabled")->getBool("fakenonexistant");
414         UserStats = security->getString("userstats");
415         CustomVersion = security->getString("customversion");
416         HideSplits = security->getBool("hidesplits");
417         HideBans = security->getBool("hidebans");
418         HideWhoisServer = security->getString("hidewhois");
419         HideKillsServer = security->getString("hidekills");
420         HideULineKills = security->getBool("hideulinekills");
421         RestrictBannedUsers = security->getBool("restrictbannedusers", true);
422         GenericOper = security->getBool("genericoper");
423         SyntaxHints = options->getBool("syntaxhints");
424         CycleHostsFromUser = options->getBool("cyclehostsfromuser");
425         FullHostInTopic = options->getBool("hostintopic");
426         MaxTargets = security->getInt("maxtargets", 20, 1, 31);
427         DefaultModes = options->getString("defaultmodes", "not");
428         PID = ConfValue("pid")->getString("file");
429         MaxChans = ConfValue("channels")->getInt("users", 20);
430         OperMaxChans = ConfValue("channels")->getInt("opers");
431         c_ipv4_range = ConfValue("cidr")->getInt("ipv4clone", 32);
432         c_ipv6_range = ConfValue("cidr")->getInt("ipv6clone", 128);
433         Limits = ServerLimits(ConfValue("limits"));
434         Paths.Config = ConfValue("path")->getString("configdir", INSPIRCD_CONFIG_PATH);
435         Paths.Data = ConfValue("path")->getString("datadir", INSPIRCD_DATA_PATH);
436         Paths.Log = ConfValue("path")->getString("logdir", INSPIRCD_LOG_PATH);
437         Paths.Module = ConfValue("path")->getString("moduledir", INSPIRCD_MODULE_PATH);
438         NoSnoticeStack = options->getBool("nosnoticestack", false);
439
440         if (Network.find(' ') != std::string::npos)
441                 throw CoreException(Network + " is not a valid network name. A network name must not contain spaces.");
442
443         std::string defbind = options->getString("defaultbind");
444         if (stdalgo::string::equalsci(defbind, "ipv4"))
445         {
446                 WildcardIPv6 = false;
447         }
448         else if (stdalgo::string::equalsci(defbind, "ipv6"))
449         {
450                 WildcardIPv6 = true;
451         }
452         else
453         {
454                 WildcardIPv6 = true;
455                 int socktest = socket(AF_INET6, SOCK_STREAM, 0);
456                 if (socktest < 0)
457                         WildcardIPv6 = false;
458                 else
459                         SocketEngine::Close(socktest);
460         }
461
462         ReadXLine(this, "badip", "ipmask", ServerInstance->XLines->GetFactory("Z"));
463         ReadXLine(this, "badnick", "nick", ServerInstance->XLines->GetFactory("Q"));
464         ReadXLine(this, "badhost", "host", ServerInstance->XLines->GetFactory("K"));
465         ReadXLine(this, "exception", "host", ServerInstance->XLines->GetFactory("E"));
466
467         memset(DisabledUModes, 0, sizeof(DisabledUModes));
468         std::string modes = ConfValue("disabled")->getString("usermodes");
469         for (std::string::const_iterator p = modes.begin(); p != modes.end(); ++p)
470         {
471                 // Complain when the character is not a-z or A-Z
472                 if ((*p < 'A') || (*p > 'z') || ((*p < 'a') && (*p > 'Z')))
473                         throw CoreException("Invalid usermode " + std::string(1, *p) + " was found.");
474                 DisabledUModes[*p - 'A'] = 1;
475         }
476
477         memset(DisabledCModes, 0, sizeof(DisabledCModes));
478         modes = ConfValue("disabled")->getString("chanmodes");
479         for (std::string::const_iterator p = modes.begin(); p != modes.end(); ++p)
480         {
481                 if ((*p < 'A') || (*p > 'z') || ((*p < 'a') && (*p > 'Z')))
482                         throw CoreException("Invalid chanmode " + std::string(1, *p) + " was found.");
483                 DisabledCModes[*p - 'A'] = 1;
484         }
485
486         std::string v = security->getString("announceinvites");
487
488         if (v == "ops")
489                 AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_OPS;
490         else if (v == "all")
491                 AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_ALL;
492         else if (v == "dynamic")
493                 AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_DYNAMIC;
494         else
495                 AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_NONE;
496
497         v = security->getString("operspywhois");
498         if (v == "splitmsg")
499                 OperSpyWhois = SPYWHOIS_SPLITMSG;
500         else if (v == "on" || v == "yes")
501                 OperSpyWhois = SPYWHOIS_SINGLEMSG;
502         else
503                 OperSpyWhois = SPYWHOIS_NONE;
504 }
505
506 // WARNING: it is not safe to use most of the codebase in this function, as it
507 // will run in the config reader thread
508 void ServerConfig::Read()
509 {
510         /* Load and parse the config file, if there are any errors then explode */
511
512         ParseStack stack(this);
513         try
514         {
515                 valid = stack.ParseFile(ServerInstance->ConfigFileName, 0);
516         }
517         catch (CoreException& err)
518         {
519                 valid = false;
520                 errstr << err.GetReason() << std::endl;
521         }
522 }
523
524 void ServerConfig::Apply(ServerConfig* old, const std::string &useruid)
525 {
526         valid = true;
527         if (old)
528         {
529                 /*
530                  * These values can only be set on boot. Keep their old values. Do it before we send messages so we actually have a servername.
531                  */
532                 this->ServerName = old->ServerName;
533                 this->sid = old->sid;
534                 this->cmdline = old->cmdline;
535         }
536
537         /* The stuff in here may throw CoreException, be sure we're in a position to catch it. */
538         try
539         {
540                 for (int index = 0; index * sizeof(DeprecatedConfig) < sizeof(ChangedConfig); index++)
541                 {
542                         std::string value;
543                         ConfigTagList tags = ConfTags(ChangedConfig[index].tag);
544                         for(ConfigIter i = tags.first; i != tags.second; ++i)
545                         {
546                                 if (i->second->readString(ChangedConfig[index].key, value, true)
547                                         && (ChangedConfig[index].value.empty() || value == ChangedConfig[index].value))
548                                 {
549                                         errstr << "Your configuration contains a deprecated value: <"  << ChangedConfig[index].tag;
550                                         if (ChangedConfig[index].value.empty())
551                                         {
552                                                 errstr << ':' << ChangedConfig[index].key;
553                                         }
554                                         else
555                                         {
556                                                 errstr << ' ' << ChangedConfig[index].key << "=\"" << ChangedConfig[index].value << "\"";
557                                         }
558                                         errstr << "> - " << ChangedConfig[index].reason << " (at " << i->second->getTagLocation() << ")" << std::endl;
559                                 }
560                         }
561                 }
562
563                 Fill();
564
565                 // Handle special items
566                 CrossCheckOperClassType();
567                 CrossCheckConnectBlocks(old);
568         }
569         catch (CoreException &ce)
570         {
571                 errstr << ce.GetReason();
572         }
573
574         // Check errors before dealing with failed binds, since continuing on failed bind is wanted in some circumstances.
575         valid = errstr.str().empty();
576
577         // write once here, to try it out and make sure its ok
578         if (valid)
579                 ServerInstance->WritePID(this->PID, !old);
580
581         ConfigTagList binds = ConfTags("bind");
582         if (binds.first == binds.second)
583                  errstr << "Possible configuration error: you have not defined any <bind> blocks." << std::endl
584                          << "You will need to do this if you want clients to be able to connect!" << std::endl;
585
586         if (old && valid)
587         {
588                 // On first run, ports are bound later on
589                 FailedPortList pl;
590                 ServerInstance->BindPorts(pl);
591                 if (pl.size())
592                 {
593                         errstr << "Not all your client ports could be bound." << std::endl
594                                 << "The following port(s) failed to bind:" << std::endl;
595
596                         int j = 1;
597                         for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
598                         {
599                                 errstr << j << ".\tAddress: " << (i->first.empty() ? "<all>" : i->first.c_str()) << "\tReason: "
600                                         << i->second << std::endl;
601                         }
602                 }
603         }
604
605         User* user = useruid.empty() ? NULL : ServerInstance->FindNick(useruid);
606
607         if (!valid)
608         {
609                 ServerInstance->Logs->Log("CONFIG", LOG_DEFAULT, "There were errors in your configuration file:");
610                 Classes.clear();
611         }
612
613         while (errstr.good())
614         {
615                 std::string line;
616                 getline(errstr, line, '\n');
617                 if (line.empty())
618                         continue;
619                 // On startup, print out to console (still attached at this point)
620                 if (!old)
621                         std::cout << line << std::endl;
622                 // If a user is rehashing, tell them directly
623                 if (user)
624                         user->WriteRemoteNotice(InspIRCd::Format("*** %s", line.c_str()));
625                 // Also tell opers
626                 ServerInstance->SNO->WriteGlobalSno('a', line);
627         }
628
629         errstr.clear();
630         errstr.str(std::string());
631
632         // Re-parse our MOTD and RULES files for colors -- Justasic
633         for (ClassVector::const_iterator it = this->Classes.begin(), it_end = this->Classes.end(); it != it_end; ++it)
634         {
635                 ConfigTag *tag = (*it)->config;
636                 // Make sure our connection class allows motd colors
637                 if(!tag->getBool("allowmotdcolors"))
638                         continue;
639
640                 ConfigFileCache::iterator file = this->Files.find(tag->getString("motd", "motd"));
641                 if (file != this->Files.end())
642                         InspIRCd::ProcessColors(file->second);
643         }
644
645         /* No old configuration -> initial boot, nothing more to do here */
646         if (!old)
647         {
648                 if (!valid)
649                 {
650                         ServerInstance->Exit(EXIT_STATUS_CONFIG);
651                 }
652
653                 return;
654         }
655
656
657         // If there were errors processing configuration, don't touch modules.
658         if (!valid)
659                 return;
660
661         ApplyModules(user);
662
663         if (user)
664                 user->WriteRemoteNotice("*** Successfully rehashed server.");
665         ServerInstance->SNO->WriteGlobalSno('a', "*** Successfully rehashed server.");
666 }
667
668 void ServerConfig::ApplyModules(User* user)
669 {
670         std::vector<std::string> added_modules;
671         ModuleManager::ModuleMap removed_modules = ServerInstance->Modules->GetModules();
672
673         ConfigTagList tags = ConfTags("module");
674         for(ConfigIter i = tags.first; i != tags.second; ++i)
675         {
676                 ConfigTag* tag = i->second;
677                 std::string name;
678                 if (tag->readString("name", name))
679                 {
680                         name = ModuleManager::ExpandModName(name);
681                         // if this module is already loaded, the erase will succeed, so we need do nothing
682                         // otherwise, we need to add the module (which will be done later)
683                         if (removed_modules.erase(name) == 0)
684                                 added_modules.push_back(name);
685                 }
686         }
687
688         for (ModuleManager::ModuleMap::iterator i = removed_modules.begin(); i != removed_modules.end(); ++i)
689         {
690                 const std::string& modname = i->first;
691                 // Don't remove core_*.so, just remove m_*.so
692                 if (modname.c_str()[0] == 'c')
693                         continue;
694                 if (ServerInstance->Modules->Unload(i->second))
695                 {
696                         ServerInstance->SNO->WriteGlobalSno('a', "*** REHASH UNLOADED MODULE: %s", modname.c_str());
697
698                         if (user)
699                                 user->WriteNumeric(RPL_UNLOADEDMODULE, modname, InspIRCd::Format("Module %s successfully unloaded.", modname.c_str()));
700                         else
701                                 ServerInstance->SNO->WriteGlobalSno('a', "Module %s successfully unloaded.", modname.c_str());
702                 }
703                 else
704                 {
705                         if (user)
706                                 user->WriteNumeric(ERR_CANTUNLOADMODULE, modname, InspIRCd::Format("Failed to unload module %s: %s", modname.c_str(), ServerInstance->Modules->LastError().c_str()));
707                         else
708                                 ServerInstance->SNO->WriteGlobalSno('a', "Failed to unload module %s: %s", modname.c_str(), ServerInstance->Modules->LastError().c_str());
709                 }
710         }
711
712         for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
713         {
714                 if (ServerInstance->Modules->Load(*adding))
715                 {
716                         ServerInstance->SNO->WriteGlobalSno('a', "*** REHASH LOADED MODULE: %s",adding->c_str());
717                         if (user)
718                                 user->WriteNumeric(RPL_LOADEDMODULE, *adding, InspIRCd::Format("Module %s successfully loaded.", adding->c_str()));
719                         else
720                                 ServerInstance->SNO->WriteGlobalSno('a', "Module %s successfully loaded.", adding->c_str());
721                 }
722                 else
723                 {
724                         if (user)
725                                 user->WriteNumeric(ERR_CANTLOADMODULE, *adding, InspIRCd::Format("Failed to load module %s: %s", adding->c_str(), ServerInstance->Modules->LastError().c_str()));
726                         else
727                                 ServerInstance->SNO->WriteGlobalSno('a', "Failed to load module %s: %s", adding->c_str(), ServerInstance->Modules->LastError().c_str());
728                 }
729         }
730 }
731
732 ConfigTag* ServerConfig::ConfValue(const std::string &tag)
733 {
734         ConfigTagList found = config_data.equal_range(tag);
735         if (found.first == found.second)
736                 return EmptyTag;
737         ConfigTag* rv = found.first->second;
738         found.first++;
739         if (found.first != found.second)
740                 ServerInstance->Logs->Log("CONFIG", LOG_DEFAULT, "Multiple <" + tag + "> tags found; only first will be used "
741                         "(first at " + rv->getTagLocation() + "; second at " + found.first->second->getTagLocation() + ")");
742         return rv;
743 }
744
745 ConfigTagList ServerConfig::ConfTags(const std::string& tag)
746 {
747         return config_data.equal_range(tag);
748 }
749
750 std::string ServerConfig::Escape(const std::string& str, bool xml)
751 {
752         std::string escaped;
753         for (std::string::const_iterator it = str.begin(); it != str.end(); ++it)
754         {
755                 switch (*it)
756                 {
757                         case '"':
758                                 escaped += xml ? "&quot;" : "\"";
759                                 break;
760                         case '&':
761                                 escaped += xml ? "&amp;" : "&";
762                                 break;
763                         case '\\':
764                                 escaped += xml ? "\\" : "\\\\";
765                                 break;
766                         default:
767                                 escaped += *it;
768                                 break;
769                 }
770         }
771         return escaped;
772 }
773
774 void ConfigReaderThread::Run()
775 {
776         Config->Read();
777         done = true;
778 }
779
780 void ConfigReaderThread::Finish()
781 {
782         ServerConfig* old = ServerInstance->Config;
783         ServerInstance->Logs->Log("CONFIG", LOG_DEBUG, "Switching to new configuration...");
784         ServerInstance->Config = this->Config;
785         Config->Apply(old, TheUserUID);
786
787         if (Config->valid)
788         {
789                 /*
790                  * Apply the changed configuration from the rehash.
791                  *
792                  * XXX: The order of these is IMPORTANT, do not reorder them without testing
793                  * thoroughly!!!
794                  */
795                 ServerInstance->Users.RehashCloneCounts();
796                 ServerInstance->XLines->CheckELines();
797                 ServerInstance->XLines->ApplyLines();
798                 ChanModeReference ban(NULL, "ban");
799                 static_cast<ListModeBase*>(*ban)->DoRehash();
800                 Config->ApplyDisabledCommands(Config->DisabledCommands);
801                 User* user = ServerInstance->FindNick(TheUserUID);
802
803                 ConfigStatus status(user);
804                 const ModuleManager::ModuleMap& mods = ServerInstance->Modules->GetModules();
805                 for (ModuleManager::ModuleMap::const_iterator i = mods.begin(); i != mods.end(); ++i)
806                         i->second->ReadConfig(status);
807
808                 // The description of this server may have changed - update it for WHOIS etc.
809                 ServerInstance->FakeClient->server->description = Config->ServerDesc;
810
811                 ServerInstance->ISupport.Build();
812
813                 ServerInstance->Logs->CloseLogs();
814                 ServerInstance->Logs->OpenFileLogs();
815
816                 if (Config->RawLog && !old->RawLog)
817                         ServerInstance->Users->ServerNoticeAll("*** Raw I/O logging is enabled on this server. All messages, passwords, and commands are being recorded.");
818
819                 Config = old;
820         }
821         else
822         {
823                 // whoops, abort!
824                 ServerInstance->Config = old;
825         }
826 }