2009-12-12 16:54:01 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-03-05 15:10:11 -05:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2009-12-12 16:54:01 -05:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2009-12-12 16:54:01 -05:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2013-01-24 18:41:57 -05:00
|
|
|
* RFC1870 SMTP Service Extension for Message Size
|
2010-04-19 05:16:30 -04:00
|
|
|
* RFC2195 CRAM-MD5 authentication
|
2012-03-30 16:50:56 -04:00
|
|
|
* RFC2831 DIGEST-MD5 authentication
|
2013-01-24 18:41:57 -05:00
|
|
|
* RFC3207 SMTP over TLS
|
2013-01-22 13:37:12 -05:00
|
|
|
* RFC4422 Simple Authentication and Security Layer (SASL)
|
2010-04-19 05:16:30 -04:00
|
|
|
* RFC4616 PLAIN authentication
|
2014-08-09 18:38:08 -04:00
|
|
|
* RFC4752 The Kerberos V5 ("GSSAPI") SASL Mechanism
|
2013-01-24 18:41:57 -05:00
|
|
|
* RFC4954 SMTP Authentication
|
|
|
|
* RFC5321 SMTP protocol
|
2013-08-25 13:17:58 -04:00
|
|
|
* RFC6749 OAuth 2.0 Authorization Framework
|
2013-10-26 09:35:27 -04:00
|
|
|
* Draft SMTP URL Interface <draft-earhart-url-smtp-00.txt>
|
|
|
|
* Draft LOGIN SASL Mechanism <draft-murchison-sasl-login-00.txt>
|
2009-12-12 16:54:01 -05:00
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
#ifndef CURL_DISABLE_SMTP
|
|
|
|
|
|
|
|
#ifdef HAVE_NETINET_IN_H
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_UTSNAME_H
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
2009-12-30 12:59:56 -05:00
|
|
|
#ifdef __VMS
|
2009-12-12 16:54:01 -05:00
|
|
|
#include <in.h>
|
|
|
|
#include <inet.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (defined(NETWARE) && defined(__NOVELL_LIBC__))
|
|
|
|
#undef in_addr_t
|
|
|
|
#define in_addr_t unsigned long
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <curl/curl.h>
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "urldata.h"
|
|
|
|
#include "sendf.h"
|
|
|
|
#include "hostip.h"
|
|
|
|
#include "progress.h"
|
|
|
|
#include "transfer.h"
|
|
|
|
#include "escape.h"
|
|
|
|
#include "http.h" /* for HTTP proxy tunnel stuff */
|
|
|
|
#include "socks.h"
|
|
|
|
#include "smtp.h"
|
|
|
|
#include "strtoofft.h"
|
2016-09-30 11:15:05 -04:00
|
|
|
#include "strcase.h"
|
2013-12-17 17:32:47 -05:00
|
|
|
#include "vtls/vtls.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "connect.h"
|
|
|
|
#include "strerror.h"
|
|
|
|
#include "select.h"
|
|
|
|
#include "multiif.h"
|
|
|
|
#include "url.h"
|
2010-07-29 18:47:49 -04:00
|
|
|
#include "curl_gethostname.h"
|
2012-05-25 16:49:25 -04:00
|
|
|
#include "curl_sasl.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "warnless.h"
|
2016-04-29 09:46:40 -04:00
|
|
|
/* The last 3 #include files should be in this order */
|
2015-03-03 06:36:18 -05:00
|
|
|
#include "curl_printf.h"
|
2009-12-12 16:54:01 -05:00
|
|
|
#include "curl_memory.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
/* Local API functions */
|
|
|
|
static CURLcode smtp_regular_transfer(struct connectdata *conn, bool *done);
|
|
|
|
static CURLcode smtp_do(struct connectdata *conn, bool *done);
|
2012-04-01 16:09:38 -04:00
|
|
|
static CURLcode smtp_done(struct connectdata *conn, CURLcode status,
|
|
|
|
bool premature);
|
2009-12-12 16:54:01 -05:00
|
|
|
static CURLcode smtp_connect(struct connectdata *conn, bool *done);
|
2011-04-20 09:17:42 -04:00
|
|
|
static CURLcode smtp_disconnect(struct connectdata *conn, bool dead);
|
2009-12-12 16:54:01 -05:00
|
|
|
static CURLcode smtp_multi_statemach(struct connectdata *conn, bool *done);
|
2013-01-19 04:49:17 -05:00
|
|
|
static int smtp_getsock(struct connectdata *conn, curl_socket_t *socks,
|
2009-12-12 16:54:01 -05:00
|
|
|
int numsocks);
|
2012-04-01 16:09:38 -04:00
|
|
|
static CURLcode smtp_doing(struct connectdata *conn, bool *dophase_done);
|
2012-02-16 05:43:17 -05:00
|
|
|
static CURLcode smtp_setup_connection(struct connectdata *conn);
|
2013-04-13 11:21:58 -04:00
|
|
|
static CURLcode smtp_parse_url_options(struct connectdata *conn);
|
2013-04-12 18:15:51 -04:00
|
|
|
static CURLcode smtp_parse_url_path(struct connectdata *conn);
|
2013-11-15 11:10:05 -05:00
|
|
|
static CURLcode smtp_parse_custom_request(struct connectdata *conn);
|
2015-01-20 11:33:05 -05:00
|
|
|
static CURLcode smtp_perform_auth(struct connectdata *conn, const char *mech,
|
|
|
|
const char *initresp);
|
|
|
|
static CURLcode smtp_continue_auth(struct connectdata *conn, const char *resp);
|
2016-11-23 02:30:18 -05:00
|
|
|
static void smtp_get_message(char *buffer, char **outptr);
|
2009-12-20 17:11:16 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
/*
|
|
|
|
* SMTP protocol handler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const struct Curl_handler Curl_handler_smtp = {
|
|
|
|
"SMTP", /* scheme */
|
|
|
|
smtp_setup_connection, /* setup_connection */
|
|
|
|
smtp_do, /* do_it */
|
|
|
|
smtp_done, /* done */
|
|
|
|
ZERO_NULL, /* do_more */
|
|
|
|
smtp_connect, /* connect_it */
|
|
|
|
smtp_multi_statemach, /* connecting */
|
|
|
|
smtp_doing, /* doing */
|
|
|
|
smtp_getsock, /* proto_getsock */
|
|
|
|
smtp_getsock, /* doing_getsock */
|
2011-10-21 17:36:54 -04:00
|
|
|
ZERO_NULL, /* domore_getsock */
|
2009-12-12 16:54:01 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
|
|
|
smtp_disconnect, /* disconnect */
|
2011-05-05 10:27:03 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2009-12-12 16:54:01 -05:00
|
|
|
PORT_SMTP, /* defport */
|
2011-03-14 17:52:14 -04:00
|
|
|
CURLPROTO_SMTP, /* protocol */
|
2011-11-24 17:28:54 -05:00
|
|
|
PROTOPT_CLOSEACTION | PROTOPT_NOURLQUERY /* flags */
|
2009-12-12 16:54:01 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef USE_SSL
|
|
|
|
/*
|
|
|
|
* SMTPS protocol handler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const struct Curl_handler Curl_handler_smtps = {
|
|
|
|
"SMTPS", /* scheme */
|
|
|
|
smtp_setup_connection, /* setup_connection */
|
|
|
|
smtp_do, /* do_it */
|
|
|
|
smtp_done, /* done */
|
|
|
|
ZERO_NULL, /* do_more */
|
|
|
|
smtp_connect, /* connect_it */
|
|
|
|
smtp_multi_statemach, /* connecting */
|
|
|
|
smtp_doing, /* doing */
|
|
|
|
smtp_getsock, /* proto_getsock */
|
|
|
|
smtp_getsock, /* doing_getsock */
|
2011-10-21 17:36:54 -04:00
|
|
|
ZERO_NULL, /* domore_getsock */
|
2009-12-12 16:54:01 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
|
|
|
smtp_disconnect, /* disconnect */
|
2011-05-05 10:27:03 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2009-12-12 16:54:01 -05:00
|
|
|
PORT_SMTPS, /* defport */
|
2014-04-20 13:37:54 -04:00
|
|
|
CURLPROTO_SMTPS, /* protocol */
|
2011-11-24 17:28:54 -05:00
|
|
|
PROTOPT_CLOSEACTION | PROTOPT_SSL
|
|
|
|
| PROTOPT_NOURLQUERY /* flags */
|
2009-12-12 16:54:01 -05:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CURL_DISABLE_HTTP
|
|
|
|
/*
|
|
|
|
* HTTP-proxyed SMTP protocol handler.
|
|
|
|
*/
|
|
|
|
|
2010-01-25 18:41:02 -05:00
|
|
|
static const struct Curl_handler Curl_handler_smtp_proxy = {
|
2009-12-12 16:54:01 -05:00
|
|
|
"SMTP", /* scheme */
|
2013-08-04 13:34:16 -04:00
|
|
|
Curl_http_setup_conn, /* setup_connection */
|
2009-12-12 16:54:01 -05:00
|
|
|
Curl_http, /* do_it */
|
|
|
|
Curl_http_done, /* done */
|
|
|
|
ZERO_NULL, /* do_more */
|
|
|
|
ZERO_NULL, /* connect_it */
|
|
|
|
ZERO_NULL, /* connecting */
|
|
|
|
ZERO_NULL, /* doing */
|
|
|
|
ZERO_NULL, /* proto_getsock */
|
|
|
|
ZERO_NULL, /* doing_getsock */
|
2011-10-21 17:36:54 -04:00
|
|
|
ZERO_NULL, /* domore_getsock */
|
2009-12-12 16:54:01 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
|
|
|
ZERO_NULL, /* disconnect */
|
2011-05-05 10:27:03 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2009-12-12 16:54:01 -05:00
|
|
|
PORT_SMTP, /* defport */
|
2011-03-14 17:52:14 -04:00
|
|
|
CURLPROTO_HTTP, /* protocol */
|
2011-03-14 17:22:22 -04:00
|
|
|
PROTOPT_NONE /* flags */
|
2009-12-12 16:54:01 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef USE_SSL
|
|
|
|
/*
|
|
|
|
* HTTP-proxyed SMTPS protocol handler.
|
|
|
|
*/
|
|
|
|
|
2010-01-25 18:41:02 -05:00
|
|
|
static const struct Curl_handler Curl_handler_smtps_proxy = {
|
2009-12-12 16:54:01 -05:00
|
|
|
"SMTPS", /* scheme */
|
2013-08-04 13:34:16 -04:00
|
|
|
Curl_http_setup_conn, /* setup_connection */
|
2009-12-12 16:54:01 -05:00
|
|
|
Curl_http, /* do_it */
|
|
|
|
Curl_http_done, /* done */
|
|
|
|
ZERO_NULL, /* do_more */
|
|
|
|
ZERO_NULL, /* connect_it */
|
|
|
|
ZERO_NULL, /* connecting */
|
|
|
|
ZERO_NULL, /* doing */
|
|
|
|
ZERO_NULL, /* proto_getsock */
|
|
|
|
ZERO_NULL, /* doing_getsock */
|
2011-10-21 17:36:54 -04:00
|
|
|
ZERO_NULL, /* domore_getsock */
|
2009-12-12 16:54:01 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
|
|
|
ZERO_NULL, /* disconnect */
|
2011-05-05 10:27:03 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2009-12-12 16:54:01 -05:00
|
|
|
PORT_SMTPS, /* defport */
|
2011-03-14 17:52:14 -04:00
|
|
|
CURLPROTO_HTTP, /* protocol */
|
2011-03-14 17:22:22 -04:00
|
|
|
PROTOPT_NONE /* flags */
|
2009-12-12 16:54:01 -05:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2015-01-20 11:33:05 -05:00
|
|
|
/* SASL parameters for the smtp protocol */
|
|
|
|
static const struct SASLproto saslsmtp = {
|
|
|
|
"smtp", /* The service name */
|
|
|
|
334, /* Code received when continuation is expected */
|
|
|
|
235, /* Code to receive upon authentication success */
|
|
|
|
512 - 8, /* Maximum initial response length (no max) */
|
|
|
|
smtp_perform_auth, /* Send authentication command */
|
|
|
|
smtp_continue_auth, /* Send authentication continuation */
|
|
|
|
smtp_get_message /* Get SASL response message */
|
|
|
|
};
|
|
|
|
|
2013-02-11 18:13:50 -05:00
|
|
|
#ifdef USE_SSL
|
|
|
|
static void smtp_to_smtps(struct connectdata *conn)
|
|
|
|
{
|
2016-03-05 15:10:11 -05:00
|
|
|
/* Change the connection handler */
|
2013-02-11 18:13:50 -05:00
|
|
|
conn->handler = &Curl_handler_smtps;
|
2016-03-05 15:10:11 -05:00
|
|
|
|
|
|
|
/* Set the connection's upgraded to TLS flag */
|
|
|
|
conn->tls_upgraded = TRUE;
|
2013-02-11 18:13:50 -05:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define smtp_to_smtps(x) Curl_nop_stmt
|
|
|
|
#endif
|
|
|
|
|
2013-04-16 14:40:54 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-10-27 05:00:41 -04:00
|
|
|
* smtp_endofresp()
|
2013-04-16 14:40:54 -04:00
|
|
|
*
|
|
|
|
* Checks for an ending SMTP status code at the start of the given string, but
|
|
|
|
* also detects various capabilities from the EHLO response including the
|
|
|
|
* supported authentication mechanisms.
|
|
|
|
*/
|
2013-02-12 13:08:48 -05:00
|
|
|
static bool smtp_endofresp(struct connectdata *conn, char *line, size_t len,
|
|
|
|
int *resp)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2013-11-15 07:50:37 -05:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
2013-02-19 10:53:13 -05:00
|
|
|
bool result = FALSE;
|
2010-04-19 05:16:30 -04:00
|
|
|
|
2013-11-15 05:46:29 -05:00
|
|
|
/* Nothing for us */
|
2010-04-19 05:16:30 -04:00
|
|
|
if(len < 4 || !ISDIGIT(line[0]) || !ISDIGIT(line[1]) || !ISDIGIT(line[2]))
|
2013-11-15 05:46:29 -05:00
|
|
|
return FALSE;
|
2010-04-19 05:16:30 -04:00
|
|
|
|
2013-10-26 06:09:31 -04:00
|
|
|
/* Do we have a command response? This should be the response code followed
|
|
|
|
by a space and optionally some text as per RFC-5321 and as outlined in
|
|
|
|
Section 4. Examples of RFC-4954 but some e-mail servers ignore this and
|
2013-11-15 05:46:29 -05:00
|
|
|
only send the response code instead as per Section 4.2. */
|
|
|
|
if(line[3] == ' ' || len == 5) {
|
|
|
|
result = TRUE;
|
2010-12-01 17:33:43 -05:00
|
|
|
*resp = curlx_sltosi(strtol(line, NULL, 10));
|
2010-04-19 05:16:30 -04:00
|
|
|
|
2013-11-15 05:46:29 -05:00
|
|
|
/* Make sure real server never sends internal value */
|
|
|
|
if(*resp == 1)
|
|
|
|
*resp = 0;
|
|
|
|
}
|
|
|
|
/* Do we have a multiline (continuation) response? */
|
2013-11-15 13:20:12 -05:00
|
|
|
else if(line[3] == '-' &&
|
|
|
|
(smtpc->state == SMTP_EHLO || smtpc->state == SMTP_COMMAND)) {
|
2013-11-15 05:46:29 -05:00
|
|
|
result = TRUE;
|
|
|
|
*resp = 1; /* Internal response code */
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
|
2013-02-09 09:32:20 -05:00
|
|
|
return result;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
|
2013-10-27 05:00:41 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_get_message()
|
|
|
|
*
|
|
|
|
* Gets the authentication message from the response buffer.
|
|
|
|
*/
|
2016-11-23 01:53:24 -05:00
|
|
|
static void smtp_get_message(char *buffer, char **outptr)
|
2013-10-27 05:00:41 -04:00
|
|
|
{
|
|
|
|
size_t len = 0;
|
2016-11-23 01:53:24 -05:00
|
|
|
char *message = NULL;
|
2013-10-27 05:00:41 -04:00
|
|
|
|
|
|
|
/* Find the start of the message */
|
|
|
|
for(message = buffer + 4; *message == ' ' || *message == '\t'; message++)
|
|
|
|
;
|
|
|
|
|
|
|
|
/* Find the end of the message */
|
|
|
|
for(len = strlen(message); len--;)
|
|
|
|
if(message[len] != '\r' && message[len] != '\n' && message[len] != ' ' &&
|
2016-05-23 06:59:58 -04:00
|
|
|
message[len] != '\t')
|
2013-10-27 05:00:41 -04:00
|
|
|
break;
|
|
|
|
|
2013-10-30 17:25:15 -04:00
|
|
|
/* Terminate the message */
|
2013-10-27 05:00:41 -04:00
|
|
|
if(++len) {
|
|
|
|
message[len] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
*outptr = message;
|
|
|
|
}
|
|
|
|
|
2013-04-16 14:40:54 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* state()
|
|
|
|
*
|
|
|
|
* This is the ONLY way to change SMTP state!
|
|
|
|
*/
|
2012-04-01 16:09:38 -04:00
|
|
|
static void state(struct connectdata *conn, smtpstate newstate)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2010-05-18 17:44:19 -04:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
2009-12-12 16:54:01 -05:00
|
|
|
#if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS)
|
|
|
|
/* for debug purposes */
|
2011-08-24 02:55:25 -04:00
|
|
|
static const char * const names[] = {
|
2009-12-12 16:54:01 -05:00
|
|
|
"STOP",
|
|
|
|
"SERVERGREET",
|
|
|
|
"EHLO",
|
2010-02-22 07:41:02 -05:00
|
|
|
"HELO",
|
2009-12-12 16:54:01 -05:00
|
|
|
"STARTTLS",
|
2011-02-16 16:28:01 -05:00
|
|
|
"UPGRADETLS",
|
2015-01-20 11:33:05 -05:00
|
|
|
"AUTH",
|
2013-11-15 11:10:05 -05:00
|
|
|
"COMMAND",
|
2009-12-12 16:54:01 -05:00
|
|
|
"MAIL",
|
|
|
|
"RCPT",
|
|
|
|
"DATA",
|
2010-02-20 16:56:48 -05:00
|
|
|
"POSTDATA",
|
2009-12-12 16:54:01 -05:00
|
|
|
"QUIT",
|
|
|
|
/* LAST */
|
|
|
|
};
|
2012-12-28 15:22:33 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
if(smtpc->state != newstate)
|
|
|
|
infof(conn->data, "SMTP %p state change from %s to %s\n",
|
2013-07-23 09:59:07 -04:00
|
|
|
(void *)smtpc, names[smtpc->state], names[newstate]);
|
2009-12-12 16:54:01 -05:00
|
|
|
#endif
|
2012-12-28 15:22:33 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
smtpc->state = newstate;
|
|
|
|
}
|
|
|
|
|
2013-04-16 14:40:54 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-04-16 14:47:15 -04:00
|
|
|
* smtp_perform_ehlo()
|
2013-04-16 14:40:54 -04:00
|
|
|
*
|
|
|
|
* Sends the EHLO command to not only initialise communication with the ESMTP
|
|
|
|
* server but to also obtain a list of server side supported capabilities.
|
|
|
|
*/
|
2013-04-16 14:47:15 -04:00
|
|
|
static CURLcode smtp_perform_ehlo(struct connectdata *conn)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2013-02-16 18:37:50 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2009-12-30 17:50:42 -05:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2015-01-20 08:14:26 -05:00
|
|
|
smtpc->sasl.authmechs = SASL_AUTH_NONE; /* No known auth. mechanism yet */
|
|
|
|
smtpc->sasl.authused = SASL_AUTH_NONE; /* Clear the authentication mechanism
|
|
|
|
used for esmtp connections */
|
|
|
|
smtpc->tls_supported = FALSE; /* Clear the TLS capability */
|
|
|
|
smtpc->auth_supported = FALSE; /* Clear the AUTH capability */
|
2010-04-19 05:16:30 -04:00
|
|
|
|
2013-01-06 17:32:05 -05:00
|
|
|
/* Send the EHLO command */
|
2010-04-19 05:16:30 -04:00
|
|
|
result = Curl_pp_sendf(&smtpc->pp, "EHLO %s", smtpc->domain);
|
2010-02-22 07:41:02 -05:00
|
|
|
|
2013-03-03 08:48:22 -05:00
|
|
|
if(!result)
|
|
|
|
state(conn, SMTP_EHLO);
|
2012-02-24 09:36:53 -05:00
|
|
|
|
2013-03-03 08:48:22 -05:00
|
|
|
return result;
|
2010-02-22 07:41:02 -05:00
|
|
|
}
|
|
|
|
|
2013-04-16 14:40:54 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-04-16 14:47:15 -04:00
|
|
|
* smtp_perform_helo()
|
2013-04-16 14:40:54 -04:00
|
|
|
*
|
|
|
|
* Sends the HELO command to initialise communication with the SMTP server.
|
|
|
|
*/
|
2013-04-16 14:47:15 -04:00
|
|
|
static CURLcode smtp_perform_helo(struct connectdata *conn)
|
2010-02-22 07:41:02 -05:00
|
|
|
{
|
2013-02-16 18:37:50 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2010-02-22 07:41:02 -05:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
|
|
|
|
2015-01-20 08:14:26 -05:00
|
|
|
smtpc->sasl.authused = SASL_AUTH_NONE; /* No authentication mechanism used
|
|
|
|
in smtp connections */
|
2011-10-01 09:46:14 -04:00
|
|
|
|
2013-01-06 17:32:05 -05:00
|
|
|
/* Send the HELO command */
|
2010-04-19 05:16:30 -04:00
|
|
|
result = Curl_pp_sendf(&smtpc->pp, "HELO %s", smtpc->domain);
|
2010-02-22 07:41:02 -05:00
|
|
|
|
2013-03-03 08:48:22 -05:00
|
|
|
if(!result)
|
|
|
|
state(conn, SMTP_HELO);
|
2012-02-24 09:36:53 -05:00
|
|
|
|
2013-03-03 08:48:22 -05:00
|
|
|
return result;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
|
2013-04-16 14:40:54 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-04-16 14:47:15 -04:00
|
|
|
* smtp_perform_starttls()
|
2013-04-16 14:40:54 -04:00
|
|
|
*
|
|
|
|
* Sends the STLS command to start the upgrade to TLS.
|
|
|
|
*/
|
2013-04-16 14:47:15 -04:00
|
|
|
static CURLcode smtp_perform_starttls(struct connectdata *conn)
|
2013-02-06 15:02:36 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
/* Send the STARTTLS command */
|
2013-07-24 11:05:02 -04:00
|
|
|
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", "STARTTLS");
|
2013-02-06 15:02:36 -05:00
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, SMTP_STARTTLS);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-04-16 14:40:54 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-04-16 14:47:15 -04:00
|
|
|
* smtp_perform_upgrade_tls()
|
2013-04-16 14:40:54 -04:00
|
|
|
*
|
|
|
|
* Performs the upgrade to TLS.
|
|
|
|
*/
|
2013-04-16 14:47:15 -04:00
|
|
|
static CURLcode smtp_perform_upgrade_tls(struct connectdata *conn)
|
2013-02-11 18:13:50 -05:00
|
|
|
{
|
2013-02-16 18:37:50 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2013-02-11 18:13:50 -05:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
|
|
|
|
2013-02-13 15:12:21 -05:00
|
|
|
/* Start the SSL connection */
|
2013-02-11 18:13:50 -05:00
|
|
|
result = Curl_ssl_connect_nonblocking(conn, FIRSTSOCKET, &smtpc->ssldone);
|
|
|
|
|
|
|
|
if(!result) {
|
|
|
|
if(smtpc->state != SMTP_UPGRADETLS)
|
|
|
|
state(conn, SMTP_UPGRADETLS);
|
|
|
|
|
|
|
|
if(smtpc->ssldone) {
|
|
|
|
smtp_to_smtps(conn);
|
2013-04-16 14:47:15 -04:00
|
|
|
result = smtp_perform_ehlo(conn);
|
2013-02-11 18:13:50 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-12-18 02:10:22 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_perform_auth()
|
|
|
|
*
|
|
|
|
* Sends an AUTH command allowing the client to login with the given SASL
|
|
|
|
* authentication mechanism.
|
|
|
|
*/
|
|
|
|
static CURLcode smtp_perform_auth(struct connectdata *conn,
|
|
|
|
const char *mech,
|
2015-01-20 11:33:05 -05:00
|
|
|
const char *initresp)
|
2013-12-18 02:10:22 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
|
|
|
|
2015-01-20 11:33:05 -05:00
|
|
|
if(initresp) { /* AUTH <mech> ...<crlf> */
|
2013-12-18 02:10:22 -05:00
|
|
|
/* Send the AUTH command with the initial response */
|
|
|
|
result = Curl_pp_sendf(&smtpc->pp, "AUTH %s %s", mech, initresp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Send the AUTH command */
|
|
|
|
result = Curl_pp_sendf(&smtpc->pp, "AUTH %s", mech);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-01-20 11:33:05 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_continue_auth()
|
|
|
|
*
|
|
|
|
* Sends SASL continuation data or cancellation.
|
|
|
|
*/
|
|
|
|
static CURLcode smtp_continue_auth(struct connectdata *conn, const char *resp)
|
|
|
|
{
|
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
|
|
|
|
|
|
|
return Curl_pp_sendf(&smtpc->pp, "%s", resp);
|
|
|
|
}
|
|
|
|
|
2013-04-16 14:40:54 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-12-17 17:48:09 -05:00
|
|
|
* smtp_perform_authentication()
|
2013-04-16 14:40:54 -04:00
|
|
|
*
|
2013-12-17 17:48:09 -05:00
|
|
|
* Initiates the authentication sequence, with the appropriate SASL
|
|
|
|
* authentication mechanism.
|
2013-04-16 14:40:54 -04:00
|
|
|
*/
|
2013-12-17 17:48:09 -05:00
|
|
|
static CURLcode smtp_perform_authentication(struct connectdata *conn)
|
2010-04-19 05:16:30 -04:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2014-03-28 14:21:27 -04:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
2015-01-20 11:33:05 -05:00
|
|
|
saslprogress progress;
|
2011-10-01 07:35:36 -04:00
|
|
|
|
2015-01-27 11:24:55 -05:00
|
|
|
/* Check we have enough data to authenticate with, and the
|
2014-03-28 14:21:27 -04:00
|
|
|
server supports authentiation, and end the connect phase if not */
|
2015-01-27 11:24:55 -05:00
|
|
|
if(!smtpc->auth_supported ||
|
2016-05-23 06:59:58 -04:00
|
|
|
!Curl_sasl_can_authenticate(&smtpc->sasl, conn)) {
|
2011-10-01 07:35:36 -04:00
|
|
|
state(conn, SMTP_STOP);
|
|
|
|
return result;
|
|
|
|
}
|
2010-05-31 11:25:55 -04:00
|
|
|
|
2013-12-18 07:39:13 -05:00
|
|
|
/* Calculate the SASL login details */
|
2015-01-20 11:33:05 -05:00
|
|
|
result = Curl_sasl_start(&smtpc->sasl, conn, FALSE, &progress);
|
2010-04-19 05:16:30 -04:00
|
|
|
|
2011-10-01 07:35:36 -04:00
|
|
|
if(!result) {
|
2015-01-20 11:33:05 -05:00
|
|
|
if(progress == SASL_INPROGRESS)
|
|
|
|
state(conn, SMTP_AUTH);
|
2011-10-01 07:35:36 -04:00
|
|
|
else {
|
2013-04-28 07:57:42 -04:00
|
|
|
/* Other mechanisms not supported */
|
|
|
|
infof(conn->data, "No known authentication mechanisms supported!\n");
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
2010-04-19 05:16:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-11-15 11:10:05 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_perform_command()
|
|
|
|
*
|
|
|
|
* Sends a SMTP based command.
|
|
|
|
*/
|
|
|
|
static CURLcode smtp_perform_command(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-11-15 11:10:05 -05:00
|
|
|
struct SMTP *smtp = data->req.protop;
|
|
|
|
|
2013-11-17 11:39:02 -05:00
|
|
|
/* Send the command */
|
|
|
|
if(smtp->rcpt)
|
|
|
|
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s %s",
|
2016-05-23 06:59:58 -04:00
|
|
|
smtp->custom && smtp->custom[0] != '\0' ?
|
|
|
|
smtp->custom : "VRFY",
|
|
|
|
smtp->rcpt->data);
|
2013-11-15 13:20:12 -05:00
|
|
|
else
|
2013-11-17 11:39:02 -05:00
|
|
|
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s",
|
|
|
|
smtp->custom && smtp->custom[0] != '\0' ?
|
|
|
|
smtp->custom : "HELP");
|
2013-11-15 13:20:12 -05:00
|
|
|
|
2013-11-15 11:10:05 -05:00
|
|
|
if(!result)
|
|
|
|
state(conn, SMTP_COMMAND);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-04-16 14:40:54 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-04-16 14:47:15 -04:00
|
|
|
* smtp_perform_mail()
|
2013-04-16 14:40:54 -04:00
|
|
|
*
|
|
|
|
* Sends an MAIL command to initiate the upload of a message.
|
|
|
|
*/
|
2013-04-16 14:47:15 -04:00
|
|
|
static CURLcode smtp_perform_mail(struct connectdata *conn)
|
2013-04-16 14:30:43 -04:00
|
|
|
{
|
|
|
|
char *from = NULL;
|
|
|
|
char *auth = NULL;
|
|
|
|
char *size = NULL;
|
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-04-16 14:30:43 -04:00
|
|
|
|
|
|
|
/* Calculate the FROM parameter */
|
|
|
|
if(!data->set.str[STRING_MAIL_FROM])
|
2013-05-04 04:58:32 -04:00
|
|
|
/* Null reverse-path, RFC-5321, sect. 3.6.3 */
|
2013-04-16 14:30:43 -04:00
|
|
|
from = strdup("<>");
|
|
|
|
else if(data->set.str[STRING_MAIL_FROM][0] == '<')
|
|
|
|
from = aprintf("%s", data->set.str[STRING_MAIL_FROM]);
|
|
|
|
else
|
|
|
|
from = aprintf("<%s>", data->set.str[STRING_MAIL_FROM]);
|
|
|
|
|
|
|
|
if(!from)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
/* Calculate the optional AUTH parameter */
|
2015-01-20 08:14:26 -05:00
|
|
|
if(data->set.str[STRING_MAIL_AUTH] && conn->proto.smtpc.sasl.authused) {
|
2013-04-16 14:30:43 -04:00
|
|
|
if(data->set.str[STRING_MAIL_AUTH][0] != '\0')
|
|
|
|
auth = aprintf("%s", data->set.str[STRING_MAIL_AUTH]);
|
|
|
|
else
|
|
|
|
/* Empty AUTH, RFC-2554, sect. 5 */
|
|
|
|
auth = strdup("<>");
|
|
|
|
|
|
|
|
if(!auth) {
|
2015-03-16 10:01:15 -04:00
|
|
|
free(from);
|
2013-04-16 14:30:43 -04:00
|
|
|
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-29 17:25:12 -04:00
|
|
|
/* Calculate the optional SIZE parameter */
|
2014-04-15 07:49:18 -04:00
|
|
|
if(conn->proto.smtpc.size_supported && conn->data->state.infilesize > 0) {
|
|
|
|
size = aprintf("%" CURL_FORMAT_CURL_OFF_T, data->state.infilesize);
|
2013-04-16 14:30:43 -04:00
|
|
|
|
|
|
|
if(!size) {
|
2015-03-16 10:01:15 -04:00
|
|
|
free(from);
|
|
|
|
free(auth);
|
2013-04-16 14:30:43 -04:00
|
|
|
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Send the MAIL command */
|
|
|
|
if(!auth && !size)
|
|
|
|
result = Curl_pp_sendf(&conn->proto.smtpc.pp,
|
|
|
|
"MAIL FROM:%s", from);
|
|
|
|
else if(auth && !size)
|
|
|
|
result = Curl_pp_sendf(&conn->proto.smtpc.pp,
|
|
|
|
"MAIL FROM:%s AUTH=%s", from, auth);
|
|
|
|
else if(auth && size)
|
|
|
|
result = Curl_pp_sendf(&conn->proto.smtpc.pp,
|
|
|
|
"MAIL FROM:%s AUTH=%s SIZE=%s", from, auth, size);
|
|
|
|
else
|
|
|
|
result = Curl_pp_sendf(&conn->proto.smtpc.pp,
|
|
|
|
"MAIL FROM:%s SIZE=%s", from, size);
|
|
|
|
|
2015-03-16 10:01:15 -04:00
|
|
|
free(from);
|
|
|
|
free(auth);
|
|
|
|
free(size);
|
2013-04-16 14:30:43 -04:00
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, SMTP_MAIL);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-04-16 14:40:54 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-04-16 14:47:15 -04:00
|
|
|
* smtp_perform_rcpt_to()
|
2013-04-16 14:40:54 -04:00
|
|
|
*
|
|
|
|
* Sends a RCPT TO command for a given recipient as part of the message upload
|
|
|
|
* process.
|
|
|
|
*/
|
2013-04-16 14:47:15 -04:00
|
|
|
static CURLcode smtp_perform_rcpt_to(struct connectdata *conn)
|
2013-04-16 14:32:55 -04:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct SMTP *smtp = data->req.protop;
|
2013-04-16 14:32:55 -04:00
|
|
|
|
|
|
|
/* Send the RCPT TO command */
|
2013-11-15 13:30:04 -05:00
|
|
|
if(smtp->rcpt->data[0] == '<')
|
|
|
|
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "RCPT TO:%s",
|
2016-05-23 06:59:58 -04:00
|
|
|
smtp->rcpt->data);
|
2013-11-15 13:30:04 -05:00
|
|
|
else
|
|
|
|
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "RCPT TO:<%s>",
|
2016-05-23 06:59:58 -04:00
|
|
|
smtp->rcpt->data);
|
2013-11-15 13:30:04 -05:00
|
|
|
if(!result)
|
|
|
|
state(conn, SMTP_RCPT);
|
2013-04-16 14:32:55 -04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-04-16 14:35:09 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-04-16 14:47:15 -04:00
|
|
|
* smtp_perform_quit()
|
2013-04-16 14:35:09 -04:00
|
|
|
*
|
|
|
|
* Performs the quit action prior to sclose() being called.
|
|
|
|
*/
|
2013-04-16 14:47:15 -04:00
|
|
|
static CURLcode smtp_perform_quit(struct connectdata *conn)
|
2013-04-16 14:35:09 -04:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
/* Send the QUIT command */
|
2013-07-24 11:05:02 -04:00
|
|
|
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", "QUIT");
|
2013-04-16 14:35:09 -04:00
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, SMTP_QUIT);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-06-05 07:23:01 -04:00
|
|
|
/* For the initial server greeting */
|
2012-03-24 07:55:34 -04:00
|
|
|
static CURLcode smtp_state_servergreet_resp(struct connectdata *conn,
|
|
|
|
int smtpcode,
|
|
|
|
smtpstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2012-03-24 07:55:34 -04:00
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(smtpcode/100 != 2) {
|
|
|
|
failf(data, "Got unexpected smtp-server response: %d", smtpcode);
|
2016-08-22 15:37:03 -04:00
|
|
|
result = CURLE_WEIRD_SERVER_REPLY;
|
2012-03-24 07:55:34 -04:00
|
|
|
}
|
2013-04-15 15:11:25 -04:00
|
|
|
else
|
2013-04-16 14:47:15 -04:00
|
|
|
result = smtp_perform_ehlo(conn);
|
2012-03-24 07:55:34 -04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-06-05 07:23:01 -04:00
|
|
|
/* For STARTTLS responses */
|
2009-12-12 16:54:01 -05:00
|
|
|
static CURLcode smtp_state_starttls_resp(struct connectdata *conn,
|
|
|
|
int smtpcode,
|
|
|
|
smtpstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2012-03-24 07:55:34 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
2010-02-22 07:41:02 -05:00
|
|
|
if(smtpcode != 220) {
|
2011-11-03 04:54:12 -04:00
|
|
|
if(data->set.use_ssl != CURLUSESSL_TRY) {
|
2010-02-22 07:41:02 -05:00
|
|
|
failf(data, "STARTTLS denied. %c", smtpcode);
|
2012-01-03 18:01:51 -05:00
|
|
|
result = CURLE_USE_SSL_FAILED;
|
2010-02-22 07:41:02 -05:00
|
|
|
}
|
2010-04-19 05:16:30 -04:00
|
|
|
else
|
2013-12-17 17:48:09 -05:00
|
|
|
result = smtp_perform_authentication(conn);
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
2013-01-24 15:27:43 -05:00
|
|
|
else
|
2013-04-16 14:47:15 -04:00
|
|
|
result = smtp_perform_upgrade_tls(conn);
|
2011-10-01 07:35:36 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-06-05 07:23:01 -04:00
|
|
|
/* For EHLO responses */
|
2013-01-19 04:49:17 -05:00
|
|
|
static CURLcode smtp_state_ehlo_resp(struct connectdata *conn, int smtpcode,
|
2009-12-12 16:54:01 -05:00
|
|
|
smtpstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-02-10 14:59:42 -05:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
2013-11-15 05:46:29 -05:00
|
|
|
const char *line = data->state.buffer;
|
|
|
|
size_t len = strlen(line);
|
|
|
|
size_t wordlen;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
2013-11-15 05:46:29 -05:00
|
|
|
if(smtpcode/100 != 2 && smtpcode != 1) {
|
2014-03-31 17:59:46 -04:00
|
|
|
if(data->set.use_ssl <= CURLUSESSL_TRY || conn->ssl[FIRSTSOCKET].use)
|
2013-04-16 14:47:15 -04:00
|
|
|
result = smtp_perform_helo(conn);
|
2010-02-22 07:41:02 -05:00
|
|
|
else {
|
2012-02-24 09:36:53 -05:00
|
|
|
failf(data, "Remote access denied: %d", smtpcode);
|
|
|
|
result = CURLE_REMOTE_ACCESS_DENIED;
|
2010-02-22 07:41:02 -05:00
|
|
|
}
|
2010-04-19 05:16:30 -04:00
|
|
|
}
|
2013-11-15 05:46:29 -05:00
|
|
|
else {
|
|
|
|
line += 4;
|
|
|
|
len -= 4;
|
|
|
|
|
|
|
|
/* Does the server support the STARTTLS capability? */
|
|
|
|
if(len >= 8 && !memcmp(line, "STARTTLS", 8))
|
|
|
|
smtpc->tls_supported = TRUE;
|
|
|
|
|
|
|
|
/* Does the server support the SIZE capability? */
|
|
|
|
else if(len >= 4 && !memcmp(line, "SIZE", 4))
|
|
|
|
smtpc->size_supported = TRUE;
|
|
|
|
|
2014-03-28 14:21:27 -04:00
|
|
|
/* Does the server support authentication? */
|
2013-11-15 05:46:29 -05:00
|
|
|
else if(len >= 5 && !memcmp(line, "AUTH ", 5)) {
|
2014-03-28 14:21:27 -04:00
|
|
|
smtpc->auth_supported = TRUE;
|
|
|
|
|
|
|
|
/* Advance past the AUTH keyword */
|
2013-11-15 05:46:29 -05:00
|
|
|
line += 5;
|
|
|
|
len -= 5;
|
|
|
|
|
|
|
|
/* Loop through the data line */
|
|
|
|
for(;;) {
|
2015-01-20 09:27:25 -05:00
|
|
|
size_t llen;
|
|
|
|
unsigned int mechbit;
|
|
|
|
|
2013-11-15 05:46:29 -05:00
|
|
|
while(len &&
|
|
|
|
(*line == ' ' || *line == '\t' ||
|
|
|
|
*line == '\r' || *line == '\n')) {
|
|
|
|
|
|
|
|
line++;
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!len)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Extract the word */
|
|
|
|
for(wordlen = 0; wordlen < len && line[wordlen] != ' ' &&
|
|
|
|
line[wordlen] != '\t' && line[wordlen] != '\r' &&
|
|
|
|
line[wordlen] != '\n';)
|
|
|
|
wordlen++;
|
|
|
|
|
|
|
|
/* Test the word for a matching authentication mechanism */
|
2016-03-19 13:15:53 -04:00
|
|
|
mechbit = Curl_sasl_decode_mech(line, wordlen, &llen);
|
|
|
|
if(mechbit && llen == wordlen)
|
2015-01-20 09:27:25 -05:00
|
|
|
smtpc->sasl.authmechs |= mechbit;
|
2013-11-15 05:46:29 -05:00
|
|
|
|
|
|
|
line += wordlen;
|
|
|
|
len -= wordlen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(smtpcode != 1) {
|
|
|
|
if(data->set.use_ssl && !conn->ssl[FIRSTSOCKET].use) {
|
|
|
|
/* We don't have a SSL/TLS connection yet, but SSL is requested */
|
|
|
|
if(smtpc->tls_supported)
|
|
|
|
/* Switch to TLS connection now */
|
|
|
|
result = smtp_perform_starttls(conn);
|
|
|
|
else if(data->set.use_ssl == CURLUSESSL_TRY)
|
|
|
|
/* Fallback and carry on with authentication */
|
2013-12-17 17:48:09 -05:00
|
|
|
result = smtp_perform_authentication(conn);
|
2013-11-15 05:46:29 -05:00
|
|
|
else {
|
|
|
|
failf(data, "STARTTLS not supported.");
|
|
|
|
result = CURLE_USE_SSL_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2013-12-17 17:48:09 -05:00
|
|
|
result = smtp_perform_authentication(conn);
|
2013-02-10 14:59:42 -05:00
|
|
|
}
|
2010-02-22 07:41:02 -05:00
|
|
|
}
|
2010-04-19 05:16:30 -04:00
|
|
|
|
2010-02-22 07:41:02 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-06-05 07:23:01 -04:00
|
|
|
/* For HELO responses */
|
2013-01-19 04:49:17 -05:00
|
|
|
static CURLcode smtp_state_helo_resp(struct connectdata *conn, int smtpcode,
|
2010-02-22 07:41:02 -05:00
|
|
|
smtpstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2010-02-22 07:41:02 -05:00
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
if(smtpcode/100 != 2) {
|
2012-02-24 09:36:53 -05:00
|
|
|
failf(data, "Remote access denied: %d", smtpcode);
|
|
|
|
result = CURLE_REMOTE_ACCESS_DENIED;
|
2010-04-19 05:16:30 -04:00
|
|
|
}
|
2012-06-05 07:23:01 -04:00
|
|
|
else
|
|
|
|
/* End of connect phase */
|
2010-02-22 07:41:02 -05:00
|
|
|
state(conn, SMTP_STOP);
|
2011-10-01 07:35:36 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-01-20 11:33:05 -05:00
|
|
|
/* For SASL authentication responses */
|
|
|
|
static CURLcode smtp_state_auth_resp(struct connectdata *conn,
|
|
|
|
int smtpcode,
|
|
|
|
smtpstate instate)
|
2013-10-27 05:10:38 -04:00
|
|
|
{
|
2013-12-18 15:44:20 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-12-18 15:44:20 -05:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
2015-01-20 11:33:05 -05:00
|
|
|
saslprogress progress;
|
2013-10-27 05:10:38 -04:00
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
2015-01-20 11:33:05 -05:00
|
|
|
result = Curl_sasl_continue(&smtpc->sasl, conn, smtpcode, &progress);
|
|
|
|
if(!result)
|
|
|
|
switch(progress) {
|
|
|
|
case SASL_DONE:
|
|
|
|
state(conn, SMTP_STOP); /* Authenticated */
|
|
|
|
break;
|
|
|
|
case SASL_IDLE: /* No mechanism left after cancellation */
|
2013-12-18 15:44:20 -05:00
|
|
|
failf(data, "Authentication cancelled");
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
2015-01-20 11:33:05 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2013-12-18 15:44:20 -05:00
|
|
|
}
|
2010-04-19 05:16:30 -04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-11-15 11:10:05 -05:00
|
|
|
/* For command responses */
|
|
|
|
static CURLcode smtp_state_command_resp(struct connectdata *conn, int smtpcode,
|
|
|
|
smtpstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-11-15 11:10:05 -05:00
|
|
|
struct SMTP *smtp = data->req.protop;
|
2013-11-15 13:20:12 -05:00
|
|
|
char *line = data->state.buffer;
|
|
|
|
size_t len = strlen(line);
|
2013-11-15 11:10:05 -05:00
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
2013-11-15 13:20:12 -05:00
|
|
|
if((smtp->rcpt && smtpcode/100 != 2 && smtpcode != 553 && smtpcode != 1) ||
|
|
|
|
(!smtp->rcpt && smtpcode/100 != 2 && smtpcode != 1)) {
|
|
|
|
failf(data, "Command failed: %d", smtpcode);
|
2013-11-15 11:10:05 -05:00
|
|
|
result = CURLE_RECV_ERROR;
|
|
|
|
}
|
2013-11-15 13:20:12 -05:00
|
|
|
else {
|
|
|
|
/* Temporarily add the LF character back and send as body to the client */
|
|
|
|
if(!data->set.opt_no_body) {
|
|
|
|
line[len] = '\n';
|
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY, line, len + 1);
|
|
|
|
line[len] = '\0';
|
|
|
|
}
|
2013-11-15 11:10:05 -05:00
|
|
|
|
2013-11-15 13:20:12 -05:00
|
|
|
if(smtpcode != 1) {
|
|
|
|
if(smtp->rcpt) {
|
|
|
|
smtp->rcpt = smtp->rcpt->next;
|
|
|
|
|
|
|
|
if(smtp->rcpt) {
|
|
|
|
/* Send the next command */
|
|
|
|
result = smtp_perform_command(conn);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* End of DO phase */
|
|
|
|
state(conn, SMTP_STOP);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* End of DO phase */
|
|
|
|
state(conn, SMTP_STOP);
|
|
|
|
}
|
|
|
|
}
|
2013-11-15 11:10:05 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-06-05 07:23:01 -04:00
|
|
|
/* For MAIL responses */
|
2013-01-19 04:49:17 -05:00
|
|
|
static CURLcode smtp_state_mail_resp(struct connectdata *conn, int smtpcode,
|
2009-12-12 16:54:01 -05:00
|
|
|
smtpstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2012-04-01 16:09:38 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(smtpcode/100 != 2) {
|
2012-06-24 17:40:17 -04:00
|
|
|
failf(data, "MAIL failed: %d", smtpcode);
|
|
|
|
result = CURLE_SEND_ERROR;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
2013-11-15 13:30:04 -05:00
|
|
|
else
|
|
|
|
/* Start the RCPT TO command */
|
2013-04-16 14:47:15 -04:00
|
|
|
result = smtp_perform_rcpt_to(conn);
|
2010-02-20 17:29:59 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-06-05 07:23:01 -04:00
|
|
|
/* For RCPT responses */
|
2013-01-19 04:49:17 -05:00
|
|
|
static CURLcode smtp_state_rcpt_resp(struct connectdata *conn, int smtpcode,
|
2009-12-12 16:54:01 -05:00
|
|
|
smtpstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct SMTP *smtp = data->req.protop;
|
2012-04-01 16:09:38 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(smtpcode/100 != 2) {
|
2012-06-24 17:40:17 -04:00
|
|
|
failf(data, "RCPT failed: %d", smtpcode);
|
|
|
|
result = CURLE_SEND_ERROR;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
else {
|
2013-11-15 13:30:04 -05:00
|
|
|
smtp->rcpt = smtp->rcpt->next;
|
2010-02-12 17:23:46 -05:00
|
|
|
|
2013-11-15 13:30:04 -05:00
|
|
|
if(smtp->rcpt)
|
|
|
|
/* Send the next RCPT TO command */
|
|
|
|
result = smtp_perform_rcpt_to(conn);
|
2013-11-15 17:20:56 -05:00
|
|
|
else {
|
2013-11-15 13:30:04 -05:00
|
|
|
/* Send the DATA command */
|
|
|
|
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", "DATA");
|
2012-02-20 07:18:22 -05:00
|
|
|
|
2013-11-15 17:20:56 -05:00
|
|
|
if(!result)
|
|
|
|
state(conn, SMTP_DATA);
|
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
2011-10-01 07:35:36 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-06-05 07:23:01 -04:00
|
|
|
/* For DATA response */
|
2013-01-19 04:49:17 -05:00
|
|
|
static CURLcode smtp_state_data_resp(struct connectdata *conn, int smtpcode,
|
2009-12-12 16:54:01 -05:00
|
|
|
smtpstate instate)
|
|
|
|
{
|
2013-11-23 04:35:35 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-04-29 17:25:12 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
2009-12-25 17:50:11 -05:00
|
|
|
if(smtpcode != 354) {
|
2013-11-23 04:35:35 -05:00
|
|
|
failf(data, "DATA failed: %d", smtpcode);
|
|
|
|
result = CURLE_SEND_ERROR;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
2013-11-23 04:35:35 -05:00
|
|
|
else {
|
|
|
|
/* Set the progress upload size */
|
2014-04-15 07:49:18 -04:00
|
|
|
Curl_pgrsSetUploadSize(data, data->state.infilesize);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-11-23 04:35:35 -05:00
|
|
|
/* SMTP upload */
|
|
|
|
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, FIRSTSOCKET, NULL);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-11-23 04:35:35 -05:00
|
|
|
/* End of DO phase */
|
|
|
|
state(conn, SMTP_STOP);
|
|
|
|
}
|
2012-03-24 07:55:34 -04:00
|
|
|
|
2013-11-23 04:35:35 -05:00
|
|
|
return result;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
|
2012-06-05 07:23:01 -04:00
|
|
|
/* For POSTDATA responses, which are received after the entire DATA
|
|
|
|
part has been sent to the server */
|
2010-02-20 16:56:48 -05:00
|
|
|
static CURLcode smtp_state_postdata_resp(struct connectdata *conn,
|
2012-03-24 07:55:34 -04:00
|
|
|
int smtpcode,
|
|
|
|
smtpstate instate)
|
2010-02-20 16:56:48 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(smtpcode != 250)
|
|
|
|
result = CURLE_RECV_ERROR;
|
|
|
|
|
2013-02-28 17:26:46 -05:00
|
|
|
/* End of DONE phase */
|
2010-02-20 16:56:48 -05:00
|
|
|
state(conn, SMTP_STOP);
|
2011-10-01 07:35:36 -04:00
|
|
|
|
2010-02-20 16:56:48 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
static CURLcode smtp_statemach_act(struct connectdata *conn)
|
|
|
|
{
|
2013-02-16 18:37:50 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2009-12-12 16:54:01 -05:00
|
|
|
curl_socket_t sock = conn->sock[FIRSTSOCKET];
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2009-12-12 16:54:01 -05:00
|
|
|
int smtpcode;
|
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
|
|
|
struct pingpong *pp = &smtpc->pp;
|
|
|
|
size_t nread = 0;
|
|
|
|
|
2012-12-28 15:22:33 -05:00
|
|
|
/* Busy upgrading the connection; right now all I/O is SSL/TLS, not SMTP */
|
2011-02-16 16:28:01 -05:00
|
|
|
if(smtpc->state == SMTP_UPGRADETLS)
|
2013-04-16 14:47:15 -04:00
|
|
|
return smtp_perform_upgrade_tls(conn);
|
2011-02-16 16:28:01 -05:00
|
|
|
|
2012-06-05 07:23:01 -04:00
|
|
|
/* Flush any data that needs to be sent */
|
2009-12-12 16:54:01 -05:00
|
|
|
if(pp->sendleft)
|
|
|
|
return Curl_pp_flushsend(pp);
|
|
|
|
|
2013-11-15 05:54:47 -05:00
|
|
|
do {
|
|
|
|
/* Read the response from the server */
|
|
|
|
result = Curl_pp_readresp(sock, pp, &smtpcode, &nread);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
/* Store the latest response for later retrieval if necessary */
|
|
|
|
if(smtpc->state != SMTP_QUIT && smtpcode != 1)
|
|
|
|
data->info.httpcode = smtpcode;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-11-15 05:54:47 -05:00
|
|
|
if(!smtpcode)
|
|
|
|
break;
|
2012-02-22 05:44:34 -05:00
|
|
|
|
2012-12-28 15:22:33 -05:00
|
|
|
/* We have now received a full SMTP server response */
|
2009-12-12 16:54:01 -05:00
|
|
|
switch(smtpc->state) {
|
|
|
|
case SMTP_SERVERGREET:
|
2012-03-24 07:55:34 -04:00
|
|
|
result = smtp_state_servergreet_resp(conn, smtpcode, smtpc->state);
|
2009-12-12 16:54:01 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SMTP_EHLO:
|
|
|
|
result = smtp_state_ehlo_resp(conn, smtpcode, smtpc->state);
|
|
|
|
break;
|
|
|
|
|
2010-02-22 07:41:02 -05:00
|
|
|
case SMTP_HELO:
|
|
|
|
result = smtp_state_helo_resp(conn, smtpcode, smtpc->state);
|
|
|
|
break;
|
|
|
|
|
2010-04-19 05:16:30 -04:00
|
|
|
case SMTP_STARTTLS:
|
|
|
|
result = smtp_state_starttls_resp(conn, smtpcode, smtpc->state);
|
|
|
|
break;
|
|
|
|
|
2015-01-20 11:33:05 -05:00
|
|
|
case SMTP_AUTH:
|
|
|
|
result = smtp_state_auth_resp(conn, smtpcode, smtpc->state);
|
2010-04-19 05:16:30 -04:00
|
|
|
break;
|
|
|
|
|
2013-11-15 11:10:05 -05:00
|
|
|
case SMTP_COMMAND:
|
|
|
|
result = smtp_state_command_resp(conn, smtpcode, smtpc->state);
|
|
|
|
break;
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
case SMTP_MAIL:
|
|
|
|
result = smtp_state_mail_resp(conn, smtpcode, smtpc->state);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SMTP_RCPT:
|
|
|
|
result = smtp_state_rcpt_resp(conn, smtpcode, smtpc->state);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SMTP_DATA:
|
|
|
|
result = smtp_state_data_resp(conn, smtpcode, smtpc->state);
|
|
|
|
break;
|
|
|
|
|
2010-02-20 16:56:48 -05:00
|
|
|
case SMTP_POSTDATA:
|
|
|
|
result = smtp_state_postdata_resp(conn, smtpcode, smtpc->state);
|
|
|
|
break;
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
case SMTP_QUIT:
|
|
|
|
/* fallthrough, just stop! */
|
|
|
|
default:
|
|
|
|
/* internal error */
|
|
|
|
state(conn, SMTP_STOP);
|
|
|
|
break;
|
|
|
|
}
|
2013-11-15 05:54:47 -05:00
|
|
|
} while(!result && smtpc->state != SMTP_STOP && Curl_pp_moredata(pp));
|
2011-10-01 07:35:36 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
/* Called repeatedly until done from multi.c */
|
2012-04-01 16:09:38 -04:00
|
|
|
static CURLcode smtp_multi_statemach(struct connectdata *conn, bool *done)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2013-02-16 18:37:50 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2009-12-12 16:54:01 -05:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
2011-02-16 16:13:10 -05:00
|
|
|
|
2013-09-10 14:40:11 -04:00
|
|
|
if((conn->handler->flags & PROTOPT_SSL) && !smtpc->ssldone) {
|
2011-02-16 16:13:10 -05:00
|
|
|
result = Curl_ssl_connect_nonblocking(conn, FIRSTSOCKET, &smtpc->ssldone);
|
2013-09-10 14:40:11 -04:00
|
|
|
if(result || !smtpc->ssldone)
|
|
|
|
return result;
|
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-09-10 14:40:11 -04:00
|
|
|
result = Curl_pp_statemach(&smtpc->pp, FALSE);
|
2011-09-05 14:46:09 -04:00
|
|
|
*done = (smtpc->state == SMTP_STOP) ? TRUE : FALSE;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-02-15 05:03:42 -05:00
|
|
|
static CURLcode smtp_block_statemach(struct connectdata *conn)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2013-02-16 18:37:50 -05:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-03-07 17:44:10 -05:00
|
|
|
while(smtpc->state != SMTP_STOP && !result)
|
2013-02-16 18:37:50 -05:00
|
|
|
result = Curl_pp_statemach(&smtpc->pp, TRUE);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
/* Allocate and initialize the SMTP struct for the current Curl_easy if
|
2012-12-28 15:22:33 -05:00
|
|
|
required */
|
2009-12-12 16:54:01 -05:00
|
|
|
static CURLcode smtp_init(struct connectdata *conn)
|
|
|
|
{
|
2013-03-09 17:25:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-08-04 13:34:16 -04:00
|
|
|
struct SMTP *smtp;
|
2012-06-05 09:34:17 -04:00
|
|
|
|
2013-08-05 04:32:08 -04:00
|
|
|
smtp = data->req.protop = calloc(sizeof(struct SMTP), 1);
|
2013-08-04 13:34:16 -04:00
|
|
|
if(!smtp)
|
|
|
|
result = CURLE_OUT_OF_MEMORY;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-03-09 17:25:40 -05:00
|
|
|
return result;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
|
2013-02-11 18:13:50 -05:00
|
|
|
/* For the SMTP "protocol connect" and "doing" phases only */
|
|
|
|
static int smtp_getsock(struct connectdata *conn, curl_socket_t *socks,
|
|
|
|
int numsocks)
|
|
|
|
{
|
|
|
|
return Curl_pp_getsock(&conn->proto.smtpc.pp, socks, numsocks);
|
|
|
|
}
|
|
|
|
|
2012-06-05 07:23:01 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_connect()
|
|
|
|
*
|
|
|
|
* This function should do everything that is to be considered a part of
|
2009-12-12 16:54:01 -05:00
|
|
|
* the connection phase.
|
|
|
|
*
|
2011-08-24 02:55:25 -04:00
|
|
|
* The variable pointed to by 'done' will be TRUE if the protocol-layer
|
2013-08-09 17:39:09 -04:00
|
|
|
* connect phase is done when this function returns, or FALSE if not.
|
2009-12-12 16:54:01 -05:00
|
|
|
*/
|
2012-04-01 16:09:38 -04:00
|
|
|
static CURLcode smtp_connect(struct connectdata *conn, bool *done)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2013-02-16 18:37:50 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2009-12-12 16:54:01 -05:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
2011-08-24 02:55:25 -04:00
|
|
|
struct pingpong *pp = &smtpc->pp;
|
2010-02-22 07:41:02 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
*done = FALSE; /* default to not done yet */
|
|
|
|
|
2013-02-13 15:12:21 -05:00
|
|
|
/* We always support persistent connections in SMTP */
|
2014-05-20 04:32:23 -04:00
|
|
|
connkeep(conn, "SMTP default");
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-02-13 15:12:21 -05:00
|
|
|
/* Set the default response time-out */
|
|
|
|
pp->response_time = RESP_TIMEOUT;
|
2009-12-12 16:54:01 -05:00
|
|
|
pp->statemach_act = smtp_statemach_act;
|
|
|
|
pp->endofresp = smtp_endofresp;
|
|
|
|
pp->conn = conn;
|
|
|
|
|
2015-01-20 09:27:25 -05:00
|
|
|
/* Initialize the SASL storage */
|
2015-01-20 11:33:05 -05:00
|
|
|
Curl_sasl_init(&smtpc->sasl, &saslsmtp);
|
2013-04-13 11:21:58 -04:00
|
|
|
|
2013-02-13 15:12:21 -05:00
|
|
|
/* Initialise the pingpong layer */
|
2012-04-01 16:09:38 -04:00
|
|
|
Curl_pp_init(pp);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-04-13 11:21:58 -04:00
|
|
|
/* Parse the URL options */
|
|
|
|
result = smtp_parse_url_options(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2013-04-12 18:15:51 -04:00
|
|
|
/* Parse the URL path */
|
|
|
|
result = smtp_parse_url_path(conn);
|
2011-12-23 07:24:16 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
2009-12-30 17:50:42 -05:00
|
|
|
|
2012-12-28 15:22:33 -05:00
|
|
|
/* Start off waiting for the server greeting response */
|
2009-12-12 16:54:01 -05:00
|
|
|
state(conn, SMTP_SERVERGREET);
|
|
|
|
|
2013-01-17 06:59:23 -05:00
|
|
|
result = smtp_multi_statemach(conn, done);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_done()
|
|
|
|
*
|
|
|
|
* The DONE function. This does what needs to be done after a single DO has
|
|
|
|
* performed.
|
|
|
|
*
|
|
|
|
* Input argument is already checked for validity.
|
|
|
|
*/
|
|
|
|
static CURLcode smtp_done(struct connectdata *conn, CURLcode status,
|
|
|
|
bool premature)
|
|
|
|
{
|
2013-02-16 18:37:50 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct SMTP *smtp = data->req.protop;
|
2013-05-04 04:52:09 -04:00
|
|
|
struct pingpong *pp = &conn->proto.smtpc.pp;
|
2014-09-26 14:55:01 -04:00
|
|
|
char *eob;
|
2013-05-04 08:24:05 -04:00
|
|
|
ssize_t len;
|
2009-12-30 16:52:27 -05:00
|
|
|
ssize_t bytes_written;
|
2012-12-28 15:22:33 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
(void)premature;
|
|
|
|
|
2014-07-30 17:18:47 -04:00
|
|
|
if(!smtp || !pp->conn)
|
2009-12-12 16:54:01 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
|
|
|
|
if(status) {
|
2014-05-20 04:32:23 -04:00
|
|
|
connclose(conn, "SMTP done with bad status"); /* marked for closure */
|
2012-02-16 05:43:17 -05:00
|
|
|
result = status; /* use the already set error code */
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
2013-11-15 11:10:05 -05:00
|
|
|
else if(!data->set.connect_only && data->set.upload && data->set.mail_rcpt) {
|
2013-05-04 13:37:50 -04:00
|
|
|
/* Calculate the EOB taking into account any terminating CRLF from the
|
2013-05-04 04:52:09 -04:00
|
|
|
previous line of the email or the CRLF of the DATA command when there
|
2014-09-26 14:55:01 -04:00
|
|
|
is "no mail data". RFC-5321, sect. 4.1.1.4.
|
|
|
|
|
|
|
|
Note: As some SSL backends, such as OpenSSL, will cause Curl_write() to
|
|
|
|
fail when using a different pointer following a previous write, that
|
|
|
|
returned CURLE_AGAIN, we duplicate the EOB now rather than when the
|
|
|
|
bytes written doesn't equal len. */
|
2014-04-15 07:49:18 -04:00
|
|
|
if(smtp->trailing_crlf || !conn->data->state.infilesize) {
|
2014-09-26 14:55:01 -04:00
|
|
|
eob = strdup(SMTP_EOB + 2);
|
|
|
|
len = SMTP_EOB_LEN - 2;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
eob = strdup(SMTP_EOB);
|
|
|
|
len = SMTP_EOB_LEN;
|
2013-05-04 04:52:09 -04:00
|
|
|
}
|
2012-02-14 09:21:21 -05:00
|
|
|
|
2014-09-26 14:55:01 -04:00
|
|
|
if(!eob)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
2012-02-14 09:21:21 -05:00
|
|
|
/* Send the end of block data */
|
2013-05-04 04:52:09 -04:00
|
|
|
result = Curl_write(conn, conn->writesockfd, eob, len, &bytes_written);
|
2014-09-26 14:55:01 -04:00
|
|
|
if(result) {
|
|
|
|
free(eob);
|
2012-02-20 07:18:22 -05:00
|
|
|
return result;
|
2014-09-26 14:55:01 -04:00
|
|
|
}
|
2012-02-20 07:18:22 -05:00
|
|
|
|
2013-05-04 04:52:09 -04:00
|
|
|
if(bytes_written != len) {
|
2012-02-20 07:18:22 -05:00
|
|
|
/* The whole chunk was not sent so keep it around and adjust the
|
|
|
|
pingpong structure accordingly */
|
2014-09-26 14:55:01 -04:00
|
|
|
pp->sendthis = eob;
|
2013-05-04 04:52:09 -04:00
|
|
|
pp->sendsize = len;
|
|
|
|
pp->sendleft = len - bytes_written;
|
2012-02-20 07:18:22 -05:00
|
|
|
}
|
2014-09-26 14:55:01 -04:00
|
|
|
else {
|
2012-02-20 07:18:22 -05:00
|
|
|
/* Successfully sent so adjust the response timeout relative to now */
|
|
|
|
pp->response = Curl_tvnow();
|
2010-03-02 08:26:23 -05:00
|
|
|
|
2014-09-26 14:55:01 -04:00
|
|
|
free(eob);
|
|
|
|
}
|
|
|
|
|
2010-02-20 16:56:48 -05:00
|
|
|
state(conn, SMTP_POSTDATA);
|
2012-02-14 09:21:21 -05:00
|
|
|
|
|
|
|
/* Run the state-machine
|
2010-02-20 16:56:48 -05:00
|
|
|
|
2015-11-24 03:32:42 -05:00
|
|
|
TODO: when the multi interface is used, this _really_ should be using
|
|
|
|
the smtp_multi_statemach function but we have no general support for
|
2016-03-29 18:17:02 -04:00
|
|
|
non-blocking DONE operations!
|
2010-02-20 16:56:48 -05:00
|
|
|
*/
|
2013-02-15 05:03:42 -05:00
|
|
|
result = smtp_block_statemach(conn);
|
2010-02-20 16:56:48 -05:00
|
|
|
}
|
|
|
|
|
2013-11-17 04:00:21 -05:00
|
|
|
/* Cleanup our per-request based variables */
|
|
|
|
Curl_safefree(smtp->custom);
|
|
|
|
|
2013-02-23 06:34:52 -05:00
|
|
|
/* Clear the transfer mode for the next request */
|
2009-12-12 16:54:01 -05:00
|
|
|
smtp->transfer = FTPTRANSFER_BODY;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_perform()
|
|
|
|
*
|
2013-11-15 13:20:12 -05:00
|
|
|
* This is the actual DO function for SMTP. Transfer a mail, send a command
|
|
|
|
* or get some data according to the options previously setup.
|
2009-12-12 16:54:01 -05:00
|
|
|
*/
|
2012-06-05 07:23:01 -04:00
|
|
|
static CURLcode smtp_perform(struct connectdata *conn, bool *connected,
|
|
|
|
bool *dophase_done)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2012-06-05 07:23:01 -04:00
|
|
|
/* This is SMTP and no proxy */
|
2011-08-24 02:55:25 -04:00
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-11-15 13:20:12 -05:00
|
|
|
struct SMTP *smtp = data->req.protop;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
DEBUGF(infof(conn->data, "DO phase starts\n"));
|
|
|
|
|
2013-11-15 11:10:05 -05:00
|
|
|
if(data->set.opt_no_body) {
|
2012-06-05 07:23:01 -04:00
|
|
|
/* Requested no body means no transfer */
|
2009-12-12 16:54:01 -05:00
|
|
|
smtp->transfer = FTPTRANSFER_INFO;
|
|
|
|
}
|
|
|
|
|
|
|
|
*dophase_done = FALSE; /* not done yet */
|
|
|
|
|
2013-11-15 13:30:04 -05:00
|
|
|
/* Store the first recipient (or NULL if not specified) */
|
|
|
|
smtp->rcpt = data->set.mail_rcpt;
|
|
|
|
|
2012-06-05 07:23:01 -04:00
|
|
|
/* Start the first command in the DO phase */
|
2013-11-15 11:10:05 -05:00
|
|
|
if(data->set.upload && data->set.mail_rcpt)
|
|
|
|
/* MAIL transfer */
|
|
|
|
result = smtp_perform_mail(conn);
|
2013-11-15 13:30:04 -05:00
|
|
|
else
|
2013-11-15 13:20:12 -05:00
|
|
|
/* SMTP based command (VRFY, EXPN, NOOP, RSET or HELP) */
|
2013-11-15 11:10:05 -05:00
|
|
|
result = smtp_perform_command(conn);
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2013-11-15 11:10:05 -05:00
|
|
|
/* Run the state-machine */
|
2013-01-17 06:59:23 -05:00
|
|
|
result = smtp_multi_statemach(conn, dophase_done);
|
|
|
|
|
2011-08-19 17:38:45 -04:00
|
|
|
*connected = conn->bits.tcpconnect[FIRSTSOCKET];
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
if(*dophase_done)
|
|
|
|
DEBUGF(infof(conn->data, "DO phase is complete\n"));
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_do()
|
|
|
|
*
|
|
|
|
* This function is registered as 'curl_do' function. It decodes the path
|
|
|
|
* parts etc as a wrapper to the actual DO function (smtp_perform).
|
|
|
|
*
|
|
|
|
* The input argument is already checked for validity.
|
|
|
|
*/
|
|
|
|
static CURLcode smtp_do(struct connectdata *conn, bool *done)
|
|
|
|
{
|
2013-02-16 18:37:50 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
*done = FALSE; /* default to false */
|
|
|
|
|
2013-11-15 11:10:05 -05:00
|
|
|
/* Parse the custom request */
|
|
|
|
result = smtp_parse_custom_request(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2013-02-16 18:37:50 -05:00
|
|
|
result = smtp_regular_transfer(conn, done);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-02-16 18:37:50 -05:00
|
|
|
return result;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_disconnect()
|
|
|
|
*
|
|
|
|
* Disconnect from an SMTP server. Cleanup protocol-specific per-connection
|
|
|
|
* resources. BLOCKING.
|
|
|
|
*/
|
2013-10-18 14:28:20 -04:00
|
|
|
static CURLcode smtp_disconnect(struct connectdata *conn, bool dead_connection)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2011-08-24 02:55:25 -04:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
/* We cannot send quit unconditionally. If this connection is stale or
|
|
|
|
bad in any way, sending quit and waiting around here will make the
|
2013-02-23 15:02:05 -05:00
|
|
|
disconnect wait in vain and cause more problems than we need to. */
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
/* The SMTP session may or may not have been allocated/setup at this
|
|
|
|
point! */
|
2013-10-18 14:28:20 -04:00
|
|
|
if(!dead_connection && smtpc->pp.conn && smtpc->pp.conn->bits.protoconnstart)
|
2013-04-16 14:47:15 -04:00
|
|
|
if(!smtp_perform_quit(conn))
|
2013-03-09 06:55:48 -05:00
|
|
|
(void)smtp_block_statemach(conn); /* ignore errors on QUIT */
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2012-06-09 14:22:29 -04:00
|
|
|
/* Disconnect from the server */
|
2009-12-12 16:54:01 -05:00
|
|
|
Curl_pp_disconnect(&smtpc->pp);
|
|
|
|
|
2012-06-09 14:22:29 -04:00
|
|
|
/* Cleanup the SASL module */
|
2015-01-20 08:14:26 -05:00
|
|
|
Curl_sasl_cleanup(conn, smtpc->sasl.authused);
|
2011-10-01 09:46:14 -04:00
|
|
|
|
2012-06-09 14:22:29 -04:00
|
|
|
/* Cleanup our connection based variables */
|
2010-05-18 17:44:19 -04:00
|
|
|
Curl_safefree(smtpc->domain);
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2012-06-05 07:23:01 -04:00
|
|
|
/* Call this when the DO phase has completed */
|
2012-04-01 16:09:38 -04:00
|
|
|
static CURLcode smtp_dophase_done(struct connectdata *conn, bool connected)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2013-08-05 04:32:08 -04:00
|
|
|
struct SMTP *smtp = conn->data->req.protop;
|
2012-06-09 14:49:59 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
(void)connected;
|
|
|
|
|
|
|
|
if(smtp->transfer != FTPTRANSFER_BODY)
|
|
|
|
/* no data to transfer */
|
2010-04-16 17:43:04 -04:00
|
|
|
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2010-04-16 17:43:04 -04:00
|
|
|
return CURLE_OK;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
/* Called from multi.c while DOing */
|
2012-04-01 16:09:38 -04:00
|
|
|
static CURLcode smtp_doing(struct connectdata *conn, bool *dophase_done)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2012-05-22 17:08:25 -04:00
|
|
|
CURLcode result = smtp_multi_statemach(conn, dophase_done);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2012-05-22 17:08:25 -04:00
|
|
|
if(result)
|
|
|
|
DEBUGF(infof(conn->data, "DO phase failed\n"));
|
2013-03-08 18:02:20 -05:00
|
|
|
else if(*dophase_done) {
|
|
|
|
result = smtp_dophase_done(conn, FALSE /* not connected */);
|
2012-05-22 17:08:25 -04:00
|
|
|
|
2013-03-08 18:02:20 -05:00
|
|
|
DEBUGF(infof(conn->data, "DO phase is complete\n"));
|
2012-12-29 18:06:25 -05:00
|
|
|
}
|
2011-10-01 07:35:36 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_regular_transfer()
|
|
|
|
*
|
|
|
|
* The input argument is already checked for validity.
|
|
|
|
*
|
|
|
|
* Performs all commands done before a regular transfer between a local and a
|
|
|
|
* remote host.
|
|
|
|
*/
|
2012-02-16 05:43:17 -05:00
|
|
|
static CURLcode smtp_regular_transfer(struct connectdata *conn,
|
|
|
|
bool *dophase_done)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2011-08-24 02:55:25 -04:00
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
bool connected = FALSE;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2012-12-28 15:22:33 -05:00
|
|
|
|
|
|
|
/* Make sure size is unknown at this point */
|
|
|
|
data->req.size = -1;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-03-08 18:25:04 -05:00
|
|
|
/* Set the progress data */
|
2009-12-12 16:54:01 -05:00
|
|
|
Curl_pgrsSetUploadCounter(data, 0);
|
|
|
|
Curl_pgrsSetDownloadCounter(data, 0);
|
2014-08-29 17:48:03 -04:00
|
|
|
Curl_pgrsSetUploadSize(data, -1);
|
|
|
|
Curl_pgrsSetDownloadSize(data, -1);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-03-08 18:25:04 -05:00
|
|
|
/* Carry out the perform */
|
2012-06-05 07:23:01 -04:00
|
|
|
result = smtp_perform(conn, &connected, dophase_done);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-03-08 18:25:04 -05:00
|
|
|
/* Perform post DO phase operations if necessary */
|
|
|
|
if(!result && *dophase_done)
|
2009-12-12 16:54:01 -05:00
|
|
|
result = smtp_dophase_done(conn, connected);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-08-24 02:55:25 -04:00
|
|
|
static CURLcode smtp_setup_connection(struct connectdata *conn)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-08-04 13:34:16 -04:00
|
|
|
CURLcode result;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2016-03-05 15:10:11 -05:00
|
|
|
/* Clear the TLS upgraded flag */
|
|
|
|
conn->tls_upgraded = FALSE;
|
|
|
|
|
|
|
|
/* Set up the proxy if necessary */
|
2009-12-12 16:54:01 -05:00
|
|
|
if(conn->bits.httpproxy && !data->set.tunnel_thru_httpproxy) {
|
2013-02-13 15:12:21 -05:00
|
|
|
/* Unless we have asked to tunnel SMTP operations through the proxy, we
|
2009-12-12 16:54:01 -05:00
|
|
|
switch and use HTTP operations only */
|
|
|
|
#ifndef CURL_DISABLE_HTTP
|
|
|
|
if(conn->handler == &Curl_handler_smtp)
|
|
|
|
conn->handler = &Curl_handler_smtp_proxy;
|
|
|
|
else {
|
|
|
|
#ifdef USE_SSL
|
|
|
|
conn->handler = &Curl_handler_smtps_proxy;
|
|
|
|
#else
|
|
|
|
failf(data, "SMTPS not supported!");
|
|
|
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
|
|
|
#endif
|
|
|
|
}
|
2013-08-04 13:34:16 -04:00
|
|
|
/* set it up as a HTTP connection instead */
|
|
|
|
return conn->handler->setup_connection(conn);
|
2012-02-16 05:43:17 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
#else
|
|
|
|
failf(data, "SMTP over http proxy requires HTTP support built-in!");
|
|
|
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-08-04 13:34:16 -04:00
|
|
|
/* Initialise the SMTP layer */
|
|
|
|
result = smtp_init(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
data->state.path++; /* don't include the initial slash */
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2013-04-13 11:21:58 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_parse_url_options()
|
|
|
|
*
|
|
|
|
* Parse the URL login options.
|
|
|
|
*/
|
|
|
|
static CURLcode smtp_parse_url_options(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
2015-01-20 09:27:25 -05:00
|
|
|
const char *ptr = conn->options;
|
|
|
|
|
|
|
|
smtpc->sasl.resetprefs = TRUE;
|
2013-04-13 11:21:58 -04:00
|
|
|
|
2015-01-20 09:27:25 -05:00
|
|
|
while(!result && ptr && *ptr) {
|
2013-04-13 11:21:58 -04:00
|
|
|
const char *key = ptr;
|
2015-01-20 09:27:25 -05:00
|
|
|
const char *value;
|
2013-04-13 11:21:58 -04:00
|
|
|
|
|
|
|
while(*ptr && *ptr != '=')
|
2016-05-23 06:59:58 -04:00
|
|
|
ptr++;
|
2013-04-13 11:21:58 -04:00
|
|
|
|
2015-01-20 09:27:25 -05:00
|
|
|
value = ptr + 1;
|
2013-04-13 11:21:58 -04:00
|
|
|
|
2015-01-20 09:27:25 -05:00
|
|
|
while(*ptr && *ptr != ';')
|
|
|
|
ptr++;
|
2013-12-21 18:34:45 -05:00
|
|
|
|
2016-09-30 11:15:05 -04:00
|
|
|
if(strncasecompare(key, "AUTH=", 5))
|
2015-01-20 09:27:25 -05:00
|
|
|
result = Curl_sasl_parse_url_auth_option(&smtpc->sasl,
|
|
|
|
value, ptr - value);
|
2013-04-13 11:21:58 -04:00
|
|
|
else
|
|
|
|
result = CURLE_URL_MALFORMAT;
|
2015-01-20 09:27:25 -05:00
|
|
|
|
|
|
|
if(*ptr == ';')
|
|
|
|
ptr++;
|
2013-04-13 11:21:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-04-12 18:15:51 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_parse_url_path()
|
|
|
|
*
|
|
|
|
* Parse the URL path into separate path components.
|
|
|
|
*/
|
|
|
|
static CURLcode smtp_parse_url_path(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
/* The SMTP struct is already initialised in smtp_connect() */
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-04-12 18:15:51 -04:00
|
|
|
struct smtp_conn *smtpc = &conn->proto.smtpc;
|
|
|
|
const char *path = data->state.path;
|
|
|
|
char localhost[HOSTNAME_MAX + 1];
|
|
|
|
|
|
|
|
/* Calculate the path if necessary */
|
|
|
|
if(!*path) {
|
|
|
|
if(!Curl_gethostname(localhost, sizeof(localhost)))
|
|
|
|
path = localhost;
|
|
|
|
else
|
|
|
|
path = "localhost";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* URL decode the path and use it as the domain in our EHLO */
|
|
|
|
return Curl_urldecode(conn->data, path, 0, &smtpc->domain, NULL, TRUE);
|
|
|
|
}
|
|
|
|
|
2013-11-15 11:10:05 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* smtp_parse_custom_request()
|
|
|
|
*
|
|
|
|
* Parse the custom request.
|
|
|
|
*/
|
|
|
|
static CURLcode smtp_parse_custom_request(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-11-15 11:10:05 -05:00
|
|
|
struct SMTP *smtp = data->req.protop;
|
|
|
|
const char *custom = data->set.str[STRING_CUSTOMREQUEST];
|
|
|
|
|
|
|
|
/* URL decode the custom request */
|
|
|
|
if(custom)
|
|
|
|
result = Curl_urldecode(data, custom, 0, &smtp->custom, NULL, TRUE);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-11-26 17:58:39 -05:00
|
|
|
CURLcode Curl_smtp_escape_eob(struct connectdata *conn, const ssize_t nread)
|
2009-12-30 17:09:43 -05:00
|
|
|
{
|
2012-05-17 06:31:06 -04:00
|
|
|
/* When sending a SMTP payload we must detect CRLF. sequences making sure
|
|
|
|
they are sent as CRLF.. instead, as a . on the beginning of a line will
|
|
|
|
be deleted by the server when not part of an EOB terminator and a
|
|
|
|
genuine CRLF.CRLF which isn't escaped will wrongly be detected as end of
|
2013-05-04 04:58:32 -04:00
|
|
|
data by the server
|
2012-05-17 06:31:06 -04:00
|
|
|
*/
|
2010-04-02 15:02:35 -04:00
|
|
|
ssize_t i;
|
|
|
|
ssize_t si;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct SMTP *smtp = data->req.protop;
|
2014-11-26 17:44:28 -05:00
|
|
|
char *scratch = data->state.scratch;
|
2014-12-12 13:55:16 -05:00
|
|
|
char *newscratch = NULL;
|
2014-11-26 17:44:28 -05:00
|
|
|
char *oldscratch = NULL;
|
2014-12-12 13:37:06 -05:00
|
|
|
size_t eob_sent;
|
2009-12-30 17:09:43 -05:00
|
|
|
|
2014-11-26 17:58:39 -05:00
|
|
|
/* Do we need to allocate a scratch buffer? */
|
2014-11-26 17:44:28 -05:00
|
|
|
if(!scratch || data->set.crlf) {
|
|
|
|
oldscratch = scratch;
|
|
|
|
|
2014-12-12 13:55:16 -05:00
|
|
|
scratch = newscratch = malloc(2 * BUFSIZE);
|
|
|
|
if(!newscratch) {
|
2014-11-26 17:44:28 -05:00
|
|
|
failf(data, "Failed to alloc scratch buffer!");
|
2012-02-17 13:24:52 -05:00
|
|
|
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2009-12-30 17:09:43 -05:00
|
|
|
}
|
2012-02-16 05:43:17 -05:00
|
|
|
|
2014-12-12 13:37:06 -05:00
|
|
|
/* Have we already sent part of the EOB? */
|
|
|
|
eob_sent = smtp->eob;
|
|
|
|
|
2009-12-30 17:09:43 -05:00
|
|
|
/* This loop can be improved by some kind of Boyer-Moore style of
|
|
|
|
approach but that is saved for later... */
|
2011-10-19 18:13:09 -04:00
|
|
|
for(i = 0, si = 0; i < nread; i++) {
|
2013-05-04 04:52:09 -04:00
|
|
|
if(SMTP_EOB[smtp->eob] == data->req.upload_fromhere[i]) {
|
2013-04-30 17:22:22 -04:00
|
|
|
smtp->eob++;
|
2013-05-04 04:52:09 -04:00
|
|
|
|
|
|
|
/* Is the EOB potentially the terminating CRLF? */
|
|
|
|
if(2 == smtp->eob || SMTP_EOB_LEN == smtp->eob)
|
|
|
|
smtp->trailing_crlf = TRUE;
|
|
|
|
else
|
|
|
|
smtp->trailing_crlf = FALSE;
|
|
|
|
}
|
2013-04-30 17:22:22 -04:00
|
|
|
else if(smtp->eob) {
|
2012-02-17 13:24:52 -05:00
|
|
|
/* A previous substring matched so output that first */
|
2014-12-12 17:57:31 -05:00
|
|
|
memcpy(&scratch[si], &SMTP_EOB[eob_sent], smtp->eob - eob_sent);
|
2014-12-12 13:37:06 -05:00
|
|
|
si += smtp->eob - eob_sent;
|
2011-10-19 18:13:09 -04:00
|
|
|
|
2012-04-01 16:09:38 -04:00
|
|
|
/* Then compare the first byte */
|
2011-10-20 06:58:26 -04:00
|
|
|
if(SMTP_EOB[0] == data->req.upload_fromhere[i])
|
2013-04-30 17:22:22 -04:00
|
|
|
smtp->eob = 1;
|
2011-10-19 18:13:09 -04:00
|
|
|
else
|
2013-04-30 17:22:22 -04:00
|
|
|
smtp->eob = 0;
|
2013-05-04 04:52:09 -04:00
|
|
|
|
2014-12-12 13:37:06 -05:00
|
|
|
eob_sent = 0;
|
|
|
|
|
2013-05-04 04:52:09 -04:00
|
|
|
/* Reset the trailing CRLF flag as there was more data */
|
|
|
|
smtp->trailing_crlf = FALSE;
|
2009-12-30 17:09:43 -05:00
|
|
|
}
|
2011-10-19 18:13:09 -04:00
|
|
|
|
2013-05-04 04:58:32 -04:00
|
|
|
/* Do we have a match for CRLF. as per RFC-5321, sect. 4.5.2 */
|
2013-04-30 17:22:22 -04:00
|
|
|
if(SMTP_EOB_FIND_LEN == smtp->eob) {
|
2012-05-17 06:31:06 -04:00
|
|
|
/* Copy the replacement data to the target buffer */
|
2014-12-12 17:57:31 -05:00
|
|
|
memcpy(&scratch[si], &SMTP_EOB_REPL[eob_sent],
|
2014-12-12 16:06:01 -05:00
|
|
|
SMTP_EOB_REPL_LEN - eob_sent);
|
2014-12-12 13:37:06 -05:00
|
|
|
si += SMTP_EOB_REPL_LEN - eob_sent;
|
2013-04-30 17:22:22 -04:00
|
|
|
smtp->eob = 0;
|
2014-12-12 13:37:06 -05:00
|
|
|
eob_sent = 0;
|
2009-12-30 17:09:43 -05:00
|
|
|
}
|
2013-04-30 17:22:22 -04:00
|
|
|
else if(!smtp->eob)
|
2014-11-26 17:44:28 -05:00
|
|
|
scratch[si++] = data->req.upload_fromhere[i];
|
2012-02-16 05:43:17 -05:00
|
|
|
}
|
2009-12-30 17:09:43 -05:00
|
|
|
|
2014-12-12 13:37:06 -05:00
|
|
|
if(smtp->eob - eob_sent) {
|
2012-02-17 13:24:52 -05:00
|
|
|
/* A substring matched before processing ended so output that now */
|
2014-12-12 17:57:31 -05:00
|
|
|
memcpy(&scratch[si], &SMTP_EOB[eob_sent], smtp->eob - eob_sent);
|
2014-12-12 13:37:06 -05:00
|
|
|
si += smtp->eob - eob_sent;
|
2012-02-17 13:24:52 -05:00
|
|
|
}
|
|
|
|
|
2014-11-26 17:58:39 -05:00
|
|
|
/* Only use the new buffer if we replaced something */
|
2009-12-30 17:09:43 -05:00
|
|
|
if(si != nread) {
|
2012-04-01 16:09:38 -04:00
|
|
|
/* Upload from the new (replaced) buffer instead */
|
2014-11-26 17:44:28 -05:00
|
|
|
data->req.upload_fromhere = scratch;
|
|
|
|
|
|
|
|
/* Save the buffer so it can be freed later */
|
|
|
|
data->state.scratch = scratch;
|
|
|
|
|
|
|
|
/* Free the old scratch buffer */
|
2015-03-16 10:01:15 -04:00
|
|
|
free(oldscratch);
|
2009-12-30 17:09:43 -05:00
|
|
|
|
2012-04-01 16:09:38 -04:00
|
|
|
/* Set the new amount too */
|
2014-11-26 17:58:39 -05:00
|
|
|
data->req.upload_present = si;
|
2009-12-30 17:09:43 -05:00
|
|
|
}
|
2014-11-26 17:44:28 -05:00
|
|
|
else
|
2015-03-16 10:01:15 -04:00
|
|
|
free(newscratch);
|
2011-10-01 07:35:36 -04:00
|
|
|
|
2009-12-30 17:09:43 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
#endif /* CURL_DISABLE_SMTP */
|