]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_sqloper.cpp
e898165a090259b1bd624fa9a5e9c237a9d34a74
[user/henk/code/inspircd.git] / src / modules / extra / m_sqloper.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "m_sqlv2.h"
16 #include "m_sqlutils.h"
17 #include "m_hash.h"
18 #include "commands/cmd_oper.h"
19
20 /* $ModDesc: Allows storage of oper credentials in an SQL table */
21 /* $ModDep: m_sqlv2.h m_sqlutils.h m_hash.h */
22
23 typedef std::map<irc::string, Module*> hashymodules;
24
25 class ModuleSQLOper : public Module
26 {
27         Module* SQLutils;
28         std::string databaseid;
29         irc::string hashtype;
30         hashymodules hashers;
31         bool diduseiface;
32         std::deque<std::string> names;
33
34 public:
35         ModuleSQLOper(InspIRCd* Me)
36         : Module(Me)
37         {
38                 ServerInstance->Modules->UseInterface("SQLutils");
39                 ServerInstance->Modules->UseInterface("SQL");
40                 ServerInstance->Modules->UseInterface("HashRequest");
41
42                 OnRehash(NULL);
43
44                 diduseiface = false;
45
46                 /* Find all modules which implement the interface 'HashRequest' */
47                 modulelist* ml = ServerInstance->Modules->FindInterface("HashRequest");
48
49                 /* Did we find any modules? */
50                 if (ml)
51                 {
52                         /* Yes, enumerate them all to find out the hashing algorithm name */
53                         for (modulelist::iterator m = ml->begin(); m != ml->end(); m++)
54                         {
55                                 /* Make a request to it for its name, its implementing
56                                  * HashRequest so we know its safe to do this
57                                  */
58                                 std::string name = HashNameRequest(this, *m).Send();
59                                 /* Build a map of them */
60                                 hashers[name.c_str()] = *m;
61                                 names.push_back(name);
62                         }
63                         /* UseInterface doesn't do anything if there are no providers, so we'll have to call it later if a module gets loaded later on. */
64                         diduseiface = true;
65                         ServerInstance->Modules->UseInterface("HashRequest");
66                 }
67
68                 SQLutils = ServerInstance->Modules->Find("m_sqlutils.so");
69                 if (!SQLutils)
70                         throw ModuleException("Can't find m_sqlutils.so. Please load m_sqlutils.so before m_sqloper.so.");
71
72                 Implementation eventlist[] = { I_OnRequest, I_OnRehash, I_OnPreCommand, I_OnLoadModule };
73                 ServerInstance->Modules->Attach(eventlist, this, 3);
74         }
75
76         bool OneOfMatches(const char* host, const char* ip, const char* hostlist)
77         {
78                 std::stringstream hl(hostlist);
79                 std::string xhost;
80                 while (hl >> xhost)
81                 {
82                         if (InspIRCd::Match(host, xhost, ascii_case_insensitive_map) || InspIRCd::MatchCIDR(ip, xhost, ascii_case_insensitive_map))
83                         {
84                                 return true;
85                         }
86                 }
87                 return false;
88         }
89
90         virtual void OnLoadModule(Module* mod, const std::string& name)
91         {
92                 if (ServerInstance->Modules->ModuleHasInterface(mod, "HashRequest"))
93                 {
94                         ServerInstance->Logs->Log("m_sqloper",DEBUG, "Post-load registering hasher: %s", name.c_str());
95                         std::string sname = HashNameRequest(this, mod).Send();
96                         hashers[sname.c_str()] = mod;
97                         names.push_back(sname);
98                         if (!diduseiface)
99                         {
100                                 ServerInstance->Modules->UseInterface("HashRequest");
101                                 diduseiface = true;
102                         }
103                 }
104         }
105
106         virtual ~ModuleSQLOper()
107         {
108                 ServerInstance->Modules->DoneWithInterface("SQL");
109                 ServerInstance->Modules->DoneWithInterface("SQLutils");
110                 if (diduseiface)
111                         ServerInstance->Modules->DoneWithInterface("HashRequest");
112         }
113
114
115         virtual void OnRehash(User* user)
116         {
117                 ConfigReader Conf(ServerInstance);
118
119                 databaseid = Conf.ReadValue("sqloper", "dbid", 0); /* Database ID of a database configured for the service provider module */
120                 hashtype = assign(Conf.ReadValue("sqloper", "hash", 0));
121         }
122
123         virtual int OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
124         {
125                 if ((validated) && (command == "OPER"))
126                 {
127                         if (LookupOper(user, parameters[0], parameters[1]))
128                         {
129                                 /* Returning true here just means the query is in progress, or on it's way to being
130                                  * in progress. Nothing about the /oper actually being successful..
131                                  * If the oper lookup fails later, we pass the command to the original handler
132                                  * for /oper by calling its Handle method directly.
133                                  */
134                                 return 1;
135                         }
136                 }
137                 return 0;
138         }
139
140         bool LookupOper(User* user, const std::string &username, const std::string &password)
141         {
142                 Module* target;
143
144                 target = ServerInstance->Modules->FindFeature("SQL");
145
146                 if (target)
147                 {
148                         hashymodules::iterator x = hashers.find(hashtype);
149                         if (x == hashers.end())
150                                 return false;
151
152                         /* Reset hash module first back to MD5 standard state */
153                         HashResetRequest(this, x->second).Send();
154                         /* Make an MD5 hash of the password for using in the query */
155                         std::string md5_pass_hash = HashSumRequest(this, x->second, password.c_str()).Send();
156
157                         /* We generate our own sum here because some database providers (e.g. SQLite) dont have a builtin md5/sha256 function,
158                          * also hashing it in the module and only passing a remote query containing a hash is more secure.
159                          */
160                         SQLrequest req = SQLrequest(this, target, databaseid,
161                                         SQLquery("SELECT username, password, hostname, type FROM ircd_opers WHERE username = '?' AND password='?'") % username % md5_pass_hash);
162
163                         if (req.Send())
164                         {
165                                 /* When we get the query response from the service provider we will be given an ID to play with,
166                                  * just an ID number which is unique to this query. We need a way of associating that ID with a User
167                                  * so we insert it into a map mapping the IDs to users.
168                                  * Thankfully m_sqlutils provides this, it will associate a ID with a user or channel, and if the user quits it removes the
169                                  * association. This means that if the user quits during a query we will just get a failed lookup from m_sqlutils - telling
170                                  * us to discard the query.
171                                  */
172                                 AssociateUser(this, SQLutils, req.id, user).Send();
173
174                                 user->Extend("oper_user", strdup(username.c_str()));
175                                 user->Extend("oper_pass", strdup(password.c_str()));
176
177                                 return true;
178                         }
179                         else
180                         {
181                                 return false;
182                         }
183                 }
184                 else
185                 {
186                         ServerInstance->Logs->Log("m_sqloper",SPARSE, "WARNING: Couldn't find SQL provider module. NOBODY will be able to oper up unless their o:line is statically configured");
187                         return false;
188                 }
189         }
190
191         virtual const char* OnRequest(Request* request)
192         {
193                 if (strcmp(SQLRESID, request->GetId()) == 0)
194                 {
195                         SQLresult* res = static_cast<SQLresult*>(request);
196
197                         User* user = GetAssocUser(this, SQLutils, res->id).S().user;
198                         UnAssociate(this, SQLutils, res->id).S();
199
200                         char* tried_user = NULL;
201                         char* tried_pass = NULL;
202
203                         user->GetExt("oper_user", tried_user);
204                         user->GetExt("oper_pass", tried_pass);
205
206                         if (user)
207                         {
208                                 if (res->error.Id() == SQL_NO_ERROR)
209                                 {
210                                         if (res->Rows())
211                                         {
212                                                 /* We got a row in the result, this means there was a record for the oper..
213                                                  * now we just need to check if their host matches, and if it does then
214                                                  * oper them up.
215                                                  *
216                                                  * We now (previous versions of the module didn't) support multiple SQL
217                                                  * rows per-oper in the same way the config file does, all rows will be tried
218                                                  * until one is found which matches. This is useful to define several different
219                                                  * hosts for a single oper.
220                                                  *
221                                                  * The for() loop works as SQLresult::GetRowMap() returns an empty map when there
222                                                  * are no more rows to return.
223                                                  */
224
225                                                 for (SQLfieldMap& row = res->GetRowMap(); row.size(); row = res->GetRowMap())
226                                                 {
227                                                         if (OperUser(user, row["hostname"].d, row["type"].d))
228                                                         {
229                                                                 /* If/when one of the rows matches, stop checking and return */
230                                                                 return SQLSUCCESS;
231                                                         }
232                                                         if (tried_user && tried_pass)
233                                                         {
234                                                                 LoginFail(user, tried_user, tried_pass);
235                                                                 free(tried_user);
236                                                                 free(tried_pass);
237                                                                 user->Shrink("oper_user");
238                                                                 user->Shrink("oper_pass");
239                                                         }
240                                                 }
241                                         }
242                                         else
243                                         {
244                                                 /* No rows in result, this means there was no oper line for the user,
245                                                  * we should have already checked the o:lines so now we need an
246                                                  * "insufficient awesomeness" (invalid credentials) error
247                                                  */
248                                                 if (tried_user && tried_pass)
249                                                 {
250                                                         LoginFail(user, tried_user, tried_pass);
251                                                         free(tried_user);
252                                                         free(tried_pass);
253                                                         user->Shrink("oper_user");
254                                                         user->Shrink("oper_pass");
255                                                 }
256                                         }
257                                 }
258                                 else
259                                 {
260                                         /* This one shouldn't happen, the query failed for some reason.
261                                          * We have to fail the /oper request and give them the same error
262                                          * as above.
263                                          */
264                                         if (tried_user && tried_pass)
265                                         {
266                                                 LoginFail(user, tried_user, tried_pass);
267                                                 free(tried_user);
268                                                 free(tried_pass);
269                                                 user->Shrink("oper_user");
270                                                 user->Shrink("oper_pass");
271                                         }
272
273                                 }
274                         }
275
276                         return SQLSUCCESS;
277                 }
278
279                 return NULL;
280         }
281
282         void LoginFail(User* user, const std::string &username, const std::string &pass)
283         {
284                 Command* oper_command = ServerInstance->Parser->GetHandler("OPER");
285
286                 if (oper_command)
287                 {
288                         std::vector<std::string> params;
289                         params.push_back(username);
290                         params.push_back(pass);
291                         oper_command->Handle(params, user);
292                 }
293                 else
294                 {
295                         ServerInstance->Logs->Log("m_sqloper",DEBUG, "BUG: WHAT?! Why do we have no OPER command?!");
296                 }
297         }
298
299         bool OperUser(User* user, const std::string &pattern, const std::string &type)
300         {
301                 ConfigReader Conf(ServerInstance);
302
303                 for (int j = 0; j < Conf.Enumerate("type"); j++)
304                 {
305                         std::string tname = Conf.ReadValue("type","name",j);
306                         std::string hostname(user->ident);
307
308                         hostname.append("@").append(user->host);
309
310                         if ((tname == type) && OneOfMatches(hostname.c_str(), user->GetIPString(), pattern.c_str()))
311                         {
312                                 /* Opertype and host match, looks like this is it. */
313                                 std::string operhost = Conf.ReadValue("type", "host", j);
314
315                                 if (operhost.size())
316                                         user->ChangeDisplayedHost(operhost.c_str());
317
318                                 user->Oper(type, tname);
319                                 return true;
320                         }
321                 }
322
323                 return false;
324         }
325
326         virtual Version GetVersion()
327         {
328                 return Version("$Id$", VF_VENDOR, API_VERSION);
329         }
330
331 };
332
333 MODULE_INIT(ModuleSQLOper)