]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_sqlauth.cpp
API header and client module updates for new multi-parameter query request. Needs...
[user/henk/code/inspircd.git] / src / modules / extra / m_sqlauth.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2004 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18
19 #include <stdio.h>
20 #include <string>
21 #include <stdlib.h>
22 #include <time.h>
23 #include <sys/types.h>
24 #include <sys/socket.h>
25 #include <sys/time.h>
26 #include <string.h>
27 #include <unistd.h>
28 #include <errno.h>
29 #include <fcntl.h>
30 #include <poll.h>
31 #include "users.h"
32 #include "channels.h"
33 #include "modules.h"
34 #include "inspircd.h"
35 #include "helperfuncs.h"
36 #include "m_sql.h"
37
38 /* $ModDesc: Allow/Deny connections based upon an arbitary SQL table */
39
40 class ModuleSQLAuth : public Module
41 {
42         Server* Srv;
43         ConfigReader* Conf;
44         std::string usertable;
45         std::string userfield;
46         std::string passfield;
47         std::string encryption;
48         std::string killreason;
49         std::string allowpattern;
50         bool WallOperFail;
51         unsigned long dbid;
52         Module* SQLModule;
53
54  public:
55         bool ReadConfig()
56         {
57                 Conf = new ConfigReader();
58                 usertable = Conf->ReadValue("sqlauth","usertable",0);   // user table name
59                 dbid = Conf->ReadInteger("sqlauth","dbid",0,true);      // database id of a database configured in m_sql (see m_sql config)
60                 userfield = Conf->ReadValue("sqlauth","userfield",0);   // field name where username can be found
61                 passfield = Conf->ReadValue("sqlauth","passfield",0);   // field name where password can be found
62                 killreason = Conf->ReadValue("sqlauth","killreason",0); // reason to give when access is denied to a user (put your reg details here)
63                 encryption = Conf->ReadValue("sqlauth","encryption",0); // name of sql function used to encrypt password, e.g. "md5" or "passwd".
64                                                                         // define, but leave blank if no encryption is to be used.
65                 WallOperFail = Conf->ReadFlag("sqlauth","verbose",0);   // set to 1 if failed connects should be reported to operators
66                 allowpattern = Conf->ReadValue("sqlauth","allowpattern",0);     // allow nicks matching the pattern without requiring auth
67                 if (encryption.find("(") == std::string::npos)
68                 {
69                         encryption.append("(");
70                 }
71                 DELETE(Conf);
72                 SQLModule = Srv->FindModule("m_sql.so");
73                 if (!SQLModule)
74                         Srv->Log(DEFAULT,"WARNING: m_sqlauth.so could not initialize because m_sql.so is not loaded. Load the module and rehash your server.");
75                 return (SQLModule);
76         }
77
78         ModuleSQLAuth(Server* Me)
79                 : Module::Module(Me)
80         {
81                 Srv = Me;
82                 ReadConfig();
83         }
84
85         void Implements(char* List)
86         {
87                 List[I_OnRehash] = List[I_OnUserRegister] = 1;
88         }
89
90         virtual void OnRehash(const std::string &parameter)
91         {
92                 ReadConfig();
93         }
94
95         virtual void OnUserRegister(userrec* user)
96         {
97                 if ((allowpattern != "") && (Srv->MatchText(user->nick,allowpattern)))
98                         return;
99                 
100                 if (!CheckCredentials(user->nick,user->password))
101                 {
102                         if (WallOperFail)
103                                 WriteOpers("Forbidden connection from %s!%s@%s (invalid login/password)",user->nick,user->ident,user->host);
104                         Srv->QuitUser(user,killreason);
105                 }
106         }
107
108         bool CheckCredentials(const std::string &s_username, const std::string &s_password)
109         {
110                 bool found = false;
111
112                 // is the sql module loaded? If not, we don't attempt to do anything.
113                 if (!SQLModule)
114                         return false;
115
116                 // sanitize the password (we dont want any mysql insertion exploits!)
117                 std::string username = SQLQuery::Sanitise(s_username);
118                 std::string password = SQLQuery::Sanitise(s_password);
119
120                 // Create a request containing the SQL query and send it to m_sql.so
121                 std::string querystr("SELECT * FROM "+usertable+" WHERE "+userfield+"='"+username+"' AND "+passfield+"="+encryption+"'"+password+"')");
122                 
123                 Srv->Log(DEBUG, "m_sqlauth.so: Query: " + querystr);
124                 
125                 SQLRequest* query = new SQLRequest(SQL_RESULT,dbid,querystr);
126                 Request queryrequest((char*)query, this, SQLModule);
127                 SQLResult* result = (SQLResult*)queryrequest.Send();
128
129                 // Did we get "OK" as a result?
130                 if (result->GetType() == SQL_OK)
131                 {
132                         log(DEBUG, "m_sqlauth.so: Query OK");
133                         
134                         // if we did, this means we may now request a row... there should be only one row for each user, so,
135                         // we don't need to loop to fetch multiple rows.
136                         SQLRequest* rowrequest = new SQLRequest(SQL_ROW,dbid,"");
137                         Request rowquery((char*)rowrequest, this, SQLModule);
138                         SQLResult* rowresult = (SQLResult*)rowquery.Send();
139
140                         // did we get a row? If we did, we can now do something with the fields
141                         if (rowresult->GetType() == SQL_ROW)
142                         {
143                                 log(DEBUG, "m_sqlauth.so: Got row...user '%s'", rowresult->GetField(userfield).c_str());
144                                 
145                                 if (rowresult->GetField(userfield) == username)
146                                 {
147                                         log(DEBUG, "m_sqlauth.so: Got correct user...");
148                                         // because the query directly asked for the password hash, we do not need to check it -
149                                         // if it didnt match it wont be returned in the first place from the SELECT.
150                                         // This just checks we didnt get an empty row by accident.
151                                         found = true;
152                                 }
153                         }
154                         else
155                         {
156                                 log(DEBUG, "m_sqlauth.so: Couldn't find row");
157                                 // we didn't have a row.
158                                 found = false;
159                         }
160                         
161                         DELETE(rowrequest);
162                         DELETE(rowresult);
163                 }
164                 else
165                 {
166                         log(DEBUG, "m_sqlauth.so: Query failed");
167                         // the query was bad
168                         found = false;
169                 }
170                 
171                 query->SetQueryType(SQL_DONE);
172                 query->SetConnID(dbid);
173                 Request donerequest((char*)query, this, SQLModule);
174                 donerequest.Send();
175                 
176                 DELETE(query);
177                 DELETE(result);
178                 
179                 return found;
180         }
181
182         virtual ~ModuleSQLAuth()
183         {
184         }
185         
186         virtual Version GetVersion()
187         {
188                 return Version(1,0,0,2,VF_VENDOR);
189         }
190         
191 };
192
193 class ModuleSQLAuthFactory : public ModuleFactory
194 {
195  public:
196         ModuleSQLAuthFactory()
197         {
198         }
199         
200         ~ModuleSQLAuthFactory()
201         {
202         }
203         
204         virtual Module * CreateModule(Server* Me)
205         {
206                 return new ModuleSQLAuth(Me);
207         }
208         
209 };
210
211
212 extern "C" void * init_module( void )
213 {
214         return new ModuleSQLAuthFactory;
215 }
216