Update.
[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.
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
47 #define VERSION "0.1"
48
49 #define BUFFER_SIZE 16384
50
51 struct parsable_field {
52   char *name;
53   char *regexp_string;
54   regex_t regexp;
55 };
56
57 char *db_filename;
58 char *search_pattern;
59
60 int paranoid;
61 int action_index;
62
63 char *segment_next_field(char *current) {
64   while(*current && *current != ' ') current++;
65   *current = '\0'; current++;
66   while(*current && *current == ' ') current++;
67   return current;
68 }
69
70 void remove_eof(char *c) {
71   while(*c && *c != '\n' && *c != '\r') c++;
72   *c = '\0';
73 }
74
75 /********************************************************************/
76
77 /* malloc with error checking.  */
78
79 void *safe_malloc(size_t n) {
80   void *p = malloc(n);
81   if(!p && n != 0) {
82     fprintf(stderr,
83             "mymail: can not allocate memory: %s\n", strerror(errno));
84     exit(EXIT_FAILURE);
85   }
86   return p;
87 }
88
89 /*********************************************************************/
90
91 void usage(FILE *out) {
92   fprintf(out, "mymail version %s (%s)\n", VERSION, UNAME);
93   fprintf(out, "Written by Francois Fleuret <francois@fleuret.org>.\n");
94   fprintf(out, "\n");
95   fprintf(out, "Usage: mymail [options] [<filename1> [<filename2> ...]]\n");
96   fprintf(out, "\n");
97 }
98
99 /*********************************************************************/
100
101 void search_in_db(const char *search_name, const char *search_regexp_string,
102                   FILE *db_file) {
103   char raw_line[BUFFER_SIZE];
104   char current_mail_filename[BUFFER_SIZE];
105   unsigned long int current_position_in_mail;
106   char *name, *value;
107   regex_t regexp;
108   int already_written;
109
110   if(regcomp(&regexp,
111              search_regexp_string,
112              REG_ICASE)) {
113     fprintf(stderr,
114             "mymail: Syntax error in regexp \"%s\" for field \"%s\".\n",
115             search_regexp_string,
116             search_name);
117     exit(EXIT_FAILURE);
118   }
119
120   current_position_in_mail = 0;
121   already_written = 0;
122
123   while(fgets(raw_line, BUFFER_SIZE, db_file)) {
124     name = raw_line;
125     value = segment_next_field(raw_line);
126
127     if(strcmp("mail", name) == 0) {
128       char *position_in_file_string = value;
129       char *mail_filename = segment_next_field(value);
130       current_position_in_mail = atol(position_in_file_string);
131       strcpy(current_mail_filename, mail_filename);
132       remove_eof(current_mail_filename);
133       already_written = 0;
134     }
135
136     else if(!already_written) {
137      if(strcmp(search_name, name) == 0 && regexec(&regexp, value, 0, 0, 0) == 0) {
138         FILE *mail_file;
139         mail_file = fopen(current_mail_filename, "r");
140         if(!mail_file) {
141           fprintf(stderr, "mymail: Can not open `%s'.\n", current_mail_filename);
142           exit(EXIT_FAILURE);
143         }
144         fseek(mail_file, current_position_in_mail, SEEK_SET);
145         if(fgets(raw_line, BUFFER_SIZE, mail_file)) {
146           printf("%s", raw_line);
147           while(fgets(raw_line, BUFFER_SIZE, mail_file) &&
148                 strncmp(raw_line, "From ", 5)) {
149             printf("%s", raw_line);
150           }
151         }
152         fclose(mail_file);
153         already_written = 1;
154       }
155     }
156   }
157
158   regfree(&regexp);
159 }
160
161 /*********************************************************************/
162
163 void read_file(const char *input_filename,
164                int nb_fields_to_parse, struct parsable_field *fields_to_parse,
165                FILE *db_file) {
166   char raw_line[BUFFER_SIZE];
167   FILE *file;
168   int in_header, new_header;
169   unsigned long int position_in_file;
170
171   file = fopen(input_filename, "r");
172
173   if(!file) {
174     fprintf(stderr, "mymail: Can not open `%s'.\n", input_filename);
175     if(paranoid) { exit(EXIT_FAILURE); }
176     return;
177   }
178
179   in_header = 0;
180   new_header = 0;
181
182   position_in_file = 0;
183
184   while(fgets(raw_line, BUFFER_SIZE, file)) {
185     if(strncmp(raw_line, "From ", 5) == 0) {
186       if(in_header) {
187         fprintf(stderr,
188                 "Got a ^\"From \" in the header in %s:%lu.\n",
189                 input_filename, position_in_file);
190         fprintf(stderr, "%s", raw_line);
191         if(paranoid) { exit(EXIT_FAILURE); }
192       }
193       in_header = 1;
194       new_header = 1;
195     } else if(strncmp(raw_line, "\n", 1) == 0) {
196       if(in_header) { in_header = 0; }
197     }
198
199     if(in_header) {
200       int f;
201       regmatch_t matches;
202       if(new_header) {
203         fprintf(db_file, "mail %lu %s\n", position_in_file, input_filename);
204         new_header = 0;
205       }
206       for(f = 0; f < nb_fields_to_parse; f++) {
207         if(regexec(&fields_to_parse[f].regexp, raw_line, 1, &matches, 0) == 0) {
208           fprintf(db_file, "%s %s",
209                   fields_to_parse[f].name,
210                   raw_line + matches.rm_eo);
211         }
212       }
213     }
214
215     position_in_file += strlen(raw_line);
216   }
217
218   fclose(file);
219 }
220
221 int ignore_entry(const char *name) {
222   return
223     /* strcmp(name, ".") == 0 || */
224     /* strcmp(name, "..") == 0 || */
225     (name[0] == '.' && name[1] != '/');
226 }
227
228 void process_entry(const char *dir_name,
229                    int nb_fields_to_parse, struct parsable_field *fields_to_parse,
230                    FILE *db_file) {
231   DIR *dir;
232   struct dirent *dir_e;
233   struct stat sb;
234   char subname[PATH_MAX + 1];
235
236   if(lstat(dir_name, &sb) != 0) {
237     fprintf(stderr,
238             "mymail: Can not stat \"%s\": %s\n",
239             dir_name,
240             strerror(errno));
241     exit(EXIT_FAILURE);
242   }
243
244   dir = opendir(dir_name);
245
246   if(dir) {
247     printf("Processing directory '%s'.\n", dir_name);
248     while((dir_e = readdir(dir))) {
249       if(!ignore_entry(dir_e->d_name)) {
250         snprintf(subname, PATH_MAX, "%s/%s", dir_name, dir_e->d_name);
251         process_entry(subname, nb_fields_to_parse, fields_to_parse, db_file);
252       }
253     }
254     closedir(dir);
255   } else {
256     read_file(dir_name, nb_fields_to_parse, fields_to_parse, db_file);
257   }
258 }
259
260 /*********************************************************************/
261
262 /* For long options that have no equivalent short option, use a
263    non-character as a pseudo short option, starting with CHAR_MAX + 1.  */
264 enum
265 {
266   OPT_BASH_MODE = CHAR_MAX + 1
267 };
268
269 static struct option long_options[] = {
270   { "help", no_argument, 0, 'h' },
271   { "db-prefix", 1, 0, 'p' },
272   { "search-pattern", 1, 0, 's' },
273   { "index", 0, 0, 'i' },
274   { 0, 0, 0, 0 }
275 };
276
277 static struct parsable_field fields_to_parse[] = {
278   {
279     "from",
280     "^\\([Ff][Rr][Oo][Mm]:\\|From\\) *",
281     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
282   },
283
284   {
285     "dest",
286     "^\\([Tt][Oo]\\|[Cc][Cc]\\|[Bb][Cc][Cc]\\): *",
287     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
288   },
289 };
290
291 int main(int argc, char **argv) {
292   int error = 0, show_help = 0;
293   const int nb_fields_to_parse = sizeof(fields_to_parse) / sizeof(struct parsable_field);
294   char c;
295   int f;
296
297   paranoid = 0;
298   action_index = 0;
299   search_pattern = 0;
300
301   setlocale(LC_ALL, "");
302
303   while ((c = getopt_long(argc, argv, "hip:s:",
304                           long_options, NULL)) != -1) {
305
306     switch(c) {
307
308     case 'h':
309       show_help = 1;
310       break;
311
312     case 'i':
313       action_index = 1;
314       break;
315
316     case 'p':
317       db_filename = strdup(optarg);
318       break;
319
320     case 's':
321       if(search_pattern) {
322         fprintf(stderr, "mymail: Search pattern already defined.\n");
323         exit(EXIT_FAILURE);
324       }
325       search_pattern = strdup(optarg);
326       break;
327
328     default:
329       error = 1;
330       break;
331     }
332   }
333
334   if(!db_filename) {
335     db_filename = strdup("/tmp/mymail");
336   }
337
338   if(error) {
339     usage(stderr);
340     exit(EXIT_FAILURE);
341   }
342
343   if(show_help) {
344     usage(stdout);
345     exit(EXIT_SUCCESS);
346   }
347
348   if(action_index) {
349     FILE *db_file = fopen(db_filename, "w");
350     if(!db_file) {
351       fprintf(stderr,
352               "mymail: Can not open \"%s\" for writing: %s\n",
353               db_filename,
354               strerror(errno));
355       exit(EXIT_FAILURE);
356     }
357
358     for(f = 0; f < nb_fields_to_parse; f++) {
359       if(regcomp(&fields_to_parse[f].regexp,
360                  fields_to_parse[f].regexp_string,
361                  REG_ICASE)) {
362         fprintf(stderr,
363                 "mymail: Syntax error in regexp \"%s\" for field \"%s\".\n",
364                 fields_to_parse[f].regexp_string,
365                 fields_to_parse[f].name);
366         exit(EXIT_FAILURE);
367       }
368     }
369
370     while(optind < argc) {
371       process_entry(argv[optind],
372                     nb_fields_to_parse, fields_to_parse, db_file);
373       optind++;
374     }
375
376     fclose(db_file);
377
378     for(f = 0; f < nb_fields_to_parse; f++) {
379       regfree(&fields_to_parse[f].regexp);
380     }
381   }
382
383   else {
384     if(search_pattern) {
385       FILE *db_file;
386       char *search_name;
387       char *search_regexp_string;
388       search_name = search_pattern;
389       search_regexp_string = segment_next_field(search_pattern);
390       if(!*search_regexp_string) {
391         fprintf(stderr,
392                 "Syntax error in the search pattern.\n");
393         exit(EXIT_FAILURE);
394       }
395
396       /* printf("Starting search in %s for field \"%s\" matching \"%s\".\n", */
397              /* db_filename, */
398              /* search_name, */
399              /* search_regexp_string); */
400
401       db_file = fopen(db_filename, "r");
402
403       if(!db_file) {
404         fprintf(stderr,
405                 "mymail: Can not open \"%s\" for reading: %s\n",
406                 db_filename,
407                 strerror(errno));
408         exit(EXIT_FAILURE);
409       }
410
411       search_in_db(search_name, search_regexp_string, db_file);
412
413       fclose(db_file);
414       free(search_pattern);
415     }
416   }
417
418   free(db_filename);
419
420   exit(EXIT_SUCCESS);
421 }