| 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 <unistd.h> |
| 21 | #include <stdio.h> |
| 22 | #include <fcntl.h> |
| 23 | #include <string.h> |
| 24 | #include <sys/socket.h> |
| 25 | #include <pwd.h> |
| 26 | #include <sys/signal.h> |
| 27 | #include <errno.h> |
| 28 | |
| 29 | #ifdef HAVE_CONFIG_H |
| 30 | #include <config.h> |
| 31 | #endif |
| 32 | #include <utils.h> |
| 33 | #include <mt.h> |
| 34 | #include <mtio.h> |
| 35 | #include <log.h> |
| 36 | #include <req.h> |
| 37 | #include <proc.h> |
| 38 | |
| 39 | #include "htparser.h" |
| 40 | |
| 41 | static int plex; |
| 42 | static char *pidfile = NULL; |
| 43 | static int daemonize, usesyslog; |
| 44 | |
| 45 | static void trimx(struct hthead *req) |
| 46 | { |
| 47 | int i; |
| 48 | |
| 49 | i = 0; |
| 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)); |
| 56 | } else { |
| 57 | i++; |
| 58 | } |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | static struct hthead *parsereq(FILE *in) |
| 63 | { |
| 64 | struct hthead *req; |
| 65 | struct charbuf method, url, ver; |
| 66 | int c; |
| 67 | |
| 68 | req = NULL; |
| 69 | bufinit(method); |
| 70 | bufinit(url); |
| 71 | bufinit(ver); |
| 72 | while(1) { |
| 73 | c = getc(in); |
| 74 | if(c == ' ') { |
| 75 | break; |
| 76 | } else if((c == EOF) || (c < 32) || (c >= 128)) { |
| 77 | goto fail; |
| 78 | } else { |
| 79 | bufadd(method, c); |
| 80 | if(method.d >= 128) |
| 81 | goto fail; |
| 82 | } |
| 83 | } |
| 84 | while(1) { |
| 85 | c = getc(in); |
| 86 | if(c == ' ') { |
| 87 | break; |
| 88 | } else if((c == EOF) || (c < 32)) { |
| 89 | goto fail; |
| 90 | } else { |
| 91 | bufadd(url, c); |
| 92 | if(url.d >= 65536) |
| 93 | goto fail; |
| 94 | } |
| 95 | } |
| 96 | while(1) { |
| 97 | c = getc(in); |
| 98 | if(c == 10) { |
| 99 | break; |
| 100 | } else if(c == 13) { |
| 101 | } else if((c == EOF) || (c < 32) || (c >= 128)) { |
| 102 | goto fail; |
| 103 | } else { |
| 104 | bufadd(ver, c); |
| 105 | if(ver.d >= 128) |
| 106 | goto fail; |
| 107 | } |
| 108 | } |
| 109 | bufadd(method, 0); |
| 110 | bufadd(url, 0); |
| 111 | bufadd(ver, 0); |
| 112 | req = mkreq(method.b, url.b, ver.b); |
| 113 | if(parseheaders(req, in)) |
| 114 | goto fail; |
| 115 | trimx(req); |
| 116 | goto out; |
| 117 | |
| 118 | fail: |
| 119 | if(req != NULL) { |
| 120 | freehthead(req); |
| 121 | req = NULL; |
| 122 | } |
| 123 | out: |
| 124 | buffree(method); |
| 125 | buffree(url); |
| 126 | buffree(ver); |
| 127 | return(req); |
| 128 | } |
| 129 | |
| 130 | static off_t passdata(FILE *in, FILE *out, off_t max) |
| 131 | { |
| 132 | size_t read; |
| 133 | off_t total; |
| 134 | char buf[8192]; |
| 135 | |
| 136 | total = 0; |
| 137 | while(!feof(in) && ((max < 0) || (total < max))) { |
| 138 | read = sizeof(buf); |
| 139 | if(max >= 0) |
| 140 | read = min(max - total, read); |
| 141 | read = fread(buf, 1, read, in); |
| 142 | if(ferror(in)) |
| 143 | return(-1); |
| 144 | if(fwrite(buf, 1, read, out) != read) |
| 145 | return(-1); |
| 146 | total += read; |
| 147 | } |
| 148 | return(total); |
| 149 | } |
| 150 | |
| 151 | static int recvchunks(FILE *in, FILE *out) |
| 152 | { |
| 153 | char buf[8192]; |
| 154 | size_t read, chlen; |
| 155 | int c, r; |
| 156 | |
| 157 | while(1) { |
| 158 | chlen = 0; |
| 159 | r = 0; |
| 160 | while(1) { |
| 161 | c = getc(in); |
| 162 | if(c == 10) { |
| 163 | if(!r) |
| 164 | return(-1); |
| 165 | break; |
| 166 | } else if(c == 13) { |
| 167 | } else if((c >= '0') && (c <= '9')) { |
| 168 | chlen = (chlen << 4) + (c - '0'); |
| 169 | r = 1; |
| 170 | } else if((c >= 'A') && (c <= 'F')) { |
| 171 | chlen = (chlen << 4) + (c + 10 - 'A'); |
| 172 | r = 1; |
| 173 | } else if((c >= 'a') && (c <= 'f')) { |
| 174 | chlen = (chlen << 4) + (c + 10 - 'a'); |
| 175 | r = 1; |
| 176 | } else { |
| 177 | /* XXX: Technically, there may be chunk extensions to |
| 178 | * be read, but since that will likely never actually |
| 179 | * happen in practice, I can just as well add support |
| 180 | * for that if it actually does become relevant. */ |
| 181 | return(-1); |
| 182 | } |
| 183 | } |
| 184 | if(chlen == 0) |
| 185 | break; |
| 186 | while(chlen > 0) { |
| 187 | read = fread(buf, 1, min(sizeof(buf), chlen), in); |
| 188 | if(feof(in) || ferror(in)) |
| 189 | return(-1); |
| 190 | if(fwrite(buf, 1, read, out) != read) |
| 191 | return(-1); |
| 192 | chlen -= read; |
| 193 | } |
| 194 | if((getc(in) != 13) || (getc(in) != 10)) |
| 195 | return(-1); |
| 196 | } |
| 197 | /* XXX: Technically, there may be trailers to be read, but that's |
| 198 | * just about as likely as chunk extensions. */ |
| 199 | if((getc(in) != 13) || (getc(in) != 10)) |
| 200 | return(-1); |
| 201 | return(0); |
| 202 | } |
| 203 | |
| 204 | static int passchunks(FILE *in, FILE *out) |
| 205 | { |
| 206 | char buf[8192]; |
| 207 | size_t read; |
| 208 | |
| 209 | do { |
| 210 | read = fread(buf, 1, sizeof(buf), in); |
| 211 | if(ferror(in)) |
| 212 | return(-1); |
| 213 | fprintf(out, "%zx\r\n", read); |
| 214 | if(fwrite(buf, 1, read, out) != read) |
| 215 | return(-1); |
| 216 | fprintf(out, "\r\n"); |
| 217 | } while(read > 0); |
| 218 | return(0); |
| 219 | } |
| 220 | |
| 221 | static int hasheader(struct hthead *head, char *name, char *val) |
| 222 | { |
| 223 | char *hd; |
| 224 | |
| 225 | if((hd = getheader(head, name)) == NULL) |
| 226 | return(0); |
| 227 | return(!strcasecmp(hd, val)); |
| 228 | } |
| 229 | |
| 230 | static int canonreq(struct hthead *req) |
| 231 | { |
| 232 | char *p, *p2, *r; |
| 233 | int n; |
| 234 | |
| 235 | if(req->url[0] == '/') { |
| 236 | replrest(req, req->url + 1); |
| 237 | if((p = strchr(req->rest, '?')) != NULL) |
| 238 | *p = 0; |
| 239 | return(1); |
| 240 | } |
| 241 | if((p = strstr(req->url, "://")) != NULL) { |
| 242 | n = p - req->url; |
| 243 | if(((n == 4) && !strncasecmp(req->url, "http", 4)) || |
| 244 | ((n == 5) && !strncasecmp(req->url, "https", 5))) { |
| 245 | if(getheader(req, "host")) |
| 246 | return(0); |
| 247 | p += 3; |
| 248 | if((p2 = strchr(p, '/')) == NULL) { |
| 249 | headappheader(req, "Host", p); |
| 250 | free(req->url); |
| 251 | req->url = sstrdup("/"); |
| 252 | } else { |
| 253 | r = sstrdup(p2); |
| 254 | *(p2++) = 0; |
| 255 | headappheader(req, "Host", p); |
| 256 | free(req->url); |
| 257 | req->url = r; |
| 258 | } |
| 259 | replrest(req, req->url + 1); |
| 260 | if((p = strchr(req->rest, '?')) != NULL) |
| 261 | *p = 0; |
| 262 | return(1); |
| 263 | } |
| 264 | } |
| 265 | return(0); |
| 266 | } |
| 267 | |
| 268 | static int http10keep(struct hthead *req, struct hthead *resp) |
| 269 | { |
| 270 | int fc; |
| 271 | |
| 272 | fc = hasheader(resp, "connection", "close"); |
| 273 | headrmheader(resp, "connection"); |
| 274 | if(!fc && hasheader(req, "connection", "keep-alive")) { |
| 275 | headappheader(resp, "Connection", "Keep-Alive"); |
| 276 | return(1); |
| 277 | } else { |
| 278 | return(0); |
| 279 | } |
| 280 | } |
| 281 | |
| 282 | void serve(FILE *in, struct conn *conn) |
| 283 | { |
| 284 | int pfds[2]; |
| 285 | FILE *out; |
| 286 | struct hthead *req, *resp; |
| 287 | char *hd; |
| 288 | off_t dlen; |
| 289 | int keep; |
| 290 | |
| 291 | out = NULL; |
| 292 | req = resp = NULL; |
| 293 | while(1) { |
| 294 | if((req = parsereq(in)) == NULL) |
| 295 | break; |
| 296 | if(!canonreq(req)) |
| 297 | break; |
| 298 | |
| 299 | if((conn->initreq != NULL) && conn->initreq(conn, req)) |
| 300 | break; |
| 301 | |
| 302 | if(block(plex, EV_WRITE, 60) <= 0) |
| 303 | break; |
| 304 | if(socketpair(PF_UNIX, SOCK_STREAM, 0, pfds)) |
| 305 | break; |
| 306 | if(sendreq(plex, req, pfds[0])) |
| 307 | break; |
| 308 | close(pfds[0]); |
| 309 | out = mtstdopen(pfds[1], 1, 600, "r+"); |
| 310 | |
| 311 | if(getheader(req, "content-type") != NULL) { |
| 312 | if((hd = getheader(req, "content-length")) != NULL) { |
| 313 | dlen = atoo(hd); |
| 314 | if(dlen > 0) { |
| 315 | if(passdata(in, out, dlen) != dlen) |
| 316 | break; |
| 317 | } |
| 318 | } else if(((hd = getheader(req, "transfer-encoding")) != NULL) && !strcasecmp(hd, "chunked")) { |
| 319 | if(recvchunks(in, out)) |
| 320 | break; |
| 321 | } else { |
| 322 | /* Ignore rather than abort, to be kinder to broken clients. */ |
| 323 | headrmheader(req, "content-type"); |
| 324 | } |
| 325 | } |
| 326 | if(fflush(out)) |
| 327 | break; |
| 328 | /* Make sure to send EOF */ |
| 329 | shutdown(pfds[1], SHUT_WR); |
| 330 | |
| 331 | if((resp = parseresponse(out)) == NULL) |
| 332 | break; |
| 333 | replstr(&resp->ver, req->ver); |
| 334 | |
| 335 | if(!getheader(resp, "server")) |
| 336 | headappheader(resp, "Server", sprintf3("ashd/%s", VERSION)); |
| 337 | |
| 338 | if(!strcasecmp(req->ver, "HTTP/1.0")) { |
| 339 | if(!strcasecmp(req->method, "head")) { |
| 340 | keep = http10keep(req, resp); |
| 341 | writeresp(in, resp); |
| 342 | fprintf(in, "\r\n"); |
| 343 | } else if((hd = getheader(resp, "content-length")) != NULL) { |
| 344 | keep = http10keep(req, resp); |
| 345 | dlen = atoo(hd); |
| 346 | writeresp(in, resp); |
| 347 | fprintf(in, "\r\n"); |
| 348 | if(passdata(out, in, dlen) != dlen) |
| 349 | break; |
| 350 | } else { |
| 351 | headrmheader(resp, "connection"); |
| 352 | writeresp(in, resp); |
| 353 | fprintf(in, "\r\n"); |
| 354 | passdata(out, in, -1); |
| 355 | break; |
| 356 | } |
| 357 | if(!keep) |
| 358 | break; |
| 359 | } else if(!strcasecmp(req->ver, "HTTP/1.1")) { |
| 360 | if(!strcasecmp(req->method, "head")) { |
| 361 | writeresp(in, resp); |
| 362 | fprintf(in, "\r\n"); |
| 363 | } else if((hd = getheader(resp, "content-length")) != NULL) { |
| 364 | writeresp(in, resp); |
| 365 | fprintf(in, "\r\n"); |
| 366 | dlen = atoo(hd); |
| 367 | if(passdata(out, in, dlen) != dlen) |
| 368 | break; |
| 369 | } else if(!getheader(resp, "transfer-encoding")) { |
| 370 | headappheader(resp, "Transfer-Encoding", "chunked"); |
| 371 | writeresp(in, resp); |
| 372 | fprintf(in, "\r\n"); |
| 373 | if(passchunks(out, in)) |
| 374 | break; |
| 375 | } else { |
| 376 | writeresp(in, resp); |
| 377 | fprintf(in, "\r\n"); |
| 378 | passdata(out, in, -1); |
| 379 | break; |
| 380 | } |
| 381 | if(hasheader(req, "connection", "close") || hasheader(resp, "connection", "close")) |
| 382 | break; |
| 383 | } else { |
| 384 | break; |
| 385 | } |
| 386 | |
| 387 | fclose(out); |
| 388 | out = NULL; |
| 389 | freehthead(req); |
| 390 | freehthead(resp); |
| 391 | req = resp = NULL; |
| 392 | } |
| 393 | |
| 394 | if(out != NULL) |
| 395 | fclose(out); |
| 396 | if(req != NULL) |
| 397 | freehthead(req); |
| 398 | if(resp != NULL) |
| 399 | freehthead(resp); |
| 400 | fclose(in); |
| 401 | } |
| 402 | |
| 403 | static void plexwatch(struct muth *muth, va_list args) |
| 404 | { |
| 405 | vavar(int, fd); |
| 406 | char *buf; |
| 407 | int ret; |
| 408 | |
| 409 | while(1) { |
| 410 | block(fd, EV_READ, 0); |
| 411 | buf = smalloc(65536); |
| 412 | ret = recv(fd, buf, 65536, 0); |
| 413 | if(ret < 0) { |
| 414 | flog(LOG_WARNING, "received error on rootplex read channel: %s", strerror(errno)); |
| 415 | exit(1); |
| 416 | } else if(ret == 0) { |
| 417 | exit(0); |
| 418 | } |
| 419 | /* Maybe I'd like to implement some protocol in this direction |
| 420 | * some day... */ |
| 421 | free(buf); |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | static void initroot(void *uu) |
| 426 | { |
| 427 | int fd; |
| 428 | |
| 429 | setsid(); |
| 430 | if(daemonize) { |
| 431 | chdir("/"); |
| 432 | if((fd = open("/dev/null", O_RDWR)) >= 0) { |
| 433 | dup2(fd, 0); |
| 434 | dup2(fd, 1); |
| 435 | dup2(fd, 2); |
| 436 | close(fd); |
| 437 | } |
| 438 | } |
| 439 | if(usesyslog) |
| 440 | putenv("ASHD_USESYSLOG=1"); |
| 441 | else |
| 442 | unsetenv("ASHD_USESYSLOG"); |
| 443 | } |
| 444 | |
| 445 | static void usage(FILE *out) |
| 446 | { |
| 447 | fprintf(out, "usage: htparser [-hSf] [-u USER] [-r ROOT] [-p PIDFILE] PORTSPEC... -- ROOT [ARGS...]\n"); |
| 448 | fprintf(out, "\twhere PORTSPEC is HANDLER[:PAR[=VAL][(,PAR[=VAL])...]] (try HANDLER:help)\n"); |
| 449 | fprintf(out, "\tavailable handlers are `plain' and `ssl'.\n"); |
| 450 | } |
| 451 | |
| 452 | static void addport(char *spec) |
| 453 | { |
| 454 | char *nm, *p, *p2, *n; |
| 455 | struct charvbuf pars, vals; |
| 456 | |
| 457 | bufinit(pars); |
| 458 | bufinit(vals); |
| 459 | if((p = strchr(spec, ':')) == NULL) { |
| 460 | nm = spec; |
| 461 | } else { |
| 462 | nm = spec; |
| 463 | *(p++) = 0; |
| 464 | do { |
| 465 | if((n = strchr(p, ',')) != NULL) |
| 466 | *(n++) = 0; |
| 467 | if((p2 = strchr(p, '=')) != NULL) |
| 468 | *(p2++) = 0; |
| 469 | if(!*p) { |
| 470 | usage(stderr); |
| 471 | exit(1); |
| 472 | } |
| 473 | bufadd(pars, p); |
| 474 | if(p2) |
| 475 | bufadd(vals, p2); |
| 476 | else |
| 477 | bufadd(vals, ""); |
| 478 | } while((p = n) != NULL); |
| 479 | } |
| 480 | |
| 481 | /* XXX: It would be nice to decentralize this, but, meh... */ |
| 482 | if(!strcmp(nm, "plain")) { |
| 483 | handleplain(pars.d, pars.b, vals.b); |
| 484 | #ifdef HAVE_GNUTLS |
| 485 | } else if(!strcmp(nm, "ssl")) { |
| 486 | handlegnussl(pars.d, pars.b, vals.b); |
| 487 | #endif |
| 488 | } else { |
| 489 | flog(LOG_ERR, "htparser: unknown port handler `%s'", nm); |
| 490 | exit(1); |
| 491 | } |
| 492 | |
| 493 | buffree(pars); |
| 494 | buffree(vals); |
| 495 | } |
| 496 | |
| 497 | int main(int argc, char **argv) |
| 498 | { |
| 499 | int c; |
| 500 | int i, s1; |
| 501 | char *root; |
| 502 | FILE *pidout; |
| 503 | struct passwd *pwent; |
| 504 | |
| 505 | daemonize = usesyslog = 0; |
| 506 | root = NULL; |
| 507 | pwent = NULL; |
| 508 | while((c = getopt(argc, argv, "+hSfu:r:p:")) >= 0) { |
| 509 | switch(c) { |
| 510 | case 'h': |
| 511 | usage(stdout); |
| 512 | exit(0); |
| 513 | case 'f': |
| 514 | daemonize = 1; |
| 515 | break; |
| 516 | case 'S': |
| 517 | usesyslog = 1; |
| 518 | break; |
| 519 | case 'u': |
| 520 | if((pwent = getpwnam(optarg)) == NULL) { |
| 521 | flog(LOG_ERR, "could not find user %s", optarg); |
| 522 | exit(1); |
| 523 | } |
| 524 | break; |
| 525 | case 'r': |
| 526 | root = optarg; |
| 527 | break; |
| 528 | case 'p': |
| 529 | pidfile = optarg; |
| 530 | break; |
| 531 | default: |
| 532 | usage(stderr); |
| 533 | exit(1); |
| 534 | } |
| 535 | } |
| 536 | s1 = 0; |
| 537 | for(i = optind; i < argc; i++) { |
| 538 | if(!strcmp(argv[i], "--")) |
| 539 | break; |
| 540 | s1 = 1; |
| 541 | addport(argv[i]); |
| 542 | } |
| 543 | if(!s1 || (i == argc)) { |
| 544 | usage(stderr); |
| 545 | exit(1); |
| 546 | } |
| 547 | if((plex = stdmkchild(argv + ++i, initroot, NULL)) < 0) { |
| 548 | flog(LOG_ERR, "could not spawn root multiplexer: %s", strerror(errno)); |
| 549 | return(1); |
| 550 | } |
| 551 | mustart(plexwatch, plex); |
| 552 | pidout = NULL; |
| 553 | if(pidfile != NULL) { |
| 554 | if((pidout = fopen(pidfile, "w")) == NULL) { |
| 555 | flog(LOG_ERR, "could not open %s for writing: %s", pidfile, strerror(errno)); |
| 556 | return(1); |
| 557 | } |
| 558 | } |
| 559 | if(usesyslog) |
| 560 | opensyslog(); |
| 561 | if(root) { |
| 562 | if(chdir(root) || chroot(root)) { |
| 563 | flog(LOG_ERR, "could not chroot to %s: %s", root, strerror(errno)); |
| 564 | exit(1); |
| 565 | } |
| 566 | } |
| 567 | if(pwent) { |
| 568 | if(setgid(pwent->pw_gid)) { |
| 569 | flog(LOG_ERR, "could not switch group to %i: %s", (int)pwent->pw_gid, strerror(errno)); |
| 570 | exit(1); |
| 571 | } |
| 572 | if(setuid(pwent->pw_uid)) { |
| 573 | flog(LOG_ERR, "could not switch user to %i: %s", (int)pwent->pw_uid, strerror(errno)); |
| 574 | exit(1); |
| 575 | } |
| 576 | } |
| 577 | signal(SIGPIPE, SIG_IGN); |
| 578 | if(daemonize) { |
| 579 | daemon(0, 0); |
| 580 | } |
| 581 | if(pidout != NULL) { |
| 582 | fprintf(pidout, "%i\n", getpid()); |
| 583 | fclose(pidout); |
| 584 | } |
| 585 | ioloop(); |
| 586 | return(0); |
| 587 | } |