dirplex: Added directory-locality to matches.
[ashd.git] / src / dirplex / conf.c
1 /*
2     ashd - A Sane HTTP Daemon
3     Copyright (C) 2008  Fredrik Tolf <fredrik@dolda2000.com>
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 #include <stdlib.h>
20 #include <stdio.h>
21 #include <unistd.h>
22 #include <string.h>
23 #include <errno.h>
24 #include <fnmatch.h>
25 #include <sys/stat.h>
26
27 #ifdef HAVE_CONFIG_H
28 #include <config.h>
29 #endif
30 #include <utils.h>
31 #include <log.h>
32 #include <cf.h>
33
34 #include "dirplex.h"
35
36 static struct config *cflist;
37 struct config *gconfig, *lconfig;
38
39 static void freerule(struct rule *rule)
40 {
41     freeca(rule->patterns);
42     free(rule);
43 }
44
45 static void freepattern(struct pattern *pat)
46 {
47     struct rule **rule;
48     
49     for(rule = pat->rules; *rule; rule++)
50         freerule(*rule);
51     if(pat->childnm != NULL)
52         free(pat->childnm);
53     freeca(pat->fchild);
54     free(pat);
55 }
56
57 static void freeconfig(struct config *cf)
58 {
59     struct child *ch, *nch;
60     struct pattern *pat, *npat;
61     
62     if(cf->prev != NULL)
63         cf->prev->next = cf->next;
64     if(cf->next != NULL)
65         cf->next->prev = cf->prev;
66     if(cf == cflist)
67         cflist = cf->next;
68     if(cf->path != NULL)
69         free(cf->path);
70     for(ch = cf->children; ch != NULL; ch = nch) {
71         nch = ch->next;
72         freechild(ch);
73     }
74     for(pat = cf->patterns; pat != NULL; pat = npat) {
75         npat = pat->next;
76         freepattern(pat);
77     }
78     freeca(cf->index);
79     if(cf->capture != NULL)
80         free(cf->capture);
81     free(cf);
82 }
83
84 struct child *getchild(struct config *cf, char *name)
85 {
86     struct child *ch;
87     
88     for(ch = cf->children; ch; ch = ch->next) {
89         if(!strcmp(ch->name, name))
90             break;
91     }
92     return(ch);
93 }
94
95 static struct rule *newrule(struct pattern *pat)
96 {
97     int i;
98     struct rule *rule;
99     
100     for(i = 0; pat->rules[i]; i++);
101     pat->rules = srealloc(pat->rules, sizeof(*pat->rules) * (i + 2));
102     rule = pat->rules[i] = szmalloc(sizeof(*rule));
103     pat->rules[i + 1] = NULL;
104     return(rule);
105 }
106
107 static struct pattern *newpattern(void)
108 {
109     struct pattern *pat;
110     
111     omalloc(pat);
112     pat->rules = szmalloc(sizeof(*pat->rules));
113     return(pat);
114 }
115
116 static char **cadup(char **w)
117 {
118     char **ret;
119     int i, l;
120     
121     l = calen(w);
122     ret = smalloc(sizeof(*ret) * (l + 1));
123     for(i = 0; i < l; i++)
124         ret[i] = sstrdup(w[i]);
125     ret[i] = NULL;
126     return(ret);
127 }
128
129 static struct pattern *parsepattern(struct cfstate *s)
130 {
131     struct pattern *pat;
132     struct rule *rule;
133     int sl;
134
135     if(!strcmp(s->argv[0], "match")) {
136         s->expstart = 1;
137         pat = newpattern();
138     } else {
139         return(NULL);
140     }
141     
142     if((s->argc > 1) && !strcmp(s->argv[1], "directory"))
143         pat->type = PT_DIR;
144     sl = s->lno;
145     while(1) {
146         getcfline(s);
147         if(!strcmp(s->argv[0], "filename")) {
148             if(s->argc < 2) {
149                 flog(LOG_WARNING, "%s:%i: missing pattern for `filename' match", s->file, s->lno);
150                 continue;
151             }
152             rule = newrule(pat);
153             rule->type = PAT_BASENAME;
154             rule->patterns = cadup(s->argv + 1);
155         } else if(!strcmp(s->argv[0], "pathname")) {
156             if(s->argc < 2) {
157                 flog(LOG_WARNING, "%s:%i: missing pattern for `pathname' match", s->file, s->lno);
158                 continue;
159             }
160             rule = newrule(pat);
161             rule->type = PAT_PATHNAME;
162             rule->patterns = cadup(s->argv + 1);
163         } else if(!strcmp(s->argv[0], "all")) {
164             newrule(pat)->type = PAT_ALL;
165         } else if(!strcmp(s->argv[0], "default")) {
166             newrule(pat)->type = PAT_DEFAULT;
167         } else if(!strcmp(s->argv[0], "local")) {
168             newrule(pat)->type = PAT_LOCAL;
169         } else if(!strcmp(s->argv[0], "handler")) {
170             if(s->argc < 2) {
171                 flog(LOG_WARNING, "%s:%i: missing child name for `handler' directive", s->file, s->lno);
172                 continue;
173             }
174             if(pat->childnm != NULL)
175                 free(pat->childnm);
176             pat->childnm = sstrdup(s->argv[1]);
177         } else if(!strcmp(s->argv[0], "fork")) {
178             pat->fchild = cadup(s->argv + 1);
179         } else if(!strcmp(s->argv[0], "end") || !strcmp(s->argv[0], "eof")) {
180             break;
181         } else {
182             flog(LOG_WARNING, "%s:%i: unknown directive `%s' in pattern declaration", s->file, s->lno, s->argv[0]);
183         }
184     }
185     
186     if(pat->rules[0] == NULL) {
187         flog(LOG_WARNING, "%s:%i: missing rules in match declaration", s->file, sl);
188         freepattern(pat);
189         return(NULL);
190     }
191     if((pat->childnm == NULL) && (pat->fchild == NULL)) {
192         flog(LOG_WARNING, "%s:%i: missing handler in match declaration", s->file, sl);
193         freepattern(pat);
194         return(NULL);
195     }
196     return(pat);
197 }
198
199 static struct config *emptyconfig(void)
200 {
201     struct config *cf;
202     
203     omalloc(cf);
204     return(cf);
205 }
206
207 struct config *readconfig(char *file)
208 {
209     struct cfstate *s;
210     FILE *in;
211     struct config *cf;
212     struct child *child;
213     struct pattern *pat;
214     
215     if((in = fopen(file, "r")) == NULL) {
216         flog(LOG_WARNING, "%s: %s", file, strerror(errno));
217         return(NULL);
218     }
219     s = mkcfparser(in, file);
220     cf = emptyconfig();
221     
222     while(1) {
223         getcfline(s);
224         if((child = parsechild(s)) != NULL) {
225             child->next = cf->children;
226             cf->children = child;
227         } else if((pat = parsepattern(s)) != NULL) {
228             pat->next = cf->patterns;
229             cf->patterns = pat;
230         } else if(!strcmp(s->argv[0], "index-file")) {
231             freeca(cf->index);
232             cf->index = NULL;
233             if(s->argc > 1)
234                 cf->index = cadup(s->argv + 1);
235         } else if(!strcmp(s->argv[0], "capture")) {
236             if(s->argc < 2) {
237                 flog(LOG_WARNING, "%s:%i: missing argument to capture declaration", s->file, s->lno);
238                 continue;
239             }
240             if(cf->capture != NULL)
241                 free(cf->capture);
242             cf->capture = sstrdup(s->argv[1]);
243         } else if(!strcmp(s->argv[0], "eof")) {
244             break;
245         } else {
246             flog(LOG_WARNING, "%s:%i: unknown directive `%s'", s->file, s->lno, s->argv[0]);
247         }
248     }
249     
250     freecfparser(s);
251     fclose(in);
252     return(cf);
253 }
254
255 static void mergechildren(struct config *dst, struct config *src)
256 {
257     struct child *ch1, *ch2;
258     
259     for(ch1 = dst->children; ch1 != NULL; ch1 = ch1->next) {
260         for(ch2 = src->children; ch2 != NULL; ch2 = ch2->next) {
261             if(!strcmp(ch1->name, ch2->name)) {
262                 ch1->fd = ch2->fd;
263                 ch2->fd = -1;
264                 break;
265             }
266         }
267     }
268 }
269
270 struct config *getconfig(char *path)
271 {
272     struct config *cf, *ocf;
273     struct stat sb;
274     char *fn;
275     time_t mtime;
276     
277     fn = sprintf3("%s/.htrc", path);
278     for(cf = cflist; cf != NULL; cf = cf->next) {
279         if(!strcmp(cf->path, path)) {
280             if(now - cf->lastck > 5) {
281                 if(stat(fn, &sb) || (sb.st_mtime != cf->mtime))
282                     break;
283             }
284             cf->lastck = now;
285             return(cf);
286         }
287     }
288     ocf = cf;
289     if(access(fn, R_OK) || stat(fn, &sb)) {
290         cf = emptyconfig();
291         mtime = 0;
292     } else {
293         if((cf = readconfig(fn)) == NULL)
294             return(NULL);
295         mtime = sb.st_mtime;
296     }
297     if(ocf != NULL) {
298         mergechildren(cf, ocf);
299         freeconfig(ocf);
300     }
301     cf->path = sstrdup(path);
302     cf->mtime = mtime;
303     cf->lastck = now;
304     cf->next = cflist;
305     cf->prev = NULL;
306     if(cflist != NULL)
307         cflist->prev = cf;
308     cflist = cf;
309     return(cf);
310 }
311
312 struct config **getconfigs(char *file)
313 {
314     static struct config **ret = NULL;
315     struct {
316         struct config **b;
317         size_t s, d;
318     } buf;
319     struct config *cf;
320     char *tmp, *p;
321     
322     if(ret != NULL)
323         free(ret);
324     bufinit(buf);
325     tmp = sstrdup(file);
326     while(1) {
327         if((p = strrchr(tmp, '/')) == NULL)
328             break;
329         *p = 0;
330         if((cf = getconfig(tmp)) != NULL)
331             bufadd(buf, cf);
332     }
333     free(tmp);
334     if((cf = getconfig(".")) != NULL)
335         bufadd(buf, cf);
336     if(lconfig != NULL)
337         bufadd(buf, lconfig);
338     if(gconfig != NULL)
339         bufadd(buf, gconfig);
340     bufadd(buf, NULL);
341     return(ret = buf.b);
342 }
343
344 struct child *findchild(char *file, char *name, struct config **cf)
345 {
346     int i;
347     struct config **cfs;
348     struct child *ch;
349     
350     cfs = getconfigs(file);
351     for(i = 0; cfs[i] != NULL; i++) {
352         if((ch = getchild(cfs[i], name)) != NULL) {
353             if(cf != NULL)
354                 *cf = cfs[i];
355             return(ch);
356         }
357     }
358     return(NULL);
359 }
360
361 struct pattern *findmatch(char *file, int trydefault, int dir)
362 {
363     int i, o, c;
364     char *bn;
365     struct config **cfs;
366     struct pattern *pat;
367     struct rule *rule;
368     size_t pl;
369     
370     if((bn = strrchr(file, '/')) != NULL)
371         bn++;
372     else
373         bn = file;
374     cfs = getconfigs(file);
375     for(c = 0; cfs[c] != NULL; c++) {
376         for(pat = cfs[c]->patterns; pat != NULL; pat = pat->next) {
377             if(!dir && (pat->type == PT_DIR))
378                 continue;
379             if(dir && (pat->type != PT_DIR))
380                 continue;
381             for(i = 0; (rule = pat->rules[i]) != NULL; i++) {
382                 if(rule->type == PAT_BASENAME) {
383                     for(o = 0; rule->patterns[o] != NULL; o++) {
384                         if(!fnmatch(rule->patterns[o], bn, 0))
385                             break;
386                     }
387                     if(rule->patterns[o] == NULL)
388                         break;
389                 } else if(rule->type == PAT_PATHNAME) {
390                     for(o = 0; rule->patterns[o] != NULL; o++) {
391                         if(!fnmatch(rule->patterns[o], file, FNM_PATHNAME))
392                             break;
393                     }
394                     if(rule->patterns[o] == NULL)
395                         break;
396                 } else if(rule->type == PAT_ALL) {
397                 } else if(rule->type == PAT_DEFAULT) {
398                     if(!trydefault)
399                         break;
400                 } else if(rule->type == PAT_LOCAL) {
401                     if(cfs[c]->path == NULL)
402                         break;
403                     pl = strlen(cfs[c]->path);
404                     if(!((strlen(file) > pl) && !strncmp(file, cfs[c]->path, pl) && (file[pl] == '/') && !strchr(file + pl + 1, '/')))
405                         break;
406                 }
407             }
408             if(!rule)
409                 return(pat);
410         }
411     }
412     if(!trydefault)
413         return(findmatch(file, 1, dir));
414     return(NULL);
415 }