]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_sqlauth.cpp
0f5fde5f3288cba8dd7958350197ccfd0005b135
[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                 delete Conf;
68                 SQLModule = Srv->FindModule("m_sql.so");
69                 if (!SQLModule)
70                         Srv->Log(DEFAULT,"WARNING: m_sqlauth.so could not initialize because m_sql.so is not loaded. Load the module and rehash your server.");
71                 return (SQLModule);
72         }
73
74         ModuleSQLAuth(Server* Me)
75                 : Module::Module(Me)
76         {
77                 Srv = Me;
78                 ReadConfig();
79         }
80
81         void Implements(char* List)
82         {
83                 List[I_OnRehash] = List[I_OnUserRegister] = 1;
84         }
85
86         virtual void OnRehash(std::string parameter)
87         {
88                 ReadConfig();
89         }
90
91         virtual void OnUserRegister(userrec* user)
92         {
93                 if ((allowpattern != "") && (Srv->MatchText(user->nick,allowpattern)))
94                         return;
95                 
96                 if (!CheckCredentials(user->nick,user->password))
97                 {
98                         if (WallOperFail)
99                                 WriteOpers("Forbidden connection from %s!%s@%s (invalid login/password)",user->nick,user->ident,user->host);
100                         Srv->QuitUser(user,killreason);
101                 }
102         }
103
104         bool CheckCredentials(std::string username, std::string password)
105         {
106                 bool found = false;
107
108                 // is the sql module loaded? If not, we don't attempt to do anything.
109                 if (!SQLModule)
110                         return false;
111
112                 // sanitize the password (we dont want any mysql insertion exploits!)
113                 std::string temp = "";
114                 for (unsigned int q = 0; q < password.length(); q++)
115                 {
116                         if (password[q] == '\'')
117                         {
118                                 temp = temp + "\'";
119                         }
120                         else if (password[q] == '"')
121                         {
122                                 temp = temp + "\\\"";
123                         }
124                         else temp = temp + password[q];
125                 }
126                 password = temp;
127
128                 // Create a request containing the SQL query and send it to m_sql.so
129                 std::string querystr("SELECT * FROM "+usertable+" WHERE "+userfield+"='"+username+"' AND "+passfield+"="+encryption+"('"+password+"')");
130                 
131                 Srv->Log(DEBUG, "m_sqlauth.so: Query: " + querystr);
132                 
133                 SQLRequest* query = new SQLRequest(SQL_RESULT,dbid,querystr);
134                 Request queryrequest((char*)query, this, SQLModule);
135                 SQLResult* result = (SQLResult*)queryrequest.Send();
136
137                 // Did we get "OK" as a result?
138                 if (result->GetType() == SQL_OK)
139                 {
140                         log(DEBUG, "m_sqlauth.so: Query OK");
141                         
142                         // if we did, this means we may now request a row... there should be only one row for each user, so,
143                         // we don't need to loop to fetch multiple rows.
144                         SQLRequest* rowrequest = new SQLRequest(SQL_ROW,dbid,"");
145                         Request rowquery((char*)rowrequest, this, SQLModule);
146                         SQLResult* rowresult = (SQLResult*)rowquery.Send();
147
148                         // did we get a row? If we did, we can now do something with the fields
149                         if (rowresult->GetType() == SQL_ROW)
150                         {
151                                 log(DEBUG, "m_sqlauth.so: Got row...user '%s'", rowresult->GetField(userfield).c_str());
152                                 
153                                 if (rowresult->GetField(userfield) == username)
154                                 {
155                                         log(DEBUG, "m_sqlauth.so: Got correct user...");
156                                         // because the query directly asked for the password hash, we do not need to check it -
157                                         // if it didnt match it wont be returned in the first place from the SELECT.
158                                         // This just checks we didnt get an empty row by accident.
159                                         found = true;
160                                 }
161                         }
162                         else
163                         {
164                                 log(DEBUG, "m_sqlauth.so: Couldn't find row");
165                                 // we didn't have a row.
166                                 found = false;
167                         }
168                         
169                         delete rowrequest;
170                         delete rowresult;
171                 }
172                 else
173                 {
174                         log(DEBUG, "m_sqlauth.so: Query failed");
175                         // the query was bad
176                         found = false;
177                 }
178                 
179                 query->SetQueryType(SQL_DONE);
180                 query->SetConnID(dbid);
181                 Request donerequest((char*)query, this, SQLModule);
182                 donerequest.Send();
183                 
184                 delete query;
185                 delete result;
186                 
187                 return found;
188         }
189
190         virtual ~ModuleSQLAuth()
191         {
192         }
193         
194         virtual Version GetVersion()
195         {
196                 return Version(1,0,0,2,VF_VENDOR);
197         }
198         
199 };
200
201 class ModuleSQLAuthFactory : public ModuleFactory
202 {
203  public:
204         ModuleSQLAuthFactory()
205         {
206         }
207         
208         ~ModuleSQLAuthFactory()
209         {
210         }
211         
212         virtual Module * CreateModule(Server* Me)
213         {
214                 return new ModuleSQLAuth(Me);
215         }
216         
217 };
218
219
220 extern "C" void * init_module( void )
221 {
222         return new ModuleSQLAuthFactory;
223 }
224