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/>.
24 #include <sys/socket.h>
26 #include <sys/signal.h>
42 static char *pidfile = NULL;
43 static int daemonize, usesyslog;
45 static void trimx(struct hthead *req)
50 while(i < req->noheaders) {
51 if(!strncasecmp(req->headers[i][0], "x-ash-", 6)) {
52 free(req->headers[i][0]);
53 free(req->headers[i][1]);
54 free(req->headers[i]);
55 memmove(req->headers + i, req->headers + i + 1, sizeof(*req->headers) * (--req->noheaders - i));
62 static struct hthead *parsereq(FILE *in)
65 struct charbuf method, url, ver;
76 } else if((c == EOF) || (c < 32) || (c >= 128)) {
86 } else if((c == EOF) || (c < 32)) {
97 } else if((c == EOF) || (c < 32) || (c >= 128)) {
106 req = mkreq(method.b, url.b, ver.b);
107 if(parseheaders(req, in))
124 static struct hthead *parseresp(FILE *in)
128 struct charbuf ver, msg;
139 } else if((c == EOF) || (c < 32) || (c >= 128)) {
149 } else if((c == EOF) || (c < '0') || (c > '9')) {
152 code = (code * 10) + (c - '0');
160 } else if((c == EOF) || (c < 32)) {
168 req = mkresp(code, msg.b, ver.b);
169 if(parseheaders(req, in))
184 static off_t passdata(FILE *in, FILE *out, off_t max)
191 while(!feof(in) && ((max < 0) || (total < max))) {
194 read = min(max - total, read);
195 read = fread(buf, 1, read, in);
198 if(fwrite(buf, 1, read, out) != read)
205 static int passchunks(FILE *in, FILE *out)
211 read = fread(buf, 1, sizeof(buf), in);
214 fprintf(out, "%zx\r\n", read);
215 if(fwrite(buf, 1, read, out) != read)
217 fprintf(out, "\r\n");
222 static int hasheader(struct hthead *head, char *name, char *val)
226 if((hd = getheader(head, name)) == NULL)
228 return(!strcasecmp(hd, val));
231 void serve(FILE *in, struct conn *conn)
235 struct hthead *req, *resp;
242 if((req = parsereq(in)) == NULL)
244 replrest(req, req->url);
245 if(req->rest[0] == '/')
246 replrest(req, req->rest + 1);
247 if((p = strchr(req->rest, '?')) != NULL)
250 if((conn->initreq != NULL) && conn->initreq(conn, req))
253 if(block(plex, EV_WRITE, 60) <= 0)
255 if(socketpair(PF_UNIX, SOCK_STREAM, 0, pfds))
257 if(sendreq(plex, req, pfds[0]))
260 out = mtstdopen(pfds[1], 1, 600, "r+");
262 if((hd = getheader(req, "content-length")) != NULL) {
265 if(passdata(in, out, dlen) != dlen)
271 /* Make sure to send EOF */
272 shutdown(pfds[1], SHUT_WR);
274 if((resp = parseresp(out)) == NULL)
276 replstr(&resp->ver, req->ver);
278 if(!getheader(resp, "server"))
279 headappheader(resp, "Server", sprintf3("ashd/%s", VERSION));
281 if(!strcmp(req->ver, "HTTP/1.0")) {
284 if(!strcasecmp(req->method, "head")) {
285 if(!hasheader(req, "connection", "keep-alive"))
287 } else if((hd = getheader(resp, "content-length")) != NULL) {
289 if(passdata(out, in, dlen) != dlen)
291 if(!hasheader(req, "connection", "keep-alive"))
294 passdata(out, in, -1);
297 if(hasheader(req, "connection", "close") || hasheader(resp, "connection", "close"))
299 } else if(!strcmp(req->ver, "HTTP/1.1")) {
300 if(!strcasecmp(req->method, "head")) {
303 } else if((hd = getheader(resp, "content-length")) != NULL) {
307 if(passdata(out, in, dlen) != dlen)
309 } else if(!getheader(resp, "transfer-encoding")) {
310 headappheader(resp, "Transfer-Encoding", "chunked");
313 if(passchunks(out, in))
318 passdata(out, in, -1);
321 if(hasheader(req, "connection", "close") || hasheader(resp, "connection", "close"))
343 static void plexwatch(struct muth *muth, va_list args)
350 block(fd, EV_READ, 0);
351 buf = smalloc(65536);
352 ret = recv(fd, buf, 65536, 0);
354 flog(LOG_WARNING, "received error on rootplex read channel: %s", strerror(errno));
356 } else if(ret == 0) {
359 /* Maybe I'd like to implement some protocol in this direction
365 static void initroot(void *uu)
372 if((fd = open("/dev/null", O_RDWR)) >= 0) {
380 putenv("ASHD_USESYSLOG=1");
382 unsetenv("ASHD_USESYSLOG");
385 static void usage(FILE *out)
387 fprintf(out, "usage: htparser [-hSf] [-u USER] [-r ROOT] [-p PIDFILE] PORTSPEC... -- ROOT [ARGS...]\n");
388 fprintf(out, "\twhere PORTSPEC is HANDLER[:PAR[=VAL][(,PAR[=VAL])...]] (try HANDLER:help)\n");
389 fprintf(out, "\tavailable handlers are `plain' and `ssl'.\n");
392 static void addport(char *spec)
394 char *nm, *p, *p2, *n;
395 struct charvbuf pars, vals;
399 if((p = strchr(spec, ':')) == NULL) {
405 if((n = strchr(p, ',')) != NULL)
407 if((p2 = strchr(p, '=')) != NULL)
418 } while((p = n) != NULL);
421 /* XXX: It would be nice to decentralize this, but, meh... */
422 if(!strcmp(nm, "plain")) {
423 handleplain(pars.d, pars.b, vals.b);
425 } else if(!strcmp(nm, "ssl")) {
426 handlegnussl(pars.d, pars.b, vals.b);
429 flog(LOG_ERR, "htparser: unknown port handler `%s'", nm);
437 int main(int argc, char **argv)
443 struct passwd *pwent;
445 daemonize = usesyslog = 0;
448 while((c = getopt(argc, argv, "+hSfu:r:p:")) >= 0) {
460 if((pwent = getpwnam(optarg)) == NULL) {
461 flog(LOG_ERR, "could not find user %s", optarg);
477 for(i = optind; i < argc; i++) {
478 if(!strcmp(argv[i], "--"))
483 if(!s1 || (i == argc)) {
487 if((plex = stdmkchild(argv + ++i, initroot, NULL)) < 0) {
488 flog(LOG_ERR, "could not spawn root multiplexer: %s", strerror(errno));
491 mustart(plexwatch, plex);
493 if(pidfile != NULL) {
494 if((pidout = fopen(pidfile, "w")) == NULL) {
495 flog(LOG_ERR, "could not open %s for writing: %s", pidfile, strerror(errno));
503 flog(LOG_ERR, "could not chroot to %s: %s", root, strerror(errno));
508 if(setgid(pwent->pw_gid)) {
509 flog(LOG_ERR, "could not switch group to %i: %s", (int)pwent->pw_gid, strerror(errno));
512 if(setuid(pwent->pw_uid)) {
513 flog(LOG_ERR, "could not switch user to %i: %s", (int)pwent->pw_uid, strerror(errno));
517 signal(SIGPIPE, SIG_IGN);
522 fprintf(pidout, "%i\n", getpid());