Coverage Report

Created: 2026-09-14 07:06

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/curl/lib/imap.c
Line
Count
Source
1
/***************************************************************************
2
 *                                  _   _ ____  _
3
 *  Project                     ___| | | |  _ \| |
4
 *                             / __| | | | |_) | |
5
 *                            | (__| |_| |  _ <| |___
6
 *                             \___|\___/|_| \_\_____|
7
 *
8
 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
9
 *
10
 * This software is licensed as described in the file COPYING, which
11
 * you should have received as part of this distribution. The terms
12
 * are also available at https://curl.se/docs/copyright.html.
13
 *
14
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
 * copies of the Software, and permit persons to whom the Software is
16
 * furnished to do so, under the terms of the COPYING file.
17
 *
18
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
 * KIND, either express or implied.
20
 *
21
 * SPDX-License-Identifier: curl
22
 *
23
 * RFC2195 CRAM-MD5 authentication
24
 * RFC2595 Using TLS with IMAP, POP3 and ACAP
25
 * RFC2831 DIGEST-MD5 authentication
26
 * RFC3501 IMAPv4 protocol
27
 * RFC4422 Simple Authentication and Security Layer (SASL)
28
 * RFC4616 PLAIN authentication
29
 * RFC4752 The Kerberos V5 ("GSSAPI") SASL Mechanism
30
 * RFC4959 IMAP Extension for SASL Initial Client Response
31
 * RFC5092 IMAP URL Scheme
32
 * RFC6749 OAuth 2.0 Authorization Framework
33
 * RFC8314 Use of TLS for Email Submission and Access
34
 * Draft   LOGIN SASL Mechanism <draft-murchison-sasl-login-00.txt>
35
 *
36
 ***************************************************************************/
37
#include "curl_setup.h"
38
#include "urldata.h"
39
#include "imap.h"
40
41
#ifndef CURL_DISABLE_IMAP
42
43
#ifdef HAVE_NETINET_IN_H
44
#include <netinet/in.h>
45
#endif
46
#ifdef HAVE_ARPA_INET_H
47
#include <arpa/inet.h>
48
#endif
49
#ifdef HAVE_NETDB_H
50
#include <netdb.h>
51
#endif
52
#ifdef __VMS
53
#include <in.h>
54
#include <inet.h>
55
#endif
56
57
#include "curlx/dynbuf.h"
58
#include "sendf.h"
59
#include "curl_trc.h"
60
#include "progress.h"
61
#include "transfer.h"
62
#include "escape.h"
63
#include "pingpong.h"
64
#include "mime.h"
65
#include "curlx/strparse.h"
66
#include "strcase.h"
67
#include "vtls/vtls.h"
68
#include "cfilters.h"
69
#include "connect.h"
70
#include "select.h"
71
#include "url.h"
72
#include "bufref.h"
73
#include "curl_sasl.h"
74
#include "curlx/strcopy.h"
75
76
/* meta key for storing protocol meta at easy handle */
77
0
#define CURL_META_IMAP_EASY   "meta:proto:imap:easy"
78
/* meta key for storing protocol meta at connection */
79
0
#define CURL_META_IMAP_CONN   "meta:proto:imap:conn"
80
81
typedef enum {
82
  IMAP_STOP,         /* do nothing state, stops the state machine */
83
  IMAP_SERVERGREET,  /* waiting for the initial greeting immediately after
84
                        a connect */
85
  IMAP_CAPABILITY,
86
  IMAP_STARTTLS,
87
  IMAP_UPGRADETLS,   /* asynchronously upgrade the connection to SSL/TLS
88
                       (multi mode only) */
89
  IMAP_AUTHENTICATE,
90
  IMAP_LOGIN,
91
  IMAP_LIST,
92
  IMAP_SELECT,
93
  IMAP_FETCH,
94
  IMAP_FETCH_FINAL,
95
  IMAP_APPEND,
96
  IMAP_APPEND_FINAL,
97
  IMAP_SEARCH,
98
  IMAP_LOGOUT,
99
  IMAP_LAST          /* never used */
100
} imapstate;
101
102
/* imap_conn is used for struct connection-oriented data */
103
struct imap_conn {
104
  struct pingpong pp;
105
  struct SASL sasl;           /* SASL-related parameters */
106
  struct dynbuf dyn;          /* for the IMAP commands */
107
  char *mailbox;              /* The last selected mailbox */
108
  imapstate state;            /* Always use imap.c:state() to change state! */
109
  unsigned int mb_uidvalidity; /* UIDVALIDITY parsed from select response */
110
  char resptag[5];            /* Response tag to wait for */
111
  unsigned char preftype;     /* Preferred authentication type */
112
  unsigned char cmdid;        /* Last used command ID */
113
  BIT(ssldone);               /* Is connect() over SSL done? */
114
  BIT(preauth);               /* Is this connection PREAUTH? */
115
  BIT(tls_supported);         /* StartTLS capability supported by server */
116
  BIT(login_disabled);        /* LOGIN command disabled by server */
117
  BIT(ir_supported);          /* Initial response supported by server */
118
  BIT(mb_uidvalidity_set);
119
};
120
121
/* This IMAP struct is used in the Curl_easy. All IMAP data that is
122
   connection-oriented must be in imap_conn to properly deal with the fact that
123
   perhaps the Curl_easy is changed between the times the connection is
124
   used. */
125
struct IMAP {
126
  curl_pp_transfer transfer;
127
  char *mailbox;          /* Mailbox to select */
128
  char *uid;              /* Message UID to fetch */
129
  char *mindex;           /* Index in mail box of mail to fetch */
130
  char *section;          /* Message SECTION to fetch */
131
  char *partial;          /* Message PARTIAL to fetch */
132
  char *query;            /* Query to search for */
133
  char *custom;           /* Custom request */
134
  char *custom_params;    /* Parameters for the custom request */
135
  unsigned int uidvalidity; /* UIDVALIDITY to check in select */
136
  BIT(uidvalidity_set);
137
};
138
139
0
#define IMAP_RESP_OK       1
140
0
#define IMAP_RESP_NOT_OK   2
141
0
#define IMAP_RESP_PREAUTH  3
142
143
struct ulbits {
144
  int bit;
145
  const char *flag;
146
};
147
148
/***********************************************************************
149
 *
150
 * imap_sendf()
151
 *
152
 * Sends the formatted string as an IMAP command to the server.
153
 *
154
 * Designed to never block.
155
 */
156
static CURLcode imap_sendf(struct Curl_easy *data,
157
                           struct imap_conn *imapc,
158
                           const char *fmt, ...) CURL_PRINTF(3, 0);
159
static CURLcode imap_sendf(struct Curl_easy *data,
160
                           struct imap_conn *imapc,
161
                           const char *fmt, ...)
162
0
{
163
0
  CURLcode result = CURLE_OK;
164
165
0
  DEBUGASSERT(fmt);
166
167
  /* Calculate the tag based on the connection ID and command ID */
168
0
  curl_msnprintf(imapc->resptag, sizeof(imapc->resptag), "%c%03d",
169
0
                 'A' + curlx_sltosi((long)(data->conn->connection_id % 26)),
170
0
                 ++imapc->cmdid);
171
172
  /* start with a blank buffer */
173
0
  curlx_dyn_reset(&imapc->dyn);
174
175
  /* append tag + space + fmt */
176
0
  result = curlx_dyn_addf(&imapc->dyn, "%s %s", imapc->resptag, fmt);
177
0
  if(!result) {
178
0
    va_list ap;
179
0
    va_start(ap, fmt);
180
0
#ifdef __clang__
181
0
#pragma clang diagnostic push
182
0
#pragma clang diagnostic ignored "-Wformat-nonliteral"
183
0
#endif
184
0
    result = Curl_pp_vsendf(data, &imapc->pp, curlx_dyn_ptr(&imapc->dyn), ap);
185
0
#ifdef __clang__
186
0
#pragma clang diagnostic pop
187
0
#endif
188
0
    va_end(ap);
189
0
  }
190
0
  return result;
191
0
}
192
193
/***********************************************************************
194
 *
195
 * imap_atom()
196
 *
197
 * Checks the input string for characters that need escaping and returns an
198
 * atom ready for sending to the server.
199
 *
200
 * The returned string needs to be freed.
201
 *
202
 */
203
static char *imap_atom(const char *str, bool escape_only)
204
0
{
205
0
  struct dynbuf line;
206
0
  size_t nclean;
207
0
  size_t len;
208
209
0
  if(!str)
210
0
    return NULL;
211
212
0
  len = strlen(str);
213
0
  nclean = strcspn(str, "() {%*]\\\"");
214
0
  if(len == nclean)
215
    /* nothing to escape, return a strdup */
216
0
    return curlx_strdup(str);
217
218
0
  curlx_dyn_init(&line, 2000);
219
220
0
  if(!escape_only && curlx_dyn_addn(&line, "\"", 1))
221
0
    return NULL;
222
223
0
  while(*str) {
224
0
    if((*str == '\\' || *str == '"') &&
225
0
       curlx_dyn_addn(&line, "\\", 1))
226
0
      return NULL;
227
0
    if(curlx_dyn_addn(&line, str, 1))
228
0
      return NULL;
229
0
    str++;
230
0
  }
231
232
0
  if(!escape_only && curlx_dyn_addn(&line, "\"", 1))
233
0
    return NULL;
234
235
0
  return curlx_dyn_ptr(&line);
236
0
}
237
238
/*
239
 * Finds the start of a literal '{size}' in line, skipping over quoted strings.
240
 */
241
static const char *imap_find_literal(const char *line, size_t len)
242
0
{
243
0
  const char *end = line + len;
244
0
  bool in_quote = FALSE;
245
246
0
  while(line < end) {
247
0
    if(in_quote) {
248
0
      if(*line == '\\' && (line + 1) < end) {
249
0
        line += 2;
250
0
        continue;
251
0
      }
252
0
      if(*line == '"')
253
0
        in_quote = FALSE;
254
0
    }
255
0
    else {
256
0
      if(*line == '"')
257
0
        in_quote = TRUE;
258
0
      else if(*line == '{')
259
0
        return line;
260
0
    }
261
0
    line++;
262
0
  }
263
0
  return NULL;
264
0
}
265
266
/***********************************************************************
267
 *
268
 * imap_matchresp()
269
 *
270
 * Determines whether the untagged response is related to the specified
271
 * command by checking if it is in format "* <command-name> ..." or
272
 * "* <number> <command-name> ...".
273
 *
274
 * The "* " marker is assumed to have already been checked by the caller.
275
 */
276
static bool imap_matchresp(const char *line, size_t len, const char *cmd)
277
0
{
278
0
  const char *end = line + len;
279
0
  size_t cmd_len = strlen(cmd);
280
281
  /* Skip the untagged response marker */
282
0
  line += 2;
283
284
  /* Do we have a number after the marker? */
285
0
  if(line < end && ISDIGIT(*line)) {
286
    /* Skip the number */
287
0
    do
288
0
      line++;
289
0
    while(line < end && ISDIGIT(*line));
290
291
    /* Do we have the space character? */
292
0
    if(line == end || *line != ' ')
293
0
      return FALSE;
294
295
0
    line++;
296
0
  }
297
298
  /* Does the command name match and is it followed by a space character or at
299
     the end of line? */
300
0
  if(line + cmd_len <= end && curl_strnequal(line, cmd, cmd_len) &&
301
0
     (line[cmd_len] == ' ' || line + cmd_len + 2 == end))
302
0
    return TRUE;
303
304
0
  return FALSE;
305
0
}
306
307
/***********************************************************************
308
 *
309
 * imap_endofresp()
310
 *
311
 * Checks whether the given string is a valid tagged, untagged or continuation
312
 * response which can be processed by the response handler.
313
 */
314
static bool imap_endofresp(struct Curl_easy *data, struct connectdata *conn,
315
                           const char *line, size_t len, int *resp)
316
0
{
317
0
  struct imap_conn *imapc = Curl_conn_meta_get(conn, CURL_META_IMAP_CONN);
318
0
  struct IMAP *imap = Curl_meta_get(data, CURL_META_IMAP_EASY);
319
0
  const char *id;
320
0
  size_t id_len;
321
322
0
  DEBUGASSERT(imapc);
323
0
  DEBUGASSERT(imap);
324
0
  if(!imapc || !imap)
325
0
    return FALSE;
326
327
  /* Do we have a tagged command response? */
328
0
  id = imapc->resptag;
329
0
  id_len = strlen(id);
330
0
  if(len >= id_len + 1 && !memcmp(id, line, id_len) && line[id_len] == ' ') {
331
0
    line += id_len + 1;
332
0
    len -= id_len + 1;
333
334
0
    if(len >= 2 && !memcmp(line, "OK", 2))
335
0
      *resp = IMAP_RESP_OK;
336
0
    else if(len >= 7 && !memcmp(line, "PREAUTH", 7))
337
0
      *resp = IMAP_RESP_PREAUTH;
338
0
    else
339
0
      *resp = IMAP_RESP_NOT_OK;
340
341
0
    return TRUE;
342
0
  }
343
344
  /* Do we have an untagged command response? */
345
0
  if(len >= 2 && !memcmp("* ", line, 2)) {
346
0
    switch(imapc->state) {
347
    /* States which are interested in untagged responses */
348
0
    case IMAP_CAPABILITY:
349
0
      if(!imap_matchresp(line, len, "CAPABILITY"))
350
0
        return FALSE;
351
0
      break;
352
353
0
    case IMAP_LIST:
354
0
      if((!imap->custom && !imap_matchresp(line, len, "LIST")) ||
355
0
         (imap->custom && !imap_matchresp(line, len, imap->custom) &&
356
0
          (!curl_strequal(imap->custom, "STORE") ||
357
0
           !imap_matchresp(line, len, "FETCH")) &&
358
0
          !curl_strequal(imap->custom, "SELECT") &&
359
0
          !curl_strequal(imap->custom, "EXAMINE") &&
360
0
          !curl_strequal(imap->custom, "SEARCH") &&
361
0
          !curl_strequal(imap->custom, "EXPUNGE") &&
362
0
          !curl_strequal(imap->custom, "LSUB") &&
363
0
          !curl_strequal(imap->custom, "UID") &&
364
0
          !curl_strequal(imap->custom, "GETQUOTAROOT") &&
365
0
          !curl_strequal(imap->custom, "NOOP")))
366
0
        return FALSE;
367
0
      break;
368
369
0
    case IMAP_SELECT:
370
      /* SELECT is special in that its untagged responses do not have a
371
         common prefix so accept anything! */
372
0
      break;
373
374
0
    case IMAP_FETCH:
375
0
      if(!imap_matchresp(line, len, "FETCH"))
376
0
        return FALSE;
377
0
      break;
378
379
0
    case IMAP_SEARCH:
380
0
      if(!imap_matchresp(line, len, "SEARCH"))
381
0
        return FALSE;
382
0
      break;
383
384
    /* Ignore other untagged responses */
385
0
    default:
386
0
      return FALSE;
387
0
    }
388
389
0
    *resp = '*';
390
0
    return TRUE;
391
0
  }
392
393
  /* Do we have a continuation response? This should be a + symbol followed by
394
     a space and optionally some text as per RFC-3501 for the AUTHENTICATE and
395
     APPEND commands and as outlined in Section 4. Examples of RFC-4959 but
396
     some email servers ignore this and only send a single + instead. */
397
0
  if(!imap->custom && ((len == 3 && line[0] == '+') ||
398
0
                       (len >= 2 && !memcmp("+ ", line, 2)))) {
399
0
    switch(imapc->state) {
400
    /* States which are interested in continuation responses */
401
0
    case IMAP_AUTHENTICATE:
402
0
    case IMAP_APPEND:
403
0
      *resp = '+';
404
0
      break;
405
406
0
    default:
407
0
      failf(data, "Unexpected continuation response");
408
0
      *resp = -1;
409
0
      break;
410
0
    }
411
412
0
    return TRUE;
413
0
  }
414
415
0
  return FALSE; /* Nothing for us */
416
0
}
417
418
/***********************************************************************
419
 *
420
 * imap_get_message()
421
 *
422
 * Gets the authentication message from the response buffer.
423
 */
424
static CURLcode imap_get_message(struct Curl_easy *data, struct bufref *out)
425
0
{
426
0
  struct imap_conn *imapc =
427
0
    Curl_conn_meta_get(data->conn, CURL_META_IMAP_CONN);
428
0
  char *message;
429
0
  size_t len;
430
431
0
  if(!imapc)
432
0
    return CURLE_FAILED_INIT;
433
434
0
  message = curlx_dyn_ptr(&imapc->pp.recvbuf);
435
0
  len = imapc->pp.nfinal;
436
0
  if(len > 2) {
437
    /* Find the start of the message */
438
0
    len -= 2;
439
0
    for(message += 2; ISBLANK(*message); message++, len--)
440
0
      ;
441
442
    /* Find the end of the message */
443
0
    while(len--)
444
0
      if(!ISNEWLINE(message[len]) && !ISBLANK(message[len]))
445
0
        break;
446
447
    /* Terminate the message */
448
0
    message[++len] = '\0';
449
0
    Curl_bufref_set(out, message, len, NULL);
450
0
  }
451
0
  else
452
    /* junk input => zero length output */
453
0
    Curl_bufref_set(out, "", 0, NULL);
454
455
0
  return CURLE_OK;
456
0
}
457
458
/***********************************************************************
459
 *
460
 * imap_state()
461
 *
462
 * This is the ONLY way to change IMAP state!
463
 */
464
static void imap_state(struct Curl_easy *data,
465
                       struct imap_conn *imapc,
466
                       imapstate newstate)
467
0
{
468
0
#if defined(DEBUGBUILD) && defined(CURLVERBOSE)
469
  /* for debug purposes */
470
0
  static const char * const names[] = {
471
0
    "STOP",
472
0
    "SERVERGREET",
473
0
    "CAPABILITY",
474
0
    "STARTTLS",
475
0
    "UPGRADETLS",
476
0
    "AUTHENTICATE",
477
0
    "LOGIN",
478
0
    "LIST",
479
0
    "SELECT",
480
0
    "FETCH",
481
0
    "FETCH_FINAL",
482
0
    "APPEND",
483
0
    "APPEND_FINAL",
484
0
    "SEARCH",
485
0
    "LOGOUT",
486
    /* LAST */
487
0
  };
488
489
0
  if(imapc->state != newstate)
490
0
    infof(data, "IMAP %p state change from %s to %s",
491
0
          (void *)imapc, names[imapc->state], names[newstate]);
492
#else
493
  (void)data;
494
#endif
495
0
  imapc->state = newstate;
496
0
}
497
498
/***********************************************************************
499
 *
500
 * imap_perform_capability()
501
 *
502
 * Sends the CAPABILITY command in order to obtain a list of server side
503
 * supported capabilities.
504
 */
505
static CURLcode imap_perform_capability(struct Curl_easy *data,
506
                                        struct imap_conn *imapc)
507
0
{
508
0
  CURLcode result = CURLE_OK;
509
510
0
  imapc->sasl.authmechs = SASL_AUTH_NONE; /* No known auth. mechanisms yet */
511
0
  imapc->sasl.authused = SASL_AUTH_NONE;  /* Clear the auth. mechanism used */
512
0
  imapc->tls_supported = FALSE;           /* Clear the TLS capability */
513
514
  /* Send the CAPABILITY command */
515
0
  result = imap_sendf(data, imapc, "CAPABILITY");
516
517
0
  if(!result)
518
0
    imap_state(data, imapc, IMAP_CAPABILITY);
519
520
0
  return result;
521
0
}
522
523
/***********************************************************************
524
 *
525
 * imap_perform_starttls()
526
 *
527
 * Sends the STARTTLS command to start the upgrade to TLS.
528
 */
529
static CURLcode imap_perform_starttls(struct Curl_easy *data,
530
                                      struct imap_conn *imapc)
531
0
{
532
  /* Send the STARTTLS command */
533
0
  CURLcode result = imap_sendf(data, imapc, "STARTTLS");
534
535
0
  if(!result)
536
0
    imap_state(data, imapc, IMAP_STARTTLS);
537
538
0
  return result;
539
0
}
540
541
/***********************************************************************
542
 *
543
 * imap_perform_upgrade_tls()
544
 *
545
 * Performs the upgrade to TLS.
546
 */
547
static CURLcode imap_perform_upgrade_tls(struct Curl_easy *data,
548
                                         struct imap_conn *imapc,
549
                                         struct connectdata *conn)
550
0
{
551
0
#ifdef USE_SSL
552
  /* Start the SSL connection */
553
0
  CURLcode result;
554
0
  bool ssldone = FALSE;
555
556
0
  if(!Curl_conn_is_ssl(conn, FIRSTSOCKET)) {
557
0
    result = Curl_ssl_cfilter_add(
558
0
      data, Curl_conn_get_origin(conn, FIRSTSOCKET), conn, FIRSTSOCKET);
559
0
    if(result)
560
0
      goto out;
561
    /* Change the connection handler */
562
0
    conn->scheme = &Curl_scheme_imaps;
563
0
  }
564
565
0
  DEBUGASSERT(!imapc->ssldone);
566
0
  result = Curl_conn_connect(data, FIRSTSOCKET, FALSE, &ssldone);
567
0
  DEBUGF(infof(data, "imap_perform_upgrade_tls, connect -> %d, %d",
568
0
               (int)result, ssldone));
569
0
  if(!result && ssldone) {
570
0
    imapc->ssldone = ssldone;
571
    /* perform CAPA now, changes imapc->state out of IMAP_UPGRADETLS */
572
0
    result = imap_perform_capability(data, imapc);
573
0
  }
574
0
out:
575
0
  return result;
576
#else
577
  (void)data;
578
  (void)imapc;
579
  (void)conn;
580
  return CURLE_NOT_BUILT_IN;
581
#endif
582
0
}
583
584
/***********************************************************************
585
 *
586
 * imap_perform_login()
587
 *
588
 * Sends a clear text LOGIN command to authenticate with.
589
 */
590
static CURLcode imap_perform_login(struct Curl_easy *data,
591
                                   struct imap_conn *imapc,
592
                                   struct connectdata *conn)
593
0
{
594
0
  CURLcode result = CURLE_OK;
595
0
  char *user;
596
0
  char *passwd;
597
598
  /* Check we have a username and password to authenticate with and end the
599
     connect phase if we do not */
600
0
  if(!conn->creds) {
601
0
    imap_state(data, imapc, IMAP_STOP);
602
603
0
    return result;
604
0
  }
605
606
  /* Make sure the username and password are in the correct atom format */
607
0
  user = imap_atom(Curl_creds_user(conn->creds), FALSE);
608
0
  passwd = imap_atom(Curl_creds_passwd(conn->creds), FALSE);
609
610
  /* Send the LOGIN command */
611
0
  result = imap_sendf(data, imapc, "LOGIN %s %s", user ? user : "",
612
0
                      passwd ? passwd : "");
613
614
0
  curlx_free(user);
615
0
  curlx_strzero(passwd);
616
0
  curlx_free(passwd);
617
618
0
  if(!result)
619
0
    imap_state(data, imapc, IMAP_LOGIN);
620
621
0
  return result;
622
0
}
623
624
/***********************************************************************
625
 *
626
 * imap_perform_authenticate()
627
 *
628
 * Sends an AUTHENTICATE command allowing the client to login with the given
629
 * SASL authentication mechanism.
630
 */
631
static CURLcode imap_perform_authenticate(struct Curl_easy *data,
632
                                          const char *mech,
633
                                          const struct bufref *initresp)
634
0
{
635
0
  struct imap_conn *imapc =
636
0
    Curl_conn_meta_get(data->conn, CURL_META_IMAP_CONN);
637
0
  CURLcode result = CURLE_OK;
638
0
  const char *ir = Curl_bufref_ptr(initresp);
639
640
0
  if(!imapc)
641
0
    return CURLE_FAILED_INIT;
642
0
  if(ir) {
643
    /* Send the AUTHENTICATE command with the initial response */
644
0
    result = imap_sendf(data, imapc, "AUTHENTICATE %s %s",
645
0
                        mech, *ir ? ir : "=");
646
0
  }
647
0
  else {
648
    /* Send the AUTHENTICATE command */
649
0
    result = imap_sendf(data, imapc, "AUTHENTICATE %s", mech);
650
0
  }
651
652
0
  return result;
653
0
}
654
655
/***********************************************************************
656
 *
657
 * imap_continue_authenticate()
658
 *
659
 * Sends SASL continuation data.
660
 */
661
static CURLcode imap_continue_authenticate(struct Curl_easy *data,
662
                                           const char *mech,
663
                                           const struct bufref *resp)
664
0
{
665
0
  struct imap_conn *imapc =
666
0
    Curl_conn_meta_get(data->conn, CURL_META_IMAP_CONN);
667
668
0
  (void)mech;
669
0
  if(!imapc)
670
0
    return CURLE_FAILED_INIT;
671
0
  return Curl_pp_sendf(data, &imapc->pp, "%s", Curl_bufref_ptr(resp));
672
0
}
673
674
/***********************************************************************
675
 *
676
 * imap_cancel_authenticate()
677
 *
678
 * Sends SASL cancellation.
679
 */
680
static CURLcode imap_cancel_authenticate(struct Curl_easy *data,
681
                                         const char *mech)
682
0
{
683
0
  struct imap_conn *imapc =
684
0
    Curl_conn_meta_get(data->conn, CURL_META_IMAP_CONN);
685
686
0
  (void)mech;
687
0
  if(!imapc)
688
0
    return CURLE_FAILED_INIT;
689
0
  return Curl_pp_sendf(data, &imapc->pp, "*");
690
0
}
691
692
/***********************************************************************
693
 *
694
 * imap_perform_authentication()
695
 *
696
 * Initiates the authentication sequence, with the appropriate SASL
697
 * authentication mechanism, falling back to clear text should a common
698
 * mechanism not be available between the client and server.
699
 */
700
static CURLcode imap_perform_authentication(struct Curl_easy *data,
701
                                            struct imap_conn *imapc)
702
0
{
703
0
  CURLcode result = CURLE_OK;
704
0
  saslprogress progress;
705
706
  /* Check if already authenticated OR if there is enough data to authenticate
707
     with and end the connect phase if we do not */
708
0
  if(imapc->preauth ||
709
0
     !Curl_sasl_can_authenticate(&imapc->sasl, data)) {
710
0
    imap_state(data, imapc, IMAP_STOP);
711
0
    return result;
712
0
  }
713
714
  /* Calculate the SASL login details */
715
0
  result = Curl_sasl_start(&imapc->sasl, data, (bool)imapc->ir_supported,
716
0
                           &progress);
717
0
  if(!result) {
718
0
    if(progress == SASL_INPROGRESS)
719
0
      imap_state(data, imapc, IMAP_AUTHENTICATE);
720
0
    else if(!imapc->login_disabled && (imapc->preftype & IMAP_TYPE_CLEARTEXT))
721
      /* Perform clear text authentication */
722
0
      result = imap_perform_login(data, imapc, data->conn);
723
0
    else
724
0
      result = Curl_sasl_is_blocked(&imapc->sasl, data);
725
0
  }
726
727
0
  return result;
728
0
}
729
730
/***********************************************************************
731
 *
732
 * imap_perform_list()
733
 *
734
 * Sends a LIST command or an alternative custom request.
735
 */
736
static CURLcode imap_perform_list(struct Curl_easy *data,
737
                                  struct imap_conn *imapc,
738
                                  struct IMAP *imap)
739
0
{
740
0
  CURLcode result = CURLE_OK;
741
742
0
  if(imap->custom)
743
    /* Send the custom request */
744
0
    result = imap_sendf(data, imapc, "%s%s", imap->custom,
745
0
                        imap->custom_params ? imap->custom_params : "");
746
0
  else {
747
    /* Make sure the mailbox is in the correct atom format if necessary */
748
0
    char *mailbox = imap->mailbox ? imap_atom(imap->mailbox, TRUE)
749
0
                                  : curlx_strdup("");
750
0
    if(!mailbox)
751
0
      return CURLE_OUT_OF_MEMORY;
752
753
    /* Send the LIST command */
754
0
    result = imap_sendf(data, imapc, "LIST \"%s\" *", mailbox);
755
756
0
    curlx_free(mailbox);
757
0
  }
758
759
0
  if(!result)
760
0
    imap_state(data, imapc, IMAP_LIST);
761
762
0
  return result;
763
0
}
764
765
/***********************************************************************
766
 *
767
 * imap_perform_select()
768
 *
769
 * Sends a SELECT command to ask the server to change the selected mailbox.
770
 */
771
static CURLcode imap_perform_select(struct Curl_easy *data,
772
                                    struct imap_conn *imapc,
773
                                    struct IMAP *imap)
774
0
{
775
0
  CURLcode result = CURLE_OK;
776
0
  char *mailbox;
777
778
  /* Invalidate old information as we are switching mailboxes */
779
0
  curlx_safefree(imapc->mailbox);
780
0
  imapc->mb_uidvalidity_set = FALSE;
781
782
  /* Check we have a mailbox */
783
0
  if(!imap->mailbox) {
784
0
    failf(data, "Cannot SELECT without a mailbox.");
785
0
    return CURLE_URL_MALFORMAT;
786
0
  }
787
788
  /* Make sure the mailbox is in the correct atom format */
789
0
  mailbox = imap_atom(imap->mailbox, FALSE);
790
0
  if(!mailbox)
791
0
    return CURLE_OUT_OF_MEMORY;
792
793
  /* Send the SELECT command */
794
0
  result = imap_sendf(data, imapc, "SELECT %s", mailbox);
795
796
0
  curlx_free(mailbox);
797
798
0
  if(!result)
799
0
    imap_state(data, imapc, IMAP_SELECT);
800
801
0
  return result;
802
0
}
803
804
/***********************************************************************
805
 *
806
 * imap_perform_fetch()
807
 *
808
 * Sends a FETCH command to initiate the download of a message.
809
 */
810
static CURLcode imap_perform_fetch(struct Curl_easy *data,
811
                                   struct imap_conn *imapc,
812
                                   struct IMAP *imap)
813
0
{
814
0
  CURLcode result = CURLE_OK;
815
  /* Check we have a UID */
816
0
  if(imap->uid) {
817
818
    /* Send the FETCH command */
819
0
    if(imap->partial)
820
0
      result = imap_sendf(data, imapc, "UID FETCH %s BODY[%s]<%s>",
821
0
                          imap->uid, imap->section ? imap->section : "",
822
0
                          imap->partial);
823
0
    else
824
0
      result = imap_sendf(data, imapc, "UID FETCH %s BODY[%s]",
825
0
                          imap->uid, imap->section ? imap->section : "");
826
0
  }
827
0
  else if(imap->mindex) {
828
    /* Send the FETCH command */
829
0
    if(imap->partial)
830
0
      result = imap_sendf(data, imapc, "FETCH %s BODY[%s]<%s>",
831
0
                          imap->mindex, imap->section ? imap->section : "",
832
0
                          imap->partial);
833
0
    else
834
0
      result = imap_sendf(data, imapc, "FETCH %s BODY[%s]",
835
0
                          imap->mindex, imap->section ? imap->section : "");
836
0
  }
837
0
  else {
838
0
    failf(data, "Cannot FETCH without a UID.");
839
0
    return CURLE_URL_MALFORMAT;
840
0
  }
841
0
  if(!result)
842
0
    imap_state(data, imapc, IMAP_FETCH);
843
844
0
  return result;
845
0
}
846
847
/***********************************************************************
848
 *
849
 * imap_perform_append()
850
 *
851
 * Sends an APPEND command to initiate the upload of a message.
852
 */
853
static CURLcode imap_perform_append(struct Curl_easy *data,
854
                                    struct imap_conn *imapc,
855
                                    struct IMAP *imap)
856
0
{
857
0
  CURLcode result = CURLE_OK;
858
0
  char *mailbox;
859
0
  struct dynbuf flags;
860
861
  /* Check we have a mailbox */
862
0
  if(!imap->mailbox) {
863
0
    failf(data, "Cannot APPEND without a mailbox.");
864
0
    return CURLE_URL_MALFORMAT;
865
0
  }
866
867
0
#ifndef CURL_DISABLE_MIME
868
  /* Prepare the mime data if some. */
869
0
  if(IS_MIME_POST(data)) {
870
0
    curl_mimepart *postp = data->set.mimepostp;
871
872
    /* Use the whole structure as data. */
873
0
    postp->flags &= ~(unsigned int)MIME_BODY_ONLY;
874
875
    /* Add external headers and mime version. */
876
0
    curl_mime_headers(postp, data->set.headers, 0);
877
0
    result = Curl_mime_prepare_headers(data, postp, NULL,
878
0
                                       NULL, MIMESTRATEGY_MAIL);
879
880
0
    if(!result && !Curl_checkheaders(data, STRCONST("Mime-Version")))
881
0
      result = Curl_mime_add_header(&postp->curlheaders, "Mime-Version: 1.0");
882
0
    if(!result)
883
0
      result = Curl_creader_set_mime(data, postp);
884
0
    if(result)
885
0
      return result;
886
0
  }
887
0
  else
888
0
#endif
889
0
  {
890
0
    result = Curl_creader_set_fread(data, data->state.infilesize);
891
0
    if(result)
892
0
      return result;
893
0
  }
894
895
  /* Check we know the size of the upload. This takes all readers
896
   * into account. Especially crlf conversions which make the size
897
   * unpredictable, e.g. -1. */
898
0
  data->state.infilesize = Curl_creader_total_length(data);
899
0
  if(data->state.infilesize < 0) {
900
0
    if(data->set.crlf)
901
0
      failf(data, "Cannot APPEND with CRLF conversion making size unknown");
902
0
    else
903
0
      failf(data, "Cannot APPEND with unknown input file size");
904
0
    return CURLE_UPLOAD_FAILED;
905
0
  }
906
907
  /* Make sure the mailbox is in the correct atom format */
908
0
  mailbox = imap_atom(imap->mailbox, FALSE);
909
0
  if(!mailbox)
910
0
    return CURLE_OUT_OF_MEMORY;
911
912
  /* Generate flags string and send the APPEND command */
913
0
  curlx_dyn_init(&flags, 100);
914
0
  if(data->set.upload_flags) {
915
0
    int i;
916
0
    struct ulbits ulflag[] = {
917
0
      { CURLULFLAG_ANSWERED, "Answered" },
918
0
      { CURLULFLAG_DELETED, "Deleted" },
919
0
      { CURLULFLAG_DRAFT, "Draft" },
920
0
      { CURLULFLAG_FLAGGED, "Flagged" },
921
0
      { CURLULFLAG_SEEN, "Seen" },
922
0
      { 0, NULL }
923
0
    };
924
925
0
    result = CURLE_OUT_OF_MEMORY;
926
0
    if(curlx_dyn_add(&flags, " (")) {
927
0
      goto cleanup;
928
0
    }
929
930
0
    for(i = 0; ulflag[i].bit; i++) {
931
0
      if(data->set.upload_flags & ulflag[i].bit &&
932
0
         ((curlx_dyn_len(&flags) > 2 && curlx_dyn_add(&flags, " ")) ||
933
0
          curlx_dyn_add(&flags, "\\") ||
934
0
          curlx_dyn_add(&flags, ulflag[i].flag)))
935
0
        goto cleanup;
936
0
    }
937
938
0
    if(curlx_dyn_add(&flags, ")"))
939
0
      goto cleanup;
940
0
  }
941
0
  else if(curlx_dyn_add(&flags, ""))
942
0
    goto cleanup;
943
944
0
  result = imap_sendf(data, imapc, "APPEND %s%s {%" FMT_OFF_T "}",
945
0
                      mailbox, curlx_dyn_ptr(&flags), data->state.infilesize);
946
947
0
cleanup:
948
0
  curlx_dyn_free(&flags);
949
0
  curlx_free(mailbox);
950
951
0
  if(!result)
952
0
    imap_state(data, imapc, IMAP_APPEND);
953
954
0
  return result;
955
0
}
956
957
/***********************************************************************
958
 *
959
 * imap_perform_search()
960
 *
961
 * Sends a SEARCH command.
962
 */
963
static CURLcode imap_perform_search(struct Curl_easy *data,
964
                                    struct imap_conn *imapc,
965
                                    struct IMAP *imap)
966
0
{
967
0
  CURLcode result = CURLE_OK;
968
969
  /* Check we have a query string */
970
0
  if(!imap->query) {
971
0
    failf(data, "Cannot SEARCH without a query string.");
972
0
    return CURLE_URL_MALFORMAT;
973
0
  }
974
975
  /* Send the SEARCH command */
976
0
  result = imap_sendf(data, imapc, "SEARCH %s", imap->query);
977
978
0
  if(!result)
979
0
    imap_state(data, imapc, IMAP_SEARCH);
980
981
0
  return result;
982
0
}
983
984
/***********************************************************************
985
 *
986
 * imap_perform_logout()
987
 *
988
 * Performs the logout action prior to sclose() being called.
989
 */
990
static CURLcode imap_perform_logout(struct Curl_easy *data,
991
                                    struct imap_conn *imapc)
992
0
{
993
  /* Send the LOGOUT command */
994
0
  CURLcode result = imap_sendf(data, imapc, "LOGOUT");
995
996
0
  if(!result)
997
0
    imap_state(data, imapc, IMAP_LOGOUT);
998
999
0
  return result;
1000
0
}
1001
1002
/* For the initial server greeting */
1003
static CURLcode imap_state_servergreet_resp(struct Curl_easy *data,
1004
                                            struct imap_conn *imapc,
1005
                                            int imapcode,
1006
                                            imapstate instate)
1007
0
{
1008
0
  (void)instate;
1009
1010
0
  if(imapcode == IMAP_RESP_PREAUTH) {
1011
    /* PREAUTH */
1012
0
    imapc->preauth = TRUE;
1013
0
    infof(data, "PREAUTH connection, already authenticated");
1014
0
  }
1015
0
  else if(imapcode != IMAP_RESP_OK) {
1016
0
    failf(data, "Got unexpected imap-server response");
1017
0
    return CURLE_WEIRD_SERVER_REPLY;
1018
0
  }
1019
1020
0
  return imap_perform_capability(data, imapc);
1021
0
}
1022
1023
/* For CAPABILITY responses */
1024
static CURLcode imap_state_capability_resp(struct Curl_easy *data,
1025
                                           struct imap_conn *imapc,
1026
                                           int imapcode,
1027
                                           imapstate instate)
1028
0
{
1029
0
  CURLcode result = CURLE_OK;
1030
0
  const char *line = curlx_dyn_ptr(&imapc->pp.recvbuf);
1031
1032
0
  (void)instate;
1033
1034
  /* Do we have an untagged response? */
1035
0
  if(imapcode == '*') {
1036
0
    line += 2;
1037
1038
    /* Loop through the data line */
1039
0
    for(;;) {
1040
0
      size_t wordlen;
1041
0
      while(*line && (ISBLANK(*line) || ISNEWLINE(*line)))
1042
0
        line++;
1043
1044
0
      if(!*line)
1045
0
        break;
1046
1047
      /* Extract the word */
1048
0
      for(wordlen = 0; line[wordlen] && !ISBLANK(line[wordlen]) &&
1049
0
                       !ISNEWLINE(line[wordlen]);)
1050
0
        wordlen++;
1051
1052
      /* Does the server support the STARTTLS capability? */
1053
0
      if(wordlen == 8 && curl_strnequal(line, "STARTTLS", 8))
1054
0
        imapc->tls_supported = TRUE;
1055
1056
      /* Has the server explicitly disabled clear text authentication? */
1057
0
      else if(wordlen == 13 && curl_strnequal(line, "LOGINDISABLED", 13))
1058
0
        imapc->login_disabled = TRUE;
1059
1060
      /* Does the server support the SASL-IR capability? */
1061
0
      else if(wordlen == 7 && curl_strnequal(line, "SASL-IR", 7))
1062
0
        imapc->ir_supported = TRUE;
1063
1064
      /* Do we have a SASL based authentication mechanism? */
1065
0
      else if(wordlen > 5 && curl_strnequal(line, "AUTH=", 5)) {
1066
0
        size_t llen;
1067
0
        unsigned short mechbit;
1068
1069
0
        line += 5;
1070
0
        wordlen -= 5;
1071
1072
        /* Test the word for a matching authentication mechanism */
1073
0
        mechbit = Curl_sasl_decode_mech(line, wordlen, &llen);
1074
0
        if(mechbit && llen == wordlen)
1075
0
          imapc->sasl.authmechs |= mechbit;
1076
0
      }
1077
1078
0
      line += wordlen;
1079
0
    }
1080
0
  }
1081
0
  else if(data->set.use_ssl && !Curl_conn_is_ssl(data->conn, FIRSTSOCKET)) {
1082
    /* PREAUTH is not compatible with STARTTLS. */
1083
0
    if(imapcode == IMAP_RESP_OK && imapc->tls_supported && !imapc->preauth) {
1084
      /* Switch to TLS connection now */
1085
0
      result = imap_perform_starttls(data, imapc);
1086
0
    }
1087
0
    else if(data->set.use_ssl <= CURLUSESSL_TRY)
1088
0
      result = imap_perform_authentication(data, imapc);
1089
0
    else {
1090
0
      failf(data, "STARTTLS not available.");
1091
0
      result = CURLE_USE_SSL_FAILED;
1092
0
    }
1093
0
  }
1094
0
  else
1095
0
    result = imap_perform_authentication(data, imapc);
1096
1097
0
  return result;
1098
0
}
1099
1100
/* For STARTTLS responses */
1101
static CURLcode imap_state_starttls_resp(struct Curl_easy *data,
1102
                                         struct imap_conn *imapc,
1103
                                         int imapcode,
1104
                                         imapstate instate)
1105
0
{
1106
0
  CURLcode result = CURLE_OK;
1107
1108
0
  (void)instate;
1109
1110
  /* Pipelining in response is forbidden. */
1111
0
  if(imapc->pp.overflow)
1112
0
    return CURLE_WEIRD_SERVER_REPLY;
1113
1114
0
  if(imapcode != IMAP_RESP_OK) {
1115
0
    if(data->set.use_ssl != CURLUSESSL_TRY) {
1116
0
      failf(data, "STARTTLS denied");
1117
0
      result = CURLE_USE_SSL_FAILED;
1118
0
    }
1119
0
    else
1120
0
      result = imap_perform_authentication(data, imapc);
1121
0
  }
1122
0
  else
1123
0
    imap_state(data, imapc, IMAP_UPGRADETLS);
1124
1125
0
  return result;
1126
0
}
1127
1128
/* For SASL authentication responses */
1129
static CURLcode imap_state_auth_resp(struct Curl_easy *data,
1130
                                     struct imap_conn *imapc,
1131
                                     int imapcode,
1132
                                     imapstate instate)
1133
0
{
1134
0
  CURLcode result = CURLE_OK;
1135
0
  saslprogress progress;
1136
1137
0
  (void)instate;
1138
1139
0
  result = Curl_sasl_continue(&imapc->sasl, data, imapcode, &progress);
1140
0
  if(!result)
1141
0
    switch(progress) {
1142
0
    case SASL_DONE:
1143
0
      imap_state(data, imapc, IMAP_STOP);  /* Authenticated */
1144
0
      break;
1145
0
    case SASL_IDLE:            /* No mechanism left after cancellation */
1146
0
      if(!imapc->login_disabled && (imapc->preftype & IMAP_TYPE_CLEARTEXT))
1147
        /* Perform clear text authentication */
1148
0
        result = imap_perform_login(data, imapc, data->conn);
1149
0
      else {
1150
0
        failf(data, "Authentication cancelled");
1151
0
        result = CURLE_LOGIN_DENIED;
1152
0
      }
1153
0
      break;
1154
0
    default:
1155
0
      break;
1156
0
    }
1157
1158
0
  return result;
1159
0
}
1160
1161
/* For LOGIN responses */
1162
static CURLcode imap_state_login_resp(struct Curl_easy *data,
1163
                                      struct imap_conn *imapc,
1164
                                      int imapcode,
1165
                                      imapstate instate)
1166
0
{
1167
0
  CURLcode result = CURLE_OK;
1168
0
  (void)instate;
1169
1170
0
  if(imapcode != IMAP_RESP_OK) {
1171
0
    failf(data, "Access denied. %c", imapcode);
1172
0
    result = CURLE_LOGIN_DENIED;
1173
0
  }
1174
0
  else
1175
    /* End of connect phase */
1176
0
    imap_state(data, imapc, IMAP_STOP);
1177
1178
0
  return result;
1179
0
}
1180
1181
/* Detect IMAP listings vs. downloading a single email */
1182
static bool is_custom_fetch_listing_match(const char *params)
1183
0
{
1184
  /* match " 1:* (FLAGS ..." or " 1,2,3 (FLAGS ..." */
1185
0
  if(*params++ != ' ')
1186
0
    return FALSE;
1187
1188
0
  while(ISDIGIT(*params)) {
1189
0
    params++;
1190
0
    if(*params == 0)
1191
0
      return FALSE;
1192
0
  }
1193
0
  if(*params == ':')
1194
0
    return TRUE;
1195
0
  if(*params == ',')
1196
0
    return TRUE;
1197
0
  return FALSE;
1198
0
}
1199
1200
static bool is_custom_fetch_listing(struct IMAP *imap)
1201
0
{
1202
  /* filter out "UID FETCH 1:* (FLAGS ..." queries to list emails */
1203
0
  if(!imap->custom)
1204
0
    return FALSE;
1205
0
  else if(curl_strequal(imap->custom, "FETCH") && imap->custom_params) {
1206
0
    const char *p = imap->custom_params;
1207
0
    return is_custom_fetch_listing_match(p);
1208
0
  }
1209
0
  else if(curl_strequal(imap->custom, "UID") && imap->custom_params &&
1210
0
          curl_strnequal(imap->custom_params, " FETCH ", 7)) {
1211
0
    const char *p = imap->custom_params + 6;
1212
0
    return is_custom_fetch_listing_match(p);
1213
0
  }
1214
0
  return FALSE;
1215
0
}
1216
1217
/* For LIST and SEARCH responses */
1218
static CURLcode imap_state_listsearch_resp(struct Curl_easy *data,
1219
                                           struct imap_conn *imapc,
1220
                                           int imapcode,
1221
                                           imapstate instate)
1222
0
{
1223
0
  CURLcode result = CURLE_OK;
1224
0
  const char *line = curlx_dyn_ptr(&imapc->pp.recvbuf);
1225
0
  size_t len = imapc->pp.nfinal;
1226
0
  struct IMAP *imap = Curl_meta_get(data, CURL_META_IMAP_EASY);
1227
1228
0
  DEBUGASSERT(imap);
1229
0
  if(!imap)
1230
0
    return CURLE_FAILED_INIT;
1231
0
  (void)instate;
1232
1233
0
  if(imapcode == '*' && is_custom_fetch_listing(imap)) {
1234
    /* custom FETCH or UID FETCH for listing is not handled here */
1235
0
  }
1236
0
  else if(imapcode == '*') {
1237
    /* Check if this response contains a literal (e.g. FETCH responses with
1238
       body data). Literal syntax is {size}\r\n */
1239
0
    const char *cr = memchr(line, '\r', len);
1240
0
    size_t line_len = cr ? (size_t)(cr - line) : len;
1241
0
    const char *ptr = imap_find_literal(line, line_len);
1242
0
    if(ptr) {
1243
0
      curl_off_t size = 0;
1244
0
      bool parsed = FALSE;
1245
0
      ptr++;
1246
0
      if(!curlx_str_number(&ptr, &size, CURL_OFF_T_MAX) &&
1247
0
         !curlx_str_single(&ptr, '}'))
1248
0
        parsed = TRUE;
1249
1250
0
      if(parsed) {
1251
0
        struct pingpong *pp = &imapc->pp;
1252
0
        size_t buffer_len = curlx_dyn_len(&pp->recvbuf);
1253
0
        size_t after_header = buffer_len - pp->nfinal;
1254
1255
        /* This is a literal response, setup to receive the body data */
1256
0
        infof(data, "Found %" FMT_OFF_T " bytes to download", size);
1257
1258
        /* First write the header line */
1259
0
        result = Curl_client_write(data, CLIENTWRITE_BODY, line, len);
1260
0
        if(result)
1261
0
          return result;
1262
1263
        /* Handle data already in buffer after the header line */
1264
0
        if(after_header > 0) {
1265
          /* There is already data in the buffer that is part of the literal
1266
             body or subsequent responses */
1267
0
          size_t chunk = after_header;
1268
1269
          /* Keep only the data after the header line */
1270
0
          curlx_dyn_tail(&pp->recvbuf, chunk);
1271
0
          pp->nfinal = 0; /* done */
1272
1273
          /* Limit chunk to the literal size */
1274
0
          if(chunk > (size_t)size)
1275
0
            chunk = (size_t)size;
1276
1277
0
          if(chunk) {
1278
            /* Write the literal body data */
1279
0
            result = Curl_client_write(data, CLIENTWRITE_BODY,
1280
0
                                       curlx_dyn_ptr(&pp->recvbuf), chunk);
1281
0
            if(result)
1282
0
              return result;
1283
0
          }
1284
1285
          /* Handle remaining data in buffer (either more literal data or
1286
             subsequent responses) */
1287
0
          if(after_header > chunk) {
1288
            /* Keep the data after the literal body */
1289
0
            pp->overflow = after_header - chunk;
1290
0
            curlx_dyn_tail(&pp->recvbuf, pp->overflow);
1291
0
          }
1292
0
          else {
1293
0
            pp->overflow = 0;
1294
0
            curlx_dyn_reset(&pp->recvbuf);
1295
0
          }
1296
0
        }
1297
0
        else {
1298
          /* No data in buffer yet, reset overflow */
1299
0
          pp->overflow = 0;
1300
0
        }
1301
1302
0
        if((CURL_OFF_T_MAX - size) < (curl_off_t)len)
1303
          /* unlikely to actually be a transfer this big, but avoid integer
1304
             overflow */
1305
0
          size = CURL_OFF_T_MAX;
1306
0
        else
1307
0
          size += len;
1308
1309
        /* Progress size includes both header line and literal body */
1310
0
        Curl_pgrsSetDownloadSize(data, size);
1311
1312
0
        if(data->req.bytecount == size)
1313
          /* All data already transferred (header + literal body) */
1314
0
          Curl_xfer_setup_nop(data);
1315
0
        else {
1316
          /* Setup to receive the literal body data.
1317
             maxdownload and transfer size include both header line and
1318
             literal body */
1319
0
          data->req.maxdownload = size;
1320
0
          Curl_xfer_setup_recv(data, FIRSTSOCKET, size);
1321
0
        }
1322
        /* End of DO phase */
1323
0
        imap_state(data, imapc, IMAP_STOP);
1324
0
      }
1325
0
      else {
1326
        /* Failed to parse literal, write the line */
1327
0
        result = Curl_client_write(data, CLIENTWRITE_BODY, line, len);
1328
0
      }
1329
0
    }
1330
0
    else {
1331
      /* No literal, write the line as-is */
1332
0
      result = Curl_client_write(data, CLIENTWRITE_BODY, line, len);
1333
0
    }
1334
0
  }
1335
0
  else if(imapcode != IMAP_RESP_OK)
1336
0
    result = CURLE_QUOTE_ERROR;
1337
0
  else
1338
    /* End of DO phase */
1339
0
    imap_state(data, imapc, IMAP_STOP);
1340
1341
0
  return result;
1342
0
}
1343
1344
/* For SELECT responses */
1345
static CURLcode imap_state_select_resp(struct Curl_easy *data,
1346
                                       struct imap_conn *imapc,
1347
                                       struct IMAP *imap,
1348
                                       int imapcode,
1349
                                       imapstate instate)
1350
0
{
1351
0
  CURLcode result = CURLE_OK;
1352
0
  (void)instate;
1353
1354
0
  if(imapcode == '*') {
1355
    /* See if this is an UIDVALIDITY response */
1356
0
    const char *line = curlx_dyn_ptr(&imapc->pp.recvbuf);
1357
0
    size_t len = curlx_dyn_len(&imapc->pp.recvbuf);
1358
0
    if((len >= 18) && checkprefix("OK [UIDVALIDITY ", &line[2])) {
1359
0
      curl_off_t value;
1360
0
      const char *p = &line[2] + CURL_CSTRLEN("OK [UIDVALIDITY ");
1361
0
      if(!curlx_str_number(&p, &value, UINT_MAX)) {
1362
0
        imapc->mb_uidvalidity = (unsigned int)value;
1363
0
        imapc->mb_uidvalidity_set = TRUE;
1364
0
      }
1365
0
    }
1366
0
  }
1367
0
  else if(imapcode == IMAP_RESP_OK) {
1368
    /* Check if the UIDVALIDITY has been specified and matches */
1369
0
    if(imap->uidvalidity_set && imapc->mb_uidvalidity_set &&
1370
0
       (imap->uidvalidity != imapc->mb_uidvalidity)) {
1371
0
      failf(data, "Mailbox UIDVALIDITY has changed");
1372
0
      result = CURLE_REMOTE_FILE_NOT_FOUND;
1373
0
    }
1374
0
    else {
1375
      /* Note the currently opened mailbox on this connection */
1376
0
      DEBUGASSERT(!imapc->mailbox);
1377
0
      imapc->mailbox = curlx_strdup(imap->mailbox);
1378
0
      if(!imapc->mailbox)
1379
0
        return CURLE_OUT_OF_MEMORY;
1380
1381
0
      if(imap->custom)
1382
0
        result = imap_perform_list(data, imapc, imap);
1383
0
      else if(imap->query)
1384
0
        result = imap_perform_search(data, imapc, imap);
1385
0
      else
1386
0
        result = imap_perform_fetch(data, imapc, imap);
1387
0
    }
1388
0
  }
1389
0
  else {
1390
0
    failf(data, "Select failed");
1391
0
    result = CURLE_LOGIN_DENIED;
1392
0
  }
1393
1394
0
  return result;
1395
0
}
1396
1397
/* For the (first line of the) FETCH responses */
1398
static CURLcode imap_state_fetch_resp(struct Curl_easy *data,
1399
                                      struct imap_conn *imapc,
1400
                                      int imapcode,
1401
                                      imapstate instate)
1402
0
{
1403
0
  CURLcode result = CURLE_OK;
1404
0
  struct pingpong *pp = &imapc->pp;
1405
0
  const char *ptr = curlx_dyn_ptr(&imapc->pp.recvbuf);
1406
0
  size_t len = imapc->pp.nfinal;
1407
0
  bool parsed = FALSE;
1408
0
  curl_off_t size = 0;
1409
1410
0
  (void)instate;
1411
1412
0
  if(imapcode != '*') {
1413
0
    Curl_pgrsSetDownloadSize(data, -1);
1414
0
    imap_state(data, imapc, IMAP_STOP);
1415
0
    return CURLE_REMOTE_FILE_NOT_FOUND;
1416
0
  }
1417
1418
  /* Something like this is received "* 1 FETCH (BODY[TEXT] {2021}\r" so parse
1419
     the continuation data contained within the curly brackets */
1420
0
  ptr = imap_find_literal(ptr, len);
1421
0
  if(ptr) {
1422
0
    ptr++;
1423
0
    if(!curlx_str_number(&ptr, &size, CURL_OFF_T_MAX) &&
1424
0
       !curlx_str_single(&ptr, '}'))
1425
0
      parsed = TRUE;
1426
0
  }
1427
1428
0
  if(parsed) {
1429
0
    infof(data, "Found %" FMT_OFF_T " bytes to download", size);
1430
0
    Curl_pgrsSetDownloadSize(data, size);
1431
1432
0
    if(pp->overflow) {
1433
      /* At this point there is a data in the receive buffer that is body
1434
         content, send it as body and then skip it. Do note that there may
1435
         even be additional "headers" after the body. */
1436
0
      size_t chunk = pp->overflow;
1437
1438
      /* keep only the overflow */
1439
0
      curlx_dyn_tail(&pp->recvbuf, chunk);
1440
0
      pp->nfinal = 0; /* done */
1441
1442
0
      if(chunk > (size_t)size)
1443
        /* The conversion from curl_off_t to size_t is always fine here */
1444
0
        chunk = (size_t)size;
1445
1446
0
      if(!chunk) {
1447
        /* no size, we are done with the data */
1448
0
        imap_state(data, imapc, IMAP_STOP);
1449
0
        return CURLE_OK;
1450
0
      }
1451
0
      result = Curl_client_write(data, CLIENTWRITE_BODY,
1452
0
                                 curlx_dyn_ptr(&pp->recvbuf), chunk);
1453
0
      if(result)
1454
0
        return result;
1455
1456
0
      infof(data, "Written %zu bytes, %" FMT_OFF_T
1457
0
            " bytes are left for transfer", chunk, (curl_off_t)(size - chunk));
1458
1459
      /* Have we used the entire overflow or part of it?*/
1460
0
      if(pp->overflow > chunk) {
1461
        /* remember the remaining trailing overflow data */
1462
0
        pp->overflow -= chunk;
1463
0
        curlx_dyn_tail(&pp->recvbuf, pp->overflow);
1464
0
      }
1465
0
      else {
1466
0
        pp->overflow = 0; /* handled */
1467
        /* Free the cache */
1468
0
        curlx_dyn_reset(&pp->recvbuf);
1469
0
      }
1470
0
    }
1471
1472
0
    if(data->req.bytecount == size)
1473
      /* The entire data is already transferred! */
1474
0
      Curl_xfer_setup_nop(data);
1475
0
    else {
1476
      /* IMAP download */
1477
0
      data->req.maxdownload = size;
1478
0
      Curl_xfer_setup_recv(data, FIRSTSOCKET, size);
1479
0
    }
1480
0
  }
1481
0
  else {
1482
    /* We do not know how to parse this line */
1483
0
    failf(data, "Failed to parse FETCH response.");
1484
0
    result = CURLE_WEIRD_SERVER_REPLY;
1485
0
  }
1486
1487
  /* End of DO phase */
1488
0
  imap_state(data, imapc, IMAP_STOP);
1489
1490
0
  return result;
1491
0
}
1492
1493
/* For final FETCH responses performed after the download */
1494
static CURLcode imap_state_fetch_final_resp(struct Curl_easy *data,
1495
                                            struct imap_conn *imapc,
1496
                                            int imapcode,
1497
                                            imapstate instate)
1498
0
{
1499
0
  CURLcode result = CURLE_OK;
1500
1501
0
  (void)instate;
1502
1503
0
  if(imapcode != IMAP_RESP_OK)
1504
0
    result = CURLE_WEIRD_SERVER_REPLY;
1505
0
  else
1506
    /* End of DONE phase */
1507
0
    imap_state(data, imapc, IMAP_STOP);
1508
1509
0
  return result;
1510
0
}
1511
1512
/* For APPEND responses */
1513
static CURLcode imap_state_append_resp(struct Curl_easy *data,
1514
                                       struct imap_conn *imapc,
1515
                                       int imapcode,
1516
                                       imapstate instate)
1517
0
{
1518
0
  CURLcode result = CURLE_OK;
1519
0
  (void)instate;
1520
1521
0
  if(imapcode != '+') {
1522
0
    result = CURLE_UPLOAD_FAILED;
1523
0
  }
1524
0
  else {
1525
    /* Set the progress upload size */
1526
0
    Curl_pgrsSetUploadSize(data, data->state.infilesize);
1527
1528
    /* IMAP upload */
1529
0
    Curl_xfer_setup_send(data, FIRSTSOCKET);
1530
1531
    /* End of DO phase */
1532
0
    imap_state(data, imapc, IMAP_STOP);
1533
0
  }
1534
1535
0
  return result;
1536
0
}
1537
1538
/* For final APPEND responses performed after the upload */
1539
static CURLcode imap_state_append_final_resp(struct Curl_easy *data,
1540
                                             struct imap_conn *imapc,
1541
                                             int imapcode,
1542
                                             imapstate instate)
1543
0
{
1544
0
  CURLcode result = CURLE_OK;
1545
1546
0
  (void)instate;
1547
1548
0
  if(imapcode != IMAP_RESP_OK)
1549
0
    result = CURLE_UPLOAD_FAILED;
1550
0
  else
1551
    /* End of DONE phase */
1552
0
    imap_state(data, imapc, IMAP_STOP);
1553
1554
0
  return result;
1555
0
}
1556
1557
static CURLcode imap_pp_statemachine(struct Curl_easy *data,
1558
                                     struct connectdata *conn)
1559
0
{
1560
0
  CURLcode result = CURLE_OK;
1561
0
  int imapcode;
1562
0
  struct imap_conn *imapc = Curl_conn_meta_get(conn, CURL_META_IMAP_CONN);
1563
0
  struct IMAP *imap = Curl_meta_get(data, CURL_META_IMAP_EASY);
1564
0
  struct pingpong *pp;
1565
0
  size_t nread = 0;
1566
1567
0
  if(!imapc || !imap)
1568
0
    return CURLE_FAILED_INIT;
1569
0
  pp = &imapc->pp;
1570
  /* Busy upgrading the connection; right now all I/O is SSL/TLS, not IMAP */
1571
0
upgrade_tls:
1572
0
  if(imapc->state == IMAP_UPGRADETLS) {
1573
0
    result = imap_perform_upgrade_tls(data, imapc, conn);
1574
0
    if(result || (imapc->state == IMAP_UPGRADETLS))
1575
0
      return result;
1576
0
  }
1577
1578
  /* Flush any data that needs to be sent */
1579
0
  if(pp->sendleft)
1580
0
    return Curl_pp_flushsend(data, pp);
1581
1582
0
  do {
1583
    /* Read the response from the server */
1584
0
    result = Curl_pp_readresp(data, FIRSTSOCKET, pp, &imapcode, &nread);
1585
0
    if(result)
1586
0
      return result;
1587
1588
    /* Was there an error parsing the response line? */
1589
0
    if(imapcode == -1)
1590
0
      return CURLE_WEIRD_SERVER_REPLY;
1591
1592
0
    if(!imapcode)
1593
0
      break;
1594
1595
    /* We have now received a full IMAP server response */
1596
0
    switch(imapc->state) {
1597
0
    case IMAP_SERVERGREET:
1598
0
      result = imap_state_servergreet_resp(data, imapc,
1599
0
                                           imapcode, imapc->state);
1600
0
      break;
1601
1602
0
    case IMAP_CAPABILITY:
1603
0
      result = imap_state_capability_resp(data, imapc, imapcode, imapc->state);
1604
0
      break;
1605
1606
0
    case IMAP_STARTTLS:
1607
0
      result = imap_state_starttls_resp(data, imapc, imapcode, imapc->state);
1608
      /* During UPGRADETLS, leave the read loop as we need to connect
1609
       * (e.g. TLS handshake) before we continue sending/receiving. */
1610
0
      if(!result && (imapc->state == IMAP_UPGRADETLS))
1611
0
        goto upgrade_tls;
1612
0
      break;
1613
1614
0
    case IMAP_AUTHENTICATE:
1615
0
      result = imap_state_auth_resp(data, imapc, imapcode, imapc->state);
1616
0
      break;
1617
1618
0
    case IMAP_LOGIN:
1619
0
      result = imap_state_login_resp(data, imapc, imapcode, imapc->state);
1620
0
      break;
1621
1622
0
    case IMAP_LIST:
1623
0
    case IMAP_SEARCH:
1624
0
      result = imap_state_listsearch_resp(data, imapc, imapcode, imapc->state);
1625
0
      break;
1626
1627
0
    case IMAP_SELECT:
1628
0
      result = imap_state_select_resp(data, imapc, imap,
1629
0
                                      imapcode, imapc->state);
1630
0
      break;
1631
1632
0
    case IMAP_FETCH:
1633
0
      result = imap_state_fetch_resp(data, imapc, imapcode, imapc->state);
1634
0
      break;
1635
1636
0
    case IMAP_FETCH_FINAL:
1637
0
      result = imap_state_fetch_final_resp(data, imapc,
1638
0
                                           imapcode, imapc->state);
1639
0
      break;
1640
1641
0
    case IMAP_APPEND:
1642
0
      result = imap_state_append_resp(data, imapc, imapcode, imapc->state);
1643
0
      break;
1644
1645
0
    case IMAP_APPEND_FINAL:
1646
0
      result = imap_state_append_final_resp(data, imapc,
1647
0
                                            imapcode, imapc->state);
1648
0
      break;
1649
1650
0
    case IMAP_LOGOUT:
1651
0
    default:
1652
      /* internal error */
1653
0
      imap_state(data, imapc, IMAP_STOP);
1654
0
      break;
1655
0
    }
1656
0
  } while(!result && imapc->state != IMAP_STOP && Curl_pp_moredata(pp));
1657
1658
0
  return result;
1659
0
}
1660
1661
/* Called repeatedly until done from multi.c */
1662
static CURLcode imap_multi_statemach(struct Curl_easy *data, bool *done)
1663
0
{
1664
0
  CURLcode result = CURLE_OK;
1665
0
  struct imap_conn *imapc =
1666
0
    Curl_conn_meta_get(data->conn, CURL_META_IMAP_CONN);
1667
1668
0
  *done = FALSE;
1669
0
  if(!imapc)
1670
0
    return CURLE_FAILED_INIT;
1671
0
  result = Curl_pp_statemach(data, &imapc->pp, FALSE, FALSE);
1672
0
  *done = (imapc->state == IMAP_STOP);
1673
1674
0
  return result;
1675
0
}
1676
1677
static CURLcode imap_block_statemach(struct Curl_easy *data,
1678
                                     struct imap_conn *imapc,
1679
                                     bool disconnecting)
1680
0
{
1681
0
  CURLcode result = CURLE_OK;
1682
1683
0
  while(imapc->state != IMAP_STOP && !result)
1684
0
    result = Curl_pp_statemach(data, &imapc->pp, TRUE, disconnecting);
1685
1686
0
  return result;
1687
0
}
1688
1689
/* For the IMAP "protocol connect" and "doing" phases only */
1690
static CURLcode imap_pollset(struct Curl_easy *data,
1691
                             struct easy_pollset *ps)
1692
0
{
1693
0
  struct imap_conn *imapc =
1694
0
    Curl_conn_meta_get(data->conn, CURL_META_IMAP_CONN);
1695
0
  return imapc ? Curl_pp_pollset(data, &imapc->pp, ps) : CURLE_OK;
1696
0
}
1697
1698
static void imap_easy_reset(struct IMAP *imap)
1699
0
{
1700
0
  curlx_safefree(imap->mailbox);
1701
0
  curlx_safefree(imap->uid);
1702
0
  curlx_safefree(imap->mindex);
1703
0
  curlx_safefree(imap->section);
1704
0
  curlx_safefree(imap->partial);
1705
0
  curlx_safefree(imap->query);
1706
0
  curlx_safefree(imap->custom);
1707
0
  curlx_safefree(imap->custom_params);
1708
0
  imap->uidvalidity_set = FALSE;
1709
  /* Clear the transfer mode for the next request */
1710
0
  imap->transfer = PPTRANSFER_BODY;
1711
0
}
1712
1713
/***********************************************************************
1714
 *
1715
 * imap_is_bchar()
1716
 *
1717
 * Portable test of whether the specified char is a "bchar" as defined in the
1718
 * grammar of RFC-5092.
1719
 */
1720
static bool imap_is_bchar(char ch)
1721
0
{
1722
  /* Performing the alnum check first with macro is faster because of ASCII
1723
     arithmetic */
1724
0
  return ch && (ISALNUM(ch) || strchr(":@/&=-._~!$\'()*+,%", ch));
1725
0
}
1726
1727
/***********************************************************************
1728
 *
1729
 * imap_parse_url_options()
1730
 *
1731
 * Parse the URL login options.
1732
 */
1733
static CURLcode imap_parse_url_options(struct connectdata *conn,
1734
                                       struct imap_conn *imapc)
1735
0
{
1736
0
  CURLcode result = CURLE_OK;
1737
0
  const char *ptr = conn->options;
1738
0
  bool prefer_login = FALSE;
1739
1740
0
  while(!result && ptr && *ptr) {
1741
0
    const char *key = ptr;
1742
0
    const char *value;
1743
1744
0
    while(*ptr && *ptr != '=')
1745
0
      ptr++;
1746
1747
0
    value = ptr + 1;
1748
1749
0
    while(*ptr && *ptr != ';')
1750
0
      ptr++;
1751
1752
0
    if(curl_strnequal(key, "AUTH=+LOGIN", 11)) {
1753
      /* User prefers plaintext LOGIN over any SASL, including SASL LOGIN */
1754
0
      prefer_login = TRUE;
1755
0
      imapc->sasl.prefmech = SASL_AUTH_NONE;
1756
0
    }
1757
0
    else if(curl_strnequal(key, "AUTH=", 5)) {
1758
0
      prefer_login = FALSE;
1759
0
      result = Curl_sasl_parse_url_auth_option(&imapc->sasl,
1760
0
                                               value, ptr - value);
1761
0
    }
1762
0
    else {
1763
0
      prefer_login = FALSE;
1764
0
      result = CURLE_URL_MALFORMAT;
1765
0
    }
1766
1767
0
    if(*ptr == ';')
1768
0
      ptr++;
1769
0
  }
1770
1771
0
  if(prefer_login)
1772
0
    imapc->preftype = IMAP_TYPE_CLEARTEXT;
1773
0
  else {
1774
0
    switch(imapc->sasl.prefmech) {
1775
0
    case SASL_AUTH_NONE:
1776
0
      imapc->preftype = IMAP_TYPE_NONE;
1777
0
      break;
1778
0
    case SASL_AUTH_DEFAULT:
1779
0
      imapc->preftype = IMAP_TYPE_ANY;
1780
0
      break;
1781
0
    default:
1782
0
      imapc->preftype = IMAP_TYPE_SASL;
1783
0
      break;
1784
0
    }
1785
0
  }
1786
1787
0
  return result;
1788
0
}
1789
1790
/***********************************************************************
1791
 *
1792
 * imap_parse_url_path()
1793
 *
1794
 * Parse the URL path into separate path components.
1795
 *
1796
 */
1797
static CURLcode imap_parse_url_path(struct Curl_easy *data,
1798
                                    struct IMAP *imap)
1799
0
{
1800
  /* The imap struct is already initialized in imap_connect() */
1801
0
  CURLcode result = CURLE_OK;
1802
0
  const char *begin = &data->state.up.path[1]; /* skip leading slash */
1803
0
  const char *ptr = begin;
1804
1805
  /* See how much of the URL is a valid path and decode it */
1806
0
  while(imap_is_bchar(*ptr))
1807
0
    ptr++;
1808
1809
0
  if(ptr != begin) {
1810
    /* Remove the trailing slash if present */
1811
0
    const char *end = ptr;
1812
0
    if(end > begin && end[-1] == '/')
1813
0
      end--;
1814
1815
0
    result = Curl_urldecode(begin, end - begin, &imap->mailbox, NULL,
1816
0
                            REJECT_CTRL);
1817
0
    if(result)
1818
0
      return result;
1819
0
  }
1820
0
  else
1821
0
    imap->mailbox = NULL;
1822
1823
  /* There can be any number of parameters in the form ";NAME=VALUE" */
1824
0
  while(*ptr == ';') {
1825
0
    char *name;
1826
0
    char *value;
1827
0
    size_t valuelen;
1828
1829
    /* Find the length of the name parameter */
1830
0
    begin = ++ptr;
1831
0
    while(*ptr && *ptr != '=')
1832
0
      ptr++;
1833
1834
0
    if(!*ptr)
1835
0
      return CURLE_URL_MALFORMAT;
1836
1837
    /* Decode the name parameter */
1838
0
    result = Curl_urldecode(begin, ptr - begin, &name, NULL,
1839
0
                            REJECT_CTRL);
1840
0
    if(result)
1841
0
      return result;
1842
1843
    /* Find the length of the value parameter */
1844
0
    begin = ++ptr;
1845
0
    while(imap_is_bchar(*ptr))
1846
0
      ptr++;
1847
1848
    /* Decode the value parameter */
1849
0
    result = Curl_urldecode(begin, ptr - begin, &value, &valuelen,
1850
0
                            REJECT_CTRL);
1851
0
    if(result) {
1852
0
      curlx_free(name);
1853
0
      return result;
1854
0
    }
1855
1856
0
    DEBUGF(infof(data, "IMAP URL parameter '%s' = '%s'", name, value));
1857
1858
    /* Process the known hierarchical parameters (UIDVALIDITY, UID, SECTION
1859
       and PARTIAL) stripping of the trailing slash character if it is
1860
       present.
1861
1862
       Note: Unknown parameters trigger a URL_MALFORMAT error. */
1863
0
    if(valuelen > 0 && value[valuelen - 1] == '/')
1864
0
      value[valuelen - 1] = '\0';
1865
0
    if(valuelen) {
1866
0
      if(curl_strequal(name, "UIDVALIDITY") && !imap->uidvalidity_set) {
1867
0
        curl_off_t num;
1868
0
        const char *p = (const char *)value;
1869
0
        if(!curlx_str_number(&p, &num, UINT_MAX)) {
1870
0
          imap->uidvalidity = (unsigned int)num;
1871
0
          imap->uidvalidity_set = TRUE;
1872
0
        }
1873
0
        curlx_free(value);
1874
0
      }
1875
0
      else if(curl_strequal(name, "UID") && !imap->uid) {
1876
0
        imap->uid = value;
1877
0
      }
1878
0
      else if(curl_strequal(name, "MAILINDEX") && !imap->mindex) {
1879
0
        imap->mindex = value;
1880
0
      }
1881
0
      else if(curl_strequal(name, "SECTION") && !imap->section) {
1882
0
        imap->section = value;
1883
0
      }
1884
0
      else if(curl_strequal(name, "PARTIAL") && !imap->partial) {
1885
0
        imap->partial = value;
1886
0
      }
1887
0
      else {
1888
0
        curlx_free(name);
1889
0
        curlx_free(value);
1890
0
        return CURLE_URL_MALFORMAT;
1891
0
      }
1892
0
    }
1893
0
    else
1894
      /* blank? */
1895
0
      curlx_free(value);
1896
0
    curlx_free(name);
1897
0
  }
1898
1899
  /* Does the URL contain a query parameter? Only valid when we have a mailbox
1900
     and no UID as per RFC-5092 */
1901
0
  if(imap->mailbox && !imap->uid && !imap->mindex) {
1902
    /* Get the query parameter, URL decoded */
1903
0
    CURLUcode uc = curl_url_get(data->state.uh, CURLUPART_QUERY, &imap->query,
1904
0
                                CURLU_URLDECODE);
1905
0
    if(uc == CURLUE_OUT_OF_MEMORY)
1906
0
      return CURLE_OUT_OF_MEMORY;
1907
0
  }
1908
1909
  /* Any extra stuff at the end of the URL is an error */
1910
0
  if(*ptr)
1911
0
    return CURLE_URL_MALFORMAT;
1912
1913
0
  return CURLE_OK;
1914
0
}
1915
1916
/***********************************************************************
1917
 *
1918
 * imap_parse_custom_request()
1919
 *
1920
 * Parse the custom request.
1921
 */
1922
static CURLcode imap_parse_custom_request(struct Curl_easy *data,
1923
                                          struct IMAP *imap)
1924
0
{
1925
0
  CURLcode result = CURLE_OK;
1926
0
  const char *custom = CURL_EASY_STR(data, STRING_CUSTOMREQUEST);
1927
1928
0
  if(custom) {
1929
    /* URL decode the custom request */
1930
0
    result = Curl_urldecode(custom, 0, &imap->custom, NULL, REJECT_CTRL);
1931
1932
    /* Extract the parameters if specified */
1933
0
    if(!result) {
1934
0
      const char *params = imap->custom;
1935
1936
0
      while(*params && *params != ' ')
1937
0
        params++;
1938
1939
0
      if(*params) {
1940
0
        imap->custom_params = curlx_strdup(params);
1941
0
        imap->custom[params - imap->custom] = '\0';
1942
1943
0
        if(!imap->custom_params)
1944
0
          result = CURLE_OUT_OF_MEMORY;
1945
0
      }
1946
0
    }
1947
0
  }
1948
1949
0
  return result;
1950
0
}
1951
1952
/***********************************************************************
1953
 *
1954
 * imap_connect()
1955
 *
1956
 * This function should do everything that is to be considered a part of the
1957
 * connection phase.
1958
 *
1959
 * The variable 'done' points to will be TRUE if the protocol-layer connect
1960
 * phase is done when this function returns, or FALSE if not.
1961
 */
1962
static CURLcode imap_connect(struct Curl_easy *data, bool *done)
1963
0
{
1964
0
  struct imap_conn *imapc =
1965
0
    Curl_conn_meta_get(data->conn, CURL_META_IMAP_CONN);
1966
0
  CURLcode result = CURLE_OK;
1967
1968
0
  *done = FALSE; /* default to not done yet */
1969
0
  if(!imapc)
1970
0
    return CURLE_FAILED_INIT;
1971
1972
  /* Parse the URL options */
1973
0
  result = imap_parse_url_options(data->conn, imapc);
1974
0
  if(result)
1975
0
    return result;
1976
1977
  /* Start off waiting for the server greeting response */
1978
0
  imap_state(data, imapc, IMAP_SERVERGREET);
1979
1980
  /* Start off with an response id of '*' */
1981
0
  curlx_strcopy(imapc->resptag, sizeof(imapc->resptag), STRCONST("*"));
1982
1983
0
  result = imap_multi_statemach(data, done);
1984
1985
0
  return result;
1986
0
}
1987
1988
/***********************************************************************
1989
 *
1990
 * imap_done()
1991
 *
1992
 * The DONE function. This does what needs to be done after a single DO has
1993
 * performed.
1994
 *
1995
 * Input argument is already checked for validity.
1996
 */
1997
static CURLcode imap_done(struct Curl_easy *data, CURLcode status,
1998
                          bool premature)
1999
0
{
2000
0
  CURLcode result = CURLE_OK;
2001
0
  struct connectdata *conn = data->conn;
2002
0
  struct imap_conn *imapc = Curl_conn_meta_get(conn, CURL_META_IMAP_CONN);
2003
0
  struct IMAP *imap = Curl_meta_get(data, CURL_META_IMAP_EASY);
2004
2005
0
  (void)premature;
2006
2007
0
  if(!imapc)
2008
0
    return CURLE_FAILED_INIT;
2009
0
  if(!imap)
2010
0
    return CURLE_OK;
2011
2012
0
  if(status) {
2013
0
    CURL_TRC_M(data, "IMAP done with bad status");
2014
0
    connclose(conn); /* marked for closure */
2015
0
    result = status;         /* use the already set error code */
2016
0
  }
2017
0
  else if(!data->set.connect_only &&
2018
0
          ((!imap->custom && (imap->uid || imap->mindex)) ||
2019
0
           (imap->custom && data->req.maxdownload > 0) ||
2020
0
           data->state.upload || IS_MIME_POST(data))) {
2021
    /* Handle responses after FETCH or APPEND transfer has finished.
2022
       For custom commands, check if we set up a download which indicates
2023
       a FETCH-like command with literal data. */
2024
2025
0
    if(!data->state.upload && !IS_MIME_POST(data))
2026
0
      imap_state(data, imapc, IMAP_FETCH_FINAL);
2027
0
    else {
2028
      /* End the APPEND command first by sending an empty line */
2029
0
      result = Curl_pp_sendf(data, &imapc->pp, "%s", "");
2030
0
      if(!result)
2031
0
        imap_state(data, imapc, IMAP_APPEND_FINAL);
2032
0
    }
2033
2034
    /* Run the state-machine */
2035
0
    if(!result)
2036
0
      result = imap_block_statemach(data, imapc, FALSE);
2037
0
  }
2038
2039
0
  imap_easy_reset(imap);
2040
0
  return result;
2041
0
}
2042
2043
/***********************************************************************
2044
 *
2045
 * imap_perform()
2046
 *
2047
 * This is the actual DO function for IMAP. Fetch or append a message, or do
2048
 * other things according to the options previously setup.
2049
 */
2050
static CURLcode imap_perform(struct Curl_easy *data, bool *connected,
2051
                             bool *dophase_done)
2052
0
{
2053
  /* This is IMAP and no proxy */
2054
0
  CURLcode result = CURLE_OK;
2055
0
  struct connectdata *conn = data->conn;
2056
0
  struct imap_conn *imapc = Curl_conn_meta_get(conn, CURL_META_IMAP_CONN);
2057
0
  struct IMAP *imap = Curl_meta_get(data, CURL_META_IMAP_EASY);
2058
0
  bool selected = FALSE;
2059
2060
0
  DEBUGF(infof(data, "DO phase starts"));
2061
0
  if(!imapc || !imap)
2062
0
    return CURLE_FAILED_INIT;
2063
2064
0
  if(data->req.no_body) {
2065
    /* Requested no body means no transfer */
2066
0
    imap->transfer = PPTRANSFER_INFO;
2067
0
  }
2068
2069
0
  *dophase_done = FALSE; /* not done yet */
2070
2071
  /* Determine if the requested mailbox (with the same UIDVALIDITY if set)
2072
     has already been selected on this connection */
2073
0
  if(imap->mailbox && imapc->mailbox &&
2074
0
     (!strcmp(imap->mailbox, imapc->mailbox) ||
2075
0
      (curl_strequal(imap->mailbox, "INBOX") &&
2076
0
       curl_strequal(imapc->mailbox, "INBOX"))) &&
2077
0
     (!imap->uidvalidity_set || !imapc->mb_uidvalidity_set ||
2078
0
      (imap->uidvalidity == imapc->mb_uidvalidity)))
2079
0
    selected = TRUE;
2080
2081
  /* Start the first command in the DO phase */
2082
0
  if(data->state.upload || IS_MIME_POST(data))
2083
    /* APPEND can be executed directly */
2084
0
    result = imap_perform_append(data, imapc, imap);
2085
0
  else if(imap->custom && (selected || !imap->mailbox))
2086
    /* Custom command using the same mailbox or no mailbox */
2087
0
    result = imap_perform_list(data, imapc, imap);
2088
0
  else if(!imap->custom && selected && (imap->uid || imap->mindex))
2089
    /* FETCH from the same mailbox */
2090
0
    result = imap_perform_fetch(data, imapc, imap);
2091
0
  else if(!imap->custom && selected && imap->query)
2092
    /* SEARCH the current mailbox */
2093
0
    result = imap_perform_search(data, imapc, imap);
2094
0
  else if(imap->mailbox && !selected &&
2095
0
          (imap->custom || imap->uid || imap->mindex || imap->query))
2096
    /* SELECT the mailbox */
2097
0
    result = imap_perform_select(data, imapc, imap);
2098
0
  else
2099
    /* LIST */
2100
0
    result = imap_perform_list(data, imapc, imap);
2101
2102
0
  if(result)
2103
0
    return result;
2104
2105
  /* Run the state-machine */
2106
0
  result = imap_multi_statemach(data, dophase_done);
2107
2108
0
  *connected = Curl_conn_is_connected(conn, FIRSTSOCKET);
2109
2110
0
  if(*dophase_done)
2111
0
    DEBUGF(infof(data, "DO phase is complete"));
2112
2113
0
  return result;
2114
0
}
2115
2116
/* Call this when the DO phase has completed */
2117
static CURLcode imap_dophase_done(struct Curl_easy *data,
2118
                                  struct IMAP *imap,
2119
                                  bool connected)
2120
0
{
2121
0
  (void)connected;
2122
2123
0
  if(imap->transfer != PPTRANSFER_BODY)
2124
    /* no data to transfer */
2125
0
    Curl_xfer_setup_nop(data);
2126
2127
0
  return CURLE_OK;
2128
0
}
2129
2130
/***********************************************************************
2131
 *
2132
 * imap_regular_transfer()
2133
 *
2134
 * The input argument is already checked for validity.
2135
 *
2136
 * Performs all commands done before a regular transfer between a local and a
2137
 * remote host.
2138
 */
2139
static CURLcode imap_regular_transfer(struct Curl_easy *data,
2140
                                      struct IMAP *imap,
2141
                                      bool *dophase_done)
2142
0
{
2143
0
  CURLcode result = CURLE_OK;
2144
0
  bool connected = FALSE;
2145
2146
  /* Make sure size is unknown at this point */
2147
0
  data->req.size = -1;
2148
2149
  /* Set the progress data */
2150
0
  Curl_pgrsReset(data);
2151
2152
  /* Carry out the perform */
2153
0
  result = imap_perform(data, &connected, dophase_done);
2154
2155
  /* Perform post DO phase operations if necessary */
2156
0
  if(!result && *dophase_done)
2157
0
    result = imap_dophase_done(data, imap, connected);
2158
2159
0
  return result;
2160
0
}
2161
2162
/***********************************************************************
2163
 *
2164
 * imap_do()
2165
 *
2166
 * This function is registered as 'curl_do' function. It decodes the path
2167
 * parts etc as a wrapper to the actual DO function (imap_perform).
2168
 *
2169
 * The input argument is already checked for validity.
2170
 */
2171
static CURLcode imap_do(struct Curl_easy *data, bool *done)
2172
0
{
2173
0
  struct IMAP *imap = Curl_meta_get(data, CURL_META_IMAP_EASY);
2174
0
  CURLcode result = CURLE_OK;
2175
0
  *done = FALSE; /* default to false */
2176
2177
0
  if(!imap)
2178
0
    return CURLE_FAILED_INIT;
2179
  /* Parse the URL path */
2180
0
  result = imap_parse_url_path(data, imap);
2181
0
  if(result)
2182
0
    return result;
2183
2184
  /* Parse the custom request */
2185
0
  result = imap_parse_custom_request(data, imap);
2186
0
  if(result)
2187
0
    return result;
2188
2189
0
  result = imap_regular_transfer(data, imap, done);
2190
2191
0
  return result;
2192
0
}
2193
2194
/***********************************************************************
2195
 *
2196
 * imap_disconnect()
2197
 *
2198
 * Disconnect from an IMAP server. Cleanup protocol-specific per-connection
2199
 * resources. BLOCKING.
2200
 */
2201
static CURLcode imap_disconnect(struct Curl_easy *data,
2202
                                struct connectdata *conn, bool dead_connection)
2203
0
{
2204
0
  struct imap_conn *imapc = Curl_conn_meta_get(conn, CURL_META_IMAP_CONN);
2205
2206
0
  if(imapc &&
2207
     /* We cannot send quit unconditionally. If this connection is stale or
2208
        bad in any way (pingpong has pending data to send),
2209
        sending quit and waiting around here will make the
2210
        disconnect wait in vain and cause more problems than we need to. */
2211
0
     !dead_connection && conn->bits.protoconnstart &&
2212
0
     !Curl_pp_needs_flush(data, &imapc->pp) &&
2213
0
     !imap_perform_logout(data, imapc))
2214
0
    (void)imap_block_statemach(data, imapc, TRUE); /* ignore errors */
2215
2216
0
  return CURLE_OK;
2217
0
}
2218
2219
/* Called from multi.c while DOing */
2220
static CURLcode imap_doing(struct Curl_easy *data, bool *dophase_done)
2221
0
{
2222
0
  struct IMAP *imap = Curl_meta_get(data, CURL_META_IMAP_EASY);
2223
0
  CURLcode result;
2224
2225
0
  if(!imap)
2226
0
    return CURLE_FAILED_INIT;
2227
2228
0
  result = imap_multi_statemach(data, dophase_done);
2229
0
  if(result)
2230
0
    DEBUGF(infof(data, "DO phase failed"));
2231
0
  else if(*dophase_done) {
2232
0
    result = imap_dophase_done(data, imap, FALSE /* not connected */);
2233
2234
0
    DEBUGF(infof(data, "DO phase is complete"));
2235
0
  }
2236
2237
0
  return result;
2238
0
}
2239
2240
static void imap_easy_dtor(const void *key, size_t klen, void *entry)
2241
0
{
2242
0
  struct IMAP *imap = entry;
2243
0
  (void)key;
2244
0
  (void)klen;
2245
0
  imap_easy_reset(imap);
2246
0
  curlx_free(imap);
2247
0
}
2248
2249
static void imap_conn_dtor(const void *key, size_t klen, void *entry)
2250
0
{
2251
0
  struct imap_conn *imapc = entry;
2252
0
  (void)key;
2253
0
  (void)klen;
2254
0
  Curl_pp_disconnect(&imapc->pp);
2255
0
  curlx_dyn_free(&imapc->dyn);
2256
0
  curlx_safefree(imapc->mailbox);
2257
0
  curlx_free(imapc);
2258
0
}
2259
2260
/* SASL parameters for the imap protocol */
2261
static const struct SASLproto saslimap = {
2262
  "imap",                     /* The service name */
2263
  imap_perform_authenticate,  /* Send authentication command */
2264
  imap_continue_authenticate, /* Send authentication continuation */
2265
  imap_cancel_authenticate,   /* Send authentication cancellation */
2266
  imap_get_message,           /* Get SASL response message */
2267
  0,                          /* No maximum initial response length */
2268
  '+',                        /* Code received when continuation is expected */
2269
  IMAP_RESP_OK,               /* Code to receive upon authentication success */
2270
  SASL_AUTH_DEFAULT,          /* Default mechanisms */
2271
  SASL_FLAG_BASE64            /* Configuration flags */
2272
};
2273
2274
static CURLcode imap_setup_connection(struct Curl_easy *data,
2275
                                      struct connectdata *conn)
2276
0
{
2277
0
  struct imap_conn *imapc;
2278
0
  struct pingpong *pp;
2279
0
  struct IMAP *imap;
2280
2281
0
  imapc = curlx_calloc(1, sizeof(*imapc));
2282
0
  if(!imapc)
2283
0
    return CURLE_OUT_OF_MEMORY;
2284
2285
0
  pp = &imapc->pp;
2286
0
  PINGPONG_SETUP(pp, imap_pp_statemachine, imap_endofresp);
2287
2288
  /* Set the default preferred authentication type and mechanism */
2289
0
  imapc->preftype = IMAP_TYPE_ANY;
2290
0
  Curl_sasl_init(&imapc->sasl, data, &saslimap);
2291
2292
0
  curlx_dyn_init(&imapc->dyn, DYN_IMAP_CMD);
2293
0
  Curl_pp_init(pp, Curl_pgrs_now(data));
2294
2295
0
  if(Curl_conn_meta_set(conn, CURL_META_IMAP_CONN, imapc, imap_conn_dtor))
2296
0
    return CURLE_OUT_OF_MEMORY;
2297
2298
0
  imap = curlx_calloc(1, sizeof(struct IMAP));
2299
0
  if(!imap ||
2300
0
     Curl_meta_set(data, CURL_META_IMAP_EASY, imap, imap_easy_dtor))
2301
0
    return CURLE_OUT_OF_MEMORY;
2302
2303
0
  return CURLE_OK;
2304
0
}
2305
2306
/*
2307
 * IMAP protocol.
2308
 */
2309
const struct Curl_protocol Curl_protocol_imap = {
2310
  imap_setup_connection,            /* setup_connection */
2311
  imap_do,                          /* do_it */
2312
  imap_done,                        /* done */
2313
  ZERO_NULL,                        /* do_more */
2314
  imap_connect,                     /* connect_it */
2315
  imap_multi_statemach,             /* connecting */
2316
  imap_doing,                       /* doing */
2317
  imap_pollset,                     /* proto_pollset */
2318
  imap_pollset,                     /* doing_pollset */
2319
  ZERO_NULL,                        /* domore_pollset */
2320
  ZERO_NULL,                        /* perform_pollset */
2321
  imap_disconnect,                  /* disconnect */
2322
  ZERO_NULL,                        /* write_resp */
2323
  ZERO_NULL,                        /* write_resp_hd */
2324
  ZERO_NULL,                        /* connection_is_dead */
2325
  ZERO_NULL,                        /* attach connection */
2326
  ZERO_NULL,                        /* follow */
2327
};
2328
2329
#endif /* CURL_DISABLE_IMAP */