Cosmetics.
[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 index_mbox(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     index_mbox(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   OPT_BASH_MODE = CHAR_MAX + 1
266 };
267
268 static struct option long_options[] = {
269   { "help", no_argument, 0, 'h' },
270   { "db-prefix", 1, 0, 'p' },
271   { "search-pattern", 1, 0, 's' },
272   { "index", 0, 0, 'i' },
273   { 0, 0, 0, 0 }
274 };
275
276 static struct parsable_field fields_to_parse[] = {
277   {
278     "from",
279     "^\\([Ff][Rr][Oo][Mm]:\\|From\\) *",
280     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
281   },
282
283   {
284     "dest",
285     "^\\([Tt][Oo]\\|[Cc][Cc]\\|[Bb][Cc][Cc]\\): *",
286     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
287   },
288 };
289
290 int main(int argc, char **argv) {
291   int error = 0, show_help = 0;
292   const int nb_fields_to_parse = sizeof(fields_to_parse) / sizeof(struct parsable_field);
293   char c;
294   int f;
295
296   paranoid = 0;
297   action_index = 0;
298   search_pattern = 0;
299
300   setlocale(LC_ALL, "");
301
302   while ((c = getopt_long(argc, argv, "hip:s:",
303                           long_options, NULL)) != -1) {
304
305     switch(c) {
306
307     case 'h':
308       show_help = 1;
309       break;
310
311     case 'i':
312       action_index = 1;
313       break;
314
315     case 'p':
316       db_filename = strdup(optarg);
317       break;
318
319     case 's':
320       if(search_pattern) {
321         fprintf(stderr, "mymail: Search pattern already defined.\n");
322         exit(EXIT_FAILURE);
323       }
324       search_pattern = strdup(optarg);
325       break;
326
327     default:
328       error = 1;
329       break;
330     }
331   }
332
333   if(!db_filename) {
334     db_filename = strdup("/tmp/mymail");
335   }
336
337   if(error) {
338     usage(stderr);
339     exit(EXIT_FAILURE);
340   }
341
342   if(show_help) {
343     usage(stdout);
344     exit(EXIT_SUCCESS);
345   }
346
347   if(action_index) {
348     FILE *db_file = fopen(db_filename, "w");
349     if(!db_file) {
350       fprintf(stderr,
351               "mymail: Can not open \"%s\" for writing: %s\n",
352               db_filename,
353               strerror(errno));
354       exit(EXIT_FAILURE);
355     }
356
357     for(f = 0; f < nb_fields_to_parse; f++) {
358       if(regcomp(&fields_to_parse[f].regexp,
359                  fields_to_parse[f].regexp_string,
360                  REG_ICASE)) {
361         fprintf(stderr,
362                 "mymail: Syntax error in regexp \"%s\" for field \"%s\".\n",
363                 fields_to_parse[f].regexp_string,
364                 fields_to_parse[f].name);
365         exit(EXIT_FAILURE);
366       }
367     }
368
369     while(optind < argc) {
370       process_entry(argv[optind],
371                     nb_fields_to_parse, fields_to_parse, db_file);
372       optind++;
373     }
374
375     fclose(db_file);
376
377     for(f = 0; f < nb_fields_to_parse; f++) {
378       regfree(&fields_to_parse[f].regexp);
379     }
380   }
381
382   else {
383     if(search_pattern) {
384       FILE *db_file;
385       char *search_name;
386       char *search_regexp_string;
387       search_name = search_pattern;
388       search_regexp_string = segment_next_field(search_pattern);
389       if(!*search_regexp_string) {
390         fprintf(stderr,
391                 "Syntax error in the search pattern.\n");
392         exit(EXIT_FAILURE);
393       }
394
395       /* printf("Starting search in %s for field \"%s\" matching \"%s\".\n", */
396       /* db_filename, */
397       /* search_name, */
398       /* search_regexp_string); */
399
400       db_file = fopen(db_filename, "r");
401
402       if(!db_file) {
403         fprintf(stderr,
404                 "mymail: Can not open \"%s\" for reading: %s\n",
405                 db_filename,
406                 strerror(errno));
407         exit(EXIT_FAILURE);
408       }
409
410       search_in_db(search_name, search_regexp_string, db_file);
411
412       fclose(db_file);
413       free(search_pattern);
414     }
415   }
416
417   free(db_filename);
418
419   exit(EXIT_SUCCESS);
420 }