]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/configreader.cpp
Rewrite the m_cgiirc configuration handling.
[user/henk/code/inspircd.git] / src / configreader.cpp
index 8aa19d6d6315d4aae63502d696d82bb46b918852..d198a1d84c83cfb78e0a4807382d1df2c23a8204 100644 (file)
 #include <iostream>
 
 ServerLimits::ServerLimits(ConfigTag* tag)
-       : NickMax(tag->getInt("maxnick", 32))
+       : NickMax(tag->getInt("maxnick", 30))
        , ChanMax(tag->getInt("maxchan", 64))
        , MaxModes(tag->getInt("maxmodes", 20))
-       , IdentMax(tag->getInt("maxident", 11))
+       , IdentMax(tag->getInt("maxident", 10))
        , MaxQuit(tag->getInt("maxquit", 255))
        , MaxTopic(tag->getInt("maxtopic", 307))
        , MaxKick(tag->getInt("maxkick", 255))
@@ -44,6 +44,14 @@ ServerLimits::ServerLimits(ConfigTag* tag)
 {
 }
 
+ServerConfig::ServerPaths::ServerPaths(ConfigTag* tag)
+       : Config(tag->getString("configdir", INSPIRCD_CONFIG_PATH))
+       , Data(tag->getString("datadir", INSPIRCD_DATA_PATH))
+       , Log(tag->getString("logdir", INSPIRCD_LOG_PATH))
+       , Module(tag->getString("moduledir", INSPIRCD_MODULE_PATH))
+{
+}
+
 static ConfigTag* CreateEmptyTag()
 {
        ConfigItems* items;
@@ -53,11 +61,11 @@ static ConfigTag* CreateEmptyTag()
 ServerConfig::ServerConfig()
        : EmptyTag(CreateEmptyTag())
        , Limits(EmptyTag)
+       , Paths(EmptyTag)
        , NoSnoticeStack(false)
 {
        RawLog = HideBans = HideSplits = false;
        WildcardIPv6 = true;
-       dns_timeout = 5;
        MaxTargets = 20;
        NetBufferSize = 10240;
        MaxConn = SOMAXCONN;
@@ -302,8 +310,8 @@ void ServerConfig::CrossCheckConnectBlocks(ServerConfig* current)
 
                        me->name = name;
 
-                       me->registration_timeout = tag->getInt("timeout", me->registration_timeout);
-                       me->pingtime = tag->getInt("pingfreq", me->pingtime);
+                       me->registration_timeout = tag->getDuration("timeout", me->registration_timeout);
+                       me->pingtime = tag->getDuration("pingfreq", me->pingtime);
                        std::string sendq;
                        if (tag->readString("sendq", sendq))
                        {
@@ -383,32 +391,46 @@ void ServerConfig::Fill()
 {
        ConfigTag* options = ConfValue("options");
        ConfigTag* security = ConfValue("security");
+       ConfigTag* server = ConfValue("server");
        if (sid.empty())
        {
-               ServerName = ConfValue("server")->getString("name", "irc.example.com");
+               ServerName = server->getString("name", "irc.example.com");
                ValidHost(ServerName, "<server:name>");
 
-               sid = ConfValue("server")->getString("id");
+               sid = server->getString("id");
                if (!sid.empty() && !InspIRCd::IsSID(sid))
                        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.");
+
+               CaseMapping = options->getString("casemapping", "rfc1459");
+               if (CaseMapping == "ascii")
+                       national_case_insensitive_map = ascii_case_insensitive_map;
+               else if (CaseMapping == "rfc1459")
+                       national_case_insensitive_map = rfc_case_insensitive_map;
+               else
+                       throw CoreException("<options:casemapping> must be set to 'ascii', or 'rfc1459'");
        }
        else
        {
-               if (ServerName != ConfValue("server")->getString("name"))
+               std::string name = server->getString("name");
+               if (!name.empty() && name != ServerName)
                        throw CoreException("You must restart to change the server name");
 
-               std::string nsid = ConfValue("server")->getString("id");
+               std::string nsid = server->getString("id");
                if (!nsid.empty() && nsid != sid)
                        throw CoreException("You must restart to change the server id");
+
+               std::string casemapping = options->getString("casemapping");
+               if (!casemapping.empty() && casemapping != CaseMapping)
+                       throw CoreException("You must restart to change the server casemapping");
+
        }
        SoftLimit = ConfValue("performance")->getInt("softlimit", (SocketEngine::GetMaxFds() > 0 ? SocketEngine::GetMaxFds() : LONG_MAX), 10);
        CCOnConnect = ConfValue("performance")->getBool("clonesonconnect", true);
        MaxConn = ConfValue("performance")->getInt("somaxconn", SOMAXCONN);
        XLineMessage = options->getString("xlinemessage", options->getString("moronbanner", "You're banned!"));
-       ServerDesc = ConfValue("server")->getString("description", "Configure Me");
-       Network = ConfValue("server")->getString("network", "Network");
+       ServerDesc = server->getString("description", "Configure Me");
+       Network = server->getString("network", "Network");
        NetBufferSize = ConfValue("performance")->getInt("netbuffersize", 10240, 1024, 65534);
-       dns_timeout = ConfValue("dns")->getInt("timeout", 5);
        DisabledCommands = ConfValue("disabled")->getString("commands", "");
        DisabledDontExist = ConfValue("disabled")->getBool("fakenonexistant");
        UserStats = security->getString("userstats");
@@ -431,10 +453,7 @@ void ServerConfig::Fill()
        c_ipv4_range = ConfValue("cidr")->getInt("ipv4clone", 32);
        c_ipv6_range = ConfValue("cidr")->getInt("ipv6clone", 128);
        Limits = ServerLimits(ConfValue("limits"));
-       Paths.Config = ConfValue("path")->getString("configdir", INSPIRCD_CONFIG_PATH);
-       Paths.Data = ConfValue("path")->getString("datadir", INSPIRCD_DATA_PATH);
-       Paths.Log = ConfValue("path")->getString("logdir", INSPIRCD_LOG_PATH);
-       Paths.Module = ConfValue("path")->getString("moduledir", INSPIRCD_MODULE_PATH);
+       Paths = ServerPaths(ConfValue("path"));
        NoSnoticeStack = options->getBool("nosnoticestack", false);
 
        if (Network.find(' ') != std::string::npos)
@@ -464,23 +483,23 @@ void ServerConfig::Fill()
        ReadXLine(this, "badhost", "host", ServerInstance->XLines->GetFactory("K"));
        ReadXLine(this, "exception", "host", ServerInstance->XLines->GetFactory("E"));
 
-       memset(DisabledUModes, 0, sizeof(DisabledUModes));
+       DisabledUModes.reset();
        std::string modes = ConfValue("disabled")->getString("usermodes");
        for (std::string::const_iterator p = modes.begin(); p != modes.end(); ++p)
        {
-               // Complain when the character is not a-z or A-Z
-               if ((*p < 'A') || (*p > 'z') || ((*p < 'a') && (*p > 'Z')))
+               // Complain when the character is not a valid mode character.
+               if (!ModeParser::IsModeChar(*p))
                        throw CoreException("Invalid usermode " + std::string(1, *p) + " was found.");
-               DisabledUModes[*p - 'A'] = 1;
+               DisabledUModes.set(*p - 'A');
        }
 
-       memset(DisabledCModes, 0, sizeof(DisabledCModes));
+       DisabledCModes.reset();
        modes = ConfValue("disabled")->getString("chanmodes");
        for (std::string::const_iterator p = modes.begin(); p != modes.end(); ++p)
        {
-               if ((*p < 'A') || (*p > 'z') || ((*p < 'a') && (*p > 'Z')))
+               if (!ModeParser::IsModeChar(*p))
                        throw CoreException("Invalid chanmode " + std::string(1, *p) + " was found.");
-               DisabledCModes[*p - 'A'] = 1;
+               DisabledCModes.set(*p - 'A');
        }
 
        std::string v = security->getString("announceinvites");
@@ -529,6 +548,7 @@ void ServerConfig::Apply(ServerConfig* old, const std::string &useruid)
                /*
                 * These values can only be set on boot. Keep their old values. Do it before we send messages so we actually have a servername.
                 */
+               this->CaseMapping = old->CaseMapping;
                this->ServerName = old->ServerName;
                this->sid = old->sid;
                this->cmdline = old->cmdline;
@@ -596,8 +616,7 @@ void ServerConfig::Apply(ServerConfig* old, const std::string &useruid)
                        int j = 1;
                        for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
                        {
-                               errstr << j << ".\tAddress: " << (i->first.empty() ? "<all>" : i->first.c_str()) << "\tReason: "
-                                       << i->second << std::endl;
+                               errstr << j << ".\tAddress: " << i->first.str() << "\tReason: " << strerror(i->second) << std::endl;
                        }
                }
        }
@@ -689,7 +708,7 @@ void ServerConfig::ApplyModules(User* user)
        {
                const std::string& modname = i->first;
                // Don't remove core_*.so, just remove m_*.so
-               if (modname.c_str()[0] == 'c')
+               if (InspIRCd::Match(modname, "core_*.so", ascii_case_insensitive_map))
                        continue;
                if (ServerInstance->Modules->Unload(i->second))
                {