2009-12-12 16:54:01 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2013-01-06 14:13:58 -05:00
|
|
|
* Copyright (C) 1998 - 2013, 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
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
*
|
|
|
|
* 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-07 02:35:49 -05:00
|
|
|
* RFC2195 CRAM-MD5 authentication
|
2013-01-07 13:07:04 -05:00
|
|
|
* RFC2595 Using TLS with IMAP, POP3 and ACAP
|
2013-01-07 06:01:05 -05:00
|
|
|
* RFC2831 DIGEST-MD5 authentication
|
2009-12-12 16:54:01 -05:00
|
|
|
* RFC3501 IMAPv4 protocol
|
2013-01-22 13:37:12 -05:00
|
|
|
* RFC4422 Simple Authentication and Security Layer (SASL)
|
2013-01-06 17:25:14 -05:00
|
|
|
* RFC4616 PLAIN authentication
|
2013-02-07 15:02:06 -05:00
|
|
|
* RFC4959 IMAP Extension for SASL Initial Client Response
|
2009-12-12 16:54:01 -05:00
|
|
|
* RFC5092 IMAP URL Scheme
|
2013-08-25 13:17:35 -04:00
|
|
|
* RFC6749 OAuth 2.0 Authorization Framework
|
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_IMAP
|
|
|
|
|
|
|
|
#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 "if2ip.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 "imap.h"
|
|
|
|
|
|
|
|
#include "strtoofft.h"
|
|
|
|
#include "strequal.h"
|
|
|
|
#include "sslgen.h"
|
|
|
|
#include "connect.h"
|
|
|
|
#include "strerror.h"
|
|
|
|
#include "select.h"
|
|
|
|
#include "multiif.h"
|
|
|
|
#include "url.h"
|
|
|
|
#include "rawstr.h"
|
2013-01-06 14:13:58 -05:00
|
|
|
#include "curl_sasl.h"
|
2013-07-23 09:59:07 -04:00
|
|
|
#include "warnless.h"
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
|
|
|
#include "curl_memory.h"
|
|
|
|
/* The last #include file should be: */
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
/* Local API functions */
|
|
|
|
static CURLcode imap_regular_transfer(struct connectdata *conn, bool *done);
|
|
|
|
static CURLcode imap_do(struct connectdata *conn, bool *done);
|
2012-12-28 16:24:36 -05:00
|
|
|
static CURLcode imap_done(struct connectdata *conn, CURLcode status,
|
|
|
|
bool premature);
|
2009-12-12 16:54:01 -05:00
|
|
|
static CURLcode imap_connect(struct connectdata *conn, bool *done);
|
2011-04-20 09:17:42 -04:00
|
|
|
static CURLcode imap_disconnect(struct connectdata *conn, bool dead);
|
2009-12-12 16:54:01 -05:00
|
|
|
static CURLcode imap_multi_statemach(struct connectdata *conn, bool *done);
|
2013-01-19 04:49:17 -05:00
|
|
|
static int imap_getsock(struct connectdata *conn, curl_socket_t *socks,
|
2009-12-12 16:54:01 -05:00
|
|
|
int numsocks);
|
2012-12-28 16:24:36 -05:00
|
|
|
static CURLcode imap_doing(struct connectdata *conn, bool *dophase_done);
|
|
|
|
static CURLcode imap_setup_connection(struct connectdata *conn);
|
2013-04-12 13:05:53 -04:00
|
|
|
static char *imap_atom(const char *str);
|
|
|
|
static CURLcode imap_sendf(struct connectdata *conn, const char *fmt, ...);
|
2013-04-13 10:58:15 -04:00
|
|
|
static CURLcode imap_parse_url_options(struct connectdata *conn);
|
2013-04-12 13:08:09 -04:00
|
|
|
static CURLcode imap_parse_url_path(struct connectdata *conn);
|
|
|
|
static CURLcode imap_parse_custom_request(struct connectdata *conn);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* IMAP protocol handler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const struct Curl_handler Curl_handler_imap = {
|
|
|
|
"IMAP", /* scheme */
|
|
|
|
imap_setup_connection, /* setup_connection */
|
|
|
|
imap_do, /* do_it */
|
|
|
|
imap_done, /* done */
|
|
|
|
ZERO_NULL, /* do_more */
|
|
|
|
imap_connect, /* connect_it */
|
|
|
|
imap_multi_statemach, /* connecting */
|
|
|
|
imap_doing, /* doing */
|
|
|
|
imap_getsock, /* proto_getsock */
|
|
|
|
imap_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 */
|
|
|
|
imap_disconnect, /* disconnect */
|
2011-05-05 10:27:03 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2009-12-12 16:54:01 -05:00
|
|
|
PORT_IMAP, /* defport */
|
2011-03-14 17:52:14 -04:00
|
|
|
CURLPROTO_IMAP, /* protocol */
|
2011-11-24 17:28:54 -05:00
|
|
|
PROTOPT_CLOSEACTION | PROTOPT_NEEDSPWD
|
|
|
|
| PROTOPT_NOURLQUERY /* flags */
|
2009-12-12 16:54:01 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef USE_SSL
|
|
|
|
/*
|
|
|
|
* IMAPS protocol handler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const struct Curl_handler Curl_handler_imaps = {
|
|
|
|
"IMAPS", /* scheme */
|
|
|
|
imap_setup_connection, /* setup_connection */
|
|
|
|
imap_do, /* do_it */
|
|
|
|
imap_done, /* done */
|
|
|
|
ZERO_NULL, /* do_more */
|
|
|
|
imap_connect, /* connect_it */
|
|
|
|
imap_multi_statemach, /* connecting */
|
|
|
|
imap_doing, /* doing */
|
|
|
|
imap_getsock, /* proto_getsock */
|
|
|
|
imap_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 */
|
|
|
|
imap_disconnect, /* disconnect */
|
2011-05-05 10:27:03 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2009-12-12 16:54:01 -05:00
|
|
|
PORT_IMAPS, /* defport */
|
2011-03-14 17:52:14 -04:00
|
|
|
CURLPROTO_IMAP | CURLPROTO_IMAPS, /* protocol */
|
2011-11-24 17:28:54 -05:00
|
|
|
PROTOPT_CLOSEACTION | PROTOPT_SSL | PROTOPT_NEEDSPWD
|
|
|
|
| PROTOPT_NOURLQUERY /* flags */
|
2009-12-12 16:54:01 -05:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CURL_DISABLE_HTTP
|
|
|
|
/*
|
|
|
|
* HTTP-proxyed IMAP protocol handler.
|
|
|
|
*/
|
|
|
|
|
2010-01-25 18:41:02 -05:00
|
|
|
static const struct Curl_handler Curl_handler_imap_proxy = {
|
2009-12-12 16:54:01 -05:00
|
|
|
"IMAP", /* 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_IMAP, /* 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 IMAPS protocol handler.
|
|
|
|
*/
|
|
|
|
|
2010-01-25 18:41:02 -05:00
|
|
|
static const struct Curl_handler Curl_handler_imaps_proxy = {
|
2009-12-12 16:54:01 -05:00
|
|
|
"IMAPS", /* 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_IMAPS, /* 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
|
|
|
|
|
2013-02-11 18:13:50 -05:00
|
|
|
#ifdef USE_SSL
|
|
|
|
static void imap_to_imaps(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
conn->handler = &Curl_handler_imaps;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define imap_to_imaps(x) Curl_nop_stmt
|
|
|
|
#endif
|
|
|
|
|
2013-03-10 08:56:45 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_matchresp()
|
|
|
|
*
|
|
|
|
* Determines whether the untagged response is related to the specified
|
|
|
|
* command by checking if it is in format "* <command-name> ..." or
|
|
|
|
* "* <number> <command-name> ...".
|
|
|
|
*
|
|
|
|
* The "* " marker is assumed to have already been checked by the caller.
|
|
|
|
*/
|
2013-02-26 12:52:19 -05:00
|
|
|
static bool imap_matchresp(const char *line, size_t len, const char *cmd)
|
|
|
|
{
|
|
|
|
const char *end = line + len;
|
|
|
|
size_t cmd_len = strlen(cmd);
|
|
|
|
|
|
|
|
/* Skip the untagged response marker */
|
|
|
|
line += 2;
|
|
|
|
|
|
|
|
/* Do we have a number after the marker? */
|
|
|
|
if(line < end && ISDIGIT(*line)) {
|
|
|
|
/* Skip the number */
|
|
|
|
do
|
|
|
|
line++;
|
|
|
|
while(line < end && ISDIGIT(*line));
|
|
|
|
|
|
|
|
/* Do we have the space character? */
|
|
|
|
if(line == end || *line != ' ')
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
line++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Does the command name match and is it followed by a space character or at
|
|
|
|
the end of line? */
|
|
|
|
if(line + cmd_len <= end && Curl_raw_nequal(line, cmd, cmd_len) &&
|
|
|
|
(line[cmd_len] == ' ' || line + cmd_len == end))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-03-10 08:56:45 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_endofresp()
|
|
|
|
*
|
|
|
|
* Checks whether the given string is a valid tagged, untagged or continuation
|
|
|
|
* response which can be processed by the response handler.
|
|
|
|
*/
|
2013-02-12 13:08:48 -05:00
|
|
|
static bool imap_endofresp(struct connectdata *conn, char *line, size_t len,
|
|
|
|
int *resp)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2013-08-05 04:32:08 -04:00
|
|
|
struct IMAP *imap = conn->data->req.protop;
|
2013-02-12 13:08:48 -05:00
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
2013-02-06 17:22:57 -05:00
|
|
|
const char *id = imapc->resptag;
|
2009-12-12 16:54:01 -05:00
|
|
|
size_t id_len = strlen(id);
|
|
|
|
|
2013-02-24 06:21:53 -05:00
|
|
|
/* Do we have a tagged command response? */
|
2013-02-24 06:48:43 -05:00
|
|
|
if(len >= id_len + 1 && !memcmp(id, line, id_len) && line[id_len] == ' ') {
|
2013-02-24 07:45:04 -05:00
|
|
|
line += id_len + 1;
|
|
|
|
len -= id_len + 1;
|
2013-02-24 06:48:43 -05:00
|
|
|
|
2013-02-24 07:45:04 -05:00
|
|
|
if(len >= 2 && !memcmp(line, "OK", 2))
|
2013-02-24 06:48:43 -05:00
|
|
|
*resp = 'O';
|
2013-02-24 07:45:04 -05:00
|
|
|
else if(len >= 2 && !memcmp(line, "NO", 2))
|
2013-02-24 06:48:43 -05:00
|
|
|
*resp = 'N';
|
2013-02-24 07:45:04 -05:00
|
|
|
else if(len >= 3 && !memcmp(line, "BAD", 3))
|
2013-02-24 06:48:43 -05:00
|
|
|
*resp = 'B';
|
|
|
|
else {
|
|
|
|
failf(conn->data, "Bad tagged response");
|
|
|
|
*resp = -1;
|
2013-02-24 07:05:15 -05:00
|
|
|
}
|
2013-02-12 18:00:34 -05:00
|
|
|
|
2013-02-24 06:23:06 -05:00
|
|
|
return TRUE;
|
2012-12-30 07:44:09 -05:00
|
|
|
}
|
|
|
|
|
2013-02-26 15:40:22 -05:00
|
|
|
/* Do we have an untagged command response? */
|
2013-02-24 07:27:49 -05:00
|
|
|
if(len >= 2 && !memcmp("* ", line, 2)) {
|
2013-02-26 12:10:54 -05:00
|
|
|
switch(imapc->state) {
|
|
|
|
/* States which are interested in untagged responses */
|
|
|
|
case IMAP_CAPABILITY:
|
2013-02-26 13:22:42 -05:00
|
|
|
if(!imap_matchresp(line, len, "CAPABILITY"))
|
|
|
|
return FALSE;
|
|
|
|
break;
|
|
|
|
|
2013-03-05 16:36:25 -05:00
|
|
|
case IMAP_LIST:
|
2013-03-09 08:26:59 -05:00
|
|
|
if((!imap->custom && !imap_matchresp(line, len, "LIST")) ||
|
|
|
|
(imap->custom && !imap_matchresp(line, len, imap->custom) &&
|
|
|
|
(strcmp(imap->custom, "STORE") ||
|
|
|
|
!imap_matchresp(line, len, "FETCH")) &&
|
|
|
|
strcmp(imap->custom, "SELECT") &&
|
2013-08-13 08:13:20 -04:00
|
|
|
strcmp(imap->custom, "EXAMINE") &&
|
2013-08-31 05:49:49 -04:00
|
|
|
strcmp(imap->custom, "SEARCH") &&
|
|
|
|
strcmp(imap->custom, "EXPUNGE")))
|
2013-03-05 16:36:25 -05:00
|
|
|
return FALSE;
|
|
|
|
break;
|
|
|
|
|
2013-02-26 15:56:14 -05:00
|
|
|
case IMAP_SELECT:
|
2013-03-09 08:25:15 -05:00
|
|
|
/* SELECT is special in that its untagged responses do not have a
|
2013-02-26 15:56:14 -05:00
|
|
|
common prefix so accept anything! */
|
|
|
|
break;
|
|
|
|
|
2013-02-26 12:10:54 -05:00
|
|
|
case IMAP_FETCH:
|
2013-02-26 13:22:42 -05:00
|
|
|
if(!imap_matchresp(line, len, "FETCH"))
|
|
|
|
return FALSE;
|
2013-02-26 12:10:54 -05:00
|
|
|
break;
|
2013-02-26 15:37:08 -05:00
|
|
|
|
2013-02-26 12:10:54 -05:00
|
|
|
/* Ignore other untagged responses */
|
|
|
|
default:
|
|
|
|
return FALSE;
|
2013-01-06 14:13:58 -05:00
|
|
|
}
|
2013-02-12 18:05:14 -05:00
|
|
|
|
2013-02-26 13:22:42 -05:00
|
|
|
*resp = '*';
|
2013-02-26 12:10:54 -05:00
|
|
|
return TRUE;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
2012-12-28 16:24:36 -05:00
|
|
|
|
2013-02-24 11:14:16 -05:00
|
|
|
/* Do we have a continuation response? */
|
|
|
|
if((len == 3 && !memcmp("+", line, 1)) ||
|
|
|
|
(len >= 2 && !memcmp("+ ", line, 2))) {
|
|
|
|
switch(imapc->state) {
|
|
|
|
/* States which are interested in continuation responses */
|
|
|
|
case IMAP_AUTHENTICATE_PLAIN:
|
|
|
|
case IMAP_AUTHENTICATE_LOGIN:
|
|
|
|
case IMAP_AUTHENTICATE_LOGIN_PASSWD:
|
|
|
|
case IMAP_AUTHENTICATE_CRAMMD5:
|
|
|
|
case IMAP_AUTHENTICATE_DIGESTMD5:
|
|
|
|
case IMAP_AUTHENTICATE_DIGESTMD5_RESP:
|
|
|
|
case IMAP_AUTHENTICATE_NTLM:
|
|
|
|
case IMAP_AUTHENTICATE_NTLM_TYPE2MSG:
|
2013-08-25 13:17:35 -04:00
|
|
|
case IMAP_AUTHENTICATE_XOAUTH2:
|
2013-02-27 16:19:48 -05:00
|
|
|
case IMAP_AUTHENTICATE_FINAL:
|
2013-03-01 14:06:18 -05:00
|
|
|
case IMAP_APPEND:
|
2013-02-24 11:14:16 -05:00
|
|
|
*resp = '+';
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
failf(conn->data, "Unexpected continuation response");
|
|
|
|
*resp = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-01-06 14:13:58 -05:00
|
|
|
return FALSE; /* Nothing for us */
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
|
2013-03-10 08:56:45 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* state()
|
|
|
|
*
|
|
|
|
* This is the ONLY way to change IMAP state!
|
|
|
|
*/
|
2013-01-19 04:49:17 -05:00
|
|
|
static void state(struct connectdata *conn, imapstate newstate)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2012-12-28 16:24:36 -05:00
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
2009-12-12 16:54:01 -05:00
|
|
|
#if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS)
|
|
|
|
/* for debug purposes */
|
|
|
|
static const char * const names[]={
|
|
|
|
"STOP",
|
|
|
|
"SERVERGREET",
|
2013-02-10 16:18:30 -05:00
|
|
|
"CAPABILITY",
|
2009-12-12 16:54:01 -05:00
|
|
|
"STARTTLS",
|
2011-03-13 09:19:16 -04:00
|
|
|
"UPGRADETLS",
|
2013-01-06 17:25:14 -05:00
|
|
|
"AUTHENTICATE_PLAIN",
|
2013-01-06 18:14:18 -05:00
|
|
|
"AUTHENTICATE_LOGIN",
|
|
|
|
"AUTHENTICATE_LOGIN_PASSWD",
|
2013-01-07 02:35:49 -05:00
|
|
|
"AUTHENTICATE_CRAMMD5",
|
2013-01-07 06:01:05 -05:00
|
|
|
"AUTHENTICATE_DIGESTMD5",
|
|
|
|
"AUTHENTICATE_DIGESTMD5_RESP",
|
2013-01-06 21:47:12 -05:00
|
|
|
"AUTHENTICATE_NTLM",
|
|
|
|
"AUTHENTICATE_NTLM_TYPE2MSG",
|
2013-08-25 13:17:35 -04:00
|
|
|
"AUTHENTICATE_XOAUTH2",
|
2013-02-28 16:09:27 -05:00
|
|
|
"AUTHENTICATE_FINAL",
|
2012-12-30 07:44:09 -05:00
|
|
|
"LOGIN",
|
2013-03-05 16:34:53 -05:00
|
|
|
"LIST",
|
2009-12-12 16:54:01 -05:00
|
|
|
"SELECT",
|
|
|
|
"FETCH",
|
2013-02-28 13:16:33 -05:00
|
|
|
"FETCH_FINAL",
|
2013-03-01 14:04:56 -05:00
|
|
|
"APPEND",
|
|
|
|
"APPEND_FINAL",
|
2009-12-12 16:54:01 -05:00
|
|
|
"LOGOUT",
|
|
|
|
/* LAST */
|
|
|
|
};
|
2012-12-28 16:24:36 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
if(imapc->state != newstate)
|
|
|
|
infof(conn->data, "IMAP %p state change from %s to %s\n",
|
2013-07-23 09:59:07 -04:00
|
|
|
(void *)imapc, names[imapc->state], names[newstate]);
|
2009-12-12 16:54:01 -05:00
|
|
|
#endif
|
2012-12-28 16:24:36 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
imapc->state = newstate;
|
|
|
|
}
|
|
|
|
|
2013-03-09 09:02:56 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-03-09 13:50:41 -05:00
|
|
|
* imap_perform_capability()
|
2013-03-09 09:02:56 -05:00
|
|
|
*
|
|
|
|
* Sends the CAPABILITY command in order to obtain a list of server side
|
|
|
|
* supported capabilities.
|
|
|
|
*/
|
2013-03-09 13:50:41 -05:00
|
|
|
static CURLcode imap_perform_capability(struct connectdata *conn)
|
2013-01-06 14:13:58 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
|
|
|
|
|
|
|
imapc->authmechs = 0; /* No known authentication mechanisms yet */
|
2013-01-06 17:25:14 -05:00
|
|
|
imapc->authused = 0; /* Clear the authentication mechanism used */
|
2013-02-10 10:41:56 -05:00
|
|
|
imapc->tls_supported = FALSE; /* Clear the TLS capability */
|
2013-01-06 14:13:58 -05:00
|
|
|
|
|
|
|
/* Send the CAPABILITY command */
|
2013-02-06 19:18:23 -05:00
|
|
|
result = imap_sendf(conn, "CAPABILITY");
|
2013-01-06 14:13:58 -05:00
|
|
|
|
2013-02-28 17:46:22 -05:00
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_CAPABILITY);
|
2013-01-06 14:13:58 -05:00
|
|
|
|
2013-02-28 18:09:28 -05:00
|
|
|
return result;
|
2013-01-06 14:13:58 -05:00
|
|
|
}
|
|
|
|
|
2013-03-09 09:02:56 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-03-09 13:50:41 -05:00
|
|
|
* imap_perform_starttls()
|
2013-03-09 09:02:56 -05:00
|
|
|
*
|
|
|
|
* Sends the STARTTLS command to start the upgrade to TLS.
|
|
|
|
*/
|
2013-03-09 13:50:41 -05:00
|
|
|
static CURLcode imap_perform_starttls(struct connectdata *conn)
|
2013-02-11 17:41:08 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
/* Send the STARTTLS command */
|
|
|
|
result = imap_sendf(conn, "STARTTLS");
|
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_STARTTLS);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-09 09:02:56 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-03-09 13:50:41 -05:00
|
|
|
* imap_perform_upgrade_tls()
|
2013-03-09 09:02:56 -05:00
|
|
|
*
|
|
|
|
* Performs the upgrade to TLS.
|
|
|
|
*/
|
2013-03-09 13:50:41 -05:00
|
|
|
static CURLcode imap_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 imap_conn *imapc = &conn->proto.imapc;
|
|
|
|
|
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, &imapc->ssldone);
|
|
|
|
|
|
|
|
if(!result) {
|
|
|
|
if(imapc->state != IMAP_UPGRADETLS)
|
|
|
|
state(conn, IMAP_UPGRADETLS);
|
|
|
|
|
|
|
|
if(imapc->ssldone) {
|
|
|
|
imap_to_imaps(conn);
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_capability(conn);
|
2013-02-11 18:13:50 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2013-02-11 17:41:08 -05:00
|
|
|
|
2013-03-09 09:02:56 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-03-09 13:50:41 -05:00
|
|
|
* imap_perform_login()
|
2013-03-09 09:02:56 -05:00
|
|
|
*
|
|
|
|
* Sends a clear text LOGIN command to authenticate with.
|
|
|
|
*/
|
2013-03-09 13:50:41 -05:00
|
|
|
static CURLcode imap_perform_login(struct connectdata *conn)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2013-02-10 10:41:56 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2013-02-10 15:32:36 -05:00
|
|
|
char *user;
|
|
|
|
char *passwd;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-02-10 10:41:56 -05:00
|
|
|
/* Check we have a username and password to authenticate with and end the
|
|
|
|
connect phase if we don't */
|
|
|
|
if(!conn->bits.user_passwd) {
|
|
|
|
state(conn, IMAP_STOP);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-02-10 15:32:36 -05:00
|
|
|
/* Make sure the username and password are in the correct atom format */
|
2013-02-23 04:41:47 -05:00
|
|
|
user = imap_atom(conn->user);
|
|
|
|
passwd = imap_atom(conn->passwd);
|
2013-02-10 15:32:36 -05:00
|
|
|
|
2013-02-23 15:02:05 -05:00
|
|
|
/* Send the LOGIN command */
|
2013-02-06 19:18:23 -05:00
|
|
|
result = imap_sendf(conn, "LOGIN %s %s", user ? user : "",
|
|
|
|
passwd ? passwd : "");
|
2012-12-28 09:49:30 -05:00
|
|
|
|
|
|
|
Curl_safefree(user);
|
|
|
|
Curl_safefree(passwd);
|
|
|
|
|
2013-02-28 17:46:22 -05:00
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_LOGIN);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-02-28 18:09:28 -05:00
|
|
|
return result;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
|
2013-03-09 09:02:56 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-03-09 13:50:41 -05:00
|
|
|
* imap_perform_authenticate()
|
2013-03-09 09:02:56 -05:00
|
|
|
*
|
|
|
|
* Sends an AUTHENTICATE command allowing the client to login with the
|
|
|
|
* appropriate SASL authentication mechanism.
|
|
|
|
*
|
|
|
|
* Additionally, the function will perform fallback to the LOGIN command
|
|
|
|
* should a common mechanism not be available between the client and server.
|
|
|
|
*/
|
2013-03-09 13:50:41 -05:00
|
|
|
static CURLcode imap_perform_authenticate(struct connectdata *conn)
|
2013-01-06 17:25:14 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2013-04-27 07:04:35 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
2013-01-06 17:25:14 -05:00
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
|
|
|
const char *mech = NULL;
|
2013-02-07 16:06:53 -05:00
|
|
|
char *initresp = NULL;
|
|
|
|
size_t len = 0;
|
2013-02-08 16:40:54 -05:00
|
|
|
imapstate state1 = IMAP_STOP;
|
|
|
|
imapstate state2 = IMAP_STOP;
|
2013-01-06 17:25:14 -05:00
|
|
|
|
2013-02-10 10:41:56 -05:00
|
|
|
/* Check we have a username and password to authenticate with and end the
|
|
|
|
connect phase if we don't */
|
|
|
|
if(!conn->bits.user_passwd) {
|
|
|
|
state(conn, IMAP_STOP);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-02-04 18:51:36 -05:00
|
|
|
/* Calculate the supported authentication mechanism by decreasing order of
|
2013-01-06 17:25:14 -05:00
|
|
|
security */
|
2013-01-07 02:35:49 -05:00
|
|
|
#ifndef CURL_DISABLE_CRYPTO_AUTH
|
2013-04-13 10:58:15 -04:00
|
|
|
if((imapc->authmechs & SASL_MECH_DIGEST_MD5) &&
|
|
|
|
(imapc->prefmech & SASL_MECH_DIGEST_MD5)) {
|
2013-01-07 06:01:05 -05:00
|
|
|
mech = "DIGEST-MD5";
|
2013-02-08 16:40:54 -05:00
|
|
|
state1 = IMAP_AUTHENTICATE_DIGESTMD5;
|
2013-01-07 06:01:05 -05:00
|
|
|
imapc->authused = SASL_MECH_DIGEST_MD5;
|
|
|
|
}
|
2013-04-13 10:58:15 -04:00
|
|
|
else if((imapc->authmechs & SASL_MECH_CRAM_MD5) &&
|
|
|
|
(imapc->prefmech & SASL_MECH_CRAM_MD5)) {
|
2013-01-07 02:35:49 -05:00
|
|
|
mech = "CRAM-MD5";
|
2013-02-08 16:40:54 -05:00
|
|
|
state1 = IMAP_AUTHENTICATE_CRAMMD5;
|
2013-01-07 02:35:49 -05:00
|
|
|
imapc->authused = SASL_MECH_CRAM_MD5;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2013-01-06 21:47:12 -05:00
|
|
|
#ifdef USE_NTLM
|
2013-04-13 10:58:15 -04:00
|
|
|
if((imapc->authmechs & SASL_MECH_NTLM) &&
|
|
|
|
(imapc->prefmech & SASL_MECH_NTLM)) {
|
2013-01-06 21:47:12 -05:00
|
|
|
mech = "NTLM";
|
2013-02-08 16:40:54 -05:00
|
|
|
state1 = IMAP_AUTHENTICATE_NTLM;
|
|
|
|
state2 = IMAP_AUTHENTICATE_NTLM_TYPE2MSG;
|
2013-01-06 21:47:12 -05:00
|
|
|
imapc->authused = SASL_MECH_NTLM;
|
2013-02-07 16:06:53 -05:00
|
|
|
|
2013-04-27 07:04:35 -04:00
|
|
|
if(imapc->ir_supported || data->set.sasl_ir)
|
2013-03-16 20:20:42 -04:00
|
|
|
result = Curl_sasl_create_ntlm_type1_message(conn->user, conn->passwd,
|
|
|
|
&conn->ntlm,
|
|
|
|
&initresp, &len);
|
2013-01-06 21:47:12 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2013-09-04 16:32:57 -04:00
|
|
|
if(((imapc->authmechs & SASL_MECH_XOAUTH2) &&
|
|
|
|
(imapc->prefmech & SASL_MECH_XOAUTH2) &&
|
|
|
|
(imapc->prefmech != SASL_AUTH_ANY)) || conn->xoauth2_bearer) {
|
2013-08-25 13:17:35 -04:00
|
|
|
mech = "XOAUTH2";
|
|
|
|
state1 = IMAP_AUTHENTICATE_XOAUTH2;
|
|
|
|
state2 = IMAP_AUTHENTICATE_FINAL;
|
|
|
|
imapc->authused = SASL_MECH_XOAUTH2;
|
|
|
|
|
|
|
|
if(imapc->ir_supported || data->set.sasl_ir)
|
|
|
|
result = Curl_sasl_create_xoauth2_message(conn->data, conn->user,
|
|
|
|
conn->xoauth2_bearer,
|
|
|
|
&initresp, &len);
|
|
|
|
}
|
|
|
|
else if((imapc->authmechs & SASL_MECH_LOGIN) &&
|
2013-04-13 10:58:15 -04:00
|
|
|
(imapc->prefmech & SASL_MECH_LOGIN)) {
|
2013-01-06 18:14:18 -05:00
|
|
|
mech = "LOGIN";
|
2013-02-08 16:40:54 -05:00
|
|
|
state1 = IMAP_AUTHENTICATE_LOGIN;
|
|
|
|
state2 = IMAP_AUTHENTICATE_LOGIN_PASSWD;
|
2013-01-06 18:14:18 -05:00
|
|
|
imapc->authused = SASL_MECH_LOGIN;
|
2013-02-07 16:06:53 -05:00
|
|
|
|
2013-04-27 07:04:35 -04:00
|
|
|
if(imapc->ir_supported || data->set.sasl_ir)
|
2013-03-16 20:20:42 -04:00
|
|
|
result = Curl_sasl_create_login_message(conn->data, conn->user,
|
|
|
|
&initresp, &len);
|
2013-01-06 18:14:18 -05:00
|
|
|
}
|
2013-04-13 10:58:15 -04:00
|
|
|
else if((imapc->authmechs & SASL_MECH_PLAIN) &&
|
|
|
|
(imapc->prefmech & SASL_MECH_PLAIN)) {
|
2013-01-06 17:25:14 -05:00
|
|
|
mech = "PLAIN";
|
2013-02-08 16:40:54 -05:00
|
|
|
state1 = IMAP_AUTHENTICATE_PLAIN;
|
2013-02-27 16:19:48 -05:00
|
|
|
state2 = IMAP_AUTHENTICATE_FINAL;
|
2013-01-06 17:25:14 -05:00
|
|
|
imapc->authused = SASL_MECH_PLAIN;
|
2013-02-07 16:06:53 -05:00
|
|
|
|
2013-04-27 07:04:35 -04:00
|
|
|
if(imapc->ir_supported || data->set.sasl_ir)
|
2013-02-07 16:06:53 -05:00
|
|
|
result = Curl_sasl_create_plain_message(conn->data, conn->user,
|
|
|
|
conn->passwd, &initresp, &len);
|
2013-01-06 17:25:14 -05:00
|
|
|
}
|
|
|
|
|
2013-04-28 07:57:42 -04:00
|
|
|
if(!result) {
|
|
|
|
if(mech) {
|
|
|
|
/* Perform SASL based authentication */
|
|
|
|
if(initresp) {
|
|
|
|
result = imap_sendf(conn, "AUTHENTICATE %s %s", mech, initresp);
|
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, state2);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = imap_sendf(conn, "AUTHENTICATE %s", mech);
|
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, state1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Curl_safefree(initresp);
|
2013-02-07 16:06:53 -05:00
|
|
|
}
|
2013-04-28 07:57:42 -04:00
|
|
|
else if(!imapc->login_disabled)
|
|
|
|
/* Perform clear text authentication */
|
|
|
|
result = imap_perform_login(conn);
|
2013-02-07 16:06:53 -05: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;
|
2013-02-07 16:06:53 -05:00
|
|
|
}
|
2013-02-03 18:58:03 -05:00
|
|
|
}
|
2013-01-06 17:25:14 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-09 09:02:56 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-03-09 13:50:41 -05:00
|
|
|
* imap_perform_list()
|
2013-03-09 09:02:56 -05:00
|
|
|
*
|
|
|
|
* Sends a LIST command or an alternative custom request.
|
|
|
|
*/
|
2013-03-09 13:50:41 -05:00
|
|
|
static CURLcode imap_perform_list(struct connectdata *conn)
|
2013-03-05 16:36:25 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct IMAP *imap = data->req.protop;
|
2013-03-05 16:36:25 -05:00
|
|
|
char *mailbox;
|
|
|
|
|
2013-03-09 08:26:59 -05:00
|
|
|
if(imap->custom)
|
|
|
|
/* Send the custom request */
|
|
|
|
result = imap_sendf(conn, "%s%s", imap->custom,
|
|
|
|
imap->custom_params ? imap->custom_params : "");
|
|
|
|
else {
|
|
|
|
/* Make sure the mailbox is in the correct atom format */
|
|
|
|
mailbox = imap_atom(imap->mailbox ? imap->mailbox : "");
|
|
|
|
if(!mailbox)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2013-03-05 16:36:25 -05:00
|
|
|
|
2013-03-09 08:26:59 -05:00
|
|
|
/* Send the LIST command */
|
|
|
|
result = imap_sendf(conn, "LIST \"%s\" *", mailbox);
|
2013-03-05 16:36:25 -05:00
|
|
|
|
2013-03-09 08:26:59 -05:00
|
|
|
Curl_safefree(mailbox);
|
|
|
|
}
|
2013-03-05 16:36:25 -05:00
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_LIST);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-09 09:02:56 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-03-09 13:50:41 -05:00
|
|
|
* imap_perform_select()
|
2013-03-09 09:02:56 -05:00
|
|
|
*
|
|
|
|
* Sends a SELECT command to ask the server to change the selected mailbox.
|
|
|
|
*/
|
2013-03-09 13:50:41 -05:00
|
|
|
static CURLcode imap_perform_select(struct connectdata *conn)
|
2013-02-25 12:06:02 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct IMAP *imap = data->req.protop;
|
2013-02-26 15:56:14 -05:00
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
2013-02-25 12:06:02 -05:00
|
|
|
char *mailbox;
|
|
|
|
|
2013-02-27 13:02:53 -05:00
|
|
|
/* Invalidate old information as we are switching mailboxes */
|
|
|
|
Curl_safefree(imapc->mailbox);
|
2013-02-26 15:56:14 -05:00
|
|
|
Curl_safefree(imapc->mailbox_uidvalidity);
|
|
|
|
|
2013-03-05 14:52:11 -05:00
|
|
|
/* Check we have a mailbox */
|
|
|
|
if(!imap->mailbox) {
|
|
|
|
failf(conn->data, "Cannot SELECT without a mailbox.");
|
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
}
|
|
|
|
|
2013-02-28 17:51:32 -05:00
|
|
|
/* Make sure the mailbox is in the correct atom format */
|
2013-03-03 05:37:10 -05:00
|
|
|
mailbox = imap_atom(imap->mailbox);
|
2013-02-25 12:06:02 -05:00
|
|
|
if(!mailbox)
|
2013-03-05 14:59:53 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
/* Send the SELECT command */
|
|
|
|
result = imap_sendf(conn, "SELECT %s", mailbox);
|
2013-02-25 12:06:02 -05:00
|
|
|
|
|
|
|
Curl_safefree(mailbox);
|
2013-02-28 17:51:32 -05:00
|
|
|
|
2013-02-28 17:46:22 -05:00
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_SELECT);
|
2013-02-25 12:06:02 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-09 09:02:56 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-03-09 13:50:41 -05:00
|
|
|
* imap_perform_fetch()
|
2013-03-09 09:02:56 -05:00
|
|
|
*
|
|
|
|
* Sends a FETCH command to initiate the download of a message.
|
|
|
|
*/
|
2013-03-09 13:50:41 -05:00
|
|
|
static CURLcode imap_perform_fetch(struct connectdata *conn)
|
2013-02-25 12:06:02 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct IMAP *imap = conn->data->req.protop;
|
2013-02-25 12:06:02 -05:00
|
|
|
|
2013-03-06 14:33:49 -05:00
|
|
|
/* Check we have a UID */
|
|
|
|
if(!imap->uid) {
|
|
|
|
failf(conn->data, "Cannot FETCH without a UID.");
|
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
}
|
|
|
|
|
2013-02-25 12:06:02 -05:00
|
|
|
/* Send the FETCH command */
|
|
|
|
result = imap_sendf(conn, "FETCH %s BODY[%s]",
|
2013-03-06 14:33:49 -05:00
|
|
|
imap->uid,
|
2013-02-25 12:06:02 -05:00
|
|
|
imap->section ? imap->section : "");
|
2013-02-28 17:51:32 -05:00
|
|
|
|
2013-02-28 17:46:22 -05:00
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_FETCH);
|
2013-02-25 12:06:02 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-09 09:02:56 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-03-09 13:50:41 -05:00
|
|
|
* imap_perform_append()
|
2013-03-09 09:02:56 -05:00
|
|
|
*
|
|
|
|
* Sends an APPEND command to initiate the upload of a message.
|
|
|
|
*/
|
2013-03-09 13:50:41 -05:00
|
|
|
static CURLcode imap_perform_append(struct connectdata *conn)
|
2013-03-02 15:24:49 -05:00
|
|
|
{
|
2013-03-07 17:44:10 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct IMAP *imap = conn->data->req.protop;
|
2013-03-02 15:24:49 -05:00
|
|
|
char *mailbox;
|
|
|
|
|
2013-03-05 14:52:11 -05:00
|
|
|
/* Check we have a mailbox */
|
|
|
|
if(!imap->mailbox) {
|
|
|
|
failf(conn->data, "Cannot APPEND without a mailbox.");
|
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
}
|
|
|
|
|
2013-03-03 11:44:53 -05:00
|
|
|
/* Check we know the size of the upload */
|
2013-03-02 15:24:49 -05:00
|
|
|
if(conn->data->set.infilesize < 0) {
|
|
|
|
failf(conn->data, "Cannot APPEND with unknown input file size\n");
|
|
|
|
return CURLE_UPLOAD_FAILED;
|
|
|
|
}
|
|
|
|
|
2013-03-03 11:44:53 -05:00
|
|
|
/* Make sure the mailbox is in the correct atom format */
|
2013-03-02 15:24:49 -05:00
|
|
|
mailbox = imap_atom(imap->mailbox);
|
|
|
|
if(!mailbox)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
2013-03-03 11:44:53 -05:00
|
|
|
/* Send the APPEND command */
|
2013-03-02 15:24:49 -05:00
|
|
|
result = imap_sendf(conn, "APPEND %s (\\Seen) {%" FORMAT_OFF_T "}",
|
|
|
|
mailbox, conn->data->set.infilesize);
|
|
|
|
|
|
|
|
Curl_safefree(mailbox);
|
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_APPEND);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-09 07:12:20 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-03-09 13:50:41 -05:00
|
|
|
* imap_perform_logout()
|
2013-03-09 07:12:20 -05:00
|
|
|
*
|
|
|
|
* Performs the logout action prior to sclose() being called.
|
|
|
|
*/
|
2013-03-09 13:50:41 -05:00
|
|
|
static CURLcode imap_perform_logout(struct connectdata *conn)
|
2013-03-09 07:12:20 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
/* Send the LOGOUT command */
|
|
|
|
result = imap_sendf(conn, "LOGOUT");
|
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_LOGOUT);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
/* For the initial server greeting */
|
2012-03-24 07:55:34 -04:00
|
|
|
static CURLcode imap_state_servergreet_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(imapcode != 'O') {
|
|
|
|
failf(data, "Got unexpected imap-server response");
|
2013-02-27 16:00:35 -05:00
|
|
|
result = CURLE_FTP_WEIRD_SERVER_REPLY; /* TODO: fix this code */
|
2012-03-24 07:55:34 -04:00
|
|
|
}
|
2013-02-27 16:00:35 -05:00
|
|
|
else
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_capability(conn);
|
2012-03-24 07:55:34 -04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-02-11 17:41:08 -05:00
|
|
|
/* For CAPABILITY responses */
|
|
|
|
static CURLcode imap_state_capability_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
2013-02-26 12:10:54 -05:00
|
|
|
const char *line = data->state.buffer;
|
|
|
|
size_t wordlen;
|
2013-02-11 17:41:08 -05:00
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
2013-02-26 12:10:54 -05:00
|
|
|
/* Do we have a untagged response? */
|
|
|
|
if(imapcode == '*') {
|
|
|
|
line += 2;
|
|
|
|
|
|
|
|
/* Loop through the data line */
|
|
|
|
for(;;) {
|
|
|
|
while(*line &&
|
|
|
|
(*line == ' ' || *line == '\t' ||
|
|
|
|
*line == '\r' || *line == '\n')) {
|
|
|
|
|
|
|
|
line++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!*line)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Extract the word */
|
|
|
|
for(wordlen = 0; line[wordlen] && line[wordlen] != ' ' &&
|
|
|
|
line[wordlen] != '\t' && line[wordlen] != '\r' &&
|
|
|
|
line[wordlen] != '\n';)
|
|
|
|
wordlen++;
|
|
|
|
|
|
|
|
/* Does the server support the STARTTLS capability? */
|
|
|
|
if(wordlen == 8 && !memcmp(line, "STARTTLS", 8))
|
|
|
|
imapc->tls_supported = TRUE;
|
|
|
|
|
|
|
|
/* Has the server explicitly disabled clear text authentication? */
|
|
|
|
else if(wordlen == 13 && !memcmp(line, "LOGINDISABLED", 13))
|
|
|
|
imapc->login_disabled = TRUE;
|
|
|
|
|
|
|
|
/* Does the server support the SASL-IR capability? */
|
|
|
|
else if(wordlen == 7 && !memcmp(line, "SASL-IR", 7))
|
|
|
|
imapc->ir_supported = TRUE;
|
|
|
|
|
|
|
|
/* Do we have a SASL based authentication mechanism? */
|
|
|
|
else if(wordlen > 5 && !memcmp(line, "AUTH=", 5)) {
|
|
|
|
line += 5;
|
|
|
|
wordlen -= 5;
|
|
|
|
|
|
|
|
/* Test the word for a matching authentication mechanism */
|
|
|
|
if(wordlen == 5 && !memcmp(line, "LOGIN", 5))
|
|
|
|
imapc->authmechs |= SASL_MECH_LOGIN;
|
|
|
|
if(wordlen == 5 && !memcmp(line, "PLAIN", 5))
|
|
|
|
imapc->authmechs |= SASL_MECH_PLAIN;
|
|
|
|
else if(wordlen == 8 && !memcmp(line, "CRAM-MD5", 8))
|
|
|
|
imapc->authmechs |= SASL_MECH_CRAM_MD5;
|
|
|
|
else if(wordlen == 10 && !memcmp(line, "DIGEST-MD5", 10))
|
|
|
|
imapc->authmechs |= SASL_MECH_DIGEST_MD5;
|
|
|
|
else if(wordlen == 6 && !memcmp(line, "GSSAPI", 6))
|
|
|
|
imapc->authmechs |= SASL_MECH_GSSAPI;
|
|
|
|
else if(wordlen == 8 && !memcmp(line, "EXTERNAL", 8))
|
|
|
|
imapc->authmechs |= SASL_MECH_EXTERNAL;
|
|
|
|
else if(wordlen == 4 && !memcmp(line, "NTLM", 4))
|
|
|
|
imapc->authmechs |= SASL_MECH_NTLM;
|
2013-08-25 13:17:35 -04:00
|
|
|
else if(wordlen == 7 && !memcmp(line, "XOAUTH2", 7))
|
|
|
|
imapc->authmechs |= SASL_MECH_XOAUTH2;
|
2013-02-26 12:10:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
line += wordlen;
|
|
|
|
}
|
|
|
|
}
|
2013-02-27 15:48:24 -05:00
|
|
|
else if(imapcode == 'O') {
|
|
|
|
if(data->set.use_ssl && !conn->ssl[FIRSTSOCKET].use) {
|
|
|
|
/* We don't have a SSL/TLS connection yet, but SSL is requested */
|
|
|
|
if(imapc->tls_supported)
|
|
|
|
/* Switch to TLS connection now */
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_starttls(conn);
|
2013-02-27 15:48:24 -05:00
|
|
|
else if(data->set.use_ssl == CURLUSESSL_TRY)
|
|
|
|
/* Fallback and carry on with authentication */
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_authenticate(conn);
|
2013-02-27 15:48:24 -05:00
|
|
|
else {
|
|
|
|
failf(data, "STARTTLS not supported.");
|
|
|
|
result = CURLE_USE_SSL_FAILED;
|
|
|
|
}
|
2013-02-11 17:41:08 -05:00
|
|
|
}
|
2013-02-27 15:48:24 -05:00
|
|
|
else
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_authenticate(conn);
|
2013-02-11 17:41:08 -05:00
|
|
|
}
|
|
|
|
else
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_login(conn);
|
2013-02-11 17:41:08 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
/* For STARTTLS responses */
|
2009-12-12 16:54:01 -05:00
|
|
|
static CURLcode imap_state_starttls_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
2012-12-28 16:24:36 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(imapcode != 'O') {
|
2012-01-03 18:17:08 -05:00
|
|
|
if(data->set.use_ssl != CURLUSESSL_TRY) {
|
|
|
|
failf(data, "STARTTLS denied. %c", imapcode);
|
|
|
|
result = CURLE_USE_SSL_FAILED;
|
|
|
|
}
|
|
|
|
else
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_authenticate(conn);
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
2013-01-24 15:22:20 -05:00
|
|
|
else
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_upgrade_tls(conn);
|
2013-01-19 04:49:17 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-02-07 15:02:06 -05:00
|
|
|
/* For AUTHENTICATE PLAIN (without initial response) responses */
|
2013-01-06 17:25:14 -05:00
|
|
|
static CURLcode imap_state_auth_plain_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
size_t len = 0;
|
|
|
|
char *plainauth = NULL;
|
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(imapcode != '+') {
|
|
|
|
failf(data, "Access denied. %c", imapcode);
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Create the authorisation message */
|
|
|
|
result = Curl_sasl_create_plain_message(data, conn->user, conn->passwd,
|
|
|
|
&plainauth, &len);
|
|
|
|
|
|
|
|
/* Send the message */
|
|
|
|
if(!result) {
|
|
|
|
if(plainauth) {
|
|
|
|
result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", plainauth);
|
|
|
|
|
|
|
|
if(!result)
|
2013-02-27 16:19:48 -05:00
|
|
|
state(conn, IMAP_AUTHENTICATE_FINAL);
|
2013-01-06 17:25:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Curl_safefree(plainauth);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-02-07 15:02:06 -05:00
|
|
|
/* For AUTHENTICATE LOGIN (without initial response) responses */
|
2013-01-06 18:14:18 -05:00
|
|
|
static CURLcode imap_state_auth_login_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
size_t len = 0;
|
|
|
|
char *authuser = NULL;
|
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(imapcode != '+') {
|
|
|
|
failf(data, "Access denied: %d", imapcode);
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Create the user message */
|
|
|
|
result = Curl_sasl_create_login_message(data, conn->user,
|
|
|
|
&authuser, &len);
|
|
|
|
|
|
|
|
/* Send the user */
|
|
|
|
if(!result) {
|
|
|
|
if(authuser) {
|
|
|
|
result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", authuser);
|
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_AUTHENTICATE_LOGIN_PASSWD);
|
|
|
|
}
|
|
|
|
|
|
|
|
Curl_safefree(authuser);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For AUTHENTICATE LOGIN user entry responses */
|
|
|
|
static CURLcode imap_state_auth_login_password_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
size_t len = 0;
|
|
|
|
char *authpasswd = NULL;
|
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(imapcode != '+') {
|
|
|
|
failf(data, "Access denied: %d", imapcode);
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Create the password message */
|
|
|
|
result = Curl_sasl_create_login_message(data, conn->passwd,
|
|
|
|
&authpasswd, &len);
|
|
|
|
|
|
|
|
/* Send the password */
|
|
|
|
if(!result) {
|
|
|
|
if(authpasswd) {
|
|
|
|
result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", authpasswd);
|
|
|
|
|
|
|
|
if(!result)
|
2013-02-27 16:19:48 -05:00
|
|
|
state(conn, IMAP_AUTHENTICATE_FINAL);
|
2013-01-06 18:14:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Curl_safefree(authpasswd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2013-01-06 17:25:14 -05:00
|
|
|
|
2013-01-07 02:35:49 -05:00
|
|
|
#ifndef CURL_DISABLE_CRYPTO_AUTH
|
|
|
|
/* For AUTHENTICATE CRAM-MD5 responses */
|
|
|
|
static CURLcode imap_state_auth_cram_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
char *chlg64 = data->state.buffer;
|
|
|
|
size_t len = 0;
|
|
|
|
char *rplyb64 = NULL;
|
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(imapcode != '+') {
|
|
|
|
failf(data, "Access denied: %d", imapcode);
|
|
|
|
return CURLE_LOGIN_DENIED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the challenge */
|
|
|
|
for(chlg64 += 2; *chlg64 == ' ' || *chlg64 == '\t'; chlg64++)
|
|
|
|
;
|
|
|
|
|
|
|
|
/* Terminate the challenge */
|
|
|
|
if(*chlg64 != '=') {
|
|
|
|
for(len = strlen(chlg64); len--;)
|
|
|
|
if(chlg64[len] != '\r' && chlg64[len] != '\n' && chlg64[len] != ' ' &&
|
|
|
|
chlg64[len] != '\t')
|
|
|
|
break;
|
|
|
|
|
|
|
|
if(++len) {
|
|
|
|
chlg64[len] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create the response message */
|
|
|
|
result = Curl_sasl_create_cram_md5_message(data, chlg64, conn->user,
|
|
|
|
conn->passwd, &rplyb64, &len);
|
|
|
|
|
|
|
|
/* Send the response */
|
|
|
|
if(!result) {
|
|
|
|
if(rplyb64) {
|
|
|
|
result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", rplyb64);
|
|
|
|
|
|
|
|
if(!result)
|
2013-02-27 16:19:48 -05:00
|
|
|
state(conn, IMAP_AUTHENTICATE_FINAL);
|
2013-01-07 02:35:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Curl_safefree(rplyb64);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2013-01-07 06:01:05 -05:00
|
|
|
|
|
|
|
/* For AUTHENTICATE DIGEST-MD5 challenge responses */
|
|
|
|
static CURLcode imap_state_auth_digest_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
char *chlg64 = data->state.buffer;
|
|
|
|
size_t len = 0;
|
|
|
|
char *rplyb64 = NULL;
|
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(imapcode != '+') {
|
|
|
|
failf(data, "Access denied: %d", imapcode);
|
|
|
|
return CURLE_LOGIN_DENIED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the challenge */
|
|
|
|
for(chlg64 += 2; *chlg64 == ' ' || *chlg64 == '\t'; chlg64++)
|
|
|
|
;
|
|
|
|
|
|
|
|
/* Create the response message */
|
|
|
|
result = Curl_sasl_create_digest_md5_message(data, chlg64, conn->user,
|
|
|
|
conn->passwd, "imap",
|
|
|
|
&rplyb64, &len);
|
|
|
|
|
|
|
|
/* Send the response */
|
|
|
|
if(!result) {
|
|
|
|
if(rplyb64) {
|
|
|
|
result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", rplyb64);
|
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_AUTHENTICATE_DIGESTMD5_RESP);
|
|
|
|
}
|
|
|
|
|
|
|
|
Curl_safefree(rplyb64);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For AUTHENTICATE DIGEST-MD5 challenge-response responses */
|
|
|
|
static CURLcode imap_state_auth_digest_resp_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(imapcode != '+') {
|
|
|
|
failf(data, "Authentication failed: %d", imapcode);
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Send an empty response */
|
2013-07-24 11:05:02 -04:00
|
|
|
result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", "");
|
2013-01-07 06:01:05 -05:00
|
|
|
|
|
|
|
if(!result)
|
2013-02-27 16:19:48 -05:00
|
|
|
state(conn, IMAP_AUTHENTICATE_FINAL);
|
2013-01-07 06:01:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2013-01-07 02:35:49 -05:00
|
|
|
#endif
|
|
|
|
|
2013-01-06 21:47:12 -05:00
|
|
|
#ifdef USE_NTLM
|
2013-02-07 15:02:06 -05:00
|
|
|
/* For AUTHENTICATE NTLM (without initial response) responses */
|
2013-01-06 21:47:12 -05:00
|
|
|
static CURLcode imap_state_auth_ntlm_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
size_t len = 0;
|
|
|
|
char *type1msg = NULL;
|
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(imapcode != '+') {
|
|
|
|
failf(data, "Access denied: %d", imapcode);
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Create the type-1 message */
|
|
|
|
result = Curl_sasl_create_ntlm_type1_message(conn->user, conn->passwd,
|
|
|
|
&conn->ntlm,
|
|
|
|
&type1msg, &len);
|
|
|
|
|
|
|
|
/* Send the message */
|
|
|
|
if(!result) {
|
|
|
|
if(type1msg) {
|
|
|
|
result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", type1msg);
|
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_AUTHENTICATE_NTLM_TYPE2MSG);
|
|
|
|
}
|
|
|
|
|
|
|
|
Curl_safefree(type1msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For NTLM type-2 responses (sent in reponse to our type-1 message) */
|
|
|
|
static CURLcode imap_state_auth_ntlm_type2msg_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
size_t len = 0;
|
|
|
|
char *type3msg = NULL;
|
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(imapcode != '+') {
|
|
|
|
failf(data, "Access denied: %d", imapcode);
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Create the type-3 message */
|
|
|
|
result = Curl_sasl_create_ntlm_type3_message(data,
|
|
|
|
data->state.buffer + 2,
|
|
|
|
conn->user, conn->passwd,
|
|
|
|
&conn->ntlm,
|
|
|
|
&type3msg, &len);
|
|
|
|
|
|
|
|
/* Send the message */
|
|
|
|
if(!result) {
|
|
|
|
if(type3msg) {
|
|
|
|
result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", type3msg);
|
|
|
|
|
|
|
|
if(!result)
|
2013-02-27 16:19:48 -05:00
|
|
|
state(conn, IMAP_AUTHENTICATE_FINAL);
|
2013-01-06 21:47:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Curl_safefree(type3msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-08-25 13:17:35 -04:00
|
|
|
/* For AUTH XOAUTH2 (without initial response) responses */
|
|
|
|
static CURLcode imap_state_auth_xoauth2_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
size_t len = 0;
|
|
|
|
char *xoauth = NULL;
|
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(imapcode != '+') {
|
|
|
|
failf(data, "Access denied: %d", imapcode);
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Create the authorisation message */
|
|
|
|
result = Curl_sasl_create_xoauth2_message(conn->data, conn->user,
|
|
|
|
conn->xoauth2_bearer,
|
|
|
|
&xoauth, &len);
|
|
|
|
|
|
|
|
/* Send the message */
|
|
|
|
if(!result) {
|
|
|
|
if(xoauth) {
|
|
|
|
result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", xoauth);
|
|
|
|
|
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_AUTHENTICATE_FINAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
Curl_safefree(xoauth);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-01-06 17:25:14 -05:00
|
|
|
/* For final responses to the AUTHENTICATE sequence */
|
|
|
|
static CURLcode imap_state_auth_final_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if(imapcode != 'O') {
|
|
|
|
failf(data, "Authentication failed: %d", imapcode);
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
|
|
|
}
|
2013-02-15 13:33:10 -05:00
|
|
|
else
|
|
|
|
/* End of connect phase */
|
|
|
|
state(conn, IMAP_STOP);
|
2013-01-06 17:25:14 -05:00
|
|
|
|
|
|
|
return result;
|
2013-01-06 14:13:58 -05:00
|
|
|
}
|
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
/* For LOGIN responses */
|
2009-12-12 16:54:01 -05:00
|
|
|
static CURLcode imap_state_login_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *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 */
|
|
|
|
|
|
|
|
if(imapcode != 'O') {
|
|
|
|
failf(data, "Access denied. %c", imapcode);
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
|
|
|
}
|
2012-12-29 14:23:10 -05:00
|
|
|
else
|
|
|
|
/* End of connect phase */
|
|
|
|
state(conn, IMAP_STOP);
|
2012-03-24 07:55:34 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-05 16:36:25 -05:00
|
|
|
/* For LIST responses */
|
|
|
|
static CURLcode imap_state_list_resp(struct connectdata *conn, int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
char *line = conn->data->state.buffer;
|
|
|
|
size_t len = strlen(line);
|
|
|
|
|
|
|
|
(void)instate; /* No use for this yet */
|
|
|
|
|
|
|
|
if(imapcode == '*') {
|
2013-03-06 15:10:53 -05:00
|
|
|
/* Temporarily add the LF character back and send as body to the client */
|
2013-03-05 16:36:25 -05:00
|
|
|
line[len] = '\n';
|
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY, line, len + 1);
|
|
|
|
line[len] = '\0';
|
|
|
|
}
|
2013-03-06 15:10:53 -05:00
|
|
|
else if(imapcode != 'O')
|
|
|
|
result = CURLE_QUOTE_ERROR; /* TODO: Fix error code */
|
|
|
|
else
|
2013-03-05 16:36:25 -05:00
|
|
|
/* End of DO phase */
|
|
|
|
state(conn, IMAP_STOP);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-12-28 16:41:28 -05:00
|
|
|
/* For SELECT responses */
|
2013-02-28 16:18:36 -05:00
|
|
|
static CURLcode imap_state_select_resp(struct connectdata *conn, int imapcode,
|
2012-12-28 16:41:28 -05:00
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct IMAP *imap = conn->data->req.protop;
|
2013-02-26 15:56:14 -05:00
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
|
|
|
const char *line = data->state.buffer;
|
|
|
|
char tmp[20];
|
2012-12-28 18:59:11 -05:00
|
|
|
|
2012-12-28 16:41:28 -05:00
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
2013-02-26 15:56:14 -05:00
|
|
|
if(imapcode == '*') {
|
|
|
|
/* See if this is an UIDVALIDITY response */
|
|
|
|
if(sscanf(line + 2, "OK [UIDVALIDITY %19[0123456789]]", tmp) == 1) {
|
|
|
|
Curl_safefree(imapc->mailbox_uidvalidity);
|
|
|
|
imapc->mailbox_uidvalidity = strdup(tmp);
|
|
|
|
}
|
|
|
|
}
|
2013-02-27 15:53:34 -05:00
|
|
|
else if(imapcode == 'O') {
|
2013-02-26 16:12:24 -05:00
|
|
|
/* Check if the UIDVALIDITY has been specified and matches */
|
|
|
|
if(imap->uidvalidity && imapc->mailbox_uidvalidity &&
|
|
|
|
strcmp(imap->uidvalidity, imapc->mailbox_uidvalidity)) {
|
|
|
|
failf(conn->data, "Mailbox UIDVALIDITY has changed");
|
|
|
|
result = CURLE_REMOTE_FILE_NOT_FOUND;
|
|
|
|
}
|
2013-02-27 13:02:53 -05:00
|
|
|
else {
|
|
|
|
/* Note the currently opened mailbox on this connection */
|
|
|
|
imapc->mailbox = strdup(imap->mailbox);
|
|
|
|
|
2013-03-03 05:27:18 -05:00
|
|
|
if(imap->custom)
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_list(conn);
|
2013-03-03 05:27:18 -05:00
|
|
|
else
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_fetch(conn);
|
2013-02-27 13:02:53 -05:00
|
|
|
}
|
2013-02-26 16:12:24 -05:00
|
|
|
}
|
2013-02-27 15:53:34 -05:00
|
|
|
else {
|
|
|
|
failf(data, "Select failed");
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
|
|
|
}
|
2012-12-28 16:41:28 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-02 16:22:44 -05:00
|
|
|
/* For the (first line of the) FETCH responses */
|
2013-01-19 04:49:17 -05:00
|
|
|
static CURLcode imap_state_fetch_resp(struct connectdata *conn, int imapcode,
|
2009-12-12 16:54:01 -05:00
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
|
|
|
struct pingpong *pp = &imapc->pp;
|
|
|
|
const char *ptr = data->state.buffer;
|
2013-03-01 13:24:56 -05:00
|
|
|
bool parsed = FALSE;
|
|
|
|
curl_off_t size;
|
2012-03-24 07:55:34 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
2013-03-02 15:29:27 -05:00
|
|
|
if(imapcode != '*') {
|
2009-12-12 16:54:01 -05:00
|
|
|
Curl_pgrsSetDownloadSize(data, 0);
|
|
|
|
state(conn, IMAP_STOP);
|
2013-02-28 13:56:52 -05:00
|
|
|
return CURLE_REMOTE_FILE_NOT_FOUND; /* TODO: Fix error code */
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
|
2013-02-28 15:32:10 -05:00
|
|
|
/* Something like this is received "* 1 FETCH (BODY[TEXT] {2021}\r" so parse
|
|
|
|
the continuation data contained within the curly brackets */
|
2009-12-12 16:54:01 -05:00
|
|
|
while(*ptr && (*ptr != '{'))
|
|
|
|
ptr++;
|
|
|
|
|
|
|
|
if(*ptr == '{') {
|
2013-03-01 13:24:56 -05:00
|
|
|
char *endptr;
|
|
|
|
size = curlx_strtoofft(ptr + 1, &endptr, 10);
|
|
|
|
if(endptr - ptr > 1 && endptr[0] == '}' &&
|
|
|
|
endptr[1] == '\r' && endptr[2] == '\0')
|
|
|
|
parsed = TRUE;
|
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-03-01 13:24:56 -05:00
|
|
|
if(parsed) {
|
2013-02-23 04:48:52 -05:00
|
|
|
infof(data, "Found %" FORMAT_OFF_TU " bytes to download\n", size);
|
2013-03-01 13:24:56 -05:00
|
|
|
Curl_pgrsSetDownloadSize(data, size);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
if(pp->cache) {
|
|
|
|
/* At this point there is a bunch of data in the header "cache" that is
|
|
|
|
actually body content, send it as body and then skip it. Do note
|
|
|
|
that there may even be additional "headers" after the body. */
|
|
|
|
size_t chunk = pp->cache_size;
|
|
|
|
|
2013-02-23 04:48:52 -05:00
|
|
|
if(chunk > (size_t)size)
|
2013-02-28 15:32:10 -05:00
|
|
|
/* The conversion from curl_off_t to size_t is always fine here */
|
2013-02-23 04:48:52 -05:00
|
|
|
chunk = (size_t)size;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY, pp->cache, chunk);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2013-03-01 13:38:27 -05:00
|
|
|
data->req.bytecount += chunk;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-02-28 15:32:10 -05:00
|
|
|
infof(data, "Written %" FORMAT_OFF_TU " bytes, %" FORMAT_OFF_TU
|
2013-09-08 05:30:43 -04:00
|
|
|
" bytes are left for transfer\n", (curl_off_t)chunk,
|
|
|
|
size - chunk);
|
2013-02-28 15:32:10 -05:00
|
|
|
|
|
|
|
/* Have we used the entire cache or just part of it?*/
|
2009-12-12 16:54:01 -05:00
|
|
|
if(pp->cache_size > chunk) {
|
2013-02-28 15:32:10 -05:00
|
|
|
/* Only part of it so shrink the cache to fit the trailing data */
|
|
|
|
memmove(pp->cache, pp->cache + chunk, pp->cache_size - chunk);
|
2009-12-12 16:54:01 -05:00
|
|
|
pp->cache_size -= chunk;
|
|
|
|
}
|
|
|
|
else {
|
2013-02-28 15:32:10 -05:00
|
|
|
/* Free the cache */
|
2012-12-28 16:24:36 -05:00
|
|
|
Curl_safefree(pp->cache);
|
2013-02-28 15:32:10 -05:00
|
|
|
|
|
|
|
/* Reset the cache size */
|
2009-12-12 16:54:01 -05:00
|
|
|
pp->cache_size = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-08 05:30:43 -04:00
|
|
|
if(data->req.bytecount == size)
|
2013-02-28 15:32:10 -05:00
|
|
|
/* The entire data is already transferred! */
|
2010-04-16 17:43:04 -04:00
|
|
|
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
|
2013-03-01 13:38:27 -05:00
|
|
|
else {
|
2009-12-12 16:54:01 -05:00
|
|
|
/* IMAP download */
|
2013-03-01 13:38:27 -05:00
|
|
|
data->req.maxdownload = size;
|
2013-02-25 18:00:08 -05:00
|
|
|
Curl_setup_transfer(conn, FIRSTSOCKET, size, FALSE, NULL, -1, NULL);
|
2013-03-01 13:38:27 -05:00
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
2013-03-01 13:24:56 -05:00
|
|
|
else {
|
2009-12-12 16:54:01 -05:00
|
|
|
/* We don't know how to parse this line */
|
2013-03-01 13:24:56 -05:00
|
|
|
failf(pp->conn->data, "Failed to parse FETCH response.");
|
2009-12-12 16:54:01 -05:00
|
|
|
result = CURLE_FTP_WEIRD_SERVER_REPLY; /* TODO: fix this code */
|
2013-03-01 13:24:56 -05:00
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-02-28 15:32:10 -05:00
|
|
|
/* End of DO phase */
|
2009-12-12 16:54:01 -05:00
|
|
|
state(conn, IMAP_STOP);
|
2012-03-24 07:55:34 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-02 16:22:44 -05:00
|
|
|
/* For final FETCH responses performed after the download */
|
2013-02-28 13:42:42 -05:00
|
|
|
static CURLcode imap_state_fetch_final_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
(void)instate; /* No use for this yet */
|
|
|
|
|
2013-03-02 15:29:27 -05:00
|
|
|
if(imapcode != 'O')
|
2013-02-28 13:42:42 -05:00
|
|
|
result = CURLE_FTP_WEIRD_SERVER_REPLY; /* TODO: Fix error code */
|
|
|
|
else
|
2013-03-06 15:19:46 -05:00
|
|
|
/* End of DONE phase */
|
|
|
|
state(conn, IMAP_STOP);
|
2013-02-28 13:42:42 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-01 14:06:18 -05:00
|
|
|
/* For APPEND responses */
|
2013-03-02 16:22:44 -05:00
|
|
|
static CURLcode imap_state_append_resp(struct connectdata *conn, int imapcode,
|
2013-03-01 14:06:18 -05:00
|
|
|
imapstate instate)
|
|
|
|
{
|
2013-03-02 15:40:38 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2013-03-01 14:06:18 -05:00
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
|
|
|
|
(void)instate; /* No use for this yet */
|
|
|
|
|
2013-03-02 15:35:03 -05:00
|
|
|
if(imapcode != '+') {
|
2013-03-02 15:40:38 -05:00
|
|
|
result = CURLE_UPLOAD_FAILED;
|
2013-03-02 15:35:03 -05:00
|
|
|
}
|
|
|
|
else {
|
2013-03-06 15:31:53 -05:00
|
|
|
/* Set the progress upload size */
|
2013-03-01 14:06:18 -05:00
|
|
|
Curl_pgrsSetUploadSize(data, data->set.infilesize);
|
2013-03-02 16:22:44 -05:00
|
|
|
|
|
|
|
/* IMAP upload */
|
|
|
|
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, FIRSTSOCKET, NULL);
|
2013-03-02 15:40:38 -05:00
|
|
|
|
2013-03-06 15:31:53 -05:00
|
|
|
/* End of DO phase */
|
|
|
|
state(conn, IMAP_STOP);
|
|
|
|
}
|
2013-03-02 15:40:38 -05:00
|
|
|
|
|
|
|
return result;
|
2013-03-01 14:06:18 -05:00
|
|
|
}
|
|
|
|
|
2013-03-01 14:34:51 -05:00
|
|
|
/* For final APPEND responses performed after the upload */
|
|
|
|
static CURLcode imap_state_append_final_resp(struct connectdata *conn,
|
|
|
|
int imapcode,
|
|
|
|
imapstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
(void)instate; /* No use for this yet */
|
|
|
|
|
2013-03-06 15:31:53 -05:00
|
|
|
if(imapcode != 'O')
|
2013-03-01 14:34:51 -05:00
|
|
|
result = CURLE_UPLOAD_FAILED;
|
2013-03-06 15:31:53 -05:00
|
|
|
else
|
|
|
|
/* End of DONE phase */
|
|
|
|
state(conn, IMAP_STOP);
|
2013-03-01 14:34:51 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
static CURLcode imap_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];
|
|
|
|
int imapcode;
|
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
|
|
|
struct pingpong *pp = &imapc->pp;
|
|
|
|
size_t nread = 0;
|
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
/* Busy upgrading the connection; right now all I/O is SSL/TLS, not IMAP */
|
2011-02-15 18:56:46 -05:00
|
|
|
if(imapc->state == IMAP_UPGRADETLS)
|
2013-03-09 13:50:41 -05:00
|
|
|
return imap_perform_upgrade_tls(conn);
|
2011-02-15 18:56:46 -05:00
|
|
|
|
2012-12-28 16:24:36 -05: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-02-27 13:49:00 -05:00
|
|
|
do {
|
|
|
|
/* Read the response from the server */
|
|
|
|
result = Curl_pp_readresp(sock, pp, &imapcode, &nread);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-02-27 13:49:00 -05:00
|
|
|
/* Was there an error parsing the response line? */
|
|
|
|
if(imapcode == -1)
|
|
|
|
return CURLE_FTP_WEIRD_SERVER_REPLY;
|
|
|
|
|
|
|
|
if(!imapcode)
|
|
|
|
break;
|
2013-02-24 14:23:33 -05:00
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
/* We have now received a full IMAP server response */
|
|
|
|
switch(imapc->state) {
|
|
|
|
case IMAP_SERVERGREET:
|
|
|
|
result = imap_state_servergreet_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
2013-01-06 14:13:58 -05:00
|
|
|
case IMAP_CAPABILITY:
|
|
|
|
result = imap_state_capability_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
2013-02-10 16:18:30 -05:00
|
|
|
case IMAP_STARTTLS:
|
|
|
|
result = imap_state_starttls_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
2013-01-06 17:25:14 -05:00
|
|
|
case IMAP_AUTHENTICATE_PLAIN:
|
|
|
|
result = imap_state_auth_plain_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
2013-01-06 18:14:18 -05:00
|
|
|
case IMAP_AUTHENTICATE_LOGIN:
|
|
|
|
result = imap_state_auth_login_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IMAP_AUTHENTICATE_LOGIN_PASSWD:
|
|
|
|
result = imap_state_auth_login_password_resp(conn, imapcode,
|
|
|
|
imapc->state);
|
|
|
|
break;
|
|
|
|
|
2013-01-07 02:35:49 -05:00
|
|
|
#ifndef CURL_DISABLE_CRYPTO_AUTH
|
|
|
|
case IMAP_AUTHENTICATE_CRAMMD5:
|
|
|
|
result = imap_state_auth_cram_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
2013-01-07 06:01:05 -05:00
|
|
|
|
|
|
|
case IMAP_AUTHENTICATE_DIGESTMD5:
|
|
|
|
result = imap_state_auth_digest_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IMAP_AUTHENTICATE_DIGESTMD5_RESP:
|
|
|
|
result = imap_state_auth_digest_resp_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
2013-01-07 02:35:49 -05:00
|
|
|
#endif
|
|
|
|
|
2013-01-06 21:47:12 -05:00
|
|
|
#ifdef USE_NTLM
|
|
|
|
case IMAP_AUTHENTICATE_NTLM:
|
|
|
|
result = imap_state_auth_ntlm_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IMAP_AUTHENTICATE_NTLM_TYPE2MSG:
|
|
|
|
result = imap_state_auth_ntlm_type2msg_resp(conn, imapcode,
|
|
|
|
imapc->state);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2013-08-25 13:17:35 -04:00
|
|
|
case IMAP_AUTHENTICATE_XOAUTH2:
|
|
|
|
result = imap_state_auth_xoauth2_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
2013-02-27 16:19:48 -05:00
|
|
|
case IMAP_AUTHENTICATE_FINAL:
|
2013-01-06 17:25:14 -05:00
|
|
|
result = imap_state_auth_final_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
2012-12-30 07:44:09 -05:00
|
|
|
case IMAP_LOGIN:
|
|
|
|
result = imap_state_login_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
2013-03-05 16:36:25 -05:00
|
|
|
case IMAP_LIST:
|
|
|
|
result = imap_state_list_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
case IMAP_SELECT:
|
|
|
|
result = imap_state_select_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
2013-02-25 11:59:05 -05:00
|
|
|
case IMAP_FETCH:
|
|
|
|
result = imap_state_fetch_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
2013-02-28 13:42:42 -05:00
|
|
|
case IMAP_FETCH_FINAL:
|
|
|
|
result = imap_state_fetch_final_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
2013-03-01 14:06:18 -05:00
|
|
|
case IMAP_APPEND:
|
|
|
|
result = imap_state_append_resp(conn, imapcode, imapc->state);
|
|
|
|
break;
|
|
|
|
|
2013-03-01 14:34:51 -05:00
|
|
|
case IMAP_APPEND_FINAL:
|
|
|
|
result = imap_state_append_final_resp(conn, imapcode, imapc->state);
|
2013-03-03 05:09:44 -05:00
|
|
|
break;
|
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
case IMAP_LOGOUT:
|
|
|
|
/* fallthrough, just stop! */
|
|
|
|
default:
|
|
|
|
/* internal error */
|
|
|
|
state(conn, IMAP_STOP);
|
|
|
|
break;
|
|
|
|
}
|
2013-02-27 13:49:00 -05:00
|
|
|
} while(!result && imapc->state != IMAP_STOP && Curl_pp_moredata(pp));
|
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 */
|
2013-01-19 04:49:17 -05:00
|
|
|
static CURLcode imap_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 imap_conn *imapc = &conn->proto.imapc;
|
2011-02-14 13:41:42 -05:00
|
|
|
|
2013-09-10 14:40:11 -04:00
|
|
|
if((conn->handler->flags & PROTOPT_SSL) && !imapc->ssldone) {
|
2011-02-14 13:41:42 -05:00
|
|
|
result = Curl_ssl_connect_nonblocking(conn, FIRSTSOCKET, &imapc->ssldone);
|
2013-09-10 14:40:11 -04:00
|
|
|
if(result || !imapc->ssldone)
|
|
|
|
return result;
|
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-09-10 14:40:11 -04:00
|
|
|
result = Curl_pp_statemach(&imapc->pp, FALSE);
|
2011-09-05 14:46:09 -04:00
|
|
|
*done = (imapc->state == IMAP_STOP) ? TRUE : FALSE;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-02-15 05:03:42 -05:00
|
|
|
static CURLcode imap_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 imap_conn *imapc = &conn->proto.imapc;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-03-07 17:44:10 -05:00
|
|
|
while(imapc->state != IMAP_STOP && !result)
|
2013-02-16 18:37:50 -05:00
|
|
|
result = Curl_pp_statemach(&imapc->pp, TRUE);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
/* Allocate and initialize the struct IMAP for the current SessionHandle if
|
|
|
|
required */
|
2009-12-12 16:54:01 -05:00
|
|
|
static CURLcode imap_init(struct connectdata *conn)
|
|
|
|
{
|
2013-03-09 17:25:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2009-12-12 16:54:01 -05:00
|
|
|
struct SessionHandle *data = conn->data;
|
2013-08-04 13:34:16 -04:00
|
|
|
struct IMAP *imap;
|
2012-12-28 16:24:36 -05:00
|
|
|
|
2013-08-05 04:32:08 -04:00
|
|
|
imap = data->req.protop = calloc(sizeof(struct IMAP), 1);
|
2013-08-04 13:34:16 -04:00
|
|
|
if(!imap)
|
|
|
|
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 IMAP "protocol connect" and "doing" phases only */
|
|
|
|
static int imap_getsock(struct connectdata *conn, curl_socket_t *socks,
|
|
|
|
int numsocks)
|
|
|
|
{
|
|
|
|
return Curl_pp_getsock(&conn->proto.imapc.pp, socks, numsocks);
|
|
|
|
}
|
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2013-04-12 13:01:03 -04:00
|
|
|
* imap_connect()
|
|
|
|
*
|
|
|
|
* This function should do everything that is to be considered a part of the
|
|
|
|
* connection phase.
|
2009-12-12 16:54:01 -05:00
|
|
|
*
|
|
|
|
* The variable 'done' points to will be TRUE if the protocol-layer connect
|
2013-08-09 17:39:09 -04:00
|
|
|
* phase is done when this function returns, or FALSE if not.
|
2009-12-12 16:54:01 -05:00
|
|
|
*/
|
2013-01-19 04:49:17 -05:00
|
|
|
static CURLcode imap_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 imap_conn *imapc = &conn->proto.imapc;
|
|
|
|
struct pingpong *pp = &imapc->pp;
|
|
|
|
|
|
|
|
*done = FALSE; /* default to not done yet */
|
|
|
|
|
2013-02-13 15:12:21 -05:00
|
|
|
/* We always support persistent connections in IMAP */
|
2009-12-12 16:54:01 -05:00
|
|
|
conn->bits.close = FALSE;
|
|
|
|
|
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 = imap_statemach_act;
|
|
|
|
pp->endofresp = imap_endofresp;
|
|
|
|
pp->conn = conn;
|
|
|
|
|
2013-04-13 10:58:15 -04:00
|
|
|
/* Set the default preferred authentication mechanism */
|
|
|
|
imapc->prefmech = SASL_AUTH_ANY;
|
|
|
|
|
2013-02-13 15:12:21 -05:00
|
|
|
/* Initialise the pingpong layer */
|
|
|
|
Curl_pp_init(pp);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-04-13 10:58:15 -04:00
|
|
|
/* Parse the URL options */
|
|
|
|
result = imap_parse_url_options(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
/* Start off waiting for the server greeting response */
|
2009-12-12 16:54:01 -05:00
|
|
|
state(conn, IMAP_SERVERGREET);
|
2012-12-28 16:24:36 -05:00
|
|
|
|
2013-02-06 19:18:23 -05:00
|
|
|
/* Start off with an response id of '*' */
|
|
|
|
strcpy(imapc->resptag, "*");
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-01-17 06:59:23 -05:00
|
|
|
result = imap_multi_statemach(conn, done);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_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 imap_done(struct connectdata *conn, CURLcode status,
|
|
|
|
bool premature)
|
|
|
|
{
|
2013-02-16 18:37:50 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2009-12-12 16:54:01 -05:00
|
|
|
struct SessionHandle *data = conn->data;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct IMAP *imap = data->req.protop;
|
2012-12-28 16:24:36 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
(void)premature;
|
|
|
|
|
|
|
|
if(!imap)
|
2013-02-23 15:02:05 -05:00
|
|
|
/* When the easy handle is removed from the multi interface while libcurl
|
|
|
|
is still trying to resolve the host name, the IMAP struct is not yet
|
|
|
|
initialized. However, the removal action calls Curl_done() which in
|
|
|
|
turn calls this function, so we simply return success. */
|
2009-12-12 16:54:01 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
|
|
|
|
if(status) {
|
|
|
|
conn->bits.close = TRUE; /* marked for closure */
|
2012-12-28 16:24:36 -05:00
|
|
|
result = status; /* use the already set error code */
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
2013-03-05 17:04:03 -05:00
|
|
|
else if(!data->set.connect_only && !imap->custom &&
|
|
|
|
(imap->uid || data->set.upload)) {
|
2013-03-01 14:34:51 -05:00
|
|
|
/* Handle responses after FETCH or APPEND transfer has finished */
|
|
|
|
if(!data->set.upload)
|
|
|
|
state(conn, IMAP_FETCH_FINAL);
|
|
|
|
else {
|
|
|
|
/* End the APPEND command first by sending an empty line */
|
2013-07-24 11:05:02 -04:00
|
|
|
result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", "");
|
2013-03-01 14:34:51 -05:00
|
|
|
if(!result)
|
|
|
|
state(conn, IMAP_APPEND_FINAL);
|
|
|
|
}
|
2013-02-28 13:42:42 -05:00
|
|
|
|
|
|
|
/* Run the state-machine
|
|
|
|
|
|
|
|
TODO: when the multi interface is used, this _really_ should be using
|
|
|
|
the imap_multi_statemach function but we have no general support for
|
|
|
|
non-blocking DONE operations, not in the multi state machine and with
|
|
|
|
Curl_done() invokes on several places in the code!
|
|
|
|
*/
|
2013-03-01 14:34:51 -05:00
|
|
|
if(!result)
|
|
|
|
result = imap_block_statemach(conn);
|
2013-02-28 13:42:42 -05:00
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-02-22 18:29:33 -05:00
|
|
|
/* Cleanup our per-request based variables */
|
2013-02-23 04:29:40 -05:00
|
|
|
Curl_safefree(imap->mailbox);
|
2013-02-23 12:24:53 -05:00
|
|
|
Curl_safefree(imap->uidvalidity);
|
|
|
|
Curl_safefree(imap->uid);
|
|
|
|
Curl_safefree(imap->section);
|
2013-03-03 04:12:27 -05:00
|
|
|
Curl_safefree(imap->custom);
|
|
|
|
Curl_safefree(imap->custom_params);
|
2013-02-22 18:29:33 -05:00
|
|
|
|
2013-02-23 06:34:52 -05:00
|
|
|
/* Clear the transfer mode for the next request */
|
2009-12-12 16:54:01 -05:00
|
|
|
imap->transfer = FTPTRANSFER_BODY;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_perform()
|
|
|
|
*
|
2013-03-03 05:21:29 -05:00
|
|
|
* This is the actual DO function for IMAP. Fetch or append a message, or do
|
|
|
|
* other things according to the options previously setup.
|
2009-12-12 16:54:01 -05:00
|
|
|
*/
|
2012-12-28 16:24:36 -05:00
|
|
|
static CURLcode imap_perform(struct connectdata *conn, bool *connected,
|
|
|
|
bool *dophase_done)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2012-12-28 16:24:36 -05:00
|
|
|
/* This is IMAP and no proxy */
|
|
|
|
CURLcode result = CURLE_OK;
|
2013-02-27 13:02:53 -05:00
|
|
|
struct SessionHandle *data = conn->data;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct IMAP *imap = data->req.protop;
|
2013-02-27 13:02:53 -05:00
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
2013-03-03 05:21:29 -05:00
|
|
|
bool selected = FALSE;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
|
|
|
DEBUGF(infof(conn->data, "DO phase starts\n"));
|
|
|
|
|
|
|
|
if(conn->data->set.opt_no_body) {
|
2012-12-28 16:24:36 -05:00
|
|
|
/* Requested no body means no transfer */
|
2009-12-12 16:54:01 -05:00
|
|
|
imap->transfer = FTPTRANSFER_INFO;
|
|
|
|
}
|
|
|
|
|
|
|
|
*dophase_done = FALSE; /* not done yet */
|
|
|
|
|
2013-03-03 05:21:29 -05:00
|
|
|
/* Determine if the requested mailbox (with the same UIDVALIDITY if set)
|
|
|
|
has already been selected on this connection */
|
|
|
|
if(imap->mailbox && imapc->mailbox &&
|
|
|
|
!strcmp(imap->mailbox, imapc->mailbox) &&
|
|
|
|
(!imap->uidvalidity || !imapc->mailbox_uidvalidity ||
|
|
|
|
!strcmp(imap->uidvalidity, imapc->mailbox_uidvalidity)))
|
|
|
|
selected = TRUE;
|
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
/* Start the first command in the DO phase */
|
2013-03-01 14:49:14 -05:00
|
|
|
if(conn->data->set.upload)
|
|
|
|
/* APPEND can be executed directly */
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_append(conn);
|
2013-03-03 05:21:29 -05:00
|
|
|
else if(imap->custom && (selected || !imap->mailbox))
|
|
|
|
/* Custom command using the same mailbox or no mailbox */
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_list(conn);
|
2013-03-05 17:04:03 -05:00
|
|
|
else if(!imap->custom && selected && imap->uid)
|
2013-03-03 05:21:29 -05:00
|
|
|
/* FETCH from the same mailbox */
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_fetch(conn);
|
2013-03-07 17:56:19 -05:00
|
|
|
else if(imap->mailbox && !selected && (imap->custom || imap->uid))
|
2013-03-03 05:21:29 -05:00
|
|
|
/* SELECT the mailbox */
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_select(conn);
|
2013-03-05 17:04:03 -05:00
|
|
|
else
|
|
|
|
/* LIST */
|
2013-03-09 13:50:41 -05:00
|
|
|
result = imap_perform_list(conn);
|
2013-02-28 05:23:50 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2013-02-23 15:02:05 -05:00
|
|
|
/* Run the state-machine */
|
2013-01-17 06:59:23 -05:00
|
|
|
result = imap_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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_do()
|
|
|
|
*
|
|
|
|
* This function is registered as 'curl_do' function. It decodes the path
|
|
|
|
* parts etc as a wrapper to the actual DO function (imap_perform).
|
|
|
|
*
|
|
|
|
* The input argument is already checked for validity.
|
|
|
|
*/
|
|
|
|
static CURLcode imap_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 */
|
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
/* Parse the URL path */
|
2013-02-16 18:37:50 -05:00
|
|
|
result = imap_parse_url_path(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2013-03-03 04:49:37 -05:00
|
|
|
/* Parse the custom request */
|
|
|
|
result = imap_parse_custom_request(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2013-02-16 18:37:50 -05:00
|
|
|
result = imap_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
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_disconnect()
|
|
|
|
*
|
|
|
|
* Disconnect from an IMAP server. Cleanup protocol-specific per-connection
|
|
|
|
* resources. BLOCKING.
|
|
|
|
*/
|
2010-11-19 07:43:20 -05:00
|
|
|
static CURLcode imap_disconnect(struct connectdata *conn, bool dead_connection)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2013-03-03 08:13:59 -05:00
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2012-12-28 16:24:36 -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. */
|
2012-12-28 16:24:36 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
/* The IMAP session may or may not have been allocated/setup at this
|
|
|
|
point! */
|
2010-11-19 07:43:20 -05:00
|
|
|
if(!dead_connection && imapc->pp.conn)
|
2013-03-09 13:50:41 -05:00
|
|
|
if(!imap_perform_logout(conn))
|
2013-03-09 06:55:48 -05:00
|
|
|
(void)imap_block_statemach(conn); /* ignore errors on LOGOUT */
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
/* Disconnect from the server */
|
2009-12-12 16:54:01 -05:00
|
|
|
Curl_pp_disconnect(&imapc->pp);
|
|
|
|
|
2013-01-06 17:25:14 -05:00
|
|
|
/* Cleanup the SASL module */
|
|
|
|
Curl_sasl_cleanup(conn, imapc->authused);
|
|
|
|
|
2013-02-26 15:42:01 -05:00
|
|
|
/* Cleanup our connection based variables */
|
2013-02-27 12:31:08 -05:00
|
|
|
Curl_safefree(imapc->mailbox);
|
2013-02-26 15:42:01 -05:00
|
|
|
Curl_safefree(imapc->mailbox_uidvalidity);
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2012-12-28 16:24:36 -05:00
|
|
|
/* Call this when the DO phase has completed */
|
|
|
|
static CURLcode imap_dophase_done(struct connectdata *conn, bool connected)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2013-08-05 04:32:08 -04:00
|
|
|
struct IMAP *imap = conn->data->req.protop;
|
2012-12-28 16:24:36 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
(void)connected;
|
|
|
|
|
|
|
|
if(imap->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-12-28 16:24:36 -05:00
|
|
|
static CURLcode imap_doing(struct connectdata *conn, bool *dophase_done)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2012-12-28 16:24:36 -05:00
|
|
|
CURLcode result = imap_multi_statemach(conn, dophase_done);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2012-12-28 16:41:28 -05:00
|
|
|
if(result)
|
|
|
|
DEBUGF(infof(conn->data, "DO phase failed\n"));
|
2013-03-08 18:02:20 -05:00
|
|
|
else if(*dophase_done) {
|
|
|
|
result = imap_dophase_done(conn, FALSE /* not connected */);
|
2012-12-28 16:41:28 -05:00
|
|
|
|
2013-03-08 18:02:20 -05:00
|
|
|
DEBUGF(infof(conn->data, "DO phase is complete\n"));
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
2012-12-28 16:24:36 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_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-12-28 16:24:36 -05:00
|
|
|
static CURLcode imap_regular_transfer(struct connectdata *conn,
|
|
|
|
bool *dophase_done)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
2012-12-28 16:24:36 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
bool connected = FALSE;
|
2009-12-12 16:54:01 -05:00
|
|
|
struct SessionHandle *data = conn->data;
|
2012-12-28 16:24:36 -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);
|
|
|
|
Curl_pgrsSetUploadSize(data, 0);
|
|
|
|
Curl_pgrsSetDownloadSize(data, 0);
|
|
|
|
|
2013-03-08 18:25:04 -05:00
|
|
|
/* Carry out the perform */
|
2012-12-28 16:24:36 -05:00
|
|
|
result = imap_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 = imap_dophase_done(conn, connected);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-02-28 16:18:36 -05:00
|
|
|
static CURLcode imap_setup_connection(struct connectdata *conn)
|
2009-12-12 16:54:01 -05:00
|
|
|
{
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
|
2013-08-04 13:34:16 -04:00
|
|
|
/* Initialise the IMAP layer */
|
|
|
|
CURLcode result = imap_init(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
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 IMAP 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_imap)
|
|
|
|
conn->handler = &Curl_handler_imap_proxy;
|
|
|
|
else {
|
|
|
|
#ifdef USE_SSL
|
|
|
|
conn->handler = &Curl_handler_imaps_proxy;
|
|
|
|
#else
|
|
|
|
failf(data, "IMAPS not supported!");
|
|
|
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
|
|
|
#endif
|
|
|
|
}
|
2012-12-28 16:24:36 -05:00
|
|
|
|
2013-08-04 13:34:16 -04:00
|
|
|
/* set it up as an HTTP connection instead */
|
|
|
|
return conn->handler->setup_connection(conn);
|
2009-12-12 16:54:01 -05:00
|
|
|
#else
|
|
|
|
failf(data, "IMAP over http proxy requires HTTP support built-in!");
|
|
|
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
data->state.path++; /* don't include the initial slash */
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2013-04-12 13:05:53 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_sendf()
|
|
|
|
*
|
|
|
|
* Sends the formated string as an IMAP command to the server.
|
|
|
|
*
|
|
|
|
* Designed to never block.
|
|
|
|
*/
|
|
|
|
static CURLcode imap_sendf(struct connectdata *conn, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
|
|
|
char *taggedfmt;
|
|
|
|
va_list ap;
|
2013-07-24 10:44:37 -04:00
|
|
|
|
|
|
|
DEBUGASSERT(fmt);
|
2013-04-12 13:05:53 -04:00
|
|
|
|
|
|
|
/* Calculate the next command ID wrapping at 3 digits */
|
|
|
|
imapc->cmdid = (imapc->cmdid + 1) % 1000;
|
|
|
|
|
|
|
|
/* Calculate the tag based on the connection ID and command ID */
|
|
|
|
snprintf(imapc->resptag, sizeof(imapc->resptag), "%c%03d",
|
2013-07-23 09:59:07 -04:00
|
|
|
'A' + curlx_sltosi(conn->connection_id % 26), imapc->cmdid);
|
2013-04-12 13:05:53 -04:00
|
|
|
|
|
|
|
/* Prefix the format with the tag */
|
|
|
|
taggedfmt = aprintf("%s %s", imapc->resptag, fmt);
|
|
|
|
if(!taggedfmt)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
/* Send the data with the tag */
|
2013-07-24 10:44:37 -04:00
|
|
|
va_start(ap, fmt);
|
2013-04-12 13:05:53 -04:00
|
|
|
result = Curl_pp_vsendf(&imapc->pp, taggedfmt, ap);
|
2013-07-24 10:44:37 -04:00
|
|
|
va_end(ap);
|
2013-04-12 13:05:53 -04:00
|
|
|
|
|
|
|
Curl_safefree(taggedfmt);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_atom()
|
|
|
|
*
|
|
|
|
* Checks the input string for characters that need escaping and returns an
|
|
|
|
* atom ready for sending to the server.
|
|
|
|
*
|
|
|
|
* The returned string needs to be freed.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static char *imap_atom(const char *str)
|
|
|
|
{
|
|
|
|
const char *p1;
|
|
|
|
char *p2;
|
|
|
|
size_t backsp_count = 0;
|
|
|
|
size_t quote_count = 0;
|
|
|
|
bool space_exists = FALSE;
|
|
|
|
size_t newlen = 0;
|
|
|
|
char *newstr = NULL;
|
|
|
|
|
|
|
|
if(!str)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Count any unescapped characters */
|
|
|
|
p1 = str;
|
|
|
|
while(*p1) {
|
|
|
|
if(*p1 == '\\')
|
|
|
|
backsp_count++;
|
|
|
|
else if(*p1 == '"')
|
|
|
|
quote_count++;
|
|
|
|
else if(*p1 == ' ')
|
|
|
|
space_exists = TRUE;
|
|
|
|
|
|
|
|
p1++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Does the input contain any unescapped characters? */
|
|
|
|
if(!backsp_count && !quote_count && !space_exists)
|
|
|
|
return strdup(str);
|
|
|
|
|
|
|
|
/* Calculate the new string length */
|
|
|
|
newlen = strlen(str) + backsp_count + quote_count + (space_exists ? 2 : 0);
|
|
|
|
|
|
|
|
/* Allocate the new string */
|
|
|
|
newstr = (char *) malloc((newlen + 1) * sizeof(char));
|
|
|
|
if(!newstr)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Surround the string in quotes if necessary */
|
|
|
|
p2 = newstr;
|
|
|
|
if(space_exists) {
|
|
|
|
newstr[0] = '"';
|
|
|
|
newstr[newlen - 1] = '"';
|
|
|
|
p2++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy the string, escaping backslash and quote characters along the way */
|
|
|
|
p1 = str;
|
|
|
|
while(*p1) {
|
|
|
|
if(*p1 == '\\' || *p1 == '"') {
|
|
|
|
*p2 = '\\';
|
|
|
|
p2++;
|
|
|
|
}
|
|
|
|
|
|
|
|
*p2 = *p1;
|
|
|
|
|
|
|
|
p1++;
|
|
|
|
p2++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Terminate the string */
|
|
|
|
newstr[newlen] = '\0';
|
|
|
|
|
|
|
|
return newstr;
|
|
|
|
}
|
|
|
|
|
2013-04-12 13:12:11 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_is_bchar()
|
|
|
|
*
|
|
|
|
* Portable test of whether the specified char is a "bchar" as defined in the
|
|
|
|
* grammar of RFC-5092.
|
|
|
|
*/
|
|
|
|
static bool imap_is_bchar(char ch)
|
|
|
|
{
|
|
|
|
switch(ch) {
|
|
|
|
/* bchar */
|
|
|
|
case ':': case '@': case '/':
|
|
|
|
/* bchar -> achar */
|
|
|
|
case '&': case '=':
|
|
|
|
/* bchar -> achar -> uchar -> unreserved */
|
|
|
|
case '0': case '1': case '2': case '3': case '4': case '5': case '6':
|
|
|
|
case '7': case '8': case '9':
|
|
|
|
case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
|
|
|
|
case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N':
|
|
|
|
case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
|
|
|
|
case 'V': case 'W': case 'X': case 'Y': case 'Z':
|
|
|
|
case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
|
|
|
|
case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
|
|
|
|
case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
|
|
|
|
case 'v': case 'w': case 'x': case 'y': case 'z':
|
|
|
|
case '-': case '.': case '_': case '~':
|
|
|
|
/* bchar -> achar -> uchar -> sub-delims-sh */
|
|
|
|
case '!': case '$': case '\'': case '(': case ')': case '*':
|
|
|
|
case '+': case ',':
|
|
|
|
/* bchar -> achar -> uchar -> pct-encoded */
|
|
|
|
case '%': /* HEXDIG chars are already included above */
|
|
|
|
return true;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-13 10:58:15 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_parse_url_options()
|
|
|
|
*
|
|
|
|
* Parse the URL login options.
|
|
|
|
*/
|
|
|
|
static CURLcode imap_parse_url_options(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct imap_conn *imapc = &conn->proto.imapc;
|
|
|
|
const char *options = conn->options;
|
|
|
|
const char *ptr = options;
|
|
|
|
|
|
|
|
if(options) {
|
|
|
|
const char *key = ptr;
|
|
|
|
|
|
|
|
while(*ptr && *ptr != '=')
|
|
|
|
ptr++;
|
|
|
|
|
|
|
|
if(strnequal(key, "AUTH", 4)) {
|
|
|
|
const char *value = ptr + 1;
|
|
|
|
|
|
|
|
if(strequal(value, "*"))
|
|
|
|
imapc->prefmech = SASL_AUTH_ANY;
|
|
|
|
else if(strequal(value, "LOGIN"))
|
|
|
|
imapc->prefmech = SASL_MECH_LOGIN;
|
|
|
|
else if(strequal(value, "PLAIN"))
|
|
|
|
imapc->prefmech = SASL_MECH_PLAIN;
|
|
|
|
else if(strequal(value, "CRAM-MD5"))
|
|
|
|
imapc->prefmech = SASL_MECH_CRAM_MD5;
|
|
|
|
else if(strequal(value, "DIGEST-MD5"))
|
|
|
|
imapc->prefmech = SASL_MECH_DIGEST_MD5;
|
|
|
|
else if(strequal(value, "GSSAPI"))
|
|
|
|
imapc->prefmech = SASL_MECH_GSSAPI;
|
|
|
|
else if(strequal(value, "NTLM"))
|
|
|
|
imapc->prefmech = SASL_MECH_NTLM;
|
2013-08-25 13:17:35 -04:00
|
|
|
else if(strequal(value, "XOAUTH2"))
|
|
|
|
imapc->prefmech = SASL_MECH_XOAUTH2;
|
2013-04-13 10:58:15 -04:00
|
|
|
else
|
|
|
|
imapc->prefmech = SASL_AUTH_NONE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
result = CURLE_URL_MALFORMAT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-04-12 13:08:09 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_parse_url_path()
|
|
|
|
*
|
|
|
|
* Parse the URL path into separate path components.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static CURLcode imap_parse_url_path(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
/* The imap struct is already initialised in imap_connect() */
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct IMAP *imap = data->req.protop;
|
2013-04-12 13:08:09 -04:00
|
|
|
const char *begin = data->state.path;
|
|
|
|
const char *ptr = begin;
|
|
|
|
|
|
|
|
/* See how much of the URL is a valid path and decode it */
|
|
|
|
while(imap_is_bchar(*ptr))
|
|
|
|
ptr++;
|
|
|
|
|
|
|
|
if(ptr != begin) {
|
|
|
|
/* Remove the trailing slash if present */
|
|
|
|
const char *end = ptr;
|
|
|
|
if(end > begin && end[-1] == '/')
|
|
|
|
end--;
|
|
|
|
|
|
|
|
result = Curl_urldecode(data, begin, end - begin, &imap->mailbox, NULL,
|
|
|
|
TRUE);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
imap->mailbox = NULL;
|
|
|
|
|
|
|
|
/* There can be any number of parameters in the form ";NAME=VALUE" */
|
|
|
|
while(*ptr == ';') {
|
|
|
|
char *name;
|
|
|
|
char *value;
|
|
|
|
size_t valuelen;
|
|
|
|
|
|
|
|
/* Find the length of the name parameter */
|
|
|
|
begin = ++ptr;
|
|
|
|
while(*ptr && *ptr != '=')
|
|
|
|
ptr++;
|
|
|
|
|
|
|
|
if(!*ptr)
|
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
|
|
|
|
/* Decode the name parameter */
|
|
|
|
result = Curl_urldecode(data, begin, ptr - begin, &name, NULL, TRUE);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
/* Find the length of the value parameter */
|
|
|
|
begin = ++ptr;
|
|
|
|
while(imap_is_bchar(*ptr))
|
|
|
|
ptr++;
|
|
|
|
|
|
|
|
/* Decode the value parameter */
|
|
|
|
result = Curl_urldecode(data, begin, ptr - begin, &value, &valuelen, TRUE);
|
|
|
|
if(result) {
|
|
|
|
Curl_safefree(name);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUGF(infof(conn->data, "IMAP URL parameter '%s' = '%s'\n", name, value));
|
|
|
|
|
|
|
|
/* Process the known hierarchical parameters (UIDVALIDITY, UID and SECTION)
|
|
|
|
stripping of the trailing slash character if it is present.
|
|
|
|
|
|
|
|
Note: Unknown parameters trigger a URL_MALFORMAT error. */
|
|
|
|
if(Curl_raw_equal(name, "UIDVALIDITY") && !imap->uidvalidity) {
|
|
|
|
if(valuelen > 0 && value[valuelen - 1] == '/')
|
|
|
|
value[valuelen - 1] = '\0';
|
|
|
|
|
|
|
|
imap->uidvalidity = value;
|
|
|
|
value = NULL;
|
|
|
|
}
|
|
|
|
else if(Curl_raw_equal(name, "UID") && !imap->uid) {
|
|
|
|
if(valuelen > 0 && value[valuelen - 1] == '/')
|
|
|
|
value[valuelen - 1] = '\0';
|
|
|
|
|
|
|
|
imap->uid = value;
|
|
|
|
value = NULL;
|
|
|
|
}
|
|
|
|
else if(Curl_raw_equal(name, "SECTION") && !imap->section) {
|
|
|
|
if(valuelen > 0 && value[valuelen - 1] == '/')
|
|
|
|
value[valuelen - 1] = '\0';
|
|
|
|
|
|
|
|
imap->section = value;
|
|
|
|
value = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Curl_safefree(name);
|
|
|
|
Curl_safefree(value);
|
|
|
|
|
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
}
|
|
|
|
|
|
|
|
Curl_safefree(name);
|
|
|
|
Curl_safefree(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Any extra stuff at the end of the URL is an error */
|
|
|
|
if(*ptr)
|
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2013-04-12 13:20:20 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* imap_parse_custom_request()
|
|
|
|
*
|
|
|
|
* Parse the custom request.
|
|
|
|
*/
|
2013-04-12 13:08:09 -04:00
|
|
|
static CURLcode imap_parse_custom_request(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
2013-08-05 04:32:08 -04:00
|
|
|
struct IMAP *imap = data->req.protop;
|
2013-04-12 13:08:09 -04:00
|
|
|
const char *custom = data->set.str[STRING_CUSTOMREQUEST];
|
|
|
|
|
|
|
|
if(custom) {
|
|
|
|
/* URL decode the custom request */
|
|
|
|
result = Curl_urldecode(data, custom, 0, &imap->custom, NULL, TRUE);
|
|
|
|
|
|
|
|
/* Extract the parameters if specified */
|
|
|
|
if(!result) {
|
|
|
|
const char *params = imap->custom;
|
|
|
|
|
|
|
|
while(*params && *params != ' ')
|
|
|
|
params++;
|
|
|
|
|
|
|
|
if(*params) {
|
|
|
|
imap->custom_params = strdup(params);
|
|
|
|
imap->custom[params - imap->custom] = '\0';
|
|
|
|
|
|
|
|
if(!imap->custom_params)
|
|
|
|
result = CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
#endif /* CURL_DISABLE_IMAP */
|