]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/extra/m_sqlauth.cpp
All of insp now builds with -pedantic (theres some warnings to squash in modules...
[user/henk/code/inspircd.git] / src / modules / extra / m_sqlauth.cpp
index 71eb2b9bccda9ee5f38022761f753c9b42f7cc6b..98b0227e5ad3157927e4dac3ace89fdab33c6bc3 100644 (file)
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
-#include <stdio.h>
-#include <string>
-#include <stdlib.h>
-#include <time.h>
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <sys/time.h>
-#include <string.h>
-#include <unistd.h>
-#include <errno.h>
-#include <fcntl.h>
-#include <poll.h>
+#include "inspircd.h"
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "inspircd.h"
-#include "m_sql.h"
-
-/* $ModDesc: An SQL test module */
+#include "m_sqlv2.h"
+#include "m_sqlutils.h"
 
-Server *Srv;
+/* $ModDesc: Allow/Deny connections based upon an arbitary SQL table */
+/* $ModDep: m_sqlv2.h m_sqlutils.h */
 
 class ModuleSQLAuth : public Module
 {
-       ConfigReader* Conf;
-       std::string usertable;
-       unsigned long dbid;
-       Module* SQLModule;
+       Module* SQLutils;
+       Module* SQLprovider;
 
- public:
-       bool ReadConfig()
+       std::string usertable;
+       std::string userfield;
+       std::string passfield;
+       std::string encryption;
+       std::string killreason;
+       std::string allowpattern;
+       std::string databaseid;
+       
+       bool verbose;
+       
+public:
+       ModuleSQLAuth(InspIRCd* Me)
+       : Module::Module(Me)
        {
-               Conf = new ConfigReader();
-               usertable = Conf->ReadValue("sqlauth","usertable",0);
-               dbid = Conf->ReadInteger("sqlauth","dbid",0,true);
-               delete Conf;
-               SQLModule = Srv->FindModule("m_sql.so");
-               return (SQLModule);
+               ServerInstance->Modules->UseInterface("SQLutils");
+               ServerInstance->Modules->UseInterface("SQL");
+
+               SQLutils = ServerInstance->Modules->Find("m_sqlutils.so");
+               if (!SQLutils)
+                       throw ModuleException("Can't find m_sqlutils.so. Please load m_sqlutils.so before m_sqlauth.so.");
+
+               SQLprovider = ServerInstance->Modules->FindFeature("SQL");
+               if (!SQLprovider)
+                       throw ModuleException("Can't find an SQL provider module. Please load one before attempting to load m_sqlauth.");
+
+               OnRehash(NULL,"");
        }
 
-       ModuleSQLAuth()
+       virtual ~ModuleSQLAuth()
        {
-               Srv = new Server;
-               ReadConfig();
+               ServerInstance->Modules->DoneWithInterface("SQL");
+               ServerInstance->Modules->DoneWithInterface("SQLutils");
        }
 
-       virtual void OnRehash()
+       void Implements(char* List)
        {
-               ReadConfig();
+               List[I_OnUserDisconnect] = List[I_OnCheckReady] = List[I_OnRequest] = List[I_OnRehash] = List[I_OnUserRegister] = 1;
        }
 
-       bool CheckCredentials(std::string username, std::string password,std::string usertable)
+       virtual void OnRehash(User* user, const std::string &parameter)
        {
-               bool found = false;
-
-               // is the sql module loaded? If not, we don't attempt to do anything.
-               if (!SQLModule)
-                       return false;
-
-               // Create a request containing the SQL query and send it to m_sql.so
-               SQLRequest* query = new SQLRequest(SQL_RESULT,1,"SELECT * FROM "+usertable+" WHERE user='"+username+"' AND pass=md5('"+password+"')");
-               Request queryrequest((char*)query, this, SQLModule);
-               SQLResult* result = (SQLResult*)queryrequest.Send();
-
-               // Did we get "OK" as a result?
-               if (result->GetType() == SQL_OK)
+               ConfigReader Conf(ServerInstance);
+               
+               usertable       = Conf.ReadValue("sqlauth", "usertable", 0);    /* User table name */
+               databaseid      = Conf.ReadValue("sqlauth", "dbid", 0);                 /* Database ID, given to the SQL service provider */
+               userfield       = Conf.ReadValue("sqlauth", "userfield", 0);    /* Field name where username can be found */
+               passfield       = Conf.ReadValue("sqlauth", "passfield", 0);    /* Field name where password can be found */
+               killreason      = Conf.ReadValue("sqlauth", "killreason", 0);   /* Reason to give when access is denied to a user (put your reg details here) */
+               allowpattern= Conf.ReadValue("sqlauth", "allowpattern",0 );     /* Allow nicks matching this pattern without requiring auth */
+               encryption      = Conf.ReadValue("sqlauth", "encryption", 0);   /* Name of sql function used to encrypt password, e.g. "md5" or "passwd".
+                                                                                                                                        * define, but leave blank if no encryption is to be used.
+                                                                                                                                        */
+               verbose         = Conf.ReadFlag("sqlauth", "verbose", 0);               /* Set to true if failed connects should be reported to operators */
+               
+               if (encryption.find("(") == std::string::npos)
                {
+                       encryption.append("(");
+               }
+       }       
 
-                       // if we did, this means we may now request a row... there should be only one row for each user, so,
-                       // we don't need to loop to fetch multiple rows.
-                       SQLRequest* rowrequest = new SQLRequest(SQL_ROW,1,"");
-                       Request rowquery((char*)rowrequest, this, SQLModule);
-                       SQLResult* rowresult = (SQLResult*)rowquery.Send();
-
-                       // did we get a row? If we did, we can now do something with the fields
-                       if (rowresult->GetType() == SQL_ROW)
-                       {
-                               Srv->Log(DEBUG,"*********** SQL TEST MODULE - RESULTS *************");
-                               Srv->Log(DEBUG,"Result, field 'qcount': '" + rowrequest->GetField("qcount"));
-                               Srv->Log(DEBUG,"Result, field 'asked': '" + rowrequest->GetField("asked"));
-                               found = true;
-                               delete rowresult;
-                       }
-                       else
-                       {
-                               // we didn't have a row.
-                               found = false;
-                       }
-                       delete rowrequest;
-                       delete result;
+       virtual int OnUserRegister(User* user)
+       {
+               if ((!allowpattern.empty()) && (ServerInstance->MatchText(user->nick,allowpattern)))
+               {
+                       user->Extend("sqlauthed");
+                       return 0;
                }
-               else
+               
+               if (!CheckCredentials(user))
                {
-                       // the query was bad
-                       found = false;
+                       User::QuitUser(ServerInstance,user,killreason);
+                       return 1;
                }
-               query->SetQueryType(SQL_DONE);
-               query->SetConnID(1);
-               Request donerequest((char*)query, this, SQLModule);
-               donerequest.Send();
-               delete query;
-               return found;
-       }
-
-       virtual bool OnCheckReady(userrec* user)
-       {
+               return 0;
        }
 
-        virtual void OnUserDisconnect(userrec* user)
-        {
-       }
-       
-       virtual ~ModuleSQLAuth()
+       bool CheckCredentials(User* user)
        {
-               delete Srv;
+               SQLrequest req = SQLreq(this, SQLprovider, databaseid, "SELECT ? FROM ? WHERE ? = '?' AND ? = ?'?')", userfield, usertable, userfield, user->nick, passfield, encryption, user->password);
+                       
+               if(req.Send())
+               {
+                       /* When we get the query response from the service provider we will be given an ID to play with,
+                        * just an ID number which is unique to this query. We need a way of associating that ID with a User
+                        * so we insert it into a map mapping the IDs to users.
+                        * Thankfully m_sqlutils provides this, it will associate a ID with a user or channel, and if the user quits it removes the
+                        * association. This means that if the user quits during a query we will just get a failed lookup from m_sqlutils - telling
+                        * us to discard the query.
+                        */
+                       AssociateUser(this, SQLutils, req.id, user).Send();
+                               
+                       return true;
+               }
+               else
+               {
+                       if (verbose)
+                               ServerInstance->WriteOpers("Forbidden connection from %s!%s@%s (SQL query failed: %s)", user->nick, user->ident, user->host, req.error.Str());
+                       return false;
+               }
        }
        
-       virtual Version GetVersion()
+       virtual char* OnRequest(Request* request)
        {
-               return Version(1,0,0,1,VF_VENDOR);
+               if(strcmp(SQLRESID, request->GetId()) == 0)
+               {
+                       SQLresult* res = static_cast<SQLresult*>(request);
+
+                       User* user = GetAssocUser(this, SQLutils, res->id).S().user;
+                       UnAssociate(this, SQLutils, res->id).S();
+                       
+                       if(user)
+                       {
+                               if(res->error.Id() == NO_ERROR)
+                               {
+                                       if(res->Rows())
+                                       {
+                                               /* We got a row in the result, this is enough really */
+                                               user->Extend("sqlauthed");
+                                       }
+                                       else if (verbose)
+                                       {
+                                               /* No rows in result, this means there was no record matching the user */
+                                               ServerInstance->WriteOpers("Forbidden connection from %s!%s@%s (SQL query returned no matches)", user->nick, user->ident, user->host);
+                                               user->Extend("sqlauth_failed");
+                                       }
+                               }
+                               else if (verbose)
+                               {
+                                       ServerInstance->WriteOpers("Forbidden connection from %s!%s@%s (SQL query failed: %s)", user->nick, user->ident, user->host, res->error.Str());
+                                       user->Extend("sqlauth_failed");
+                               }
+                       }
+                       else
+                       {
+                               return NULL;
+                       }
+
+                       if (!user->GetExt("sqlauthed"))
+                       {
+                               User::QuitUser(ServerInstance,user,killreason);
+                       }
+                       return SQLSUCCESS;
+               }               
+               return NULL;
        }
        
-};
-
-class ModuleSQLAuthFactory : public ModuleFactory
-{
- public:
-       ModuleSQLAuthFactory()
+       virtual void OnUserDisconnect(User* user)
        {
+               user->Shrink("sqlauthed");
+               user->Shrink("sqlauth_failed");         
        }
        
-       ~ModuleSQLAuthFactory()
+       virtual bool OnCheckReady(User* user)
        {
+               return user->GetExt("sqlauthed");
        }
-       
-       virtual Module * CreateModule()
+
+       virtual Version GetVersion()
        {
-               return new ModuleSQLAuth;
+               return Version(1,1,1,0,VF_VENDOR,API_VERSION);
        }
        
 };
 
-
-extern "C" void * init_module( void )
-{
-       return new ModuleSQLAuthFactory;
-}
-
+MODULE_INIT(ModuleSQLAuth)