2009-03-27 [colin] 3.7.1cvs27
[claws.git] / src / mbox.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2009 Hiroyuki Yamamoto and the Claws Mail team
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  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24
25 #define _GNU_SOURCE
26 #include <stdio.h>
27
28 #include "defs.h"
29 #include <glib.h>
30 #include <glib/gi18n.h>
31 #include <stdlib.h>
32 #include <unistd.h>
33 #include <string.h>
34 #include <fcntl.h>
35 #include <sys/file.h>
36 #include <ctype.h>
37 #include <time.h>
38 #include <errno.h>
39
40 #ifdef G_OS_WIN32
41 #  include <w32lib.h>
42 #endif
43
44 #include "mbox.h"
45 #include "procmsg.h"
46 #include "folder.h"
47 #include "prefs_common.h"
48 #include "prefs_account.h"
49 #include "account.h"
50 #include "utils.h"
51 #include "filtering.h"
52 #include "alertpanel.h"
53 #include "statusbar.h"
54
55 #define MSGBUFSIZE      8192
56
57 #ifdef HAVE_FGETS_UNLOCKED
58 #define SC_FGETS fgets_unlocked
59 #define SC_FPUTS fputs_unlocked
60 #define SC_FPUTC fputc_unlocked
61 #else
62 #define SC_FGETS fgets
63 #define SC_FPUTS fputs
64 #define SC_FPUTC fputc
65 #endif
66
67 #define FPUTS_TO_TMP_ABORT_IF_FAIL(s) \
68 { \
69         lines++; \
70         if (fputs(s, tmp_fp) == EOF) { \
71                 g_warning("can't write to temporary file\n"); \
72                 fclose(tmp_fp); \
73                 fclose(mbox_fp); \
74                 claws_unlink(tmp_file); \
75                 g_free(tmp_file); \
76                 return -1; \
77         } \
78 }
79
80 gint proc_mbox(FolderItem *dest, const gchar *mbox, gboolean apply_filter,
81                PrefsAccount *account)
82 /* return values: -1 error, >=0 number of msgs added */
83 {
84         FILE *mbox_fp;
85         gchar buf[MSGBUFSIZE];
86         gchar *tmp_file;
87         gint msgs = 0;
88         gint lines;
89         MsgInfo *msginfo;
90         gboolean more;
91         GSList *to_filter = NULL, *filtered = NULL, *unfiltered = NULL, *cur, *to_add = NULL;
92         gboolean printed = FALSE;
93         FolderItem *dropfolder;
94
95         cm_return_val_if_fail(dest != NULL, -1);
96         cm_return_val_if_fail(mbox != NULL, -1);
97
98         debug_print("Getting messages from %s into %s...\n", mbox, dest->path);
99
100         if ((mbox_fp = g_fopen(mbox, "rb")) == NULL) {
101                 FILE_OP_ERROR(mbox, "fopen");
102                 alertpanel_error(_("Could not open mbox file:\n%s\n"), mbox);
103                 return -1;
104         }
105
106         /* ignore empty lines on the head */
107         do {
108                 if (fgets(buf, sizeof(buf), mbox_fp) == NULL) {
109                         g_warning("can't read mbox file.\n");
110                         fclose(mbox_fp);
111                         return -1;
112                 }
113         } while (buf[0] == '\n' || buf[0] == '\r');
114
115         if (strncmp(buf, "From ", 5) != 0) {
116                 g_warning("invalid mbox format: %s\n", mbox);
117                 fclose(mbox_fp);
118                 return -1;
119         }
120
121         tmp_file = get_tmp_file();
122
123         folder_item_update_freeze();
124
125         if (apply_filter)
126                 dropfolder = folder_get_default_processing();
127         else
128                 dropfolder = dest;
129         
130         do {
131                 FILE *tmp_fp;
132                 gint empty_lines;
133                 gint msgnum;
134                 
135                 if (msgs > 0 && msgs%500 == 0) {
136                         if (printed)
137                                 statusbar_pop_all();
138                         statusbar_print_all(_("Importing from mbox... (%d mails imported)"), msgs);
139                         printed=TRUE;
140                         GTK_EVENTS_FLUSH();
141                 }
142         
143                 if ((tmp_fp = g_fopen(tmp_file, "wb")) == NULL) {
144                         FILE_OP_ERROR(tmp_file, "fopen");
145                         g_warning("can't open temporary file\n");
146                         fclose(mbox_fp);
147                         g_free(tmp_file);
148                         return -1;
149                 }
150                 if (change_file_mode_rw(tmp_fp, tmp_file) < 0) {
151                         FILE_OP_ERROR(tmp_file, "chmod");
152                 }
153
154                 empty_lines = 0;
155                 lines = 0;
156                 more = FALSE;
157
158                 /* process all lines from mboxrc file */
159                 while (fgets(buf, sizeof(buf), mbox_fp) != NULL) {
160                         int offset;
161
162                         /* eof not reached, expect more lines */
163                         more = TRUE;
164
165                         /* eat empty lines */
166                         if (buf[0] == '\n' || buf[0] == '\r') {
167                                 empty_lines++;
168                                 continue;
169                         }
170
171                         /* From separator or quoted From */
172                         offset = 0;
173                         /* detect leading '>' char(s) */
174                         while ((buf[offset] == '>')) {
175                                 offset++;
176                         }
177                         if (!strncmp(buf+offset, "From ", 5)) {
178                                 /* From separator: */
179                                 if (offset == 0) {
180                                         /* expect next mbox item */
181                                         break;
182                                 }
183
184                                 /* quoted From: */
185                                 /* flush any eaten empty line */
186                                 if (empty_lines > 0) {
187                                         while (empty_lines-- > 0) {
188                                                 FPUTS_TO_TMP_ABORT_IF_FAIL("\n");
189                                 }
190                                         empty_lines = 0;
191                                 }
192                                 /* store the unquoted line */
193                                 FPUTS_TO_TMP_ABORT_IF_FAIL(buf + 1);
194                                 continue;
195                         }
196
197                         /* other line */
198                         /* flush any eaten empty line */
199                         if (empty_lines > 0) {                  
200                                 while (empty_lines-- > 0) {
201                                         FPUTS_TO_TMP_ABORT_IF_FAIL("\n");
202                         }
203                                 empty_lines = 0;
204                         }
205                         /* store the line itself */
206                                         FPUTS_TO_TMP_ABORT_IF_FAIL(buf);
207                 }
208                 /* end of mbox item or end of mbox */
209
210                 /* flush any eaten empty line (but the last one) */
211                 if (empty_lines > 0) {
212                         while (--empty_lines > 0) {
213                                 FPUTS_TO_TMP_ABORT_IF_FAIL("\n");
214                         }
215                 }
216
217                 /* more emails to expect? */
218                 more = !feof(mbox_fp);
219
220                 /* warn if email part is empty (it's the minimum check 
221                    we can do */
222                 if (lines == 0) {
223                         g_warning("malformed mbox: %s: message %d is empty\n", mbox, msgs);
224                         fclose(tmp_fp);
225                         fclose(mbox_fp);
226                         claws_unlink(tmp_file);
227                         return -1;
228                 }
229
230                 if (fclose(tmp_fp) == EOF) {
231                         FILE_OP_ERROR(tmp_file, "fclose");
232                         g_warning("can't write to temporary file\n");
233                         fclose(mbox_fp);
234                         claws_unlink(tmp_file);
235                         g_free(tmp_file);
236                         return -1;
237                 }
238
239                 if (apply_filter) {
240                         if ((msgnum = folder_item_add_msg(dropfolder, tmp_file, NULL, TRUE)) < 0) {
241                                 fclose(mbox_fp);
242                                 claws_unlink(tmp_file);
243                                 g_free(tmp_file);
244                                 return -1;
245                         }
246                         msginfo = folder_item_get_msginfo(dropfolder, msgnum);
247                         to_filter = g_slist_prepend(to_filter, msginfo);
248                 } else {
249                         MsgFileInfo *finfo = g_new0(MsgFileInfo, 1);
250                         finfo->file = tmp_file;
251                         
252                         to_add = g_slist_prepend(to_add, finfo);
253                         tmp_file = get_tmp_file();
254                         
255                         /* flush every 500 */
256                         if (msgs > 0 && msgs % 500 == 0) {
257                                 folder_item_add_msgs(dropfolder, to_add, TRUE);
258                                 procmsg_message_file_list_free(to_add);
259                                 to_add = NULL;
260                         }
261                 }
262                 msgs++;
263         } while (more);
264
265         if (printed)
266                 statusbar_pop_all();
267
268         if (apply_filter) {
269
270                 folder_item_set_batch(dropfolder, FALSE);
271                 procmsg_msglist_filter(to_filter, account, 
272                                 &filtered, &unfiltered, TRUE);
273                 folder_item_set_batch(dropfolder, TRUE);
274
275                 filtering_move_and_copy_msgs(to_filter);
276                 for (cur = filtered; cur; cur = g_slist_next(cur)) {
277                         MsgInfo *info = (MsgInfo *)cur->data;
278                         procmsg_msginfo_free(info);
279                 }
280
281                 unfiltered = g_slist_reverse(unfiltered);
282                 folder_item_move_msgs(dest, unfiltered);
283                 for (cur = unfiltered; cur; cur = g_slist_next(cur)) {
284                         MsgInfo *info = (MsgInfo *)cur->data;
285                         procmsg_msginfo_free(info);
286                 }
287
288                 g_slist_free(unfiltered);
289                 g_slist_free(filtered);
290                 g_slist_free(to_filter);
291         } else if (to_add) {
292                 folder_item_add_msgs(dropfolder, to_add, TRUE);
293                 procmsg_message_file_list_free(to_add);
294                 to_add = NULL;
295         }
296
297         folder_item_update_thaw();
298         
299         g_free(tmp_file);
300         fclose(mbox_fp);
301         debug_print("%d messages found.\n", msgs);
302
303         return msgs;
304 }
305
306 gint lock_mbox(const gchar *base, LockType type)
307 {
308 #ifdef G_OS_UNIX
309         gint retval = 0;
310
311         if (type == LOCK_FILE) {
312                 gchar *lockfile, *locklink;
313                 gint retry = 0;
314                 FILE *lockfp;
315
316                 lockfile = g_strdup_printf("%s.%d", base, getpid());
317                 if ((lockfp = g_fopen(lockfile, "wb")) == NULL) {
318                         FILE_OP_ERROR(lockfile, "fopen");
319                         g_warning("can't create lock file %s\n", lockfile);
320                         g_warning("use 'flock' instead of 'file' if possible.\n");
321                         g_free(lockfile);
322                         return -1;
323                 }
324
325                 if (fprintf(lockfp, "%d\n", getpid()) < 0) {
326                         FILE_OP_ERROR(lockfile, "fprintf");
327                         g_free(lockfile);
328                         fclose(lockfp);
329                         return -1;
330                 }
331
332                 if (fclose(lockfp) == EOF) {
333                         FILE_OP_ERROR(lockfile, "fclose");
334                         g_free(lockfile);
335                         return -1;
336                 }
337
338                 locklink = g_strconcat(base, ".lock", NULL);
339                 while (link(lockfile, locklink) < 0) {
340                         FILE_OP_ERROR(lockfile, "link");
341                         if (retry >= 5) {
342                                 g_warning("can't create %s\n", lockfile);
343                                 claws_unlink(lockfile);
344                                 g_free(lockfile);
345                                 return -1;
346                         }
347                         if (retry == 0)
348                                 g_warning("mailbox is owned by another"
349                                             " process, waiting...\n");
350                         retry++;
351                         sleep(5);
352                 }
353                 claws_unlink(lockfile);
354                 g_free(lockfile);
355         } else if (type == LOCK_FLOCK) {
356                 gint lockfd;
357                 gboolean fcntled = FALSE;
358 #if HAVE_FCNTL_H && !defined(G_OS_WIN32)
359                 struct flock fl;
360                 fl.l_type = F_WRLCK;
361                 fl.l_whence = SEEK_SET;
362                 fl.l_start = 0;
363                 fl.l_len = 0;
364 #endif
365
366 #if HAVE_FLOCK
367                 if ((lockfd = g_open(base, O_RDWR, 0)) < 0) {
368 #else
369                 if ((lockfd = g_open(base, O_RDWR, 0)) < 0) {
370 #endif
371                         FILE_OP_ERROR(base, "open");
372                         return -1;
373                 }
374                 
375 #if HAVE_FCNTL_H && !defined(G_OS_WIN32)
376                 if (fcntl(lockfd, F_SETLK, &fl) == -1) {
377                         g_warning("can't fnctl %s (%s)", base, strerror(errno));
378                         return -1;
379                 } else {
380                         fcntled = TRUE;
381                 }
382 #endif
383
384 #if HAVE_FLOCK
385                 if (flock(lockfd, LOCK_EX|LOCK_NB) < 0 && !fcntled) {
386                         perror("flock");
387 #else
388 #if HAVE_LOCKF
389                 if (lockf(lockfd, F_TLOCK, 0) < 0 && !fcntled) {
390                         perror("lockf");
391 #else
392                 {
393 #endif
394 #endif /* HAVE_FLOCK */
395                         g_warning("can't lock %s\n", base);
396                         if (close(lockfd) < 0)
397                                 perror("close");
398                         return -1;
399                 }
400                 retval = lockfd;
401         } else {
402                 g_warning("invalid lock type\n");
403                 return -1;
404         }
405
406         return retval;
407 #else
408         return -1;
409 #endif /* G_OS_UNIX */
410 }
411
412 gint unlock_mbox(const gchar *base, gint fd, LockType type)
413 {
414         if (type == LOCK_FILE) {
415                 gchar *lockfile;
416
417                 lockfile = g_strconcat(base, ".lock", NULL);
418                 if (claws_unlink(lockfile) < 0) {
419                         FILE_OP_ERROR(lockfile, "unlink");
420                         g_free(lockfile);
421                         return -1;
422                 }
423                 g_free(lockfile);
424
425                 return 0;
426         } else if (type == LOCK_FLOCK) {
427                 gboolean fcntled = FALSE;
428 #if HAVE_FCNTL_H && !defined(G_OS_WIN32)
429                 struct flock fl;
430                 fl.l_type = F_UNLCK;
431                 fl.l_whence = SEEK_SET;
432                 fl.l_start = 0;
433                 fl.l_len = 0;
434
435                 if (fcntl(fd, F_SETLK, &fl) == -1) {
436                         g_warning("can't fnctl %s", base);
437                 } else {
438                         fcntled = TRUE;
439                 }
440 #endif
441 #if HAVE_FLOCK
442                 if (flock(fd, LOCK_UN) < 0 && !fcntled) {
443                         perror("flock");
444 #else
445 #if HAVE_LOCKF
446                 if (lockf(fd, F_ULOCK, 0) < 0 && !fcntled) {
447                         perror("lockf");
448 #else
449                 {
450 #endif
451 #endif /* HAVE_FLOCK */
452                         g_warning("can't unlock %s\n", base);
453                         if (close(fd) < 0)
454                                 perror("close");
455                         return -1;
456                 }
457
458                 if (close(fd) < 0) {
459                         perror("close");
460                         return -1;
461                 }
462
463                 return 0;
464         }
465
466         g_warning("invalid lock type\n");
467         return -1;
468 }
469
470 gint copy_mbox(gint srcfd, const gchar *dest)
471 {
472         FILE *dest_fp;
473         ssize_t n_read;
474         gchar buf[BUFSIZ];
475         gboolean err = FALSE;
476         int save_errno = 0;
477
478         if (srcfd < 0) {
479                 return -1;
480         }
481
482         if ((dest_fp = g_fopen(dest, "wb")) == NULL) {
483                 FILE_OP_ERROR(dest, "fopen");
484                 return -1;
485         }
486
487         if (change_file_mode_rw(dest_fp, dest) < 0) {
488                 FILE_OP_ERROR(dest, "chmod");
489                 g_warning("can't change file mode\n");
490         }
491
492         while ((n_read = read(srcfd, buf, sizeof(buf))) > 0) {
493                 if (n_read == -1 && errno != 0) {
494                         save_errno = errno;
495                         break;
496                 }
497                 if (fwrite(buf, 1, n_read, dest_fp) < n_read) {
498                         g_warning("writing to %s failed.\n", dest);
499                         fclose(dest_fp);
500                         claws_unlink(dest);
501                         return -1;
502                 }
503         }
504
505         if (save_errno != 0) {
506                 g_warning("error %d reading mbox: %s\n", save_errno,
507                                 strerror(save_errno));
508                 err = TRUE;
509         }
510
511         if (fclose(dest_fp) == EOF) {
512                 FILE_OP_ERROR(dest, "fclose");
513                 err = TRUE;
514         }
515
516         if (err) {
517                 claws_unlink(dest);
518                 return -1;
519         }
520
521         return 0;
522 }
523
524 void empty_mbox(const gchar *mbox)
525 {
526         FILE *fp;
527
528         if ((fp = g_fopen(mbox, "wb")) == NULL) {
529                 FILE_OP_ERROR(mbox, "fopen");
530                 g_warning("can't truncate mailbox to zero.\n");
531                 return;
532         }
533         fclose(fp);
534 }
535
536 gint export_list_to_mbox(GSList *mlist, const gchar *mbox)
537 /* return values: -2 skipped, -1 error, 0 OK */
538 {
539         GSList *cur;
540         MsgInfo *msginfo;
541         FILE *msg_fp;
542         FILE *mbox_fp;
543         gchar buf[BUFFSIZE];
544         int err = 0;
545
546         gint msgs = 1, total = g_slist_length(mlist);
547         if (g_file_test(mbox, G_FILE_TEST_EXISTS) == TRUE) {
548                 if (alertpanel_full(_("Overwrite mbox file"),
549                                         _("This file already exists. Do you want to overwrite it?"),
550                                         GTK_STOCK_CANCEL, _("Overwrite"), NULL, FALSE,
551                                         NULL, ALERT_WARNING, G_ALERTDEFAULT)
552                                 != G_ALERTALTERNATE) {
553                         return -2;
554                 }
555         }
556
557         if ((mbox_fp = g_fopen(mbox, "wb")) == NULL) {
558                 FILE_OP_ERROR(mbox, "fopen");
559                 alertpanel_error(_("Could not create mbox file:\n%s\n"), mbox);
560                 return -1;
561         }
562
563 #ifdef HAVE_FGETS_UNLOCKED
564         flockfile(mbox_fp);
565 #endif
566
567         statuswindow_print_all(_("Exporting to mbox..."));
568         for (cur = mlist; cur != NULL; cur = cur->next) {
569                 int len;
570                 gchar buft[BUFFSIZE];
571                 msginfo = (MsgInfo *)cur->data;
572
573                 msg_fp = procmsg_open_message(msginfo);
574                 if (!msg_fp) {
575                         continue;
576                 }
577
578 #ifdef HAVE_FGETS_UNLOCKED
579                 flockfile(msg_fp);
580 #endif
581                 strncpy2(buf,
582                          msginfo->from ? msginfo->from :
583                          cur_account && cur_account->address ?
584                          cur_account->address : "unknown",
585                          sizeof(buf));
586                 extract_address(buf);
587
588                 if (fprintf(mbox_fp, "From %s %s",
589                         buf, ctime_r(&msginfo->date_t, buft)) < 0) {
590                         err = -1;
591 #ifdef HAVE_FGETS_UNLOCKED
592                         funlockfile(msg_fp);
593 #endif
594                         fclose(msg_fp);
595                         goto out;
596                 }
597
598                 buf[0] = '\0';
599                 
600                 /* write email to mboxrc */
601                 while (SC_FGETS(buf, sizeof(buf), msg_fp) != NULL) {
602                         /* quote any From, >From, >>From, etc., according to mbox format specs */
603                         int offset;
604
605                         offset = 0;
606                         /* detect leading '>' char(s) */
607                         while ((buf[offset] == '>')) {
608                                 offset++;
609                         }
610                         if (!strncmp(buf+offset, "From ", 5)) {
611                                 if (SC_FPUTC('>', mbox_fp) == EOF) {
612                                         err = -1;
613 #ifdef HAVE_FGETS_UNLOCKED
614                                         funlockfile(msg_fp);
615 #endif
616                                         fclose(msg_fp);
617                                         goto out;
618                                 }
619                         }
620                         if (SC_FPUTS(buf, mbox_fp) == EOF) {
621                                 err = -1;
622 #ifdef HAVE_FGETS_UNLOCKED
623                                 funlockfile(msg_fp);
624 #endif
625                                 fclose(msg_fp);
626                                 goto out;
627                         }
628                 }
629
630                 /* force last line to end w/ a newline */
631                 len = strlen(buf);
632                 if (len > 0) {
633                         len--;
634                         if ((buf[len] != '\n') && (buf[len] != '\r')) {
635                                 if (SC_FPUTC('\n', mbox_fp) == EOF) {
636                                         err = -1;
637 #ifdef HAVE_FGETS_UNLOCKED
638                                         funlockfile(msg_fp);
639 #endif
640                                         fclose(msg_fp);
641                                         goto out;
642                                 }
643                         }
644                 }
645
646                 /* add a trailing empty line */
647                 if (SC_FPUTC('\n', mbox_fp) == EOF) {
648                         err = -1;
649 #ifdef HAVE_FGETS_UNLOCKED
650                         funlockfile(msg_fp);
651 #endif
652                         fclose(msg_fp);
653                         goto out;
654                 }
655
656 #ifdef HAVE_FGETS_UNLOCKED
657                 funlockfile(msg_fp);
658 #endif
659                 fclose(msg_fp);
660                 statusbar_progress_all(msgs++,total, 500);
661                 if (msgs%500 == 0)
662                         GTK_EVENTS_FLUSH();
663         }
664
665 out:
666         statusbar_progress_all(0,0,0);
667         statuswindow_pop_all();
668
669 #ifdef HAVE_FGETS_UNLOCKED
670         funlockfile(mbox_fp);
671 #endif
672         fclose(mbox_fp);
673
674         return err;
675 }
676
677 /* read all messages in SRC, and store them into one MBOX file. */
678 /* return values: -2 skipped, -1 error, 0 OK */
679 gint export_to_mbox(FolderItem *src, const gchar *mbox)
680 {
681         GSList *mlist;
682         gint ret;
683         
684         cm_return_val_if_fail(src != NULL, -1);
685         cm_return_val_if_fail(src->folder != NULL, -1);
686         cm_return_val_if_fail(mbox != NULL, -1);
687
688         debug_print("Exporting messages from %s into %s...\n",
689                     src->path, mbox);
690
691         mlist = folder_item_get_msg_list(src);
692
693         folder_item_update_freeze();
694         ret = export_list_to_mbox(mlist, mbox);
695         folder_item_update_thaw();
696
697         procmsg_msg_list_free(mlist);
698
699         return ret;
700 }