Cosmetics in the error messages for safe functions.
[mymail.git] / mymail.c
1
2 /*
3  *  Copyright (c) 2013 Francois Fleuret
4  *  Written by Francois Fleuret <francois@fleuret.org>
5  *
6  *  This file is part of mymail.
7  *
8  *  mymail is free software: you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License version 3 as
10  *  published by the Free Software Foundation.
11  *
12  *  mymail is distributed in the hope that it will be useful, but
13  *  WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  *  General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with mymail.  If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21
22 /*
23
24   This command is a dumb mail indexer. It can either (1) scan
25   directories containing mbox files, and create a db file containing
26   for each mail a list of fields computed from the header, or (2)
27   read such a db file and get all the mails matching regexp-defined
28   conditions on the fields, to create a resulting mbox file.
29
30   It is low-tech, simple, light and fast.
31
32 */
33
34 #define _GNU_SOURCE
35
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <errno.h>
40 #include <fcntl.h>
41 #include <locale.h>
42 #include <getopt.h>
43 #include <limits.h>
44 #include <dirent.h>
45 #include <regex.h>
46 #include <time.h>
47
48 #define MYMAIL_DB_MAGIC_TOKEN "mymail_index_file"
49 #define MYMAIL_VERSION "0.9.9"
50
51 #define MYMAIL_DB_FORMAT_VERSION 1
52
53 #define MAX_NB_SEARCH_CONDITIONS 32
54
55 #define BUFFER_SIZE 65536
56 #define TOKEN_BUFFER_SIZE 1024
57
58 #define LEADING_FROM_LINE_REGEXP_STRING "^From .*\\(Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\|Sun\\) \\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct\\|Nov\\|Dec\\) [ 0123][0-9] [0-9][0-9]:[0-9][0-9]:[0-9][0-9] [0-9][0-9][0-9][0-9]\n$"
59
60 /********************************************************************/
61
62 struct alias_node {
63   char *alias, *value;
64   struct alias_node *next;
65 };
66
67 /* Global variables! */
68
69 int global_quiet;
70 int global_use_leading_time;
71 int global_nb_mails_max;
72 regex_t global_leading_from_line_regexp;
73 struct alias_node *global_alias_list;
74
75 /********************************************************************/
76
77 enum {
78   ID_MAIL = 0,
79   ID_LEADING_LINE,
80   ID_FROM,
81   ID_TO,
82   ID_SUBJECT,
83   ID_DATE,
84   ID_PARTICIPANT,
85   ID_BODY,
86   ID_TIME_INTERVAL,
87   MAX_ID
88 };
89
90 static char *field_keys[] = {
91   "mail",
92   "lead",
93   "from",
94   "to",
95   "subject",
96   "date",
97   "part",
98   "body",
99   "interval"
100 };
101
102 /********************************************************************/
103
104 struct search_condition {
105   int db_key;
106   regex_t db_value_regexp;
107   int negation;
108   time_t time_start, time_stop;
109 };
110
111 /********************************************************************/
112
113 struct parsable_field {
114   int id;
115   int cflags;
116   char *regexp_string;
117   regex_t regexp;
118 };
119
120 static struct parsable_field fields_to_parse[] = {
121   {
122     ID_LEADING_LINE,
123     0,
124     "^From ",
125     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
126   },
127
128   {
129     ID_FROM,
130     REG_ICASE,
131     "^\\(from\\|reply-to\\|sender\\|return-path\\): ",
132     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
133   },
134
135   {
136     ID_TO,
137     REG_ICASE,
138     "^\\(to\\|cc\\|bcc\\): ",
139     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
140   },
141
142   {
143     ID_SUBJECT,
144     REG_ICASE,
145     "^subject: ",
146     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
147   },
148
149   {
150     ID_DATE,
151     REG_ICASE,
152     "^date: ",
153     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
154   },
155
156 };
157
158 /********************************************************************/
159
160 int xor(int a, int b) {
161   return (a && !b) || (!a && b);
162 }
163
164 const char *parse_token(char *token_buffer, size_t token_buffer_size,
165                         char separator, const char *string) {
166   char *u = token_buffer;
167
168   while(*string == separator) { string++; }
169
170   while(u < token_buffer + token_buffer_size - 1 && *string && *string != separator) {
171     *(u++) = *(string++);
172   }
173
174   while(*string == separator) { string++; }
175
176   *u = '\0';
177   return string;
178 }
179
180 char *default_value(char *current_value,
181                     const char *env_variable,
182                     const char *hard_default_value) {
183   if(current_value) {
184     return current_value;
185   } else {
186     char *env_value = getenv(env_variable);
187     if(env_value) {
188       return strdup(env_value);
189     } else if(hard_default_value) {
190       return strdup(hard_default_value);
191     } else {
192       return 0;
193     }
194   }
195 }
196
197 /********************************************************************/
198
199 void *safe_malloc(size_t n) {
200   void *p = malloc(n);
201   if(!p && n != 0) {
202     fprintf(stderr,
203             "mymail: cannot allocate memory: %s\n", strerror(errno));
204     exit(EXIT_FAILURE);
205   }
206   return p;
207 }
208
209 FILE *safe_fopen(const char *path, const char *mode, const char *comment) {
210   FILE *result = fopen(path, mode);
211   if(result) {
212     return result;
213   } else {
214     fprintf(stderr,
215             "mymail: Cannot open file '%s' (%s) with mode \"%s\": %s\n",
216             path, comment, mode,
217             strerror(errno));
218     exit(EXIT_FAILURE);
219   }
220 }
221
222 /*********************************************************************/
223
224 void print_version(FILE *out) {
225   fprintf(out, "mymail version %s (%s)\n", MYMAIL_VERSION, UNAME);
226 }
227
228 void print_usage(FILE *out) {
229   print_version(out);
230   fprintf(out, "Written by Francois Fleuret <francois@fleuret.org>.\n");
231   fprintf(out, "\n");
232   fprintf(out, "Usage: mymail [options] [<mbox dir1> [<mbox dir2> ...]|<db file1> [<db file2> ...]]\n");
233   fprintf(out, "\n");
234   fprintf(out, " -h, --help\n");
235   fprintf(out, "         show this help\n");
236   fprintf(out, " -v, --version\n");
237   fprintf(out, "         print the version number\n");
238   fprintf(out, " -q, --quiet\n");
239   fprintf(out, "         do not print information during search\n");
240   fprintf(out, " -t, --use-leading-time\n");
241   fprintf(out, "         use the time stamp from the leading line of each mail and not the Date:\n");
242   fprintf(out, "         field\n");
243   fprintf(out, " -p <db filename pattern>, --db-pattern <db filename pattern>\n");
244   fprintf(out, "         set the db filename pattern for recursive search\n");
245   fprintf(out, " -r <db root path>, --db-root <db root path>\n");
246   fprintf(out, "         set the db root path for recursive search\n");
247   fprintf(out, " -l <db filename list>, --db-list <db filename list>\n");
248   fprintf(out, "         set the semicolon-separated list of db files for search\n");
249   fprintf(out, " -m <mbox filename pattern>, --mbox-pattern <mbox filename pattern>\n");
250   fprintf(out, "         set the mbox filename pattern for recursive search\n");
251   fprintf(out, " -s <search pattern>, --search <search pattern>\n");
252   fprintf(out, "         search for matching mails in the db file\n");
253   fprintf(out, " -d <db filename>, --db-file-output <db filename>\n");
254   fprintf(out, "         set the db filename for indexing\n");
255   fprintf(out, " -i, --index\n");
256   fprintf(out, "         index mails\n");
257   fprintf(out, " -o <output filename>, --output <output filename>\n");
258   fprintf(out, "         set the result file, use stdout if unset\n");
259   fprintf(out, " -n <max number of mails>, --nb-mails-max <max number of mails>\n");
260   fprintf(out, "         set the maximum number of mails to extract\n");
261   fprintf(out, " -a <search field>, --default-search <search field>\n");
262   fprintf(out, "         set the default search field\n");
263 }
264
265 /*********************************************************************/
266
267 int ignore_entry(const char *name) {
268   return
269     strcmp(name, ".") == 0 ||
270     strcmp(name, "..") == 0 ||
271     (name[0] == '.' && name[1] != '/');
272 }
273
274 int is_a_leading_from_line(char *mbox_line) {
275   return
276     strncmp(mbox_line, "From ", 5) == 0 &&
277     regexec(&global_leading_from_line_regexp, mbox_line, 0, 0, 0) == 0;
278 }
279
280 int db_line_match_search(struct search_condition *condition,
281                          int db_key, const char *db_value) {
282
283   return
284     (
285      (condition->db_key == db_key)
286
287      ||
288
289      (condition->db_key == ID_PARTICIPANT && (db_key == ID_LEADING_LINE ||
290                                               db_key == ID_FROM ||
291                                               db_key == ID_TO))
292      ||
293
294      (condition->db_key == ID_FROM && db_key == ID_LEADING_LINE)
295
296      )
297
298     &&
299
300     regexec(&condition->db_value_regexp, db_value, 0, 0, 0) == 0;
301 }
302
303 void update_body_hits(char *mail_filename, int position_in_mail,
304                       int nb_search_conditions, struct search_condition *search_conditions,
305                       int nb_body_conditions,
306                       int *hits) {
307   FILE *mail_file;
308   int header, n;
309   char raw_mbox_line[BUFFER_SIZE];
310   int nb_body_hits;
311
312   nb_body_hits = 0;
313
314   header = 1;
315   mail_file = safe_fopen(mail_filename, "r", "mbox for body scan");
316
317   fseek(mail_file, position_in_mail, SEEK_SET);
318
319   if(fgets(raw_mbox_line, BUFFER_SIZE, mail_file)) {
320     while(nb_body_hits < nb_body_conditions) {
321       if(raw_mbox_line[0] == '\n') { header = 0; }
322
323       if(!header) {
324         for(n = 0; n < nb_search_conditions; n++) {
325           if(search_conditions[n].db_key == ID_BODY && !hits[n]) {
326             hits[n] =
327               (regexec(&search_conditions[n].db_value_regexp, raw_mbox_line, 0, 0, 0) == 0);
328             if(hits[n]) {
329               nb_body_hits++;
330             }
331           }
332         }
333       }
334
335       if(!fgets(raw_mbox_line, BUFFER_SIZE, mail_file) ||
336          (is_a_leading_from_line(raw_mbox_line)))
337         break;
338     }
339   }
340
341   fclose(mail_file);
342 }
343
344 void extract_mail(const char *mail_filename, unsigned long int position_in_mail,
345                   FILE *output_file) {
346   char raw_mbox_line[BUFFER_SIZE];
347   FILE *mail_file;
348
349   /* printf("Extract\n"); */
350
351   mail_file = safe_fopen(mail_filename, "r", "mbox for mail extraction");
352   fseek(mail_file, position_in_mail, SEEK_SET);
353
354   if(fgets(raw_mbox_line, BUFFER_SIZE, mail_file)) {
355     fprintf(output_file, "%s", raw_mbox_line);
356     while(1) {
357       if(!fgets(raw_mbox_line, BUFFER_SIZE, mail_file) ||
358          is_a_leading_from_line(raw_mbox_line))
359         break;
360       fprintf(output_file, "%s", raw_mbox_line);
361     }
362   }
363
364   fclose(mail_file);
365 }
366
367 int check_full_mail_match(char *current_mail_filename,
368                           time_t mail_time,
369                           int nb_search_conditions,
370                           struct search_condition *search_conditions,
371                           int nb_body_conditions,
372                           int *hits,
373                           int current_position_in_mail) {
374   int n, nb_fulfilled_body_conditions;
375
376   for(n = 0; n < nb_search_conditions; n++) {
377     if(search_conditions[n].db_key == ID_TIME_INTERVAL) {
378       hits[n] = (mail_time >= search_conditions[n].time_start &&
379                  (search_conditions[n].time_stop == 0 ||
380                   mail_time <= search_conditions[n].time_stop));
381     }
382   }
383
384   /* We first check all conditions but the body ones */
385
386   for(n = 0; n < nb_search_conditions &&
387         ((search_conditions[n].db_key == ID_BODY) ||
388          xor(hits[n], search_conditions[n].negation)); n++);
389
390   if(n == nb_search_conditions) {
391
392     /* Now check the body ones */
393
394     nb_fulfilled_body_conditions = 0;
395
396     if(nb_body_conditions > 0) {
397       update_body_hits(current_mail_filename, current_position_in_mail,
398                        nb_search_conditions, search_conditions,
399                        nb_body_conditions,
400                        hits);
401
402       for(n = 0; n < nb_search_conditions; n++) {
403         if(search_conditions[n].db_key == ID_BODY &&
404            xor(hits[n], search_conditions[n].negation)) {
405           nb_fulfilled_body_conditions++;
406         }
407       }
408     }
409     return nb_body_conditions == nb_fulfilled_body_conditions;
410   } else {
411     return 0;
412   }
413 }
414
415 /* We use the mail leading line time by default, and if we should and
416    can, we update with the Date: field */
417
418 void update_time(int db_key, const char *db_value, time_t *t) {
419   const char *c;
420   struct tm tm;
421
422   memset(&tm, 0, sizeof(struct tm));
423
424   if(db_key == ID_LEADING_LINE) {
425     c = db_value;
426     while(*c && *c != ' ') c++; while(*c && *c == ' ') c++;
427     /* printf("From %s", db_value); */
428     strptime(c, "%a %b %e %k:%M:%S %Y", &tm);
429     *t = mktime(&tm);
430   } else {
431     if(!global_use_leading_time) {
432       if(db_key == ID_DATE) {
433         if(strptime(db_value, "%a, %d %b %Y %k:%M:%S", &tm) ||
434            strptime(db_value, "%d %b %Y %k:%M:%S", &tm)) {
435           /* printf("Date: %s", db_value); */
436           *t = mktime(&tm);
437         }
438       }
439     }
440   }
441 }
442
443 int search_in_db(const char *db_filename,
444                  int nb_extracted_mails,
445                  int nb_search_conditions,
446                  struct search_condition *search_conditions,
447                  FILE *output_file) {
448
449   FILE *db_file;
450   char raw_db_line[BUFFER_SIZE];
451   char current_mail_filename[PATH_MAX + 1];
452   char db_key_string[TOKEN_BUFFER_SIZE];
453   char position_in_file_string[TOKEN_BUFFER_SIZE];
454   unsigned long int current_position_in_mail;
455   const char *db_value;
456   int db_key;
457   int hits[MAX_NB_SEARCH_CONDITIONS];
458   int nb_body_conditions, need_time;
459   time_t mail_time;
460
461   int m, n;
462
463   if(!global_quiet) {
464     printf("Searching in '%s' ... ", db_filename);
465     fflush(stdout);
466   }
467
468   db_file = safe_fopen(db_filename, "r", "index file for search");
469
470   /* First, check the db file leading line integrity */
471
472   if(fgets(raw_db_line, BUFFER_SIZE, db_file)) {
473     if(strncmp(raw_db_line, MYMAIL_DB_MAGIC_TOKEN, strlen(MYMAIL_DB_MAGIC_TOKEN))) {
474       fprintf(stderr,
475               "mymail: Header line in '%s' does not match the mymail db format.\n",
476               db_filename);
477       exit(EXIT_FAILURE);
478     }
479   } else {
480     fprintf(stderr,
481             "mymail: Cannot read the header line in '%s'.\n",
482             db_filename);
483     exit(EXIT_FAILURE);
484   }
485
486   /* Then parse the said db file */
487
488   current_position_in_mail = 0;
489
490   for(n = 0; n < nb_search_conditions; n++) { hits[n] = 0; }
491
492   nb_body_conditions = 0;
493   need_time = 0;
494   mail_time = 0;
495
496   for(n = 0; n < nb_search_conditions; n++) {
497     if(search_conditions[n].db_key == ID_BODY) {
498       nb_body_conditions++;
499     }
500     else if(search_conditions[n].db_key == ID_TIME_INTERVAL) {
501       need_time = 1;
502     }
503   }
504
505   strcpy(current_mail_filename, "");
506
507   while(nb_extracted_mails < global_nb_mails_max &&
508         fgets(raw_db_line, BUFFER_SIZE, db_file)) {
509     db_value = parse_token(db_key_string, TOKEN_BUFFER_SIZE, ' ', raw_db_line);
510
511     if(strcmp("mail", db_key_string) == 0) {
512       if(current_mail_filename[0]) {
513         if(check_full_mail_match(current_mail_filename,
514                                  mail_time,
515                                  nb_search_conditions, search_conditions,
516                                  nb_body_conditions, hits, current_position_in_mail)) {
517           extract_mail(current_mail_filename, current_position_in_mail, output_file);
518           nb_extracted_mails++;
519         }
520       }
521
522       for(n = 0; n < nb_search_conditions; n++) { hits[n] = 0; }
523       db_value = parse_token(position_in_file_string, TOKEN_BUFFER_SIZE, ' ', db_value);
524       db_value = parse_token(current_mail_filename, PATH_MAX+1, '\n', db_value);
525       current_position_in_mail = atol(position_in_file_string);
526     }
527
528     else {
529       db_key = -1;
530       for(m = 0; (m < MAX_ID) && db_key == -1; m++) {
531         if(strncmp(field_keys[m], db_key_string, strlen(db_key_string)) == 0) {
532           db_key = m;
533         }
534       }
535
536       for(n = 0; n < nb_search_conditions; n++) {
537         hits[n] |= db_line_match_search(&search_conditions[n],
538                                         db_key, db_value);
539       }
540
541       if(need_time) {
542         update_time(db_key, db_value, &mail_time);
543       }
544     }
545   }
546
547   if(nb_extracted_mails < global_nb_mails_max &&
548      current_mail_filename[0] &&
549      check_full_mail_match(current_mail_filename,
550                            mail_time,
551                            nb_search_conditions, search_conditions,
552                            nb_body_conditions, hits, current_position_in_mail)) {
553     extract_mail(current_mail_filename, current_position_in_mail, output_file);
554     nb_extracted_mails++;
555   }
556
557   fclose(db_file);
558
559   if(!global_quiet) {
560     printf("done.\n");
561     fflush(stdout);
562   }
563
564   return nb_extracted_mails;
565 }
566
567 int recursive_search_in_db(const char *entry_name, regex_t *db_filename_regexp,
568                            int nb_extracted_mails,
569                            int nb_search_conditions,
570                            struct search_condition *search_conditions,
571                            FILE *output_file) {
572   DIR *dir;
573   struct dirent *dir_e;
574   struct stat sb;
575   char subname[PATH_MAX + 1];
576
577   if(lstat(entry_name, &sb) != 0) {
578     fprintf(stderr,
579             "mymail: Cannot stat \"%s\": %s\n",
580             entry_name,
581             strerror(errno));
582     exit(EXIT_FAILURE);
583   }
584
585   /* printf("recursive_search_in_db %s\n", entry_name); */
586
587   dir = opendir(entry_name);
588
589   if(dir) {
590     while((dir_e = readdir(dir)) &&
591           nb_extracted_mails < global_nb_mails_max) {
592       if(!ignore_entry(dir_e->d_name)) {
593         snprintf(subname, PATH_MAX, "%s/%s", entry_name, dir_e->d_name);
594         nb_extracted_mails = recursive_search_in_db(subname, db_filename_regexp,
595                                                     nb_extracted_mails,
596                                                     nb_search_conditions, search_conditions,
597                                                     output_file);
598       }
599     }
600     closedir(dir);
601   }
602
603   else {
604     const char *s = entry_name, *filename = entry_name;
605     while(*s) { if(*s == '/') { filename = s+1; } s++; }
606
607     if(regexec(db_filename_regexp, filename, 0, 0, 0) == 0) {
608       nb_extracted_mails =
609         search_in_db(entry_name,
610                      nb_extracted_mails,
611                      nb_search_conditions, search_conditions, output_file);
612     }
613   }
614
615   return nb_extracted_mails;
616 }
617
618 /*********************************************************************/
619
620 void index_one_mbox_line(unsigned int nb_fields_to_parse,
621                          struct parsable_field *fields_to_parse,
622                          char *raw_mbox_line, FILE *db_file) {
623   regmatch_t matches;
624   unsigned int f;
625   for(f = 0; f < nb_fields_to_parse; f++) {
626     if(regexec(&fields_to_parse[f].regexp, raw_mbox_line, 1, &matches, 0) == 0) {
627       fprintf(db_file, "%s %s\n",
628               field_keys[fields_to_parse[f].id],
629               raw_mbox_line + matches.rm_eo);
630     }
631   }
632 }
633
634 void index_mbox(const char *mbox_filename,
635                 int nb_fields_to_parse, struct parsable_field *fields_to_parse,
636                 FILE *db_file) {
637   char raw_mbox_line[BUFFER_SIZE], full_line[BUFFER_SIZE];
638   char *end_of_full_line;
639   FILE *file;
640   int in_header, new_header;
641   unsigned long int position_in_file;
642
643   file = safe_fopen(mbox_filename, "r", "mbox for indexing");
644
645   in_header = 0;
646   new_header = 0;
647
648   position_in_file = 0;
649   end_of_full_line = 0;
650   full_line[0] = '\0';
651
652   while(fgets(raw_mbox_line, BUFFER_SIZE, file)) {
653     if(is_a_leading_from_line(raw_mbox_line)) {
654       /* This starts a new mail */
655       if(in_header) {
656         fprintf(stderr,
657                 "Got a ^\"From \" in the header in %s:%lu.\n",
658                 mbox_filename, position_in_file);
659         fprintf(stderr, "%s", raw_mbox_line);
660       }
661
662       /* printf("LEADING_LINE %s", raw_mbox_line); */
663
664       in_header = 1;
665       new_header = 1;
666     } else if(raw_mbox_line[0] == '\n') {
667       if(in_header) {
668         in_header = 0;
669         /* We leave the header, index the current line */
670         if(full_line[0]) {
671           /* printf("INDEX %s\n", full_line); */
672           index_one_mbox_line(nb_fields_to_parse, fields_to_parse, full_line, db_file);
673         }
674         end_of_full_line = full_line;
675         *end_of_full_line = '\0';
676       }
677     }
678
679     if(in_header) {
680       if(new_header) {
681         fprintf(db_file, "mail %lu %s\n", position_in_file, mbox_filename);
682         new_header = 0;
683       }
684
685       if(raw_mbox_line[0] == ' ' || raw_mbox_line[0] == '\t') {
686         /* Continuation of a line */
687         char *start = raw_mbox_line;
688         while(*start == ' ' || *start == '\t') start++;
689         *(end_of_full_line++) = ' ';
690         strcpy(end_of_full_line, start);
691         while(*end_of_full_line && *end_of_full_line != '\n') {
692           end_of_full_line++;
693         }
694         *end_of_full_line = '\0';
695       }
696
697       else {
698         /* Start a new header line, not a continuation */
699
700         if(full_line[0]) {
701           /* printf("INDEX %s\n", full_line); */
702           index_one_mbox_line(nb_fields_to_parse, fields_to_parse, full_line, db_file);
703         }
704
705         end_of_full_line = full_line;
706         strcpy(end_of_full_line, raw_mbox_line);
707         while(*end_of_full_line && *end_of_full_line != '\n') {
708           end_of_full_line++;
709         }
710         *end_of_full_line = '\0';
711       }
712
713     }
714
715     position_in_file += strlen(raw_mbox_line);
716   }
717
718   fclose(file);
719 }
720
721 void recursive_index_mbox(FILE *db_file,
722                           const char *entry_name, regex_t *mbox_filename_regexp,
723                           int nb_fields_to_parse, struct parsable_field *fields_to_parse) {
724   DIR *dir;
725   struct dirent *dir_e;
726   struct stat sb;
727   char subname[PATH_MAX + 1];
728
729   if(lstat(entry_name, &sb) != 0) {
730     fprintf(stderr,
731             "mymail: Cannot stat \"%s\": %s\n",
732             entry_name,
733             strerror(errno));
734     exit(EXIT_FAILURE);
735   }
736
737   dir = opendir(entry_name);
738
739   if(dir) {
740     while((dir_e = readdir(dir))) {
741       if(!ignore_entry(dir_e->d_name)) {
742         snprintf(subname, PATH_MAX, "%s/%s", entry_name, dir_e->d_name);
743         recursive_index_mbox(db_file, subname, mbox_filename_regexp,
744                              nb_fields_to_parse, fields_to_parse);
745       }
746     }
747     closedir(dir);
748   } else {
749     const char *s = entry_name, *filename = s;
750     while(*s) { if(*s == '/') { filename = s+1; }; s++; }
751     if(!mbox_filename_regexp || regexec(mbox_filename_regexp, filename, 0, 0, 0) == 0) {
752       index_mbox(entry_name, nb_fields_to_parse, fields_to_parse, db_file);
753     }
754   }
755 }
756
757 /*********************************************************************/
758
759 /* For long options that have no equivalent short option, use a
760    non-character as a pseudo short option, starting with CHAR_MAX + 1.  */
761 enum {
762   OPT_BASH_MODE = CHAR_MAX + 1
763 };
764
765 static struct option long_options[] = {
766   { "help", no_argument, 0, 'h' },
767   { "version", no_argument, 0, 'v' },
768   { "quiet", no_argument, 0, 'q' },
769   { "use-leading-time", no_argument, 0, 't' },
770   { "db-file-output", 1, 0, 'd' },
771   { "db-pattern", 1, 0, 'p' },
772   { "db-root", 1, 0, 'r' },
773   { "db-list", 1, 0, 'l' },
774   { "mbox-pattern", 1, 0, 'm' },
775   { "search", 1, 0, 's' },
776   { "index", 0, 0, 'i' },
777   { "output", 1, 0, 'o' },
778   { "default-search", 1, 0, 'a' },
779   { "nb-mails-max", 1, 0, 'n' },
780   { 0, 0, 0, 0 }
781 };
782
783 struct time_criterion {
784   char *label;
785   int day_criterion;
786   int start_hour, end_hour;
787   int past_week_day;
788 };
789
790 /*********************************************************************/
791
792 static struct time_criterion time_criteria[] = {
793
794   { "8h",        0,  8,       -1, -1 },
795   { "24h",       0, 24,       -1, -1 },
796   { "48h",       0, 48,       -1, -1 },
797   { "week",      0, 24 *   7, -1, -1 },
798   { "month",     0, 24 *  31, -1, -1 },
799   { "trimester", 0, 24 *  92, -1, -1 },
800   { "year",      0, 24 * 365, -1, -1 },
801
802   { "yesterday", 1, -1,       -1, -1 },
803   { "today",     1, -1,       -1,  0 },
804
805   { "monday",    1, -1,       -1,  1 },
806   { "tuesday",   1, -1,       -1,  2 },
807   { "wednesday", 1, -1,       -1,  3 },
808   { "thursday",  1, -1,       -1,  4 },
809   { "friday",    1, -1,       -1,  5 },
810   { "saturday",  1, -1,       -1,  6 },
811   { "sunday",    1, -1,       -1,  7 },
812
813 };
814
815 /*********************************************************************/
816
817 time_t time_for_past_day(int day) {
818   time_t t;
819   struct tm *tm;
820   int delta_day;
821   t = time(0);
822   tm = localtime(&t);
823   if(day > 0) {
824     delta_day = (7 + tm->tm_wday - day) % 7;
825   } else {
826     delta_day = - day;
827   }
828   return t - (delta_day * 3600 * 24 + tm->tm_sec + 60 * tm->tm_min + 3600 * tm->tm_hour);
829 }
830
831 void init_condition(struct search_condition *condition, const char *full_string,
832                     const char *default_search_field) {
833   char full_search_field[TOKEN_BUFFER_SIZE], *search_field;
834   unsigned int k, m;
835   const char *string;
836   struct alias_node *a;
837
838   for(a = global_alias_list; a; a = a->next) {
839     if(strcmp(full_string, a->alias) == 0) {
840       full_string = a->value;
841       break;
842     }
843   }
844
845   string = parse_token(full_search_field, TOKEN_BUFFER_SIZE, ' ', full_string);
846   search_field = full_search_field;
847
848   if(search_field[0] == '!') {
849     search_field++;
850     condition->negation = 1;
851   } else {
852     condition->negation = 0;
853   }
854
855   condition->db_key = -1;
856
857   /* Time condition */
858
859   for(k = 0; k < sizeof(time_criteria) / sizeof(struct time_criterion); k++) {
860     if(strcmp(time_criteria[k].label, search_field) == 0) {
861       condition->db_key = ID_TIME_INTERVAL;
862       if(time_criteria[k].day_criterion) {
863         condition->time_start = time_for_past_day(time_criteria[k].past_week_day);
864         condition->time_stop = condition->time_start + 3600 * 24;
865       } else {
866         condition->time_start = time(0) - 3600 * time_criteria[k].start_hour;
867         if(time_criteria[k].end_hour >= 0) {
868           condition->time_stop = time(0) - 3600 * time_criteria[k].end_hour;
869         } else {
870           condition->time_stop = 0;
871         }
872       }
873
874       break;
875     }
876   }
877
878   if(condition->db_key == -1) {
879
880     /* No time condition matched, look for the search fields */
881
882     for(m = 0; (m < MAX_ID) && condition->db_key == -1; m++) {
883       if(strncmp(field_keys[m], search_field, strlen(search_field)) == 0) {
884         condition->db_key = m;
885       }
886     }
887
888     /* None match, if there is a default search field, re-run the search with it */
889
890     if(condition->db_key == -1) {
891       if(default_search_field) {
892         for(m = 0; (m < MAX_ID) && condition->db_key == -1; m++) {
893           if(strncmp(field_keys[m],
894                      default_search_field, strlen(default_search_field)) == 0) {
895             condition->db_key = m;
896           }
897         }
898         string = full_string;
899         if(string[0] == '!') { string++; }
900       }
901     }
902
903     if(condition->db_key == -1) {
904       fprintf(stderr,
905               "mymail: Syntax error in field key \"%s\".\n",
906               search_field);
907       exit(EXIT_FAILURE);
908     }
909
910     if(regcomp(&condition->db_value_regexp,
911                string,
912                REG_ICASE)) {
913       fprintf(stderr,
914               "mymail: Syntax error in regexp \"%s\" for field \"%s\".\n",
915               string,
916               field_keys[condition->db_key]);
917       exit(EXIT_FAILURE);
918     }
919   }
920 }
921
922 void free_condition(struct search_condition *condition) {
923   if(condition->db_key != ID_TIME_INTERVAL) {
924     regfree(&condition->db_value_regexp);
925   }
926 }
927
928 const char *eat_space(const char *s) {
929   while(*s == ' ' || *s == '\t') { s++; }
930   return s;
931 }
932
933 void read_rc_file(const char *rc_filename) {
934   char raw_line[BUFFER_SIZE];
935   char command[TOKEN_BUFFER_SIZE], tmp_token[TOKEN_BUFFER_SIZE];
936
937   FILE *rc_file;
938   int line_number;
939   const char *s;
940   char *t;
941
942   rc_file = fopen(rc_filename, "r");
943
944   if(rc_file) {
945     line_number = 1;
946     while(fgets(raw_line, BUFFER_SIZE, rc_file)) {
947       t = raw_line;
948       while(*t) { if(*t == '\n') { *t = '\0'; }; t++; }
949
950       s = raw_line;
951       s = eat_space(s);
952
953       if(*s && *s != '#') {
954         s = parse_token(command, TOKEN_BUFFER_SIZE, ' ', s);
955
956         if(strcmp(command, "alias") == 0) {
957           struct alias_node *a = safe_malloc(sizeof(struct alias_node));
958           a->next = global_alias_list;
959           global_alias_list = a;
960           if(s) {
961             s = eat_space(s);
962             s = parse_token(tmp_token, TOKEN_BUFFER_SIZE, '=', s);
963             a->alias = strdup(tmp_token);
964             if(s) {
965               s = eat_space(s);
966               a->value = strdup(s);
967             } else {
968               fprintf(stderr, "%s:%d syntax error, missing alias value.\n",
969                       rc_filename,
970                       line_number);
971               exit(EXIT_FAILURE);
972             }
973           } else {
974             fprintf(stderr, "%s:%d syntax error, missing alias key.\n",
975                     rc_filename,
976                     line_number);
977             exit(EXIT_FAILURE);
978           }
979         } else {
980           fprintf(stderr, "%s:%d syntax error, unknown command '%s'.\n",
981                   rc_filename,
982                   line_number,
983                   command);
984           exit(EXIT_FAILURE);
985         }
986       }
987
988       line_number++;
989     }
990     fclose(rc_file);
991   }
992 }
993
994 /*********************************************************************/
995 /*********************************************************************/
996 /*********************************************************************/
997
998 int main(int argc, char **argv) {
999   char *db_filename = 0;
1000   char *db_filename_regexp_string = 0;
1001   char *db_root_path = 0;
1002   char *db_filename_list = 0;
1003   char *mbox_filename_regexp_string = 0;
1004   char *default_search_field;
1005   char output_filename[PATH_MAX + 1];
1006   char rc_filename[PATH_MAX + 1];
1007   int action_index = 0;
1008   int error = 0, show_help = 0;
1009   const unsigned int nb_fields_to_parse =
1010     sizeof(fields_to_parse) / sizeof(struct parsable_field);
1011   char c;
1012   unsigned int f, n;
1013   unsigned int nb_search_conditions;
1014   struct search_condition search_conditions[MAX_NB_SEARCH_CONDITIONS];
1015   struct alias_node *a, *b;
1016
1017   if(regcomp(&global_leading_from_line_regexp, LEADING_FROM_LINE_REGEXP_STRING, 0)) {
1018     fprintf(stderr,
1019             "mymail: Cannot compile leading \"from\" line regexp. That is strange.\n");
1020     exit(EXIT_FAILURE);
1021   }
1022
1023   if(getenv("MYMAILRC")) {
1024     sprintf(rc_filename, "%s", getenv("MYMAILRC"));
1025   } else if(getenv("HOME")) {
1026     sprintf(rc_filename, "%s/.mymailrc", getenv("HOME"));
1027   } else {
1028     rc_filename[0] = '\0';
1029   }
1030
1031   global_alias_list = 0;
1032   global_quiet = 0;
1033   global_use_leading_time = 0;
1034   global_nb_mails_max = 250;
1035
1036   default_search_field = 0;
1037   strncpy(output_filename, "", PATH_MAX);
1038
1039   if(rc_filename[0]) {
1040     read_rc_file(rc_filename);
1041   }
1042
1043   /*
1044     {
1045     #warning Test code added on 2013 May 02 11:17:01
1046     struct alias_node *a;
1047     for(a = global_alias_list; a; a = a->next) {
1048     printf ("ALIAS [%s] [%s]\n", a->alias, a->value);
1049     }
1050     }
1051   */
1052
1053   setlocale(LC_ALL, "");
1054
1055   nb_search_conditions = 0;
1056
1057   while ((c = getopt_long(argc, argv, "hvqip:s:d:r:l:o:a:m:",
1058                           long_options, NULL)) != -1) {
1059
1060     switch(c) {
1061
1062     case 'h':
1063       show_help = 1;
1064       break;
1065
1066     case 'v':
1067       print_version(stdout);
1068       break;
1069
1070     case 'q':
1071       global_quiet = 1;
1072       break;
1073
1074     case 't':
1075       global_use_leading_time = 1;
1076       break;
1077
1078     case 'i':
1079       action_index = 1;
1080       break;
1081
1082     case 'd':
1083       if(db_filename) {
1084         fprintf(stderr, "mymail: Can not set the db filename twice.\n");
1085         exit(EXIT_FAILURE);
1086       }
1087       db_filename = strdup(optarg);
1088       break;
1089
1090     case 'p':
1091       if(db_filename_regexp_string) {
1092         fprintf(stderr, "mymail: Can not set the db filename pattern twice.\n");
1093         exit(EXIT_FAILURE);
1094       }
1095       db_filename_regexp_string = strdup(optarg);
1096       break;
1097
1098     case 'm':
1099       if(mbox_filename_regexp_string) {
1100         fprintf(stderr, "mymail: Can not set the mbox filename pattern twice.\n");
1101         exit(EXIT_FAILURE);
1102       }
1103       mbox_filename_regexp_string = strdup(optarg);
1104       break;
1105
1106     case 'o':
1107       strncpy(output_filename, optarg, PATH_MAX);
1108       break;
1109
1110     case 'r':
1111       if(db_root_path) {
1112         fprintf(stderr, "mymail: Can not set the db root path twice.\n");
1113         exit(EXIT_FAILURE);
1114       }
1115       db_root_path = strdup(optarg);
1116       break;
1117
1118     case 'l':
1119       if(db_filename_list) {
1120         fprintf(stderr, "mymail: Can not set the db filename list twice.\n");
1121         exit(EXIT_FAILURE);
1122       }
1123       db_filename_list = strdup(optarg);
1124       break;
1125
1126     case 's':
1127       if(nb_search_conditions == MAX_NB_SEARCH_CONDITIONS) {
1128         fprintf(stderr, "mymail: Too many search patterns.\n");
1129         exit(EXIT_FAILURE);
1130       }
1131       init_condition(&search_conditions[nb_search_conditions], optarg, default_search_field);
1132       nb_search_conditions++;
1133       break;
1134
1135     case 'a':
1136       default_search_field = optarg;
1137       break;
1138
1139     case 'n':
1140       global_nb_mails_max = atoi(optarg);
1141       break;
1142
1143     default:
1144       error = 1;
1145       break;
1146     }
1147   }
1148
1149   /* Set all the values that may defined in the arguments, through
1150      environment variables, or hard-coded */
1151
1152   db_filename = default_value(db_filename,
1153                               "MYMAIL_DB_FILE",
1154                               "mymail.db");
1155
1156   db_filename_regexp_string = default_value(db_filename_regexp_string,
1157                                             "MYMAIL_DB_FILE",
1158                                             "\\.db$");
1159
1160   db_root_path = default_value(db_root_path,
1161                                "MYMAIL_DB_ROOT",
1162                                0);
1163
1164   db_filename_list = default_value(db_filename_list,
1165                                    "MYMAIL_DB_LIST",
1166                                    0);
1167
1168   mbox_filename_regexp_string = default_value(mbox_filename_regexp_string,
1169                                               "MYMAIL_MBOX_PATTERN",
1170                                               0);
1171
1172   /* Start the processing */
1173
1174   if(error) {
1175     print_usage(stderr);
1176     exit(EXIT_FAILURE);
1177   }
1178
1179   if(show_help) {
1180     print_usage(stdout);
1181     exit(EXIT_SUCCESS);
1182   }
1183
1184   /* mbox indexing */
1185
1186   if(action_index) {
1187     FILE *db_file;
1188     regex_t mbox_filename_regexp_static;
1189     regex_t *mbox_filename_regexp;
1190
1191     if(mbox_filename_regexp_string) {
1192       if(regcomp(&mbox_filename_regexp_static,
1193                  mbox_filename_regexp_string,
1194                  0)) {
1195         fprintf(stderr,
1196                 "mymail: Syntax error in regexp \"%s\".\n",
1197                 mbox_filename_regexp_string);
1198         exit(EXIT_FAILURE);
1199       }
1200       mbox_filename_regexp = &mbox_filename_regexp_static;
1201     } else {
1202       mbox_filename_regexp = 0;
1203     }
1204
1205     db_file = safe_fopen(db_filename, "w", "index file for indexing");
1206
1207     for(f = 0; f < nb_fields_to_parse; f++) {
1208       if(regcomp(&fields_to_parse[f].regexp,
1209                  fields_to_parse[f].regexp_string,
1210                  fields_to_parse[f].cflags)) {
1211         fprintf(stderr,
1212                 "mymail: Syntax error in regexp \"%s\" for field \"%s\".\n",
1213                 fields_to_parse[f].regexp_string,
1214                 field_keys[fields_to_parse[f].id]);
1215         exit(EXIT_FAILURE);
1216       }
1217     }
1218
1219     fprintf(db_file,
1220             "%s version_%s format_%d raw\n",
1221             MYMAIL_DB_MAGIC_TOKEN,
1222             MYMAIL_VERSION,
1223             MYMAIL_DB_FORMAT_VERSION);
1224
1225     while(optind < argc) {
1226       recursive_index_mbox(db_file,
1227                            argv[optind], mbox_filename_regexp,
1228                            nb_fields_to_parse, fields_to_parse);
1229       optind++;
1230     }
1231
1232     fflush(db_file);
1233     fclose(db_file);
1234
1235     if(mbox_filename_regexp) {
1236       regfree(mbox_filename_regexp);
1237     }
1238
1239     for(f = 0; f < nb_fields_to_parse; f++) {
1240       regfree(&fields_to_parse[f].regexp);
1241     }
1242   }
1243
1244   /* Mail search */
1245
1246   else {
1247
1248     FILE *output_file;
1249     int nb_extracted_mails = 0;
1250
1251     if(output_filename[0]) {
1252       output_file = safe_fopen(output_filename, "w", "result mbox");
1253     } else {
1254       output_file = stdout;
1255       global_quiet = 1;
1256     }
1257
1258     if(nb_search_conditions > 0) {
1259
1260       /* Recursive search if db_root_path is set */
1261
1262       if(db_root_path) {
1263         regex_t db_filename_regexp;
1264         if(regcomp(&db_filename_regexp,
1265                    db_filename_regexp_string,
1266                    0)) {
1267           fprintf(stderr,
1268                   "mymail: Syntax error in regexp \"%s\".\n",
1269                   db_filename_regexp_string);
1270           exit(EXIT_FAILURE);
1271         }
1272
1273         nb_extracted_mails = recursive_search_in_db(db_root_path, &db_filename_regexp,
1274                                                     nb_extracted_mails,
1275                                                     nb_search_conditions, search_conditions,
1276                                                     output_file);
1277
1278         regfree(&db_filename_regexp);
1279       }
1280
1281       /* Search in all db files listed in db_filename_list */
1282
1283       if(db_filename_list) {
1284         char db_filename[PATH_MAX + 1];
1285         const char *s;
1286
1287         s = db_filename_list;
1288
1289         while(*s) {
1290           s = parse_token(db_filename, PATH_MAX + 1, ';', s);
1291
1292           if(db_filename[0]) {
1293             nb_extracted_mails =
1294               search_in_db(db_filename,
1295                            nb_extracted_mails,
1296                            nb_search_conditions, search_conditions, output_file);
1297           }
1298         }
1299       }
1300
1301       /* Search in all db files listed in the command arguments */
1302
1303       while(optind < argc) {
1304         nb_extracted_mails =
1305           search_in_db(argv[optind],
1306                        nb_extracted_mails,
1307                        nb_search_conditions, search_conditions, output_file);
1308         optind++;
1309       }
1310     }
1311
1312     if(!global_quiet) {
1313       if(nb_extracted_mails > 0) {
1314         printf("Found %d matching mails.\n", nb_extracted_mails);
1315       } else {
1316         printf("No matching mail found.\n");
1317       }
1318     }
1319
1320     fflush(output_file);
1321
1322     if(output_file != stdout) {
1323       fclose(output_file);
1324     }
1325   }
1326
1327   for(n = 0; n < nb_search_conditions; n++) {
1328     free_condition(&search_conditions[n]);
1329   }
1330
1331   a = global_alias_list;
1332   while(a) {
1333     b = a->next;
1334     free(a->alias);
1335     free(a->value);
1336     free(a);
1337     a = b;
1338   }
1339
1340   free(db_filename);
1341   free(db_filename_regexp_string);
1342   free(db_root_path);
1343   free(db_filename_list);
1344   free(mbox_filename_regexp_string);
1345
1346   regfree(&global_leading_from_line_regexp);
1347
1348   exit(EXIT_SUCCESS);
1349 }