2 * Copyright © 2009 Carl Worth
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see http://www.gnu.org/licenses/ .
17 * Author: Carl Worth <cworth@cworth.org>
20 #include "notmuch-private.h"
22 #include <gmime/gmime.h>
23 #include <gmime/gmime-filter.h>
27 /* Oh, how I wish that gobject didn't require so much noisy boilerplate!
28 * (Though I have at least eliminated some of the stock set...) */
29 typedef struct _NotmuchFilterDiscardUuencode NotmuchFilterDiscardUuencode;
30 typedef struct _NotmuchFilterDiscardUuencodeClass NotmuchFilterDiscardUuencodeClass;
33 * NotmuchFilterDiscardUuencode:
35 * @parent_object: parent #GMimeFilter
36 * @encode: encoding vs decoding
37 * @state: State of the parser
39 * A filter to discard uuencoded portions of an email.
41 * A uuencoded portion is identified as beginning with a line
44 * begin [0-7][0-7][0-7] .*
46 * After that detection, and beginning with the following line,
47 * characters will be discarded as long as the first character of each
48 * line begins with M and subsequent characters on the line are within
49 * the range of ASCII characters from ' ' to '`'.
51 * This is not a perfect UUencode filter. It's possible to have a
52 * message that will legitimately match that pattern, (so that some
53 * legitimate content is discarded). And for most UUencoded files, the
54 * final line of encoded data (the line not starting with M) will be
57 struct _NotmuchFilterDiscardUuencode {
58 GMimeFilter parent_object;
62 struct _NotmuchFilterDiscardUuencodeClass {
63 GMimeFilterClass parent_class;
66 static GMimeFilter *notmuch_filter_discard_uuencode_new (void);
68 static void notmuch_filter_discard_uuencode_finalize (GObject *object);
70 static GMimeFilter *filter_copy (GMimeFilter *filter);
71 static void filter_filter (GMimeFilter *filter, char *in, size_t len, size_t prespace,
72 char **out, size_t *outlen, size_t *outprespace);
73 static void filter_complete (GMimeFilter *filter, char *in, size_t len, size_t prespace,
74 char **out, size_t *outlen, size_t *outprespace);
75 static void filter_reset (GMimeFilter *filter);
78 static GMimeFilterClass *parent_class = NULL;
81 notmuch_filter_discard_uuencode_class_init (NotmuchFilterDiscardUuencodeClass *klass)
83 GObjectClass *object_class = G_OBJECT_CLASS (klass);
84 GMimeFilterClass *filter_class = GMIME_FILTER_CLASS (klass);
86 parent_class = (GMimeFilterClass *) g_type_class_ref (GMIME_TYPE_FILTER);
88 object_class->finalize = notmuch_filter_discard_uuencode_finalize;
90 filter_class->copy = filter_copy;
91 filter_class->filter = filter_filter;
92 filter_class->complete = filter_complete;
93 filter_class->reset = filter_reset;
97 notmuch_filter_discard_uuencode_finalize (GObject *object)
99 G_OBJECT_CLASS (parent_class)->finalize (object);
103 filter_copy (GMimeFilter *gmime_filter)
106 return notmuch_filter_discard_uuencode_new ();
110 filter_filter (GMimeFilter *gmime_filter, char *inbuf, size_t inlen, size_t prespace,
111 char **outbuf, size_t *outlen, size_t *outprespace)
113 NotmuchFilterDiscardUuencode *filter = (NotmuchFilterDiscardUuencode *) gmime_filter;
114 register const char *inptr = inbuf;
115 const char *inend = inbuf + inlen;
120 /* Simple, linear state-transition diagram for our filter.
122 * If the character being processed is within the range of [a, b]
123 * for the current state then we transition next_if_match
124 * state. If not, we transition to the next_if_not_match state.
126 * The final two states are special in that they are the states in
127 * which we discard data. */
128 static const struct {
133 int next_if_not_match;
144 {9, ' ', ' ', 10, 0},
145 {10, '\n', '\n', 11, 10},
146 {11, 'M', 'M', 12, 0},
147 {12, ' ', '`', 12, 11}
151 g_mime_filter_set_size (gmime_filter, inlen, FALSE);
152 outptr = gmime_filter->outbuf;
154 while (inptr < inend) {
155 if (*inptr >= states[filter->state].a &&
156 *inptr <= states[filter->state].b)
158 next = states[filter->state].next_if_match;
162 next = states[filter->state].next_if_not_match;
165 if (filter->state < 11)
168 filter->state = next;
172 *outlen = outptr - gmime_filter->outbuf;
173 *outprespace = gmime_filter->outpre;
174 *outbuf = gmime_filter->outbuf;
178 filter_complete (GMimeFilter *filter, char *inbuf, size_t inlen, size_t prespace,
179 char **outbuf, size_t *outlen, size_t *outprespace)
182 filter_filter (filter, inbuf, inlen, prespace, outbuf, outlen, outprespace);
186 filter_reset (GMimeFilter *gmime_filter)
188 NotmuchFilterDiscardUuencode *filter = (NotmuchFilterDiscardUuencode *) gmime_filter;
194 * notmuch_filter_discard_uuencode_new:
196 * Returns: a new #NotmuchFilterDiscardUuencode filter.
199 notmuch_filter_discard_uuencode_new (void)
201 static GType type = 0;
202 NotmuchFilterDiscardUuencode *filter;
205 static const GTypeInfo info = {
206 sizeof (NotmuchFilterDiscardUuencodeClass),
207 NULL, /* base_class_init */
208 NULL, /* base_class_finalize */
209 (GClassInitFunc) notmuch_filter_discard_uuencode_class_init,
210 NULL, /* class_finalize */
211 NULL, /* class_data */
212 sizeof (NotmuchFilterDiscardUuencode),
214 NULL, /* instance_init */
215 NULL /* value_table */
218 type = g_type_register_static (GMIME_TYPE_FILTER, "NotmuchFilterDiscardUuencode", &info, (GTypeFlags) 0);
221 filter = (NotmuchFilterDiscardUuencode *) g_object_newv (type, 0, NULL);
224 return (GMimeFilter *) filter;
227 /* We're finally down to a single (NAME + address) email "mailbox". */
229 _index_address_mailbox (notmuch_message_t *message,
230 const char *prefix_name,
231 InternetAddress *address)
233 InternetAddressMailbox *mailbox = INTERNET_ADDRESS_MAILBOX (address);
234 const char *name, *addr;
235 void *local = talloc_new (message);
237 name = internet_address_get_name (address);
238 addr = internet_address_mailbox_get_addr (mailbox);
240 /* In the absence of a name, we'll strip the part before the @
241 * from the address. */
245 at = strchr (addr, '@');
247 name = talloc_strndup (local, addr, at - addr);
251 _notmuch_message_gen_terms (message, prefix_name, name);
253 _notmuch_message_gen_terms (message, prefix_name, addr);
259 _index_address_list (notmuch_message_t *message,
260 const char *prefix_name,
261 InternetAddressList *addresses);
263 /* The outer loop over the InternetAddressList wasn't quite enough.
264 * There can actually be a tree here where a single member of the list
265 * is a "group" containing another list. Recurse please.
268 _index_address_group (notmuch_message_t *message,
269 const char *prefix_name,
270 InternetAddress *address)
272 InternetAddressGroup *group;
273 InternetAddressList *list;
275 group = INTERNET_ADDRESS_GROUP (address);
276 list = internet_address_group_get_members (group);
281 _index_address_list (message, prefix_name, list);
285 _index_address_list (notmuch_message_t *message,
286 const char *prefix_name,
287 InternetAddressList *addresses)
290 InternetAddress *address;
292 if (addresses == NULL)
295 for (i = 0; i < internet_address_list_length (addresses); i++) {
296 address = internet_address_list_get_address (addresses, i);
297 if (INTERNET_ADDRESS_IS_MAILBOX (address)) {
298 _index_address_mailbox (message, prefix_name, address);
299 } else if (INTERNET_ADDRESS_IS_GROUP (address)) {
300 _index_address_group (message, prefix_name, address);
302 INTERNAL_ERROR ("GMime InternetAddress is neither a mailbox nor a group.\n");
307 /* Callback to generate terms for each mime part of a message. */
309 _index_mime_part (notmuch_message_t *message,
312 GMimeStream *stream, *filter;
313 GMimeFilter *discard_uuencode_filter;
314 GMimeDataWrapper *wrapper;
315 GByteArray *byte_array;
316 GMimeContentDisposition *disposition;
321 fprintf (stderr, "Warning: Not indexing empty mime part.\n");
325 if (GMIME_IS_MULTIPART (part)) {
326 GMimeMultipart *multipart = GMIME_MULTIPART (part);
329 if (GMIME_IS_MULTIPART_SIGNED (multipart))
330 _notmuch_message_add_term (message, "tag", "signed");
332 if (GMIME_IS_MULTIPART_ENCRYPTED (multipart))
333 _notmuch_message_add_term (message, "tag", "encrypted");
335 for (i = 0; i < g_mime_multipart_get_count (multipart); i++) {
336 if (GMIME_IS_MULTIPART_SIGNED (multipart)) {
337 /* Don't index the signature. */
341 fprintf (stderr, "Warning: Unexpected extra parts of multipart/signed. Indexing anyway.\n");
343 if (GMIME_IS_MULTIPART_ENCRYPTED (multipart)) {
344 /* Don't index encrypted parts. */
347 _index_mime_part (message,
348 g_mime_multipart_get_part (multipart, i));
353 if (GMIME_IS_MESSAGE_PART (part)) {
354 GMimeMessage *mime_message;
356 mime_message = g_mime_message_part_get_message (GMIME_MESSAGE_PART (part));
358 _index_mime_part (message, g_mime_message_get_mime_part (mime_message));
363 if (! (GMIME_IS_PART (part))) {
364 fprintf (stderr, "Warning: Not indexing unknown mime part: %s.\n",
365 g_type_name (G_OBJECT_TYPE (part)));
369 disposition = g_mime_object_get_content_disposition (part);
371 strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
373 const char *filename = g_mime_part_get_filename (GMIME_PART (part));
375 _notmuch_message_add_term (message, "tag", "attachment");
376 _notmuch_message_gen_terms (message, "attachment", filename);
378 /* XXX: Would be nice to call out to something here to parse
379 * the attachment into text and then index that. */
383 byte_array = g_byte_array_new ();
385 stream = g_mime_stream_mem_new_with_byte_array (byte_array);
386 g_mime_stream_mem_set_owner (GMIME_STREAM_MEM (stream), FALSE);
388 filter = g_mime_stream_filter_new (stream);
389 discard_uuencode_filter = notmuch_filter_discard_uuencode_new ();
391 g_mime_stream_filter_add (GMIME_STREAM_FILTER (filter),
392 discard_uuencode_filter);
394 charset = g_mime_object_get_content_type_parameter (part, "charset");
396 GMimeFilter *charset_filter;
397 charset_filter = g_mime_filter_charset_new (charset, "UTF-8");
398 /* This result can be NULL for things like "unknown-8bit".
399 * Don't set a NULL filter as that makes GMime print
400 * annoying assertion-failure messages on stderr. */
401 if (charset_filter) {
402 g_mime_stream_filter_add (GMIME_STREAM_FILTER (filter),
404 g_object_unref (charset_filter);
408 wrapper = g_mime_part_get_content_object (GMIME_PART (part));
410 g_mime_data_wrapper_write_to_stream (wrapper, filter);
412 g_object_unref (stream);
413 g_object_unref (filter);
414 g_object_unref (discard_uuencode_filter);
416 g_byte_array_append (byte_array, (guint8 *) "\0", 1);
417 body = (char *) g_byte_array_free (byte_array, FALSE);
420 _notmuch_message_gen_terms (message, NULL, body);
427 _notmuch_message_index_file (notmuch_message_t *message,
428 const char *filename)
430 GMimeStream *stream = NULL;
431 GMimeParser *parser = NULL;
432 GMimeMessage *mime_message = NULL;
433 InternetAddressList *addresses;
435 const char *from, *subject;
436 notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
437 static int initialized = 0;
439 bool is_mbox = false;
440 static bool mbox_warning = false;
447 file = fopen (filename, "r");
449 fprintf (stderr, "Error opening %s: %s\n", filename, strerror (errno));
450 ret = NOTMUCH_STATUS_FILE_ERROR;
455 if (fread (from_buf, sizeof (from_buf), 1, file) == 1 &&
456 strncmp (from_buf, "From ", 5) == 0)
460 /* Evil GMime steals my FILE* here so I won't fclose it. */
461 stream = g_mime_stream_file_new (file);
463 parser = g_mime_parser_new_with_stream (stream);
464 g_mime_parser_set_scan_from (parser, is_mbox);
466 mime_message = g_mime_parser_construct_message (parser);
469 if (!g_mime_parser_eos (parser)) {
470 /* This is a multi-message mbox. */
471 ret = NOTMUCH_STATUS_FILE_NOT_EMAIL;
474 /* For historical reasons, we support single-message mboxes,
475 * but this behavior is likely to change in the future, so
480 Warning: %s is an mbox containing a single message,\n\
481 likely caused by misconfigured mail delivery. Support for single-message\n\
482 mboxes is deprecated and may be removed in the future.\n", filename);
486 from = g_mime_message_get_sender (mime_message);
488 addresses = internet_address_list_parse_string (from);
490 _index_address_list (message, "from", addresses);
491 g_object_unref (addresses);
494 addresses = g_mime_message_get_all_recipients (mime_message);
496 _index_address_list (message, "to", addresses);
497 g_object_unref (addresses);
500 subject = g_mime_message_get_subject (mime_message);
501 _notmuch_message_gen_terms (message, "subject", subject);
503 _index_mime_part (message, g_mime_message_get_mime_part (mime_message));
507 g_object_unref (mime_message);
510 g_object_unref (parser);
513 g_object_unref (stream);