sync with 0.7.5cvs14
[claws.git] / src / smtp.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include <glib.h>
25 #include <stdio.h>
26 #include <string.h>
27
28 #include "intl.h"
29 #include "smtp.h"
30 #include "socket.h"
31 #include "md5.h"
32 #include "base64.h"
33 #include "utils.h"
34
35 static gint verbose = 1;
36
37 static gint smtp_starttls(SockInfo *sock);
38 static gint smtp_auth_cram_md5(SockInfo *sock, gchar *buf, gint len);
39 static gint smtp_auth_login(SockInfo *sock, gchar *buf, gint len);
40 static gint smtp_ok(SockInfo *sock, gchar *buf, gint len);
41
42 #if USE_SSL
43 Session *smtp_session_new(const gchar *server, gushort port,
44                           const gchar *domain,
45                           const gchar *user, const gchar *pass,
46                           SSLSMTPType ssl_type)
47 #else
48 Session *smtp_session_new(const gchar *server, gushort port,
49                           const gchar *domain,
50                           const gchar *user, const gchar *pass)
51 #endif
52 {
53         SMTPSession *session;
54         SockInfo *sock;
55         gboolean use_esmtp;
56         SMTPAuthType avail_auth_type = 0;
57         gint val;
58
59         g_return_val_if_fail(server != NULL, NULL);
60
61 #if USE_SSL
62         use_esmtp = user != NULL || ssl_type == SSL_SMTP_STARTTLS;
63 #else
64         use_esmtp = user != NULL;
65 #endif
66
67         if ((sock = sock_connect(server, port)) == NULL) {
68                 log_warning(_("Can't connect to SMTP server: %s:%d\n"),
69                             server, port);
70                 return NULL;
71         }
72
73 #if USE_SSL
74         if (ssl_type == SSL_SMTP_TUNNEL && !ssl_init_socket(sock)) {
75                 log_warning(_("SSL connection failed"));
76                 sock_close(sock);
77                 return NULL;
78         }
79 #endif
80
81         if (smtp_ok(sock, NULL, 0) != SM_OK) {
82                 log_warning(_("Error occurred while connecting to %s:%d\n"),
83                             server, port);
84                 sock_close(sock);
85                 return NULL;
86         }
87
88         if (!domain)
89                 domain = get_domain_name();
90
91         if (use_esmtp)
92                 val = smtp_ehlo(sock, domain, &avail_auth_type);
93         else
94                 val = smtp_helo(sock, domain);
95         if (val != SM_OK) {
96                 log_warning(_("Error occurred while sending HELO\n"));
97                 sock_close(sock);
98                 return NULL;
99         }
100
101 #if USE_SSL
102         if (ssl_type == SSL_SMTP_STARTTLS) {
103                 val = smtp_starttls(sock);
104                 if (val != SM_OK) {
105                         log_warning(_("Error occurred while sending STARTTLS\n"));
106                         sock_close(sock);
107                         return NULL;
108                 }
109                 if (!ssl_init_socket_with_method(sock, SSL_METHOD_TLSv1)) {
110                         sock_close(sock);
111                         return NULL;
112                 }
113                 val = smtp_ehlo(sock, domain, &avail_auth_type);
114                 if (val != SM_OK) {
115                         log_warning(_("Error occurred while sending EHLO\n"));
116                         sock_close(sock);
117                         return NULL;
118                 }
119         }
120 #endif
121
122         session = g_new(SMTPSession, 1);
123         SESSION(session)->type             = SESSION_SMTP;
124         SESSION(session)->server           = g_strdup(server);
125         SESSION(session)->sock             = sock;
126         SESSION(session)->connected        = TRUE;
127         SESSION(session)->phase            = SESSION_READY;
128         SESSION(session)->last_access_time = 0;
129         SESSION(session)->data             = NULL;
130         session->avail_auth_type           = avail_auth_type;
131         session->user                      = user ? g_strdup(user) : NULL;
132         session->pass                      = pass ? g_strdup(pass) :
133                                              user ? g_strdup("") : NULL;
134
135         return SESSION(session);
136 }
137
138 void smtp_session_destroy(SMTPSession *session)
139 {
140         sock_close(SESSION(session)->sock);
141         SESSION(session)->sock = NULL;
142
143         g_free(session->user);
144         g_free(session->pass);
145 }
146
147 gint smtp_from(SMTPSession *session, const gchar *from)
148 {
149         gchar buf[MSGBUFSIZE];
150
151         g_return_val_if_fail(session != NULL, SM_ERROR);
152         g_return_val_if_fail(from != NULL, SM_ERROR);
153
154         if (session->user) {
155                 if (smtp_auth(session) != SM_OK)
156                         return SM_AUTHFAIL;
157         }
158
159         if (strchr(from, '<'))
160                 g_snprintf(buf, sizeof(buf), "MAIL FROM: %s", from);
161         else
162                 g_snprintf(buf, sizeof(buf), "MAIL FROM: <%s>", from);
163
164         sock_printf(SESSION(session)->sock, "%s\r\n", buf);
165         if (verbose)
166                 log_print("SMTP> %s\n", buf);
167
168         return smtp_ok(SESSION(session)->sock, NULL, 0);
169 }
170
171 gint smtp_auth(SMTPSession *session)
172 {
173         gchar buf[MSGBUFSIZE];
174         SMTPAuthType authtype = 0;
175         guchar hexdigest[33];
176         gchar *challenge, *response, *response64;
177         gint challengelen;
178         SockInfo *sock;
179
180         g_return_val_if_fail(session != NULL, SM_ERROR);
181         g_return_val_if_fail(session->user != NULL, SM_ERROR);
182
183         sock = SESSION(session)->sock;
184
185         if ((session->avail_auth_type & SMTPAUTH_CRAM_MD5) != 0 &&
186             smtp_auth_cram_md5(sock, buf, sizeof(buf)) == SM_OK)
187                 authtype = SMTPAUTH_CRAM_MD5;
188         else if ((session->avail_auth_type & SMTPAUTH_LOGIN) != 0 &&
189                  smtp_auth_login(sock, buf, sizeof(buf)) == SM_OK)
190                 authtype = SMTPAUTH_LOGIN;
191         else {
192                 log_warning(_("SMTP AUTH not available\n"));
193                 return SM_AUTHFAIL;
194         }
195
196         switch (authtype) {
197         case SMTPAUTH_LOGIN:
198                 if (!strncmp(buf, "334 ", 4))
199                         to64frombits(buf, session->user, strlen(session->user));
200                 else
201                         /* Server rejects AUTH */
202                         g_snprintf(buf, sizeof(buf), "*");
203
204                 sock_printf(sock, "%s\r\n", buf);
205                 if (verbose) log_print("ESMTP> [USERID]\n");
206
207                 smtp_ok(sock, buf, sizeof(buf));
208
209                 if (!strncmp(buf, "334 ", 4))
210                         to64frombits(buf, session->pass, strlen(session->pass));
211                 else
212                         /* Server rejects AUTH */
213                         g_snprintf(buf, sizeof(buf), "*");
214
215                 sock_printf(sock, "%s\r\n", buf);
216                 if (verbose) log_print("ESMTP> [PASSWORD]\n");
217                 break;
218         case SMTPAUTH_CRAM_MD5:
219                 if (!strncmp(buf, "334 ", 4)) {
220                         challenge = g_malloc(strlen(buf + 4) + 1);
221                         challengelen = from64tobits(challenge, buf + 4);
222                         challenge[challengelen] = '\0';
223                         if (verbose)
224                                 log_print("ESMTP< [Decoded: %s]\n", challenge);
225
226                         g_snprintf(buf, sizeof(buf), "%s", session->pass);
227                         md5_hex_hmac(hexdigest, challenge, challengelen,
228                                      buf, strlen(session->pass));
229                         g_free(challenge);
230
231                         response = g_strdup_printf
232                                 ("%s %s", session->user, hexdigest);
233                         if (verbose)
234                                 log_print("ESMTP> [Encoded: %s]\n", response);
235
236                         response64 = g_malloc((strlen(response) + 3) * 2 + 1);
237                         to64frombits(response64, response, strlen(response));
238                         g_free(response);
239
240                         sock_printf(sock, "%s\r\n", response64);
241                         if (verbose) log_print("ESMTP> %s\n", response64);
242                         g_free(response64);
243                 } else {
244                         /* Server rejects AUTH */
245                         g_snprintf(buf, sizeof(buf), "*");
246                         sock_printf(sock, "%s\r\n", buf);
247                         if (verbose)
248                                 log_print("ESMTP> %s\n", buf);
249                 }
250                 break;
251         case SMTPAUTH_DIGEST_MD5:
252         default:
253                 /* stop smtp_auth when no correct authtype */
254                 g_snprintf(buf, sizeof(buf), "*");
255                 sock_printf(sock, "%s\r\n", buf);
256                 if (verbose) log_print("ESMTP> %s\n", buf);
257                 break;
258         }
259
260         return smtp_ok(sock, NULL, 0);
261 }
262
263 gint smtp_ehlo(SockInfo *sock, const gchar *hostname,
264                SMTPAuthType *avail_auth_type)
265 {
266         gchar buf[MSGBUFSIZE];
267
268         *avail_auth_type = 0;
269
270         sock_printf(sock, "EHLO %s\r\n", hostname);
271         if (verbose)
272                 log_print("ESMTP> EHLO %s\n", hostname);
273
274         while ((sock_gets(sock, buf, sizeof(buf) - 1)) != -1) {
275                 if (strlen(buf) < 4)
276                         return SM_ERROR;
277                 strretchomp(buf);
278
279                 if (verbose)
280                         log_print("ESMTP< %s\n", buf);
281
282                 if (strncmp(buf, "250-", 4) == 0) {
283                         gchar *p = buf;
284                         p += 4;
285                         if (g_strncasecmp(p, "AUTH ", 5) == 0) {
286                                 p += 5;
287                                 if (strcasestr(p, "LOGIN"))
288                                         *avail_auth_type |= SMTPAUTH_LOGIN;
289                                 if (strcasestr(p, "CRAM-MD5"))
290                                         *avail_auth_type |= SMTPAUTH_CRAM_MD5;
291                                 if (strcasestr(p, "DIGEST-MD5"))
292                                         *avail_auth_type |= SMTPAUTH_DIGEST_MD5;
293                         }
294                 } else if ((buf[0] == '1' || buf[0] == '2' || buf[0] == '3') &&
295                     (buf[3] == ' ' || buf[3] == '\0'))
296                         return SM_OK;
297                 else if (buf[3] != '-')
298                         return SM_ERROR;
299                 else if (buf[0] == '5' && buf[1] == '0' &&
300                          (buf[2] == '4' || buf[2] == '3' || buf[2] == '1'))
301                         return SM_ERROR;
302         }
303
304         return SM_UNRECOVERABLE;
305 }
306
307 static gint smtp_starttls(SockInfo *sock)
308 {
309         sock_printf(sock, "STARTTLS\r\n");
310         if (verbose)
311                 log_print("ESMTP> STARTTLS\n");
312
313         return smtp_ok(sock, NULL, 0);
314 }
315
316 static gint smtp_auth_cram_md5(SockInfo *sock, gchar *buf, gint len)
317 {
318         sock_printf(sock, "AUTH CRAM-MD5\r\n");
319         if (verbose)
320                 log_print("ESMTP> AUTH CRAM-MD5\n");
321
322         return smtp_ok(sock, buf, len);
323 }
324
325 static gint smtp_auth_login(SockInfo *sock, gchar *buf, gint len)
326 {
327         sock_printf(sock, "AUTH LOGIN\r\n");
328         if (verbose)
329                 log_print("ESMTP> AUTH LOGIN\n");
330
331         return smtp_ok(sock, buf, len);
332 }
333
334 gint smtp_helo(SockInfo *sock, const gchar *hostname)
335 {
336         sock_printf(sock, "HELO %s\r\n", hostname);
337         if (verbose)
338                 log_print("SMTP> HELO %s\n", hostname);
339
340         return smtp_ok(sock, NULL, 0);
341 }
342
343 gint smtp_rcpt(SockInfo *sock, const gchar *to)
344 {
345         gchar buf[MSGBUFSIZE];
346
347         if (strchr(to, '<'))
348                 g_snprintf(buf, sizeof(buf), "RCPT TO: %s", to);
349         else
350                 g_snprintf(buf, sizeof(buf), "RCPT TO: <%s>", to);
351
352         sock_printf(sock, "%s\r\n", buf);
353         if (verbose)
354                 log_print("SMTP> %s\n", buf);
355
356         return smtp_ok(sock, NULL, 0);
357 }
358
359 gint smtp_data(SockInfo *sock)
360 {
361         sock_printf(sock, "DATA\r\n");
362         if (verbose)
363                 log_print("SMTP> DATA\n");
364
365         return smtp_ok(sock, NULL, 0);
366 }
367
368 gint smtp_rset(SockInfo *sock)
369 {
370         sock_printf(sock, "RSET\r\n");
371         if (verbose)
372                 log_print("SMTP> RSET\n");
373
374         return smtp_ok(sock, NULL, 0);
375 }
376
377 gint smtp_quit(SockInfo *sock)
378 {
379         sock_printf(sock, "QUIT\r\n");
380         if (verbose)
381                 log_print("SMTP> QUIT\n");
382
383         return smtp_ok(sock, NULL, 0);
384 }
385
386 gint smtp_eom(SockInfo *sock)
387 {
388         sock_printf(sock, ".\r\n");
389         if (verbose)
390                 log_print("SMTP> . (EOM)\n");
391
392         return smtp_ok(sock, NULL, 0);
393 }
394
395 static gint smtp_ok(SockInfo *sock, gchar *buf, gint len)
396 {
397         gchar tmpbuf[MSGBUFSIZE];
398
399         if (!buf) {
400                 buf = tmpbuf;
401                 len = sizeof(tmpbuf);
402         }
403
404         while ((sock_gets(sock, buf, len - 1)) != -1) {
405                 if (strlen(buf) < 4)
406                         return SM_ERROR;
407                 strretchomp(buf);
408
409                 if (verbose)
410                         log_print("SMTP< %s\n", buf);
411
412                 if ((buf[0] == '1' || buf[0] == '2' || buf[0] == '3') &&
413                     (buf[3] == ' ' || buf[3] == '\0'))
414                         return SM_OK;
415                 else if (buf[3] != '-')
416                         return SM_ERROR;
417                 else if (buf[0] == '5' && buf[1] == '0' &&
418                          (buf[2] == '4' || buf[2] == '3' || buf[2] == '1'))
419                         return SM_ERROR;
420         }
421
422         return SM_UNRECOVERABLE;
423 }