forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmtp.c
721 lines (618 loc) · 16.8 KB
/
smtp.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
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
/**
* @file
* Send email to an SMTP server
*
* @authors
* Copyright (C) 2002 Michael R. Elkins <[email protected]>
* Copyright (C) 2005-2009 Brendan Cully <[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/>.
*/
/* This file contains code for direct SMTP delivery of email messages. */
#include "config.h"
#include <netdb.h>
#include <netinet/in.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include "mutt.h"
#include "account.h"
#include "address.h"
#include "globals.h"
#include "lib/lib.h"
#include "mutt_curses.h"
#include "mutt_socket.h"
#include "options.h"
#include "protos.h"
#include "url.h"
#ifdef USE_SSL
#include "mutt_ssl.h"
#endif
#ifdef USE_SASL
#include <sasl/sasl.h>
#include <sasl/saslutil.h>
#include "mutt_sasl.h"
#else
#include "mutt_sasl_plain.h"
#endif
#define smtp_success(x) ((x) / 100 == 2)
#define SMTP_READY 334
#define SMTP_CONTINUE 354
#define SMTP_ERR_READ -2
#define SMTP_ERR_WRITE -3
#define SMTP_ERR_CODE -4
#define SMTP_PORT 25
#define SMTPS_PORT 465
#define SMTP_AUTH_SUCCESS 0
#define SMTP_AUTH_UNAVAIL 1
#define SMTP_AUTH_FAIL -1
/**
* enum SmtpCapability - SMTP server capabilities
*/
enum SmtpCapability
{
STARTTLS,
AUTH,
DSN,
EIGHTBITMIME,
SMTPUTF8,
CAPMAX
};
static int Esmtp = 0;
static char *AuthMechs = NULL;
static unsigned char Capabilities[(CAPMAX + 7) / 8];
static bool valid_smtp_code(char *buf, size_t len, int *n)
{
char code[4];
if (len < 4)
return false;
code[0] = buf[0];
code[1] = buf[1];
code[2] = buf[2];
code[3] = 0;
if (mutt_atoi(code, n) < 0)
return false;
return true;
}
/**
* smtp_get_resp - Read a command response from the SMTP server
* @param conn SMTP connection
* @retval 0 Success (2xx code) or continue (354 code)
* @retval -1 Write error, or any other response code
*/
static int smtp_get_resp(struct Connection *conn)
{
int n;
char buf[1024];
do
{
n = mutt_socket_readln(buf, sizeof(buf), conn);
if (n < 4)
{
/* read error, or no response code */
return SMTP_ERR_READ;
}
if (mutt_strncasecmp("8BITMIME", buf + 4, 8) == 0)
mutt_bit_set(Capabilities, EIGHTBITMIME);
else if (mutt_strncasecmp("AUTH ", buf + 4, 5) == 0)
{
mutt_bit_set(Capabilities, AUTH);
FREE(&AuthMechs);
AuthMechs = safe_strdup(buf + 9);
}
else if (mutt_strncasecmp("DSN", buf + 4, 3) == 0)
mutt_bit_set(Capabilities, DSN);
else if (mutt_strncasecmp("STARTTLS", buf + 4, 8) == 0)
mutt_bit_set(Capabilities, STARTTLS);
else if (mutt_strncasecmp("SMTPUTF8", buf + 4, 8) == 0)
mutt_bit_set(Capabilities, SMTPUTF8);
if (!valid_smtp_code(buf, n, &n))
return SMTP_ERR_CODE;
} while (buf[3] == '-');
if (smtp_success(n) || n == SMTP_CONTINUE)
return 0;
mutt_error(_("SMTP session failed: %s"), buf);
return -1;
}
static int smtp_rcpt_to(struct Connection *conn, const struct Address *a)
{
char buf[1024];
int r;
while (a)
{
/* weed out group mailboxes, since those are for display only */
if (!a->mailbox || a->group)
{
a = a->next;
continue;
}
if (mutt_bit_isset(Capabilities, DSN) && DsnNotify)
snprintf(buf, sizeof(buf), "RCPT TO:<%s> NOTIFY=%s\r\n", a->mailbox, DsnNotify);
else
snprintf(buf, sizeof(buf), "RCPT TO:<%s>\r\n", a->mailbox);
if (mutt_socket_write(conn, buf) == -1)
return SMTP_ERR_WRITE;
if ((r = smtp_get_resp(conn)))
return r;
a = a->next;
}
return 0;
}
static int smtp_data(struct Connection *conn, const char *msgfile)
{
char buf[1024];
FILE *fp = NULL;
struct Progress progress;
struct stat st;
int r, term = 0;
size_t buflen = 0;
fp = fopen(msgfile, "r");
if (!fp)
{
mutt_error(_("SMTP session failed: unable to open %s"), msgfile);
return -1;
}
stat(msgfile, &st);
unlink(msgfile);
mutt_progress_init(&progress, _("Sending message..."), MUTT_PROGRESS_SIZE,
NetInc, st.st_size);
snprintf(buf, sizeof(buf), "DATA\r\n");
if (mutt_socket_write(conn, buf) == -1)
{
safe_fclose(&fp);
return SMTP_ERR_WRITE;
}
if ((r = smtp_get_resp(conn)))
{
safe_fclose(&fp);
return r;
}
while (fgets(buf, sizeof(buf) - 1, fp))
{
buflen = mutt_strlen(buf);
term = buflen && buf[buflen - 1] == '\n';
if (term && (buflen == 1 || buf[buflen - 2] != '\r'))
snprintf(buf + buflen - 1, sizeof(buf) - buflen + 1, "\r\n");
if (buf[0] == '.')
{
if (mutt_socket_write_d(conn, ".", -1, MUTT_SOCK_LOG_FULL) == -1)
{
safe_fclose(&fp);
return SMTP_ERR_WRITE;
}
}
if (mutt_socket_write_d(conn, buf, -1, MUTT_SOCK_LOG_FULL) == -1)
{
safe_fclose(&fp);
return SMTP_ERR_WRITE;
}
mutt_progress_update(&progress, ftell(fp), -1);
}
if (!term && buflen && mutt_socket_write_d(conn, "\r\n", -1, MUTT_SOCK_LOG_FULL) == -1)
{
safe_fclose(&fp);
return SMTP_ERR_WRITE;
}
safe_fclose(&fp);
/* terminate the message body */
if (mutt_socket_write(conn, ".\r\n") == -1)
return SMTP_ERR_WRITE;
if ((r = smtp_get_resp(conn)))
return r;
return 0;
}
/**
* address_uses_unicode - Do any addresses use Unicode
* @retval true if any of the string of addresses use 8-bit characters
*/
static bool address_uses_unicode(const char *a)
{
if (!a)
return false;
while (*a)
{
if ((unsigned char) *a & (1 << 7))
return true;
a++;
}
return false;
}
/**
* addresses_use_unicode - Do any of a list of addresses use Unicode
* @retval true if any use 8-bit characters
*/
static bool addresses_use_unicode(const struct Address *a)
{
while (a)
{
if (a->mailbox && !a->group && address_uses_unicode(a->mailbox))
return true;
a = a->next;
}
return false;
}
static int smtp_fill_account(struct Account *account)
{
static unsigned short SmtpPort = 0;
struct servent *service = NULL;
struct Url url;
char *urlstr = NULL;
account->flags = 0;
account->port = 0;
account->type = MUTT_ACCT_TYPE_SMTP;
urlstr = safe_strdup(SmtpUrl);
url_parse(&url, urlstr);
if ((url.scheme != U_SMTP && url.scheme != U_SMTPS) ||
mutt_account_fromurl(account, &url) < 0)
{
FREE(&urlstr);
mutt_error(_("Invalid SMTP URL: %s"), SmtpUrl);
mutt_sleep(1);
return -1;
}
FREE(&urlstr);
if (url.scheme == U_SMTPS)
account->flags |= MUTT_ACCT_SSL;
if (!account->port)
{
if (account->flags & MUTT_ACCT_SSL)
account->port = SMTPS_PORT;
else
{
if (!SmtpPort)
{
service = getservbyname("smtp", "tcp");
if (service)
SmtpPort = ntohs(service->s_port);
else
SmtpPort = SMTP_PORT;
mutt_debug(3, "Using default SMTP port %d\n", SmtpPort);
}
account->port = SmtpPort;
}
}
return 0;
}
static int smtp_helo(struct Connection *conn)
{
char buf[LONG_STRING];
const char *fqdn = NULL;
memset(Capabilities, 0, sizeof(Capabilities));
if (!Esmtp)
{
/* if TLS or AUTH are requested, use EHLO */
if (conn->account.flags & MUTT_ACCT_USER)
Esmtp = 1;
#ifdef USE_SSL
if (option(OPT_SSL_FORCE_TLS) || quadoption(OPT_SSL_START_TLS) != MUTT_NO)
Esmtp = 1;
#endif
}
if (!(fqdn = mutt_fqdn(0)))
fqdn = NONULL(Hostname);
snprintf(buf, sizeof(buf), "%s %s\r\n", Esmtp ? "EHLO" : "HELO", fqdn);
/* XXX there should probably be a wrapper in mutt_socket.c that
* repeatedly calls conn->write until all data is sent. This
* currently doesn't check for a short write.
*/
if (mutt_socket_write(conn, buf) == -1)
return SMTP_ERR_WRITE;
return smtp_get_resp(conn);
}
#ifdef USE_SASL
static int smtp_auth_sasl(struct Connection *conn, const char *mechlist)
{
sasl_conn_t *saslconn = NULL;
sasl_interact_t *interaction = NULL;
const char *mech = NULL;
const char *data = NULL;
unsigned int len;
char *buf = NULL;
size_t bufsize = 0;
int rc, saslrc;
if (mutt_sasl_client_new(conn, &saslconn) < 0)
return SMTP_AUTH_FAIL;
do
{
rc = sasl_client_start(saslconn, mechlist, &interaction, &data, &len, &mech);
if (rc == SASL_INTERACT)
mutt_sasl_interact(interaction);
} while (rc == SASL_INTERACT);
if (rc != SASL_OK && rc != SASL_CONTINUE)
{
mutt_debug(2, "smtp_auth_sasl: %s unavailable\n", mech);
sasl_dispose(&saslconn);
return SMTP_AUTH_UNAVAIL;
}
if (!option(OPT_NO_CURSES))
mutt_message(_("Authenticating (%s)..."), mech);
bufsize = ((len * 2) > LONG_STRING) ? (len * 2) : LONG_STRING;
buf = safe_malloc(bufsize);
snprintf(buf, bufsize, "AUTH %s", mech);
if (len)
{
safe_strcat(buf, bufsize, " ");
if (sasl_encode64(data, len, buf + mutt_strlen(buf),
bufsize - mutt_strlen(buf), &len) != SASL_OK)
{
mutt_debug(1, "smtp_auth_sasl: error base64-encoding client response.\n");
goto fail;
}
}
safe_strcat(buf, bufsize, "\r\n");
do
{
if (mutt_socket_write(conn, buf) < 0)
goto fail;
if ((rc = mutt_socket_readln(buf, bufsize, conn)) < 0)
goto fail;
if (!valid_smtp_code(buf, rc, &rc))
goto fail;
if (rc != SMTP_READY)
break;
if (sasl_decode64(buf + 4, strlen(buf + 4), buf, bufsize - 1, &len) != SASL_OK)
{
mutt_debug(1, "smtp_auth_sasl: error base64-decoding server response.\n");
goto fail;
}
do
{
saslrc = sasl_client_step(saslconn, buf, len, &interaction, &data, &len);
if (saslrc == SASL_INTERACT)
mutt_sasl_interact(interaction);
} while (saslrc == SASL_INTERACT);
if (len)
{
if ((len * 2) > bufsize)
{
bufsize = len * 2;
safe_realloc(&buf, bufsize);
}
if (sasl_encode64(data, len, buf, bufsize, &len) != SASL_OK)
{
mutt_debug(1,
"smtp_auth_sasl: error base64-encoding client response.\n");
goto fail;
}
}
strfcpy(buf + len, "\r\n", bufsize - len);
} while (rc == SMTP_READY && saslrc != SASL_FAIL);
if (smtp_success(rc))
{
mutt_sasl_setup_conn(conn, saslconn);
FREE(&buf);
return SMTP_AUTH_SUCCESS;
}
fail:
sasl_dispose(&saslconn);
FREE(&buf);
return SMTP_AUTH_FAIL;
}
static int smtp_auth(struct Connection *conn)
{
int r = SMTP_AUTH_UNAVAIL;
if (SmtpAuthenticators && *SmtpAuthenticators)
{
char *methods = safe_strdup(SmtpAuthenticators);
char *method = NULL;
char *delim = NULL;
for (method = methods; method; method = delim)
{
delim = strchr(method, ':');
if (delim)
*delim++ = '\0';
if (!method[0])
continue;
mutt_debug(2, "smtp_authenticate: Trying method %s\n", method);
r = smtp_auth_sasl(conn, method);
if (r == SMTP_AUTH_FAIL && delim)
{
mutt_error(_("%s authentication failed, trying next method"), method);
mutt_sleep(1);
}
else if (r != SMTP_AUTH_UNAVAIL)
break;
}
FREE(&methods);
}
else
r = smtp_auth_sasl(conn, AuthMechs);
if (r != SMTP_AUTH_SUCCESS)
mutt_account_unsetpass(&conn->account);
if (r == SMTP_AUTH_FAIL)
{
mutt_error(_("SASL authentication failed"));
mutt_sleep(1);
}
else if (r == SMTP_AUTH_UNAVAIL)
{
mutt_error(_("No authenticators available"));
mutt_sleep(1);
}
return r == SMTP_AUTH_SUCCESS ? 0 : -1;
}
#else /* USE_SASL */
static int smtp_auth_plain(struct Connection *conn)
{
char buf[LONG_STRING];
size_t len;
const char *method = NULL;
const char *delim = NULL;
const char *error = _("SASL authentication failed");
if (!SmtpAuthenticators || !*SmtpAuthenticators)
{
goto error;
}
/* Check if any elements in SmtpAuthenticators is "plain" */
for (method = delim = SmtpAuthenticators;
*delim && (delim = mutt_strchrnul(method, ':')); method = delim + 1)
{
if (mutt_strncasecmp(method, "plain", 5) == 0)
{
/* Get username and password. Bail out of any cannot be retrieved. */
if (mutt_account_getuser(&conn->account) || mutt_account_getpass(&conn->account))
{
goto error;
}
/* Build the initial client response. */
len = mutt_sasl_plain_msg(buf, sizeof(buf), "AUTH PLAIN", conn->account.user,
conn->account.user, conn->account.pass);
/* Terminate as per SMTP protocol. Bail out if there's no room left. */
if (snprintf(buf + len, sizeof(buf) - len, "\r\n") != 2)
{
goto error;
}
/* Send request, receive response (with a check for OK code). */
if ((mutt_socket_write(conn, buf) < 0) || smtp_get_resp(conn))
{
goto error;
}
/* If we got here, auth was successful. */
return 0;
}
}
error = _("No authenticators available");
error:
mutt_error(error);
mutt_sleep(1);
return -1;
}
#endif /* USE_SASL */
static int smtp_open(struct Connection *conn)
{
int rc;
if (mutt_socket_open(conn))
return -1;
/* get greeting string */
if ((rc = smtp_get_resp(conn)))
return rc;
if ((rc = smtp_helo(conn)))
return rc;
#ifdef USE_SSL
if (conn->ssf)
rc = MUTT_NO;
else if (option(OPT_SSL_FORCE_TLS))
rc = MUTT_YES;
else if (mutt_bit_isset(Capabilities, STARTTLS) &&
(rc = query_quadoption(OPT_SSL_START_TLS,
_("Secure connection with TLS?"))) == MUTT_ABORT)
return rc;
if (rc == MUTT_YES)
{
if (mutt_socket_write(conn, "STARTTLS\r\n") < 0)
return SMTP_ERR_WRITE;
if ((rc = smtp_get_resp(conn)))
return rc;
if (mutt_ssl_starttls(conn))
{
mutt_error(_("Could not negotiate TLS connection"));
mutt_sleep(1);
return -1;
}
/* re-EHLO to get authentication mechanisms */
if ((rc = smtp_helo(conn)))
return rc;
}
#endif
if (conn->account.flags & MUTT_ACCT_USER)
{
if (!mutt_bit_isset(Capabilities, AUTH))
{
mutt_error(_("SMTP server does not support authentication"));
mutt_sleep(1);
return -1;
}
#ifdef USE_SASL
return smtp_auth(conn);
#else
return smtp_auth_plain(conn);
#endif /* USE_SASL */
}
return 0;
}
int mutt_smtp_send(const struct Address *from, const struct Address *to,
const struct Address *cc, const struct Address *bcc,
const char *msgfile, int eightbit)
{
struct Connection *conn = NULL;
struct Account account;
const char *envfrom = NULL;
char buf[1024];
int ret = -1;
/* it might be better to synthesize an envelope from from user and host
* but this condition is most likely arrived at accidentally */
if (EnvFrom)
envfrom = EnvFrom->mailbox;
else if (from)
envfrom = from->mailbox;
else
{
mutt_error(_("No from address given"));
return -1;
}
if (smtp_fill_account(&account) < 0)
return ret;
if (!(conn = mutt_conn_find(NULL, &account)))
return -1;
Esmtp = eightbit;
do
{
/* send our greeting */
if ((ret = smtp_open(conn)))
break;
FREE(&AuthMechs);
/* send the sender's address */
ret = snprintf(buf, sizeof(buf), "MAIL FROM:<%s>", envfrom);
if (eightbit && mutt_bit_isset(Capabilities, EIGHTBITMIME))
{
safe_strncat(buf, sizeof(buf), " BODY=8BITMIME", 15);
ret += 14;
}
if (DsnReturn && mutt_bit_isset(Capabilities, DSN))
ret += snprintf(buf + ret, sizeof(buf) - ret, " RET=%s", DsnReturn);
if (mutt_bit_isset(Capabilities, SMTPUTF8) &&
(address_uses_unicode(envfrom) || addresses_use_unicode(to) ||
addresses_use_unicode(cc) || addresses_use_unicode(bcc)))
ret += snprintf(buf + ret, sizeof(buf) - ret, " SMTPUTF8");
safe_strncat(buf, sizeof(buf), "\r\n", 3);
if (mutt_socket_write(conn, buf) == -1)
{
ret = SMTP_ERR_WRITE;
break;
}
if ((ret = smtp_get_resp(conn)))
break;
/* send the recipient list */
if ((ret = smtp_rcpt_to(conn, to)) || (ret = smtp_rcpt_to(conn, cc)) ||
(ret = smtp_rcpt_to(conn, bcc)))
break;
/* send the message data */
if ((ret = smtp_data(conn, msgfile)))
break;
mutt_socket_write(conn, "QUIT\r\n");
ret = 0;
} while (0);
if (conn)
mutt_socket_close(conn);
if (ret == SMTP_ERR_READ)
mutt_error(_("SMTP session failed: read error"));
else if (ret == SMTP_ERR_WRITE)
mutt_error(_("SMTP session failed: write error"));
else if (ret == SMTP_ERR_CODE)
mutt_error(_("Invalid server response"));
return ret;
}