]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_sqloper.cpp
Switched m_sqloper to use OnPostCommand instead of OnPreCommand, meaning the config...
[user/henk/code/inspircd.git] / src / modules / extra / m_sqloper.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 #include <string>
18
19 #include "users.h"
20 #include "channels.h"
21 #include "modules.h"
22 #include "inspircd.h"
23 #include "configreader.h"
24
25 #include "m_sqlv2.h"
26 #include "m_sqlutils.h"
27 #include "commands/cmd_oper.h"
28
29 /* $ModDesc: Allows storage of oper credentials in an SQL table */
30
31 class ModuleSQLOper : public Module
32 {
33         InspIRCd* Srv;
34         Module* SQLutils;
35         std::string databaseid;
36
37 public:
38         ModuleSQLOper(InspIRCd* Me)
39         : Module::Module(Me), Srv(Me)
40         {
41                 SQLutils = Srv->FindFeature("SQLutils");
42                 
43                 if (SQLutils)
44                 {
45                         ServerInstance->Log(DEBUG, "Successfully got SQLutils pointer");
46                 }
47                 else
48                 {
49                         ServerInstance->Log(DEFAULT, "ERROR: This module requires a module offering the 'SQLutils' feature (usually m_sqlutils.so). Please load it and try again.");
50                         throw ModuleException("This module requires a module offering the 'SQLutils' feature (usually m_sqlutils.so). Please load it and try again.");
51                 }
52                 
53                 OnRehash("");
54         }
55
56         virtual void OnRehash(const std::string &parameter)
57         {
58                 ConfigReader Conf(Srv);
59                 
60                 databaseid = Conf.ReadValue("sqloper", "dbid", 0); /* Database ID of a database configured for the service provider module */
61         }
62
63         void Implements(char* List)
64         {
65                 List[I_OnRequest] = List[I_OnRehash] = List[I_OnPostCommand] = 1;
66         }
67
68         virtual void OnPostCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, CmdResult result, const std::string &original_line)
69         {
70                 if ((result == CMD_FAILURE) && (command == "OPER"))
71                 {
72                         LookupOper(user, parameters[0], parameters[1]);
73                 }
74         }
75
76         bool LookupOper(userrec* user, const std::string &username, const std::string &password)
77         {
78                 Module* target;
79                 
80                 target = Srv->FindFeature("SQL");
81                 
82                 if (target)
83                 {
84                         SQLrequest req = SQLreq(this, target, databaseid, "SELECT username, password, hostname, type FROM ircd_opers WHERE username = '?' AND password=md5('?')", username, password);
85                         
86                         if (req.Send())
87                         {
88                                 /* When we get the query response from the service provider we will be given an ID to play with,
89                                  * just an ID number which is unique to this query. We need a way of associating that ID with a userrec
90                                  * so we insert it into a map mapping the IDs to users.
91                                  * Thankfully m_sqlutils provides this, it will associate a ID with a user or channel, and if the user quits it removes the
92                                  * association. This means that if the user quits during a query we will just get a failed lookup from m_sqlutils - telling
93                                  * us to discard the query.
94                                  */
95                                 ServerInstance->Log(DEBUG, "Sent query, got given ID %lu", req.id);
96                                 
97                                 AssociateUser(this, SQLutils, req.id, user).Send();
98                                         
99                                 return true;
100                         }
101                         else
102                         {
103                                 ServerInstance->Log(DEBUG, "SQLrequest failed: %s", req.error.Str());
104                         
105                                 return false;
106                         }
107                 }
108                 else
109                 {
110                         ServerInstance->Log(SPARSE, "WARNING: Couldn't find SQL provider module. NOBODY will be able to oper up unless their o:line is statically configured");
111                         return false;
112                 }
113         }
114         
115         virtual char* OnRequest(Request* request)
116         {
117                 if (strcmp(SQLRESID, request->GetId()) == 0)
118                 {
119                         SQLresult* res;
120                 
121                         res = static_cast<SQLresult*>(request);
122                         
123                         ServerInstance->Log(DEBUG, "Got SQL result (%s) with ID %lu", res->GetId(), res->id);
124                         
125                         userrec* user = GetAssocUser(this, SQLutils, res->id).S().user;
126                         UnAssociate(this, SQLutils, res->id).S();
127                         
128                         if (user)
129                         {
130                                 if (res->error.Id() == NO_ERROR)
131                                 {                               
132                                         ServerInstance->Log(DEBUG, "Associated query ID %lu with user %s", res->id, user->nick);                        
133                                         ServerInstance->Log(DEBUG, "Got result with %d rows and %d columns", res->Rows(), res->Cols());
134                         
135                                         if (res->Rows())
136                                         {
137                                                 /* We got a row in the result, this means there was a record for the oper..
138                                                  * now we just need to check if their host matches, and if it does then
139                                                  * oper them up.
140                                                  * 
141                                                  * We now (previous versions of the module didn't) support multiple SQL
142                                                  * rows per-oper in the same way the config file does, all rows will be tried
143                                                  * until one is found which matches. This is useful to define several different
144                                                  * hosts for a single oper.
145                                                  * 
146                                                  * The for() loop works as SQLresult::GetRowMap() returns an empty map when there
147                                                  * are no more rows to return.
148                                                  */
149                                                 
150                                                 for (SQLfieldMap& row = res->GetRowMap(); row.size(); row = res->GetRowMap())
151                                                 {
152                                                         ServerInstance->Log(DEBUG, "Trying to oper user %s with username = '%s', passhash = '%s', hostname = '%s', type = '%s'", user->nick, row["username"].d.c_str(), row["password"].d.c_str(), row["hostname"].d.c_str(), row["type"].d.c_str());
153                                                         
154                                                         if (OperUser(user, row["username"].d, row["password"].d, row["hostname"].d, row["type"].d))
155                                                         {
156                                                                 /* If/when one of the rows matches, stop checking and return */
157                                                                 return SQLSUCCESS;
158                                                         }
159                                                 }
160                                         }
161                                         else
162                                         {
163                                                 /* No rows in result, this means there was no oper line for the user,
164                                                  * we should have already checked the o:lines so now we need an
165                                                  * "insufficient awesomeness" (invalid credentials) error
166                                                  */
167                                                 
168                                                 user->WriteServ( "491 %s :Invalid oper credentials", user->nick);
169                                                 Srv->SNO->WriteToSnoMask('o',"WARNING! Failed oper attempt by %s!%s@%s!", user->nick, user->ident, user->host);
170                                                 ServerInstance->Log(DEFAULT,"OPER: Failed oper attempt by %s!%s@%s: user, host or password did not match.", user->nick, user->ident, user->host);
171                                         }
172                                 }
173                                 else
174                                 {
175                                         /* This one shouldn't happen, the query failed for some reason.
176                                          * We have to fail the /oper request and give them the same error
177                                          * as above.
178                                          */
179                                         ServerInstance->Log(DEBUG, "Query failed: %s", res->error.Str());
180
181                                         user->WriteServ( "491 %s :Invalid oper credentials", user->nick);
182                                         Srv->SNO->WriteToSnoMask('o',"WARNING! Failed oper attempt by %s!%s@%s! (SQL query failed: %s)", user->nick, user->ident, user->host, res->error.Str());
183                                         ServerInstance->Log(DEFAULT,"OPER: Failed oper attempt by %s!%s@%s: user, host or password did not match.", user->nick, user->ident, user->host);
184                                 }
185                         }
186                         else
187                         {
188                                 ServerInstance->Log(DEBUG, "Got query with unknown ID, this probably means the user quit while the query was in progress");
189                         }
190                 
191                         return SQLSUCCESS;
192                 }
193                 
194                 ServerInstance->Log(DEBUG, "Got unsupported API version string: %s", request->GetId());
195                 
196                 return NULL;
197         }       
198
199         bool OperUser(userrec* user, const std::string &username, const std::string &password, const std::string &pattern, const std::string &type)
200         {
201                 ConfigReader Conf(Srv);
202                 
203                 for (int j = 0; j < Conf.Enumerate("type"); j++)
204                 {
205                         std::string tname = Conf.ReadValue("type","name",j);
206                         
207                         ServerInstance->Log(DEBUG, "Scanning opertype: %s", tname.c_str());
208                         
209                         std::string hostname(user->ident);
210                         hostname.append("@").append(user->host);
211                                                         
212                         if ((tname == type) && OneOfMatches(hostname.c_str(), user->GetIPString(), pattern.c_str()))
213                         {
214                                 /* Opertype and host match, looks like this is it. */
215                                 ServerInstance->Log(DEBUG, "Host (%s matched %s OR %s) and type (%s)", pattern.c_str(), hostname.c_str(), user->GetIPString(), type.c_str());
216                                 
217                                 std::string operhost = Conf.ReadValue("type", "host", j);
218                                                         
219                                 if (operhost.size())
220                                         user->ChangeDisplayedHost(operhost.c_str());
221                                                                 
222                                 Srv->SNO->WriteToSnoMask('o',"%s (%s@%s) is now an IRC operator of type %s", user->nick, user->ident, user->host, type.c_str());
223                                 user->WriteServ("381 %s :You are now an IRC operator of type %s", user->nick, type.c_str());
224                                 
225                                 if (!user->modes[UM_OPERATOR])
226                                         user->Oper(type);
227                                                                 
228                                 return true;
229                         }
230                 }
231                 
232                 return false;
233         }
234
235         virtual ~ModuleSQLOper()
236         {
237         }
238         
239         virtual Version GetVersion()
240         {
241                 return Version(1,1,1,0,VF_VENDOR,API_VERSION);
242         }
243         
244 };
245
246 class ModuleSQLOperFactory : public ModuleFactory
247 {
248  public:
249         ModuleSQLOperFactory()
250         {
251         }
252         
253         ~ModuleSQLOperFactory()
254         {
255         }
256         
257         virtual Module * CreateModule(InspIRCd* Me)
258         {
259                 return new ModuleSQLOper(Me);
260         }
261         
262 };
263
264
265 extern "C" void * init_module( void )
266 {
267         return new ModuleSQLOperFactory;
268 }
269