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/>.
37 static struct config *cflist;
38 struct config *gconfig, *lconfig;
40 static void freerule(struct rule *rule)
42 freeca(rule->patterns);
46 static void freepattern(struct pattern *pat)
51 for(rule = pat->rules; *rule; rule++)
53 while((head = pat->headers) != NULL) {
54 pat->headers = head->next;
59 if(pat->childnm != NULL)
65 static void freeconfig(struct config *cf)
67 struct child *ch, *nch;
68 struct pattern *pat, *npat;
71 cf->prev->next = cf->next;
73 cf->next->prev = cf->prev;
78 for(ch = cf->children; ch != NULL; ch = nch) {
82 for(pat = cf->patterns; pat != NULL; pat = npat) {
87 if(cf->capture != NULL)
92 struct child *getchild(struct config *cf, char *name)
96 for(ch = cf->children; ch; ch = ch->next) {
97 if(!strcmp(ch->name, name))
103 static struct rule *newrule(struct pattern *pat)
108 for(i = 0; pat->rules[i]; i++);
109 pat->rules = srealloc(pat->rules, sizeof(*pat->rules) * (i + 2));
110 rule = pat->rules[i] = szmalloc(sizeof(*rule));
111 pat->rules[i + 1] = NULL;
115 static struct pattern *newpattern(void)
120 pat->rules = szmalloc(sizeof(*pat->rules));
124 static char **cadup(char **w)
130 ret = smalloc(sizeof(*ret) * (l + 1));
131 for(i = 0; i < l; i++)
132 ret[i] = sstrdup(w[i]);
137 static struct pattern *parsepattern(struct cfstate *s)
141 struct headmod *head;
144 if(!strcmp(s->argv[0], "match")) {
151 if((s->argc > 1) && !strcmp(s->argv[1], "directory"))
153 else if((s->argc > 1) && !strcmp(s->argv[1], "notfound"))
154 pat->type = PT_NOTFOUND;
160 if(!strcmp(s->argv[0], "filename")) {
162 flog(LOG_WARNING, "%s:%i: missing pattern for `filename' match", s->file, s->lno);
166 rule->type = PAT_BASENAME;
167 rule->patterns = cadup(s->argv + 1);
168 } else if(!strcmp(s->argv[0], "pathname")) {
170 flog(LOG_WARNING, "%s:%i: missing pattern for `pathname' match", s->file, s->lno);
174 rule->type = PAT_PATHNAME;
175 rule->patterns = cadup(s->argv + 1);
176 } else if(!strcmp(s->argv[0], "all")) {
177 newrule(pat)->type = PAT_ALL;
178 } else if(!strcmp(s->argv[0], "default")) {
179 newrule(pat)->type = PAT_DEFAULT;
180 } else if(!strcmp(s->argv[0], "local")) {
181 newrule(pat)->type = PAT_LOCAL;
182 } else if(!strcmp(s->argv[0], "handler")) {
184 flog(LOG_WARNING, "%s:%i: missing child name for `handler' directive", s->file, s->lno);
187 if(pat->childnm != NULL)
189 pat->childnm = sstrdup(s->argv[1]);
190 } else if(!strcmp(s->argv[0], "fork")) {
191 pat->fchild = cadup(s->argv + 1);
192 } else if(!strcmp(s->argv[0], "set") || !strcmp(s->argv[0], "xset")) {
194 flog(LOG_WARNING, "%s:%i: missing header name or pattern for `%s' directive", s->file, s->lno, s->argv[0]);
198 if(!strcmp(s->argv[0], "xset"))
199 head->name = sprintf2("X-Ash-%s", s->argv[1]);
201 head->name = sstrdup(s->argv[1]);
202 head->value = sstrdup(s->argv[2]);
203 head->next = pat->headers;
205 } else if(!strcmp(s->argv[0], "end") || !strcmp(s->argv[0], "eof")) {
208 flog(LOG_WARNING, "%s:%i: unknown directive `%s' in pattern declaration", s->file, s->lno, s->argv[0]);
212 if(pat->rules[0] == NULL) {
213 flog(LOG_WARNING, "%s:%i: missing rules in match declaration", s->file, sl);
217 if((pat->childnm == NULL) && (pat->fchild == NULL)) {
218 flog(LOG_WARNING, "%s:%i: missing handler in match declaration", s->file, sl);
225 static struct config *emptyconfig(void)
233 struct config *readconfig(char *file)
241 if((in = fopen(file, "r")) == NULL) {
242 flog(LOG_WARNING, "%s: %s", file, strerror(errno));
245 s = mkcfparser(in, file);
250 if((child = parsechild(s)) != NULL) {
251 child->next = cf->children;
252 cf->children = child;
253 } else if((pat = parsepattern(s)) != NULL) {
254 pat->next = cf->patterns;
256 } else if(!strcmp(s->argv[0], "index-file")) {
258 cf->index = cadup(s->argv + 1);
259 } else if(!strcmp(s->argv[0], "capture")) {
261 flog(LOG_WARNING, "%s:%i: missing argument to capture declaration", s->file, s->lno);
264 if(cf->capture != NULL)
266 cf->capture = sstrdup(s->argv[1]);
268 if((s->argc > 2) && strchr(s->argv[2], 'D'))
270 } else if(!strcmp(s->argv[0], "eof")) {
273 flog(LOG_WARNING, "%s:%i: unknown directive `%s'", s->file, s->lno, s->argv[0]);
282 struct config *getconfig(char *path)
284 struct config *cf, *ocf;
289 fn = sprintf3("%s/.htrc", path);
290 for(cf = cflist; cf != NULL; cf = cf->next) {
291 if(!strcmp(cf->path, path)) {
292 if(now - cf->lastck > 5) {
294 if(stat(fn, &sb) || (sb.st_mtime != cf->mtime))
301 if(access(fn, R_OK) || stat(fn, &sb)) {
305 if((cf = readconfig(fn)) == NULL)
310 mergechildren(cf->children, ocf->children);
313 cf->path = sstrdup(path);
324 struct config **getconfigs(char *file)
326 static struct config **ret = NULL;
337 if(!strncmp(file, "./", 2))
341 if((p = strrchr(tmp, '/')) == NULL)
344 if((cf = getconfig(tmp)) != NULL)
348 if((cf = getconfig(".")) != NULL)
351 bufadd(buf, lconfig);
353 bufadd(buf, gconfig);
358 struct child *findchild(char *file, char *name, struct config **cf)
366 cfs = getconfigs(file);
367 for(i = 0; cfs[i] != NULL; i++) {
368 if((ch = getchild(cfs[i], name)) != NULL) {
374 if(!strcmp(name, ".notfound"))
379 struct pattern *findmatch(char *file, int trydefault, int type)
388 if((bn = strrchr(file, '/')) != NULL)
392 cfs = getconfigs(file);
393 for(c = 0; cfs[c] != NULL; c++) {
394 if(cfs[c]->path == NULL) {
397 pl = strlen(cfs[c]->path);
398 if((strlen(file) > pl) && !strncmp(file, cfs[c]->path, pl) && (file[pl] == '/'))
401 ln = file; /* This should only happen in the base directory. */
403 for(pat = cfs[c]->patterns; pat != NULL; pat = pat->next) {
404 if(pat->type != type)
406 for(i = 0; (rule = pat->rules[i]) != NULL; i++) {
407 if(rule->type == PAT_BASENAME) {
408 for(o = 0; rule->patterns[o] != NULL; o++) {
409 if(!fnmatch(rule->patterns[o], bn, 0))
412 if(rule->patterns[o] == NULL)
414 } else if(rule->type == PAT_PATHNAME) {
415 for(o = 0; rule->patterns[o] != NULL; o++) {
416 if(!fnmatch(rule->patterns[o], ln, FNM_PATHNAME))
419 if(rule->patterns[o] == NULL)
421 } else if(rule->type == PAT_ALL) {
422 } else if(rule->type == PAT_DEFAULT) {
425 } else if(rule->type == PAT_LOCAL) {
435 return(findmatch(file, 1, type));
439 static int donotfound(struct child *ch, struct hthead *req, int fd, void (*chinit)(void *), void *idata)
441 simpleerror(fd, 404, "Not Found", "The requested URL has no corresponding resource.");
445 static struct chandler i_notfound = {
446 .handle = donotfound,
449 static struct child s_notfound = {
451 .iface = &i_notfound,
453 struct child *notfound = &s_notfound;