/[imapfilter]/imapfilter/file.c
ViewVC logotype

Contents of /imapfilter/file.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.23 - (show annotations)
Sat Oct 6 13:43:11 2001 UTC (22 years, 5 months ago) by lefcha
Branch: MAIN
Changes since 1.22: +6 -5 lines
File MIME type: text/plain
Final solution to the memory leak.

1 #include <stdio.h>
2 #include <errno.h>
3 #include <sys/types.h>
4 #include <regex.h>
5 #include <string.h>
6 #include <stdlib.h>
7 #include <limits.h>
8 #include <sys/stat.h>
9
10 #include "config.h"
11 #include "imapfilter.h"
12 #include "data.h"
13
14
15 extern char logfile[PATH_MAX];
16 extern unsigned int options;
17
18
19 /*
20 * Find the path to configuration file, open it and call parse_config().
21 */
22 int read_config(char *cfg)
23 {
24 int r;
25 FILE *fp;
26 char *home = NULL;
27 char *c = NULL;
28
29 if (!cfg) {
30 cfg = c = (char *) xmalloc(PATH_MAX * sizeof(char));
31
32 home = getenv("HOME");
33
34 snprintf(cfg, PATH_MAX, "%s/%s", home, ".imapfilterrc");
35 }
36 #ifdef DEBUG
37 printf("debug: configuration file: '%s'\n", cfg);
38 #endif
39 #ifdef CHECK_PERMISSIONS
40 check_permissions(cfg);
41 #endif
42 fp = fopen(cfg, "r");
43
44 if (!fp)
45 fatal(ERROR_FILE_OPEN, "imapfilter: opening config file %s; %s\n",
46 cfg, strerror(errno));
47
48 if (c)
49 free(c);
50
51 if ((r = parse_config(fp)))
52 fatal(ERROR_CONFIG_PARSE,
53 "imapfilter: parse error in config file at row %d\n", r);
54
55 fclose(fp);
56
57 #ifdef DEBUG
58 printf("debug: options: %0#10x\n", options);
59 #endif
60
61 return 0;
62 }
63
64
65 #ifdef CHECK_PERMISSIONS
66 /*
67 * Check the permissions of the configuration file.
68 */
69 int check_permissions(char *cfg)
70 {
71 struct stat fs;
72
73 if (stat(cfg, &fs)) {
74 error("imapfilter: getting file %s status; %s\n", cfg,
75 strerror(errno));
76 return ERROR_TRIVIAL;
77 }
78 if (!S_ISREG(fs.st_mode)) {
79 error("imapfilter: file %s not a regular file\n", cfg);
80 return ERROR_TRIVIAL;
81 }
82 if ((fs.st_mode & 00777) != (S_IRUSR | S_IWUSR)) {
83 error("imapfilter: warning: improper config file %s permissions\n"
84 "imapfilter: warning: file's mode should be 600 not %o\n",
85 cfg, fs.st_mode & 00777);
86 return ERROR_TRIVIAL;
87 }
88 return 0;
89 }
90 #endif
91
92 /*
93 * Parse configuration file.
94 */
95 int parse_config(FILE * fp)
96 {
97 int i, r = 0;
98 unsigned int row = 0;
99 char line[LINE_MAX];
100 regex_t creg[12];
101 regmatch_t match[7];
102 const char *reg[12] = {
103 "^([[:blank:]]*\n|#.*\n)$",
104 "^[[:blank:]]*ACCOUNT[[:blank:]]+([[:graph:]]*):([[:graph:]]*)@([[:alnum:].-]+)(:[[:digit:]]+)?[[:blank:]]*\n$",
105 "^[[:blank:]]*FOLDER[[:blank:]]+([[:alnum:]_-]+)[[:blank:]]+([[:graph:]]+)[[:blank:]]*\n$",
106 "^[[:blank:]]*FILTER[[:blank:]]+([[:alnum:]_-]+)[[:blank:]]*([[:blank:]]OR|[[:blank:]]AND)?[[:blank:]]*\n$",
107 "^[[:blank:]]*ACTION[[:blank:]]+(DELETE|COPY[[:blank:]]+([[:graph:]]+)|MOVE[[:blank:]]+([[:graph:]]+)|LIST)[[:blank:]]*([[:graph:]]*)[[:blank:]]*\n$",
108 "^[[:blank:]]*(MASK[[:blank:]])?[[:blank:]]*(OR[[:blank:]]|AND[[:blank:]])?[[:blank:]]*(NOT[[:blank:]])?[[:blank:]]*(ANSWERED|DELETED|DRAFT|FLAGGED|NEW|OLD|RECENT|SEEN|UNANSWERED|UNDELETED|UNDRAFT|UNFLAGGED|UNSEEN)[[:blank:]]*\n$",
109 "^[[:blank:]]*(MASK[[:blank:]])?[[:blank:]]*(OR[[:blank:]]|AND[[:blank:]])?[[:blank:]]*(NOT[[:blank:]])?[[:blank:]]*(BCC|BODY|CC|FROM|SUBJECT|TEXT|TO)[[:blank:]]+(\"[[:print:]]*\"|[[:graph:]]+)[[:blank:]]*\n$",
110 "^[[:blank:]]*(MASK[[:blank:]])?[[:blank:]]*(OR[[:blank:]]|AND[[:blank:]])?[[:blank:]]*(NOT[[:blank:]])?[[:blank:]]*(HEADER)[[:blank:]]+(\"[[:print:]]*\"|[[:graph:]]+)[[:blank:]]+(\"[[:print:]]*\"|[[:graph:]]+)[[:blank:]]*\n$",
111 "^[[:blank:]]*(MASK[[:blank:]])?[[:blank:]]*(OR[[:blank:]]|AND[[:blank:]])?[[:blank:]]*(NOT[[:blank:]])?[[:blank:]]*(LARGER|SMALLER)[[:blank:]]+([[:digit:]]+)[[:blank:]]*\n$",
112 "^[[:blank:]]*JOB[[:blank:]]+([[:alnum:],_-]+)[[:blank:]]+([[:alnum:],_-]+)[[:blank:]]*\n$",
113 "^[[:blank:]]*(LOGFILE)[[:blank:]]*=[[:blank:]]*([[:print:]]+)\n$",
114 "^[[:blank:]]*(HEADERS)[[:blank:]]*=[[:blank:]]*(YES|NO)[[:blank:]]*\n$"
115 };
116
117 for (i = 0; i < 12; i++)
118 regcomp(&creg[i], reg[i], REG_EXTENDED | REG_ICASE);
119
120 while (fgets(line, LINE_MAX - 1, fp)) {
121 row++;
122 if (!regexec(&creg[0], line, 0, match, 0))
123 continue;
124 else if (!regexec(&creg[1], line, 6, match, 0))
125 set_account(line, match);
126 else if (!regexec(&creg[2], line, 3, match, 0))
127 r = set_mboxgrp(line, match);
128 else if (!regexec(&creg[3], line, 3, match, 0))
129 r = set_filter(line, match);
130 else if (!regexec(&creg[4], line, 5, match, 0))
131 r = set_action(line, match);
132 else if (!regexec(&creg[5], line, 7, match, 0) ||
133 !regexec(&creg[6], line, 7, match, 0) ||
134 !regexec(&creg[7], line, 7, match, 0) ||
135 !regexec(&creg[8], line, 7, match, 0))
136 r = set_mask(line, match);
137 else if (!regexec(&creg[9], line, 3, match, 0))
138 r = set_job(line, match);
139 else if (!regexec(&creg[10], line, 3, match, 0) ||
140 !regexec(&creg[11], line, 3, match, 0))
141 set_options(line, match);
142 else
143 return row;
144
145 if (r == ERROR_CONFIG_PARSE)
146 return row;
147 }
148
149 for (i = 0; i < 12; i++)
150 regfree(&creg[i]);
151
152 destroy_data();
153
154 return 0;
155 }
156
157
158 /*
159 * Set other options found in config file.
160 */
161 void set_options(char *line, regmatch_t * match)
162 {
163 if (!strncasecmp(line + match[1].rm_so, "logfile", 7)) {
164 if (!*logfile)
165 strncat(logfile, line + match[2].rm_so,
166 min((match[2].rm_eo - match[2].rm_so), PATH_MAX - 1));
167 } else {
168 if (!strncasecmp(line + match[2].rm_so, "yes", 3))
169 options |= OPTION_HEADERS;
170 else if (options & OPTION_HEADERS)
171 options ^= OPTION_HEADERS;
172 }
173 }

webmaster@linux.gr
ViewVC Help
Powered by ViewVC 1.1.26