X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fdirplex%2Fdirplex.c;h=f6002f3361d752173b06f41e75ce9a3e75840fa5;hb=f2f009c95982947f3cd99567a17bbb65120fa741;hp=8b604d2dc945c67717e0e7afb553930b22cd9f35;hpb=cf6e7461a8b2fd0d3c2bb1369046adcf71b71187;p=ashd.git diff --git a/src/dirplex/dirplex.c b/src/dirplex/dirplex.c index 8b604d2..f6002f3 100644 --- a/src/dirplex/dirplex.c +++ b/src/dirplex/dirplex.c @@ -55,13 +55,26 @@ static void chinit(void *idata) } } +static void childerror(struct hthead *req, int fd) +{ + if(errno == EAGAIN) + simpleerror(fd, 500, "Server Error", "The request handler is overloaded."); + else + simpleerror(fd, 500, "Server Error", "The request handler crashed."); +} + static void handle(struct hthead *req, int fd, char *path, struct pattern *pat) { struct child *ch; struct config *ccf; + struct headmod *head; char *twd; - if(!strncmp(path, "./", 2)) + for(head = pat->headers; head != NULL; head = head->next) { + headrmheader(req, head->name); + headappheader(req, head->name, head->value); + } + if(!strncmp(path, "./", 2) && path[2]) path += 2; if(pat->fchild) { headappheader(req, "X-Ash-File", path); @@ -86,7 +99,7 @@ static void handle(struct hthead *req, int fd, char *path, struct pattern *pat) } headappheader(req, "X-Ash-File", path); if(childhandle(ch, req, fd, chinit, twd)) - simpleerror(fd, 500, "Server Error", "The request handler crashed."); + childerror(req, fd); } } @@ -99,7 +112,7 @@ static void handle404(struct hthead *req, int fd, char *path) tmp = sstrdup(path); ch = findchild(tmp, ".notfound", &ccf); if(childhandle(ch, req, fd, chinit, ccf?ccf->path:NULL)) - simpleerror(fd, 500, "Server Error", "The request handler crashed."); + childerror(req, fd); free(tmp); } @@ -239,7 +252,7 @@ static int checkdir(struct hthead *req, int fd, char *path, char *rest) struct child *ch; cf = getconfig(path); - if(cf->capture != NULL) { + if((cf->capture != NULL) && (cf->caproot || !cf->path || strcmp(cf->path, "."))) { cpath = sprintf2("%s/", path); if((ch = findchild(cpath, cf->capture, &ccf)) == NULL) { free(cpath); @@ -252,7 +265,7 @@ static int checkdir(struct hthead *req, int fd, char *path, char *rest) rest++; replrest(req, rest); if(childhandle(ch, req, fd, chinit, ccf?ccf->path:NULL)) - simpleerror(fd, 500, "Server Error", "The request handler crashed."); + childerror(req, fd); return(1); } return(0); @@ -315,10 +328,12 @@ static void serve(struct hthead *req, int fd) static void chldhandler(int sig) { pid_t pid; + int st; - do { - pid = waitpid(-1, NULL, WNOHANG); - } while(pid > 0); + while((pid = waitpid(-1, &st, WNOHANG)) > 0) { + if(WCOREDUMP(st)) + flog(LOG_WARNING, "child process %i dumped core", pid); + } } static void sighandler(int sig)