]> git.notmuchmail.org Git - notmuch/blob - notmuch-insert.c
test: Port atomicity test to Python
[notmuch] / notmuch-insert.c
1 /* notmuch - Not much of an email program, (just index and search)
2  *
3  * Copyright © 2013 Peter Wang
4  *
5  * Based in part on notmuch-deliver
6  * Copyright © 2010 Ali Polatel
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see http://www.gnu.org/licenses/ .
20  *
21  * Author: Peter Wang <novalazy@gmail.com>
22  */
23
24 #include "notmuch-client.h"
25 #include "tag-util.h"
26
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <fcntl.h>
30
31 static volatile sig_atomic_t interrupted;
32
33 static void
34 handle_sigint (unused (int sig))
35 {
36     static char msg[] = "Stopping...         \n";
37
38     /* This write is "opportunistic", so it's okay to ignore the
39      * result.  It is not required for correctness, and if it does
40      * fail or produce a short write, we want to get out of the signal
41      * handler as quickly as possible, not retry it. */
42     IGNORE_RESULT (write (2, msg, sizeof (msg) - 1));
43     interrupted = 1;
44 }
45
46 /* Like gethostname but guarantees that a null-terminated hostname is
47  * returned, even if it has to make one up. Invalid characters are
48  * substituted such that the hostname can be used within a filename.
49  */
50 static void
51 safe_gethostname (char *hostname, size_t len)
52 {
53     char *p;
54
55     if (gethostname (hostname, len) == -1) {
56         strncpy (hostname, "unknown", len);
57     }
58     hostname[len - 1] = '\0';
59
60     for (p = hostname; *p != '\0'; p++) {
61         if (*p == '/' || *p == ':')
62             *p = '_';
63     }
64 }
65
66 /* Call fsync() on a directory path. */
67 static notmuch_bool_t
68 sync_dir (const char *dir)
69 {
70     int fd, r;
71
72     fd = open (dir, O_RDONLY);
73     if (fd == -1) {
74         fprintf (stderr, "Error: open %s: %s\n", dir, strerror (errno));
75         return FALSE;
76     }
77
78     r = fsync (fd);
79     if (r)
80         fprintf (stderr, "Error: fsync %s: %s\n", dir, strerror (errno));
81
82     close (fd);
83
84     return r == 0;
85 }
86
87 /*
88  * Check the specified folder name does not contain a directory
89  * component ".." to prevent writes outside of the Maildir
90  * hierarchy. Return TRUE on valid folder name, FALSE otherwise.
91  */
92 static notmuch_bool_t
93 is_valid_folder_name (const char *folder)
94 {
95     const char *p = folder;
96
97     for (;;) {
98         if ((p[0] == '.') && (p[1] == '.') && (p[2] == '\0' || p[2] == '/'))
99             return FALSE;
100         p = strchr (p, '/');
101         if (!p)
102             return TRUE;
103         p++;
104     }
105 }
106
107 /*
108  * Make the given directory and its parents as necessary, using the
109  * given mode. Return TRUE on success, FALSE otherwise. Partial
110  * results are not cleaned up on errors.
111  */
112 static notmuch_bool_t
113 mkdir_recursive (const void *ctx, const char *path, int mode)
114 {
115     struct stat st;
116     int r;
117     char *parent = NULL, *slash;
118
119     /* First check the common case: directory already exists. */
120     r = stat (path, &st);
121     if (r == 0) {
122         if (! S_ISDIR (st.st_mode)) {
123             fprintf (stderr, "Error: '%s' is not a directory: %s\n",
124                      path, strerror (EEXIST));
125             return FALSE;
126         }
127
128         return TRUE;
129     } else if (errno != ENOENT) {
130         fprintf (stderr, "Error: stat '%s': %s\n", path, strerror (errno));
131         return FALSE;
132     }
133
134     /* mkdir parents, if any */
135     slash = strrchr (path, '/');
136     if (slash && slash != path) {
137         parent = talloc_strndup (ctx, path, slash - path);
138         if (! parent) {
139             fprintf (stderr, "Error: %s\n", strerror (ENOMEM));
140             return FALSE;
141         }
142
143         if (! mkdir_recursive (ctx, parent, mode))
144             return FALSE;
145     }
146
147     if (mkdir (path, mode)) {
148         fprintf (stderr, "Error: mkdir '%s': %s\n", path, strerror (errno));
149         return FALSE;
150     }
151
152     return parent ? sync_dir (parent) : TRUE;
153 }
154
155 /*
156  * Create the given maildir folder, i.e. maildir and its
157  * subdirectories cur/new/tmp. Return TRUE on success, FALSE
158  * otherwise. Partial results are not cleaned up on errors.
159  */
160 static notmuch_bool_t
161 maildir_create_folder (const void *ctx, const char *maildir)
162 {
163     const char *subdirs[] = { "cur", "new", "tmp" };
164     const int mode = 0700;
165     char *subdir;
166     unsigned int i;
167
168     for (i = 0; i < ARRAY_SIZE (subdirs); i++) {
169         subdir = talloc_asprintf (ctx, "%s/%s", maildir, subdirs[i]);
170         if (! subdir) {
171             fprintf (stderr, "Error: %s\n", strerror (ENOMEM));
172             return FALSE;
173         }
174
175         if (! mkdir_recursive (ctx, subdir, mode))
176             return FALSE;
177     }
178
179     return TRUE;
180 }
181
182 /*
183  * Generate a temporary file basename, no path, do not create an
184  * actual file. Return the basename, or NULL on errors.
185  */
186 static char *
187 tempfilename (const void *ctx)
188 {
189     char *filename;
190     char hostname[256];
191     struct timeval tv;
192     pid_t pid;
193
194     /* We follow the Dovecot file name generation algorithm. */
195     pid = getpid ();
196     safe_gethostname (hostname, sizeof (hostname));
197     gettimeofday (&tv, NULL);
198
199     filename = talloc_asprintf (ctx, "%ld.M%ldP%d.%s",
200                                 tv.tv_sec, tv.tv_usec, pid, hostname);
201     if (! filename)
202         fprintf (stderr, "Error: %s\n", strerror (ENOMEM));
203
204     return filename;
205 }
206
207 /*
208  * Create a unique temporary file in maildir/tmp, return fd and full
209  * path to file in *path_out, or -1 on errors (in which case *path_out
210  * is not touched).
211  */
212 static int
213 maildir_mktemp (const void *ctx, const char *maildir, char **path_out)
214 {
215     char *filename, *path;
216     int fd;
217
218     do {
219         filename = tempfilename (ctx);
220         if (! filename)
221             return -1;
222
223         path = talloc_asprintf (ctx, "%s/tmp/%s", maildir, filename);
224         if (! path) {
225             fprintf (stderr, "Error: %s\n", strerror (ENOMEM));
226             return -1;
227         }
228
229         fd = open (path, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, 0600);
230     } while (fd == -1 && errno == EEXIST);
231
232     if (fd == -1) {
233         fprintf (stderr, "Error: open '%s': %s\n", path, strerror (errno));
234         return -1;
235     }
236
237     *path_out = path;
238
239     return fd;
240 }
241
242 /*
243  * Copy fdin to fdout, return TRUE on success, and FALSE on errors and
244  * empty input.
245  */
246 static notmuch_bool_t
247 copy_fd (int fdout, int fdin)
248 {
249     notmuch_bool_t empty = TRUE;
250
251     while (! interrupted) {
252         ssize_t remain;
253         char buf[4096];
254         char *p;
255
256         remain = read (fdin, buf, sizeof (buf));
257         if (remain == 0)
258             break;
259         if (remain < 0) {
260             if (errno == EINTR)
261                 continue;
262             fprintf (stderr, "Error: reading from standard input: %s\n",
263                      strerror (errno));
264             return FALSE;
265         }
266
267         p = buf;
268         do {
269             ssize_t written = write (fdout, p, remain);
270             if (written < 0 && errno == EINTR)
271                 continue;
272             if (written <= 0) {
273                 fprintf (stderr, "Error: writing to temporary file: %s",
274                          strerror (errno));
275                 return FALSE;
276             }
277             p += written;
278             remain -= written;
279             empty = FALSE;
280         } while (remain > 0);
281     }
282
283     return (!interrupted && !empty);
284 }
285
286 /*
287  * Write fdin to a new temp file in maildir/tmp, return full path to
288  * the file, or NULL on errors.
289  */
290 static char *
291 maildir_write_tmp (const void *ctx, int fdin, const char *maildir)
292 {
293     char *path;
294     int fdout;
295
296     fdout = maildir_mktemp (ctx, maildir, &path);
297     if (fdout < 0)
298         return NULL;
299
300     if (! copy_fd (fdout, fdin))
301         goto FAIL;
302
303     if (fsync (fdout)) {
304         fprintf (stderr, "Error: fsync '%s': %s\n", path, strerror (errno));
305         goto FAIL;
306     }
307
308     close (fdout);
309
310     return path;
311
312 FAIL:
313     close (fdout);
314     unlink (path);
315
316     return NULL;
317 }
318
319 /*
320  * Write fdin to a new file in maildir/new, using an intermediate temp
321  * file in maildir/tmp, return full path to the new file, or NULL on
322  * errors.
323  */
324 static char *
325 maildir_write_new (const void *ctx, int fdin, const char *maildir)
326 {
327     char *cleanpath, *tmppath, *newpath, *newdir;
328
329     tmppath = maildir_write_tmp (ctx, fdin, maildir);
330     if (! tmppath)
331         return NULL;
332     cleanpath = tmppath;
333
334     newpath = talloc_strdup (ctx, tmppath);
335     if (! newpath) {
336         fprintf (stderr, "Error: %s\n", strerror (ENOMEM));
337         goto FAIL;
338     }
339
340     /* sanity checks needed? */
341     memcpy (newpath + strlen (maildir) + 1, "new", 3);
342
343     if (rename (tmppath, newpath)) {
344         fprintf (stderr, "Error: rename '%s' '%s': %s\n",
345                  tmppath, newpath, strerror (errno));
346         goto FAIL;
347     }
348     cleanpath = newpath;
349
350     newdir = talloc_asprintf (ctx, "%s/%s", maildir, "new");
351     if (! newdir) {
352         fprintf (stderr, "Error: %s\n", strerror (ENOMEM));
353         goto FAIL;
354     }
355
356     if (! sync_dir (newdir))
357         goto FAIL;
358
359     return newpath;
360
361 FAIL:
362     unlink (cleanpath);
363
364     return NULL;
365 }
366
367 /* Add the specified message file to the notmuch database, applying tags.
368  * The file is renamed to encode notmuch tags as maildir flags. */
369 static void
370 add_file_to_database (notmuch_database_t *notmuch, const char *path,
371                       tag_op_list_t *tag_ops, notmuch_bool_t synchronize_flags)
372 {
373     notmuch_message_t *message;
374     notmuch_status_t status;
375
376     status = notmuch_database_add_message (notmuch, path, &message);
377     switch (status) {
378     case NOTMUCH_STATUS_SUCCESS:
379     case NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID:
380         break;
381     default:
382     case NOTMUCH_STATUS_FILE_NOT_EMAIL:
383     case NOTMUCH_STATUS_READ_ONLY_DATABASE:
384     case NOTMUCH_STATUS_XAPIAN_EXCEPTION:
385     case NOTMUCH_STATUS_OUT_OF_MEMORY:
386     case NOTMUCH_STATUS_FILE_ERROR:
387     case NOTMUCH_STATUS_NULL_POINTER:
388     case NOTMUCH_STATUS_TAG_TOO_LONG:
389     case NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW:
390     case NOTMUCH_STATUS_UNBALANCED_ATOMIC:
391     case NOTMUCH_STATUS_LAST_STATUS:
392         fprintf (stderr, "Error: failed to add `%s' to notmuch database: %s\n",
393                  path, notmuch_status_to_string (status));
394         return;
395     }
396
397     if (status == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) {
398         /* Don't change tags of an existing message. */
399         if (synchronize_flags) {
400             status = notmuch_message_tags_to_maildir_flags (message);
401             if (status != NOTMUCH_STATUS_SUCCESS)
402                 fprintf (stderr, "Error: failed to sync tags to maildir flags\n");
403         }
404     } else {
405         tag_op_flag_t flags = synchronize_flags ? TAG_FLAG_MAILDIR_SYNC : 0;
406
407         tag_op_list_apply (message, tag_ops, flags);
408     }
409
410     notmuch_message_destroy (message);
411 }
412
413 int
414 notmuch_insert_command (notmuch_config_t *config, int argc, char *argv[])
415 {
416     notmuch_database_t *notmuch;
417     struct sigaction action;
418     const char *db_path;
419     const char **new_tags;
420     size_t new_tags_length;
421     tag_op_list_t *tag_ops;
422     char *query_string = NULL;
423     const char *folder = NULL;
424     notmuch_bool_t create_folder = FALSE;
425     notmuch_bool_t synchronize_flags;
426     const char *maildir;
427     char *newpath;
428     int opt_index;
429     unsigned int i;
430
431     notmuch_opt_desc_t options[] = {
432         { NOTMUCH_OPT_STRING, &folder, "folder", 0, 0 },
433         { NOTMUCH_OPT_BOOLEAN, &create_folder, "create-folder", 0, 0 },
434         { NOTMUCH_OPT_END, 0, 0, 0, 0 }
435     };
436
437     opt_index = parse_arguments (argc, argv, options, 1);
438     if (opt_index < 0)
439         return EXIT_FAILURE;
440
441     db_path = notmuch_config_get_database_path (config);
442     new_tags = notmuch_config_get_new_tags (config, &new_tags_length);
443     synchronize_flags = notmuch_config_get_maildir_synchronize_flags (config);
444
445     tag_ops = tag_op_list_create (config);
446     if (tag_ops == NULL) {
447         fprintf (stderr, "Out of memory.\n");
448         return EXIT_FAILURE;
449     }
450     for (i = 0; i < new_tags_length; i++) {
451         const char *error_msg;
452
453         error_msg = illegal_tag (new_tags[i], FALSE);
454         if (error_msg) {
455             fprintf (stderr, "Error: tag '%s' in new.tags: %s\n",
456                      new_tags[i],  error_msg);
457             return EXIT_FAILURE;
458         }
459
460         if (tag_op_list_append (tag_ops, new_tags[i], FALSE))
461             return EXIT_FAILURE;
462     }
463
464     if (parse_tag_command_line (config, argc - opt_index, argv + opt_index,
465                                 &query_string, tag_ops))
466         return EXIT_FAILURE;
467
468     if (*query_string != '\0') {
469         fprintf (stderr, "Error: unexpected query string: %s\n", query_string);
470         return EXIT_FAILURE;
471     }
472
473     if (folder == NULL) {
474         maildir = db_path;
475     } else {
476         if (! is_valid_folder_name (folder)) {
477             fprintf (stderr, "Error: invalid folder name: '%s'\n", folder);
478             return EXIT_FAILURE;
479         }
480         maildir = talloc_asprintf (config, "%s/%s", db_path, folder);
481         if (! maildir) {
482             fprintf (stderr, "Out of memory\n");
483             return EXIT_FAILURE;
484         }
485         if (create_folder && ! maildir_create_folder (config, maildir))
486             return EXIT_FAILURE;
487     }
488
489     /* Setup our handler for SIGINT. We do not set SA_RESTART so that copying
490      * from standard input may be interrupted. */
491     memset (&action, 0, sizeof (struct sigaction));
492     action.sa_handler = handle_sigint;
493     sigemptyset (&action.sa_mask);
494     action.sa_flags = 0;
495     sigaction (SIGINT, &action, NULL);
496
497     if (notmuch_database_open (notmuch_config_get_database_path (config),
498                                NOTMUCH_DATABASE_MODE_READ_WRITE, &notmuch))
499         return EXIT_FAILURE;
500
501     /* Write the message to the Maildir new directory. */
502     newpath = maildir_write_new (config, STDIN_FILENO, maildir);
503     if (! newpath) {
504         notmuch_database_destroy (notmuch);
505         return EXIT_FAILURE;
506     }
507
508     /* Add the message to the index.
509      * Even if adding the message to the notmuch database fails,
510      * the message is on disk and we consider the delivery completed. */
511     add_file_to_database (notmuch, newpath, tag_ops,
512                                     synchronize_flags);
513
514     notmuch_database_destroy (notmuch);
515     return EXIT_SUCCESS;
516 }