summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-24 19:12:45 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-24 19:12:45 +0000
commitd5ee2584e130d6663c6159a49e655dc0d34536a2 (patch)
tree5b09c7976c299c3d614249efce8942b2f8ba2b57 /src
parent3dfdda08a07b0e2661cec95e05de5e5310d54213 (diff)
Disable all connect classes, reenable them as we find them in the config. This stops users using a connect class removed from the conf (or will in a second)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8355 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/configreader.cpp7
-rw-r--r--src/users.cpp9
2 files changed, 12 insertions, 4 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index 5031f6506..c15b5c0e7 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -421,17 +421,20 @@ bool InitConnect(ServerConfig* conf, const char*)
}
goagain:
- /* change this: only delete a class with refcount 0 */
for (ClassVector::iterator i = conf->Classes.begin(); i != conf->Classes.end(); i++)
{
ConnectClass *c = *i;
+ /* only delete a class with refcount 0 */
if (c->RefCount == 0)
{
conf->GetInstance()->Log(DEFAULT, "Removing connect class, refcount is 0!");
conf->Classes.erase(i);
goto goagain; // XXX fucking hell.. how better to do this
}
+
+ /* also mark all existing classes disabled, if they still exist in the conf, they will be reenabled. */
+ c->SetDisabled(true);
}
return true;
@@ -467,6 +470,8 @@ bool DoConnect(ServerConfig* conf, const char*, char**, ValueList &values, int*)
ConnectClass* c = *item;
if ((*name && (c->GetName() == name)) || (*allow && (c->GetHost() == allow)) || (*deny && (c->GetHost() == deny)))
{
+ /* reenable class so users can be shoved into it :P */
+ c->SetDisabled(false);
conf->GetInstance()->Log(DEFAULT, "Not adding class, it already exists!");
return true;
}
diff --git a/src/users.cpp b/src/users.cpp
index 08e38f36d..381806e50 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -1727,7 +1727,7 @@ ConnectClass* User::SetClass(const std::string &explicit_name)
{
ConnectClass* c = *i;
- if (explicit_name == c->GetName())
+ if (explicit_name == c->GetName() && !c->GetDisabled())
{
found = c;
}
@@ -1743,7 +1743,7 @@ ConnectClass* User::SetClass(const std::string &explicit_name)
{
if (c->GetPort())
{
- if (this->GetPort() == c->GetPort())
+ if (this->GetPort() == c->GetPort() && !c->GetDisabled())
{
found = c;
}
@@ -1752,7 +1752,8 @@ ConnectClass* User::SetClass(const std::string &explicit_name)
}
else
{
- found = c;
+ if (!c->GetDisabled())
+ found = c;
}
}
}
@@ -1764,6 +1765,8 @@ ConnectClass* User::SetClass(const std::string &explicit_name)
/* should always be valid, but just in case .. */
if (this->MyClass)
{
+ if (found == this->MyClass) // no point changing this shit :P
+ return this->MyClass;
this->MyClass->RefCount--;
ServerInstance->Log(DEBUG, "Untying user from connect class -- refcount: %u", this->MyClass->RefCount);
}