forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.c
531 lines (459 loc) · 14 KB
/
auth.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
/**
* @file
* POP authentication
*
* @authors
* Copyright (C) 2000-2001 Vsevolod Volkov <[email protected]>
* Copyright (C) 2018 Richard Russon <[email protected]>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @page pop_auth POP authentication
*
* POP authentication
*/
#include "config.h"
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include "private.h"
#include "mutt/lib.h"
#include "address/lib.h"
#include "config/lib.h"
#include "core/lib.h"
#include "conn/lib.h"
#include "adata.h"
#include "mutt_socket.h"
#ifdef USE_SASL
#include <sasl/sasl.h>
#include <sasl/saslutil.h>
#endif
#ifdef USE_SASL
/**
* pop_auth_sasl - POP SASL authenticator - Implements PopAuth::authenticate()
*/
static enum PopAuthRes pop_auth_sasl(struct PopAccountData *adata, const char *method)
{
sasl_conn_t *saslconn = NULL;
sasl_interact_t *interaction = NULL;
int rc;
char inbuf[1024];
const char *mech = NULL;
const char *pc = NULL;
unsigned int len = 0, olen = 0;
if (mutt_account_getpass(&adata->conn->account) || !adata->conn->account.pass[0])
return POP_A_FAILURE;
if (mutt_sasl_client_new(adata->conn, &saslconn) < 0)
{
mutt_debug(LL_DEBUG1, "Error allocating SASL connection\n");
return POP_A_FAILURE;
}
if (!method)
method = adata->auth_list.data;
while (true)
{
rc = sasl_client_start(saslconn, method, &interaction, &pc, &olen, &mech);
if (rc != SASL_INTERACT)
break;
mutt_sasl_interact(interaction);
}
if ((rc != SASL_OK) && (rc != SASL_CONTINUE))
{
mutt_debug(
LL_DEBUG1,
"Failure starting authentication exchange. No shared mechanisms?\n");
/* SASL doesn't support suggested mechanisms, so fall back */
sasl_dispose(&saslconn);
return POP_A_UNAVAIL;
}
/* About client_start: If sasl_client_start() returns data via pc/olen,
* the client is expected to send this first (after the AUTH string is sent).
* sasl_client_start() may in fact return SASL_OK in this case. */
unsigned int client_start = olen;
// L10N: (%s) is the method name, e.g. Anonymous, CRAM-MD5, GSSAPI, SASL
mutt_message(_("Authenticating (%s)..."), "SASL");
size_t bufsize = MAX((olen * 2), 1024);
char *buf = mutt_mem_malloc(bufsize);
snprintf(buf, bufsize, "AUTH %s", mech);
olen = strlen(buf);
/* looping protocol */
while (true)
{
mutt_str_copy(buf + olen, "\r\n", bufsize - olen);
mutt_socket_send(adata->conn, buf);
if (mutt_socket_readln_d(inbuf, sizeof(inbuf), adata->conn, MUTT_SOCK_LOG_FULL) < 0)
{
sasl_dispose(&saslconn);
adata->status = POP_DISCONNECTED;
FREE(&buf);
return POP_A_SOCKET;
}
/* Note we don't exit if rc==SASL_OK when client_start is true.
* This is because the first loop has only sent the AUTH string, we
* need to loop at least once more to send the pc/olen returned
* by sasl_client_start(). */
if (!client_start && (rc != SASL_CONTINUE))
break;
if (mutt_str_startswith(inbuf, "+ ") &&
(sasl_decode64(inbuf + 2, strlen(inbuf + 2), buf, bufsize - 1, &len) != SASL_OK))
{
mutt_debug(LL_DEBUG1, "error base64-decoding server response\n");
goto bail;
}
if (!client_start)
{
while (true)
{
rc = sasl_client_step(saslconn, buf, len, &interaction, &pc, &olen);
if (rc != SASL_INTERACT)
break;
mutt_sasl_interact(interaction);
}
}
else
{
olen = client_start;
client_start = 0;
}
/* Even if sasl_client_step() returns SASL_OK, we should send at
* least one more line to the server. */
if ((rc != SASL_CONTINUE) && (rc != SASL_OK))
break;
/* send out response, or line break if none needed */
if (pc)
{
if ((olen * 2) > bufsize)
{
bufsize = olen * 2;
mutt_mem_realloc(&buf, bufsize);
}
if (sasl_encode64(pc, olen, buf, bufsize, &olen) != SASL_OK)
{
mutt_debug(LL_DEBUG1, "error base64-encoding client response\n");
goto bail;
}
}
}
if (rc != SASL_OK)
goto bail;
if (mutt_str_startswith(inbuf, "+OK"))
{
mutt_sasl_setup_conn(adata->conn, saslconn);
FREE(&buf);
return POP_A_SUCCESS;
}
bail:
sasl_dispose(&saslconn);
/* terminate SASL session if the last response is not +OK nor -ERR */
if (mutt_str_startswith(inbuf, "+ "))
{
snprintf(buf, bufsize, "*\r\n");
if (pop_query(adata, buf, bufsize) == -1)
{
FREE(&buf);
return POP_A_SOCKET;
}
}
FREE(&buf);
// L10N: %s is the method name, e.g. Anonymous, CRAM-MD5, GSSAPI, SASL
mutt_error(_("%s authentication failed"), "SASL");
return POP_A_FAILURE;
}
#endif
/**
* pop_apop_timestamp - Get the server timestamp for APOP authentication
* @param adata POP Account data
* @param buf Timestamp string
*/
void pop_apop_timestamp(struct PopAccountData *adata, char *buf)
{
char *p1 = NULL, *p2 = NULL;
FREE(&adata->timestamp);
if ((p1 = strchr(buf, '<')) && (p2 = strchr(p1, '>')))
{
p2[1] = '\0';
adata->timestamp = mutt_str_dup(p1);
}
}
/**
* pop_auth_apop - APOP authenticator - Implements PopAuth::authenticate()
*/
static enum PopAuthRes pop_auth_apop(struct PopAccountData *adata, const char *method)
{
struct Md5Ctx md5ctx;
unsigned char digest[16];
char hash[33];
char buf[1024];
if (mutt_account_getpass(&adata->conn->account) || !adata->conn->account.pass[0])
return POP_A_FAILURE;
if (!adata->timestamp)
return POP_A_UNAVAIL;
if (!mutt_addr_valid_msgid(adata->timestamp))
{
mutt_error(_("POP timestamp is invalid"));
return POP_A_UNAVAIL;
}
// L10N: (%s) is the method name, e.g. Anonymous, CRAM-MD5, GSSAPI, SASL
mutt_message(_("Authenticating (%s)..."), "APOP");
/* Compute the authentication hash to send to the server */
mutt_md5_init_ctx(&md5ctx);
mutt_md5_process(adata->timestamp, &md5ctx);
mutt_md5_process(adata->conn->account.pass, &md5ctx);
mutt_md5_finish_ctx(&md5ctx, digest);
mutt_md5_toascii(digest, hash);
/* Send APOP command to server */
snprintf(buf, sizeof(buf), "APOP %s %s\r\n", adata->conn->account.user, hash);
switch (pop_query(adata, buf, sizeof(buf)))
{
case 0:
return POP_A_SUCCESS;
case -1:
return POP_A_SOCKET;
}
// L10N: %s is the method name, e.g. Anonymous, CRAM-MD5, GSSAPI, SASL
mutt_error(_("%s authentication failed"), "APOP");
return POP_A_FAILURE;
}
/**
* pop_auth_user - USER authenticator - Implements PopAuth::authenticate()
*/
static enum PopAuthRes pop_auth_user(struct PopAccountData *adata, const char *method)
{
if (!adata->cmd_user)
return POP_A_UNAVAIL;
if (mutt_account_getpass(&adata->conn->account) || !adata->conn->account.pass[0])
return POP_A_FAILURE;
mutt_message(_("Logging in..."));
char buf[1024];
snprintf(buf, sizeof(buf), "USER %s\r\n", adata->conn->account.user);
int ret = pop_query(adata, buf, sizeof(buf));
if (adata->cmd_user == 2)
{
if (ret == 0)
{
adata->cmd_user = 1;
mutt_debug(LL_DEBUG1, "set USER capability\n");
}
if (ret == -2)
{
adata->cmd_user = 0;
mutt_debug(LL_DEBUG1, "unset USER capability\n");
snprintf(adata->err_msg, sizeof(adata->err_msg), "%s",
_("Command USER is not supported by server"));
}
}
if (ret == 0)
{
snprintf(buf, sizeof(buf), "PASS %s\r\n", adata->conn->account.pass);
const short c_debug_level = cs_subset_number(NeoMutt->sub, "debug_level");
ret = pop_query_d(adata, buf, sizeof(buf),
/* don't print the password unless we're at the ungodly debugging level */
(c_debug_level < MUTT_SOCK_LOG_FULL) ? "PASS *\r\n" : NULL);
}
switch (ret)
{
case 0:
return POP_A_SUCCESS;
case -1:
return POP_A_SOCKET;
}
mutt_error("%s %s", _("Login failed"), adata->err_msg);
return POP_A_FAILURE;
}
/**
* pop_auth_oauth - Authenticate a POP connection using OAUTHBEARER - Implements PopAuth::authenticate()
*/
static enum PopAuthRes pop_auth_oauth(struct PopAccountData *adata, const char *method)
{
/* If they did not explicitly request or configure oauth then fail quietly */
const char *const c_pop_oauth_refresh_command =
cs_subset_string(NeoMutt->sub, "pop_oauth_refresh_command");
if (!method && !c_pop_oauth_refresh_command)
return POP_A_UNAVAIL;
// L10N: (%s) is the method name, e.g. Anonymous, CRAM-MD5, GSSAPI, SASL
mutt_message(_("Authenticating (%s)..."), "OAUTHBEARER");
char *oauthbearer = mutt_account_getoauthbearer(&adata->conn->account);
if (!oauthbearer)
return POP_A_FAILURE;
size_t auth_cmd_len = strlen(oauthbearer) + 30;
char *auth_cmd = mutt_mem_malloc(auth_cmd_len);
snprintf(auth_cmd, auth_cmd_len, "AUTH OAUTHBEARER %s\r\n", oauthbearer);
FREE(&oauthbearer);
int ret = pop_query_d(adata, auth_cmd, strlen(auth_cmd),
#ifdef DEBUG
/* don't print the bearer token unless we're at the ungodly debugging level */
(cs_subset_number(NeoMutt->sub, "debug_level") < MUTT_SOCK_LOG_FULL) ?
"AUTH OAUTHBEARER *\r\n" :
#endif
NULL);
FREE(&auth_cmd);
switch (ret)
{
case 0:
return POP_A_SUCCESS;
case -1:
return POP_A_SOCKET;
}
/* The error response was a SASL continuation, so "continue" it.
* See RFC7628 3.2.3 */
mutt_socket_send(adata->conn, "\001");
char *err = adata->err_msg;
char decoded_err[1024];
int len = mutt_b64_decode(adata->err_msg, decoded_err, sizeof(decoded_err) - 1);
if (len >= 0)
{
decoded_err[len] = '\0';
err = decoded_err;
}
mutt_error("%s %s", _("Authentication failed"), err);
return POP_A_FAILURE;
}
/**
* pop_authenticators - Accepted authentication methods
*/
static const struct PopAuth pop_authenticators[] = {
// clang-format off
{ pop_auth_oauth, "oauthbearer" },
#ifdef USE_SASL
{ pop_auth_sasl, NULL },
#endif
{ pop_auth_apop, "apop" },
{ pop_auth_user, "user" },
{ NULL, NULL },
// clang-format on
};
/**
* pop_auth_is_valid - Check if string is a valid pop authentication method
* @param authenticator Authenticator string to check
* @retval true Argument is a valid auth method
*
* Validate whether an input string is an accepted pop authentication method as
* defined by #pop_authenticators.
*/
bool pop_auth_is_valid(const char *authenticator)
{
for (size_t i = 0; i < mutt_array_size(pop_authenticators); i++)
{
const struct PopAuth *auth = &pop_authenticators[i];
if (auth->method && mutt_istr_equal(auth->method, authenticator))
return true;
}
return false;
}
/**
* pop_authenticate - Authenticate with a POP server
* @param adata POP Account data
* @retval num Result, e.g. #POP_A_SUCCESS
* @retval 0 Successful
* @retval -1 Connection lost
* @retval -2 Login failed
* @retval -3 Authentication cancelled
*/
int pop_authenticate(struct PopAccountData *adata)
{
struct ConnAccount *cac = &adata->conn->account;
const struct PopAuth *authenticator = NULL;
int attempts = 0;
int ret = POP_A_UNAVAIL;
if ((mutt_account_getuser(cac) < 0) || (cac->user[0] == '\0'))
{
return -3;
}
const struct Slist *c_pop_authenticators =
cs_subset_slist(NeoMutt->sub, "pop_authenticators");
const bool c_pop_auth_try_all =
cs_subset_bool(NeoMutt->sub, "pop_auth_try_all");
if (c_pop_authenticators && (c_pop_authenticators->count > 0))
{
/* Try user-specified list of authentication methods */
struct ListNode *np = NULL;
STAILQ_FOREACH(np, &c_pop_authenticators->head, entries)
{
mutt_debug(LL_DEBUG2, "Trying method %s\n", np->data);
authenticator = pop_authenticators;
while (authenticator->authenticate)
{
if (!authenticator->method || mutt_istr_equal(authenticator->method, np->data))
{
ret = authenticator->authenticate(adata, np->data);
if (ret == POP_A_SOCKET)
{
switch (pop_connect(adata))
{
case 0:
{
ret = authenticator->authenticate(adata, np->data);
break;
}
case -2:
ret = POP_A_FAILURE;
}
}
if (ret != POP_A_UNAVAIL)
attempts++;
if ((ret == POP_A_SUCCESS) || (ret == POP_A_SOCKET) ||
((ret == POP_A_FAILURE) && !c_pop_auth_try_all))
{
break;
}
}
authenticator++;
}
}
}
else
{
/* Fall back to default: any authenticator */
mutt_debug(LL_DEBUG2, "Using any available method\n");
authenticator = pop_authenticators;
while (authenticator->authenticate)
{
ret = authenticator->authenticate(adata, NULL);
if (ret == POP_A_SOCKET)
{
switch (pop_connect(adata))
{
case 0:
{
ret = authenticator->authenticate(adata, NULL);
break;
}
case -2:
ret = POP_A_FAILURE;
}
}
if (ret != POP_A_UNAVAIL)
attempts++;
if ((ret == POP_A_SUCCESS) || (ret == POP_A_SOCKET) ||
((ret == POP_A_FAILURE) && !c_pop_auth_try_all))
{
break;
}
authenticator++;
}
}
switch (ret)
{
case POP_A_SUCCESS:
return 0;
case POP_A_SOCKET:
return -1;
case POP_A_UNAVAIL:
if (attempts == 0)
mutt_error(_("No authenticators available"));
}
return -2;
}