2012-05-26 20:45:41 +02:00
|
|
|
/* notmuch - Not much of an email program, (just index and search)
|
|
|
|
*
|
|
|
|
* Copyright © 2012 Jameson Rollins
|
|
|
|
*
|
|
|
|
* 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 3 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
|
2016-06-02 18:26:14 +02:00
|
|
|
* along with this program. If not, see https://www.gnu.org/licenses/ .
|
2012-05-26 20:45:41 +02:00
|
|
|
*
|
|
|
|
* Authors: Jameson Rollins <jrollins@finestructure.net>
|
|
|
|
*/
|
|
|
|
|
2017-10-17 21:09:55 +02:00
|
|
|
#include "crypto.h"
|
|
|
|
#include <strings.h>
|
|
|
|
#define unused(x) x __attribute__ ((unused))
|
|
|
|
|
|
|
|
#define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
|
|
|
|
|
2017-07-16 01:01:45 +02:00
|
|
|
#if (GMIME_MAJOR_VERSION < 3)
|
2017-10-17 21:09:56 +02:00
|
|
|
/* Create or pass on a GPG context (GMime 2.6) */
|
|
|
|
static notmuch_status_t
|
|
|
|
get_gpg_context (_notmuch_crypto_t *crypto, GMimeCryptoContext **ctx)
|
2013-03-30 14:53:15 +01:00
|
|
|
{
|
2017-10-17 21:09:56 +02:00
|
|
|
if (ctx == NULL || crypto == NULL)
|
|
|
|
return NOTMUCH_STATUS_NULL_POINTER;
|
2013-03-30 14:53:15 +01:00
|
|
|
|
2017-10-17 21:09:56 +02:00
|
|
|
if (crypto->gpgctx) {
|
|
|
|
*ctx = crypto->gpgctx;
|
|
|
|
return NOTMUCH_STATUS_SUCCESS;
|
|
|
|
}
|
2015-12-14 14:38:50 +01:00
|
|
|
|
2013-03-30 14:53:15 +01:00
|
|
|
/* TODO: GMimePasswordRequestFunc */
|
2017-10-17 21:09:56 +02:00
|
|
|
crypto->gpgctx = g_mime_gpg_context_new (NULL, crypto->gpgpath ? crypto->gpgpath : "gpg");
|
|
|
|
if (! crypto->gpgctx) {
|
|
|
|
return NOTMUCH_STATUS_FAILED_CRYPTO_CONTEXT_CREATION;
|
2015-12-14 14:38:50 +01:00
|
|
|
}
|
2013-03-30 14:53:15 +01:00
|
|
|
|
2017-10-17 21:09:56 +02:00
|
|
|
g_mime_gpg_context_set_use_agent ((GMimeGpgContext *) crypto->gpgctx, true);
|
|
|
|
g_mime_gpg_context_set_always_trust ((GMimeGpgContext *) crypto->gpgctx, false);
|
2013-03-30 14:53:15 +01:00
|
|
|
|
2017-10-17 21:09:56 +02:00
|
|
|
*ctx = crypto->gpgctx;
|
|
|
|
return NOTMUCH_STATUS_SUCCESS;
|
2013-03-30 14:53:15 +01:00
|
|
|
}
|
|
|
|
|
2017-10-17 21:09:56 +02:00
|
|
|
/* Create or pass on a PKCS7 context (GMime 2.6) */
|
|
|
|
static notmuch_status_t
|
|
|
|
get_pkcs7_context (_notmuch_crypto_t *crypto, GMimeCryptoContext **ctx)
|
2015-08-16 19:41:14 +02:00
|
|
|
{
|
2017-10-17 21:09:56 +02:00
|
|
|
if (ctx == NULL || crypto == NULL)
|
|
|
|
return NOTMUCH_STATUS_NULL_POINTER;
|
2015-08-16 19:41:14 +02:00
|
|
|
|
2017-10-17 21:09:56 +02:00
|
|
|
if (crypto->pkcs7ctx) {
|
|
|
|
*ctx = crypto->pkcs7ctx;
|
|
|
|
return NOTMUCH_STATUS_SUCCESS;
|
|
|
|
}
|
2015-08-16 19:41:14 +02:00
|
|
|
|
|
|
|
/* TODO: GMimePasswordRequestFunc */
|
2017-10-17 21:09:56 +02:00
|
|
|
crypto->pkcs7ctx = g_mime_pkcs7_context_new (NULL);
|
|
|
|
if (! crypto->pkcs7ctx) {
|
|
|
|
return NOTMUCH_STATUS_FAILED_CRYPTO_CONTEXT_CREATION;
|
2015-08-16 19:41:14 +02:00
|
|
|
}
|
|
|
|
|
2017-10-17 21:09:56 +02:00
|
|
|
g_mime_pkcs7_context_set_always_trust ((GMimePkcs7Context *) crypto->pkcs7ctx,
|
2017-10-07 10:44:04 +02:00
|
|
|
false);
|
2015-08-16 19:41:14 +02:00
|
|
|
|
2017-10-17 21:09:56 +02:00
|
|
|
*ctx = crypto->pkcs7ctx;
|
|
|
|
return NOTMUCH_STATUS_SUCCESS;
|
2015-08-16 19:41:14 +02:00
|
|
|
}
|
2015-12-14 14:38:51 +01:00
|
|
|
static const struct {
|
|
|
|
const char *protocol;
|
2017-10-17 21:09:56 +02:00
|
|
|
notmuch_status_t (*get_context) (_notmuch_crypto_t *crypto, GMimeCryptoContext **ctx);
|
2015-12-14 14:38:51 +01:00
|
|
|
} protocols[] = {
|
|
|
|
{
|
|
|
|
.protocol = "application/pgp-signature",
|
2017-10-17 21:09:56 +02:00
|
|
|
.get_context = get_gpg_context,
|
2015-12-14 14:38:51 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.protocol = "application/pgp-encrypted",
|
2017-10-17 21:09:56 +02:00
|
|
|
.get_context = get_gpg_context,
|
2015-12-14 14:38:51 +01:00
|
|
|
},
|
2015-08-16 19:41:14 +02:00
|
|
|
{
|
|
|
|
.protocol = "application/pkcs7-signature",
|
2017-10-17 21:09:56 +02:00
|
|
|
.get_context = get_pkcs7_context,
|
2015-08-16 19:41:14 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.protocol = "application/x-pkcs7-signature",
|
2017-10-17 21:09:56 +02:00
|
|
|
.get_context = get_pkcs7_context,
|
2015-08-16 19:41:14 +02:00
|
|
|
},
|
2015-12-14 14:38:51 +01:00
|
|
|
};
|
|
|
|
|
2012-05-26 20:45:41 +02:00
|
|
|
/* for the specified protocol return the context pointer (initializing
|
|
|
|
* if needed) */
|
2017-10-17 21:09:56 +02:00
|
|
|
notmuch_status_t
|
|
|
|
_notmuch_crypto_get_gmime_ctx_for_protocol (_notmuch_crypto_t *crypto,
|
|
|
|
const char *protocol,
|
|
|
|
GMimeCryptoContext **ctx)
|
2012-05-26 20:45:41 +02:00
|
|
|
{
|
2017-10-17 21:09:56 +02:00
|
|
|
if (! protocol)
|
|
|
|
return NOTMUCH_STATUS_MALFORMED_CRYPTO_PROTOCOL;
|
2013-07-19 17:36:12 +02:00
|
|
|
|
2012-05-26 20:45:41 +02:00
|
|
|
/* As per RFC 1847 section 2.1: "the [protocol] value token is
|
|
|
|
* comprised of the type and sub-type tokens of the Content-Type".
|
|
|
|
* As per RFC 1521 section 2: "Content-Type values, subtypes, and
|
|
|
|
* parameter names as defined in this document are
|
|
|
|
* case-insensitive." Thus, we use strcasecmp for the protocol.
|
|
|
|
*/
|
2017-10-17 21:09:56 +02:00
|
|
|
for (size_t i = 0; i < ARRAY_SIZE (protocols); i++) {
|
2015-12-14 14:38:51 +01:00
|
|
|
if (strcasecmp (protocol, protocols[i].protocol) == 0)
|
2017-10-17 21:09:56 +02:00
|
|
|
return protocols[i].get_context (crypto, ctx);
|
2012-05-26 20:45:41 +02:00
|
|
|
}
|
|
|
|
|
2017-10-17 21:09:56 +02:00
|
|
|
return NOTMUCH_STATUS_UNKNOWN_CRYPTO_PROTOCOL;
|
2012-05-26 20:45:41 +02:00
|
|
|
}
|
|
|
|
|
2017-10-10 07:49:04 +02:00
|
|
|
void
|
2017-10-10 07:49:02 +02:00
|
|
|
_notmuch_crypto_cleanup (_notmuch_crypto_t *crypto)
|
2012-05-26 20:45:41 +02:00
|
|
|
{
|
|
|
|
if (crypto->gpgctx) {
|
|
|
|
g_object_unref (crypto->gpgctx);
|
|
|
|
crypto->gpgctx = NULL;
|
|
|
|
}
|
|
|
|
|
2015-08-16 19:41:14 +02:00
|
|
|
if (crypto->pkcs7ctx) {
|
|
|
|
g_object_unref (crypto->pkcs7ctx);
|
|
|
|
crypto->pkcs7ctx = NULL;
|
|
|
|
}
|
2012-05-26 20:45:41 +02:00
|
|
|
}
|
2017-07-16 01:01:45 +02:00
|
|
|
#else
|
2017-10-10 07:49:04 +02:00
|
|
|
void _notmuch_crypto_cleanup (unused(_notmuch_crypto_t *crypto))
|
2017-07-16 01:01:45 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
2017-11-30 09:59:27 +01:00
|
|
|
|
|
|
|
GMimeObject *
|
2017-12-08 07:23:58 +01:00
|
|
|
_notmuch_crypto_decrypt (bool *attempted,
|
|
|
|
notmuch_decryption_policy_t decrypt,
|
2017-12-08 07:23:53 +01:00
|
|
|
notmuch_message_t *message,
|
2017-11-30 09:59:29 +01:00
|
|
|
g_mime_3_unused(GMimeCryptoContext* crypto_ctx),
|
2017-11-30 09:59:27 +01:00
|
|
|
GMimeMultipartEncrypted *part,
|
|
|
|
GMimeDecryptResult **decrypt_result,
|
|
|
|
GError **err)
|
|
|
|
{
|
|
|
|
GMimeObject *ret = NULL;
|
2017-12-08 07:23:53 +01:00
|
|
|
if (decrypt == NOTMUCH_DECRYPT_FALSE)
|
|
|
|
return NULL;
|
2017-11-30 09:59:27 +01:00
|
|
|
|
2017-11-30 09:59:29 +01:00
|
|
|
/* the versions of notmuch that can support session key decryption */
|
|
|
|
#if HAVE_GMIME_SESSION_KEYS
|
|
|
|
if (message) {
|
|
|
|
notmuch_message_properties_t *list = NULL;
|
|
|
|
|
|
|
|
for (list = notmuch_message_get_properties (message, "session-key", TRUE);
|
|
|
|
notmuch_message_properties_valid (list); notmuch_message_properties_move_to_next (list)) {
|
|
|
|
if (err && *err) {
|
|
|
|
g_error_free (*err);
|
|
|
|
*err = NULL;
|
|
|
|
}
|
2017-12-08 07:23:58 +01:00
|
|
|
if (attempted)
|
|
|
|
*attempted = true;
|
2017-11-30 09:59:29 +01:00
|
|
|
#if (GMIME_MAJOR_VERSION < 3)
|
|
|
|
ret = g_mime_multipart_encrypted_decrypt_session (part,
|
|
|
|
crypto_ctx,
|
|
|
|
notmuch_message_properties_value (list),
|
|
|
|
decrypt_result, err);
|
|
|
|
#else
|
|
|
|
ret = g_mime_multipart_encrypted_decrypt (part,
|
|
|
|
GMIME_DECRYPT_NONE,
|
|
|
|
notmuch_message_properties_value (list),
|
|
|
|
decrypt_result, err);
|
|
|
|
#endif
|
|
|
|
if (ret)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (list)
|
|
|
|
notmuch_message_properties_destroy (list);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (err && *err) {
|
|
|
|
g_error_free (*err);
|
|
|
|
*err = NULL;
|
|
|
|
}
|
2017-12-08 07:23:53 +01:00
|
|
|
|
|
|
|
if (decrypt == NOTMUCH_DECRYPT_AUTO)
|
|
|
|
return ret;
|
|
|
|
|
2017-12-08 07:23:58 +01:00
|
|
|
if (attempted)
|
|
|
|
*attempted = true;
|
2017-11-30 09:59:27 +01:00
|
|
|
#if (GMIME_MAJOR_VERSION < 3)
|
2017-12-08 07:24:01 +01:00
|
|
|
#if HAVE_GMIME_SESSION_KEYS
|
|
|
|
gboolean oldgetsk = g_mime_crypto_context_get_retrieve_session_key (crypto_ctx);
|
|
|
|
gboolean newgetsk = (decrypt_result);
|
|
|
|
if (newgetsk != oldgetsk)
|
|
|
|
/* This could return an error, but we can't do anything about it, so ignore it */
|
|
|
|
g_mime_crypto_context_set_retrieve_session_key (crypto_ctx, newgetsk, NULL);
|
|
|
|
#endif
|
2017-11-30 09:59:27 +01:00
|
|
|
ret = g_mime_multipart_encrypted_decrypt(part, crypto_ctx,
|
|
|
|
decrypt_result, err);
|
2017-12-08 07:24:01 +01:00
|
|
|
#if HAVE_GMIME_SESSION_KEYS
|
|
|
|
if (newgetsk != oldgetsk)
|
|
|
|
g_mime_crypto_context_set_retrieve_session_key (crypto_ctx, oldgetsk, NULL);
|
|
|
|
#endif
|
2017-11-30 09:59:27 +01:00
|
|
|
#else
|
2017-12-08 07:24:01 +01:00
|
|
|
GMimeDecryptFlags flags = GMIME_DECRYPT_NONE;
|
|
|
|
if (decrypt_result)
|
|
|
|
flags |= GMIME_DECRYPT_EXPORT_SESSION_KEY;
|
|
|
|
ret = g_mime_multipart_encrypted_decrypt(part, flags, NULL,
|
2017-11-30 09:59:27 +01:00
|
|
|
decrypt_result, err);
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|