]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_sasl.cpp
Improvements and bugfixes to the cgiirc module.
[user/henk/code/inspircd.git] / src / modules / m_sasl.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22 #include "modules/cap.h"
23 #include "modules/account.h"
24 #include "modules/sasl.h"
25 #include "modules/ssl.h"
26 #include "modules/server.h"
27
28 enum
29 {
30         // From IRCv3 sasl-3.1
31         RPL_SASLSUCCESS = 903,
32         ERR_SASLFAIL = 904,
33         ERR_SASLTOOLONG = 905,
34         ERR_SASLABORTED = 906,
35         RPL_SASLMECHS = 908
36 };
37
38 static std::string sasl_target;
39
40 class ServerTracker : public ServerEventListener
41 {
42         bool online;
43
44         void Update(const Server* server, bool linked)
45         {
46                 if (sasl_target == "*")
47                         return;
48
49                 if (InspIRCd::Match(server->GetName(), sasl_target))
50                 {
51                         ServerInstance->Logs->Log(MODNAME, LOG_VERBOSE, "SASL target server \"%s\" %s", sasl_target.c_str(), (linked ? "came online" : "went offline"));
52                         online = linked;
53                 }
54         }
55
56         void OnServerLink(const Server* server) CXX11_OVERRIDE
57         {
58                 Update(server, true);
59         }
60
61         void OnServerSplit(const Server* server) CXX11_OVERRIDE
62         {
63                 Update(server, false);
64         }
65
66  public:
67         ServerTracker(Module* mod)
68                 : ServerEventListener(mod)
69         {
70                 Reset();
71         }
72
73         void Reset()
74         {
75                 if (sasl_target == "*")
76                 {
77                         online = true;
78                         return;
79                 }
80
81                 online = false;
82
83                 ProtocolInterface::ServerList servers;
84                 ServerInstance->PI->GetServerList(servers);
85                 for (ProtocolInterface::ServerList::const_iterator i = servers.begin(); i != servers.end(); ++i)
86                 {
87                         const ProtocolInterface::ServerInfo& server = *i;
88                         if (InspIRCd::Match(server.servername, sasl_target))
89                         {
90                                 online = true;
91                                 break;
92                         }
93                 }
94         }
95
96         bool IsOnline() const { return online; }
97 };
98
99 class SASLCap : public Cap::Capability
100 {
101         std::string mechlist;
102         const ServerTracker& servertracker;
103
104         bool OnRequest(LocalUser* user, bool adding) CXX11_OVERRIDE
105         {
106                 // Requesting this cap is allowed anytime
107                 if (adding)
108                         return true;
109
110                 // But removing it can only be done when unregistered
111                 return (user->registered != REG_ALL);
112         }
113
114         bool OnList(LocalUser* user) CXX11_OVERRIDE
115         {
116                 return servertracker.IsOnline();
117         }
118
119         const std::string* GetValue(LocalUser* user) const CXX11_OVERRIDE
120         {
121                 return &mechlist;
122         }
123
124  public:
125         SASLCap(Module* mod, const ServerTracker& tracker)
126                 : Cap::Capability(mod, "sasl")
127                 , servertracker(tracker)
128         {
129         }
130
131         void SetMechlist(const std::string& newmechlist)
132         {
133                 if (mechlist == newmechlist)
134                         return;
135
136                 mechlist = newmechlist;
137                 NotifyValueChange();
138         }
139 };
140
141 enum SaslState { SASL_INIT, SASL_COMM, SASL_DONE };
142 enum SaslResult { SASL_OK, SASL_FAIL, SASL_ABORT };
143
144 static Events::ModuleEventProvider* saslevprov;
145
146 static void SendSASL(LocalUser* user, const std::string& agent, char mode, const std::vector<std::string>& parameters)
147 {
148         CommandBase::Params params;
149         params.push_back(user->uuid);
150         params.push_back(agent);
151         params.push_back(ConvToStr(mode));
152         params.insert(params.end(), parameters.begin(), parameters.end());
153
154         if (!ServerInstance->PI->SendEncapsulatedData(sasl_target, "SASL", params))
155         {
156                 FOREACH_MOD_CUSTOM(*saslevprov, SASLEventListener, OnSASLAuth, (params));
157         }
158 }
159
160 static ClientProtocol::EventProvider* g_protoev;
161
162 /**
163  * Tracks SASL authentication state like charybdis does. --nenolod
164  */
165 class SaslAuthenticator
166 {
167  private:
168         std::string agent;
169         LocalUser* user;
170         SaslState state;
171         SaslResult result;
172         bool state_announced;
173
174         void SendHostIP()
175         {
176                 std::vector<std::string> params;
177                 params.push_back(user->GetRealHost());
178                 params.push_back(user->GetIPString());
179                 params.push_back(SSLIOHook::IsSSL(&user->eh) ? "S" : "P");
180
181                 SendSASL(user, "*", 'H', params);
182         }
183
184  public:
185         SaslAuthenticator(LocalUser* user_, const std::string& method)
186                 : user(user_), state(SASL_INIT), state_announced(false)
187         {
188                 SendHostIP();
189
190                 std::vector<std::string> params;
191                 params.push_back(method);
192
193                 const std::string fp = SSLClientCert::GetFingerprint(&user->eh);
194                 if (fp.size())
195                         params.push_back(fp);
196
197                 SendSASL(user, "*", 'S', params);
198         }
199
200         SaslResult GetSaslResult(const std::string &result_)
201         {
202                 if (result_ == "F")
203                         return SASL_FAIL;
204
205                 if (result_ == "A")
206                         return SASL_ABORT;
207
208                 return SASL_OK;
209         }
210
211         /* checks for and deals with a state change. */
212         SaslState ProcessInboundMessage(const CommandBase::Params& msg)
213         {
214                 switch (this->state)
215                 {
216                  case SASL_INIT:
217                         this->agent = msg[0];
218                         this->state = SASL_COMM;
219                         /* fall through */
220                  case SASL_COMM:
221                         if (msg[0] != this->agent)
222                                 return this->state;
223
224                         if (msg.size() < 4)
225                                 return this->state;
226
227                         if (msg[2] == "C")
228                         {
229                                 ClientProtocol::Message authmsg("AUTHENTICATE");
230                                 authmsg.PushParamRef(msg[3]);
231
232                                 ClientProtocol::Event authevent(*g_protoev, authmsg);
233                                 LocalUser* const localuser = IS_LOCAL(user);
234                                 if (localuser)
235                                         localuser->Send(authevent);
236                         }
237                         else if (msg[2] == "D")
238                         {
239                                 this->state = SASL_DONE;
240                                 this->result = this->GetSaslResult(msg[3]);
241                         }
242                         else if (msg[2] == "M")
243                                 this->user->WriteNumeric(RPL_SASLMECHS, msg[3], "are available SASL mechanisms");
244                         else
245                                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Services sent an unknown SASL message \"%s\" \"%s\"", msg[2].c_str(), msg[3].c_str());
246
247                         break;
248                  case SASL_DONE:
249                         break;
250                  default:
251                         ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "WTF: SaslState is not a known state (%d)", this->state);
252                         break;
253                 }
254
255                 return this->state;
256         }
257
258         bool SendClientMessage(const std::vector<std::string>& parameters)
259         {
260                 if (this->state != SASL_COMM)
261                         return true;
262
263                 SendSASL(this->user, this->agent, 'C', parameters);
264
265                 if (parameters[0].c_str()[0] == '*')
266                 {
267                         this->state = SASL_DONE;
268                         this->result = SASL_ABORT;
269                         return false;
270                 }
271
272                 return true;
273         }
274
275         void AnnounceState(void)
276         {
277                 if (this->state_announced)
278                         return;
279
280                 switch (this->result)
281                 {
282                  case SASL_OK:
283                         this->user->WriteNumeric(RPL_SASLSUCCESS, "SASL authentication successful");
284                         break;
285                  case SASL_ABORT:
286                         this->user->WriteNumeric(ERR_SASLABORTED, "SASL authentication aborted");
287                         break;
288                  case SASL_FAIL:
289                         this->user->WriteNumeric(ERR_SASLFAIL, "SASL authentication failed");
290                         break;
291                  default:
292                         break;
293                 }
294
295                 this->state_announced = true;
296         }
297 };
298
299 class CommandAuthenticate : public SplitCommand
300 {
301  private:
302          // The maximum length of an AUTHENTICATE request.
303          static const size_t MAX_AUTHENTICATE_SIZE = 400;
304
305  public:
306         SimpleExtItem<SaslAuthenticator>& authExt;
307         Cap::Capability& cap;
308         CommandAuthenticate(Module* Creator, SimpleExtItem<SaslAuthenticator>& ext, Cap::Capability& Cap)
309                 : SplitCommand(Creator, "AUTHENTICATE", 1)
310                 , authExt(ext)
311                 , cap(Cap)
312         {
313                 works_before_reg = true;
314                 allow_empty_last_param = false;
315         }
316
317         CmdResult HandleLocal(LocalUser* user, const Params& parameters) CXX11_OVERRIDE
318         {
319                 {
320                         if (!cap.get(user))
321                                 return CMD_FAILURE;
322
323                         if (parameters[0].find(' ') != std::string::npos || parameters[0][0] == ':')
324                                 return CMD_FAILURE;
325
326                         if (parameters[0].length() > MAX_AUTHENTICATE_SIZE)
327                         {
328                                 user->WriteNumeric(ERR_SASLTOOLONG, "SASL message too long");
329                                 return CMD_FAILURE;
330                         }
331
332                         SaslAuthenticator *sasl = authExt.get(user);
333                         if (!sasl)
334                                 authExt.set(user, new SaslAuthenticator(user, parameters[0]));
335                         else if (sasl->SendClientMessage(parameters) == false)  // IAL abort extension --nenolod
336                         {
337                                 sasl->AnnounceState();
338                                 authExt.unset(user);
339                         }
340                 }
341                 return CMD_FAILURE;
342         }
343 };
344
345 class CommandSASL : public Command
346 {
347  public:
348         SimpleExtItem<SaslAuthenticator>& authExt;
349         CommandSASL(Module* Creator, SimpleExtItem<SaslAuthenticator>& ext) : Command(Creator, "SASL", 2), authExt(ext)
350         {
351                 this->flags_needed = FLAG_SERVERONLY; // should not be called by users
352         }
353
354         CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
355         {
356                 User* target = ServerInstance->FindUUID(parameters[1]);
357                 if (!target)
358                 {
359                         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "User not found in sasl ENCAP event: %s", parameters[1].c_str());
360                         return CMD_FAILURE;
361                 }
362
363                 SaslAuthenticator *sasl = authExt.get(target);
364                 if (!sasl)
365                         return CMD_FAILURE;
366
367                 SaslState state = sasl->ProcessInboundMessage(parameters);
368                 if (state == SASL_DONE)
369                 {
370                         sasl->AnnounceState();
371                         authExt.unset(target);
372                 }
373                 return CMD_SUCCESS;
374         }
375
376         RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
377         {
378                 return ROUTE_BROADCAST;
379         }
380 };
381
382 class ModuleSASL : public Module
383 {
384         SimpleExtItem<SaslAuthenticator> authExt;
385         ServerTracker servertracker;
386         SASLCap cap;
387         CommandAuthenticate auth;
388         CommandSASL sasl;
389         Events::ModuleEventProvider sasleventprov;
390         ClientProtocol::EventProvider protoev;
391
392  public:
393         ModuleSASL()
394                 : authExt("sasl_auth", ExtensionItem::EXT_USER, this)
395                 , servertracker(this)
396                 , cap(this, servertracker)
397                 , auth(this, authExt, cap)
398                 , sasl(this, authExt)
399                 , sasleventprov(this, "event/sasl")
400                 , protoev(this, auth.name)
401         {
402                 saslevprov = &sasleventprov;
403                 g_protoev = &protoev;
404         }
405
406         void init() CXX11_OVERRIDE
407         {
408                 if (!ServerInstance->Modules->Find("m_services_account.so") || !ServerInstance->Modules->Find("m_cap.so"))
409                         ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "WARNING: m_services_account and m_cap are not loaded! m_sasl will NOT function correctly until these two modules are loaded!");
410         }
411
412         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
413         {
414                 std::string target = ServerInstance->Config->ConfValue("sasl")->getString("target");
415                 if (target.empty())
416                         throw ModuleException("<sasl:target> must be set to the name of your services server!");
417
418                 sasl_target = target;
419                 servertracker.Reset();
420         }
421
422         void OnDecodeMetaData(Extensible* target, const std::string& extname, const std::string& extdata) CXX11_OVERRIDE
423         {
424                 if ((target == NULL) && (extname == "saslmechlist"))
425                         cap.SetMechlist(extdata);
426         }
427
428         Version GetVersion() CXX11_OVERRIDE
429         {
430                 return Version("Provides support for IRC Authentication Layer (aka: SASL) via AUTHENTICATE.", VF_VENDOR);
431         }
432 };
433
434 MODULE_INIT(ModuleSASL)