]> git.notmuchmail.org Git - notmuch/blob - util/repair.c
Merge branch 'release'
[notmuch] / util / repair.c
1 /* notmuch - Not much of an email program, (just index and search)
2  *
3  * Copyright © 2019 Daniel Kahn Gillmor
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 https://www.gnu.org/licenses/ .
17  *
18  * Authors: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
19  */
20
21 #include <stdbool.h>
22 #include "repair.h"
23
24
25 static bool
26 _notmuch_crypto_payload_has_legacy_display (GMimeObject *payload)
27 {
28     GMimeMultipart *mpayload;
29     const char *protected_header_parameter;
30     GMimeTextPart *legacy_display;
31     char *legacy_display_header_text = NULL;
32     GMimeStream *stream = NULL;
33     GMimeParser *parser = NULL;
34     GMimeObject *legacy_header_object = NULL, *first;
35     GMimeHeaderList *legacy_display_headers = NULL, *protected_headers = NULL;
36     bool ret = false;
37
38     if (! g_mime_content_type_is_type (g_mime_object_get_content_type (payload),
39                                        "multipart", "mixed"))
40         return false;
41     protected_header_parameter = g_mime_object_get_content_type_parameter (payload, "protected-headers");
42     if ((! protected_header_parameter) || strcmp (protected_header_parameter, "v1"))
43         return false;
44     if (! GMIME_IS_MULTIPART (payload))
45         return false;
46     mpayload = GMIME_MULTIPART (payload);
47     if (mpayload == NULL)
48         return false;
49     if (g_mime_multipart_get_count (mpayload) != 2)
50         return false;
51     first = g_mime_multipart_get_part (mpayload, 0);
52     if (! g_mime_content_type_is_type (g_mime_object_get_content_type (first),
53                                        "text", "rfc822-headers"))
54         return false;
55     protected_header_parameter = g_mime_object_get_content_type_parameter (first, "protected-headers");
56     if ((! protected_header_parameter) || strcmp (protected_header_parameter, "v1"))
57         return false;
58     if (! GMIME_IS_TEXT_PART (first))
59         return false;
60
61     /* ensure that the headers in the first part all match the values
62      * found in the payload's own protected headers!  if they don't,
63      * we should not treat this as a valid "legacy-display" part.
64      *
65      * Crafting a GMimeHeaderList object from the content of the
66      * text/rfc822-headers part is pretty clumsy; we should probably
67      * push something into GMime that makes this a one-shot
68      * operation. */
69     if ((protected_headers = g_mime_object_get_header_list (payload), protected_headers) &&
70         (legacy_display = GMIME_TEXT_PART (first), legacy_display) &&
71         (legacy_display_header_text = g_mime_text_part_get_text (legacy_display), legacy_display_header_text) &&
72         (stream = g_mime_stream_mem_new_with_buffer (legacy_display_header_text, strlen (legacy_display_header_text)), stream) &&
73         (g_mime_stream_write (stream, "\r\n\r\n", 4) == 4) &&
74         (g_mime_stream_seek (stream, 0, GMIME_STREAM_SEEK_SET) == 0) &&
75         (parser = g_mime_parser_new_with_stream (stream), parser) &&
76         (legacy_header_object = g_mime_parser_construct_part (parser, NULL), legacy_header_object) &&
77         (legacy_display_headers = g_mime_object_get_header_list (legacy_header_object), legacy_display_headers)) {
78         /* walk through legacy_display_headers, comparing them against
79          * their values in the protected_headers: */
80         ret = true;
81         for (int i = 0; i < g_mime_header_list_get_count (legacy_display_headers); i++) {
82             GMimeHeader *dh = g_mime_header_list_get_header_at (legacy_display_headers, i);
83             if (dh == NULL) {
84                 ret = false;
85                 goto DONE;
86             }
87             GMimeHeader *ph = g_mime_header_list_get_header (protected_headers, g_mime_header_get_name (dh));
88             if (ph == NULL) {
89                 ret = false;
90                 goto DONE;
91             }
92             const char *dhv = g_mime_header_get_value (dh);
93             const char *phv = g_mime_header_get_value (ph);
94             if (dhv == NULL || phv == NULL || strcmp (dhv, phv)) {
95                 ret = false;
96                 goto DONE;
97             }
98         }
99     }
100
101  DONE:
102     if (legacy_display_header_text)
103         g_free (legacy_display_header_text);
104     if (stream)
105         g_object_unref (stream);
106     if (parser)
107         g_object_unref (parser);
108     if (legacy_header_object)
109         g_object_unref (legacy_header_object);
110
111     return ret;
112 }
113
114 GMimeObject *
115 _notmuch_repair_crypto_payload_skip_legacy_display (GMimeObject *payload)
116 {
117     if (_notmuch_crypto_payload_has_legacy_display (payload)) {
118         return g_mime_multipart_get_part (GMIME_MULTIPART (payload), 1);
119     } else {
120         return payload;
121     }
122 }
123
124 /* see
125  * https://tools.ietf.org/html/draft-dkg-openpgp-pgpmime-message-mangling-00#section-4.1.1 */
126 static bool
127 _notmuch_is_mixed_up_mangled (GMimeObject *part)
128 {
129     GMimeMultipart *mpart = NULL;
130     GMimeObject *parts[3] = {NULL, NULL, NULL};
131     GMimeContentType *type = NULL;
132     char *prelude_string = NULL;
133     bool prelude_is_empty;
134
135     if (part == NULL)
136         return false;
137     type = g_mime_object_get_content_type (part);
138     if (type == NULL)
139         return false;
140     if (! g_mime_content_type_is_type (type, "multipart", "mixed"))
141         return false;
142     if (! GMIME_IS_MULTIPART (part)) /* probably impossible */
143         return false;
144     mpart = GMIME_MULTIPART (part);
145     if (mpart == NULL)
146         return false;
147     if (g_mime_multipart_get_count (mpart) != 3)
148         return false;
149     parts[0] = g_mime_multipart_get_part (mpart, 0);
150     if (! g_mime_content_type_is_type (g_mime_object_get_content_type (parts[0]),
151                                        "text", "plain"))
152         return false;
153     if (! GMIME_IS_TEXT_PART (parts[0]))
154         return false;
155     parts[1] = g_mime_multipart_get_part (mpart, 1);
156     if (! g_mime_content_type_is_type (g_mime_object_get_content_type (parts[1]),
157                                        "application", "pgp-encrypted"))
158         return false;
159     parts[2] = g_mime_multipart_get_part (mpart, 2);
160     if (! g_mime_content_type_is_type (g_mime_object_get_content_type (parts[2]),
161                                        "application", "octet-stream"))
162         return false;
163
164     /* Is parts[0] length 0? */
165     prelude_string = g_mime_text_part_get_text (GMIME_TEXT_PART (parts[0]));
166     prelude_is_empty = (prelude_string[0] == '\0');
167     g_free (prelude_string);
168     if (! prelude_is_empty)
169         return false;
170
171     /* FIXME: after decoding and stripping whitespace, is parts[1]
172      * subpart just "Version: 1" ? */
173
174     /* FIXME: can we determine that parts[2] subpart is *only* PGP
175      * encrypted data?  I tried g_mime_part_get_openpgp_data () but
176      * found https://github.com/jstedfast/gmime/issues/60 */
177
178     return true;
179 }
180
181
182 /* see
183  * https://tools.ietf.org/html/draft-dkg-openpgp-pgpmime-message-mangling-00#section-4.1.2 */
184 GMimeObject *
185 _notmuch_repair_mixed_up_mangled (GMimeObject *part)
186 {
187     GMimeMultipart *mpart = NULL, *mpart_ret = NULL;
188     GMimeObject *ret = NULL;
189
190     if (! _notmuch_is_mixed_up_mangled (part))
191         return NULL;
192     mpart = GMIME_MULTIPART (part);
193     ret = GMIME_OBJECT (g_mime_multipart_encrypted_new ());
194     if (ret == NULL)
195         return NULL;
196     mpart_ret = GMIME_MULTIPART (ret);
197     if (mpart_ret == NULL) {
198         g_object_unref (ret);
199         return NULL;
200     }
201     g_mime_object_set_content_type_parameter (ret, "protocol", "application/pgp-encrypted");
202
203     g_mime_multipart_insert (mpart_ret, 0, g_mime_multipart_get_part (mpart, 1));
204     g_mime_multipart_insert (mpart_ret, 1, g_mime_multipart_get_part (mpart, 2));
205     return ret;
206 }