]> jfr.im git - solanum.git/blame - modules/m_sasl.c
m_sasl: check if the agent is present after every client_exit
[solanum.git] / modules / m_sasl.c
CommitLineData
212380e3
AC
1/* modules/m_sasl.c
2 * Copyright (C) 2006 Michael Tharp <gxti@partiallystapled.com>
f62f94b0 3 * Copyright (C) 2006 charybdis development team
15b05f95 4 * Copyright (C) 2016 ChatLounge IRC Network Development Team
212380e3
AC
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * 1.Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 * 2.Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3.The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
212380e3
AC
29 */
30
31#include "stdinc.h"
32
33#include "client.h"
34#include "hash.h"
35#include "send.h"
36#include "msg.h"
37#include "modules.h"
38#include "numeric.h"
37289346 39#include "reject.h"
212380e3
AC
40#include "s_serv.h"
41#include "s_stats.h"
42#include "string.h"
7d33cce8
MT
43#include "s_newconf.h"
44#include "s_conf.h"
212380e3 45
eeabf33a
EM
46static const char sasl_desc[] = "Provides SASL authentication support";
47
3c7d6fcc
EM
48static void m_authenticate(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
49static void me_sasl(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
50static void me_mechlist(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
212380e3
AC
51
52static void abort_sasl(struct Client *);
53static void abort_sasl_exit(hook_data_client_exit *);
54
15b05f95
SA
55static void advertise_sasl_cap(bool);
56static void advertise_sasl_new(struct Client *);
57static void advertise_sasl_exit(void *);
58static void advertise_sasl_config(void *);
12565204 59
da3e5fcb
AC
60static unsigned int CLICAP_SASL = 0;
61static char mechlist_buf[BUFSIZE];
15b05f95 62static bool sasl_agent_present = false;
193d4db3 63
212380e3 64struct Message authenticate_msgtab = {
7baa37a9 65 "AUTHENTICATE", 0, 0, 0, 0,
ef3ab8e3 66 {{m_authenticate, 2}, {m_authenticate, 2}, mg_ignore, mg_ignore, mg_ignore, {m_authenticate, 2}}
212380e3
AC
67};
68struct Message sasl_msgtab = {
7baa37a9 69 "SASL", 0, 0, 0, 0,
212380e3
AC
70 {mg_ignore, mg_ignore, mg_ignore, mg_ignore, {me_sasl, 5}, mg_ignore}
71};
da3e5fcb
AC
72struct Message mechlist_msgtab = {
73 "MECHLIST", 0, 0, 0, 0,
74 {mg_ignore, mg_ignore, mg_ignore, mg_ignore, {me_mechlist, 2}, mg_ignore}
75};
212380e3 76
55abcbb2 77mapi_clist_av1 sasl_clist[] = {
da3e5fcb 78 &authenticate_msgtab, &sasl_msgtab, &mechlist_msgtab, NULL
212380e3
AC
79};
80mapi_hfn_list_av1 sasl_hfnlist[] = {
81 { "new_local_user", (hookfn) abort_sasl },
82 { "client_exit", (hookfn) abort_sasl_exit },
15b05f95
SA
83 { "new_remote_user", (hookfn) advertise_sasl_new },
84 { "after_client_exit", (hookfn) advertise_sasl_exit },
85 { "conf_read_end", (hookfn) advertise_sasl_config },
212380e3
AC
86 { NULL, NULL }
87};
88
3c7d6fcc 89static bool
15b05f95 90sasl_visible(struct Client *ignored)
193d4db3
AC
91{
92 struct Client *agent_p = NULL;
93
94 if (ConfigFileEntry.sasl_service)
95 agent_p = find_named_client(ConfigFileEntry.sasl_service);
96
97 return agent_p != NULL && IsService(agent_p);
98}
99
da3e5fcb 100static const char *
38ffccf8 101sasl_data(struct Client *client_p)
da3e5fcb
AC
102{
103 return *mechlist_buf != 0 ? mechlist_buf : NULL;
104}
105
193d4db3
AC
106static struct ClientCapability capdata_sasl = {
107 .visible = sasl_visible,
da3e5fcb 108 .data = sasl_data,
193d4db3
AC
109 .flags = CLICAP_FLAGS_STICKY,
110};
111
112static int
113_modinit(void)
114{
da3e5fcb 115 memset(mechlist_buf, 0, sizeof mechlist_buf);
15b05f95
SA
116 sasl_agent_present = false;
117
193d4db3 118 CLICAP_SASL = capability_put(cli_capindex, "sasl", &capdata_sasl);
15b05f95 119 advertise_sasl_config(NULL);
193d4db3
AC
120 return 0;
121}
122
123static void
124_moddeinit(void)
125{
15b05f95 126 advertise_sasl_cap(false);
193d4db3
AC
127 capability_orphan(cli_capindex, "sasl");
128}
129
3abc337f 130DECLARE_MODULE_AV2(sasl, _modinit, _moddeinit, sasl_clist, NULL, sasl_hfnlist, NULL, NULL, sasl_desc);
212380e3 131
3c7d6fcc 132static void
428ca87b 133m_authenticate(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p,
212380e3
AC
134 int parc, const char *parv[])
135{
136 struct Client *agent_p = NULL;
7d33cce8 137 struct Client *saslserv_p = NULL;
212380e3
AC
138
139 /* They really should use CAP for their own sake. */
140 if(!IsCapable(source_p, CLICAP_SASL))
3c7d6fcc 141 return;
212380e3 142
9d07a42d
MM
143 if(source_p->localClient->sasl_next_retry > rb_current_time())
144 {
145 sendto_one(source_p, form_str(RPL_LOAD2HI), me.name, EmptyString(source_p->name) ? "*" : source_p->name, msgbuf_p->cmd);
146 return;
147 }
148
149 if(strlen(client_p->id) == 3)
1b19fe8b
JT
150 {
151 exit_client(client_p, client_p, client_p, "Mixing client and server protocol");
3c7d6fcc 152 return;
1b19fe8b
JT
153 }
154
ac88154f
AJ
155 if (*parv[1] == ':' || strchr(parv[1], ' '))
156 {
157 exit_client(client_p, client_p, client_p, "Malformed AUTHENTICATE");
158 return;
159 }
160
7d33cce8 161 saslserv_p = find_named_client(ConfigFileEntry.sasl_service);
9d07a42d 162 if(saslserv_p == NULL || !IsService(saslserv_p))
7d33cce8
MT
163 {
164 sendto_one(source_p, form_str(ERR_SASLABORTED), me.name, EmptyString(source_p->name) ? "*" : source_p->name);
3c7d6fcc 165 return;
7d33cce8
MT
166 }
167
c6bc97fd 168 if(source_p->localClient->sasl_complete)
212380e3 169 {
51535fcb 170 *source_p->localClient->sasl_agent = '\0';
c6bc97fd 171 source_p->localClient->sasl_complete = 0;
212380e3
AC
172 }
173
174 if(strlen(parv[1]) > 400)
175 {
176 sendto_one(source_p, form_str(ERR_SASLTOOLONG), me.name, EmptyString(source_p->name) ? "*" : source_p->name);
3c7d6fcc 177 return;
212380e3
AC
178 }
179
180 if(!*source_p->id)
181 {
182 /* Allocate a UID. */
4d5a902f 183 rb_strlcpy(source_p->id, generate_uid(), sizeof(source_p->id));
212380e3
AC
184 add_to_id_hash(source_p->id, source_p);
185 }
186
c6bc97fd
AC
187 if(*source_p->localClient->sasl_agent)
188 agent_p = find_id(source_p->localClient->sasl_agent);
212380e3
AC
189
190 if(agent_p == NULL)
572488e0 191 {
280ce6a9
AJ
192 if (!strcmp(parv[1], "*"))
193 {
194 sendto_one(source_p, form_str(ERR_SASLABORTED), me.name, EmptyString(source_p->name) ? "*" : source_p->name);
6d8a8851 195 source_p->localClient->sasl_out = 0;
631c3089 196 return;
280ce6a9
AJ
197 }
198
0ee833da 199 sendto_one(saslserv_p, ":%s ENCAP %s SASL %s %s H %s %s %c",
1cae2411 200 me.id, saslserv_p->servptr->name, source_p->id, saslserv_p->id,
0ee833da
SA
201 source_p->host, source_p->sockhost,
202 IsSSL(source_p) ? 'S' : 'P');
a3fa9d81 203
802710b5 204 if (source_p->certfp != NULL)
6fb9f214
MM
205 sendto_one(saslserv_p, ":%s ENCAP %s SASL %s %s S %s %s",
206 me.id, saslserv_p->servptr->name, source_p->id, saslserv_p->id,
207 parv[1], source_p->certfp);
572488e0 208 else
6fb9f214
MM
209 sendto_one(saslserv_p, ":%s ENCAP %s SASL %s %s S %s",
210 me.id, saslserv_p->servptr->name, source_p->id, saslserv_p->id,
211 parv[1]);
7d33cce8 212
c6bc97fd 213 rb_strlcpy(source_p->localClient->sasl_agent, saslserv_p->id, IDLEN);
572488e0 214 }
212380e3 215 else
280ce6a9
AJ
216 {
217 if (!strcmp(parv[1], "*"))
218 {
219 sendto_one(source_p, form_str(ERR_SASLABORTED), me.name, EmptyString(source_p->name) ? "*" : source_p->name);
220 sendto_one(agent_p, ":%s ENCAP %s SASL %s %s D A", me.id, agent_p->servptr->name, source_p->id, agent_p->id);
6d8a8851 221 source_p->localClient->sasl_out = 0;
631c3089 222 return;
280ce6a9
AJ
223 }
224
6fb9f214
MM
225 sendto_one(agent_p, ":%s ENCAP %s SASL %s %s C %s",
226 me.id, agent_p->servptr->name, source_p->id, agent_p->id,
7d33cce8 227 parv[1]);
280ce6a9
AJ
228 }
229
c6bc97fd 230 source_p->localClient->sasl_out++;
212380e3
AC
231}
232
3c7d6fcc 233static void
428ca87b 234me_sasl(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p,
212380e3
AC
235 int parc, const char *parv[])
236{
237 struct Client *target_p, *agent_p;
238
239 /* Let propagate if not addressed to us, or if broadcast.
240 * Only SASL agents can answer global requests.
241 */
242 if(strncmp(parv[2], me.id, 3))
3c7d6fcc 243 return;
212380e3
AC
244
245 if((target_p = find_id(parv[2])) == NULL)
3c7d6fcc 246 return;
212380e3 247
212380e3 248 if((agent_p = find_id(parv[1])) == NULL)
3c7d6fcc 249 return;
212380e3
AC
250
251 if(source_p != agent_p->servptr) /* WTF?! */
3c7d6fcc 252 return;
212380e3
AC
253
254 /* We only accept messages from SASL agents; these must have umode +S
255 * (so the server must be listed in a service{} block).
256 */
257 if(!IsService(agent_p))
3c7d6fcc 258 return;
212380e3
AC
259
260 /* Reject if someone has already answered. */
c6bc97fd 261 if(*target_p->localClient->sasl_agent && strncmp(parv[1], target_p->localClient->sasl_agent, IDLEN))
3c7d6fcc 262 return;
c6bc97fd
AC
263 else if(!*target_p->localClient->sasl_agent)
264 rb_strlcpy(target_p->localClient->sasl_agent, parv[1], IDLEN);
212380e3 265
f62f94b0 266 if(*parv[3] == 'C')
37289346 267 {
212380e3 268 sendto_one(target_p, "AUTHENTICATE %s", parv[4]);
37289346
MM
269 target_p->localClient->sasl_messages++;
270 }
212380e3
AC
271 else if(*parv[3] == 'D')
272 {
834579ce
MM
273 if(*parv[4] == 'F')
274 {
212380e3 275 sendto_one(target_p, form_str(ERR_SASLFAIL), me.name, EmptyString(target_p->name) ? "*" : target_p->name);
9d07a42d 276 /* Failures with zero messages are just "unknown mechanism" errors; don't count those. */
834579ce 277 if(target_p->localClient->sasl_messages > 0)
37289346 278 {
9d07a42d
MM
279 if(*target_p->name)
280 {
46ef49c3
X
281 /* Allow 2 tries before rate-limiting as some clients try EXTERNAL
282 * then PLAIN right after it if the auth failed, causing the client to be
283 * rate-limited immediately and not being able to login with SASL.
284 */
285 if (target_p->localClient->sasl_failures++ > 0)
23f5c317 286 target_p->localClient->sasl_next_retry = rb_current_time() + (1 << MIN(target_p->localClient->sasl_failures + 1, 8));
9d07a42d
MM
287 }
288 else if(throttle_add((struct sockaddr*)&target_p->localClient->ip))
37289346
MM
289 {
290 exit_client(target_p, target_p, &me, "Too many failed authentication attempts");
291 return;
292 }
293 }
294 }
834579ce
MM
295 else if(*parv[4] == 'S')
296 {
212380e3 297 sendto_one(target_p, form_str(RPL_SASLSUCCESS), me.name, EmptyString(target_p->name) ? "*" : target_p->name);
9d07a42d 298 target_p->localClient->sasl_failures = 0;
c6bc97fd 299 target_p->localClient->sasl_complete = 1;
47adde3d 300 ServerStats.is_ssuc++;
212380e3 301 }
c6bc97fd 302 *target_p->localClient->sasl_agent = '\0'; /* Blank the stored agent so someone else can answer */
37289346 303 target_p->localClient->sasl_messages = 0;
212380e3 304 }
dbd8ca2b
MM
305 else if(*parv[3] == 'M')
306 sendto_one(target_p, form_str(RPL_SASLMECHS), me.name, EmptyString(target_p->name) ? "*" : target_p->name, parv[4]);
212380e3
AC
307}
308
3c7d6fcc 309static void
da3e5fcb
AC
310me_mechlist(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p,
311 int parc, const char *parv[])
312{
313 rb_strlcpy(mechlist_buf, parv[1], sizeof mechlist_buf);
da3e5fcb
AC
314}
315
212380e3
AC
316/* If the client never finished authenticating but is
317 * registering anyway, abort the exchange.
318 */
319static void
320abort_sasl(struct Client *data)
321{
c6bc97fd 322 if(data->localClient->sasl_out == 0 || data->localClient->sasl_complete)
212380e3
AC
323 return;
324
c6bc97fd 325 data->localClient->sasl_out = data->localClient->sasl_complete = 0;
47adde3d 326 ServerStats.is_sbad++;
212380e3
AC
327
328 if(!IsClosing(data))
329 sendto_one(data, form_str(ERR_SASLABORTED), me.name, EmptyString(data->name) ? "*" : data->name);
330
c6bc97fd 331 if(*data->localClient->sasl_agent)
212380e3 332 {
c6bc97fd 333 struct Client *agent_p = find_id(data->localClient->sasl_agent);
212380e3
AC
334 if(agent_p)
335 {
336 sendto_one(agent_p, ":%s ENCAP %s SASL %s %s D A", me.id, agent_p->servptr->name,
337 data->id, agent_p->id);
338 return;
339 }
340 }
341
342 sendto_server(NULL, NULL, CAP_TS6|CAP_ENCAP, NOCAPS, ":%s ENCAP * SASL %s * D A", me.id,
343 data->id);
344}
345
346static void
347abort_sasl_exit(hook_data_client_exit *data)
348{
c23902ae
AC
349 if (data->target->localClient)
350 abort_sasl(data->target);
212380e3
AC
351}
352
12565204 353static void
15b05f95
SA
354advertise_sasl_cap(bool available)
355{
356 if (sasl_agent_present != available) {
357 if (available) {
358 sendto_local_clients_with_capability(CLICAP_CAP_NOTIFY, ":%s CAP * NEW :sasl", me.name);
359 } else {
360 sendto_local_clients_with_capability(CLICAP_CAP_NOTIFY, ":%s CAP * DEL :sasl", me.name);
361 }
362 sasl_agent_present = available;
363 }
364}
365
366static void
367advertise_sasl_new(struct Client *client_p)
12565204
AC
368{
369 if (!ConfigFileEntry.sasl_service)
370 return;
371
372 if (irccmp(client_p->name, ConfigFileEntry.sasl_service))
373 return;
374
15b05f95 375 advertise_sasl_cap(IsService(client_p));
12565204
AC
376}
377
378static void
15b05f95 379advertise_sasl_exit(void *ignored)
12565204
AC
380{
381 if (!ConfigFileEntry.sasl_service)
382 return;
383
15b05f95
SA
384 if (sasl_agent_present) {
385 advertise_sasl_cap(sasl_visible(NULL));
386 }
387}
12565204 388
15b05f95
SA
389static void
390advertise_sasl_config(void *ignored)
391{
392 advertise_sasl_cap(sasl_visible(NULL));
12565204 393}