]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/configreader.cpp
Fix the server failing to rehash when <server:name> is unset.
[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         ConfigItems* 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                 ConfigItems* items;
224                 ConfigTag* tag = ConfigTag::create("connect", "<auto>", 0, items);
225                 (*items)["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         ConfigTag* server = ConfValue("server");
387         if (sid.empty())
388         {
389                 ServerName = server->getString("name", "irc.example.com");
390                 ValidHost(ServerName, "<server:name>");
391
392                 sid = server->getString("id");
393                 if (!sid.empty() && !InspIRCd::IsSID(sid))
394                         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.");
395         }
396         else
397         {
398                 std::string name = server->getString("name");
399                 if (!name.empty() && name != ServerName)
400                         throw CoreException("You must restart to change the server name");
401
402                 std::string nsid = server->getString("id");
403                 if (!nsid.empty() && nsid != sid)
404                         throw CoreException("You must restart to change the server id");
405         }
406         SoftLimit = ConfValue("performance")->getInt("softlimit", (SocketEngine::GetMaxFds() > 0 ? SocketEngine::GetMaxFds() : LONG_MAX), 10);
407         CCOnConnect = ConfValue("performance")->getBool("clonesonconnect", true);
408         MaxConn = ConfValue("performance")->getInt("somaxconn", SOMAXCONN);
409         XLineMessage = options->getString("xlinemessage", options->getString("moronbanner", "You're banned!"));
410         ServerDesc = server->getString("description", "Configure Me");
411         Network = server->getString("network", "Network");
412         NetBufferSize = ConfValue("performance")->getInt("netbuffersize", 10240, 1024, 65534);
413         dns_timeout = ConfValue("dns")->getInt("timeout", 5);
414         DisabledCommands = ConfValue("disabled")->getString("commands", "");
415         DisabledDontExist = ConfValue("disabled")->getBool("fakenonexistant");
416         UserStats = security->getString("userstats");
417         CustomVersion = security->getString("customversion");
418         HideSplits = security->getBool("hidesplits");
419         HideBans = security->getBool("hidebans");
420         HideWhoisServer = security->getString("hidewhois");
421         HideKillsServer = security->getString("hidekills");
422         HideULineKills = security->getBool("hideulinekills");
423         RestrictBannedUsers = security->getBool("restrictbannedusers", true);
424         GenericOper = security->getBool("genericoper");
425         SyntaxHints = options->getBool("syntaxhints");
426         CycleHostsFromUser = options->getBool("cyclehostsfromuser");
427         FullHostInTopic = options->getBool("hostintopic");
428         MaxTargets = security->getInt("maxtargets", 20, 1, 31);
429         DefaultModes = options->getString("defaultmodes", "not");
430         PID = ConfValue("pid")->getString("file");
431         MaxChans = ConfValue("channels")->getInt("users", 20);
432         OperMaxChans = ConfValue("channels")->getInt("opers");
433         c_ipv4_range = ConfValue("cidr")->getInt("ipv4clone", 32);
434         c_ipv6_range = ConfValue("cidr")->getInt("ipv6clone", 128);
435         Limits = ServerLimits(ConfValue("limits"));
436         Paths.Config = ConfValue("path")->getString("configdir", INSPIRCD_CONFIG_PATH);
437         Paths.Data = ConfValue("path")->getString("datadir", INSPIRCD_DATA_PATH);
438         Paths.Log = ConfValue("path")->getString("logdir", INSPIRCD_LOG_PATH);
439         Paths.Module = ConfValue("path")->getString("moduledir", INSPIRCD_MODULE_PATH);
440         NoSnoticeStack = options->getBool("nosnoticestack", false);
441
442         if (Network.find(' ') != std::string::npos)
443                 throw CoreException(Network + " is not a valid network name. A network name must not contain spaces.");
444
445         std::string defbind = options->getString("defaultbind");
446         if (stdalgo::string::equalsci(defbind, "ipv4"))
447         {
448                 WildcardIPv6 = false;
449         }
450         else if (stdalgo::string::equalsci(defbind, "ipv6"))
451         {
452                 WildcardIPv6 = true;
453         }
454         else
455         {
456                 WildcardIPv6 = true;
457                 int socktest = socket(AF_INET6, SOCK_STREAM, 0);
458                 if (socktest < 0)
459                         WildcardIPv6 = false;
460                 else
461                         SocketEngine::Close(socktest);
462         }
463
464         ReadXLine(this, "badip", "ipmask", ServerInstance->XLines->GetFactory("Z"));
465         ReadXLine(this, "badnick", "nick", ServerInstance->XLines->GetFactory("Q"));
466         ReadXLine(this, "badhost", "host", ServerInstance->XLines->GetFactory("K"));
467         ReadXLine(this, "exception", "host", ServerInstance->XLines->GetFactory("E"));
468
469         memset(DisabledUModes, 0, sizeof(DisabledUModes));
470         std::string modes = ConfValue("disabled")->getString("usermodes");
471         for (std::string::const_iterator p = modes.begin(); p != modes.end(); ++p)
472         {
473                 // Complain when the character is not a-z or A-Z
474                 if ((*p < 'A') || (*p > 'z') || ((*p < 'a') && (*p > 'Z')))
475                         throw CoreException("Invalid usermode " + std::string(1, *p) + " was found.");
476                 DisabledUModes[*p - 'A'] = 1;
477         }
478
479         memset(DisabledCModes, 0, sizeof(DisabledCModes));
480         modes = ConfValue("disabled")->getString("chanmodes");
481         for (std::string::const_iterator p = modes.begin(); p != modes.end(); ++p)
482         {
483                 if ((*p < 'A') || (*p > 'z') || ((*p < 'a') && (*p > 'Z')))
484                         throw CoreException("Invalid chanmode " + std::string(1, *p) + " was found.");
485                 DisabledCModes[*p - 'A'] = 1;
486         }
487
488         std::string v = security->getString("announceinvites");
489
490         if (v == "ops")
491                 AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_OPS;
492         else if (v == "all")
493                 AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_ALL;
494         else if (v == "dynamic")
495                 AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_DYNAMIC;
496         else
497                 AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_NONE;
498
499         v = security->getString("operspywhois");
500         if (v == "splitmsg")
501                 OperSpyWhois = SPYWHOIS_SPLITMSG;
502         else if (v == "on" || v == "yes")
503                 OperSpyWhois = SPYWHOIS_SINGLEMSG;
504         else
505                 OperSpyWhois = SPYWHOIS_NONE;
506 }
507
508 // WARNING: it is not safe to use most of the codebase in this function, as it
509 // will run in the config reader thread
510 void ServerConfig::Read()
511 {
512         /* Load and parse the config file, if there are any errors then explode */
513
514         ParseStack stack(this);
515         try
516         {
517                 valid = stack.ParseFile(ServerInstance->ConfigFileName, 0);
518         }
519         catch (CoreException& err)
520         {
521                 valid = false;
522                 errstr << err.GetReason() << std::endl;
523         }
524 }
525
526 void ServerConfig::Apply(ServerConfig* old, const std::string &useruid)
527 {
528         valid = true;
529         if (old)
530         {
531                 /*
532                  * These values can only be set on boot. Keep their old values. Do it before we send messages so we actually have a servername.
533                  */
534                 this->ServerName = old->ServerName;
535                 this->sid = old->sid;
536                 this->cmdline = old->cmdline;
537         }
538
539         /* The stuff in here may throw CoreException, be sure we're in a position to catch it. */
540         try
541         {
542                 for (int index = 0; index * sizeof(DeprecatedConfig) < sizeof(ChangedConfig); index++)
543                 {
544                         std::string value;
545                         ConfigTagList tags = ConfTags(ChangedConfig[index].tag);
546                         for(ConfigIter i = tags.first; i != tags.second; ++i)
547                         {
548                                 if (i->second->readString(ChangedConfig[index].key, value, true)
549                                         && (ChangedConfig[index].value.empty() || value == ChangedConfig[index].value))
550                                 {
551                                         errstr << "Your configuration contains a deprecated value: <"  << ChangedConfig[index].tag;
552                                         if (ChangedConfig[index].value.empty())
553                                         {
554                                                 errstr << ':' << ChangedConfig[index].key;
555                                         }
556                                         else
557                                         {
558                                                 errstr << ' ' << ChangedConfig[index].key << "=\"" << ChangedConfig[index].value << "\"";
559                                         }
560                                         errstr << "> - " << ChangedConfig[index].reason << " (at " << i->second->getTagLocation() << ")" << std::endl;
561                                 }
562                         }
563                 }
564
565                 Fill();
566
567                 // Handle special items
568                 CrossCheckOperClassType();
569                 CrossCheckConnectBlocks(old);
570         }
571         catch (CoreException &ce)
572         {
573                 errstr << ce.GetReason() << std::endl;
574         }
575
576         // Check errors before dealing with failed binds, since continuing on failed bind is wanted in some circumstances.
577         valid = errstr.str().empty();
578
579         // write once here, to try it out and make sure its ok
580         if (valid)
581                 ServerInstance->WritePID(this->PID, !old);
582
583         ConfigTagList binds = ConfTags("bind");
584         if (binds.first == binds.second)
585                  errstr << "Possible configuration error: you have not defined any <bind> blocks." << std::endl
586                          << "You will need to do this if you want clients to be able to connect!" << std::endl;
587
588         if (old && valid)
589         {
590                 // On first run, ports are bound later on
591                 FailedPortList pl;
592                 ServerInstance->BindPorts(pl);
593                 if (pl.size())
594                 {
595                         errstr << "Not all your client ports could be bound." << std::endl
596                                 << "The following port(s) failed to bind:" << std::endl;
597
598                         int j = 1;
599                         for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
600                         {
601                                 errstr << j << ".\tAddress: " << (i->first.empty() ? "<all>" : i->first.c_str()) << "\tReason: "
602                                         << i->second << std::endl;
603                         }
604                 }
605         }
606
607         User* user = useruid.empty() ? NULL : ServerInstance->FindNick(useruid);
608
609         if (!valid)
610         {
611                 ServerInstance->Logs->Log("CONFIG", LOG_DEFAULT, "There were errors in your configuration file:");
612                 Classes.clear();
613         }
614
615         while (errstr.good())
616         {
617                 std::string line;
618                 getline(errstr, line, '\n');
619                 if (line.empty())
620                         continue;
621                 // On startup, print out to console (still attached at this point)
622                 if (!old)
623                         std::cout << line << std::endl;
624                 // If a user is rehashing, tell them directly
625                 if (user)
626                         user->WriteRemoteNotice(InspIRCd::Format("*** %s", line.c_str()));
627                 // Also tell opers
628                 ServerInstance->SNO->WriteGlobalSno('a', line);
629         }
630
631         errstr.clear();
632         errstr.str(std::string());
633
634         // Re-parse our MOTD and RULES files for colors -- Justasic
635         for (ClassVector::const_iterator it = this->Classes.begin(), it_end = this->Classes.end(); it != it_end; ++it)
636         {
637                 ConfigTag *tag = (*it)->config;
638                 // Make sure our connection class allows motd colors
639                 if(!tag->getBool("allowmotdcolors"))
640                         continue;
641
642                 ConfigFileCache::iterator file = this->Files.find(tag->getString("motd", "motd"));
643                 if (file != this->Files.end())
644                         InspIRCd::ProcessColors(file->second);
645         }
646
647         /* No old configuration -> initial boot, nothing more to do here */
648         if (!old)
649         {
650                 if (!valid)
651                 {
652                         ServerInstance->Exit(EXIT_STATUS_CONFIG);
653                 }
654
655                 return;
656         }
657
658
659         // If there were errors processing configuration, don't touch modules.
660         if (!valid)
661                 return;
662
663         ApplyModules(user);
664
665         if (user)
666                 user->WriteRemoteNotice("*** Successfully rehashed server.");
667         ServerInstance->SNO->WriteGlobalSno('a', "*** Successfully rehashed server.");
668 }
669
670 void ServerConfig::ApplyModules(User* user)
671 {
672         std::vector<std::string> added_modules;
673         ModuleManager::ModuleMap removed_modules = ServerInstance->Modules->GetModules();
674
675         ConfigTagList tags = ConfTags("module");
676         for(ConfigIter i = tags.first; i != tags.second; ++i)
677         {
678                 ConfigTag* tag = i->second;
679                 std::string name;
680                 if (tag->readString("name", name))
681                 {
682                         name = ModuleManager::ExpandModName(name);
683                         // if this module is already loaded, the erase will succeed, so we need do nothing
684                         // otherwise, we need to add the module (which will be done later)
685                         if (removed_modules.erase(name) == 0)
686                                 added_modules.push_back(name);
687                 }
688         }
689
690         for (ModuleManager::ModuleMap::iterator i = removed_modules.begin(); i != removed_modules.end(); ++i)
691         {
692                 const std::string& modname = i->first;
693                 // Don't remove core_*.so, just remove m_*.so
694                 if (modname.c_str()[0] == 'c')
695                         continue;
696                 if (ServerInstance->Modules->Unload(i->second))
697                 {
698                         ServerInstance->SNO->WriteGlobalSno('a', "*** REHASH UNLOADED MODULE: %s", modname.c_str());
699
700                         if (user)
701                                 user->WriteNumeric(RPL_UNLOADEDMODULE, modname, InspIRCd::Format("Module %s successfully unloaded.", modname.c_str()));
702                         else
703                                 ServerInstance->SNO->WriteGlobalSno('a', "Module %s successfully unloaded.", modname.c_str());
704                 }
705                 else
706                 {
707                         if (user)
708                                 user->WriteNumeric(ERR_CANTUNLOADMODULE, modname, InspIRCd::Format("Failed to unload module %s: %s", modname.c_str(), ServerInstance->Modules->LastError().c_str()));
709                         else
710                                 ServerInstance->SNO->WriteGlobalSno('a', "Failed to unload module %s: %s", modname.c_str(), ServerInstance->Modules->LastError().c_str());
711                 }
712         }
713
714         for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
715         {
716                 if (ServerInstance->Modules->Load(*adding))
717                 {
718                         ServerInstance->SNO->WriteGlobalSno('a', "*** REHASH LOADED MODULE: %s",adding->c_str());
719                         if (user)
720                                 user->WriteNumeric(RPL_LOADEDMODULE, *adding, InspIRCd::Format("Module %s successfully loaded.", adding->c_str()));
721                         else
722                                 ServerInstance->SNO->WriteGlobalSno('a', "Module %s successfully loaded.", adding->c_str());
723                 }
724                 else
725                 {
726                         if (user)
727                                 user->WriteNumeric(ERR_CANTLOADMODULE, *adding, InspIRCd::Format("Failed to load module %s: %s", adding->c_str(), ServerInstance->Modules->LastError().c_str()));
728                         else
729                                 ServerInstance->SNO->WriteGlobalSno('a', "Failed to load module %s: %s", adding->c_str(), ServerInstance->Modules->LastError().c_str());
730                 }
731         }
732 }
733
734 ConfigTag* ServerConfig::ConfValue(const std::string &tag)
735 {
736         ConfigTagList found = config_data.equal_range(tag);
737         if (found.first == found.second)
738                 return EmptyTag;
739         ConfigTag* rv = found.first->second;
740         found.first++;
741         if (found.first != found.second)
742                 ServerInstance->Logs->Log("CONFIG", LOG_DEFAULT, "Multiple <" + tag + "> tags found; only first will be used "
743                         "(first at " + rv->getTagLocation() + "; second at " + found.first->second->getTagLocation() + ")");
744         return rv;
745 }
746
747 ConfigTagList ServerConfig::ConfTags(const std::string& tag)
748 {
749         return config_data.equal_range(tag);
750 }
751
752 std::string ServerConfig::Escape(const std::string& str, bool xml)
753 {
754         std::string escaped;
755         for (std::string::const_iterator it = str.begin(); it != str.end(); ++it)
756         {
757                 switch (*it)
758                 {
759                         case '"':
760                                 escaped += xml ? "&quot;" : "\"";
761                                 break;
762                         case '&':
763                                 escaped += xml ? "&amp;" : "&";
764                                 break;
765                         case '\\':
766                                 escaped += xml ? "\\" : "\\\\";
767                                 break;
768                         default:
769                                 escaped += *it;
770                                 break;
771                 }
772         }
773         return escaped;
774 }
775
776 void ConfigReaderThread::Run()
777 {
778         Config->Read();
779         done = true;
780 }
781
782 void ConfigReaderThread::Finish()
783 {
784         ServerConfig* old = ServerInstance->Config;
785         ServerInstance->Logs->Log("CONFIG", LOG_DEBUG, "Switching to new configuration...");
786         ServerInstance->Config = this->Config;
787         Config->Apply(old, TheUserUID);
788
789         if (Config->valid)
790         {
791                 /*
792                  * Apply the changed configuration from the rehash.
793                  *
794                  * XXX: The order of these is IMPORTANT, do not reorder them without testing
795                  * thoroughly!!!
796                  */
797                 ServerInstance->Users.RehashCloneCounts();
798                 ServerInstance->XLines->CheckELines();
799                 ServerInstance->XLines->ApplyLines();
800                 ChanModeReference ban(NULL, "ban");
801                 static_cast<ListModeBase*>(*ban)->DoRehash();
802                 Config->ApplyDisabledCommands(Config->DisabledCommands);
803                 User* user = ServerInstance->FindNick(TheUserUID);
804
805                 ConfigStatus status(user);
806                 const ModuleManager::ModuleMap& mods = ServerInstance->Modules->GetModules();
807                 for (ModuleManager::ModuleMap::const_iterator i = mods.begin(); i != mods.end(); ++i)
808                         i->second->ReadConfig(status);
809
810                 // The description of this server may have changed - update it for WHOIS etc.
811                 ServerInstance->FakeClient->server->description = Config->ServerDesc;
812
813                 ServerInstance->ISupport.Build();
814
815                 ServerInstance->Logs->CloseLogs();
816                 ServerInstance->Logs->OpenFileLogs();
817
818                 if (Config->RawLog && !old->RawLog)
819                         ServerInstance->Users->ServerNoticeAll("*** Raw I/O logging is enabled on this server. All messages, passwords, and commands are being recorded.");
820
821                 Config = old;
822         }
823         else
824         {
825                 // whoops, abort!
826                 ServerInstance->Config = old;
827         }
828 }