rationalize the hcache patch.
[apps/madmutt.git] / lib-mx / mbox.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
4  *
5  * This file is part of mutt-ng, see http://www.muttng.org/.
6  * It's licensed under the GNU General Public License,
7  * please see the file GPL in the top level source directory.
8  */
9
10 /* This file contains code to parse ``mbox'' and ``mmdf'' style mailboxes */
11
12 #include <lib-lib/lib-lib.h>
13
14 #include <lib-ui/curses.h>
15 #include <lib-sys/mutt_signal.h>
16
17 #include "mutt.h"
18 #include "mx.h"
19 #include "buffy.h"
20 #include "mbox.h"
21 #include "sort.h"
22 #include "thread.h"
23 #include "copy.h"
24 #include "compress.h"
25
26 /* struct used by mutt_sync_mailbox() to store new offsets */
27 struct m_update_t {
28   short valid;
29   off_t hdr;
30   off_t body;
31   long lines;
32   off_t length;
33 };
34
35
36 static int mbox_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr __attribute__ ((unused)))
37 {
38   msg->fp = dest->fp;
39   return 0;
40 }
41
42 /* prototypes */
43 static int mbox_reopen_mailbox (CONTEXT*, int*);
44
45 /* parameters:
46  * ctx - context to lock
47  * excl - exclusive lock?
48  * retry - should retry if unable to lock?
49  */
50 int mbox_lock_mailbox (CONTEXT * ctx, int excl, int retry)
51 {
52   int r;
53
54   if ((r = mx_lock_file (ctx->path, fileno (ctx->fp), excl, 1, retry)) == 0)
55     ctx->locked = 1;
56   else if (retry && !excl) {
57     ctx->readonly = 1;
58     return 0;
59   }
60
61   return (r);
62 }
63
64 static void mbox_unlock_mailbox (CONTEXT * ctx)
65 {
66   if (ctx->locked) {
67     fflush (ctx->fp);
68
69     mx_unlock_file (ctx->path, fileno (ctx->fp), 1);
70     ctx->locked = 0;
71   }
72 }
73
74 static int mmdf_parse_mailbox (CONTEXT * ctx)
75 {
76   char buf[HUGE_STRING];
77   char return_path[LONG_STRING];
78   int count = 0, oldmsgcount = ctx->msgcount;
79   int lines;
80   time_t t, tz;
81   off_t loc, tmploc;
82   HEADER *hdr;
83   struct stat sb;
84
85   if (stat (ctx->path, &sb) == -1) {
86     mutt_perror (ctx->path);
87     return (-1);
88   }
89   ctx->mtime = sb.st_mtime;
90   ctx->size = sb.st_size;
91
92   /* precompute the local timezone to speed up calculation of the
93      received time */
94   tz = mutt_local_tz (0);
95
96   buf[sizeof (buf) - 1] = 0;
97
98   for (;;) {
99     if (fgets (buf, sizeof (buf) - 1, ctx->fp) == NULL)
100       break;
101
102     if (m_strcmp(buf, MMDF_SEP) == 0) {
103       loc = ftello (ctx->fp);
104
105       count++;
106       if (!ctx->quiet && ReadInc && ((count % ReadInc == 0) || count == 1))
107         mutt_message (_("Reading %s... %d (%d%%)"), ctx->path, count,
108                       (int) (loc / (ctx->size / 100 + 1)));
109
110
111       if (ctx->msgcount == ctx->hdrmax)
112         mx_alloc_memory (ctx);
113       ctx->hdrs[ctx->msgcount] = hdr = header_new();
114       hdr->offset = loc;
115       hdr->index = ctx->msgcount;
116
117       if (fgets (buf, sizeof (buf) - 1, ctx->fp) == NULL) {
118         /* TODO: memory leak??? */
119         break;
120       }
121
122       return_path[0] = 0;
123
124       if (!is_from (buf, return_path, sizeof (return_path), &t)) {
125         if (fseeko (ctx->fp, loc, SEEK_SET) != 0) {
126           mutt_error _("Mailbox is corrupt!");
127
128           return (-1);
129         }
130       }
131       else
132         hdr->received = t - tz;
133
134       hdr->env = mutt_read_rfc822_header (ctx->fp, hdr, 0, 0);
135
136       loc = ftello (ctx->fp);
137
138       if (hdr->content->length > 0 && hdr->lines > 0) {
139         tmploc = loc + hdr->content->length;
140
141         if (0 < tmploc && tmploc < ctx->size) {
142           if (fseeko (ctx->fp, tmploc, SEEK_SET) != 0 ||
143               fgets (buf, sizeof (buf) - 1, ctx->fp) == NULL ||
144               m_strcmp(MMDF_SEP, buf) != 0) {
145             fseeko (ctx->fp, loc, SEEK_SET);
146             hdr->content->length = -1;
147           }
148         }
149         else
150           hdr->content->length = -1;
151       }
152       else
153         hdr->content->length = -1;
154
155       if (hdr->content->length < 0) {
156         lines = -1;
157         do {
158           loc = ftello (ctx->fp);
159           if (fgets (buf, sizeof (buf) - 1, ctx->fp) == NULL)
160             break;
161           lines++;
162         } while (m_strcmp(buf, MMDF_SEP) != 0);
163
164         hdr->lines = lines;
165         hdr->content->length = loc - hdr->content->offset;
166       }
167
168       if (!hdr->env->return_path && return_path[0])
169         hdr->env->return_path =
170           rfc822_parse_adrlist (hdr->env->return_path, return_path);
171
172       if (!hdr->env->from)
173         hdr->env->from = address_list_dup (hdr->env->return_path);
174
175       ctx->msgcount++;
176     }
177     else {
178       mutt_error _("Mailbox is corrupt!");
179
180       return (-1);
181     }
182   }
183
184   if (ctx->msgcount > oldmsgcount)
185     mx_update_context (ctx, ctx->msgcount - oldmsgcount);
186
187   return (0);
188 }
189
190 /* Note that this function is also called when new mail is appended to the
191  * currently open folder, and NOT just when the mailbox is initially read.
192  *
193  * NOTE: it is assumed that the mailbox being read has been locked before
194  * this routine gets called.  Strange things could happen if it's not!
195  */
196 static int mbox_parse_mailbox (CONTEXT * ctx)
197 {
198   struct stat sb;
199   char buf[HUGE_STRING], return_path[STRING];
200   HEADER *curhdr;
201   time_t t, tz;
202   int count = 0, lines = 0;
203   off_t loc;
204
205   /* Save information about the folder at the time we opened it. */
206   if (stat (ctx->path, &sb) == -1) {
207     mutt_perror (ctx->path);
208     return (-1);
209   }
210
211   ctx->size = sb.st_size;
212   ctx->mtime = sb.st_mtime;
213
214   if (!ctx->readonly)
215     ctx->readonly = access (ctx->path, W_OK) ? 1 : 0;
216
217   /* precompute the local timezone to speed up calculation of the
218      date received */
219   tz = mutt_local_tz (0);
220
221   loc = ftello (ctx->fp);
222   while (fgets (buf, sizeof (buf), ctx->fp) != NULL) {
223     if (is_from (buf, return_path, sizeof (return_path), &t)) {
224       /* Save the Content-Length of the previous message */
225       if (count > 0) {
226 #define PREV ctx->hdrs[ctx->msgcount-1]
227
228         if (PREV->content->length < 0) {
229           PREV->content->length = loc - PREV->content->offset - 1;
230           if (PREV->content->length < 0)
231             PREV->content->length = 0;
232         }
233         if (!PREV->lines)
234           PREV->lines = lines ? lines - 1 : 0;
235       }
236
237       count++;
238
239       if (!ctx->quiet && ReadInc && ((count % ReadInc == 0) || count == 1))
240         mutt_message (_("Reading %s... %d (%d%%)"), ctx->path, count,
241                       (int) (ftello (ctx->fp) / (ctx->size / 100 + 1)));
242
243       if (ctx->msgcount == ctx->hdrmax)
244         mx_alloc_memory (ctx);
245
246       curhdr = ctx->hdrs[ctx->msgcount] = header_new();
247       curhdr->received = t - tz;
248       curhdr->offset = loc;
249       curhdr->index = ctx->msgcount;
250
251       curhdr->env = mutt_read_rfc822_header (ctx->fp, curhdr, 0, 0);
252
253       /* if we know how long this message is, either just skip over the body,
254        * or if we don't know how many lines there are, count them now (this will
255        * save time by not having to search for the next message marker).
256        */
257       if (curhdr->content->length > 0) {
258         off_t tmploc;
259
260         loc = ftello (ctx->fp);
261         tmploc = loc + curhdr->content->length + 1;
262
263         if (0 < tmploc && tmploc < ctx->size) {
264           /*
265            * check to see if the content-length looks valid.  we expect to
266            * to see a valid message separator at this point in the stream
267            */
268           if (fseeko (ctx->fp, tmploc, SEEK_SET) != 0 ||
269               fgets (buf, sizeof (buf), ctx->fp) == NULL ||
270               m_strncmp("From ", buf, 5) != 0) {
271             fseeko (ctx->fp, loc, SEEK_SET); /* nope, return the previous position */
272             curhdr->content->length = -1;
273           }
274         }
275         else if (tmploc != ctx->size) {
276           /* content-length would put us past the end of the file, so it
277            * must be wrong
278            */
279           curhdr->content->length = -1;
280         }
281
282         if (curhdr->content->length != -1) {
283           /* good content-length.  check to see if we know how many lines
284            * are in this message.
285            */
286           if (curhdr->lines == 0) {
287             int cl = curhdr->content->length;
288
289             /* count the number of lines in this message */
290             fseeko (ctx->fp, loc, SEEK_SET);
291             while (cl-- > 0) {
292               if (fgetc (ctx->fp) == '\n')
293                 curhdr->lines++;
294             }
295           }
296
297           /* return to the offset of the next message separator */
298           fseeko(ctx->fp, tmploc, SEEK_SET);
299         }
300       }
301
302       ctx->msgcount++;
303
304       if (!curhdr->env->return_path && return_path[0])
305         curhdr->env->return_path =
306           rfc822_parse_adrlist (curhdr->env->return_path, return_path);
307
308       if (!curhdr->env->from)
309         curhdr->env->from = address_list_dup (curhdr->env->return_path);
310
311       lines = 0;
312     }
313     else
314       lines++;
315
316     loc = ftello (ctx->fp);
317   }
318
319   /*
320    * Only set the content-length of the previous message if we have read more
321    * than one message during _this_ invocation.  If this routine is called
322    * when new mail is received, we need to make sure not to clobber what
323    * previously was the last message since the headers may be sorted.
324    */
325   if (count > 0) {
326     if (PREV->content->length < 0) {
327       PREV->content->length = ftello (ctx->fp) - PREV->content->offset - 1;
328       if (PREV->content->length < 0)
329         PREV->content->length = 0;
330     }
331
332     if (!PREV->lines)
333       PREV->lines = lines ? lines - 1 : 0;
334
335     mx_update_context (ctx, count);
336   }
337
338   return (0);
339 }
340
341 #undef PREV
342
343 /* open a mbox or mmdf style mailbox */
344 static int mbox_open_mailbox (CONTEXT * ctx)
345 {
346   int rc;
347
348   if ((ctx->fp = fopen (ctx->path, "r")) == NULL) {
349     mutt_perror (ctx->path);
350     return (-1);
351   }
352   mutt_block_signals ();
353   if (mbox_lock_mailbox (ctx, 0, 1) == -1) {
354     mutt_unblock_signals ();
355     return (-1);
356   }
357
358   if (ctx->magic == M_MBOX)
359     rc = mbox_parse_mailbox (ctx);
360   else if (ctx->magic == M_MMDF)
361     rc = mmdf_parse_mailbox (ctx);
362   else
363     rc = -1;
364
365   mbox_unlock_mailbox (ctx);
366   mutt_unblock_signals ();
367   return (rc);
368 }
369
370 /* check to see if the mailbox has changed on disk.
371  *
372  * return values:
373  *      M_REOPENED      mailbox has been reopened
374  *      M_NEW_MAIL      new mail has arrived!
375  *      M_LOCKED        couldn't lock the file
376  *      0               no change
377  *      -1              error
378  */
379 static int _mbox_check_mailbox (CONTEXT * ctx, int *index_hint)
380 {
381   struct stat st;
382   char buffer[LONG_STRING];
383   int unlock = 0;
384   int modified = 0;
385
386   if (stat (ctx->path, &st) == 0) {
387     if (st.st_mtime == ctx->mtime && st.st_size == ctx->size)
388       return (0);
389
390     if (st.st_size == ctx->size) {
391       /* the file was touched, but it is still the same length, so just exit */
392       ctx->mtime = st.st_mtime;
393       return (0);
394     }
395
396     if (st.st_size > ctx->size) {
397       /* lock the file if it isn't already */
398       if (!ctx->locked) {
399         mutt_block_signals ();
400         if (mbox_lock_mailbox (ctx, 0, 0) == -1) {
401           mutt_unblock_signals ();
402           /* we couldn't lock the mailbox, but nothing serious happened:
403            * probably the new mail arrived: no reason to wait till we can
404            * parse it: we'll get it on the next pass
405            */
406           return (M_LOCKED);
407         }
408         unlock = 1;
409       }
410
411       /*
412        * Check to make sure that the only change to the mailbox is that 
413        * message(s) were appended to this file.  My heuristic is that we should
414        * see the message separator at *exactly* what used to be the end of the
415        * folder.
416        */
417       fseeko (ctx->fp, ctx->size, SEEK_SET);
418       if (fgets (buffer, sizeof (buffer), ctx->fp) != NULL) {
419         if ((ctx->magic == M_MBOX && m_strncmp("From ", buffer, 5) == 0)
420             || (ctx->magic == M_MMDF && m_strcmp(MMDF_SEP, buffer) == 0)) {
421           fseeko (ctx->fp, ctx->size, SEEK_SET);
422           if (ctx->magic == M_MBOX)
423             mbox_parse_mailbox (ctx);
424           else
425             mmdf_parse_mailbox (ctx);
426
427           /* Only unlock the folder if it was locked inside of this routine.
428            * It may have been locked elsewhere, like in
429            * mutt_checkpoint_mailbox().
430            */
431
432           if (unlock) {
433             mbox_unlock_mailbox (ctx);
434             mutt_unblock_signals ();
435           }
436
437           return (M_NEW_MAIL);  /* signal that new mail arrived */
438         }
439         else
440           modified = 1;
441       } else {
442         modified = 1;
443       }
444     } else {
445       modified = 1;
446     }
447   }
448
449   if (modified) {
450     if (mbox_reopen_mailbox (ctx, index_hint) != -1) {
451       if (unlock) {
452         mbox_unlock_mailbox (ctx);
453         mutt_unblock_signals ();
454       }
455       return (M_REOPENED);
456     }
457   }
458
459   /* fatal error */
460
461   mbox_unlock_mailbox (ctx);
462   mx_fastclose_mailbox (ctx);
463   mutt_unblock_signals ();
464   mutt_error _("Mailbox was corrupted!");
465
466   return (-1);
467 }
468
469 static int mbox_check_mailbox (CONTEXT* ctx, int* index_hint, int lock) {
470   int rc = 0;
471
472   if (lock) {
473     mutt_block_signals ();
474     if (mbox_lock_mailbox (ctx, 0, 0) == -1) {
475       mutt_unblock_signals ();
476       return M_LOCKED;
477     }
478   }
479
480   rc = _mbox_check_mailbox (ctx, index_hint);
481
482   if (lock) {
483     mutt_unblock_signals ();
484     mbox_unlock_mailbox (ctx);
485   }
486   return rc;
487 }
488
489 /* return values:
490  *      0       success
491  *      -1      failure
492  */
493 static int mbox_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)), int *index_hint)
494 {
495   char tempfile[_POSIX_PATH_MAX];
496   char buf[32];
497   int i, j, save_sort = SORT_ORDER;
498   int rc = -1;
499   int need_sort = 0;            /* flag to resort mailbox if new mail arrives */
500   int first = -1;               /* first message to be written */
501   off_t offset;                /* location in mailbox to write changed messages */
502   struct stat statbuf;
503   struct utimbuf utimebuf;
504   struct m_update_t *newOffset = NULL;
505   struct m_update_t *oldOffset = NULL;
506   FILE *fp = NULL;
507
508   /* sort message by their position in the mailbox on disk */
509   if (Sort != SORT_ORDER) {
510     save_sort = Sort;
511     Sort = SORT_ORDER;
512     mutt_sort_headers (ctx, 0);
513     Sort = save_sort;
514     need_sort = 1;
515   }
516
517   /* need to open the file for writing in such a way that it does not truncate
518    * the file, so use read-write mode.
519    */
520   if ((ctx->fp = freopen (ctx->path, "r+", ctx->fp)) == NULL) {
521     mx_fastclose_mailbox (ctx);
522     mutt_error _("Fatal error!  Could not reopen mailbox!");
523
524     return (-1);
525   }
526
527   mutt_block_signals ();
528
529   if (mbox_lock_mailbox (ctx, 1, 1) == -1) {
530     mutt_unblock_signals ();
531     mutt_error _("Unable to lock mailbox!");
532
533     goto bail;
534   }
535
536   /* Check to make sure that the file hasn't changed on disk */
537   if ((i = _mbox_check_mailbox (ctx, index_hint)) == M_NEW_MAIL
538       || i == M_REOPENED) {
539     /* new mail arrived, or mailbox reopened */
540     need_sort = i;
541     rc = i;
542     goto bail;
543   }
544   else if (i < 0)
545     /* fatal error */
546     return (-1);
547
548   /* Create a temporary file to write the new version of the mailbox in. */
549   fp = m_tempfile(tempfile, _POSIX_PATH_MAX, NONULL(MCore.tmpdir), NULL);
550   if (fp == NULL) {
551     mutt_error _("Could not create temporary file!");
552     mutt_sleep (5);
553     goto bail;
554   }
555
556   /* find the first deleted/changed message.  we save a lot of time by only
557    * rewriting the mailbox from the point where it has actually changed.
558    */
559   for (i = 0; i < ctx->msgcount && !ctx->hdrs[i]->deleted &&
560        !ctx->hdrs[i]->changed && !ctx->hdrs[i]->attach_del; i++);
561   if (i == ctx->msgcount) {
562     /* this means ctx->changed or ctx->deleted was set, but no
563      * messages were found to be changed or deleted.  This should
564      * never happen, is we presume it is a bug in mutt.
565      */
566     mutt_error
567       _("sync: mbox modified, but no modified messages! (report this bug)");
568     mutt_sleep (5);             /* the mutt_error /will/ get cleared! */
569     unlink (tempfile);
570     goto bail;
571   }
572
573   /* save the index of the first changed/deleted message */
574   first = i;
575   /* where to start overwriting */
576   offset = ctx->hdrs[i]->offset;
577
578   /* the offset stored in the header does not include the MMDF_SEP, so make
579    * sure we seek to the correct location
580    */
581   if (ctx->magic == M_MMDF)
582     offset -= (sizeof MMDF_SEP - 1);
583
584   /* allocate space for the new offsets */
585   newOffset = p_new(struct m_update_t, ctx->msgcount - first);
586   oldOffset = p_new(struct m_update_t, ctx->msgcount - first);
587
588   for (i = first, j = 0; i < ctx->msgcount; i++) {
589     /*
590      * back up some information which is needed to restore offsets when
591      * something fails.
592      */
593
594     oldOffset[i - first].valid = 1;
595     oldOffset[i - first].hdr = ctx->hdrs[i]->offset;
596     oldOffset[i - first].body = ctx->hdrs[i]->content->offset;
597     oldOffset[i - first].lines = ctx->hdrs[i]->lines;
598     oldOffset[i - first].length = ctx->hdrs[i]->content->length;
599
600     if (!ctx->hdrs[i]->deleted) {
601       j++;
602       if (!ctx->quiet && WriteInc && ((i % WriteInc) == 0 || j == 1))
603         mutt_message (_("Writing messages... %d (%d%%)"), i,
604                       (int) (ftello (ctx->fp) / (ctx->size / 100 + 1)));
605
606       if (ctx->magic == M_MMDF) {
607         if (fputs (MMDF_SEP, fp) == EOF) {
608           mutt_perror (_("Can't create temporary file"));
609           mutt_sleep (5);
610           unlink (tempfile);
611           goto bail;
612         }
613       }
614
615       /* save the new offset for this message.  we add `offset' because the
616        * temporary file only contains saved message which are located after
617        * `offset' in the real mailbox
618        */
619       newOffset[i - first].hdr = ftello (fp) + offset;
620
621       if (mutt_copy_message
622           (fp, ctx, ctx->hdrs[i], M_CM_UPDATE,
623            CH_FROM | CH_UPDATE | CH_UPDATE_LEN) == -1) {
624         mutt_perror (_("Can't create temporary file"));
625         mutt_sleep (5);
626         unlink (tempfile);
627         goto bail;
628       }
629
630       /* Since messages could have been deleted, the offsets stored in memory
631        * will be wrong, so update what we can, which is the offset of this
632        * message, and the offset of the body.  If this is a multipart message,
633        * we just flush the in memory cache so that the message will be reparsed
634        * if the user accesses it later.
635        */
636       newOffset[i - first].body =
637         ftello (fp) - ctx->hdrs[i]->content->length + offset;
638       body_list_wipe(&ctx->hdrs[i]->content->parts);
639
640       switch (ctx->magic) {
641       case M_MMDF:
642         if (fputs (MMDF_SEP, fp) == EOF) {
643           mutt_perror (_("Can't create temporary file"));
644           mutt_sleep (5);
645           unlink (tempfile);
646           goto bail;
647         }
648         break;
649       default:
650         if (fputs ("\n", fp) == EOF) {
651           mutt_perror (_("Can't create temporary file"));
652           mutt_sleep (5);
653           unlink (tempfile);
654           goto bail;
655         }
656       }
657     }
658   }
659
660   if (m_fclose(&fp) != 0) {
661     unlink (tempfile);
662     mutt_perror (_("Can't create temporary file"));
663     mutt_sleep (5);
664     goto bail;
665   }
666
667   /* Save the state of this folder. */
668   if (stat (ctx->path, &statbuf) == -1) {
669     mutt_perror (ctx->path);
670     mutt_sleep (5);
671     unlink (tempfile);
672     goto bail;
673   }
674
675   if ((fp = fopen (tempfile, "r")) == NULL) {
676     mutt_unblock_signals ();
677     mx_fastclose_mailbox (ctx);
678     mutt_perror (_("Can't create temporary file"));
679     mutt_sleep (5);
680     return (-1);
681   }
682
683   if (fseeko (ctx->fp, offset, SEEK_SET) != 0 || /* seek the append location */
684       /* do a sanity check to make sure the mailbox looks ok */
685       fgets (buf, sizeof (buf), ctx->fp) == NULL ||
686       (ctx->magic == M_MBOX && m_strncmp("From ", buf, 5) != 0) ||
687       (ctx->magic == M_MMDF && m_strcmp(MMDF_SEP, buf) != 0)) {
688     i = -1;
689   }
690   else {
691     if (fseeko (ctx->fp, offset, SEEK_SET) != 0) {       /* return to proper offset */
692       i = -1;
693     } else {
694       /* copy the temp mailbox back into place starting at the first
695        * change/deleted message
696        */
697       mutt_message _("Committing changes...");
698
699       i = mutt_copy_stream (fp, ctx->fp);
700
701       if (ferror (ctx->fp))
702         i = -1;
703     }
704     if (i == 0) {
705       ctx->size = ftello (ctx->fp);      /* update the size of the mailbox */
706       ftruncate (fileno (ctx->fp), ctx->size);
707     }
708   }
709
710   m_fclose(&fp);
711   mbox_unlock_mailbox (ctx);
712
713   if (m_fclose(&ctx->fp) != 0 || i == -1) {
714     /* error occured while writing the mailbox back, so keep the temp copy
715      * around
716      */
717
718     char savefile[_POSIX_PATH_MAX];
719
720     snprintf(savefile, sizeof (savefile), "%s/mutt.%s-%u",
721              NONULL(MCore.tmpdir), NONULL(MCore.username), (unsigned int)getpid());
722     rename (tempfile, savefile);
723     mutt_unblock_signals ();
724     mx_fastclose_mailbox (ctx);
725     mutt_pretty_mailbox (savefile);
726     mutt_error (_("Write failed!  Saved partial mailbox to %s"), savefile);
727     mutt_sleep (5);
728     return (-1);
729   }
730
731   /* Restore the previous access/modification times */
732   utimebuf.actime = statbuf.st_atime;
733   utimebuf.modtime = statbuf.st_mtime;
734   utime (ctx->path, &utimebuf);
735
736   /* reopen the mailbox in read-only mode */
737   if ((ctx->fp = fopen (ctx->path, "r")) == NULL) {
738     unlink (tempfile);
739     mutt_unblock_signals ();
740     mx_fastclose_mailbox (ctx);
741     mutt_error _("Fatal error!  Could not reopen mailbox!");
742     return (-1);
743   }
744
745   /* update the offsets of the rewritten messages */
746   for (i = first, j = first; i < ctx->msgcount; i++) {
747     if (!ctx->hdrs[i]->deleted) {
748       ctx->hdrs[i]->offset = newOffset[i - first].hdr;
749       ctx->hdrs[i]->content->hdr_offset = newOffset[i - first].hdr;
750       ctx->hdrs[i]->content->offset = newOffset[i - first].body;
751       ctx->hdrs[i]->index = j++;
752     }
753   }
754   p_delete(&newOffset);
755   p_delete(&oldOffset);
756   unlink (tempfile);            /* remove partial copy of the mailbox */
757   mutt_unblock_signals ();
758
759   return (0);                   /* signal success */
760
761 bail:                          /* Come here in case of disaster */
762
763   m_fclose(&fp);
764
765   /* restore offsets, as far as they are valid */
766   if (first >= 0 && oldOffset) {
767     for (i = first; i < ctx->msgcount && oldOffset[i - first].valid; i++) {
768       ctx->hdrs[i]->offset = oldOffset[i - first].hdr;
769       ctx->hdrs[i]->content->hdr_offset = oldOffset[i - first].hdr;
770       ctx->hdrs[i]->content->offset = oldOffset[i - first].body;
771       ctx->hdrs[i]->lines = oldOffset[i - first].lines;
772       ctx->hdrs[i]->content->length = oldOffset[i - first].length;
773     }
774   }
775
776   /* this is ok to call even if we haven't locked anything */
777   mbox_unlock_mailbox (ctx);
778
779   mutt_unblock_signals ();
780   p_delete(&newOffset);
781   p_delete(&oldOffset);
782
783   if ((ctx->fp = freopen (ctx->path, "r", ctx->fp)) == NULL) {
784     mutt_error _("Could not reopen mailbox!");
785
786     mx_fastclose_mailbox (ctx);
787     return (-1);
788   }
789
790   if (need_sort)
791     /* if the mailbox was reopened, the thread tree will be invalid so make
792      * sure to start threading from scratch.  */
793     mutt_sort_headers (ctx, (need_sort == M_REOPENED));
794
795   return rc;
796 }
797
798 /* close a mailbox opened in write-mode */
799 int mbox_close_mailbox (CONTEXT * ctx)
800 {
801   mx_unlock_file (ctx->path, fileno (ctx->fp), 1);
802
803   if (ctx->cinfo)
804     mutt_slow_close_compressed (ctx);
805
806   mutt_unblock_signals ();
807   mx_fastclose_mailbox (ctx);
808   return 0;
809 }
810
811 static int mbox_reopen_mailbox (CONTEXT * ctx, int *index_hint)
812 {
813   int (*cmp_headers) (const HEADER *, const HEADER *) = NULL;
814   HEADER **old_hdrs;
815   int old_msgcount;
816   int msg_mod = 0;
817   int index_hint_set;
818   int i, j;
819   int rc = -1;
820
821   /* silent operations */
822   ctx->quiet = 1;
823
824   mutt_message _("Reopening mailbox...");
825
826   /* our heuristics require the old mailbox to be unsorted */
827   if (Sort != SORT_ORDER) {
828     short old_sort;
829
830     old_sort = Sort;
831     Sort = SORT_ORDER;
832     mutt_sort_headers (ctx, 1);
833     Sort = old_sort;
834   }
835
836   old_hdrs = NULL;
837   old_msgcount = 0;
838
839   /* simulate a close */
840   if (ctx->id_hash)
841     hash_delete (&ctx->id_hash, NULL);
842   if (ctx->subj_hash)
843     hash_delete (&ctx->subj_hash, NULL);
844   mutt_clear_threads (ctx);
845   p_delete(&ctx->v2r);
846   if (ctx->readonly) {
847     for (i = 0; i < ctx->msgcount; i++)
848       header_delete(&(ctx->hdrs[i]));       /* nothing to do! */
849     p_delete(&ctx->hdrs);
850   }
851   else {
852     /* save the old headers */
853     old_msgcount = ctx->msgcount;
854     old_hdrs = ctx->hdrs;
855     ctx->hdrs = NULL;
856   }
857
858   ctx->hdrmax = 0;              /* force allocation of new headers */
859   ctx->msgcount = 0;
860   ctx->vcount = 0;
861   ctx->tagged = 0;
862   ctx->deleted = 0;
863   ctx->new = 0;
864   ctx->unread = 0;
865   ctx->flagged = 0;
866   ctx->changed = 0;
867   ctx->id_hash = NULL;
868   ctx->subj_hash = NULL;
869
870   switch (ctx->magic) {
871   case M_MBOX:
872   case M_MMDF:
873     if (fseeko (ctx->fp, 0, SEEK_SET) != 0) {
874       rc = -1;
875     }
876     else {
877       cmp_headers = mutt_cmp_header;
878       if (ctx->magic == M_MBOX)
879         rc = mbox_parse_mailbox (ctx);
880       else
881         rc = mmdf_parse_mailbox (ctx);
882     }
883     break;
884
885   default:
886     rc = -1;
887     break;
888   }
889
890   if (rc == -1) {
891     /* free the old headers */
892     for (j = 0; j < old_msgcount; j++)
893       header_delete(&(old_hdrs[j]));
894     p_delete(&old_hdrs);
895
896     ctx->quiet = 0;
897     return (-1);
898   }
899
900   /* now try to recover the old flags */
901
902   index_hint_set = (index_hint == NULL);
903
904   if (!ctx->readonly) {
905     for (i = 0; i < ctx->msgcount; i++) {
906       int found = 0;
907
908       /* some messages have been deleted, and new  messages have been
909        * appended at the end; the heuristic is that old messages have then
910        * "advanced" towards the beginning of the folder, so we begin the
911        * search at index "i"
912        */
913       for (j = i; j < old_msgcount; j++) {
914         if (old_hdrs[j] == NULL)
915           continue;
916         if (cmp_headers (ctx->hdrs[i], old_hdrs[j])) {
917           found = 1;
918           break;
919         }
920       }
921       if (!found) {
922         for (j = 0; j < i && j < old_msgcount; j++) {
923           if (old_hdrs[j] == NULL)
924             continue;
925           if (cmp_headers (ctx->hdrs[i], old_hdrs[j])) {
926             found = 1;
927             break;
928           }
929         }
930       }
931
932       if (found) {
933         /* this is best done here */
934         if (!index_hint_set && *index_hint == j)
935           *index_hint = i;
936
937         if (old_hdrs[j]->changed) {
938           /* Only update the flags if the old header was changed;
939            * otherwise, the header may have been modified externally,
940            * and we don't want to lose _those_ changes
941            */
942           mutt_set_flag (ctx, ctx->hdrs[i], M_FLAG, old_hdrs[j]->flagged);
943           mutt_set_flag (ctx, ctx->hdrs[i], M_REPLIED, old_hdrs[j]->replied);
944           mutt_set_flag (ctx, ctx->hdrs[i], M_OLD, old_hdrs[j]->old);
945           mutt_set_flag (ctx, ctx->hdrs[i], M_READ, old_hdrs[j]->read);
946         }
947         mutt_set_flag (ctx, ctx->hdrs[i], M_DELETE, old_hdrs[j]->deleted);
948         mutt_set_flag (ctx, ctx->hdrs[i], M_TAG, old_hdrs[j]->tagged);
949
950         /* we don't need this header any more */
951         header_delete(&(old_hdrs[j]));
952       }
953     }
954
955     /* free the remaining old headers */
956     for (j = 0; j < old_msgcount; j++) {
957       if (old_hdrs[j]) {
958         header_delete(&(old_hdrs[j]));
959         msg_mod = 1;
960       }
961     }
962     p_delete(&old_hdrs);
963   }
964
965   ctx->quiet = 0;
966
967   return ((ctx->changed || msg_mod) ? M_REOPENED : M_NEW_MAIL);
968 }
969
970 /*
971  * Returns:
972  * 1 if the mailbox is not empty
973  * 0 if the mailbox is empty
974  * -1 on error
975  */
976 int mbox_check_empty (const char *path)
977 {
978   struct stat st;
979
980   if (stat (path, &st) == -1)
981     return -1;
982
983   return ((st.st_size == 0));
984 }
985
986 int mbox_is_magic (const char* path, struct stat* st) {
987   int magic = -1;
988   FILE* f;
989   char tmp[_POSIX_PATH_MAX];
990
991   if (S_ISDIR(st->st_mode))
992     return (-1);
993
994   if (st->st_size == 0) {
995     /* hard to tell what zero-length files are, so assume the default magic */
996     if (DefaultMagic == M_MBOX || DefaultMagic == M_MMDF)
997       return (DefaultMagic);
998     else
999       return (M_MBOX);
1000   }
1001   else if ((f = fopen (path, "r")) != NULL) {
1002     struct utimbuf times;
1003
1004     fgets (tmp, sizeof (tmp), f);
1005     if (m_strncmp("From ", tmp, 5) == 0)
1006       magic = M_MBOX;
1007     else if (m_strcmp(MMDF_SEP, tmp) == 0)
1008       magic = M_MMDF;
1009     m_fclose(&f);
1010
1011     /* need to restore the times here, the file was not really accessed,
1012      * only the type was accessed.  This is important, because detection
1013      * of "new mail" depends on those times set correctly.
1014      */
1015     times.actime = st->st_atime;
1016     times.modtime = st->st_mtime;
1017     utime (path, &times);
1018   } else {
1019     mutt_perror (path);
1020     return (-1);         /* fopen failed */
1021   }
1022
1023   if (magic == -1 && mutt_can_read_compressed (path))
1024     return (M_COMPRESSED);
1025   return (magic);
1026 }
1027
1028 static int commit_message (MESSAGE* msg, CONTEXT* ctx __attribute__ ((unused)), int mbox) {
1029   if ((mbox && fputc ('\n', msg->fp) == EOF) ||
1030       (!mbox && fputs (MMDF_SEP, msg->fp) == EOF))
1031     return (-1);
1032   if ((fflush (msg->fp) == EOF || fsync (fileno (msg->fp)) == -1)) {
1033     mutt_perror (_("Can't write message"));
1034     return (-1);
1035   }
1036   return (0);
1037 }
1038
1039 static int mbox_commit_message (MESSAGE* msg, CONTEXT* ctx) {
1040   return (commit_message (msg, ctx, 1));
1041 }
1042
1043 static int mmdf_commit_message (MESSAGE* msg, CONTEXT* ctx) {
1044   return (commit_message (msg, ctx, 0));
1045 }
1046
1047 mx_t const mbox_mx = {
1048     M_MBOX,
1049     1,
1050     mbox_is_magic,
1051     mbox_check_empty,
1052     access,
1053     mbox_open_mailbox,
1054     mbox_open_new_message,
1055     NULL,
1056     mbox_check_mailbox,
1057     NULL,
1058     mbox_sync_mailbox,
1059     mbox_commit_message,
1060 };
1061
1062 mx_t const mmdf_mx = {
1063     M_MMDF,
1064     1,
1065     mbox_is_magic,
1066     mbox_check_empty,
1067     access,
1068     mbox_open_mailbox,
1069     mbox_open_new_message,
1070     NULL,
1071     mbox_check_mailbox,
1072     NULL,
1073     mbox_sync_mailbox,
1074     mmdf_commit_message,
1075 };