]> git.notmuchmail.org Git - notmuch/blob - crypto.c
da0289dcf392db8b9277d0a9fa5dbca9bd3a2f86
[notmuch] / crypto.c
1 /* notmuch - Not much of an email program, (just index and search)
2  *
3  * Copyright © 2012 Jameson Rollins
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see http://www.gnu.org/licenses/ .
17  *
18  * Authors: Jameson Rollins <jrollins@finestructure.net>
19  */
20
21 #include "notmuch-client.h"
22
23 /* Create a GPG context (GMime 2.6) */
24 static notmuch_crypto_context_t *
25 create_gpg_context (notmuch_crypto_t *crypto)
26 {
27     notmuch_crypto_context_t *gpgctx;
28
29     if (crypto->gpgctx)
30         return crypto->gpgctx;
31
32     /* TODO: GMimePasswordRequestFunc */
33     gpgctx = g_mime_gpg_context_new (NULL, crypto->gpgpath ? crypto->gpgpath : "gpg");
34     if (! gpgctx) {
35         fprintf (stderr, "Failed to construct gpg context.\n");
36         return NULL;
37     }
38     crypto->gpgctx = gpgctx;
39
40     g_mime_gpg_context_set_use_agent ((GMimeGpgContext *) gpgctx, TRUE);
41     g_mime_gpg_context_set_always_trust ((GMimeGpgContext *) gpgctx, FALSE);
42
43     return gpgctx;
44 }
45
46 static const struct {
47     const char *protocol;
48     notmuch_crypto_context_t *(*get_context) (notmuch_crypto_t *crypto);
49 } protocols[] = {
50     {
51         .protocol = "application/pgp-signature",
52         .get_context = create_gpg_context,
53     },
54     {
55         .protocol = "application/pgp-encrypted",
56         .get_context = create_gpg_context,
57     },
58 };
59
60 /* for the specified protocol return the context pointer (initializing
61  * if needed) */
62 notmuch_crypto_context_t *
63 notmuch_crypto_get_context (notmuch_crypto_t *crypto, const char *protocol)
64 {
65     notmuch_crypto_context_t *cryptoctx = NULL;
66     size_t i;
67
68     if (! protocol) {
69         fprintf (stderr, "Cryptographic protocol is empty.\n");
70         return cryptoctx;
71     }
72
73     /* As per RFC 1847 section 2.1: "the [protocol] value token is
74      * comprised of the type and sub-type tokens of the Content-Type".
75      * As per RFC 1521 section 2: "Content-Type values, subtypes, and
76      * parameter names as defined in this document are
77      * case-insensitive."  Thus, we use strcasecmp for the protocol.
78      */
79     for (i = 0; i < ARRAY_SIZE (protocols); i++) {
80         if (strcasecmp (protocol, protocols[i].protocol) == 0)
81             return protocols[i].get_context (crypto);
82     }
83
84     fprintf (stderr, "Unknown or unsupported cryptographic protocol.\n");
85
86     return NULL;
87 }
88
89 int
90 notmuch_crypto_cleanup (notmuch_crypto_t *crypto)
91 {
92     if (crypto->gpgctx) {
93         g_object_unref (crypto->gpgctx);
94         crypto->gpgctx = NULL;
95     }
96
97     return 0;
98 }