Reject clients that attempt to login before the core is configured
authorMichael Marley <michael@michaelmarley.com>
Mon, 2 Apr 2018 23:11:31 +0000 (19:11 -0400)
committerManuel Nickschas <sputnick@quassel-irc.org>
Mon, 23 Apr 2018 21:41:56 +0000 (23:41 +0200)
Properly-implemented clients should never try to do this, but if it
is done, this patch prevents it from crashing the core.

Thanks to @chaign_c (https://twitter.com/chaign_c/) for finding this
issue.

src/core/coreauthhandler.cpp

index cf0c82b..913968b 100644 (file)
@@ -221,6 +221,12 @@ void CoreAuthHandler::handle(const Login &msg)
     if (!checkClientRegistered())
         return;
 
+    if (!Core::isConfigured()) {
+        qWarning() << qPrintable(tr("Client")) << qPrintable(socket()->peerAddress().toString()) << qPrintable(tr("attempted to login before the core was configured, rejecting."));
+        _peer->dispatch(ClientDenied(tr("<b>Attempted to login before core was configured!</b><br>The core must be configured before attempting to login.")));
+        return;
+    }
+
     // First attempt local auth using the real username and password.
     // If that fails, move onto the auth provider.
     UserId uid = Core::validateUser(msg.user, msg.password);