blob: e6090a0346ad4947791a04ffce71ba1d0a8e8e28 [file] [log] [blame]
Mike McCormackf2561fd2006-03-10 14:32:50 +09001/*
2 * git-imap-send - drops patches into an imap Drafts folder
3 * derived from isync/mbsync - mailbox synchronizer
4 *
5 * Copyright (C) 2000-2002 Michael R. Elkins <me@mutt.org>
6 * Copyright (C) 2002-2004 Oswald Buddenhagen <ossi@users.sf.net>
7 * Copyright (C) 2004 Theodore Y. Ts'o <tytso@mit.edu>
8 * Copyright (C) 2006 Mike McCormack
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
Todd Zullinger48425792017-11-07 00:39:33 -050021 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Mike McCormackf2561fd2006-03-10 14:32:50 +090022 */
23
24#include "cache.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -070025#include "config.h"
Dan Albert791643a2014-04-28 20:00:04 -070026#include "credential.h"
Stefan Bellerd807c4a2018-04-10 14:26:18 -070027#include "exec-cmd.h"
Erik Faye-Lundc94d2dd2009-10-19 17:42:04 +020028#include "run-command.h"
Bernhard Reiterf1a35292014-11-05 15:29:21 +010029#include "parse-options.h"
Robert Shearman684ec6c2008-07-09 22:29:00 +010030#ifdef NO_OPENSSL
31typedef void *SSL;
32#endif
Bernhard Reiter1e16b252014-11-09 15:55:53 +010033#ifdef USE_CURL_FOR_IMAP_SEND
34#include "http.h"
35#endif
Mike McCormackf2561fd2006-03-10 14:32:50 +090036
Nicolas Morey-Chaisemartindbba42b2017-09-14 09:52:11 +020037#if defined(USE_CURL_FOR_IMAP_SEND)
38/* Always default to curl if it's available. */
Kyle J. McKaydcd01ea2015-03-07 21:13:55 -080039#define USE_CURL_DEFAULT 1
40#else
Nicolas Morey-Chaisemartindbba42b2017-09-14 09:52:11 +020041/* We don't have curl, so continue to use the historical implementation */
Kyle J. McKaydcd01ea2015-03-07 21:13:55 -080042#define USE_CURL_DEFAULT 0
43#endif
44
Bernhard Reiterf1a35292014-11-05 15:29:21 +010045static int verbosity;
Kyle J. McKaydcd01ea2015-03-07 21:13:55 -080046static int use_curl = USE_CURL_DEFAULT;
Bernhard Reiterf1a35292014-11-05 15:29:21 +010047
Bernhard Reiter1e16b252014-11-09 15:55:53 +010048static const char * const imap_send_usage[] = { "git imap-send [-v] [-q] [--[no-]curl] < <mbox>", NULL };
Bernhard Reiterf1a35292014-11-05 15:29:21 +010049
50static struct option imap_send_options[] = {
51 OPT__VERBOSITY(&verbosity),
Bernhard Reiter1e16b252014-11-09 15:55:53 +010052 OPT_BOOL(0, "curl", &use_curl, "use libcurl to communicate with the IMAP server"),
Bernhard Reiterf1a35292014-11-05 15:29:21 +010053 OPT_END()
54};
Jonathan Nieder9a2861e2009-11-09 09:04:51 -060055
Erik Faye-Lundd23b1ec2009-10-19 17:42:05 +020056#undef DRV_OK
Mike McCormackf2561fd2006-03-10 14:32:50 +090057#define DRV_OK 0
58#define DRV_MSG_BAD -1
59#define DRV_BOX_BAD -2
60#define DRV_STORE_BAD -3
61
Tarmigan Casebolt28bea9e2009-11-14 13:33:13 -080062__attribute__((format (printf, 1, 2)))
Robert Shearman95c53902008-07-09 22:29:01 +010063static void imap_info(const char *, ...);
Tarmigan Casebolt28bea9e2009-11-14 13:33:13 -080064__attribute__((format (printf, 1, 2)))
Robert Shearman95c53902008-07-09 22:29:01 +010065static void imap_warn(const char *, ...);
Mike McCormackf2561fd2006-03-10 14:32:50 +090066
Robert Shearman95c53902008-07-09 22:29:01 +010067static char *next_arg(char **);
Mike McCormackf2561fd2006-03-10 14:32:50 +090068
Tarmigan Casebolt28bea9e2009-11-14 13:33:13 -080069__attribute__((format (printf, 3, 4)))
Robert Shearman95c53902008-07-09 22:29:01 +010070static int nfsnprintf(char *buf, int blen, const char *fmt, ...);
Mike McCormackf2561fd2006-03-10 14:32:50 +090071
Pierre Habouzit19247e52007-09-20 10:43:11 +020072static int nfvasprintf(char **strp, const char *fmt, va_list ap)
73{
74 int len;
75 char tmp[8192];
Mike McCormackf2561fd2006-03-10 14:32:50 +090076
Pierre Habouzit19247e52007-09-20 10:43:11 +020077 len = vsnprintf(tmp, sizeof(tmp), fmt, ap);
78 if (len < 0)
Alexander Potashevd7530702009-01-04 21:38:41 +030079 die("Fatal: Out of memory");
Pierre Habouzit19247e52007-09-20 10:43:11 +020080 if (len >= sizeof(tmp))
Alexander Potashevd7530702009-01-04 21:38:41 +030081 die("imap command overflow!");
Pierre Habouzit19247e52007-09-20 10:43:11 +020082 *strp = xmemdupz(tmp, len);
83 return len;
84}
Mike McCormackf2561fd2006-03-10 14:32:50 +090085
Junio C Hamano9f1ad542008-07-09 16:37:38 -070086struct imap_server_conf {
Nicolas Morey-Chaisemartin50212362020-12-01 08:38:16 +010087 const char *name;
88 const char *tunnel;
89 const char *host;
Mike McCormackf2561fd2006-03-10 14:32:50 +090090 int port;
Nicolas Morey-Chaisemartin50212362020-12-01 08:38:16 +010091 const char *folder;
92 const char *user;
93 const char *pass;
Robert Shearman684ec6c2008-07-09 22:29:00 +010094 int use_ssl;
95 int ssl_verify;
Jeremy Whitec64d84f2009-02-12 08:58:12 -060096 int use_html;
Nicolas Morey-Chaisemartin50212362020-12-01 08:38:16 +010097 const char *auth_method;
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -080098};
Mike McCormackf2561fd2006-03-10 14:32:50 +090099
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -0800100static struct imap_server_conf server = {
101 NULL, /* name */
102 NULL, /* tunnel */
103 NULL, /* host */
104 0, /* port */
Bernhard Reiter39180572014-08-19 23:27:11 +0200105 NULL, /* folder */
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -0800106 NULL, /* user */
107 NULL, /* pass */
108 0, /* use_ssl */
109 1, /* ssl_verify */
110 0, /* use_html */
111 NULL, /* auth_method */
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700112};
Mike McCormackf2561fd2006-03-10 14:32:50 +0900113
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700114struct imap_socket {
Erik Faye-Lund7a7796e2009-10-19 17:42:03 +0200115 int fd[2];
Robert Shearman684ec6c2008-07-09 22:29:00 +0100116 SSL *ssl;
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700117};
Mike McCormackf2561fd2006-03-10 14:32:50 +0900118
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700119struct imap_buffer {
120 struct imap_socket sock;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900121 int bytes;
122 int offset;
123 char buf[1024];
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700124};
Mike McCormackf2561fd2006-03-10 14:32:50 +0900125
126struct imap_cmd;
127
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700128struct imap {
Mike McCormackf2561fd2006-03-10 14:32:50 +0900129 int uidnext; /* from SELECT responses */
Mike McCormackf2561fd2006-03-10 14:32:50 +0900130 unsigned caps, rcaps; /* CAPABILITY results */
131 /* command queue */
132 int nexttag, num_in_progress, literal_pending;
133 struct imap_cmd *in_progress, **in_progress_append;
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700134 struct imap_buffer buf; /* this is BIG, so put it last */
135};
Mike McCormackf2561fd2006-03-10 14:32:50 +0900136
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700137struct imap_store {
Michael Haggerty636fd662013-01-15 09:06:31 +0100138 /* currently open mailbox */
139 const char *name; /* foreign! maybe preset? */
140 int uidvalidity;
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700141 struct imap *imap;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900142 const char *prefix;
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700143};
Mike McCormackf2561fd2006-03-10 14:32:50 +0900144
145struct imap_cmd_cb {
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700146 int (*cont)(struct imap_store *ctx, struct imap_cmd *cmd, const char *prompt);
147 void (*done)(struct imap_store *ctx, struct imap_cmd *cmd, int response);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900148 void *ctx;
149 char *data;
150 int dlen;
151 int uid;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900152};
153
154struct imap_cmd {
155 struct imap_cmd *next;
156 struct imap_cmd_cb cb;
157 char *cmd;
158 int tag;
159};
160
161#define CAP(cap) (imap->caps & (1 << (cap)))
162
163enum CAPABILITY {
164 NOLOGIN = 0,
165 UIDPLUS,
166 LITERALPLUS,
167 NAMESPACE,
Robert Shearman684ec6c2008-07-09 22:29:00 +0100168 STARTTLS,
Gary V. Vaughan4b055482010-05-14 09:31:35 +0000169 AUTH_CRAM_MD5
Mike McCormackf2561fd2006-03-10 14:32:50 +0900170};
171
172static const char *cap_list[] = {
173 "LOGINDISABLED",
174 "UIDPLUS",
175 "LITERAL+",
176 "NAMESPACE",
Robert Shearman684ec6c2008-07-09 22:29:00 +0100177 "STARTTLS",
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -0800178 "AUTH=CRAM-MD5",
Mike McCormackf2561fd2006-03-10 14:32:50 +0900179};
180
181#define RESP_OK 0
182#define RESP_NO 1
183#define RESP_BAD 2
184
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700185static int get_cmd_result(struct imap_store *ctx, struct imap_cmd *tcmd);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900186
187
Robert Shearman684ec6c2008-07-09 22:29:00 +0100188#ifndef NO_OPENSSL
189static void ssl_socket_perror(const char *func)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900190{
Linus Torvalds2af202b2009-06-18 10:28:43 -0700191 fprintf(stderr, "%s: %s\n", func, ERR_error_string(ERR_get_error(), NULL));
Robert Shearman684ec6c2008-07-09 22:29:00 +0100192}
193#endif
194
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700195static void socket_perror(const char *func, struct imap_socket *sock, int ret)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900196{
Robert Shearman684ec6c2008-07-09 22:29:00 +0100197#ifndef NO_OPENSSL
198 if (sock->ssl) {
199 int sslerr = SSL_get_error(sock->ssl, ret);
200 switch (sslerr) {
201 case SSL_ERROR_NONE:
202 break;
203 case SSL_ERROR_SYSCALL:
204 perror("SSL_connect");
205 break;
206 default:
207 ssl_socket_perror("SSL_connect");
208 break;
209 }
210 } else
211#endif
212 {
213 if (ret < 0)
214 perror(func);
215 else
216 fprintf(stderr, "%s: unexpected EOF\n", func);
217 }
218}
219
Junio C Hamano1e1fe522013-02-15 12:32:19 -0800220#ifdef NO_OPENSSL
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700221static int ssl_socket_connect(struct imap_socket *sock, int use_tls_only, int verify)
Robert Shearman684ec6c2008-07-09 22:29:00 +0100222{
Robert Shearman684ec6c2008-07-09 22:29:00 +0100223 fprintf(stderr, "SSL requested but SSL support not compiled in\n");
224 return -1;
Junio C Hamano1e1fe522013-02-15 12:32:19 -0800225}
226
Robert Shearman684ec6c2008-07-09 22:29:00 +0100227#else
Junio C Hamano1e1fe522013-02-15 12:32:19 -0800228
Oswald Buddenhagenb62fb072013-02-15 12:50:35 -0800229static int host_matches(const char *host, const char *pattern)
230{
231 if (pattern[0] == '*' && pattern[1] == '.') {
232 pattern += 2;
233 if (!(host = strchr(host, '.')))
234 return 0;
235 host++;
236 }
237
238 return *host && *pattern && !strcasecmp(host, pattern);
239}
240
241static int verify_hostname(X509 *cert, const char *hostname)
242{
243 int len;
244 X509_NAME *subj;
245 char cname[1000];
Oswald Buddenhagene1747442013-02-15 12:59:53 -0800246 int i, found;
247 STACK_OF(GENERAL_NAME) *subj_alt_names;
248
249 /* try the DNS subjectAltNames */
250 found = 0;
251 if ((subj_alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL))) {
252 int num_subj_alt_names = sk_GENERAL_NAME_num(subj_alt_names);
253 for (i = 0; !found && i < num_subj_alt_names; i++) {
254 GENERAL_NAME *subj_alt_name = sk_GENERAL_NAME_value(subj_alt_names, i);
255 if (subj_alt_name->type == GEN_DNS &&
256 strlen((const char *)subj_alt_name->d.ia5->data) == (size_t)subj_alt_name->d.ia5->length &&
257 host_matches(hostname, (const char *)(subj_alt_name->d.ia5->data)))
258 found = 1;
259 }
260 sk_GENERAL_NAME_pop_free(subj_alt_names, GENERAL_NAME_free);
261 }
262 if (found)
263 return 0;
Oswald Buddenhagenb62fb072013-02-15 12:50:35 -0800264
265 /* try the common name */
266 if (!(subj = X509_get_subject_name(cert)))
267 return error("cannot get certificate subject");
268 if ((len = X509_NAME_get_text_by_NID(subj, NID_commonName, cname, sizeof(cname))) < 0)
269 return error("cannot get certificate common name");
270 if (strlen(cname) == (size_t)len && host_matches(hostname, cname))
271 return 0;
272 return error("certificate owner '%s' does not match hostname '%s'",
273 cname, hostname);
274}
275
Junio C Hamano1e1fe522013-02-15 12:32:19 -0800276static int ssl_socket_connect(struct imap_socket *sock, int use_tls_only, int verify)
277{
Vietor Liu1e380dd2009-10-31 14:36:03 +0800278#if (OPENSSL_VERSION_NUMBER >= 0x10000000L)
279 const SSL_METHOD *meth;
280#else
Robert Shearman684ec6c2008-07-09 22:29:00 +0100281 SSL_METHOD *meth;
Vietor Liu1e380dd2009-10-31 14:36:03 +0800282#endif
Robert Shearman684ec6c2008-07-09 22:29:00 +0100283 SSL_CTX *ctx;
284 int ret;
Oswald Buddenhagenb62fb072013-02-15 12:50:35 -0800285 X509 *cert;
Robert Shearman684ec6c2008-07-09 22:29:00 +0100286
287 SSL_library_init();
288 SSL_load_error_strings();
289
Kazuki Yamaguchib51c0d42016-04-09 01:22:15 +0900290 meth = SSLv23_method();
Robert Shearman684ec6c2008-07-09 22:29:00 +0100291 if (!meth) {
292 ssl_socket_perror("SSLv23_method");
293 return -1;
294 }
295
296 ctx = SSL_CTX_new(meth);
Kazuki Yamaguchi6738a332016-04-09 01:22:14 +0900297 if (!ctx) {
298 ssl_socket_perror("SSL_CTX_new");
299 return -1;
300 }
Robert Shearman684ec6c2008-07-09 22:29:00 +0100301
Kazuki Yamaguchib51c0d42016-04-09 01:22:15 +0900302 if (use_tls_only)
303 SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3);
Robert Shearman684ec6c2008-07-09 22:29:00 +0100304
305 if (verify)
306 SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, NULL);
307
308 if (!SSL_CTX_set_default_verify_paths(ctx)) {
309 ssl_socket_perror("SSL_CTX_set_default_verify_paths");
310 return -1;
311 }
312 sock->ssl = SSL_new(ctx);
313 if (!sock->ssl) {
314 ssl_socket_perror("SSL_new");
315 return -1;
316 }
Erik Faye-Lund7a7796e2009-10-19 17:42:03 +0200317 if (!SSL_set_rfd(sock->ssl, sock->fd[0])) {
318 ssl_socket_perror("SSL_set_rfd");
319 return -1;
320 }
321 if (!SSL_set_wfd(sock->ssl, sock->fd[1])) {
322 ssl_socket_perror("SSL_set_wfd");
Robert Shearman684ec6c2008-07-09 22:29:00 +0100323 return -1;
324 }
325
Junio C Hamano698a1ec2013-02-20 16:02:42 -0800326#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
327 /*
328 * SNI (RFC4366)
329 * OpenSSL does not document this function, but the implementation
330 * returns 1 on success, 0 on failure after calling SSLerr().
331 */
332 ret = SSL_set_tlsext_host_name(sock->ssl, server.host);
333 if (ret != 1)
334 warning("SSL_set_tlsext_host_name(%s) failed.", server.host);
335#endif
336
Robert Shearman684ec6c2008-07-09 22:29:00 +0100337 ret = SSL_connect(sock->ssl);
338 if (ret <= 0) {
339 socket_perror("SSL_connect", sock, ret);
340 return -1;
341 }
342
Oswald Buddenhagenb62fb072013-02-15 12:50:35 -0800343 if (verify) {
344 /* make sure the hostname matches that of the certificate */
345 cert = SSL_get_peer_certificate(sock->ssl);
346 if (!cert)
347 return error("unable to get peer certificate.");
348 if (verify_hostname(cert, server.host) < 0)
349 return -1;
350 }
351
Robert Shearman684ec6c2008-07-09 22:29:00 +0100352 return 0;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900353}
Junio C Hamano1e1fe522013-02-15 12:32:19 -0800354#endif
Mike McCormackf2561fd2006-03-10 14:32:50 +0900355
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700356static int socket_read(struct imap_socket *sock, char *buf, int len)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900357{
Robert Shearman684ec6c2008-07-09 22:29:00 +0100358 ssize_t n;
359#ifndef NO_OPENSSL
360 if (sock->ssl)
361 n = SSL_read(sock->ssl, buf, len);
362 else
363#endif
Erik Faye-Lund7a7796e2009-10-19 17:42:03 +0200364 n = xread(sock->fd[0], buf, len);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900365 if (n <= 0) {
Robert Shearman95c53902008-07-09 22:29:01 +0100366 socket_perror("read", sock, n);
Erik Faye-Lund7a7796e2009-10-19 17:42:03 +0200367 close(sock->fd[0]);
368 close(sock->fd[1]);
369 sock->fd[0] = sock->fd[1] = -1;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900370 }
371 return n;
372}
373
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700374static int socket_write(struct imap_socket *sock, const char *buf, int len)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900375{
Robert Shearman684ec6c2008-07-09 22:29:00 +0100376 int n;
377#ifndef NO_OPENSSL
378 if (sock->ssl)
379 n = SSL_write(sock->ssl, buf, len);
380 else
381#endif
Erik Faye-Lund7a7796e2009-10-19 17:42:03 +0200382 n = write_in_full(sock->fd[1], buf, len);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900383 if (n != len) {
Robert Shearman95c53902008-07-09 22:29:01 +0100384 socket_perror("write", sock, n);
Erik Faye-Lund7a7796e2009-10-19 17:42:03 +0200385 close(sock->fd[0]);
386 close(sock->fd[1]);
387 sock->fd[0] = sock->fd[1] = -1;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900388 }
389 return n;
390}
391
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700392static void socket_shutdown(struct imap_socket *sock)
Robert Shearman684ec6c2008-07-09 22:29:00 +0100393{
394#ifndef NO_OPENSSL
395 if (sock->ssl) {
396 SSL_shutdown(sock->ssl);
397 SSL_free(sock->ssl);
398 }
399#endif
Erik Faye-Lund7a7796e2009-10-19 17:42:03 +0200400 close(sock->fd[0]);
401 close(sock->fd[1]);
Robert Shearman684ec6c2008-07-09 22:29:00 +0100402}
403
Mike McCormackf2561fd2006-03-10 14:32:50 +0900404/* simple line buffering */
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700405static int buffer_gets(struct imap_buffer *b, char **s)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900406{
407 int n;
408 int start = b->offset;
409
410 *s = b->buf + start;
411
412 for (;;) {
413 /* make sure we have enough data to read the \r\n sequence */
414 if (b->offset + 1 >= b->bytes) {
415 if (start) {
416 /* shift down used bytes */
417 *s = b->buf;
418
Robert Shearman95c53902008-07-09 22:29:01 +0100419 assert(start <= b->bytes);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900420 n = b->bytes - start;
421
422 if (n)
Edgar Toernig173a9cb2006-10-30 17:39:17 -0800423 memmove(b->buf, b->buf + start, n);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900424 b->offset -= start;
425 b->bytes = n;
426 start = 0;
427 }
428
Robert Shearman95c53902008-07-09 22:29:01 +0100429 n = socket_read(&b->sock, b->buf + b->bytes,
430 sizeof(b->buf) - b->bytes);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900431
432 if (n <= 0)
433 return -1;
434
435 b->bytes += n;
436 }
437
438 if (b->buf[b->offset] == '\r') {
Robert Shearman95c53902008-07-09 22:29:01 +0100439 assert(b->offset + 1 < b->bytes);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900440 if (b->buf[b->offset + 1] == '\n') {
441 b->buf[b->offset] = 0; /* terminate the string */
442 b->offset += 2; /* next line */
Bernhard Reiterf1a35292014-11-05 15:29:21 +0100443 if (0 < verbosity)
Robert Shearman95c53902008-07-09 22:29:01 +0100444 puts(*s);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900445 return 0;
446 }
447 }
448
449 b->offset++;
450 }
451 /* not reached */
452}
453
Ævar Arnfjörð Bjarmason48ca53c2021-07-13 10:05:18 +0200454__attribute__((format (printf, 1, 2)))
Robert Shearman95c53902008-07-09 22:29:01 +0100455static void imap_info(const char *msg, ...)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900456{
457 va_list va;
458
Bernhard Reiterf1a35292014-11-05 15:29:21 +0100459 if (0 <= verbosity) {
Robert Shearman95c53902008-07-09 22:29:01 +0100460 va_start(va, msg);
461 vprintf(msg, va);
462 va_end(va);
463 fflush(stdout);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900464 }
465}
466
Ævar Arnfjörð Bjarmason48ca53c2021-07-13 10:05:18 +0200467__attribute__((format (printf, 1, 2)))
Robert Shearman95c53902008-07-09 22:29:01 +0100468static void imap_warn(const char *msg, ...)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900469{
470 va_list va;
471
Bernhard Reiterf1a35292014-11-05 15:29:21 +0100472 if (-2 < verbosity) {
Robert Shearman95c53902008-07-09 22:29:01 +0100473 va_start(va, msg);
474 vfprintf(stderr, msg, va);
475 va_end(va);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900476 }
477}
478
Robert Shearman95c53902008-07-09 22:29:01 +0100479static char *next_arg(char **s)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900480{
481 char *ret;
482
483 if (!s || !*s)
Rene Scharfe5142db62006-04-02 13:13:01 +0200484 return NULL;
Robert Shearman95c53902008-07-09 22:29:01 +0100485 while (isspace((unsigned char) **s))
Mike McCormackf2561fd2006-03-10 14:32:50 +0900486 (*s)++;
487 if (!**s) {
Rene Scharfe5142db62006-04-02 13:13:01 +0200488 *s = NULL;
489 return NULL;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900490 }
491 if (**s == '"') {
492 ++*s;
493 ret = *s;
Robert Shearman95c53902008-07-09 22:29:01 +0100494 *s = strchr(*s, '"');
Mike McCormackf2561fd2006-03-10 14:32:50 +0900495 } else {
496 ret = *s;
Robert Shearman95c53902008-07-09 22:29:01 +0100497 while (**s && !isspace((unsigned char) **s))
Mike McCormackf2561fd2006-03-10 14:32:50 +0900498 (*s)++;
499 }
500 if (*s) {
501 if (**s)
502 *(*s)++ = 0;
503 if (!**s)
Rene Scharfe5142db62006-04-02 13:13:01 +0200504 *s = NULL;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900505 }
506 return ret;
507}
508
Ævar Arnfjörð Bjarmason48ca53c2021-07-13 10:05:18 +0200509__attribute__((format (printf, 3, 4)))
Robert Shearman95c53902008-07-09 22:29:01 +0100510static int nfsnprintf(char *buf, int blen, const char *fmt, ...)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900511{
512 int ret;
513 va_list va;
514
Robert Shearman95c53902008-07-09 22:29:01 +0100515 va_start(va, fmt);
516 if (blen <= 0 || (unsigned)(ret = vsnprintf(buf, blen, fmt, va)) >= (unsigned)blen)
Johannes Schindelin033abf92018-05-02 11:38:39 +0200517 BUG("buffer too small. Please report a bug.");
Robert Shearman95c53902008-07-09 22:29:01 +0100518 va_end(va);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900519 return ret;
520}
521
Tony Finche0d8e302014-08-01 09:15:52 +0100522static struct imap_cmd *issue_imap_cmd(struct imap_store *ctx,
523 struct imap_cmd_cb *cb,
524 const char *fmt, va_list ap)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900525{
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700526 struct imap *imap = ctx->imap;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900527 struct imap_cmd *cmd;
528 int n, bufl;
529 char buf[1024];
530
Robert Shearman95c53902008-07-09 22:29:01 +0100531 cmd = xmalloc(sizeof(struct imap_cmd));
532 nfvasprintf(&cmd->cmd, fmt, ap);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900533 cmd->tag = ++imap->nexttag;
534
535 if (cb)
536 cmd->cb = *cb;
537 else
Robert Shearman95c53902008-07-09 22:29:01 +0100538 memset(&cmd->cb, 0, sizeof(cmd->cb));
Mike McCormackf2561fd2006-03-10 14:32:50 +0900539
540 while (imap->literal_pending)
Robert Shearman95c53902008-07-09 22:29:01 +0100541 get_cmd_result(ctx, NULL);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900542
Ævar Arnfjörð Bjarmason1702b132010-08-07 18:09:45 -0500543 if (!cmd->cb.data)
544 bufl = nfsnprintf(buf, sizeof(buf), "%d %s\r\n", cmd->tag, cmd->cmd);
545 else
546 bufl = nfsnprintf(buf, sizeof(buf), "%d %s{%d%s}\r\n",
547 cmd->tag, cmd->cmd, cmd->cb.dlen,
548 CAP(LITERALPLUS) ? "+" : "");
549
Bernhard Reiterf1a35292014-11-05 15:29:21 +0100550 if (0 < verbosity) {
Mike McCormackf2561fd2006-03-10 14:32:50 +0900551 if (imap->num_in_progress)
Robert Shearman95c53902008-07-09 22:29:01 +0100552 printf("(%d in progress) ", imap->num_in_progress);
René Scharfeba9b9e12014-08-30 18:14:24 +0200553 if (!starts_with(cmd->cmd, "LOGIN"))
Robert Shearman95c53902008-07-09 22:29:01 +0100554 printf(">>> %s", buf);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900555 else
Robert Shearman95c53902008-07-09 22:29:01 +0100556 printf(">>> %d LOGIN <user> <pass>\n", cmd->tag);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900557 }
Robert Shearman95c53902008-07-09 22:29:01 +0100558 if (socket_write(&imap->buf.sock, buf, bufl) != bufl) {
559 free(cmd->cmd);
560 free(cmd);
Jim Meyering8e0f7002008-01-31 18:26:32 +0100561 if (cb)
Robert Shearman95c53902008-07-09 22:29:01 +0100562 free(cb->data);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900563 return NULL;
564 }
565 if (cmd->cb.data) {
566 if (CAP(LITERALPLUS)) {
Robert Shearman95c53902008-07-09 22:29:01 +0100567 n = socket_write(&imap->buf.sock, cmd->cb.data, cmd->cb.dlen);
568 free(cmd->cb.data);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900569 if (n != cmd->cb.dlen ||
Benjamin Kramer8e76bf32009-03-13 13:51:33 +0100570 socket_write(&imap->buf.sock, "\r\n", 2) != 2) {
Robert Shearman95c53902008-07-09 22:29:01 +0100571 free(cmd->cmd);
572 free(cmd);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900573 return NULL;
574 }
Rene Scharfe5142db62006-04-02 13:13:01 +0200575 cmd->cb.data = NULL;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900576 } else
577 imap->literal_pending = 1;
578 } else if (cmd->cb.cont)
579 imap->literal_pending = 1;
Rene Scharfe5142db62006-04-02 13:13:01 +0200580 cmd->next = NULL;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900581 *imap->in_progress_append = cmd;
582 imap->in_progress_append = &cmd->next;
583 imap->num_in_progress++;
584 return cmd;
585}
586
Tarmigan Casebolt28bea9e2009-11-14 13:33:13 -0800587__attribute__((format (printf, 3, 4)))
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700588static int imap_exec(struct imap_store *ctx, struct imap_cmd_cb *cb,
Robert Shearman95c53902008-07-09 22:29:01 +0100589 const char *fmt, ...)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900590{
591 va_list ap;
592 struct imap_cmd *cmdp;
593
Robert Shearman95c53902008-07-09 22:29:01 +0100594 va_start(ap, fmt);
Tony Finche0d8e302014-08-01 09:15:52 +0100595 cmdp = issue_imap_cmd(ctx, cb, fmt, ap);
Robert Shearman95c53902008-07-09 22:29:01 +0100596 va_end(ap);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900597 if (!cmdp)
598 return RESP_BAD;
599
Robert Shearman95c53902008-07-09 22:29:01 +0100600 return get_cmd_result(ctx, cmdp);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900601}
602
Tarmigan Casebolt28bea9e2009-11-14 13:33:13 -0800603__attribute__((format (printf, 3, 4)))
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700604static int imap_exec_m(struct imap_store *ctx, struct imap_cmd_cb *cb,
Robert Shearman95c53902008-07-09 22:29:01 +0100605 const char *fmt, ...)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900606{
607 va_list ap;
608 struct imap_cmd *cmdp;
609
Robert Shearman95c53902008-07-09 22:29:01 +0100610 va_start(ap, fmt);
Tony Finche0d8e302014-08-01 09:15:52 +0100611 cmdp = issue_imap_cmd(ctx, cb, fmt, ap);
Robert Shearman95c53902008-07-09 22:29:01 +0100612 va_end(ap);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900613 if (!cmdp)
614 return DRV_STORE_BAD;
615
Robert Shearman95c53902008-07-09 22:29:01 +0100616 switch (get_cmd_result(ctx, cmdp)) {
Mike McCormackf2561fd2006-03-10 14:32:50 +0900617 case RESP_BAD: return DRV_STORE_BAD;
618 case RESP_NO: return DRV_MSG_BAD;
619 default: return DRV_OK;
620 }
621}
622
Michael Haggerty3648b4d2013-01-15 09:06:27 +0100623static int skip_imap_list_l(char **sp, int level)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900624{
Michael Haggerty3648b4d2013-01-15 09:06:27 +0100625 char *s = *sp;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900626
627 for (;;) {
Robert Shearman95c53902008-07-09 22:29:01 +0100628 while (isspace((unsigned char)*s))
Mike McCormackf2561fd2006-03-10 14:32:50 +0900629 s++;
630 if (level && *s == ')') {
631 s++;
632 break;
633 }
Mike McCormackf2561fd2006-03-10 14:32:50 +0900634 if (*s == '(') {
635 /* sublist */
636 s++;
Michael Haggerty3648b4d2013-01-15 09:06:27 +0100637 if (skip_imap_list_l(&s, level + 1))
Mike McCormackf2561fd2006-03-10 14:32:50 +0900638 goto bail;
639 } else if (*s == '"') {
640 /* quoted string */
641 s++;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900642 for (; *s != '"'; s++)
643 if (!*s)
644 goto bail;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900645 s++;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900646 } else {
647 /* atom */
Robert Shearman95c53902008-07-09 22:29:01 +0100648 for (; *s && !isspace((unsigned char)*s); s++)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900649 if (level && *s == ')')
650 break;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900651 }
652
653 if (!level)
654 break;
655 if (!*s)
656 goto bail;
657 }
658 *sp = s;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900659 return 0;
660
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700661bail:
Mike McCormackf2561fd2006-03-10 14:32:50 +0900662 return -1;
663}
664
Michael Haggerty3648b4d2013-01-15 09:06:27 +0100665static void skip_list(char **sp)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900666{
Michael Haggerty3648b4d2013-01-15 09:06:27 +0100667 skip_imap_list_l(sp, 0);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900668}
669
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700670static void parse_capability(struct imap *imap, char *cmd)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900671{
672 char *arg;
673 unsigned i;
674
675 imap->caps = 0x80000000;
Robert Shearman95c53902008-07-09 22:29:01 +0100676 while ((arg = next_arg(&cmd)))
Mike McCormackf2561fd2006-03-10 14:32:50 +0900677 for (i = 0; i < ARRAY_SIZE(cap_list); i++)
Robert Shearman95c53902008-07-09 22:29:01 +0100678 if (!strcmp(cap_list[i], arg))
Mike McCormackf2561fd2006-03-10 14:32:50 +0900679 imap->caps |= 1 << i;
680 imap->rcaps = imap->caps;
681}
682
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700683static int parse_response_code(struct imap_store *ctx, struct imap_cmd_cb *cb,
Robert Shearman95c53902008-07-09 22:29:01 +0100684 char *s)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900685{
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700686 struct imap *imap = ctx->imap;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900687 char *arg, *p;
688
René Scharfe618ec812017-11-02 18:27:05 +0100689 if (!s || *s != '[')
Mike McCormackf2561fd2006-03-10 14:32:50 +0900690 return RESP_OK; /* no response code */
691 s++;
Robert Shearman95c53902008-07-09 22:29:01 +0100692 if (!(p = strchr(s, ']'))) {
693 fprintf(stderr, "IMAP error: malformed response code\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +0900694 return RESP_BAD;
695 }
696 *p++ = 0;
Robert Shearman95c53902008-07-09 22:29:01 +0100697 arg = next_arg(&s);
René Scharfef54c5bd2017-11-01 18:03:20 +0100698 if (!arg) {
699 fprintf(stderr, "IMAP error: empty response code\n");
700 return RESP_BAD;
701 }
Robert Shearman95c53902008-07-09 22:29:01 +0100702 if (!strcmp("UIDVALIDITY", arg)) {
Michael Haggerty636fd662013-01-15 09:06:31 +0100703 if (!(arg = next_arg(&s)) || !(ctx->uidvalidity = atoi(arg))) {
Robert Shearman95c53902008-07-09 22:29:01 +0100704 fprintf(stderr, "IMAP error: malformed UIDVALIDITY status\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +0900705 return RESP_BAD;
706 }
Robert Shearman95c53902008-07-09 22:29:01 +0100707 } else if (!strcmp("UIDNEXT", arg)) {
708 if (!(arg = next_arg(&s)) || !(imap->uidnext = atoi(arg))) {
709 fprintf(stderr, "IMAP error: malformed NEXTUID status\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +0900710 return RESP_BAD;
711 }
Robert Shearman95c53902008-07-09 22:29:01 +0100712 } else if (!strcmp("CAPABILITY", arg)) {
713 parse_capability(imap, s);
714 } else if (!strcmp("ALERT", arg)) {
Mike McCormackf2561fd2006-03-10 14:32:50 +0900715 /* RFC2060 says that these messages MUST be displayed
716 * to the user
717 */
Robert Shearman95c53902008-07-09 22:29:01 +0100718 for (; isspace((unsigned char)*p); p++);
719 fprintf(stderr, "*** IMAP ALERT *** %s\n", p);
720 } else if (cb && cb->ctx && !strcmp("APPENDUID", arg)) {
Michael Haggerty636fd662013-01-15 09:06:31 +0100721 if (!(arg = next_arg(&s)) || !(ctx->uidvalidity = atoi(arg)) ||
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700722 !(arg = next_arg(&s)) || !(*(int *)cb->ctx = atoi(arg))) {
Robert Shearman95c53902008-07-09 22:29:01 +0100723 fprintf(stderr, "IMAP error: malformed APPENDUID status\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +0900724 return RESP_BAD;
725 }
726 }
727 return RESP_OK;
728}
729
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700730static int get_cmd_result(struct imap_store *ctx, struct imap_cmd *tcmd)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900731{
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700732 struct imap *imap = ctx->imap;
Tony Finche0d8e302014-08-01 09:15:52 +0100733 struct imap_cmd *cmdp, **pcmdp;
René Scharfef54c5bd2017-11-01 18:03:20 +0100734 char *cmd;
735 const char *arg, *arg1;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900736 int n, resp, resp2, tag;
737
738 for (;;) {
Robert Shearman95c53902008-07-09 22:29:01 +0100739 if (buffer_gets(&imap->buf, &cmd))
Mike McCormackf2561fd2006-03-10 14:32:50 +0900740 return RESP_BAD;
741
Robert Shearman95c53902008-07-09 22:29:01 +0100742 arg = next_arg(&cmd);
René Scharfef54c5bd2017-11-01 18:03:20 +0100743 if (!arg) {
744 fprintf(stderr, "IMAP error: empty response\n");
745 return RESP_BAD;
746 }
Mike McCormackf2561fd2006-03-10 14:32:50 +0900747 if (*arg == '*') {
Robert Shearman95c53902008-07-09 22:29:01 +0100748 arg = next_arg(&cmd);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900749 if (!arg) {
Robert Shearman95c53902008-07-09 22:29:01 +0100750 fprintf(stderr, "IMAP error: unable to parse untagged response\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +0900751 return RESP_BAD;
752 }
753
Robert Shearman95c53902008-07-09 22:29:01 +0100754 if (!strcmp("NAMESPACE", arg)) {
Michael Haggerty3648b4d2013-01-15 09:06:27 +0100755 /* rfc2342 NAMESPACE response. */
756 skip_list(&cmd); /* Personal mailboxes */
757 skip_list(&cmd); /* Others' mailboxes */
758 skip_list(&cmd); /* Shared mailboxes */
Robert Shearman95c53902008-07-09 22:29:01 +0100759 } else if (!strcmp("OK", arg) || !strcmp("BAD", arg) ||
760 !strcmp("NO", arg) || !strcmp("BYE", arg)) {
761 if ((resp = parse_response_code(ctx, NULL, cmd)) != RESP_OK)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900762 return resp;
Michael Haggerty1efee7f2013-01-15 09:06:24 +0100763 } else if (!strcmp("CAPABILITY", arg)) {
Robert Shearman95c53902008-07-09 22:29:01 +0100764 parse_capability(imap, cmd);
Michael Haggerty1efee7f2013-01-15 09:06:24 +0100765 } else if ((arg1 = next_arg(&cmd))) {
766 ; /*
767 * Unhandled response-data with at least two words.
768 * Ignore it.
769 *
770 * NEEDSWORK: Previously this case handled '<num> EXISTS'
771 * and '<num> RECENT' but as a probably-unintended side
772 * effect it ignores other unrecognized two-word
773 * responses. imap-send doesn't ever try to read
774 * messages or mailboxes these days, so consider
775 * eliminating this case.
776 */
Mike McCormackf2561fd2006-03-10 14:32:50 +0900777 } else {
Robert Shearman95c53902008-07-09 22:29:01 +0100778 fprintf(stderr, "IMAP error: unable to parse untagged response\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +0900779 return RESP_BAD;
780 }
781 } else if (!imap->in_progress) {
Robert Shearman95c53902008-07-09 22:29:01 +0100782 fprintf(stderr, "IMAP error: unexpected reply: %s %s\n", arg, cmd ? cmd : "");
Mike McCormackf2561fd2006-03-10 14:32:50 +0900783 return RESP_BAD;
784 } else if (*arg == '+') {
785 /* This can happen only with the last command underway, as
786 it enforces a round-trip. */
787 cmdp = (struct imap_cmd *)((char *)imap->in_progress_append -
788 offsetof(struct imap_cmd, next));
789 if (cmdp->cb.data) {
Robert Shearman95c53902008-07-09 22:29:01 +0100790 n = socket_write(&imap->buf.sock, cmdp->cb.data, cmdp->cb.dlen);
Ævar Arnfjörð Bjarmason6a83d902017-06-15 23:15:46 +0000791 FREE_AND_NULL(cmdp->cb.data);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900792 if (n != (int)cmdp->cb.dlen)
793 return RESP_BAD;
794 } else if (cmdp->cb.cont) {
Robert Shearman95c53902008-07-09 22:29:01 +0100795 if (cmdp->cb.cont(ctx, cmdp, cmd))
Mike McCormackf2561fd2006-03-10 14:32:50 +0900796 return RESP_BAD;
797 } else {
Robert Shearman95c53902008-07-09 22:29:01 +0100798 fprintf(stderr, "IMAP error: unexpected command continuation request\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +0900799 return RESP_BAD;
800 }
Robert Shearman95c53902008-07-09 22:29:01 +0100801 if (socket_write(&imap->buf.sock, "\r\n", 2) != 2)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900802 return RESP_BAD;
803 if (!cmdp->cb.cont)
804 imap->literal_pending = 0;
805 if (!tcmd)
806 return DRV_OK;
807 } else {
Robert Shearman95c53902008-07-09 22:29:01 +0100808 tag = atoi(arg);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900809 for (pcmdp = &imap->in_progress; (cmdp = *pcmdp); pcmdp = &cmdp->next)
810 if (cmdp->tag == tag)
811 goto gottag;
Robert Shearman95c53902008-07-09 22:29:01 +0100812 fprintf(stderr, "IMAP error: unexpected tag %s\n", arg);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900813 return RESP_BAD;
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700814 gottag:
Mike McCormackf2561fd2006-03-10 14:32:50 +0900815 if (!(*pcmdp = cmdp->next))
816 imap->in_progress_append = pcmdp;
817 imap->num_in_progress--;
818 if (cmdp->cb.cont || cmdp->cb.data)
819 imap->literal_pending = 0;
Robert Shearman95c53902008-07-09 22:29:01 +0100820 arg = next_arg(&cmd);
René Scharfef54c5bd2017-11-01 18:03:20 +0100821 if (!arg)
822 arg = "";
Robert Shearman95c53902008-07-09 22:29:01 +0100823 if (!strcmp("OK", arg))
Mike McCormackf2561fd2006-03-10 14:32:50 +0900824 resp = DRV_OK;
825 else {
Tony Finche0d8e302014-08-01 09:15:52 +0100826 if (!strcmp("NO", arg))
Mike McCormackf2561fd2006-03-10 14:32:50 +0900827 resp = RESP_NO;
Tony Finche0d8e302014-08-01 09:15:52 +0100828 else /*if (!strcmp("BAD", arg))*/
Mike McCormackf2561fd2006-03-10 14:32:50 +0900829 resp = RESP_BAD;
Robert Shearman95c53902008-07-09 22:29:01 +0100830 fprintf(stderr, "IMAP command '%s' returned response (%s) - %s\n",
René Scharfeba9b9e12014-08-30 18:14:24 +0200831 !starts_with(cmdp->cmd, "LOGIN") ?
Mike McCormackf2561fd2006-03-10 14:32:50 +0900832 cmdp->cmd : "LOGIN <user> <pass>",
833 arg, cmd ? cmd : "");
834 }
Robert Shearman95c53902008-07-09 22:29:01 +0100835 if ((resp2 = parse_response_code(ctx, &cmdp->cb, cmd)) > resp)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900836 resp = resp2;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900837 if (cmdp->cb.done)
Robert Shearman95c53902008-07-09 22:29:01 +0100838 cmdp->cb.done(ctx, cmdp, resp);
839 free(cmdp->cb.data);
840 free(cmdp->cmd);
841 free(cmdp);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900842 if (!tcmd || tcmd == cmdp)
843 return resp;
844 }
845 }
846 /* not reached */
847}
848
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700849static void imap_close_server(struct imap_store *ictx)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900850{
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700851 struct imap *imap = ictx->imap;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900852
Erik Faye-Lund7a7796e2009-10-19 17:42:03 +0200853 if (imap->buf.sock.fd[0] != -1) {
Robert Shearman95c53902008-07-09 22:29:01 +0100854 imap_exec(ictx, NULL, "LOGOUT");
855 socket_shutdown(&imap->buf.sock);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900856 }
Robert Shearman95c53902008-07-09 22:29:01 +0100857 free(imap);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900858}
859
Michael Haggertyfe47e1d2013-01-15 09:06:29 +0100860static void imap_close_store(struct imap_store *ctx)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900861{
Michael Haggertyfe47e1d2013-01-15 09:06:29 +0100862 imap_close_server(ctx);
Robert Shearman95c53902008-07-09 22:29:01 +0100863 free(ctx);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900864}
865
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -0800866#ifndef NO_OPENSSL
867
868/*
869 * hexchar() and cram() functions are based on the code from the isync
870 * project (http://isync.sf.net/).
871 */
872static char hexchar(unsigned int b)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900873{
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -0800874 return b < 10 ? '0' + b : 'a' + (b - 10);
875}
876
René Scharfe42c78a22017-07-08 12:35:35 +0200877#define ENCODED_SIZE(n) (4 * DIV_ROUND_UP((n), 3))
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -0800878static char *cram(const char *challenge_64, const char *user, const char *pass)
879{
880 int i, resp_len, encoded_len, decoded_len;
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -0800881 unsigned char hash[16];
882 char hex[33];
883 char *response, *response_64, *challenge;
884
885 /*
886 * length of challenge_64 (i.e. base-64 encoded string) is a good
887 * enough upper bound for challenge (decoded result).
888 */
889 encoded_len = strlen(challenge_64);
890 challenge = xmalloc(encoded_len);
891 decoded_len = EVP_DecodeBlock((unsigned char *)challenge,
892 (unsigned char *)challenge_64, encoded_len);
893 if (decoded_len < 0)
894 die("invalid challenge %s", challenge_64);
Kazuki Yamaguchi1ed2c7b2016-04-09 01:22:13 +0900895 if (!HMAC(EVP_md5(), pass, strlen(pass), (unsigned char *)challenge, decoded_len, hash, NULL))
896 die("HMAC error");
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -0800897
898 hex[32] = 0;
899 for (i = 0; i < 16; i++) {
900 hex[2 * i] = hexchar((hash[i] >> 4) & 0xf);
901 hex[2 * i + 1] = hexchar(hash[i] & 0xf);
902 }
903
904 /* response: "<user> <digest in hex>" */
Jeff King75faa452015-09-24 17:07:03 -0400905 response = xstrfmt("%s %s", user, hex);
Kazuki Yamaguchieb94ee72016-04-08 23:02:30 +0900906 resp_len = strlen(response);
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -0800907
Jeff King3733e692016-02-22 17:44:28 -0500908 response_64 = xmallocz(ENCODED_SIZE(resp_len));
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -0800909 encoded_len = EVP_EncodeBlock((unsigned char *)response_64,
910 (unsigned char *)response, resp_len);
911 if (encoded_len < 0)
912 die("EVP_EncodeBlock error");
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -0800913 return (char *)response_64;
914}
915
916#else
917
918static char *cram(const char *challenge_64, const char *user, const char *pass)
919{
920 die("If you want to use CRAM-MD5 authenticate method, "
921 "you have to build git-imap-send with OpenSSL library.");
922}
923
924#endif
925
926static int auth_cram_md5(struct imap_store *ctx, struct imap_cmd *cmd, const char *prompt)
927{
928 int ret;
929 char *response;
930
931 response = cram(prompt, server.user, server.pass);
932
933 ret = socket_write(&ctx->imap->buf.sock, response, strlen(response));
934 if (ret != strlen(response))
Pete Wyckoff82247e92012-04-29 20:28:45 -0400935 return error("IMAP error: sending response failed");
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -0800936
937 free(response);
938
939 return 0;
940}
941
Nicolas Morey-Chaisemartin690307f2017-09-14 09:52:02 +0200942static void server_fill_credential(struct imap_server_conf *srvc, struct credential *cred)
943{
944 if (srvc->user && srvc->pass)
945 return;
946
947 cred->protocol = xstrdup(srvc->use_ssl ? "imaps" : "imap");
948 cred->host = xstrdup(srvc->host);
949
950 cred->username = xstrdup_or_null(srvc->user);
951 cred->password = xstrdup_or_null(srvc->pass);
952
953 credential_fill(cred);
954
955 if (!srvc->user)
956 srvc->user = xstrdup(cred->username);
957 if (!srvc->pass)
958 srvc->pass = xstrdup(cred->password);
959}
960
Nicolas Morey-Chaisemartin50212362020-12-01 08:38:16 +0100961static struct imap_store *imap_open_store(struct imap_server_conf *srvc, const char *folder)
Mike McCormackf2561fd2006-03-10 14:32:50 +0900962{
Dan Albert791643a2014-04-28 20:00:04 -0700963 struct credential cred = CREDENTIAL_INIT;
Junio C Hamano9f1ad542008-07-09 16:37:38 -0700964 struct imap_store *ctx;
965 struct imap *imap;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900966 char *arg, *rsp;
Erik Faye-Lundc94d2dd2009-10-19 17:42:04 +0200967 int s = -1, preauth;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900968
René Scharfeca56dad2021-03-13 17:17:22 +0100969 CALLOC_ARRAY(ctx, 1);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900970
René Scharfeca56dad2021-03-13 17:17:22 +0100971 ctx->imap = CALLOC_ARRAY(imap, 1);
Erik Faye-Lund7a7796e2009-10-19 17:42:03 +0200972 imap->buf.sock.fd[0] = imap->buf.sock.fd[1] = -1;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900973 imap->in_progress_append = &imap->in_progress;
974
975 /* open connection to IMAP server */
976
977 if (srvc->tunnel) {
René Scharfed3180272014-08-19 21:09:35 +0200978 struct child_process tunnel = CHILD_PROCESS_INIT;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900979
Robert Shearman95c53902008-07-09 22:29:01 +0100980 imap_info("Starting tunnel '%s'... ", srvc->tunnel);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900981
Jeff Kingef8d7ac2020-07-28 16:24:53 -0400982 strvec_push(&tunnel.args, srvc->tunnel);
Jeff Kingac0ba182009-12-30 05:53:57 -0500983 tunnel.use_shell = 1;
Erik Faye-Lundc94d2dd2009-10-19 17:42:04 +0200984 tunnel.in = -1;
985 tunnel.out = -1;
986 if (start_command(&tunnel))
Bernhard Reiterf9dc5d62014-08-13 19:30:43 +0200987 die("cannot start proxy %s", srvc->tunnel);
Mike McCormackf2561fd2006-03-10 14:32:50 +0900988
Erik Faye-Lundc94d2dd2009-10-19 17:42:04 +0200989 imap->buf.sock.fd[0] = tunnel.out;
990 imap->buf.sock.fd[1] = tunnel.in;
Mike McCormackf2561fd2006-03-10 14:32:50 +0900991
Robert Shearman95c53902008-07-09 22:29:01 +0100992 imap_info("ok\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +0900993 } else {
Benjamin Kramer94ad2432009-05-25 21:13:54 +0200994#ifndef NO_IPV6
995 struct addrinfo hints, *ai0, *ai;
996 int gai;
997 char portstr[6];
Mike McCormackf2561fd2006-03-10 14:32:50 +0900998
Jeff King1a168e52017-03-28 15:46:56 -0400999 xsnprintf(portstr, sizeof(portstr), "%d", srvc->port);
Benjamin Kramer94ad2432009-05-25 21:13:54 +02001000
1001 memset(&hints, 0, sizeof(hints));
1002 hints.ai_socktype = SOCK_STREAM;
1003 hints.ai_protocol = IPPROTO_TCP;
1004
1005 imap_info("Resolving %s... ", srvc->host);
1006 gai = getaddrinfo(srvc->host, portstr, &hints, &ai);
1007 if (gai) {
1008 fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(gai));
Mike McCormackf2561fd2006-03-10 14:32:50 +09001009 goto bail;
1010 }
Benjamin Kramer94ad2432009-05-25 21:13:54 +02001011 imap_info("ok\n");
1012
1013 for (ai0 = ai; ai; ai = ai->ai_next) {
1014 char addr[NI_MAXHOST];
1015
1016 s = socket(ai->ai_family, ai->ai_socktype,
1017 ai->ai_protocol);
1018 if (s < 0)
1019 continue;
1020
1021 getnameinfo(ai->ai_addr, ai->ai_addrlen, addr,
1022 sizeof(addr), NULL, 0, NI_NUMERICHOST);
1023 imap_info("Connecting to [%s]:%s... ", addr, portstr);
1024
1025 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0) {
1026 close(s);
1027 s = -1;
1028 perror("connect");
1029 continue;
1030 }
1031
1032 break;
1033 }
1034 freeaddrinfo(ai0);
1035#else /* NO_IPV6 */
1036 struct hostent *he;
1037 struct sockaddr_in addr;
1038
Robert Shearman95c53902008-07-09 22:29:01 +01001039 memset(&addr, 0, sizeof(addr));
1040 addr.sin_port = htons(srvc->port);
Mike McCormackf2561fd2006-03-10 14:32:50 +09001041 addr.sin_family = AF_INET;
1042
Robert Shearman95c53902008-07-09 22:29:01 +01001043 imap_info("Resolving %s... ", srvc->host);
1044 he = gethostbyname(srvc->host);
Mike McCormackf2561fd2006-03-10 14:32:50 +09001045 if (!he) {
Robert Shearman95c53902008-07-09 22:29:01 +01001046 perror("gethostbyname");
Mike McCormackf2561fd2006-03-10 14:32:50 +09001047 goto bail;
1048 }
Robert Shearman95c53902008-07-09 22:29:01 +01001049 imap_info("ok\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +09001050
1051 addr.sin_addr.s_addr = *((int *) he->h_addr_list[0]);
1052
Robert Shearman95c53902008-07-09 22:29:01 +01001053 s = socket(PF_INET, SOCK_STREAM, 0);
Mike McCormackf2561fd2006-03-10 14:32:50 +09001054
Robert Shearman95c53902008-07-09 22:29:01 +01001055 imap_info("Connecting to %s:%hu... ", inet_ntoa(addr.sin_addr), ntohs(addr.sin_port));
1056 if (connect(s, (struct sockaddr *)&addr, sizeof(addr))) {
1057 close(s);
Benjamin Kramer94ad2432009-05-25 21:13:54 +02001058 s = -1;
Robert Shearman95c53902008-07-09 22:29:01 +01001059 perror("connect");
Benjamin Kramer94ad2432009-05-25 21:13:54 +02001060 }
1061#endif
1062 if (s < 0) {
1063 fputs("Error: unable to connect to server.\n", stderr);
Mike McCormackf2561fd2006-03-10 14:32:50 +09001064 goto bail;
1065 }
Mike McCormackf2561fd2006-03-10 14:32:50 +09001066
Erik Faye-Lund7a7796e2009-10-19 17:42:03 +02001067 imap->buf.sock.fd[0] = s;
1068 imap->buf.sock.fd[1] = dup(s);
Mike McCormackf2561fd2006-03-10 14:32:50 +09001069
Robert Shearman684ec6c2008-07-09 22:29:00 +01001070 if (srvc->use_ssl &&
1071 ssl_socket_connect(&imap->buf.sock, 0, srvc->ssl_verify)) {
1072 close(s);
1073 goto bail;
1074 }
Robert Shearman95c53902008-07-09 22:29:01 +01001075 imap_info("ok\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +09001076 }
1077
1078 /* read the greeting string */
Robert Shearman95c53902008-07-09 22:29:01 +01001079 if (buffer_gets(&imap->buf, &rsp)) {
1080 fprintf(stderr, "IMAP error: no greeting response\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +09001081 goto bail;
1082 }
Robert Shearman95c53902008-07-09 22:29:01 +01001083 arg = next_arg(&rsp);
1084 if (!arg || *arg != '*' || (arg = next_arg(&rsp)) == NULL) {
1085 fprintf(stderr, "IMAP error: invalid greeting response\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +09001086 goto bail;
1087 }
1088 preauth = 0;
Robert Shearman95c53902008-07-09 22:29:01 +01001089 if (!strcmp("PREAUTH", arg))
Mike McCormackf2561fd2006-03-10 14:32:50 +09001090 preauth = 1;
Robert Shearman95c53902008-07-09 22:29:01 +01001091 else if (strcmp("OK", arg) != 0) {
1092 fprintf(stderr, "IMAP error: unknown greeting response\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +09001093 goto bail;
1094 }
Robert Shearman95c53902008-07-09 22:29:01 +01001095 parse_response_code(ctx, NULL, rsp);
1096 if (!imap->caps && imap_exec(ctx, NULL, "CAPABILITY") != RESP_OK)
Mike McCormackf2561fd2006-03-10 14:32:50 +09001097 goto bail;
1098
1099 if (!preauth) {
Robert Shearman684ec6c2008-07-09 22:29:00 +01001100#ifndef NO_OPENSSL
1101 if (!srvc->use_ssl && CAP(STARTTLS)) {
Ramsay Jonesd27da382011-04-07 19:24:57 +01001102 if (imap_exec(ctx, NULL, "STARTTLS") != RESP_OK)
Robert Shearman684ec6c2008-07-09 22:29:00 +01001103 goto bail;
1104 if (ssl_socket_connect(&imap->buf.sock, 1,
1105 srvc->ssl_verify))
1106 goto bail;
1107 /* capabilities may have changed, so get the new capabilities */
Ramsay Jonesd27da382011-04-07 19:24:57 +01001108 if (imap_exec(ctx, NULL, "CAPABILITY") != RESP_OK)
Robert Shearman684ec6c2008-07-09 22:29:00 +01001109 goto bail;
1110 }
1111#endif
Robert Shearman95c53902008-07-09 22:29:01 +01001112 imap_info("Logging in...\n");
Nicolas Morey-Chaisemartin690307f2017-09-14 09:52:02 +02001113 server_fill_credential(srvc, &cred);
Dan Albert791643a2014-04-28 20:00:04 -07001114
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -08001115 if (srvc->auth_method) {
1116 struct imap_cmd_cb cb;
1117
1118 if (!strcmp(srvc->auth_method, "CRAM-MD5")) {
1119 if (!CAP(AUTH_CRAM_MD5)) {
Nguyễn Thái Ngọc Duy6d1fbf82019-02-11 16:40:11 +07001120 fprintf(stderr, "You specified "
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -08001121 "CRAM-MD5 as authentication method, "
1122 "but %s doesn't support it.\n", srvc->host);
1123 goto bail;
1124 }
1125 /* CRAM-MD5 */
1126
1127 memset(&cb, 0, sizeof(cb));
1128 cb.cont = auth_cram_md5;
1129 if (imap_exec(ctx, &cb, "AUTHENTICATE CRAM-MD5") != RESP_OK) {
1130 fprintf(stderr, "IMAP error: AUTHENTICATE CRAM-MD5 failed\n");
1131 goto bail;
1132 }
1133 } else {
1134 fprintf(stderr, "Unknown authentication method:%s\n", srvc->host);
1135 goto bail;
1136 }
1137 } else {
Kazuki Yamaguchi6c50a572016-04-08 23:02:24 +09001138 if (CAP(NOLOGIN)) {
1139 fprintf(stderr, "Skipping account %s@%s, server forbids LOGIN\n",
1140 srvc->user, srvc->host);
1141 goto bail;
1142 }
Chris Webb10439d82010-03-27 15:00:19 +00001143 if (!imap->buf.sock.ssl)
1144 imap_warn("*** IMAP Warning *** Password is being "
1145 "sent in the clear\n");
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -08001146 if (imap_exec(ctx, NULL, "LOGIN \"%s\" \"%s\"", srvc->user, srvc->pass) != RESP_OK) {
1147 fprintf(stderr, "IMAP error: LOGIN failed\n");
1148 goto bail;
1149 }
Mike McCormackf2561fd2006-03-10 14:32:50 +09001150 }
1151 } /* !preauth */
1152
Dan Albert791643a2014-04-28 20:00:04 -07001153 if (cred.username)
1154 credential_approve(&cred);
1155 credential_clear(&cred);
1156
Tony Finche0d8e302014-08-01 09:15:52 +01001157 /* check the target mailbox exists */
1158 ctx->name = folder;
1159 switch (imap_exec(ctx, NULL, "EXAMINE \"%s\"", ctx->name)) {
1160 case RESP_OK:
1161 /* ok */
1162 break;
1163 case RESP_BAD:
1164 fprintf(stderr, "IMAP error: could not check mailbox\n");
1165 goto out;
1166 case RESP_NO:
1167 if (imap_exec(ctx, NULL, "CREATE \"%s\"", ctx->name) == RESP_OK) {
1168 imap_info("Created missing mailbox\n");
1169 } else {
1170 fprintf(stderr, "IMAP error: could not create missing mailbox\n");
1171 goto out;
1172 }
1173 break;
1174 }
1175
Mike McCormackf2561fd2006-03-10 14:32:50 +09001176 ctx->prefix = "";
Michael Haggertyfe47e1d2013-01-15 09:06:29 +01001177 return ctx;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001178
Junio C Hamano9f1ad542008-07-09 16:37:38 -07001179bail:
Dan Albert791643a2014-04-28 20:00:04 -07001180 if (cred.username)
1181 credential_reject(&cred);
1182 credential_clear(&cred);
1183
Tony Finche0d8e302014-08-01 09:15:52 +01001184 out:
Michael Haggertyfe47e1d2013-01-15 09:06:29 +01001185 imap_close_store(ctx);
Rene Scharfe5142db62006-04-02 13:13:01 +02001186 return NULL;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001187}
1188
Michael Haggerty36910312013-01-15 09:06:32 +01001189/*
1190 * Insert CR characters as necessary in *msg to ensure that every LF
1191 * character in *msg is preceded by a CR.
1192 */
Michael Haggertyf035ab62012-11-25 12:08:39 +01001193static void lf_to_crlf(struct strbuf *msg)
Mike McCormackf2561fd2006-03-10 14:32:50 +09001194{
Brandon Williams59256312018-02-14 10:59:43 -08001195 char *new_msg;
Michael Haggerty36910312013-01-15 09:06:32 +01001196 size_t i, j;
1197 char lastc;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001198
Brandon Williams59256312018-02-14 10:59:43 -08001199 /* First pass: tally, in j, the size of the new_msg string: */
Michael Haggerty36910312013-01-15 09:06:32 +01001200 for (i = j = 0, lastc = '\0'; i < msg->len; i++) {
1201 if (msg->buf[i] == '\n' && lastc != '\r')
1202 j++; /* a CR will need to be added here */
1203 lastc = msg->buf[i];
1204 j++;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001205 }
Mike McCormackf2561fd2006-03-10 14:32:50 +09001206
Brandon Williams59256312018-02-14 10:59:43 -08001207 new_msg = xmallocz(j);
Michael Haggerty36910312013-01-15 09:06:32 +01001208
1209 /*
Brandon Williams59256312018-02-14 10:59:43 -08001210 * Second pass: write the new_msg string. Note that this loop is
Michael Haggerty36910312013-01-15 09:06:32 +01001211 * otherwise identical to the first pass.
1212 */
1213 for (i = j = 0, lastc = '\0'; i < msg->len; i++) {
1214 if (msg->buf[i] == '\n' && lastc != '\r')
Brandon Williams59256312018-02-14 10:59:43 -08001215 new_msg[j++] = '\r';
1216 lastc = new_msg[j++] = msg->buf[i];
Mike McCormackf2561fd2006-03-10 14:32:50 +09001217 }
Brandon Williams59256312018-02-14 10:59:43 -08001218 strbuf_attach(msg, new_msg, j, j + 1);
Hitoshi Mitake67d17632010-02-12 20:36:12 +09001219}
Mike McCormackf2561fd2006-03-10 14:32:50 +09001220
Michael Haggertyf035ab62012-11-25 12:08:39 +01001221/*
1222 * Store msg to IMAP. Also detach and free the data from msg->data,
1223 * leaving msg->data empty.
1224 */
Michael Haggertyfe47e1d2013-01-15 09:06:29 +01001225static int imap_store_msg(struct imap_store *ctx, struct strbuf *msg)
Mike McCormackf2561fd2006-03-10 14:32:50 +09001226{
Junio C Hamano9f1ad542008-07-09 16:37:38 -07001227 struct imap *imap = ctx->imap;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001228 struct imap_cmd_cb cb;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001229 const char *prefix, *box;
Michael Haggerty719125c2013-01-15 09:06:19 +01001230 int ret;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001231
Michael Haggertycbc60762013-01-15 09:06:20 +01001232 lf_to_crlf(msg);
Robert Shearman95c53902008-07-09 22:29:01 +01001233 memset(&cb, 0, sizeof(cb));
Mike McCormackf2561fd2006-03-10 14:32:50 +09001234
Michael Haggertycbc60762013-01-15 09:06:20 +01001235 cb.dlen = msg->len;
1236 cb.data = strbuf_detach(msg, NULL);
Mike McCormackf2561fd2006-03-10 14:32:50 +09001237
Michael Haggerty636fd662013-01-15 09:06:31 +01001238 box = ctx->name;
Jeff King3a7cba92009-10-19 17:42:02 +02001239 prefix = !strcmp(box, "INBOX") ? "" : ctx->prefix;
Michael Haggerty719125c2013-01-15 09:06:19 +01001240 ret = imap_exec_m(ctx, &cb, "APPEND \"%s%s\" ", prefix, box);
Mike McCormackf2561fd2006-03-10 14:32:50 +09001241 imap->caps = imap->rcaps;
1242 if (ret != DRV_OK)
1243 return ret;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001244
1245 return DRV_OK;
1246}
1247
Michael Haggertyf035ab62012-11-25 12:08:39 +01001248static void wrap_in_html(struct strbuf *msg)
Jeremy Whitec64d84f2009-02-12 08:58:12 -06001249{
1250 struct strbuf buf = STRBUF_INIT;
Jeremy Whitec64d84f2009-02-12 08:58:12 -06001251 static char *content_type = "Content-Type: text/html;\n";
1252 static char *pre_open = "<pre>\n";
1253 static char *pre_close = "</pre>\n";
Michael Haggerty118a68f2012-11-25 12:08:41 +01001254 const char *body = strstr(msg->buf, "\n\n");
Jeremy Whitec64d84f2009-02-12 08:58:12 -06001255
Michael Haggerty118a68f2012-11-25 12:08:41 +01001256 if (!body)
1257 return; /* Headers but no body; no wrapping needed */
1258
1259 body += 2;
1260
1261 strbuf_add(&buf, msg->buf, body - msg->buf - 1);
1262 strbuf_addstr(&buf, content_type);
1263 strbuf_addch(&buf, '\n');
1264 strbuf_addstr(&buf, pre_open);
1265 strbuf_addstr_xml_quoted(&buf, body);
Jeremy Whitec64d84f2009-02-12 08:58:12 -06001266 strbuf_addstr(&buf, pre_close);
Michael Haggerty118a68f2012-11-25 12:08:41 +01001267
Michael Haggertyf035ab62012-11-25 12:08:39 +01001268 strbuf_release(msg);
1269 *msg = buf;
Jeremy Whitec64d84f2009-02-12 08:58:12 -06001270}
1271
Michael Haggerty3a34e622012-11-25 12:08:37 +01001272static int count_messages(struct strbuf *all_msgs)
Mike McCormackf2561fd2006-03-10 14:32:50 +09001273{
1274 int count = 0;
Michael Haggerty3a34e622012-11-25 12:08:37 +01001275 char *p = all_msgs->buf;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001276
1277 while (1) {
Christian Couder59556542013-11-30 21:55:40 +01001278 if (starts_with(p, "From ")) {
Ramkumar Ramachandra4916c8f2010-03-22 23:37:52 +05301279 p = strstr(p+5, "\nFrom: ");
1280 if (!p) break;
1281 p = strstr(p+7, "\nDate: ");
1282 if (!p) break;
1283 p = strstr(p+7, "\nSubject: ");
1284 if (!p) break;
1285 p += 10;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001286 count++;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001287 }
Robert Shearman95c53902008-07-09 22:29:01 +01001288 p = strstr(p+5, "\nFrom ");
Mike McCormackf2561fd2006-03-10 14:32:50 +09001289 if (!p)
1290 break;
1291 p++;
1292 }
1293 return count;
1294}
1295
Michael Haggertyf035ab62012-11-25 12:08:39 +01001296/*
1297 * Copy the next message from all_msgs, starting at offset *ofs, to
1298 * msg. Update *ofs to the start of the following message. Return
1299 * true iff a message was successfully copied.
1300 */
1301static int split_msg(struct strbuf *all_msgs, struct strbuf *msg, int *ofs)
Mike McCormackf2561fd2006-03-10 14:32:50 +09001302{
1303 char *p, *data;
Michael Haggertyf035ab62012-11-25 12:08:39 +01001304 size_t len;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001305
Mike McCormackf2561fd2006-03-10 14:32:50 +09001306 if (*ofs >= all_msgs->len)
1307 return 0;
1308
Michael Haggerty3a34e622012-11-25 12:08:37 +01001309 data = &all_msgs->buf[*ofs];
Michael Haggertyf035ab62012-11-25 12:08:39 +01001310 len = all_msgs->len - *ofs;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001311
Christian Couder59556542013-11-30 21:55:40 +01001312 if (len < 5 || !starts_with(data, "From "))
Mike McCormackf2561fd2006-03-10 14:32:50 +09001313 return 0;
1314
Robert Shearman95c53902008-07-09 22:29:01 +01001315 p = strchr(data, '\n');
Markus Amslere0b08302006-10-13 00:19:35 +02001316 if (p) {
Michael Haggertyf035ab62012-11-25 12:08:39 +01001317 p++;
1318 len -= p - data;
1319 *ofs += p - data;
Markus Amslere0b08302006-10-13 00:19:35 +02001320 data = p;
1321 }
1322
Robert Shearman95c53902008-07-09 22:29:01 +01001323 p = strstr(data, "\nFrom ");
Mike McCormackf2561fd2006-03-10 14:32:50 +09001324 if (p)
Michael Haggertyf035ab62012-11-25 12:08:39 +01001325 len = &p[1] - data;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001326
Michael Haggertyf035ab62012-11-25 12:08:39 +01001327 strbuf_add(msg, data, len);
1328 *ofs += len;
Junio C Hamanoa6080a02007-06-07 00:04:01 -07001329 return 1;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001330}
1331
Nicolas Morey-Chaisemartin50212362020-12-01 08:38:16 +01001332static int git_imap_config(const char *var, const char *val, void *cb)
Mike McCormackf2561fd2006-03-10 14:32:50 +09001333{
Junio C Hamano3c17c342008-02-11 12:04:00 -08001334
Nicolas Morey-Chaisemartin50212362020-12-01 08:38:16 +01001335 if (!strcmp("imap.sslverify", var))
1336 server.ssl_verify = git_config_bool(var, val);
1337 else if (!strcmp("imap.preformattedhtml", var))
1338 server.use_html = git_config_bool(var, val);
1339 else if (!strcmp("imap.folder", var))
1340 return git_config_string(&server.folder, var, val);
1341 else if (!strcmp("imap.user", var))
1342 return git_config_string(&server.user, var, val);
1343 else if (!strcmp("imap.pass", var))
1344 return git_config_string(&server.pass, var, val);
1345 else if (!strcmp("imap.tunnel", var))
1346 return git_config_string(&server.tunnel, var, val);
1347 else if (!strcmp("imap.authmethod", var))
1348 return git_config_string(&server.auth_method, var, val);
1349 else if (!strcmp("imap.port", var))
1350 server.port = git_config_int(var, val);
1351 else if (!strcmp("imap.host", var)) {
Tanay Abhraef7e1d02014-08-07 09:21:24 -07001352 if (!val) {
1353 git_die_config("imap.host", "Missing value for 'imap.host'");
1354 } else {
1355 if (starts_with(val, "imap:"))
1356 val += 5;
1357 else if (starts_with(val, "imaps:")) {
1358 val += 6;
1359 server.use_ssl = 1;
1360 }
1361 if (starts_with(val, "//"))
1362 val += 2;
1363 server.host = xstrdup(val);
Mike McCormackf2561fd2006-03-10 14:32:50 +09001364 }
Nicolas Morey-Chaisemartin50212362020-12-01 08:38:16 +01001365 } else
1366 return git_default_config(var, val, cb);
Hitoshi Mitakeae9c6062010-02-15 22:34:07 -08001367
Nicolas Morey-Chaisemartin50212362020-12-01 08:38:16 +01001368 return 0;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001369}
1370
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001371static int append_msgs_to_imap(struct imap_server_conf *server,
1372 struct strbuf* all_msgs, int total)
Mike McCormackf2561fd2006-03-10 14:32:50 +09001373{
Michael Haggertycbc60762013-01-15 09:06:20 +01001374 struct strbuf msg = STRBUF_INIT;
Michael Haggertyfe47e1d2013-01-15 09:06:29 +01001375 struct imap_store *ctx = NULL;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001376 int ofs = 0;
1377 int r;
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001378 int n = 0;
1379
1380 ctx = imap_open_store(server, server->folder);
1381 if (!ctx) {
1382 fprintf(stderr, "failed to open store\n");
1383 return 1;
1384 }
1385 ctx->name = server->folder;
1386
1387 fprintf(stderr, "sending %d message%s\n", total, (total != 1) ? "s" : "");
1388 while (1) {
1389 unsigned percent = n * 100 / total;
1390
1391 fprintf(stderr, "%4u%% (%d/%d) done\r", percent, n, total);
1392
1393 if (!split_msg(all_msgs, &msg, &ofs))
1394 break;
1395 if (server->use_html)
1396 wrap_in_html(&msg);
1397 r = imap_store_msg(ctx, &msg);
1398 if (r != DRV_OK)
1399 break;
1400 n++;
1401 }
1402 fprintf(stderr, "\n");
1403
1404 imap_close_store(ctx);
1405
1406 return 0;
1407}
1408
1409#ifdef USE_CURL_FOR_IMAP_SEND
Nicolas Morey-Chaisemartin19079b32017-09-14 09:52:06 +02001410static CURL *setup_curl(struct imap_server_conf *srvc, struct credential *cred)
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001411{
1412 CURL *curl;
1413 struct strbuf path = STRBUF_INIT;
Nicolas Morey-Chaisemartin77eac3f2017-12-19 00:41:13 +05301414 char *uri_encoded_folder;
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001415
1416 if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK)
1417 die("curl_global_init failed");
1418
1419 curl = curl_easy_init();
1420
1421 if (!curl)
1422 die("curl_easy_init failed");
1423
Nicolas Morey-Chaisemartin19079b32017-09-14 09:52:06 +02001424 server_fill_credential(&server, cred);
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001425 curl_easy_setopt(curl, CURLOPT_USERNAME, server.user);
1426 curl_easy_setopt(curl, CURLOPT_PASSWORD, server.pass);
1427
Anders Kaseorgd2d07ab2016-08-17 14:58:58 -04001428 strbuf_addstr(&path, server.use_ssl ? "imaps://" : "imap://");
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001429 strbuf_addstr(&path, server.host);
1430 if (!path.len || path.buf[path.len - 1] != '/')
1431 strbuf_addch(&path, '/');
Nicolas Morey-Chaisemartin77eac3f2017-12-19 00:41:13 +05301432
1433 uri_encoded_folder = curl_easy_escape(curl, server.folder, 0);
1434 if (!uri_encoded_folder)
1435 die("failed to encode server folder");
1436 strbuf_addstr(&path, uri_encoded_folder);
1437 curl_free(uri_encoded_folder);
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001438
1439 curl_easy_setopt(curl, CURLOPT_URL, path.buf);
1440 strbuf_release(&path);
1441 curl_easy_setopt(curl, CURLOPT_PORT, server.port);
1442
1443 if (server.auth_method) {
Ævar Arnfjörð Bjarmasone4ff3b62021-09-13 16:51:28 +02001444#ifndef GIT_CURL_HAVE_CURLOPT_LOGIN_OPTIONS
Johannes Schindelin71d92572015-10-26 14:14:58 +01001445 warning("No LOGIN_OPTIONS support in this cURL version");
1446#else
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001447 struct strbuf auth = STRBUF_INIT;
1448 strbuf_addstr(&auth, "AUTH=");
1449 strbuf_addstr(&auth, server.auth_method);
1450 curl_easy_setopt(curl, CURLOPT_LOGIN_OPTIONS, auth.buf);
1451 strbuf_release(&auth);
Johannes Schindelin71d92572015-10-26 14:14:58 +01001452#endif
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001453 }
1454
Kyle J. McKay230c09c2015-01-06 03:20:37 -08001455 if (!server.use_ssl)
1456 curl_easy_setopt(curl, CURLOPT_USE_SSL, (long)CURLUSESSL_TRY);
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001457
1458 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, server.ssl_verify);
1459 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, server.ssl_verify);
1460
1461 curl_easy_setopt(curl, CURLOPT_READFUNCTION, fread_buffer);
1462
1463 curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
1464
Kyle J. McKayd47e55d2015-01-06 03:00:55 -08001465 if (0 < verbosity || getenv("GIT_CURL_VERBOSE"))
Jonathan Tan7167a622020-05-11 10:43:10 -07001466 http_trace_curl_no_data();
Elia Pinto73e57aa2016-05-23 13:44:03 +00001467 setup_curl_trace(curl);
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001468
1469 return curl;
1470}
1471
1472static int curl_append_msgs_to_imap(struct imap_server_conf *server,
Nguyễn Thái Ngọc Duy3b335762018-12-09 11:25:21 +01001473 struct strbuf* all_msgs, int total)
1474{
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001475 int ofs = 0;
1476 int n = 0;
1477 struct buffer msgbuf = { STRBUF_INIT, 0 };
1478 CURL *curl;
1479 CURLcode res = CURLE_OK;
Nicolas Morey-Chaisemartin19079b32017-09-14 09:52:06 +02001480 struct credential cred = CREDENTIAL_INIT;
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001481
Nicolas Morey-Chaisemartin19079b32017-09-14 09:52:06 +02001482 curl = setup_curl(server, &cred);
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001483 curl_easy_setopt(curl, CURLOPT_READDATA, &msgbuf);
1484
1485 fprintf(stderr, "sending %d message%s\n", total, (total != 1) ? "s" : "");
1486 while (1) {
1487 unsigned percent = n * 100 / total;
1488 int prev_len;
1489
1490 fprintf(stderr, "%4u%% (%d/%d) done\r", percent, n, total);
1491
1492 prev_len = msgbuf.buf.len;
1493 if (!split_msg(all_msgs, &msgbuf.buf, &ofs))
1494 break;
1495 if (server->use_html)
1496 wrap_in_html(&msgbuf.buf);
1497 lf_to_crlf(&msgbuf.buf);
1498
1499 curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE,
1500 (curl_off_t)(msgbuf.buf.len-prev_len));
1501
1502 res = curl_easy_perform(curl);
1503
1504 if(res != CURLE_OK) {
1505 fprintf(stderr, "curl_easy_perform() failed: %s\n",
1506 curl_easy_strerror(res));
1507 break;
1508 }
1509
1510 n++;
1511 }
1512 fprintf(stderr, "\n");
1513
1514 curl_easy_cleanup(curl);
1515 curl_global_cleanup();
1516
Nicolas Morey-Chaisemartin19079b32017-09-14 09:52:06 +02001517 if (cred.username) {
1518 if (res == CURLE_OK)
1519 credential_approve(&cred);
Nicolas Morey-Chaisemartin19079b32017-09-14 09:52:06 +02001520 else if (res == CURLE_LOGIN_DENIED)
Nicolas Morey-Chaisemartin19079b32017-09-14 09:52:06 +02001521 credential_reject(&cred);
1522 }
1523
1524 credential_clear(&cred);
1525
Nicolas Morey-Chaisemartin200bc382017-09-14 09:51:57 +02001526 return res != CURLE_OK;
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001527}
1528#endif
1529
Jeff King3f2e2292016-07-01 01:58:58 -04001530int cmd_main(int argc, const char **argv)
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001531{
1532 struct strbuf all_msgs = STRBUF_INIT;
1533 int total;
Robert Shearmana0406b92008-07-09 22:28:59 +01001534 int nongit_ok;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001535
Robert Shearmana0406b92008-07-09 22:28:59 +01001536 setup_git_directory_gently(&nongit_ok);
Nicolas Morey-Chaisemartin50212362020-12-01 08:38:16 +01001537 git_config(git_imap_config, NULL);
Mike McCormackf2561fd2006-03-10 14:32:50 +09001538
Bernhard Reiterf1a35292014-11-05 15:29:21 +01001539 argc = parse_options(argc, (const char **)argv, "", imap_send_options, imap_send_usage, 0);
1540
1541 if (argc)
1542 usage_with_options(imap_send_usage, imap_send_options);
1543
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001544#ifndef USE_CURL_FOR_IMAP_SEND
1545 if (use_curl) {
Kyle J. McKaydcd01ea2015-03-07 21:13:55 -08001546 warning("--curl not supported in this build");
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001547 use_curl = 0;
1548 }
Kyle J. McKaydcd01ea2015-03-07 21:13:55 -08001549#elif defined(NO_OPENSSL)
1550 if (!use_curl) {
1551 warning("--no-curl not supported in this build");
1552 use_curl = 1;
1553 }
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001554#endif
1555
Robert Shearman684ec6c2008-07-09 22:29:00 +01001556 if (!server.port)
1557 server.port = server.use_ssl ? 993 : 143;
Mike McCormackf2561fd2006-03-10 14:32:50 +09001558
Bernhard Reiter39180572014-08-19 23:27:11 +02001559 if (!server.folder) {
Robert Shearman95c53902008-07-09 22:29:01 +01001560 fprintf(stderr, "no imap store specified\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +09001561 return 1;
1562 }
Gerrit Pape5b67b8e2008-03-26 18:05:17 +00001563 if (!server.host) {
Jeff King34b5cd12008-04-22 06:41:47 -04001564 if (!server.tunnel) {
Robert Shearman95c53902008-07-09 22:29:01 +01001565 fprintf(stderr, "no imap host specified\n");
Jeff King34b5cd12008-04-22 06:41:47 -04001566 return 1;
1567 }
1568 server.host = "tunnel";
Gerrit Pape5b67b8e2008-03-26 18:05:17 +00001569 }
Mike McCormackf2561fd2006-03-10 14:32:50 +09001570
1571 /* read the messages */
Ævar Arnfjörð Bjarmason351bca22021-07-07 11:05:24 +02001572 if (strbuf_read(&all_msgs, 0, 0) < 0) {
1573 error_errno(_("could not read from stdin"));
Michael Haggerty6360bee2012-11-25 12:08:38 +01001574 return 1;
1575 }
1576
1577 if (all_msgs.len == 0) {
Junio C Hamano9f1ad542008-07-09 16:37:38 -07001578 fprintf(stderr, "nothing to send\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +09001579 return 1;
1580 }
1581
Robert Shearman95c53902008-07-09 22:29:01 +01001582 total = count_messages(&all_msgs);
Mike McCormack1cd88cc2006-04-05 23:22:52 +09001583 if (!total) {
Junio C Hamano9f1ad542008-07-09 16:37:38 -07001584 fprintf(stderr, "no messages to send\n");
Mike McCormackf2561fd2006-03-10 14:32:50 +09001585 return 1;
1586 }
1587
1588 /* write it to the imap server */
Mike McCormackf2561fd2006-03-10 14:32:50 +09001589
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001590 if (server.tunnel)
1591 return append_msgs_to_imap(&server, &all_msgs, total);
Michael Haggertyf035ab62012-11-25 12:08:39 +01001592
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001593#ifdef USE_CURL_FOR_IMAP_SEND
1594 if (use_curl)
1595 return curl_append_msgs_to_imap(&server, &all_msgs, total);
1596#endif
Mike McCormackf2561fd2006-03-10 14:32:50 +09001597
Bernhard Reiter1e16b252014-11-09 15:55:53 +01001598 return append_msgs_to_imap(&server, &all_msgs, total);
Mike McCormackf2561fd2006-03-10 14:32:50 +09001599}