2006-03-10 06:32:50 +01:00
|
|
|
/*
|
|
|
|
* git-imap-send - drops patches into an imap Drafts folder
|
|
|
|
* derived from isync/mbsync - mailbox synchronizer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000-2002 Michael R. Elkins <me@mutt.org>
|
|
|
|
* Copyright (C) 2002-2004 Oswald Buddenhagen <ossi@users.sf.net>
|
|
|
|
* Copyright (C) 2004 Theodore Y. Ts'o <tytso@mit.edu>
|
|
|
|
* Copyright (C) 2006 Mike McCormack
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cache.h"
|
2009-01-18 13:00:12 +01:00
|
|
|
#include "exec_cmd.h"
|
2009-10-19 17:42:04 +02:00
|
|
|
#include "run-command.h"
|
2011-12-10 11:40:54 +01:00
|
|
|
#include "prompt.h"
|
2008-07-09 23:29:00 +02:00
|
|
|
#ifdef NO_OPENSSL
|
|
|
|
typedef void *SSL;
|
|
|
|
#endif
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2009-11-09 16:04:51 +01:00
|
|
|
static const char imap_send_usage[] = "git imap-send < <mbox>";
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2009-10-19 17:42:05 +02:00
|
|
|
#undef DRV_OK
|
2006-03-10 06:32:50 +01:00
|
|
|
#define DRV_OK 0
|
|
|
|
#define DRV_MSG_BAD -1
|
|
|
|
#define DRV_BOX_BAD -2
|
|
|
|
#define DRV_STORE_BAD -3
|
|
|
|
|
|
|
|
static int Verbose, Quiet;
|
|
|
|
|
2009-11-14 22:33:13 +01:00
|
|
|
__attribute__((format (printf, 1, 2)))
|
2008-07-09 23:29:01 +02:00
|
|
|
static void imap_info(const char *, ...);
|
2009-11-14 22:33:13 +01:00
|
|
|
__attribute__((format (printf, 1, 2)))
|
2008-07-09 23:29:01 +02:00
|
|
|
static void imap_warn(const char *, ...);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
static char *next_arg(char **);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2009-11-14 22:33:13 +01:00
|
|
|
__attribute__((format (printf, 3, 4)))
|
2008-07-09 23:29:01 +02:00
|
|
|
static int nfsnprintf(char *buf, int blen, const char *fmt, ...);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
nfv?asprintf are broken without va_copy, workaround them.
* drop nfasprintf.
* move nfvasprintf into imap-send.c back, and let it work on a 8k buffer,
and die() in case of overflow. It should be enough for imap commands, if
someone cares about imap-send, he's welcomed to fix it properly.
* replace nfvasprintf use in merge-recursive with a copy of the strbuf_addf
logic, it's one place, we'll live with it.
To ease the change, output_buffer string list is replaced with a strbuf ;)
* rework trace.c to call vsnprintf itself. It's used to format strerror()s
and git command names, it should never be more than a few octets long, let
it work on a 8k static buffer with vsnprintf or die loudly.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
2007-09-20 10:43:11 +02:00
|
|
|
static int nfvasprintf(char **strp, const char *fmt, va_list ap)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
char tmp[8192];
|
|
|
|
|
|
|
|
len = vsnprintf(tmp, sizeof(tmp), fmt, ap);
|
|
|
|
if (len < 0)
|
2009-01-04 19:38:41 +01:00
|
|
|
die("Fatal: Out of memory");
|
nfv?asprintf are broken without va_copy, workaround them.
* drop nfasprintf.
* move nfvasprintf into imap-send.c back, and let it work on a 8k buffer,
and die() in case of overflow. It should be enough for imap commands, if
someone cares about imap-send, he's welcomed to fix it properly.
* replace nfvasprintf use in merge-recursive with a copy of the strbuf_addf
logic, it's one place, we'll live with it.
To ease the change, output_buffer string list is replaced with a strbuf ;)
* rework trace.c to call vsnprintf itself. It's used to format strerror()s
and git command names, it should never be more than a few octets long, let
it work on a 8k static buffer with vsnprintf or die loudly.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
2007-09-20 10:43:11 +02:00
|
|
|
if (len >= sizeof(tmp))
|
2009-01-04 19:38:41 +01:00
|
|
|
die("imap command overflow!");
|
nfv?asprintf are broken without va_copy, workaround them.
* drop nfasprintf.
* move nfvasprintf into imap-send.c back, and let it work on a 8k buffer,
and die() in case of overflow. It should be enough for imap commands, if
someone cares about imap-send, he's welcomed to fix it properly.
* replace nfvasprintf use in merge-recursive with a copy of the strbuf_addf
logic, it's one place, we'll live with it.
To ease the change, output_buffer string list is replaced with a strbuf ;)
* rework trace.c to call vsnprintf itself. It's used to format strerror()s
and git command names, it should never be more than a few octets long, let
it work on a 8k static buffer with vsnprintf or die loudly.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
2007-09-20 10:43:11 +02:00
|
|
|
*strp = xmemdupz(tmp, len);
|
|
|
|
return len;
|
|
|
|
}
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap_server_conf {
|
2006-03-10 06:32:50 +01:00
|
|
|
char *name;
|
|
|
|
char *tunnel;
|
|
|
|
char *host;
|
|
|
|
int port;
|
|
|
|
char *user;
|
|
|
|
char *pass;
|
2008-07-09 23:29:00 +02:00
|
|
|
int use_ssl;
|
|
|
|
int ssl_verify;
|
2009-02-12 15:58:12 +01:00
|
|
|
int use_html;
|
2010-02-16 07:34:07 +01:00
|
|
|
char *auth_method;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct imap_server_conf server = {
|
|
|
|
NULL, /* name */
|
|
|
|
NULL, /* tunnel */
|
|
|
|
NULL, /* host */
|
|
|
|
0, /* port */
|
|
|
|
NULL, /* user */
|
|
|
|
NULL, /* pass */
|
|
|
|
0, /* use_ssl */
|
|
|
|
1, /* ssl_verify */
|
|
|
|
0, /* use_html */
|
|
|
|
NULL, /* auth_method */
|
2008-07-10 01:37:38 +02:00
|
|
|
};
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap_socket {
|
2009-10-19 17:42:03 +02:00
|
|
|
int fd[2];
|
2008-07-09 23:29:00 +02:00
|
|
|
SSL *ssl;
|
2008-07-10 01:37:38 +02:00
|
|
|
};
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap_buffer {
|
|
|
|
struct imap_socket sock;
|
2006-03-10 06:32:50 +01:00
|
|
|
int bytes;
|
|
|
|
int offset;
|
|
|
|
char buf[1024];
|
2008-07-10 01:37:38 +02:00
|
|
|
};
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
struct imap_cmd;
|
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap {
|
2006-03-10 06:32:50 +01:00
|
|
|
int uidnext; /* from SELECT responses */
|
|
|
|
unsigned caps, rcaps; /* CAPABILITY results */
|
|
|
|
/* command queue */
|
|
|
|
int nexttag, num_in_progress, literal_pending;
|
|
|
|
struct imap_cmd *in_progress, **in_progress_append;
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap_buffer buf; /* this is BIG, so put it last */
|
|
|
|
};
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap_store {
|
2013-01-15 09:06:31 +01:00
|
|
|
/* currently open mailbox */
|
|
|
|
const char *name; /* foreign! maybe preset? */
|
|
|
|
int uidvalidity;
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap *imap;
|
2006-03-10 06:32:50 +01:00
|
|
|
const char *prefix;
|
2008-07-10 01:37:38 +02:00
|
|
|
};
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
struct imap_cmd_cb {
|
2008-07-10 01:37:38 +02:00
|
|
|
int (*cont)(struct imap_store *ctx, struct imap_cmd *cmd, const char *prompt);
|
|
|
|
void (*done)(struct imap_store *ctx, struct imap_cmd *cmd, int response);
|
2006-03-10 06:32:50 +01:00
|
|
|
void *ctx;
|
|
|
|
char *data;
|
|
|
|
int dlen;
|
|
|
|
int uid;
|
|
|
|
unsigned create:1, trycreate:1;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct imap_cmd {
|
|
|
|
struct imap_cmd *next;
|
|
|
|
struct imap_cmd_cb cb;
|
|
|
|
char *cmd;
|
|
|
|
int tag;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define CAP(cap) (imap->caps & (1 << (cap)))
|
|
|
|
|
|
|
|
enum CAPABILITY {
|
|
|
|
NOLOGIN = 0,
|
|
|
|
UIDPLUS,
|
|
|
|
LITERALPLUS,
|
|
|
|
NAMESPACE,
|
2008-07-09 23:29:00 +02:00
|
|
|
STARTTLS,
|
2010-05-14 11:31:35 +02:00
|
|
|
AUTH_CRAM_MD5
|
2006-03-10 06:32:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char *cap_list[] = {
|
|
|
|
"LOGINDISABLED",
|
|
|
|
"UIDPLUS",
|
|
|
|
"LITERAL+",
|
|
|
|
"NAMESPACE",
|
2008-07-09 23:29:00 +02:00
|
|
|
"STARTTLS",
|
2010-02-16 07:34:07 +01:00
|
|
|
"AUTH=CRAM-MD5",
|
2006-03-10 06:32:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#define RESP_OK 0
|
|
|
|
#define RESP_NO 1
|
|
|
|
#define RESP_BAD 2
|
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
static int get_cmd_result(struct imap_store *ctx, struct imap_cmd *tcmd);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
|
2008-07-09 23:29:00 +02:00
|
|
|
#ifndef NO_OPENSSL
|
|
|
|
static void ssl_socket_perror(const char *func)
|
|
|
|
{
|
2009-06-18 19:28:43 +02:00
|
|
|
fprintf(stderr, "%s: %s\n", func, ERR_error_string(ERR_get_error(), NULL));
|
2008-07-09 23:29:00 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
static void socket_perror(const char *func, struct imap_socket *sock, int ret)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2008-07-09 23:29:00 +02:00
|
|
|
#ifndef NO_OPENSSL
|
|
|
|
if (sock->ssl) {
|
|
|
|
int sslerr = SSL_get_error(sock->ssl, ret);
|
|
|
|
switch (sslerr) {
|
|
|
|
case SSL_ERROR_NONE:
|
|
|
|
break;
|
|
|
|
case SSL_ERROR_SYSCALL:
|
|
|
|
perror("SSL_connect");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ssl_socket_perror("SSL_connect");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (ret < 0)
|
|
|
|
perror(func);
|
|
|
|
else
|
|
|
|
fprintf(stderr, "%s: unexpected EOF\n", func);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-15 21:32:19 +01:00
|
|
|
#ifdef NO_OPENSSL
|
2008-07-10 01:37:38 +02:00
|
|
|
static int ssl_socket_connect(struct imap_socket *sock, int use_tls_only, int verify)
|
2008-07-09 23:29:00 +02:00
|
|
|
{
|
|
|
|
fprintf(stderr, "SSL requested but SSL support not compiled in\n");
|
|
|
|
return -1;
|
2013-02-15 21:32:19 +01:00
|
|
|
}
|
|
|
|
|
2009-10-31 07:36:03 +01:00
|
|
|
#else
|
2013-02-15 21:32:19 +01:00
|
|
|
|
2013-02-15 21:50:35 +01:00
|
|
|
static int host_matches(const char *host, const char *pattern)
|
|
|
|
{
|
|
|
|
if (pattern[0] == '*' && pattern[1] == '.') {
|
|
|
|
pattern += 2;
|
|
|
|
if (!(host = strchr(host, '.')))
|
|
|
|
return 0;
|
|
|
|
host++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return *host && *pattern && !strcasecmp(host, pattern);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int verify_hostname(X509 *cert, const char *hostname)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
X509_NAME *subj;
|
|
|
|
char cname[1000];
|
2013-02-15 21:59:53 +01:00
|
|
|
int i, found;
|
|
|
|
STACK_OF(GENERAL_NAME) *subj_alt_names;
|
|
|
|
|
|
|
|
/* try the DNS subjectAltNames */
|
|
|
|
found = 0;
|
|
|
|
if ((subj_alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL))) {
|
|
|
|
int num_subj_alt_names = sk_GENERAL_NAME_num(subj_alt_names);
|
|
|
|
for (i = 0; !found && i < num_subj_alt_names; i++) {
|
|
|
|
GENERAL_NAME *subj_alt_name = sk_GENERAL_NAME_value(subj_alt_names, i);
|
|
|
|
if (subj_alt_name->type == GEN_DNS &&
|
|
|
|
strlen((const char *)subj_alt_name->d.ia5->data) == (size_t)subj_alt_name->d.ia5->length &&
|
|
|
|
host_matches(hostname, (const char *)(subj_alt_name->d.ia5->data)))
|
|
|
|
found = 1;
|
|
|
|
}
|
|
|
|
sk_GENERAL_NAME_pop_free(subj_alt_names, GENERAL_NAME_free);
|
|
|
|
}
|
|
|
|
if (found)
|
|
|
|
return 0;
|
2013-02-15 21:50:35 +01:00
|
|
|
|
|
|
|
/* try the common name */
|
|
|
|
if (!(subj = X509_get_subject_name(cert)))
|
|
|
|
return error("cannot get certificate subject");
|
|
|
|
if ((len = X509_NAME_get_text_by_NID(subj, NID_commonName, cname, sizeof(cname))) < 0)
|
|
|
|
return error("cannot get certificate common name");
|
|
|
|
if (strlen(cname) == (size_t)len && host_matches(hostname, cname))
|
|
|
|
return 0;
|
|
|
|
return error("certificate owner '%s' does not match hostname '%s'",
|
|
|
|
cname, hostname);
|
|
|
|
}
|
|
|
|
|
2013-02-15 21:32:19 +01:00
|
|
|
static int ssl_socket_connect(struct imap_socket *sock, int use_tls_only, int verify)
|
|
|
|
{
|
2009-10-31 07:36:03 +01:00
|
|
|
#if (OPENSSL_VERSION_NUMBER >= 0x10000000L)
|
|
|
|
const SSL_METHOD *meth;
|
2008-07-09 23:29:00 +02:00
|
|
|
#else
|
|
|
|
SSL_METHOD *meth;
|
2009-10-31 07:36:03 +01:00
|
|
|
#endif
|
2008-07-09 23:29:00 +02:00
|
|
|
SSL_CTX *ctx;
|
|
|
|
int ret;
|
2013-02-15 21:50:35 +01:00
|
|
|
X509 *cert;
|
2008-07-09 23:29:00 +02:00
|
|
|
|
|
|
|
SSL_library_init();
|
|
|
|
SSL_load_error_strings();
|
|
|
|
|
|
|
|
if (use_tls_only)
|
|
|
|
meth = TLSv1_method();
|
2006-03-10 06:32:50 +01:00
|
|
|
else
|
2008-07-09 23:29:00 +02:00
|
|
|
meth = SSLv23_method();
|
|
|
|
|
|
|
|
if (!meth) {
|
|
|
|
ssl_socket_perror("SSLv23_method");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx = SSL_CTX_new(meth);
|
|
|
|
|
|
|
|
if (verify)
|
|
|
|
SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, NULL);
|
|
|
|
|
|
|
|
if (!SSL_CTX_set_default_verify_paths(ctx)) {
|
|
|
|
ssl_socket_perror("SSL_CTX_set_default_verify_paths");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
sock->ssl = SSL_new(ctx);
|
|
|
|
if (!sock->ssl) {
|
|
|
|
ssl_socket_perror("SSL_new");
|
|
|
|
return -1;
|
|
|
|
}
|
2009-10-19 17:42:03 +02:00
|
|
|
if (!SSL_set_rfd(sock->ssl, sock->fd[0])) {
|
|
|
|
ssl_socket_perror("SSL_set_rfd");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!SSL_set_wfd(sock->ssl, sock->fd[1])) {
|
|
|
|
ssl_socket_perror("SSL_set_wfd");
|
2008-07-09 23:29:00 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:02:42 +01:00
|
|
|
#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
|
|
|
|
/*
|
|
|
|
* SNI (RFC4366)
|
|
|
|
* OpenSSL does not document this function, but the implementation
|
|
|
|
* returns 1 on success, 0 on failure after calling SSLerr().
|
|
|
|
*/
|
|
|
|
ret = SSL_set_tlsext_host_name(sock->ssl, server.host);
|
|
|
|
if (ret != 1)
|
|
|
|
warning("SSL_set_tlsext_host_name(%s) failed.", server.host);
|
|
|
|
#endif
|
|
|
|
|
2008-07-09 23:29:00 +02:00
|
|
|
ret = SSL_connect(sock->ssl);
|
|
|
|
if (ret <= 0) {
|
|
|
|
socket_perror("SSL_connect", sock, ret);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-02-15 21:50:35 +01:00
|
|
|
if (verify) {
|
|
|
|
/* make sure the hostname matches that of the certificate */
|
|
|
|
cert = SSL_get_peer_certificate(sock->ssl);
|
|
|
|
if (!cert)
|
|
|
|
return error("unable to get peer certificate.");
|
|
|
|
if (verify_hostname(cert, server.host) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-07-09 23:29:00 +02:00
|
|
|
return 0;
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
2013-02-15 21:32:19 +01:00
|
|
|
#endif
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
static int socket_read(struct imap_socket *sock, char *buf, int len)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2008-07-09 23:29:00 +02:00
|
|
|
ssize_t n;
|
|
|
|
#ifndef NO_OPENSSL
|
|
|
|
if (sock->ssl)
|
|
|
|
n = SSL_read(sock->ssl, buf, len);
|
|
|
|
else
|
|
|
|
#endif
|
2009-10-19 17:42:03 +02:00
|
|
|
n = xread(sock->fd[0], buf, len);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (n <= 0) {
|
2008-07-09 23:29:01 +02:00
|
|
|
socket_perror("read", sock, n);
|
2009-10-19 17:42:03 +02:00
|
|
|
close(sock->fd[0]);
|
|
|
|
close(sock->fd[1]);
|
|
|
|
sock->fd[0] = sock->fd[1] = -1;
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
static int socket_write(struct imap_socket *sock, const char *buf, int len)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2008-07-09 23:29:00 +02:00
|
|
|
int n;
|
|
|
|
#ifndef NO_OPENSSL
|
|
|
|
if (sock->ssl)
|
|
|
|
n = SSL_write(sock->ssl, buf, len);
|
|
|
|
else
|
|
|
|
#endif
|
2009-10-19 17:42:03 +02:00
|
|
|
n = write_in_full(sock->fd[1], buf, len);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (n != len) {
|
2008-07-09 23:29:01 +02:00
|
|
|
socket_perror("write", sock, n);
|
2009-10-19 17:42:03 +02:00
|
|
|
close(sock->fd[0]);
|
|
|
|
close(sock->fd[1]);
|
|
|
|
sock->fd[0] = sock->fd[1] = -1;
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
static void socket_shutdown(struct imap_socket *sock)
|
2008-07-09 23:29:00 +02:00
|
|
|
{
|
|
|
|
#ifndef NO_OPENSSL
|
|
|
|
if (sock->ssl) {
|
|
|
|
SSL_shutdown(sock->ssl);
|
|
|
|
SSL_free(sock->ssl);
|
|
|
|
}
|
|
|
|
#endif
|
2009-10-19 17:42:03 +02:00
|
|
|
close(sock->fd[0]);
|
|
|
|
close(sock->fd[1]);
|
2008-07-09 23:29:00 +02:00
|
|
|
}
|
|
|
|
|
2006-03-10 06:32:50 +01:00
|
|
|
/* simple line buffering */
|
2008-07-10 01:37:38 +02:00
|
|
|
static int buffer_gets(struct imap_buffer *b, char **s)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
|
|
|
int n;
|
|
|
|
int start = b->offset;
|
|
|
|
|
|
|
|
*s = b->buf + start;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
/* make sure we have enough data to read the \r\n sequence */
|
|
|
|
if (b->offset + 1 >= b->bytes) {
|
|
|
|
if (start) {
|
|
|
|
/* shift down used bytes */
|
|
|
|
*s = b->buf;
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
assert(start <= b->bytes);
|
2006-03-10 06:32:50 +01:00
|
|
|
n = b->bytes - start;
|
|
|
|
|
|
|
|
if (n)
|
2006-10-31 02:39:17 +01:00
|
|
|
memmove(b->buf, b->buf + start, n);
|
2006-03-10 06:32:50 +01:00
|
|
|
b->offset -= start;
|
|
|
|
b->bytes = n;
|
|
|
|
start = 0;
|
|
|
|
}
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
n = socket_read(&b->sock, b->buf + b->bytes,
|
|
|
|
sizeof(b->buf) - b->bytes);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
if (n <= 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
b->bytes += n;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (b->buf[b->offset] == '\r') {
|
2008-07-09 23:29:01 +02:00
|
|
|
assert(b->offset + 1 < b->bytes);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (b->buf[b->offset + 1] == '\n') {
|
|
|
|
b->buf[b->offset] = 0; /* terminate the string */
|
|
|
|
b->offset += 2; /* next line */
|
|
|
|
if (Verbose)
|
2008-07-09 23:29:01 +02:00
|
|
|
puts(*s);
|
2006-03-10 06:32:50 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
b->offset++;
|
|
|
|
}
|
|
|
|
/* not reached */
|
|
|
|
}
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
static void imap_info(const char *msg, ...)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
|
|
|
|
if (!Quiet) {
|
2008-07-09 23:29:01 +02:00
|
|
|
va_start(va, msg);
|
|
|
|
vprintf(msg, va);
|
|
|
|
va_end(va);
|
|
|
|
fflush(stdout);
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
static void imap_warn(const char *msg, ...)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
|
|
|
|
if (Quiet < 2) {
|
2008-07-09 23:29:01 +02:00
|
|
|
va_start(va, msg);
|
|
|
|
vfprintf(stderr, msg, va);
|
|
|
|
va_end(va);
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
static char *next_arg(char **s)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
|
|
|
char *ret;
|
|
|
|
|
|
|
|
if (!s || !*s)
|
2006-04-02 13:13:01 +02:00
|
|
|
return NULL;
|
2008-07-09 23:29:01 +02:00
|
|
|
while (isspace((unsigned char) **s))
|
2006-03-10 06:32:50 +01:00
|
|
|
(*s)++;
|
|
|
|
if (!**s) {
|
2006-04-02 13:13:01 +02:00
|
|
|
*s = NULL;
|
|
|
|
return NULL;
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
if (**s == '"') {
|
|
|
|
++*s;
|
|
|
|
ret = *s;
|
2008-07-09 23:29:01 +02:00
|
|
|
*s = strchr(*s, '"');
|
2006-03-10 06:32:50 +01:00
|
|
|
} else {
|
|
|
|
ret = *s;
|
2008-07-09 23:29:01 +02:00
|
|
|
while (**s && !isspace((unsigned char) **s))
|
2006-03-10 06:32:50 +01:00
|
|
|
(*s)++;
|
|
|
|
}
|
|
|
|
if (*s) {
|
|
|
|
if (**s)
|
|
|
|
*(*s)++ = 0;
|
|
|
|
if (!**s)
|
2006-04-02 13:13:01 +02:00
|
|
|
*s = NULL;
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
static int nfsnprintf(char *buf, int blen, const char *fmt, ...)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
va_list va;
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
va_start(va, fmt);
|
|
|
|
if (blen <= 0 || (unsigned)(ret = vsnprintf(buf, blen, fmt, va)) >= (unsigned)blen)
|
2009-01-04 19:38:41 +01:00
|
|
|
die("Fatal: buffer too small. Please report a bug.");
|
2008-07-09 23:29:01 +02:00
|
|
|
va_end(va);
|
2006-03-10 06:32:50 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
static struct imap_cmd *v_issue_imap_cmd(struct imap_store *ctx,
|
2008-07-09 23:29:01 +02:00
|
|
|
struct imap_cmd_cb *cb,
|
|
|
|
const char *fmt, va_list ap)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap *imap = ctx->imap;
|
2006-03-10 06:32:50 +01:00
|
|
|
struct imap_cmd *cmd;
|
|
|
|
int n, bufl;
|
|
|
|
char buf[1024];
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
cmd = xmalloc(sizeof(struct imap_cmd));
|
|
|
|
nfvasprintf(&cmd->cmd, fmt, ap);
|
2006-03-10 06:32:50 +01:00
|
|
|
cmd->tag = ++imap->nexttag;
|
|
|
|
|
|
|
|
if (cb)
|
|
|
|
cmd->cb = *cb;
|
|
|
|
else
|
2008-07-09 23:29:01 +02:00
|
|
|
memset(&cmd->cb, 0, sizeof(cmd->cb));
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
while (imap->literal_pending)
|
2008-07-09 23:29:01 +02:00
|
|
|
get_cmd_result(ctx, NULL);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2010-08-08 01:09:45 +02:00
|
|
|
if (!cmd->cb.data)
|
|
|
|
bufl = nfsnprintf(buf, sizeof(buf), "%d %s\r\n", cmd->tag, cmd->cmd);
|
|
|
|
else
|
|
|
|
bufl = nfsnprintf(buf, sizeof(buf), "%d %s{%d%s}\r\n",
|
|
|
|
cmd->tag, cmd->cmd, cmd->cb.dlen,
|
|
|
|
CAP(LITERALPLUS) ? "+" : "");
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
if (Verbose) {
|
|
|
|
if (imap->num_in_progress)
|
2008-07-09 23:29:01 +02:00
|
|
|
printf("(%d in progress) ", imap->num_in_progress);
|
|
|
|
if (memcmp(cmd->cmd, "LOGIN", 5))
|
|
|
|
printf(">>> %s", buf);
|
2006-03-10 06:32:50 +01:00
|
|
|
else
|
2008-07-09 23:29:01 +02:00
|
|
|
printf(">>> %d LOGIN <user> <pass>\n", cmd->tag);
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
if (socket_write(&imap->buf.sock, buf, bufl) != bufl) {
|
|
|
|
free(cmd->cmd);
|
|
|
|
free(cmd);
|
Avoid unnecessary "if-before-free" tests.
This change removes all obvious useless if-before-free tests.
E.g., it replaces code like this:
if (some_expression)
free (some_expression);
with the now-equivalent:
free (some_expression);
It is equivalent not just because POSIX has required free(NULL)
to work for a long time, but simply because it has worked for
so long that no reasonable porting target fails the test.
Here's some evidence from nearly 1.5 years ago:
http://www.winehq.org/pipermail/wine-patches/2006-October/031544.html
FYI, the change below was prepared by running the following:
git ls-files -z | xargs -0 \
perl -0x3b -pi -e \
's/\bif\s*\(\s*(\S+?)(?:\s*!=\s*NULL)?\s*\)\s+(free\s*\(\s*\1\s*\))/$2/s'
Note however, that it doesn't handle brace-enclosed blocks like
"if (x) { free (x); }". But that's ok, since there were none like
that in git sources.
Beware: if you do use the above snippet, note that it can
produce syntactically invalid C code. That happens when the
affected "if"-statement has a matching "else".
E.g., it would transform this
if (x)
free (x);
else
foo ();
into this:
free (x);
else
foo ();
There were none of those here, either.
If you're interested in automating detection of the useless
tests, you might like the useless-if-before-free script in gnulib:
[it *does* detect brace-enclosed free statements, and has a --name=S
option to make it detect free-like functions with different names]
http://git.sv.gnu.org/gitweb/?p=gnulib.git;a=blob;f=build-aux/useless-if-before-free
Addendum:
Remove one more (in imap-send.c), spotted by Jean-Luc Herren <jlh@gmx.ch>.
Signed-off-by: Jim Meyering <meyering@redhat.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-01-31 18:26:32 +01:00
|
|
|
if (cb)
|
2008-07-09 23:29:01 +02:00
|
|
|
free(cb->data);
|
2006-03-10 06:32:50 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (cmd->cb.data) {
|
|
|
|
if (CAP(LITERALPLUS)) {
|
2008-07-09 23:29:01 +02:00
|
|
|
n = socket_write(&imap->buf.sock, cmd->cb.data, cmd->cb.dlen);
|
|
|
|
free(cmd->cb.data);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (n != cmd->cb.dlen ||
|
2009-03-13 13:51:33 +01:00
|
|
|
socket_write(&imap->buf.sock, "\r\n", 2) != 2) {
|
2008-07-09 23:29:01 +02:00
|
|
|
free(cmd->cmd);
|
|
|
|
free(cmd);
|
2006-03-10 06:32:50 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2006-04-02 13:13:01 +02:00
|
|
|
cmd->cb.data = NULL;
|
2006-03-10 06:32:50 +01:00
|
|
|
} else
|
|
|
|
imap->literal_pending = 1;
|
|
|
|
} else if (cmd->cb.cont)
|
|
|
|
imap->literal_pending = 1;
|
2006-04-02 13:13:01 +02:00
|
|
|
cmd->next = NULL;
|
2006-03-10 06:32:50 +01:00
|
|
|
*imap->in_progress_append = cmd;
|
|
|
|
imap->in_progress_append = &cmd->next;
|
|
|
|
imap->num_in_progress++;
|
|
|
|
return cmd;
|
|
|
|
}
|
|
|
|
|
2009-11-14 22:33:13 +01:00
|
|
|
__attribute__((format (printf, 3, 4)))
|
2008-07-10 01:37:38 +02:00
|
|
|
static struct imap_cmd *issue_imap_cmd(struct imap_store *ctx,
|
2008-07-09 23:29:01 +02:00
|
|
|
struct imap_cmd_cb *cb,
|
|
|
|
const char *fmt, ...)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
|
|
|
struct imap_cmd *ret;
|
|
|
|
va_list ap;
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
va_start(ap, fmt);
|
|
|
|
ret = v_issue_imap_cmd(ctx, cb, fmt, ap);
|
|
|
|
va_end(ap);
|
2006-03-10 06:32:50 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-11-14 22:33:13 +01:00
|
|
|
__attribute__((format (printf, 3, 4)))
|
2008-07-10 01:37:38 +02:00
|
|
|
static int imap_exec(struct imap_store *ctx, struct imap_cmd_cb *cb,
|
2008-07-09 23:29:01 +02:00
|
|
|
const char *fmt, ...)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
struct imap_cmd *cmdp;
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
va_start(ap, fmt);
|
|
|
|
cmdp = v_issue_imap_cmd(ctx, cb, fmt, ap);
|
|
|
|
va_end(ap);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (!cmdp)
|
|
|
|
return RESP_BAD;
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
return get_cmd_result(ctx, cmdp);
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
|
2009-11-14 22:33:13 +01:00
|
|
|
__attribute__((format (printf, 3, 4)))
|
2008-07-10 01:37:38 +02:00
|
|
|
static int imap_exec_m(struct imap_store *ctx, struct imap_cmd_cb *cb,
|
2008-07-09 23:29:01 +02:00
|
|
|
const char *fmt, ...)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
struct imap_cmd *cmdp;
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
va_start(ap, fmt);
|
|
|
|
cmdp = v_issue_imap_cmd(ctx, cb, fmt, ap);
|
|
|
|
va_end(ap);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (!cmdp)
|
|
|
|
return DRV_STORE_BAD;
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
switch (get_cmd_result(ctx, cmdp)) {
|
2006-03-10 06:32:50 +01:00
|
|
|
case RESP_BAD: return DRV_STORE_BAD;
|
|
|
|
case RESP_NO: return DRV_MSG_BAD;
|
|
|
|
default: return DRV_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-15 09:06:27 +01:00
|
|
|
static int skip_imap_list_l(char **sp, int level)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2013-01-15 09:06:27 +01:00
|
|
|
char *s = *sp;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
for (;;) {
|
2008-07-09 23:29:01 +02:00
|
|
|
while (isspace((unsigned char)*s))
|
2006-03-10 06:32:50 +01:00
|
|
|
s++;
|
|
|
|
if (level && *s == ')') {
|
|
|
|
s++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (*s == '(') {
|
|
|
|
/* sublist */
|
|
|
|
s++;
|
2013-01-15 09:06:27 +01:00
|
|
|
if (skip_imap_list_l(&s, level + 1))
|
2006-03-10 06:32:50 +01:00
|
|
|
goto bail;
|
|
|
|
} else if (*s == '"') {
|
|
|
|
/* quoted string */
|
|
|
|
s++;
|
|
|
|
for (; *s != '"'; s++)
|
|
|
|
if (!*s)
|
|
|
|
goto bail;
|
|
|
|
s++;
|
|
|
|
} else {
|
|
|
|
/* atom */
|
2008-07-09 23:29:01 +02:00
|
|
|
for (; *s && !isspace((unsigned char)*s); s++)
|
2006-03-10 06:32:50 +01:00
|
|
|
if (level && *s == ')')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!level)
|
|
|
|
break;
|
|
|
|
if (!*s)
|
|
|
|
goto bail;
|
|
|
|
}
|
|
|
|
*sp = s;
|
|
|
|
return 0;
|
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
bail:
|
2006-03-10 06:32:50 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-01-15 09:06:27 +01:00
|
|
|
static void skip_list(char **sp)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2013-01-15 09:06:27 +01:00
|
|
|
skip_imap_list_l(sp, 0);
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
static void parse_capability(struct imap *imap, char *cmd)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
|
|
|
char *arg;
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
imap->caps = 0x80000000;
|
2008-07-09 23:29:01 +02:00
|
|
|
while ((arg = next_arg(&cmd)))
|
2006-03-10 06:32:50 +01:00
|
|
|
for (i = 0; i < ARRAY_SIZE(cap_list); i++)
|
2008-07-09 23:29:01 +02:00
|
|
|
if (!strcmp(cap_list[i], arg))
|
2006-03-10 06:32:50 +01:00
|
|
|
imap->caps |= 1 << i;
|
|
|
|
imap->rcaps = imap->caps;
|
|
|
|
}
|
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
static int parse_response_code(struct imap_store *ctx, struct imap_cmd_cb *cb,
|
2008-07-09 23:29:01 +02:00
|
|
|
char *s)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap *imap = ctx->imap;
|
2006-03-10 06:32:50 +01:00
|
|
|
char *arg, *p;
|
|
|
|
|
|
|
|
if (*s != '[')
|
|
|
|
return RESP_OK; /* no response code */
|
|
|
|
s++;
|
2008-07-09 23:29:01 +02:00
|
|
|
if (!(p = strchr(s, ']'))) {
|
|
|
|
fprintf(stderr, "IMAP error: malformed response code\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
return RESP_BAD;
|
|
|
|
}
|
|
|
|
*p++ = 0;
|
2008-07-09 23:29:01 +02:00
|
|
|
arg = next_arg(&s);
|
|
|
|
if (!strcmp("UIDVALIDITY", arg)) {
|
2013-01-15 09:06:31 +01:00
|
|
|
if (!(arg = next_arg(&s)) || !(ctx->uidvalidity = atoi(arg))) {
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "IMAP error: malformed UIDVALIDITY status\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
return RESP_BAD;
|
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
} else if (!strcmp("UIDNEXT", arg)) {
|
|
|
|
if (!(arg = next_arg(&s)) || !(imap->uidnext = atoi(arg))) {
|
|
|
|
fprintf(stderr, "IMAP error: malformed NEXTUID status\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
return RESP_BAD;
|
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
} else if (!strcmp("CAPABILITY", arg)) {
|
|
|
|
parse_capability(imap, s);
|
|
|
|
} else if (!strcmp("ALERT", arg)) {
|
2006-03-10 06:32:50 +01:00
|
|
|
/* RFC2060 says that these messages MUST be displayed
|
|
|
|
* to the user
|
|
|
|
*/
|
2008-07-09 23:29:01 +02:00
|
|
|
for (; isspace((unsigned char)*p); p++);
|
|
|
|
fprintf(stderr, "*** IMAP ALERT *** %s\n", p);
|
|
|
|
} else if (cb && cb->ctx && !strcmp("APPENDUID", arg)) {
|
2013-01-15 09:06:31 +01:00
|
|
|
if (!(arg = next_arg(&s)) || !(ctx->uidvalidity = atoi(arg)) ||
|
2008-07-10 01:37:38 +02:00
|
|
|
!(arg = next_arg(&s)) || !(*(int *)cb->ctx = atoi(arg))) {
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "IMAP error: malformed APPENDUID status\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
return RESP_BAD;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return RESP_OK;
|
|
|
|
}
|
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
static int get_cmd_result(struct imap_store *ctx, struct imap_cmd *tcmd)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap *imap = ctx->imap;
|
2006-03-10 06:32:50 +01:00
|
|
|
struct imap_cmd *cmdp, **pcmdp, *ncmdp;
|
|
|
|
char *cmd, *arg, *arg1, *p;
|
|
|
|
int n, resp, resp2, tag;
|
|
|
|
|
|
|
|
for (;;) {
|
2008-07-09 23:29:01 +02:00
|
|
|
if (buffer_gets(&imap->buf, &cmd))
|
2006-03-10 06:32:50 +01:00
|
|
|
return RESP_BAD;
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
arg = next_arg(&cmd);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (*arg == '*') {
|
2008-07-09 23:29:01 +02:00
|
|
|
arg = next_arg(&cmd);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (!arg) {
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "IMAP error: unable to parse untagged response\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
return RESP_BAD;
|
|
|
|
}
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
if (!strcmp("NAMESPACE", arg)) {
|
2013-01-15 09:06:27 +01:00
|
|
|
/* rfc2342 NAMESPACE response. */
|
|
|
|
skip_list(&cmd); /* Personal mailboxes */
|
|
|
|
skip_list(&cmd); /* Others' mailboxes */
|
|
|
|
skip_list(&cmd); /* Shared mailboxes */
|
2008-07-09 23:29:01 +02:00
|
|
|
} else if (!strcmp("OK", arg) || !strcmp("BAD", arg) ||
|
|
|
|
!strcmp("NO", arg) || !strcmp("BYE", arg)) {
|
|
|
|
if ((resp = parse_response_code(ctx, NULL, cmd)) != RESP_OK)
|
2006-03-10 06:32:50 +01:00
|
|
|
return resp;
|
2013-01-15 09:06:24 +01:00
|
|
|
} else if (!strcmp("CAPABILITY", arg)) {
|
2008-07-09 23:29:01 +02:00
|
|
|
parse_capability(imap, cmd);
|
2013-01-15 09:06:24 +01:00
|
|
|
} else if ((arg1 = next_arg(&cmd))) {
|
|
|
|
; /*
|
|
|
|
* Unhandled response-data with at least two words.
|
|
|
|
* Ignore it.
|
|
|
|
*
|
|
|
|
* NEEDSWORK: Previously this case handled '<num> EXISTS'
|
|
|
|
* and '<num> RECENT' but as a probably-unintended side
|
|
|
|
* effect it ignores other unrecognized two-word
|
|
|
|
* responses. imap-send doesn't ever try to read
|
|
|
|
* messages or mailboxes these days, so consider
|
|
|
|
* eliminating this case.
|
|
|
|
*/
|
2006-03-10 06:32:50 +01:00
|
|
|
} else {
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "IMAP error: unable to parse untagged response\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
return RESP_BAD;
|
|
|
|
}
|
|
|
|
} else if (!imap->in_progress) {
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "IMAP error: unexpected reply: %s %s\n", arg, cmd ? cmd : "");
|
2006-03-10 06:32:50 +01:00
|
|
|
return RESP_BAD;
|
|
|
|
} else if (*arg == '+') {
|
|
|
|
/* This can happen only with the last command underway, as
|
|
|
|
it enforces a round-trip. */
|
|
|
|
cmdp = (struct imap_cmd *)((char *)imap->in_progress_append -
|
|
|
|
offsetof(struct imap_cmd, next));
|
|
|
|
if (cmdp->cb.data) {
|
2008-07-09 23:29:01 +02:00
|
|
|
n = socket_write(&imap->buf.sock, cmdp->cb.data, cmdp->cb.dlen);
|
|
|
|
free(cmdp->cb.data);
|
2006-04-02 13:13:01 +02:00
|
|
|
cmdp->cb.data = NULL;
|
2006-03-10 06:32:50 +01:00
|
|
|
if (n != (int)cmdp->cb.dlen)
|
|
|
|
return RESP_BAD;
|
|
|
|
} else if (cmdp->cb.cont) {
|
2008-07-09 23:29:01 +02:00
|
|
|
if (cmdp->cb.cont(ctx, cmdp, cmd))
|
2006-03-10 06:32:50 +01:00
|
|
|
return RESP_BAD;
|
|
|
|
} else {
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "IMAP error: unexpected command continuation request\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
return RESP_BAD;
|
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
if (socket_write(&imap->buf.sock, "\r\n", 2) != 2)
|
2006-03-10 06:32:50 +01:00
|
|
|
return RESP_BAD;
|
|
|
|
if (!cmdp->cb.cont)
|
|
|
|
imap->literal_pending = 0;
|
|
|
|
if (!tcmd)
|
|
|
|
return DRV_OK;
|
|
|
|
} else {
|
2008-07-09 23:29:01 +02:00
|
|
|
tag = atoi(arg);
|
2006-03-10 06:32:50 +01:00
|
|
|
for (pcmdp = &imap->in_progress; (cmdp = *pcmdp); pcmdp = &cmdp->next)
|
|
|
|
if (cmdp->tag == tag)
|
|
|
|
goto gottag;
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "IMAP error: unexpected tag %s\n", arg);
|
2006-03-10 06:32:50 +01:00
|
|
|
return RESP_BAD;
|
2008-07-10 01:37:38 +02:00
|
|
|
gottag:
|
2006-03-10 06:32:50 +01:00
|
|
|
if (!(*pcmdp = cmdp->next))
|
|
|
|
imap->in_progress_append = pcmdp;
|
|
|
|
imap->num_in_progress--;
|
|
|
|
if (cmdp->cb.cont || cmdp->cb.data)
|
|
|
|
imap->literal_pending = 0;
|
2008-07-09 23:29:01 +02:00
|
|
|
arg = next_arg(&cmd);
|
|
|
|
if (!strcmp("OK", arg))
|
2006-03-10 06:32:50 +01:00
|
|
|
resp = DRV_OK;
|
|
|
|
else {
|
2008-07-09 23:29:01 +02:00
|
|
|
if (!strcmp("NO", arg)) {
|
|
|
|
if (cmdp->cb.create && cmd && (cmdp->cb.trycreate || !memcmp(cmd, "[TRYCREATE]", 11))) { /* SELECT, APPEND or UID COPY */
|
|
|
|
p = strchr(cmdp->cmd, '"');
|
2009-11-14 22:33:13 +01:00
|
|
|
if (!issue_imap_cmd(ctx, NULL, "CREATE \"%.*s\"", (int)(strchr(p + 1, '"') - p + 1), p)) {
|
2006-03-10 06:32:50 +01:00
|
|
|
resp = RESP_BAD;
|
|
|
|
goto normal;
|
|
|
|
}
|
|
|
|
/* not waiting here violates the spec, but a server that does not
|
|
|
|
grok this nonetheless violates it too. */
|
|
|
|
cmdp->cb.create = 0;
|
2008-07-09 23:29:01 +02:00
|
|
|
if (!(ncmdp = issue_imap_cmd(ctx, &cmdp->cb, "%s", cmdp->cmd))) {
|
2006-03-10 06:32:50 +01:00
|
|
|
resp = RESP_BAD;
|
|
|
|
goto normal;
|
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
free(cmdp->cmd);
|
|
|
|
free(cmdp);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (!tcmd)
|
|
|
|
return 0; /* ignored */
|
|
|
|
if (cmdp == tcmd)
|
|
|
|
tcmd = ncmdp;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
resp = RESP_NO;
|
2008-07-09 23:29:01 +02:00
|
|
|
} else /*if (!strcmp("BAD", arg))*/
|
2006-03-10 06:32:50 +01:00
|
|
|
resp = RESP_BAD;
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "IMAP command '%s' returned response (%s) - %s\n",
|
|
|
|
memcmp(cmdp->cmd, "LOGIN", 5) ?
|
2006-03-10 06:32:50 +01:00
|
|
|
cmdp->cmd : "LOGIN <user> <pass>",
|
|
|
|
arg, cmd ? cmd : "");
|
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
if ((resp2 = parse_response_code(ctx, &cmdp->cb, cmd)) > resp)
|
2006-03-10 06:32:50 +01:00
|
|
|
resp = resp2;
|
2008-07-10 01:37:38 +02:00
|
|
|
normal:
|
2006-03-10 06:32:50 +01:00
|
|
|
if (cmdp->cb.done)
|
2008-07-09 23:29:01 +02:00
|
|
|
cmdp->cb.done(ctx, cmdp, resp);
|
|
|
|
free(cmdp->cb.data);
|
|
|
|
free(cmdp->cmd);
|
|
|
|
free(cmdp);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (!tcmd || tcmd == cmdp)
|
|
|
|
return resp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* not reached */
|
|
|
|
}
|
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
static void imap_close_server(struct imap_store *ictx)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap *imap = ictx->imap;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2009-10-19 17:42:03 +02:00
|
|
|
if (imap->buf.sock.fd[0] != -1) {
|
2008-07-09 23:29:01 +02:00
|
|
|
imap_exec(ictx, NULL, "LOGOUT");
|
|
|
|
socket_shutdown(&imap->buf.sock);
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
free(imap);
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
|
2013-01-15 09:06:29 +01:00
|
|
|
static void imap_close_store(struct imap_store *ctx)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2013-01-15 09:06:29 +01:00
|
|
|
imap_close_server(ctx);
|
2008-07-09 23:29:01 +02:00
|
|
|
free(ctx);
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
|
2010-02-16 07:34:07 +01:00
|
|
|
#ifndef NO_OPENSSL
|
|
|
|
|
|
|
|
/*
|
|
|
|
* hexchar() and cram() functions are based on the code from the isync
|
|
|
|
* project (http://isync.sf.net/).
|
|
|
|
*/
|
|
|
|
static char hexchar(unsigned int b)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2010-02-16 07:34:07 +01:00
|
|
|
return b < 10 ? '0' + b : 'a' + (b - 10);
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
|
2010-02-16 07:34:07 +01:00
|
|
|
#define ENCODED_SIZE(n) (4*((n+2)/3))
|
|
|
|
static char *cram(const char *challenge_64, const char *user, const char *pass)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2010-02-16 07:34:07 +01:00
|
|
|
int i, resp_len, encoded_len, decoded_len;
|
|
|
|
HMAC_CTX hmac;
|
|
|
|
unsigned char hash[16];
|
|
|
|
char hex[33];
|
|
|
|
char *response, *response_64, *challenge;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* length of challenge_64 (i.e. base-64 encoded string) is a good
|
|
|
|
* enough upper bound for challenge (decoded result).
|
|
|
|
*/
|
|
|
|
encoded_len = strlen(challenge_64);
|
|
|
|
challenge = xmalloc(encoded_len);
|
|
|
|
decoded_len = EVP_DecodeBlock((unsigned char *)challenge,
|
|
|
|
(unsigned char *)challenge_64, encoded_len);
|
|
|
|
if (decoded_len < 0)
|
|
|
|
die("invalid challenge %s", challenge_64);
|
|
|
|
HMAC_Init(&hmac, (unsigned char *)pass, strlen(pass), EVP_md5());
|
|
|
|
HMAC_Update(&hmac, (unsigned char *)challenge, decoded_len);
|
|
|
|
HMAC_Final(&hmac, hash, NULL);
|
|
|
|
HMAC_CTX_cleanup(&hmac);
|
|
|
|
|
|
|
|
hex[32] = 0;
|
|
|
|
for (i = 0; i < 16; i++) {
|
|
|
|
hex[2 * i] = hexchar((hash[i] >> 4) & 0xf);
|
|
|
|
hex[2 * i + 1] = hexchar(hash[i] & 0xf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* response: "<user> <digest in hex>" */
|
|
|
|
resp_len = strlen(user) + 1 + strlen(hex) + 1;
|
|
|
|
response = xmalloc(resp_len);
|
|
|
|
sprintf(response, "%s %s", user, hex);
|
|
|
|
|
|
|
|
response_64 = xmalloc(ENCODED_SIZE(resp_len) + 1);
|
|
|
|
encoded_len = EVP_EncodeBlock((unsigned char *)response_64,
|
|
|
|
(unsigned char *)response, resp_len);
|
|
|
|
if (encoded_len < 0)
|
|
|
|
die("EVP_EncodeBlock error");
|
|
|
|
response_64[encoded_len] = '\0';
|
|
|
|
return (char *)response_64;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
static char *cram(const char *challenge_64, const char *user, const char *pass)
|
|
|
|
{
|
|
|
|
die("If you want to use CRAM-MD5 authenticate method, "
|
|
|
|
"you have to build git-imap-send with OpenSSL library.");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int auth_cram_md5(struct imap_store *ctx, struct imap_cmd *cmd, const char *prompt)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
char *response;
|
|
|
|
|
|
|
|
response = cram(prompt, server.user, server.pass);
|
|
|
|
|
|
|
|
ret = socket_write(&ctx->imap->buf.sock, response, strlen(response));
|
|
|
|
if (ret != strlen(response))
|
2012-04-30 02:28:45 +02:00
|
|
|
return error("IMAP error: sending response failed");
|
2010-02-16 07:34:07 +01:00
|
|
|
|
|
|
|
free(response);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-01-15 09:06:29 +01:00
|
|
|
static struct imap_store *imap_open_store(struct imap_server_conf *srvc)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap_store *ctx;
|
|
|
|
struct imap *imap;
|
2006-03-10 06:32:50 +01:00
|
|
|
char *arg, *rsp;
|
2009-10-19 17:42:04 +02:00
|
|
|
int s = -1, preauth;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
ctx = xcalloc(sizeof(*ctx), 1);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
ctx->imap = imap = xcalloc(sizeof(*imap), 1);
|
2009-10-19 17:42:03 +02:00
|
|
|
imap->buf.sock.fd[0] = imap->buf.sock.fd[1] = -1;
|
2006-03-10 06:32:50 +01:00
|
|
|
imap->in_progress_append = &imap->in_progress;
|
|
|
|
|
|
|
|
/* open connection to IMAP server */
|
|
|
|
|
|
|
|
if (srvc->tunnel) {
|
2009-12-30 11:53:57 +01:00
|
|
|
const char *argv[] = { srvc->tunnel, NULL };
|
Fix sparse warnings
Fix warnings from 'make check'.
- These files don't include 'builtin.h' causing sparse to complain that
cmd_* isn't declared:
builtin/clone.c:364, builtin/fetch-pack.c:797,
builtin/fmt-merge-msg.c:34, builtin/hash-object.c:78,
builtin/merge-index.c:69, builtin/merge-recursive.c:22
builtin/merge-tree.c:341, builtin/mktag.c:156, builtin/notes.c:426
builtin/notes.c:822, builtin/pack-redundant.c:596,
builtin/pack-refs.c:10, builtin/patch-id.c:60, builtin/patch-id.c:149,
builtin/remote.c:1512, builtin/remote-ext.c:240,
builtin/remote-fd.c:53, builtin/reset.c:236, builtin/send-pack.c:384,
builtin/unpack-file.c:25, builtin/var.c:75
- These files have symbols which should be marked static since they're
only file scope:
submodule.c:12, diff.c:631, replace_object.c:92, submodule.c:13,
submodule.c:14, trace.c:78, transport.c:195, transport-helper.c:79,
unpack-trees.c:19, url.c:3, url.c:18, url.c:104, url.c:117, url.c:123,
url.c:129, url.c:136, thread-utils.c:21, thread-utils.c:48
- These files redeclare symbols to be different types:
builtin/index-pack.c:210, parse-options.c:564, parse-options.c:571,
usage.c:49, usage.c:58, usage.c:63, usage.c:72
- These files use a literal integer 0 when they really should use a NULL
pointer:
daemon.c:663, fast-import.c:2942, imap-send.c:1072, notes-merge.c:362
While we're in the area, clean up some unused #includes in builtin files
(mostly exec_cmd.h).
Signed-off-by: Stephen Boyd <bebarino@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-03-22 08:51:05 +01:00
|
|
|
struct child_process tunnel = {NULL};
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2009-10-19 17:42:04 +02:00
|
|
|
imap_info("Starting tunnel '%s'... ", srvc->tunnel);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2009-10-19 17:42:04 +02:00
|
|
|
tunnel.argv = argv;
|
2009-12-30 11:53:57 +01:00
|
|
|
tunnel.use_shell = 1;
|
2009-10-19 17:42:04 +02:00
|
|
|
tunnel.in = -1;
|
|
|
|
tunnel.out = -1;
|
|
|
|
if (start_command(&tunnel))
|
|
|
|
die("cannot start proxy %s", argv[0]);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2009-10-19 17:42:04 +02:00
|
|
|
imap->buf.sock.fd[0] = tunnel.out;
|
|
|
|
imap->buf.sock.fd[1] = tunnel.in;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
imap_info("ok\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
} else {
|
2009-05-25 21:13:54 +02:00
|
|
|
#ifndef NO_IPV6
|
|
|
|
struct addrinfo hints, *ai0, *ai;
|
|
|
|
int gai;
|
|
|
|
char portstr[6];
|
|
|
|
|
2010-08-08 01:09:45 +02:00
|
|
|
snprintf(portstr, sizeof(portstr), "%d", srvc->port);
|
2009-05-25 21:13:54 +02:00
|
|
|
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
hints.ai_protocol = IPPROTO_TCP;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2009-05-25 21:13:54 +02:00
|
|
|
imap_info("Resolving %s... ", srvc->host);
|
|
|
|
gai = getaddrinfo(srvc->host, portstr, &hints, &ai);
|
|
|
|
if (gai) {
|
|
|
|
fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(gai));
|
|
|
|
goto bail;
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
2009-05-25 21:13:54 +02:00
|
|
|
imap_info("ok\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2009-05-25 21:13:54 +02:00
|
|
|
for (ai0 = ai; ai; ai = ai->ai_next) {
|
|
|
|
char addr[NI_MAXHOST];
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2009-05-25 21:13:54 +02:00
|
|
|
s = socket(ai->ai_family, ai->ai_socktype,
|
|
|
|
ai->ai_protocol);
|
|
|
|
if (s < 0)
|
|
|
|
continue;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2009-05-25 21:13:54 +02:00
|
|
|
getnameinfo(ai->ai_addr, ai->ai_addrlen, addr,
|
|
|
|
sizeof(addr), NULL, 0, NI_NUMERICHOST);
|
|
|
|
imap_info("Connecting to [%s]:%s... ", addr, portstr);
|
|
|
|
|
|
|
|
if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0) {
|
|
|
|
close(s);
|
|
|
|
s = -1;
|
|
|
|
perror("connect");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
freeaddrinfo(ai0);
|
|
|
|
#else /* NO_IPV6 */
|
|
|
|
struct hostent *he;
|
|
|
|
struct sockaddr_in addr;
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
memset(&addr, 0, sizeof(addr));
|
|
|
|
addr.sin_port = htons(srvc->port);
|
2006-03-10 06:32:50 +01:00
|
|
|
addr.sin_family = AF_INET;
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
imap_info("Resolving %s... ", srvc->host);
|
|
|
|
he = gethostbyname(srvc->host);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (!he) {
|
2008-07-09 23:29:01 +02:00
|
|
|
perror("gethostbyname");
|
2006-03-10 06:32:50 +01:00
|
|
|
goto bail;
|
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
imap_info("ok\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
addr.sin_addr.s_addr = *((int *) he->h_addr_list[0]);
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
s = socket(PF_INET, SOCK_STREAM, 0);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
imap_info("Connecting to %s:%hu... ", inet_ntoa(addr.sin_addr), ntohs(addr.sin_port));
|
|
|
|
if (connect(s, (struct sockaddr *)&addr, sizeof(addr))) {
|
|
|
|
close(s);
|
2009-05-25 21:13:54 +02:00
|
|
|
s = -1;
|
2008-07-09 23:29:01 +02:00
|
|
|
perror("connect");
|
2009-05-25 21:13:54 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (s < 0) {
|
|
|
|
fputs("Error: unable to connect to server.\n", stderr);
|
2006-03-10 06:32:50 +01:00
|
|
|
goto bail;
|
|
|
|
}
|
|
|
|
|
2009-10-19 17:42:03 +02:00
|
|
|
imap->buf.sock.fd[0] = s;
|
|
|
|
imap->buf.sock.fd[1] = dup(s);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-09 23:29:00 +02:00
|
|
|
if (srvc->use_ssl &&
|
|
|
|
ssl_socket_connect(&imap->buf.sock, 0, srvc->ssl_verify)) {
|
|
|
|
close(s);
|
|
|
|
goto bail;
|
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
imap_info("ok\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* read the greeting string */
|
2008-07-09 23:29:01 +02:00
|
|
|
if (buffer_gets(&imap->buf, &rsp)) {
|
|
|
|
fprintf(stderr, "IMAP error: no greeting response\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
goto bail;
|
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
arg = next_arg(&rsp);
|
|
|
|
if (!arg || *arg != '*' || (arg = next_arg(&rsp)) == NULL) {
|
|
|
|
fprintf(stderr, "IMAP error: invalid greeting response\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
goto bail;
|
|
|
|
}
|
|
|
|
preauth = 0;
|
2008-07-09 23:29:01 +02:00
|
|
|
if (!strcmp("PREAUTH", arg))
|
2006-03-10 06:32:50 +01:00
|
|
|
preauth = 1;
|
2008-07-09 23:29:01 +02:00
|
|
|
else if (strcmp("OK", arg) != 0) {
|
|
|
|
fprintf(stderr, "IMAP error: unknown greeting response\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
goto bail;
|
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
parse_response_code(ctx, NULL, rsp);
|
|
|
|
if (!imap->caps && imap_exec(ctx, NULL, "CAPABILITY") != RESP_OK)
|
2006-03-10 06:32:50 +01:00
|
|
|
goto bail;
|
|
|
|
|
|
|
|
if (!preauth) {
|
2008-07-09 23:29:00 +02:00
|
|
|
#ifndef NO_OPENSSL
|
|
|
|
if (!srvc->use_ssl && CAP(STARTTLS)) {
|
2011-04-07 20:24:57 +02:00
|
|
|
if (imap_exec(ctx, NULL, "STARTTLS") != RESP_OK)
|
2008-07-09 23:29:00 +02:00
|
|
|
goto bail;
|
|
|
|
if (ssl_socket_connect(&imap->buf.sock, 1,
|
|
|
|
srvc->ssl_verify))
|
|
|
|
goto bail;
|
|
|
|
/* capabilities may have changed, so get the new capabilities */
|
2011-04-07 20:24:57 +02:00
|
|
|
if (imap_exec(ctx, NULL, "CAPABILITY") != RESP_OK)
|
2008-07-09 23:29:00 +02:00
|
|
|
goto bail;
|
|
|
|
}
|
|
|
|
#endif
|
2008-07-09 23:29:01 +02:00
|
|
|
imap_info("Logging in...\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
if (!srvc->user) {
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "Skipping server %s, no user\n", srvc->host);
|
2006-03-10 06:32:50 +01:00
|
|
|
goto bail;
|
|
|
|
}
|
|
|
|
if (!srvc->pass) {
|
2011-12-10 11:40:45 +01:00
|
|
|
struct strbuf prompt = STRBUF_INIT;
|
|
|
|
strbuf_addf(&prompt, "Password (%s@%s): ", srvc->user, srvc->host);
|
|
|
|
arg = git_getpass(prompt.buf);
|
|
|
|
strbuf_release(&prompt);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (!*arg) {
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "Skipping account %s@%s, no password\n", srvc->user, srvc->host);
|
2006-03-10 06:32:50 +01:00
|
|
|
goto bail;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* getpass() returns a pointer to a static buffer. make a copy
|
|
|
|
* for long term storage.
|
|
|
|
*/
|
2008-07-09 23:29:01 +02:00
|
|
|
srvc->pass = xstrdup(arg);
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
if (CAP(NOLOGIN)) {
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "Skipping account %s@%s, server forbids LOGIN\n", srvc->user, srvc->host);
|
2006-03-10 06:32:50 +01:00
|
|
|
goto bail;
|
|
|
|
}
|
2010-02-16 07:34:07 +01:00
|
|
|
|
|
|
|
if (srvc->auth_method) {
|
|
|
|
struct imap_cmd_cb cb;
|
|
|
|
|
|
|
|
if (!strcmp(srvc->auth_method, "CRAM-MD5")) {
|
|
|
|
if (!CAP(AUTH_CRAM_MD5)) {
|
|
|
|
fprintf(stderr, "You specified"
|
|
|
|
"CRAM-MD5 as authentication method, "
|
|
|
|
"but %s doesn't support it.\n", srvc->host);
|
|
|
|
goto bail;
|
|
|
|
}
|
|
|
|
/* CRAM-MD5 */
|
|
|
|
|
|
|
|
memset(&cb, 0, sizeof(cb));
|
|
|
|
cb.cont = auth_cram_md5;
|
|
|
|
if (imap_exec(ctx, &cb, "AUTHENTICATE CRAM-MD5") != RESP_OK) {
|
|
|
|
fprintf(stderr, "IMAP error: AUTHENTICATE CRAM-MD5 failed\n");
|
|
|
|
goto bail;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Unknown authentication method:%s\n", srvc->host);
|
|
|
|
goto bail;
|
|
|
|
}
|
|
|
|
} else {
|
2010-03-27 16:00:19 +01:00
|
|
|
if (!imap->buf.sock.ssl)
|
|
|
|
imap_warn("*** IMAP Warning *** Password is being "
|
|
|
|
"sent in the clear\n");
|
2010-02-16 07:34:07 +01:00
|
|
|
if (imap_exec(ctx, NULL, "LOGIN \"%s\" \"%s\"", srvc->user, srvc->pass) != RESP_OK) {
|
|
|
|
fprintf(stderr, "IMAP error: LOGIN failed\n");
|
|
|
|
goto bail;
|
|
|
|
}
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
} /* !preauth */
|
|
|
|
|
|
|
|
ctx->prefix = "";
|
2013-01-15 09:06:29 +01:00
|
|
|
return ctx;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
bail:
|
2013-01-15 09:06:29 +01:00
|
|
|
imap_close_store(ctx);
|
2006-04-02 13:13:01 +02:00
|
|
|
return NULL;
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
|
2013-01-15 09:06:32 +01:00
|
|
|
/*
|
|
|
|
* Insert CR characters as necessary in *msg to ensure that every LF
|
|
|
|
* character in *msg is preceded by a CR.
|
|
|
|
*/
|
imap-send: change msg_data from storing (ptr, len) to storing strbuf
struct msg_data stored (ptr, len) of the data to be included in a
message, kept the character data NUL-terminated, etc., much like a
strbuf would do. So change it to use a struct strbuf. This makes
the code clearer and reduces copying a little bit.
A side effect of this change is that the memory for each message is
freed after it is used rather than leaked, though that detail is
unimportant given that imap-send is a top-level command.
By the way, there is a bunch of infrastructure in this file for
dealing with IMAP flags, although there is nothing in the code that
actually allows any flags to be set. If there is no plan to add
support for flags in the future, a bunch of code could be ripped out
and "struct msg_data" could be completely replaced with strbuf, but
that would be a separate topic.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-11-25 12:08:39 +01:00
|
|
|
static void lf_to_crlf(struct strbuf *msg)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2010-02-12 12:36:12 +01:00
|
|
|
char *new;
|
2013-01-15 09:06:32 +01:00
|
|
|
size_t i, j;
|
|
|
|
char lastc;
|
|
|
|
|
|
|
|
/* First pass: tally, in j, the size of the new string: */
|
|
|
|
for (i = j = 0, lastc = '\0'; i < msg->len; i++) {
|
|
|
|
if (msg->buf[i] == '\n' && lastc != '\r')
|
|
|
|
j++; /* a CR will need to be added here */
|
|
|
|
lastc = msg->buf[i];
|
|
|
|
j++;
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
2010-02-12 12:36:12 +01:00
|
|
|
|
2013-01-15 09:06:32 +01:00
|
|
|
new = xmalloc(j + 1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Second pass: write the new string. Note that this loop is
|
|
|
|
* otherwise identical to the first pass.
|
|
|
|
*/
|
|
|
|
for (i = j = 0, lastc = '\0'; i < msg->len; i++) {
|
|
|
|
if (msg->buf[i] == '\n' && lastc != '\r')
|
2010-02-12 12:36:12 +01:00
|
|
|
new[j++] = '\r';
|
2013-01-15 09:06:32 +01:00
|
|
|
lastc = new[j++] = msg->buf[i];
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
2013-01-15 09:06:32 +01:00
|
|
|
strbuf_attach(msg, new, j, j + 1);
|
2010-02-12 12:36:12 +01:00
|
|
|
}
|
2006-03-10 06:32:50 +01:00
|
|
|
|
imap-send: change msg_data from storing (ptr, len) to storing strbuf
struct msg_data stored (ptr, len) of the data to be included in a
message, kept the character data NUL-terminated, etc., much like a
strbuf would do. So change it to use a struct strbuf. This makes
the code clearer and reduces copying a little bit.
A side effect of this change is that the memory for each message is
freed after it is used rather than leaked, though that detail is
unimportant given that imap-send is a top-level command.
By the way, there is a bunch of infrastructure in this file for
dealing with IMAP flags, although there is nothing in the code that
actually allows any flags to be set. If there is no plan to add
support for flags in the future, a bunch of code could be ripped out
and "struct msg_data" could be completely replaced with strbuf, but
that would be a separate topic.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-11-25 12:08:39 +01:00
|
|
|
/*
|
|
|
|
* Store msg to IMAP. Also detach and free the data from msg->data,
|
|
|
|
* leaving msg->data empty.
|
|
|
|
*/
|
2013-01-15 09:06:29 +01:00
|
|
|
static int imap_store_msg(struct imap_store *ctx, struct strbuf *msg)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2008-07-10 01:37:38 +02:00
|
|
|
struct imap *imap = ctx->imap;
|
2006-03-10 06:32:50 +01:00
|
|
|
struct imap_cmd_cb cb;
|
|
|
|
const char *prefix, *box;
|
2013-01-15 09:06:19 +01:00
|
|
|
int ret;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2013-01-15 09:06:20 +01:00
|
|
|
lf_to_crlf(msg);
|
2008-07-09 23:29:01 +02:00
|
|
|
memset(&cb, 0, sizeof(cb));
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2013-01-15 09:06:20 +01:00
|
|
|
cb.dlen = msg->len;
|
|
|
|
cb.data = strbuf_detach(msg, NULL);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2013-01-15 09:06:31 +01:00
|
|
|
box = ctx->name;
|
imap-send: remove useless uid code
The imap-send code is based on code from isync, a program
for syncing imap mailboxes. Because of this, it has
inherited some code that makes sense for isync, but not for
imap-send.
In particular, when storing a message, it does one of:
- if the server supports it, note the server-assigned
unique identifier (UID) given to each message
- otherwise, assigned a random UID and store it in the
message header as X-TUID
Presumably this is used in isync to be able to synchronize
mailstores multiple times without duplication. But for
imap-send, the values are useless; we never do anything
with them and simply forget them at the end of the program.
This patch removes the useless code. Not only is it nice for
maintainability to get rid of dead code, but the removed
code relied on the existence of /dev/urandom, which made it
a portability problem for non-Unix platforms.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2009-10-19 17:42:02 +02:00
|
|
|
prefix = !strcmp(box, "INBOX") ? "" : ctx->prefix;
|
|
|
|
cb.create = 0;
|
2013-01-15 09:06:19 +01:00
|
|
|
ret = imap_exec_m(ctx, &cb, "APPEND \"%s%s\" ", prefix, box);
|
2006-03-10 06:32:50 +01:00
|
|
|
imap->caps = imap->rcaps;
|
|
|
|
if (ret != DRV_OK)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return DRV_OK;
|
|
|
|
}
|
|
|
|
|
imap-send: change msg_data from storing (ptr, len) to storing strbuf
struct msg_data stored (ptr, len) of the data to be included in a
message, kept the character data NUL-terminated, etc., much like a
strbuf would do. So change it to use a struct strbuf. This makes
the code clearer and reduces copying a little bit.
A side effect of this change is that the memory for each message is
freed after it is used rather than leaked, though that detail is
unimportant given that imap-send is a top-level command.
By the way, there is a bunch of infrastructure in this file for
dealing with IMAP flags, although there is nothing in the code that
actually allows any flags to be set. If there is no plan to add
support for flags in the future, a bunch of code could be ripped out
and "struct msg_data" could be completely replaced with strbuf, but
that would be a separate topic.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-11-25 12:08:39 +01:00
|
|
|
static void wrap_in_html(struct strbuf *msg)
|
2009-02-12 15:58:12 +01:00
|
|
|
{
|
|
|
|
struct strbuf buf = STRBUF_INIT;
|
|
|
|
static char *content_type = "Content-Type: text/html;\n";
|
|
|
|
static char *pre_open = "<pre>\n";
|
|
|
|
static char *pre_close = "</pre>\n";
|
2012-11-25 12:08:41 +01:00
|
|
|
const char *body = strstr(msg->buf, "\n\n");
|
|
|
|
|
|
|
|
if (!body)
|
|
|
|
return; /* Headers but no body; no wrapping needed */
|
|
|
|
|
|
|
|
body += 2;
|
|
|
|
|
|
|
|
strbuf_add(&buf, msg->buf, body - msg->buf - 1);
|
|
|
|
strbuf_addstr(&buf, content_type);
|
|
|
|
strbuf_addch(&buf, '\n');
|
|
|
|
strbuf_addstr(&buf, pre_open);
|
|
|
|
strbuf_addstr_xml_quoted(&buf, body);
|
2009-02-12 15:58:12 +01:00
|
|
|
strbuf_addstr(&buf, pre_close);
|
2012-11-25 12:08:41 +01:00
|
|
|
|
imap-send: change msg_data from storing (ptr, len) to storing strbuf
struct msg_data stored (ptr, len) of the data to be included in a
message, kept the character data NUL-terminated, etc., much like a
strbuf would do. So change it to use a struct strbuf. This makes
the code clearer and reduces copying a little bit.
A side effect of this change is that the memory for each message is
freed after it is used rather than leaked, though that detail is
unimportant given that imap-send is a top-level command.
By the way, there is a bunch of infrastructure in this file for
dealing with IMAP flags, although there is nothing in the code that
actually allows any flags to be set. If there is no plan to add
support for flags in the future, a bunch of code could be ripped out
and "struct msg_data" could be completely replaced with strbuf, but
that would be a separate topic.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-11-25 12:08:39 +01:00
|
|
|
strbuf_release(msg);
|
|
|
|
*msg = buf;
|
2009-02-12 15:58:12 +01:00
|
|
|
}
|
|
|
|
|
2006-03-10 06:32:50 +01:00
|
|
|
#define CHUNKSIZE 0x1000
|
|
|
|
|
2012-11-25 12:08:37 +01:00
|
|
|
static int read_message(FILE *f, struct strbuf *all_msgs)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2007-09-10 12:35:08 +02:00
|
|
|
do {
|
2012-11-25 12:08:37 +01:00
|
|
|
if (strbuf_fread(all_msgs, CHUNKSIZE, f) <= 0)
|
2006-03-10 06:32:50 +01:00
|
|
|
break;
|
2007-09-10 12:35:08 +02:00
|
|
|
} while (!feof(f));
|
|
|
|
|
2012-11-25 12:08:38 +01:00
|
|
|
return ferror(f) ? -1 : 0;
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
|
2012-11-25 12:08:37 +01:00
|
|
|
static int count_messages(struct strbuf *all_msgs)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
|
|
|
int count = 0;
|
2012-11-25 12:08:37 +01:00
|
|
|
char *p = all_msgs->buf;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
while (1) {
|
2007-02-20 10:55:07 +01:00
|
|
|
if (!prefixcmp(p, "From ")) {
|
2010-03-22 19:07:52 +01:00
|
|
|
p = strstr(p+5, "\nFrom: ");
|
|
|
|
if (!p) break;
|
|
|
|
p = strstr(p+7, "\nDate: ");
|
|
|
|
if (!p) break;
|
|
|
|
p = strstr(p+7, "\nSubject: ");
|
|
|
|
if (!p) break;
|
|
|
|
p += 10;
|
2006-03-10 06:32:50 +01:00
|
|
|
count++;
|
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
p = strstr(p+5, "\nFrom ");
|
2006-03-10 06:32:50 +01:00
|
|
|
if (!p)
|
|
|
|
break;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
imap-send: change msg_data from storing (ptr, len) to storing strbuf
struct msg_data stored (ptr, len) of the data to be included in a
message, kept the character data NUL-terminated, etc., much like a
strbuf would do. So change it to use a struct strbuf. This makes
the code clearer and reduces copying a little bit.
A side effect of this change is that the memory for each message is
freed after it is used rather than leaked, though that detail is
unimportant given that imap-send is a top-level command.
By the way, there is a bunch of infrastructure in this file for
dealing with IMAP flags, although there is nothing in the code that
actually allows any flags to be set. If there is no plan to add
support for flags in the future, a bunch of code could be ripped out
and "struct msg_data" could be completely replaced with strbuf, but
that would be a separate topic.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-11-25 12:08:39 +01:00
|
|
|
/*
|
|
|
|
* Copy the next message from all_msgs, starting at offset *ofs, to
|
|
|
|
* msg. Update *ofs to the start of the following message. Return
|
|
|
|
* true iff a message was successfully copied.
|
|
|
|
*/
|
|
|
|
static int split_msg(struct strbuf *all_msgs, struct strbuf *msg, int *ofs)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
|
|
|
char *p, *data;
|
imap-send: change msg_data from storing (ptr, len) to storing strbuf
struct msg_data stored (ptr, len) of the data to be included in a
message, kept the character data NUL-terminated, etc., much like a
strbuf would do. So change it to use a struct strbuf. This makes
the code clearer and reduces copying a little bit.
A side effect of this change is that the memory for each message is
freed after it is used rather than leaked, though that detail is
unimportant given that imap-send is a top-level command.
By the way, there is a bunch of infrastructure in this file for
dealing with IMAP flags, although there is nothing in the code that
actually allows any flags to be set. If there is no plan to add
support for flags in the future, a bunch of code could be ripped out
and "struct msg_data" could be completely replaced with strbuf, but
that would be a separate topic.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-11-25 12:08:39 +01:00
|
|
|
size_t len;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
if (*ofs >= all_msgs->len)
|
|
|
|
return 0;
|
|
|
|
|
2012-11-25 12:08:37 +01:00
|
|
|
data = &all_msgs->buf[*ofs];
|
imap-send: change msg_data from storing (ptr, len) to storing strbuf
struct msg_data stored (ptr, len) of the data to be included in a
message, kept the character data NUL-terminated, etc., much like a
strbuf would do. So change it to use a struct strbuf. This makes
the code clearer and reduces copying a little bit.
A side effect of this change is that the memory for each message is
freed after it is used rather than leaked, though that detail is
unimportant given that imap-send is a top-level command.
By the way, there is a bunch of infrastructure in this file for
dealing with IMAP flags, although there is nothing in the code that
actually allows any flags to be set. If there is no plan to add
support for flags in the future, a bunch of code could be ripped out
and "struct msg_data" could be completely replaced with strbuf, but
that would be a separate topic.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-11-25 12:08:39 +01:00
|
|
|
len = all_msgs->len - *ofs;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
imap-send: change msg_data from storing (ptr, len) to storing strbuf
struct msg_data stored (ptr, len) of the data to be included in a
message, kept the character data NUL-terminated, etc., much like a
strbuf would do. So change it to use a struct strbuf. This makes
the code clearer and reduces copying a little bit.
A side effect of this change is that the memory for each message is
freed after it is used rather than leaked, though that detail is
unimportant given that imap-send is a top-level command.
By the way, there is a bunch of infrastructure in this file for
dealing with IMAP flags, although there is nothing in the code that
actually allows any flags to be set. If there is no plan to add
support for flags in the future, a bunch of code could be ripped out
and "struct msg_data" could be completely replaced with strbuf, but
that would be a separate topic.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-11-25 12:08:39 +01:00
|
|
|
if (len < 5 || prefixcmp(data, "From "))
|
2006-03-10 06:32:50 +01:00
|
|
|
return 0;
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
p = strchr(data, '\n');
|
2006-10-13 00:19:35 +02:00
|
|
|
if (p) {
|
imap-send: change msg_data from storing (ptr, len) to storing strbuf
struct msg_data stored (ptr, len) of the data to be included in a
message, kept the character data NUL-terminated, etc., much like a
strbuf would do. So change it to use a struct strbuf. This makes
the code clearer and reduces copying a little bit.
A side effect of this change is that the memory for each message is
freed after it is used rather than leaked, though that detail is
unimportant given that imap-send is a top-level command.
By the way, there is a bunch of infrastructure in this file for
dealing with IMAP flags, although there is nothing in the code that
actually allows any flags to be set. If there is no plan to add
support for flags in the future, a bunch of code could be ripped out
and "struct msg_data" could be completely replaced with strbuf, but
that would be a separate topic.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-11-25 12:08:39 +01:00
|
|
|
p++;
|
|
|
|
len -= p - data;
|
|
|
|
*ofs += p - data;
|
2006-10-13 00:19:35 +02:00
|
|
|
data = p;
|
|
|
|
}
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
p = strstr(data, "\nFrom ");
|
2006-03-10 06:32:50 +01:00
|
|
|
if (p)
|
imap-send: change msg_data from storing (ptr, len) to storing strbuf
struct msg_data stored (ptr, len) of the data to be included in a
message, kept the character data NUL-terminated, etc., much like a
strbuf would do. So change it to use a struct strbuf. This makes
the code clearer and reduces copying a little bit.
A side effect of this change is that the memory for each message is
freed after it is used rather than leaked, though that detail is
unimportant given that imap-send is a top-level command.
By the way, there is a bunch of infrastructure in this file for
dealing with IMAP flags, although there is nothing in the code that
actually allows any flags to be set. If there is no plan to add
support for flags in the future, a bunch of code could be ripped out
and "struct msg_data" could be completely replaced with strbuf, but
that would be a separate topic.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-11-25 12:08:39 +01:00
|
|
|
len = &p[1] - data;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
imap-send: change msg_data from storing (ptr, len) to storing strbuf
struct msg_data stored (ptr, len) of the data to be included in a
message, kept the character data NUL-terminated, etc., much like a
strbuf would do. So change it to use a struct strbuf. This makes
the code clearer and reduces copying a little bit.
A side effect of this change is that the memory for each message is
freed after it is used rather than leaked, though that detail is
unimportant given that imap-send is a top-level command.
By the way, there is a bunch of infrastructure in this file for
dealing with IMAP flags, although there is nothing in the code that
actually allows any flags to be set. If there is no plan to add
support for flags in the future, a bunch of code could be ripped out
and "struct msg_data" could be completely replaced with strbuf, but
that would be a separate topic.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-11-25 12:08:39 +01:00
|
|
|
strbuf_add(msg, data, len);
|
|
|
|
*ofs += len;
|
2007-06-07 09:04:01 +02:00
|
|
|
return 1;
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *imap_folder;
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
static int git_imap_config(const char *key, const char *val, void *cb)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
|
|
|
char imap_key[] = "imap.";
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
if (strncmp(key, imap_key, sizeof imap_key - 1))
|
2006-03-10 06:32:50 +01:00
|
|
|
return 0;
|
2008-02-11 21:04:00 +01:00
|
|
|
|
2006-03-10 06:32:50 +01:00
|
|
|
key += sizeof imap_key - 1;
|
|
|
|
|
2010-02-06 20:26:35 +01:00
|
|
|
/* check booleans first, and barf on others */
|
|
|
|
if (!strcmp("sslverify", key))
|
|
|
|
server.ssl_verify = git_config_bool(key, val);
|
|
|
|
else if (!strcmp("preformattedhtml", key))
|
|
|
|
server.use_html = git_config_bool(key, val);
|
|
|
|
else if (!val)
|
|
|
|
return config_error_nonbool(key);
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
if (!strcmp("folder", key)) {
|
|
|
|
imap_folder = xstrdup(val);
|
|
|
|
} else if (!strcmp("host", key)) {
|
2008-07-09 23:29:00 +02:00
|
|
|
if (!prefixcmp(val, "imap:"))
|
|
|
|
val += 5;
|
|
|
|
else if (!prefixcmp(val, "imaps:")) {
|
|
|
|
val += 6;
|
|
|
|
server.use_ssl = 1;
|
2006-03-10 06:32:50 +01:00
|
|
|
}
|
2007-02-20 10:55:07 +01:00
|
|
|
if (!prefixcmp(val, "//"))
|
2006-03-10 06:32:50 +01:00
|
|
|
val += 2;
|
2008-07-09 23:29:01 +02:00
|
|
|
server.host = xstrdup(val);
|
2008-07-10 01:37:38 +02:00
|
|
|
} else if (!strcmp("user", key))
|
2008-07-09 23:29:01 +02:00
|
|
|
server.user = xstrdup(val);
|
|
|
|
else if (!strcmp("pass", key))
|
|
|
|
server.pass = xstrdup(val);
|
|
|
|
else if (!strcmp("port", key))
|
|
|
|
server.port = git_config_int(key, val);
|
|
|
|
else if (!strcmp("tunnel", key))
|
|
|
|
server.tunnel = xstrdup(val);
|
2010-02-16 07:34:07 +01:00
|
|
|
else if (!strcmp("authmethod", key))
|
|
|
|
server.auth_method = xstrdup(val);
|
|
|
|
|
2006-03-10 06:32:50 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
int main(int argc, char **argv)
|
2006-03-10 06:32:50 +01:00
|
|
|
{
|
2012-11-25 12:08:37 +01:00
|
|
|
struct strbuf all_msgs = STRBUF_INIT;
|
2013-01-15 09:06:20 +01:00
|
|
|
struct strbuf msg = STRBUF_INIT;
|
2013-01-15 09:06:29 +01:00
|
|
|
struct imap_store *ctx = NULL;
|
2006-03-10 06:32:50 +01:00
|
|
|
int ofs = 0;
|
|
|
|
int r;
|
|
|
|
int total, n = 0;
|
2008-07-09 23:28:59 +02:00
|
|
|
int nongit_ok;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2009-01-18 13:00:12 +01:00
|
|
|
git_extract_argv0_path(argv[0]);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
i18n: add infrastructure for translating Git with gettext
Change the skeleton implementation of i18n in Git to one that can show
localized strings to users for our C, Shell and Perl programs using
either GNU libintl or the Solaris gettext implementation.
This new internationalization support is enabled by default. If
gettext isn't available, or if Git is compiled with
NO_GETTEXT=YesPlease, Git falls back on its current behavior of
showing interface messages in English. When using the autoconf script
we'll auto-detect if the gettext libraries are installed and act
appropriately.
This change is somewhat large because as well as adding a C, Shell and
Perl i18n interface we're adding a lot of tests for them, and for
those tests to work we need a skeleton PO file to actually test
translations. A minimal Icelandic translation is included for this
purpose. Icelandic includes multi-byte characters which makes it easy
to test various edge cases, and it's a language I happen to
understand.
The rest of the commit message goes into detail about various
sub-parts of this commit.
= Installation
Gettext .mo files will be installed and looked for in the standard
$(prefix)/share/locale path. GIT_TEXTDOMAINDIR can also be set to
override that, but that's only intended to be used to test Git itself.
= Perl
Perl code that's to be localized should use the new Git::I18n
module. It imports a __ function into the caller's package by default.
Instead of using the high level Locale::TextDomain interface I've
opted to use the low-level (equivalent to the C interface)
Locale::Messages module, which Locale::TextDomain itself uses.
Locale::TextDomain does a lot of redundant work we don't need, and
some of it would potentially introduce bugs. It tries to set the
$TEXTDOMAIN based on package of the caller, and has its own
hardcoded paths where it'll search for messages.
I found it easier just to completely avoid it rather than try to
circumvent its behavior. In any case, this is an issue wholly
internal Git::I18N. Its guts can be changed later if that's deemed
necessary.
See <AANLkTilYD_NyIZMyj9dHtVk-ylVBfvyxpCC7982LWnVd@mail.gmail.com> for
a further elaboration on this topic.
= Shell
Shell code that's to be localized should use the git-sh-i18n
library. It's basically just a wrapper for the system's gettext.sh.
If gettext.sh isn't available we'll fall back on gettext(1) if it's
available. The latter is available without the former on Solaris,
which has its own non-GNU gettext implementation. We also need to
emulate eval_gettext() there.
If neither are present we'll use a dumb printf(1) fall-through
wrapper.
= About libcharset.h and langinfo.h
We use libcharset to query the character set of the current locale if
it's available. I.e. we'll use it instead of nl_langinfo if
HAVE_LIBCHARSET_H is set.
The GNU gettext manual recommends using langinfo.h's
nl_langinfo(CODESET) to acquire the current character set, but on
systems that have libcharset.h's locale_charset() using the latter is
either saner, or the only option on those systems.
GNU and Solaris have a nl_langinfo(CODESET), FreeBSD can use either,
but MinGW and some others need to use libcharset.h's locale_charset()
instead.
=Credits
This patch is based on work by Jeff Epler <jepler@unpythonic.net> who
did the initial Makefile / C work, and a lot of comments from the Git
mailing list, including Jonathan Nieder, Jakub Narebski, Johannes
Sixt, Erik Faye-Lund, Peter Krefting, Junio C Hamano, Thomas Rast and
others.
[jc: squashed a small Makefile fix from Ramsay]
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-11-18 00:14:42 +01:00
|
|
|
git_setup_gettext();
|
|
|
|
|
2009-11-09 16:04:51 +01:00
|
|
|
if (argc != 1)
|
|
|
|
usage(imap_send_usage);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-09 23:28:59 +02:00
|
|
|
setup_git_directory_gently(&nongit_ok);
|
2008-05-14 19:46:53 +02:00
|
|
|
git_config(git_imap_config, NULL);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-09 23:29:00 +02:00
|
|
|
if (!server.port)
|
|
|
|
server.port = server.use_ssl ? 993 : 143;
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
if (!imap_folder) {
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "no imap store specified\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2008-03-26 19:05:17 +01:00
|
|
|
if (!server.host) {
|
2008-04-22 12:41:47 +02:00
|
|
|
if (!server.tunnel) {
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "no imap host specified\n");
|
2008-04-22 12:41:47 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
server.host = "tunnel";
|
2008-03-26 19:05:17 +01:00
|
|
|
}
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
/* read the messages */
|
2012-11-25 12:08:38 +01:00
|
|
|
if (read_message(stdin, &all_msgs)) {
|
|
|
|
fprintf(stderr, "error reading input\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (all_msgs.len == 0) {
|
2008-07-10 01:37:38 +02:00
|
|
|
fprintf(stderr, "nothing to send\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
total = count_messages(&all_msgs);
|
2006-04-05 16:22:52 +02:00
|
|
|
if (!total) {
|
2008-07-10 01:37:38 +02:00
|
|
|
fprintf(stderr, "no messages to send\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* write it to the imap server */
|
2008-07-09 23:29:01 +02:00
|
|
|
ctx = imap_open_store(&server);
|
2006-03-10 06:32:50 +01:00
|
|
|
if (!ctx) {
|
2008-07-10 01:37:38 +02:00
|
|
|
fprintf(stderr, "failed to open store\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-07-10 01:37:38 +02:00
|
|
|
fprintf(stderr, "sending %d message%s\n", total, (total != 1) ? "s" : "");
|
2013-01-15 09:06:31 +01:00
|
|
|
ctx->name = imap_folder;
|
2006-03-10 06:32:50 +01:00
|
|
|
while (1) {
|
|
|
|
unsigned percent = n * 100 / total;
|
imap-send: change msg_data from storing (ptr, len) to storing strbuf
struct msg_data stored (ptr, len) of the data to be included in a
message, kept the character data NUL-terminated, etc., much like a
strbuf would do. So change it to use a struct strbuf. This makes
the code clearer and reduces copying a little bit.
A side effect of this change is that the memory for each message is
freed after it is used rather than leaked, though that detail is
unimportant given that imap-send is a top-level command.
By the way, there is a bunch of infrastructure in this file for
dealing with IMAP flags, although there is nothing in the code that
actually allows any flags to be set. If there is no plan to add
support for flags in the future, a bunch of code could be ripped out
and "struct msg_data" could be completely replaced with strbuf, but
that would be a separate topic.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-11-25 12:08:39 +01:00
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "%4u%% (%d/%d) done\r", percent, n, total);
|
2013-01-15 09:06:20 +01:00
|
|
|
if (!split_msg(&all_msgs, &msg, &ofs))
|
2006-03-10 06:32:50 +01:00
|
|
|
break;
|
2009-02-12 15:58:12 +01:00
|
|
|
if (server.use_html)
|
2013-01-15 09:06:20 +01:00
|
|
|
wrap_in_html(&msg);
|
imap-send: remove useless uid code
The imap-send code is based on code from isync, a program
for syncing imap mailboxes. Because of this, it has
inherited some code that makes sense for isync, but not for
imap-send.
In particular, when storing a message, it does one of:
- if the server supports it, note the server-assigned
unique identifier (UID) given to each message
- otherwise, assigned a random UID and store it in the
message header as X-TUID
Presumably this is used in isync to be able to synchronize
mailstores multiple times without duplication. But for
imap-send, the values are useless; we never do anything
with them and simply forget them at the end of the program.
This patch removes the useless code. Not only is it nice for
maintainability to get rid of dead code, but the removed
code relied on the existence of /dev/urandom, which made it
a portability problem for non-Unix platforms.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2009-10-19 17:42:02 +02:00
|
|
|
r = imap_store_msg(ctx, &msg);
|
2008-07-10 01:37:38 +02:00
|
|
|
if (r != DRV_OK)
|
2006-03-10 06:32:50 +01:00
|
|
|
break;
|
|
|
|
n++;
|
|
|
|
}
|
2008-07-09 23:29:01 +02:00
|
|
|
fprintf(stderr, "\n");
|
2006-03-10 06:32:50 +01:00
|
|
|
|
2008-07-09 23:29:01 +02:00
|
|
|
imap_close_store(ctx);
|
2006-03-10 06:32:50 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|