]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/configreader.cpp
Merge commit 'refs/merge-requests/5' of git://gitorious.org/inspircd/inspircd into...
[user/henk/code/inspircd.git] / src / configreader.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include <fstream>
16 #include "xline.h"
17 #include "exitcodes.h"
18 #include "commands/cmd_whowas.h"
19 #include "configparser.h"
20
21 ServerConfig::ServerConfig()
22 {
23         WhoWasGroupSize = WhoWasMaxGroups = WhoWasMaxKeep = 0;
24         RawLog = NoUserDns = HideBans = HideSplits = UndernetMsgPrefix = false;
25         WildcardIPv6 = CycleHosts = InvBypassModes = true;
26         dns_timeout = 5;
27         MaxTargets = 20;
28         NetBufferSize = 10240;
29         SoftLimit = ServerInstance->SE->GetMaxFds();
30         MaxConn = SOMAXCONN;
31         MaxChans = 20;
32         OperMaxChans = 30;
33         c_ipv4_range = 32;
34         c_ipv6_range = 128;
35 }
36
37 void ServerConfig::Update005()
38 {
39         std::stringstream out(data005);
40         std::vector<std::string> data;
41         std::string token;
42         while (out >> token)
43                 data.push_back(token);
44         sort(data.begin(), data.end());
45
46         std::string line5;
47         isupport.clear();
48         for(unsigned int i=0; i < data.size(); i++)
49         {
50                 token = data[i];
51                 line5 = line5 + token + " ";
52                 if (i % 13 == 12)
53                 {
54                         line5.append(":are supported by this server");
55                         isupport.push_back(line5);
56                         line5.clear();
57                 }
58         }
59         if (!line5.empty())
60         {
61                 line5.append(":are supported by this server");
62                 isupport.push_back(line5);
63         }
64 }
65
66 void ServerConfig::Send005(User* user)
67 {
68         for (std::vector<std::string>::iterator line = ServerInstance->Config->isupport.begin(); line != ServerInstance->Config->isupport.end(); line++)
69                 user->WriteNumeric(RPL_ISUPPORT, "%s %s", user->nick.c_str(), line->c_str());
70 }
71
72 template<typename T, typename V>
73 static void range(T& value, V min, V max, V def, const char* msg)
74 {
75         if (value >= (T)min && value <= (T)max)
76                 return;
77         ServerInstance->Logs->Log("CONFIG", DEFAULT,
78                 "WARNING: %s value of %ld is not between %ld and %ld; set to %ld.",
79                 msg, (long)value, (long)min, (long)max, (long)def);
80         value = def;
81 }
82
83
84 static void ValidIP(const std::string& ip, const std::string& key)
85 {
86         irc::sockets::sockaddrs dummy;
87         if (!irc::sockets::aptosa(ip, 0, dummy))
88                 throw CoreException("The value of "+key+" is not an IP address");
89 }
90
91 static void ValidHost(const std::string& p, const std::string& msg)
92 {
93         int num_dots = 0;
94         if (p.empty() || p[0] == '.')
95                 throw CoreException("The value of "+msg+" is not a valid hostname");
96         for (unsigned int i=0;i < p.length();i++)
97         {
98                 switch (p[i])
99                 {
100                         case ' ':
101                                 throw CoreException("The value of "+msg+" is not a valid hostname");
102                         case '.':
103                                 num_dots++;
104                         break;
105                 }
106         }
107         if (num_dots == 0)
108                 throw CoreException("The value of "+msg+" is not a valid hostname");
109 }
110
111 bool ServerConfig::ApplyDisabledCommands(const std::string& data)
112 {
113         std::stringstream dcmds(data);
114         std::string thiscmd;
115
116         /* Enable everything first */
117         for (Commandtable::iterator x = ServerInstance->Parser->cmdlist.begin(); x != ServerInstance->Parser->cmdlist.end(); x++)
118                 x->second->Disable(false);
119
120         /* Now disable all the ones which the user wants disabled */
121         while (dcmds >> thiscmd)
122         {
123                 Commandtable::iterator cm = ServerInstance->Parser->cmdlist.find(thiscmd);
124                 if (cm != ServerInstance->Parser->cmdlist.end())
125                 {
126                         cm->second->Disable(true);
127                 }
128         }
129         return true;
130 }
131
132 #ifdef WINDOWS
133 // Note: the windows validator is in win32wrapper.cpp
134 void FindDNS(std::string& server);
135 #else
136 static void FindDNS(std::string& server)
137 {
138         if (!server.empty())
139                 return;
140
141         // attempt to look up their nameserver from /etc/resolv.conf
142         ServerInstance->Logs->Log("CONFIG",DEFAULT,"WARNING: <dns:server> not defined, attempting to find working server in /etc/resolv.conf...");
143
144         std::ifstream resolv("/etc/resolv.conf");
145
146         while (resolv >> server)
147         {
148                 if (server == "nameserver")
149                 {
150                         resolv >> server;
151                         if (server.find_first_not_of("0123456789.") == std::string::npos)
152                         {
153                                 ServerInstance->Logs->Log("CONFIG",DEFAULT,"<dns:server> set to '%s' as first resolver in /etc/resolv.conf.",server.c_str());
154                                 return;
155                         }
156                 }
157         }
158
159         ServerInstance->Logs->Log("CONFIG",DEFAULT,"/etc/resolv.conf contains no viable nameserver entries! Defaulting to nameserver '127.0.0.1'!");
160         server = "127.0.0.1";
161 }
162 #endif
163
164 static void ReadXLine(ServerConfig* conf, const std::string& tag, const std::string& key, XLineFactory* make)
165 {
166         ConfigTagList tags = conf->ConfTags(tag);
167         for(ConfigIter i = tags.first; i != tags.second; ++i)
168         {
169                 ConfigTag* ctag = i->second;
170                 std::string mask;
171                 if (!ctag->readString(key, mask))
172                         throw CoreException("<"+tag+":"+key+"> missing at " + ctag->getTagLocation());
173                 std::string reason = ctag->getString("reason", "<Config>");
174                 XLine* xl = make->Generate(ServerInstance->Time(), 0, "<Config>", reason, mask);
175                 if (!ServerInstance->XLines->AddLine(xl, NULL))
176                         delete xl;
177         }
178 }
179
180 typedef std::map<std::string, ConfigTag*> LocalIndex;
181 void ServerConfig::CrossCheckOperClassType()
182 {
183         LocalIndex operclass;
184         ConfigTagList tags = ConfTags("class");
185         for(ConfigIter i = tags.first; i != tags.second; ++i)
186         {
187                 ConfigTag* tag = i->second;
188                 std::string name = tag->getString("name");
189                 if (name.empty())
190                         throw CoreException("<class:name> missing from tag at " + tag->getTagLocation());
191                 if (operclass.find(name) != operclass.end())
192                         throw CoreException("Duplicate class block with name " + name + " at " + tag->getTagLocation());
193                 operclass[name] = tag;
194         }
195         tags = ConfTags("type");
196         for(ConfigIter i = tags.first; i != tags.second; ++i)
197         {
198                 ConfigTag* tag = i->second;
199                 std::string name = tag->getString("name");
200                 if (name.empty())
201                         throw CoreException("<type:name> is missing from tag at " + tag->getTagLocation());
202                 if (!ServerInstance->IsNick(name.c_str(), Limits.NickMax))
203                         throw CoreException("<type:name> is invalid (value '" + name + "')");
204                 if (oper_blocks.find(" " + name) != oper_blocks.end())
205                         throw CoreException("Duplicate type block with name " + name + " at " + tag->getTagLocation());
206
207                 OperInfo* ifo = new OperInfo;
208                 oper_blocks[" " + name] = ifo;
209                 ifo->name = name;
210                 ifo->type_block = tag;
211
212                 std::string classname;
213                 irc::spacesepstream str(tag->getString("classes"));
214                 while (str.GetToken(classname))
215                 {
216                         LocalIndex::iterator cls = operclass.find(classname);
217                         if (cls == operclass.end())
218                                 throw CoreException("Oper type " + name + " has missing class " + classname);
219                         ifo->class_blocks.push_back(cls->second);
220                 }
221         }
222
223         tags = ConfTags("oper");
224         for(ConfigIter i = tags.first; i != tags.second; ++i)
225         {
226                 ConfigTag* tag = i->second;
227
228                 std::string name = tag->getString("name");
229                 if (name.empty())
230                         throw CoreException("<oper:name> missing from tag at " + tag->getTagLocation());
231
232                 std::string type = tag->getString("type");
233                 OperIndex::iterator tblk = oper_blocks.find(" " + type);
234                 if (tblk == oper_blocks.end())
235                         throw CoreException("Oper block " + name + " has missing type " + type);
236                 if (oper_blocks.find(name) != oper_blocks.end())
237                         throw CoreException("Duplicate oper block with name " + name + " at " + tag->getTagLocation());
238
239                 OperInfo* ifo = new OperInfo;
240                 ifo->name = type;
241                 ifo->oper_block = tag;
242                 ifo->type_block = tblk->second->type_block;
243                 ifo->class_blocks.assign(tblk->second->class_blocks.begin(), tblk->second->class_blocks.end());
244                 oper_blocks[name] = ifo;
245         }
246 }
247
248 void ServerConfig::CrossCheckConnectBlocks(ServerConfig* current)
249 {
250         typedef std::map<std::string, ConnectClass*> ClassMap;
251         ClassMap oldBlocksByMask;
252         if (current)
253         {
254                 for(ClassVector::iterator i = current->Classes.begin(); i != current->Classes.end(); ++i)
255                 {
256                         ConnectClass* c = *i;
257                         if (c->name.substr(0, 8) != "unnamed-")
258                         {
259                                 oldBlocksByMask["n" + c->name] = c;
260                         }
261                         else if (c->type == CC_ALLOW || c->type == CC_DENY)
262                         {
263                                 std::string typeMask = (c->type == CC_ALLOW) ? "a" : "d";
264                                 typeMask += c->host;
265                                 oldBlocksByMask[typeMask] = c;
266                         }
267                 }
268         }
269
270         int blk_count = config_data.count("connect");
271         if (blk_count == 0)
272         {
273                 // No connect blocks found; make a trivial default block
274                 std::vector<KeyVal>* items;
275                 ConfigTag* tag = ConfigTag::create("connect", "<auto>", 0, items);
276                 items->push_back(std::make_pair("allow", "*"));
277                 config_data.insert(std::make_pair("connect", tag));
278                 blk_count = 1;
279         }
280
281         Classes.resize(blk_count);
282         std::map<std::string, int> names;
283
284         bool try_again = true;
285         for(int tries=0; try_again; tries++)
286         {
287                 try_again = false;
288                 ConfigTagList tags = ConfTags("connect");
289                 int i=0;
290                 for(ConfigIter it = tags.first; it != tags.second; ++it, ++i)
291                 {
292                         ConfigTag* tag = it->second;
293                         if (Classes[i])
294                                 continue;
295
296                         ConnectClass* parent = NULL;
297                         std::string parentName = tag->getString("parent");
298                         if (!parentName.empty())
299                         {
300                                 std::map<std::string,int>::iterator parentIter = names.find(parentName);
301                                 if (parentIter == names.end())
302                                 {
303                                         try_again = true;
304                                         // couldn't find parent this time. If it's the last time, we'll never find it.
305                                         if (tries >= blk_count)
306                                                 throw CoreException("Could not find parent connect class \"" + parentName + "\" for connect block at " + tag->getTagLocation());
307                                         continue;
308                                 }
309                                 parent = Classes[parentIter->second];
310                         }
311
312                         std::string name = tag->getString("name");
313                         std::string mask, typeMask;
314                         char type;
315
316                         if (tag->readString("allow", mask, false))
317                         {
318                                 type = CC_ALLOW;
319                                 typeMask = 'a' + mask;
320                         }
321                         else if (tag->readString("deny", mask, false))
322                         {
323                                 type = CC_DENY;
324                                 typeMask = 'd' + mask;
325                         }
326                         else if (!name.empty())
327                         {
328                                 type = CC_NAMED;
329                                 mask = name;
330                                 typeMask = 'n' + mask;
331                         }
332                         else
333                         {
334                                 throw CoreException("Connect class must have allow, deny, or name specified at " + tag->getTagLocation());
335                         }
336
337                         if (name.empty())
338                         {
339                                 name = "unnamed-" + ConvToStr(i);
340                         }
341                         else
342                         {
343                                 typeMask = 'n' + name;
344                         }
345
346                         if (names.find(name) != names.end())
347                                 throw CoreException("Two connect classes with name \"" + name + "\" defined!");
348                         names[name] = i;
349
350                         ConnectClass* me = parent ? 
351                                 new ConnectClass(tag, type, mask, *parent) :
352                                 new ConnectClass(tag, type, mask);
353
354                         me->name = name;
355
356                         me->registration_timeout = tag->getInt("timeout", me->registration_timeout);
357                         me->pingtime = tag->getInt("pingfreq", me->pingtime);
358                         std::string sendq;
359                         if (tag->readString("sendq", sendq))
360                         {
361                                 // attempt to guess a good hard/soft sendq from a single value
362                                 long value = atol(sendq.c_str());
363                                 if (value > 16384)
364                                         me->softsendqmax = value / 16;
365                                 else
366                                         me->softsendqmax = value;
367                                 me->hardsendqmax = value * 8;
368                         }
369                         me->softsendqmax = tag->getInt("softsendq", me->softsendqmax);
370                         me->hardsendqmax = tag->getInt("hardsendq", me->hardsendqmax);
371                         me->recvqmax = tag->getInt("recvq", me->recvqmax);
372                         me->penaltythreshold = tag->getInt("threshold", me->penaltythreshold);
373                         me->commandrate = tag->getInt("commandrate", me->commandrate);
374                         me->fakelag = tag->getBool("fakelag", me->fakelag);
375                         me->maxlocal = tag->getInt("localmax", me->maxlocal);
376                         me->maxglobal = tag->getInt("globalmax", me->maxglobal);
377                         me->maxchans = tag->getInt("maxchans", me->maxchans);
378                         me->limit = tag->getInt("limit", me->limit);
379
380                         ClassMap::iterator oldMask = oldBlocksByMask.find(typeMask);
381                         if (oldMask != oldBlocksByMask.end())
382                         {
383                                 ConnectClass* old = oldMask->second;
384                                 oldBlocksByMask.erase(oldMask);
385                                 old->Update(me);
386                                 delete me;
387                                 me = old;
388                         }
389                         Classes[i] = me;
390                 }
391         }
392 }
393
394 /** Represents a deprecated configuration tag.
395  */
396 struct Deprecated
397 {
398         /** Tag name
399          */
400         const char* tag;
401         /** Tag value
402          */
403         const char* value;
404         /** Reason for deprecation
405          */
406         const char* reason;
407 };
408
409 static const Deprecated ChangedConfig[] = {
410         {"options", "hidelinks",                "has been moved to <security:hidelinks> as of 1.2a3"},
411         {"options", "hidewhois",                "has been moved to <security:hidewhois> as of 1.2a3"},
412         {"options", "userstats",                "has been moved to <security:userstats> as of 1.2a3"},
413         {"options", "customversion",    "has been moved to <security:customversion> as of 1.2a3"},
414         {"options", "hidesplits",               "has been moved to <security:hidesplits> as of 1.2a3"},
415         {"options", "hidebans",         "has been moved to <security:hidebans> as of 1.2a3"},
416         {"options", "hidekills",                "has been moved to <security:hidekills> as of 1.2a3"},
417         {"options", "operspywhois",             "has been moved to <security:operspywhois> as of 1.2a3"},
418         {"options", "announceinvites",  "has been moved to <security:announceinvites> as of 1.2a3"},
419         {"options", "hidemodes",                "has been moved to <security:hidemodes> as of 1.2a3"},
420         {"options", "maxtargets",               "has been moved to <security:maxtargets> as of 1.2a3"},
421         {"options",     "nouserdns",            "has been moved to <performance:nouserdns> as of 1.2a3"},
422         {"options",     "maxwho",               "has been moved to <performance:maxwho> as of 1.2a3"},
423         {"options",     "softlimit",            "has been moved to <performance:softlimit> as of 1.2a3"},
424         {"options", "somaxconn",                "has been moved to <performance:somaxconn> as of 1.2a3"},
425         {"options", "netbuffersize",    "has been moved to <performance:netbuffersize> as of 1.2a3"},
426         {"options", "maxwho",           "has been moved to <performance:maxwho> as of 1.2a3"},
427         {"options",     "loglevel",             "1.2 does not use the loglevel value. Please define <log> tags instead."},
428         {"die",     "value",            "you need to reread your config"},
429 };
430
431 void ServerConfig::Fill()
432 {
433         ConfigTag* options = ConfValue("options");
434         ConfigTag* security = ConfValue("security");
435         if (sid.empty())
436         {
437                 ServerName = ConfValue("server")->getString("name");
438                 sid = ConfValue("server")->getString("id");
439                 ValidHost(ServerName, "<server:name>");
440                 if (!sid.empty() && !ServerInstance->IsSID(sid))
441                         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.");
442         }
443         else
444         {
445                 if (ServerName != ConfValue("server")->getString("name"))
446                         throw CoreException("You must restart to change the server name or SID");
447                 std::string nsid = ConfValue("server")->getString("id");
448                 if (!nsid.empty() && nsid != sid)
449                         throw CoreException("You must restart to change the server name or SID");
450         }
451         diepass = ConfValue("power")->getString("diepass");
452         restartpass = ConfValue("power")->getString("restartpass");
453         powerhash = ConfValue("power")->getString("hash");
454         PrefixQuit = options->getString("prefixquit");
455         SuffixQuit = options->getString("suffixquit");
456         FixedQuit = options->getString("fixedquit");
457         PrefixPart = options->getString("prefixpart");
458         SuffixPart = options->getString("suffixpart");
459         FixedPart = options->getString("fixedpart");
460         SoftLimit = ConfValue("performance")->getInt("softlimit", ServerInstance->SE->GetMaxFds());
461         MaxConn = ConfValue("performance")->getInt("somaxconn", SOMAXCONN);
462         MoronBanner = options->getString("moronbanner", "You're banned!");
463         ServerDesc = ConfValue("server")->getString("description", "Configure Me");
464         Network = ConfValue("server")->getString("network", "Network");
465         AdminName = ConfValue("admin")->getString("name", "");
466         AdminEmail = ConfValue("admin")->getString("email", "null@example.com");
467         AdminNick = ConfValue("admin")->getString("nick", "admin");
468         ModPath = ConfValue("path")->getString("moduledir", MOD_PATH);
469         NetBufferSize = ConfValue("performance")->getInt("netbuffersize", 10240);
470         dns_timeout = ConfValue("dns")->getInt("timeout", 5);
471         DisabledCommands = ConfValue("disabled")->getString("commands", "");
472         DisabledDontExist = ConfValue("disabled")->getBool("fakenonexistant");
473         UserStats = security->getString("userstats");
474         CustomVersion = security->getString("customversion", Network + " IRCd");
475         HideSplits = security->getBool("hidesplits");
476         HideBans = security->getBool("hidebans");
477         HideWhoisServer = security->getString("hidewhois");
478         HideKillsServer = security->getString("hidekills");
479         RestrictBannedUsers = security->getBool("restrictbannedusers", true);
480         GenericOper = security->getBool("genericoper");
481         NoUserDns = ConfValue("performance")->getBool("nouserdns");
482         SyntaxHints = options->getBool("syntaxhints");
483         CycleHosts = options->getBool("cyclehosts");
484         CycleHostsFromUser = options->getBool("cyclehostsfromuser");
485         UndernetMsgPrefix = options->getBool("ircumsgprefix");
486         FullHostInTopic = options->getBool("hostintopic");
487         MaxTargets = security->getInt("maxtargets", 20);
488         DefaultModes = options->getString("defaultmodes", "nt");
489         PID = ConfValue("pid")->getString("file");
490         WhoWasGroupSize = ConfValue("whowas")->getInt("groupsize");
491         WhoWasMaxGroups = ConfValue("whowas")->getInt("maxgroups");
492         WhoWasMaxKeep = ServerInstance->Duration(ConfValue("whowas")->getString("maxkeep"));
493         MaxChans = ConfValue("channels")->getInt("users", 20);
494         OperMaxChans = ConfValue("channels")->getInt("opers", 60);
495         c_ipv4_range = ConfValue("cidr")->getInt("ipv4clone", 32);
496         c_ipv6_range = ConfValue("cidr")->getInt("ipv6clone", 128);
497         Limits.NickMax = ConfValue("limits")->getInt("maxnick", 32);
498         Limits.ChanMax = ConfValue("limits")->getInt("maxchan", 64);
499         Limits.MaxModes = ConfValue("limits")->getInt("maxmodes", 20);
500         Limits.IdentMax = ConfValue("limits")->getInt("maxident", 11);
501         Limits.MaxQuit = ConfValue("limits")->getInt("maxquit", 255);
502         Limits.MaxTopic = ConfValue("limits")->getInt("maxtopic", 307);
503         Limits.MaxKick = ConfValue("limits")->getInt("maxkick", 255);
504         Limits.MaxGecos = ConfValue("limits")->getInt("maxgecos", 128);
505         Limits.MaxAway = ConfValue("limits")->getInt("maxaway", 200);
506         InvBypassModes = options->getBool("invitebypassmodes", true);
507
508         range(SoftLimit, 10, ServerInstance->SE->GetMaxFds(), ServerInstance->SE->GetMaxFds(), "<performance:softlimit>");
509         range(MaxConn, 0, SOMAXCONN, SOMAXCONN, "<performance:somaxconn>");
510         range(MaxTargets, 1, 31, 20, "<security:maxtargets>");
511         range(NetBufferSize, 1024, 65534, 10240, "<performance:netbuffersize>");
512         range(WhoWasGroupSize, 0, 10000, 10, "<whowas:groupsize>");
513         range(WhoWasMaxGroups, 0, 1000000, 10240, "<whowas:maxgroups>");
514         range(WhoWasMaxKeep, 3600, INT_MAX, 3600, "<whowas:maxkeep>");
515
516         ValidIP(DNSServer, "<dns:server>");
517
518         std::string defbind = options->getString("defaultbind");
519         if (assign(defbind) == "ipv4")
520         {
521                 WildcardIPv6 = false;
522         }
523         else if (assign(defbind) == "ipv6")
524         {
525                 WildcardIPv6 = true;
526         }
527         else
528         {
529                 WildcardIPv6 = true;
530                 int socktest = socket(AF_INET6, SOCK_STREAM, 0);
531                 if (socktest < 0)
532                         WildcardIPv6 = false;
533                 else
534                         close(socktest);
535         }
536         ConfigTagList tags = ConfTags("uline");
537         for(ConfigIter i = tags.first; i != tags.second; ++i)
538         {
539                 ConfigTag* tag = i->second;
540                 std::string server;
541                 if (!tag->readString("server", server))
542                         throw CoreException("<uline> tag missing server at " + tag->getTagLocation());
543                 ulines[assign(server)] = tag->getBool("silent");
544         }
545
546         tags = ConfTags("banlist");
547         for(ConfigIter i = tags.first; i != tags.second; ++i)
548         {
549                 ConfigTag* tag = i->second;
550                 std::string chan;
551                 if (!tag->readString("chan", chan))
552                         throw CoreException("<banlist> tag missing chan at " + tag->getTagLocation());
553                 maxbans[chan] = tag->getInt("limit");
554         }
555
556         ReadXLine(this, "badip", "ipmask", ServerInstance->XLines->GetFactory("Z"));
557         ReadXLine(this, "badnick", "nick", ServerInstance->XLines->GetFactory("Q"));
558         ReadXLine(this, "badhost", "host", ServerInstance->XLines->GetFactory("K"));
559         ReadXLine(this, "exception", "host", ServerInstance->XLines->GetFactory("E"));
560
561         memset(DisabledUModes, 0, sizeof(DisabledUModes));
562         for (const unsigned char* p = (const unsigned char*)ConfValue("disabled")->getString("usermodes").c_str(); *p; ++p)
563         {
564                 if (*p < 'A' || *p > ('A' + 64)) throw CoreException(std::string("Invalid usermode ")+(char)*p+" was found.");
565                 DisabledUModes[*p - 'A'] = 1;
566         }
567
568         memset(DisabledCModes, 0, sizeof(DisabledCModes));
569         for (const unsigned char* p = (const unsigned char*)ConfValue("disabled")->getString("chanmodes").c_str(); *p; ++p)
570         {
571                 if (*p < 'A' || *p > ('A' + 64)) throw CoreException(std::string("Invalid chanmode ")+(char)*p+" was found.");
572                 DisabledCModes[*p - 'A'] = 1;
573         }
574
575         memset(HideModeLists, 0, sizeof(HideModeLists));
576         for (const unsigned char* p = (const unsigned char*)ConfValue("security")->getString("hidemodes").c_str(); *p; ++p)
577                 HideModeLists[*p] = true;
578
579         std::string v = security->getString("announceinvites");
580
581         if (v == "ops")
582                 AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_OPS;
583         else if (v == "all")
584                 AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_ALL;
585         else if (v == "dynamic")
586                 AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_DYNAMIC;
587         else
588                 AnnounceInvites = ServerConfig::INVITE_ANNOUNCE_NONE;
589
590         v = security->getString("operspywhois");
591         if (v == "splitmsg")
592                 OperSpyWhois = SPYWHOIS_SPLITMSG;
593         else if (v == "on" || v == "yes")
594                 OperSpyWhois = SPYWHOIS_SINGLEMSG;
595         else
596                 OperSpyWhois = SPYWHOIS_NONE;
597
598         Limits.Finalise();
599 }
600
601 // WARNING: it is not safe to use most of the codebase in this function, as it
602 // will run in the config reader thread
603 void ServerConfig::Read()
604 {
605         /* Load and parse the config file, if there are any errors then explode */
606
607         ParseStack stack(this);
608         try
609         {
610                 valid = stack.ParseFile(ServerInstance->ConfigFileName, 0);
611         }
612         catch (CoreException& err)
613         {
614                 valid = false;
615                 errstr << err.GetReason();
616         }
617         if (valid)
618         {
619                 DNSServer = ConfValue("dns")->getString("server");
620                 FindDNS(DNSServer);
621         }
622 }
623
624 void ServerConfig::Apply(ServerConfig* old, const std::string &useruid)
625 {
626         valid = true;
627         if (old)
628         {
629                 /*
630                  * These values can only be set on boot. Keep their old values. Do it before we send messages so we actually have a servername.
631                  */
632                 this->ServerName = old->ServerName;
633                 this->sid = old->sid;
634                 this->cmdline = old->cmdline;
635         }
636
637         /* The stuff in here may throw CoreException, be sure we're in a position to catch it. */
638         try
639         {
640                 for (int Index = 0; Index * sizeof(Deprecated) < sizeof(ChangedConfig); Index++)
641                 {
642                         std::string dummy;
643                         if (ConfValue(ChangedConfig[Index].tag)->readString(ChangedConfig[Index].value, dummy, true))
644                                 errstr << "Your configuration contains a deprecated value: <"
645                                         << ChangedConfig[Index].tag << ":" << ChangedConfig[Index].value << "> - " << ChangedConfig[Index].reason
646                                         << " (at " << ConfValue(ChangedConfig[Index].tag)->getTagLocation() << ")\n";
647                 }
648
649                 Fill();
650
651                 // Handle special items
652                 CrossCheckOperClassType();
653                 CrossCheckConnectBlocks(old);
654         }
655         catch (CoreException &ce)
656         {
657                 errstr << ce.GetReason();
658         }
659
660         // write once here, to try it out and make sure its ok
661         ServerInstance->WritePID(this->PID);
662
663         // Check errors before dealing with failed binds, since continuing on failed bind is wanted in some circumstances.
664         valid = errstr.str().empty();
665
666         if (old)
667         {
668                 // On first run, ports are bound later on
669                 FailedPortList pl;
670                 ServerInstance->BindPorts(pl);
671                 if (pl.size())
672                 {
673                         errstr << "Not all your client ports could be bound.\nThe following port(s) failed to bind:\n";
674
675                         int j = 1;
676                         for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
677                         {
678                                 char buf[MAXBUF];
679                                 snprintf(buf, MAXBUF, "%d.   Address: %s   Reason: %s\n", j, i->first.empty() ? "<all>" : i->first.c_str(), i->second.c_str());
680                                 errstr << buf;
681                         }
682                 }
683         }
684
685         User* user = useruid.empty() ? NULL : ServerInstance->FindNick(useruid);
686
687         if (!valid)
688                 ServerInstance->Logs->Log("CONFIG",DEFAULT, "There were errors in your configuration file:");
689
690         while (errstr.good())
691         {
692                 std::string line;
693                 getline(errstr, line, '\n');
694                 if (line.empty())
695                         continue;
696                 // On startup, print out to console (still attached at this point)
697                 if (!old)
698                         printf("%s\n", line.c_str());
699                 // If a user is rehashing, tell them directly
700                 if (user)
701                         user->SendText(":%s NOTICE %s :*** %s", ServerInstance->Config->ServerName.c_str(), user->nick.c_str(), line.c_str());
702                 // Also tell opers
703                 ServerInstance->SNO->WriteGlobalSno('a', line);
704         }
705
706         errstr.clear();
707         errstr.str(std::string());
708
709         /* No old configuration -> initial boot, nothing more to do here */
710         if (!old)
711         {
712                 if (!valid)
713                 {
714                         ServerInstance->Exit(EXIT_STATUS_CONFIG);
715                 }
716
717                 return;
718         }
719
720         // If there were errors processing configuration, don't touch modules.
721         if (!valid)
722                 return;
723
724         ApplyModules(user);
725
726         if (user)
727                 user->SendText(":%s NOTICE %s :*** Successfully rehashed server.",
728                         ServerInstance->Config->ServerName.c_str(), user->nick.c_str());
729         ServerInstance->SNO->WriteGlobalSno('a', "*** Successfully rehashed server.");
730 }
731
732 void ServerConfig::ApplyModules(User* user)
733 {
734         Module* whowas = ServerInstance->Modules->Find("cmd_whowas.so");
735         if (whowas)
736                 WhowasRequest(NULL, whowas, WhowasRequest::WHOWAS_PRUNE).Send();
737
738         const std::vector<std::string> v = ServerInstance->Modules->GetAllModuleNames(0);
739         std::vector<std::string> added_modules;
740         std::set<std::string> removed_modules(v.begin(), v.end());
741
742         ConfigTagList tags = ConfTags("module");
743         for(ConfigIter i = tags.first; i != tags.second; ++i)
744         {
745                 ConfigTag* tag = i->second;
746                 std::string name;
747                 if (tag->readString("name", name))
748                 {
749                         // if this module is already loaded, the erase will succeed, so we need do nothing
750                         // otherwise, we need to add the module (which will be done later)
751                         if (removed_modules.erase(name) == 0)
752                                 added_modules.push_back(name);
753                 }
754         }
755
756         if (ConfValue("options")->getBool("allowhalfop") && removed_modules.erase("m_halfop.so") == 0)
757                 added_modules.push_back("m_halfop.so");
758
759         for (std::set<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
760         {
761                 // Don't remove cmd_*.so, just remove m_*.so
762                 if (removing->c_str()[0] == 'c')
763                         continue;
764                 Module* m = ServerInstance->Modules->Find(*removing);
765                 if (m && ServerInstance->Modules->Unload(m))
766                 {
767                         ServerInstance->SNO->WriteGlobalSno('a', "*** REHASH UNLOADED MODULE: %s",removing->c_str());
768
769                         if (user)
770                                 user->WriteNumeric(RPL_UNLOADEDMODULE, "%s %s :Module %s successfully unloaded.",user->nick.c_str(), removing->c_str(), removing->c_str());
771                         else
772                                 ServerInstance->SNO->WriteGlobalSno('a', "Module %s successfully unloaded.", removing->c_str());
773                 }
774                 else
775                 {
776                         if (user)
777                                 user->WriteNumeric(ERR_CANTUNLOADMODULE, "%s %s :Failed to unload module %s: %s",user->nick.c_str(), removing->c_str(), removing->c_str(), ServerInstance->Modules->LastError().c_str());
778                         else
779                                  ServerInstance->SNO->WriteGlobalSno('a', "Failed to unload module %s: %s", removing->c_str(), ServerInstance->Modules->LastError().c_str());
780                 }
781         }
782
783         for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
784         {
785                 if (ServerInstance->Modules->Load(adding->c_str()))
786                 {
787                         ServerInstance->SNO->WriteGlobalSno('a', "*** REHASH LOADED MODULE: %s",adding->c_str());
788                         if (user)
789                                 user->WriteNumeric(RPL_LOADEDMODULE, "%s %s :Module %s successfully loaded.",user->nick.c_str(), adding->c_str(), adding->c_str());
790                         else
791                                 ServerInstance->SNO->WriteGlobalSno('a', "Module %s successfully loaded.", adding->c_str());
792                 }
793                 else
794                 {
795                         if (user)
796                                 user->WriteNumeric(ERR_CANTLOADMODULE, "%s %s :Failed to load module %s: %s",user->nick.c_str(), adding->c_str(), adding->c_str(), ServerInstance->Modules->LastError().c_str());
797                         else
798                                 ServerInstance->SNO->WriteGlobalSno('a', "Failed to load module %s: %s", adding->c_str(), ServerInstance->Modules->LastError().c_str());
799                 }
800         }
801 }
802
803 bool ServerConfig::StartsWithWindowsDriveLetter(const std::string &path)
804 {
805         return (path.length() > 2 && isalpha(path[0]) && path[1] == ':');
806 }
807
808 ConfigTag* ServerConfig::ConfValue(const std::string &tag)
809 {
810         ConfigTagList found = config_data.equal_range(tag);
811         if (found.first == found.second)
812                 return NULL;
813         ConfigTag* rv = found.first->second;
814         found.first++;
815         if (found.first != found.second)
816                 ServerInstance->Logs->Log("CONFIG",DEFAULT, "Multiple <" + tag + "> tags found; only first will be used "
817                         "(first at " + rv->getTagLocation() + "; second at " + found.first->second->getTagLocation() + ")");
818         return rv;
819 }
820
821 ConfigTagList ServerConfig::ConfTags(const std::string& tag)
822 {
823         return config_data.equal_range(tag);
824 }
825
826 bool ServerConfig::FileExists(const char* file)
827 {
828         struct stat sb;
829         if (stat(file, &sb) == -1)
830                 return false;
831
832         if ((sb.st_mode & S_IFDIR) > 0)
833                 return false;
834
835         FILE *input = fopen(file, "r");
836         if (input == NULL)
837                 return false;
838         else
839         {
840                 fclose(input);
841                 return true;
842         }
843 }
844
845 const char* ServerConfig::CleanFilename(const char* name)
846 {
847         const char* p = name + strlen(name);
848         while ((p != name) && (*p != '/') && (*p != '\\')) p--;
849         return (p != name ? ++p : p);
850 }
851
852 std::string ServerConfig::GetSID()
853 {
854         return sid;
855 }
856
857 void ConfigReaderThread::Run()
858 {
859         Config->Read();
860         done = true;
861 }
862
863 void ConfigReaderThread::Finish()
864 {
865         ServerConfig* old = ServerInstance->Config;
866         ServerInstance->Logs->Log("CONFIG",DEBUG,"Switching to new configuration...");
867         ServerInstance->Config = this->Config;
868         Config->Apply(old, TheUserUID);
869
870         if (Config->valid)
871         {
872                 /*
873                  * Apply the changed configuration from the rehash.
874                  *
875                  * XXX: The order of these is IMPORTANT, do not reorder them without testing
876                  * thoroughly!!!
877                  */
878                 ServerInstance->XLines->CheckELines();
879                 ServerInstance->XLines->CheckELines();
880                 ServerInstance->XLines->ApplyLines();
881                 ServerInstance->Res->Rehash();
882                 ServerInstance->ResetMaxBans();
883                 Config->ApplyDisabledCommands(Config->DisabledCommands);
884                 User* user = ServerInstance->FindNick(TheUserUID);
885                 FOREACH_MOD(I_OnRehash, OnRehash(user));
886                 ServerInstance->BuildISupport();
887
888                 ServerInstance->Logs->CloseLogs();
889                 ServerInstance->Logs->OpenFileLogs();
890
891                 if (Config->RawLog && !old->RawLog)
892                         ServerInstance->Users->ServerNoticeAll("*** Raw I/O logging is enabled on this server. All messages, passwords, and commands are being recorded.");
893
894                 Config = old;
895         }
896         else
897         {
898                 // whoops, abort!
899                 ServerInstance->Config = old;
900         }
901 }