2 ashd - A Sane HTTP Daemon
3 Copyright (C) 2008 Fredrik Tolf <fredrik@dolda2000.com>
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.
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.
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/>.
36 static struct config *cflist;
37 struct config *gconfig, *lconfig;
39 static void freerule(struct rule *rule)
41 freeca(rule->patterns);
45 static void freepattern(struct pattern *pat)
49 for(rule = pat->rules; *rule; rule++)
51 if(pat->childnm != NULL)
57 static void freeconfig(struct config *cf)
59 struct child *ch, *nch;
60 struct pattern *pat, *npat;
63 cf->prev->next = cf->next;
65 cf->next->prev = cf->prev;
70 for(ch = cf->children; ch != NULL; ch = nch) {
74 for(pat = cf->patterns; pat != NULL; pat = npat) {
79 if(cf->capture != NULL)
84 struct child *getchild(struct config *cf, char *name)
88 for(ch = cf->children; ch; ch = ch->next) {
89 if(!strcmp(ch->name, name))
95 static struct rule *newrule(struct pattern *pat)
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;
107 static struct pattern *newpattern(void)
112 pat->rules = szmalloc(sizeof(*pat->rules));
116 static char **cadup(char **w)
122 ret = smalloc(sizeof(*ret) * (l + 1));
123 for(i = 0; i < l; i++)
124 ret[i] = sstrdup(w[i]);
129 static struct pattern *parsepattern(struct cfstate *s)
135 if(!strcmp(s->argv[0], "match")) {
142 if((s->argc > 1) && !strcmp(s->argv[1], "directory"))
147 if(!strcmp(s->argv[0], "filename")) {
149 flog(LOG_WARNING, "%s:%i: missing pattern for `filename' match", s->file, s->lno);
153 rule->type = PAT_BASENAME;
154 rule->patterns = cadup(s->argv + 1);
155 } else if(!strcmp(s->argv[0], "pathname")) {
157 flog(LOG_WARNING, "%s:%i: missing pattern for `pathname' match", s->file, s->lno);
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], "handler")) {
169 flog(LOG_WARNING, "%s:%i: missing child name for `handler' directive", s->file, s->lno);
172 if(pat->childnm != NULL)
174 pat->childnm = sstrdup(s->argv[1]);
175 } else if(!strcmp(s->argv[0], "fork")) {
176 pat->fchild = cadup(s->argv + 1);
177 } else if(!strcmp(s->argv[0], "end") || !strcmp(s->argv[0], "eof")) {
180 flog(LOG_WARNING, "%s:%i: unknown directive `%s' in pattern declaration", s->file, s->lno, s->argv[0]);
184 if(pat->rules[0] == NULL) {
185 flog(LOG_WARNING, "%s:%i: missing rules in match declaration", s->file, sl);
189 if((pat->childnm == NULL) && (pat->fchild == NULL)) {
190 flog(LOG_WARNING, "%s:%i: missing handler in match declaration", s->file, sl);
197 static struct config *emptyconfig(void)
205 struct config *readconfig(char *file)
213 if((in = fopen(file, "r")) == NULL) {
214 flog(LOG_WARNING, "%s: %s", file, strerror(errno));
217 s = mkcfparser(in, file);
222 if((child = parsechild(s)) != NULL) {
223 child->next = cf->children;
224 cf->children = child;
225 } else if((pat = parsepattern(s)) != NULL) {
226 pat->next = cf->patterns;
228 } else if(!strcmp(s->argv[0], "index-file")) {
232 cf->index = cadup(s->argv + 1);
233 } else if(!strcmp(s->argv[0], "capture")) {
235 flog(LOG_WARNING, "%s:%i: missing argument to capture declaration", s->file, s->lno);
238 if(cf->capture != NULL)
240 cf->capture = sstrdup(s->argv[1]);
241 } else if(!strcmp(s->argv[0], "eof")) {
244 flog(LOG_WARNING, "%s:%i: unknown directive `%s'", s->file, s->lno, s->argv[0]);
253 static void mergechildren(struct config *dst, struct config *src)
255 struct child *ch1, *ch2;
257 for(ch1 = dst->children; ch1 != NULL; ch1 = ch1->next) {
258 for(ch2 = src->children; ch2 != NULL; ch2 = ch2->next) {
259 if(!strcmp(ch1->name, ch2->name)) {
268 struct config *getconfig(char *path)
270 struct config *cf, *ocf;
275 fn = sprintf3("%s/.htrc", path);
276 for(cf = cflist; cf != NULL; cf = cf->next) {
277 if(!strcmp(cf->path, path)) {
278 if(now - cf->lastck > 5) {
279 if(stat(fn, &sb) || (sb.st_mtime != cf->mtime))
287 if(access(fn, R_OK) || stat(fn, &sb)) {
291 if((cf = readconfig(fn)) == NULL)
296 mergechildren(cf, ocf);
299 cf->path = sstrdup(path);
310 struct config **getconfigs(char *file)
312 static struct config **ret = NULL;
325 if((p = strrchr(tmp, '/')) == NULL)
328 if((cf = getconfig(tmp)) != NULL)
332 if((cf = getconfig(".")) != NULL)
335 bufadd(buf, lconfig);
337 bufadd(buf, gconfig);
342 struct child *findchild(char *file, char *name, struct config **cf)
348 cfs = getconfigs(file);
349 for(i = 0; cfs[i] != NULL; i++) {
350 if((ch = getchild(cfs[i], name)) != NULL) {
359 struct pattern *findmatch(char *file, int trydefault, int dir)
367 if((bn = strrchr(file, '/')) != NULL)
371 cfs = getconfigs(file);
372 for(c = 0; cfs[c] != NULL; c++) {
373 for(pat = cfs[c]->patterns; pat != NULL; pat = pat->next) {
374 if(!dir && (pat->type == PT_DIR))
376 if(dir && (pat->type != PT_DIR))
378 for(i = 0; (rule = pat->rules[i]) != NULL; i++) {
379 if(rule->type == PAT_BASENAME) {
380 for(o = 0; rule->patterns[o] != NULL; o++) {
381 if(!fnmatch(rule->patterns[o], bn, 0))
384 if(rule->patterns[o] == NULL)
386 } else if(rule->type == PAT_PATHNAME) {
387 for(o = 0; rule->patterns[o] != NULL; o++) {
388 if(!fnmatch(rule->patterns[o], file, FNM_PATHNAME))
391 if(rule->patterns[o] == NULL)
393 } else if(rule->type == PAT_ALL) {
394 } else if(rule->type == PAT_DEFAULT) {
404 return(findmatch(file, 1, dir));