busybox/networking/httpd.c
<<
>>
Prefs
   1/* vi: set sw=4 ts=4: */
   2/*
   3 * httpd implementation for busybox
   4 *
   5 * Copyright (C) 2002,2003 Glenn Engel <glenne@engel.org>
   6 * Copyright (C) 2003-2006 Vladimir Oleynik <dzo@simtreas.ru>
   7 *
   8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
   9 *
  10 *****************************************************************************
  11 *
  12 * Typical usage:
  13 * For non root user:
  14 *      httpd -p 8080 -h $HOME/public_html
  15 * For daemon start from rc script with uid=0:
  16 *      httpd -u www
  17 * which is equivalent to (assuming user www has uid 80):
  18 *      httpd -p 80 -u 80 -h $PWD -c /etc/httpd.conf -r "Web Server Authentication"
  19 *
  20 * When an url starts with "/cgi-bin/" it is assumed to be a cgi script.
  21 * The server changes directory to the location of the script and executes it
  22 * after setting QUERY_STRING and other environment variables.
  23 *
  24 * If directory URL is given, no index.html is found and CGI support is enabled,
  25 * cgi-bin/index.cgi will be run. Directory to list is ../$QUERY_STRING.
  26 * See httpd_indexcgi.c for an example GCI code.
  27 *
  28 * Doc:
  29 * "CGI Environment Variables": http://hoohoo.ncsa.uiuc.edu/cgi/env.html
  30 *
  31 * The applet can also be invoked as an url arg decoder and html text encoder
  32 * as follows:
  33 *      foo=`httpd -d $foo`             # decode "Hello%20World" as "Hello World"
  34 *      bar=`httpd -e "<Hello World>"`  # encode as "&#60Hello&#32World&#62"
  35 * Note that url encoding for arguments is not the same as html encoding for
  36 * presentation.  -d decodes an url-encoded argument while -e encodes in html
  37 * for page display.
  38 *
  39 * httpd.conf has the following format:
  40 *
  41 * H:/serverroot     # define the server root. It will override -h
  42 * A:172.20.         # Allow address from 172.20.0.0/16
  43 * A:10.0.0.0/25     # Allow any address from 10.0.0.0-10.0.0.127
  44 * A:10.0.0.0/255.255.255.128  # Allow any address that previous set
  45 * A:127.0.0.1       # Allow local loopback connections
  46 * D:*               # Deny from other IP connections
  47 * E404:/path/e404.html # /path/e404.html is the 404 (not found) error page
  48 * I:index.html      # Show index.html when a directory is requested
  49 *
  50 * P:/url:[http://]hostname[:port]/new/path
  51 *                   # When /urlXXXXXX is requested, reverse proxy
  52 *                   # it to http://hostname[:port]/new/pathXXXXXX
  53 *
  54 * /cgi-bin:foo:bar  # Require user foo, pwd bar on urls starting with /cgi-bin/
  55 * /adm:admin:setup  # Require user admin, pwd setup on urls starting with /adm/
  56 * /adm:toor:PaSsWd  # or user toor, pwd PaSsWd on urls starting with /adm/
  57 * /adm:root:*       # or user root, pwd from /etc/passwd on urls starting with /adm/
  58 * /wiki:*:*         # or any user from /etc/passwd with according pwd on urls starting with /wiki/
  59 * .au:audio/basic   # additional mime type for audio.au files
  60 * *.php:/path/php   # run xxx.php through an interpreter
  61 *
  62 * A/D may be as a/d or allow/deny - only first char matters.
  63 * Deny/Allow IP logic:
  64 *  - Default is to allow all (Allow all (A:*) is a no-op).
  65 *  - Deny rules take precedence over allow rules.
  66 *  - "Deny all" rule (D:*) is applied last.
  67 *
  68 * Example:
  69 *   1. Allow only specified addresses
  70 *     A:172.20          # Allow any address that begins with 172.20.
  71 *     A:10.10.          # Allow any address that begins with 10.10.
  72 *     A:127.0.0.1       # Allow local loopback connections
  73 *     D:*               # Deny from other IP connections
  74 *
  75 *   2. Only deny specified addresses
  76 *     D:1.2.3.        # deny from 1.2.3.0 - 1.2.3.255
  77 *     D:2.3.4.        # deny from 2.3.4.0 - 2.3.4.255
  78 *     A:*             # (optional line added for clarity)
  79 *
  80 * If a sub directory contains config file, it is parsed and merged with
  81 * any existing settings as if it was appended to the original configuration.
  82 *
  83 * subdir paths are relative to the containing subdir and thus cannot
  84 * affect the parent rules.
  85 *
  86 * Note that since the sub dir is parsed in the forked thread servicing the
  87 * subdir http request, any merge is discarded when the process exits.  As a
  88 * result, the subdir settings only have a lifetime of a single request.
  89 *
  90 * Custom error pages can contain an absolute path or be relative to
  91 * 'home_httpd'. Error pages are to be static files (no CGI or script). Error
  92 * page can only be defined in the root configuration file and are not taken
  93 * into account in local (directories) config files.
  94 *
  95 * If -c is not set, an attempt will be made to open the default
  96 * root configuration file.  If -c is set and the file is not found, the
  97 * server exits with an error.
  98 */
  99//config:config HTTPD
 100//config:       bool "httpd (32 kb)"
 101//config:       default y
 102//config:       help
 103//config:       HTTP server.
 104//config:
 105//config:config FEATURE_HTTPD_RANGES
 106//config:       bool "Support 'Ranges:' header"
 107//config:       default y
 108//config:       depends on HTTPD
 109//config:       help
 110//config:       Makes httpd emit "Accept-Ranges: bytes" header and understand
 111//config:       "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
 112//config:       downloads, seeking in multimedia players etc.
 113//config:
 114//config:config FEATURE_HTTPD_SETUID
 115//config:       bool "Enable -u <user> option"
 116//config:       default y
 117//config:       depends on HTTPD
 118//config:       help
 119//config:       This option allows the server to run as a specific user
 120//config:       rather than defaulting to the user that starts the server.
 121//config:       Use of this option requires special privileges to change to a
 122//config:       different user.
 123//config:
 124//config:config FEATURE_HTTPD_BASIC_AUTH
 125//config:       bool "Enable HTTP authentication"
 126//config:       default y
 127//config:       depends on HTTPD
 128//config:       help
 129//config:       Utilizes password settings from /etc/httpd.conf for basic
 130//config:       authentication on a per url basis.
 131//config:       Example for httpd.conf file:
 132//config:       /adm:toor:PaSsWd
 133//config:
 134//config:config FEATURE_HTTPD_AUTH_MD5
 135//config:       bool "Support MD5-encrypted passwords in HTTP authentication"
 136//config:       default y
 137//config:       depends on FEATURE_HTTPD_BASIC_AUTH
 138//config:       help
 139//config:       Enables encrypted passwords, and wildcard user/passwords
 140//config:       in httpd.conf file.
 141//config:       User '*' means 'any system user name is ok',
 142//config:       password of '*' means 'use system password for this user'
 143//config:       Examples:
 144//config:       /adm:toor:$1$P/eKnWXS$aI1aPGxT.dJD5SzqAKWrF0
 145//config:       /adm:root:*
 146//config:       /wiki:*:*
 147//config:
 148//config:config FEATURE_HTTPD_CGI
 149//config:       bool "Support Common Gateway Interface (CGI)"
 150//config:       default y
 151//config:       depends on HTTPD
 152//config:       help
 153//config:       This option allows scripts and executables to be invoked
 154//config:       when specific URLs are requested.
 155//config:
 156//config:config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
 157//config:       bool "Support running scripts through an interpreter"
 158//config:       default y
 159//config:       depends on FEATURE_HTTPD_CGI
 160//config:       help
 161//config:       This option enables support for running scripts through an
 162//config:       interpreter. Turn this on if you want PHP scripts to work
 163//config:       properly. You need to supply an additional line in your
 164//config:       httpd.conf file:
 165//config:       *.php:/path/to/your/php
 166//config:
 167//config:config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
 168//config:       bool "Set REMOTE_PORT environment variable for CGI"
 169//config:       default y
 170//config:       depends on FEATURE_HTTPD_CGI
 171//config:       help
 172//config:       Use of this option can assist scripts in generating
 173//config:       references that contain a unique port number.
 174//config:
 175//config:config FEATURE_HTTPD_ENCODE_URL_STR
 176//config:       bool "Enable -e option (useful for CGIs written as shell scripts)"
 177//config:       default y
 178//config:       depends on HTTPD
 179//config:       help
 180//config:       This option allows html encoding of arbitrary strings for display
 181//config:       by the browser. Output goes to stdout.
 182//config:       For example, httpd -e "<Hello World>" produces
 183//config:       "&#60Hello&#32World&#62".
 184//config:
 185//config:config FEATURE_HTTPD_ERROR_PAGES
 186//config:       bool "Support custom error pages"
 187//config:       default y
 188//config:       depends on HTTPD
 189//config:       help
 190//config:       This option allows you to define custom error pages in
 191//config:       the configuration file instead of the default HTTP status
 192//config:       error pages. For instance, if you add the line:
 193//config:               E404:/path/e404.html
 194//config:       in the config file, the server will respond the specified
 195//config:       '/path/e404.html' file instead of the terse '404 NOT FOUND'
 196//config:       message.
 197//config:
 198//config:config FEATURE_HTTPD_PROXY
 199//config:       bool "Support reverse proxy"
 200//config:       default y
 201//config:       depends on HTTPD
 202//config:       help
 203//config:       This option allows you to define URLs that will be forwarded
 204//config:       to another HTTP server. To setup add the following line to the
 205//config:       configuration file
 206//config:               P:/url/:http://hostname[:port]/new/path/
 207//config:       Then a request to /url/myfile will be forwarded to
 208//config:       http://hostname[:port]/new/path/myfile.
 209//config:
 210//config:config FEATURE_HTTPD_GZIP
 211//config:       bool "Support GZIP content encoding"
 212//config:       default y
 213//config:       depends on HTTPD
 214//config:       help
 215//config:       Makes httpd send files using GZIP content encoding if the
 216//config:       client supports it and a pre-compressed <file>.gz exists.
 217//config:
 218//config:config FEATURE_HTTPD_ETAG
 219//config:       bool "Support caching via ETag header"
 220//config:       default y
 221//config:       depends on HTTPD
 222//config:       help
 223//config:       If server responds with ETag then next time client (browser)
 224//config:       resend it via If-None-Match header.
 225//config:       Then httpd will check if file wasn't modified and if not,
 226//config:       return 304 Not Modified status code.
 227//config:       The ETag value is constructed from last modification date
 228//config:       in unix epoch, and size: "hex(last_mod)-hex(file_size)".
 229//config:       It's not completely reliable as hash functions but fair enough.
 230//config:
 231//config:config FEATURE_HTTPD_LAST_MODIFIED
 232//config:       bool "Add Last-Modified header to response"
 233//config:       default y
 234//config:       depends on HTTPD
 235//config:       help
 236//config:       The Last-Modified header is used for cache validation.
 237//config:       The client sends last seen mtime to server in If-Modified-Since.
 238//config:       Both headers MUST be an RFC 1123 formatted, which is hard to parse.
 239//config:       Use ETag header instead.
 240//config:
 241//config:config FEATURE_HTTPD_DATE
 242//config:       bool "Add Date header to response"
 243//config:       default y
 244//config:       depends on HTTPD
 245//config:       help
 246//config:       RFC2616 says that server MUST add Date header to response.
 247//config:       But it is almost useless and can be omitted.
 248//config:
 249//config:config FEATURE_HTTPD_ACL_IP
 250//config:       bool "ACL IP"
 251//config:       default y
 252//config:       depends on HTTPD
 253//config:       help
 254//config:       Support IP deny/allow rules
 255
 256//applet:IF_HTTPD(APPLET(httpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
 257
 258//kbuild:lib-$(CONFIG_HTTPD) += httpd.o
 259
 260//usage:#define httpd_trivial_usage
 261//usage:       "[-ifv[v]]"
 262//usage:       " [-c CONFFILE]"
 263//usage:       " [-p [IP:]PORT]"
 264//usage:        IF_FEATURE_HTTPD_SETUID(" [-u USER[:GRP]]")
 265//usage:        IF_FEATURE_HTTPD_BASIC_AUTH(" [-r REALM]")
 266//usage:       " [-h HOME]\n"
 267//usage:       "or httpd -d/-e" IF_FEATURE_HTTPD_AUTH_MD5("/-m") " STRING"
 268//usage:#define httpd_full_usage "\n\n"
 269//usage:       "Listen for incoming HTTP requests\n"
 270//usage:     "\n        -i              Inetd mode"
 271//usage:     "\n        -f              Don't daemonize"
 272//usage:     "\n        -v[v]           Verbose"
 273//usage:     "\n        -p [IP:]PORT    Bind to IP:PORT (default *:80)"
 274//usage:        IF_FEATURE_HTTPD_SETUID(
 275//usage:     "\n        -u USER[:GRP]   Set uid/gid after binding to port")
 276//usage:        IF_FEATURE_HTTPD_BASIC_AUTH(
 277//usage:     "\n        -r REALM        Authentication Realm for Basic Authentication")
 278//usage:     "\n        -h HOME         Home directory (default .)"
 279//usage:     "\n        -c FILE         Configuration file (default {/etc,HOME}/httpd.conf)"
 280//usage:        IF_FEATURE_HTTPD_AUTH_MD5(
 281//usage:     "\n        -m STRING       MD5 crypt STRING")
 282//usage:     "\n        -e STRING       HTML encode STRING"
 283//usage:     "\n        -d STRING       URL decode STRING"
 284
 285/* TODO: use TCP_CORK, parse_config() */
 286
 287#include "libbb.h"
 288#include "common_bufsiz.h"
 289#if ENABLE_PAM
 290/* PAM may include <locale.h>. We may need to undefine bbox's stub define: */
 291# undef setlocale
 292/* For some obscure reason, PAM is not in pam/xxx, but in security/xxx.
 293 * Apparently they like to confuse people. */
 294# include <security/pam_appl.h>
 295# include <security/pam_misc.h>
 296#endif
 297#if ENABLE_FEATURE_USE_SENDFILE
 298# include <sys/sendfile.h>
 299#endif
 300
 301/* see sys/netinet6/in6.h */
 302#if defined(__FreeBSD__)
 303# define s6_addr32 __u6_addr.__u6_addr32
 304#endif
 305
 306#define DEBUG 0
 307
 308#if DEBUG
 309# define dbg(...) fprintf(stderr, __VA_ARGS__)
 310#else
 311# define dbg(...) ((void)0)
 312#endif
 313
 314#define IOBUF_SIZE 8192
 315#define MAX_HTTP_HEADERS_SIZE (32*1024)
 316
 317#define HEADER_READ_TIMEOUT 60
 318
 319static const char DEFAULT_PATH_HTTPD_CONF[] ALIGN1 = "/etc";
 320static const char HTTPD_CONF[] ALIGN1 = "httpd.conf";
 321static const char HTTP_200[] ALIGN1 = "HTTP/1.1 200 OK\r\n";
 322static const char index_html[] ALIGN1 = "index.html";
 323
 324typedef struct has_next_ptr {
 325        struct has_next_ptr *next;
 326} has_next_ptr;
 327
 328/* Must have "next" as a first member */
 329typedef struct Htaccess {
 330        struct Htaccess *next;
 331        char *after_colon;
 332        char before_colon[1];  /* really bigger, must be last */
 333} Htaccess;
 334
 335#if ENABLE_FEATURE_HTTPD_ACL_IP
 336/* Must have "next" as a first member */
 337typedef struct Htaccess_IP {
 338        struct Htaccess_IP *next;
 339        unsigned ip;
 340        unsigned mask;
 341        int allow_deny;
 342} Htaccess_IP;
 343#endif
 344
 345/* Must have "next" as a first member */
 346typedef struct Htaccess_Proxy {
 347        struct Htaccess_Proxy *next;
 348        char *url_from;
 349        char *host_port;
 350        char *url_to;
 351} Htaccess_Proxy;
 352
 353enum {
 354        HTTP_OK = 200,
 355        HTTP_PARTIAL_CONTENT = 206,
 356        HTTP_MOVED_TEMPORARILY = 302,
 357        HTTP_NOT_MODIFIED = 304,
 358        HTTP_BAD_REQUEST = 400,       /* malformed syntax */
 359        HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
 360        HTTP_NOT_FOUND = 404,
 361        HTTP_FORBIDDEN = 403,
 362        HTTP_REQUEST_TIMEOUT = 408,
 363        HTTP_NOT_IMPLEMENTED = 501,   /* used for unrecognized requests */
 364        HTTP_INTERNAL_SERVER_ERROR = 500,
 365        HTTP_ENTITY_TOO_LARGE = 413,
 366        HTTP_CONTINUE = 100,
 367#if 0   /* future use */
 368        HTTP_SWITCHING_PROTOCOLS = 101,
 369        HTTP_CREATED = 201,
 370        HTTP_ACCEPTED = 202,
 371        HTTP_NON_AUTHORITATIVE_INFO = 203,
 372        HTTP_NO_CONTENT = 204,
 373        HTTP_MULTIPLE_CHOICES = 300,
 374        HTTP_MOVED_PERMANENTLY = 301,
 375        HTTP_PAYMENT_REQUIRED = 402,
 376        HTTP_BAD_GATEWAY = 502,
 377        HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
 378#endif
 379};
 380
 381static const uint16_t http_response_type[] ALIGN2 = {
 382        HTTP_OK,
 383#if ENABLE_FEATURE_HTTPD_RANGES
 384        HTTP_PARTIAL_CONTENT,
 385#endif
 386        HTTP_MOVED_TEMPORARILY,
 387#if ENABLE_FEATURE_HTTPD_ETAG
 388        HTTP_NOT_MODIFIED,
 389#endif
 390        HTTP_REQUEST_TIMEOUT,
 391        HTTP_NOT_IMPLEMENTED,
 392#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
 393        HTTP_UNAUTHORIZED,
 394#endif
 395        HTTP_NOT_FOUND,
 396        HTTP_BAD_REQUEST,
 397        HTTP_FORBIDDEN,
 398        HTTP_INTERNAL_SERVER_ERROR,
 399        HTTP_ENTITY_TOO_LARGE,
 400#if 0   /* not implemented */
 401        HTTP_CREATED,
 402        HTTP_ACCEPTED,
 403        HTTP_NO_CONTENT,
 404        HTTP_MULTIPLE_CHOICES,
 405        HTTP_MOVED_PERMANENTLY,
 406        HTTP_BAD_GATEWAY,
 407        HTTP_SERVICE_UNAVAILABLE,
 408#endif
 409};
 410
 411static const struct {
 412        const char *name;
 413        const char *info;
 414} http_response[ARRAY_SIZE(http_response_type)] = {
 415        { "OK", NULL },
 416#if ENABLE_FEATURE_HTTPD_RANGES
 417        { "Partial Content", NULL },
 418#endif
 419        { "Found", NULL },
 420#if ENABLE_FEATURE_HTTPD_ETAG
 421        { "Not Modified" },
 422#endif
 423        { "Request Timeout", "No request appeared within 60 seconds" },
 424        { "Not Implemented", "The requested method is not recognized" },
 425#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
 426        { "Unauthorized", "" },
 427#endif
 428        { "Not Found", "The requested URL was not found" },
 429        { "Bad Request", "Unsupported method" },
 430        { "Forbidden", ""  },
 431        { "Internal Server Error", "Internal Server Error" },
 432        { "Entity Too Large", "Entity Too Large" },
 433#if 0   /* not implemented */
 434        { "Created" },
 435        { "Accepted" },
 436        { "No Content" },
 437        { "Multiple Choices" },
 438        { "Moved Permanently" },
 439        { "Bad Gateway", "" },
 440        { "Service Unavailable", "" },
 441#endif
 442};
 443
 444struct globals {
 445        int verbose;            /* must be int (used by getopt32) */
 446        smallint flg_deny_all;
 447#if ENABLE_FEATURE_HTTPD_GZIP
 448        /* client can handle gzip / we are going to send gzip */
 449        smallint content_gzip;
 450#endif
 451        time_t last_mod;
 452#if ENABLE_FEATURE_HTTPD_ETAG
 453        char *if_none_match;
 454#endif
 455        char *rmt_ip_str;       /* for $REMOTE_ADDR and $REMOTE_PORT */
 456        const char *bind_addr_or_port;
 457
 458        char *g_query;
 459        const char *opt_c_configFile;
 460        const char *home_httpd;
 461        const char *index_page;
 462
 463        const char *found_mime_type;
 464        const char *found_moved_temporarily;
 465#if ENABLE_FEATURE_HTTPD_ACL_IP
 466        Htaccess_IP *ip_a_d;    /* config allow/deny lines */
 467#endif
 468
 469        IF_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
 470        IF_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
 471
 472        off_t file_size;        /* -1 - unknown */
 473#if ENABLE_FEATURE_HTTPD_RANGES
 474        off_t range_start;
 475        off_t range_end;
 476        off_t range_len;
 477#endif
 478
 479#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
 480        Htaccess *g_auth;       /* config user:password lines */
 481#endif
 482        Htaccess *mime_a;       /* config mime types */
 483#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
 484        Htaccess *script_i;     /* config script interpreters */
 485#endif
 486        char *iobuf;            /* [IOBUF_SIZE] */
 487#define        hdr_buf bb_common_bufsiz1
 488#define sizeof_hdr_buf COMMON_BUFSIZE
 489        char *hdr_ptr;
 490        int hdr_cnt;
 491#if ENABLE_FEATURE_HTTPD_ETAG
 492        char etag[sizeof("'%llx-%llx'") + 2 * sizeof(long long)*3];
 493#endif
 494#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
 495        const char *http_error_page[ARRAY_SIZE(http_response_type)];
 496#endif
 497#if ENABLE_FEATURE_HTTPD_PROXY
 498        Htaccess_Proxy *proxy;
 499#endif
 500};
 501#define G (*ptr_to_globals)
 502#define verbose           (G.verbose          )
 503#define flg_deny_all      (G.flg_deny_all     )
 504#if ENABLE_FEATURE_HTTPD_GZIP
 505# define content_gzip     (G.content_gzip     )
 506#else
 507# define content_gzip     0
 508#endif
 509#define bind_addr_or_port (G.bind_addr_or_port)
 510#define g_query           (G.g_query          )
 511#define opt_c_configFile  (G.opt_c_configFile )
 512#define home_httpd        (G.home_httpd       )
 513#define index_page        (G.index_page       )
 514#define found_mime_type   (G.found_mime_type  )
 515#define found_moved_temporarily (G.found_moved_temporarily)
 516#define last_mod          (G.last_mod         )
 517#define g_realm           (G.g_realm          )
 518#define remoteuser        (G.remoteuser       )
 519#define file_size         (G.file_size        )
 520#if ENABLE_FEATURE_HTTPD_RANGES
 521#define range_start       (G.range_start      )
 522#define range_end         (G.range_end        )
 523#define range_len         (G.range_len        )
 524#else
 525enum {
 526        range_start = -1,
 527        range_end = MAXINT(off_t) - 1,
 528        range_len = MAXINT(off_t),
 529};
 530#endif
 531#define rmt_ip_str        (G.rmt_ip_str       )
 532#define g_auth            (G.g_auth           )
 533#define mime_a            (G.mime_a           )
 534#define script_i          (G.script_i         )
 535#define iobuf             (G.iobuf            )
 536#define hdr_ptr           (G.hdr_ptr          )
 537#define hdr_cnt           (G.hdr_cnt          )
 538#define http_error_page   (G.http_error_page  )
 539#define proxy             (G.proxy            )
 540#define INIT_G() do { \
 541        setup_common_bufsiz(); \
 542        SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
 543        IF_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
 544        IF_FEATURE_HTTPD_RANGES(range_start = -1;) \
 545        bind_addr_or_port = "80"; \
 546        index_page = index_html; \
 547        file_size = -1; \
 548} while (0)
 549
 550
 551#define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1)
 552
 553/* Prototypes */
 554enum {
 555        SEND_HEADERS     = (1 << 0),
 556        SEND_BODY        = (1 << 1),
 557};
 558static void send_file_and_exit(const char *url, int what) NORETURN;
 559
 560static void free_llist(has_next_ptr **pptr)
 561{
 562        has_next_ptr *cur = *pptr;
 563        while (cur) {
 564                has_next_ptr *t = cur;
 565                cur = cur->next;
 566                free(t);
 567        }
 568        *pptr = NULL;
 569}
 570
 571static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
 572{
 573        free_llist((has_next_ptr**)pptr);
 574}
 575
 576#if ENABLE_FEATURE_HTTPD_ACL_IP
 577static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
 578{
 579        free_llist((has_next_ptr**)pptr);
 580}
 581#endif
 582
 583#if ENABLE_FEATURE_HTTPD_ACL_IP
 584/* Returns presumed mask width in bits or < 0 on error.
 585 * Updates strp, stores IP at provided pointer */
 586static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
 587{
 588        const char *p = *strp;
 589        int auto_mask = 8;
 590        unsigned ip = 0;
 591        int j;
 592
 593        if (*p == '/')
 594                return -auto_mask;
 595
 596        for (j = 0; j < 4; j++) {
 597                unsigned octet;
 598
 599                if ((*p < '0' || *p > '9') && *p != '/' && *p)
 600                        return -auto_mask;
 601                octet = 0;
 602                while (*p >= '0' && *p <= '9') {
 603                        octet *= 10;
 604                        octet += *p - '0';
 605                        if (octet > 255)
 606                                return -auto_mask;
 607                        p++;
 608                }
 609                if (*p == '.')
 610                        p++;
 611                if (*p != '/' && *p)
 612                        auto_mask += 8;
 613                ip = (ip << 8) | octet;
 614        }
 615        if (*p) {
 616                if (*p != endc)
 617                        return -auto_mask;
 618                p++;
 619                if (*p == '\0')
 620                        return -auto_mask;
 621        }
 622        *ipp = ip;
 623        *strp = p;
 624        return auto_mask;
 625}
 626
 627/* Returns 0 on success. Stores IP and mask at provided pointers */
 628static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
 629{
 630        int i;
 631        unsigned mask;
 632        char *p;
 633
 634        i = scan_ip(&str, ipp, '/');
 635        if (i < 0)
 636                return i;
 637
 638        if (*str) {
 639                /* there is /xxx after dotted-IP address */
 640                i = bb_strtou(str, &p, 10);
 641                if (*p == '.') {
 642                        /* 'xxx' itself is dotted-IP mask, parse it */
 643                        /* (return 0 (success) only if it has N.N.N.N form) */
 644                        return scan_ip(&str, maskp, '\0') - 32;
 645                }
 646                if (*p)
 647                        return -1;
 648        }
 649
 650        if (i > 32)
 651                return -1;
 652
 653        if (sizeof(unsigned) == 4 && i == 32) {
 654                /* mask >>= 32 below may not work */
 655                mask = 0;
 656        } else {
 657                mask = 0xffffffff;
 658                mask >>= i;
 659        }
 660        /* i == 0 -> *maskp = 0x00000000
 661         * i == 1 -> *maskp = 0x80000000
 662         * i == 4 -> *maskp = 0xf0000000
 663         * i == 31 -> *maskp = 0xfffffffe
 664         * i == 32 -> *maskp = 0xffffffff */
 665        *maskp = (uint32_t)(~mask);
 666        return 0;
 667}
 668#endif
 669
 670/*
 671 * Parse configuration file into in-memory linked list.
 672 *
 673 * Any previous IP rules are discarded.
 674 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
 675 * are also discarded.  That is, previous settings are retained if flag is
 676 * SUBDIR_PARSE.
 677 * Error pages are only parsed on the main config file.
 678 *
 679 * path   Path where to look for httpd.conf (without filename).
 680 * flag   Type of the parse request.
 681 */
 682/* flag param: */
 683enum {
 684        FIRST_PARSE    = 0, /* path will be "/etc" */
 685        SIGNALED_PARSE = 1, /* path will be "/etc" */
 686        SUBDIR_PARSE   = 2, /* path will be derived from URL */
 687};
 688static int parse_conf(const char *path, int flag)
 689{
 690        /* internally used extra flag state */
 691        enum { TRY_CURDIR_PARSE = 3 };
 692
 693        FILE *f;
 694        const char *filename;
 695        char buf[160];
 696
 697        /* discard old rules */
 698#if ENABLE_FEATURE_HTTPD_ACL_IP
 699        free_Htaccess_IP_list(&G.ip_a_d);
 700#endif
 701        flg_deny_all = 0;
 702        /* retain previous auth and mime config only for subdir parse */
 703        if (flag != SUBDIR_PARSE) {
 704                free_Htaccess_list(&mime_a);
 705#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
 706                free_Htaccess_list(&g_auth);
 707#endif
 708#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
 709                free_Htaccess_list(&script_i);
 710#endif
 711        }
 712
 713        filename = opt_c_configFile;
 714        if (flag == SUBDIR_PARSE || filename == NULL) {
 715                filename = alloca(strlen(path) + sizeof(HTTPD_CONF) + 2);
 716                sprintf((char *)filename, "%s/%s", path, HTTPD_CONF);
 717        }
 718
 719        while ((f = fopen_for_read(filename)) == NULL) {
 720                if (flag >= SUBDIR_PARSE) { /* SUBDIR or TRY_CURDIR */
 721                        /* config file not found, no changes to config */
 722                        return -1;
 723                }
 724                if (flag == FIRST_PARSE) {
 725                        /* -c CONFFILE given, but CONFFILE doesn't exist? */
 726                        if (opt_c_configFile)
 727                                bb_simple_perror_msg_and_die(opt_c_configFile);
 728                        /* else: no -c, thus we looked at /etc/httpd.conf,
 729                         * and it's not there. try ./httpd.conf: */
 730                }
 731                flag = TRY_CURDIR_PARSE;
 732                filename = HTTPD_CONF;
 733        }
 734
 735#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
 736        /* in "/file:user:pass" lines, we prepend path in subdirs */
 737        if (flag != SUBDIR_PARSE)
 738                path = "";
 739#endif
 740        /* The lines can be:
 741         *
 742         * I:default_index_file
 743         * H:http_home
 744         * [AD]:IP[/mask]   # allow/deny, * for wildcard
 745         * Ennn:error.html  # error page for status nnn
 746         * P:/url:[http://]hostname[:port]/new/path # reverse proxy
 747         * .ext:mime/type   # mime type
 748         * *.php:/path/php  # run xxx.php through an interpreter
 749         * /file:user:pass  # username and password
 750         */
 751        while (fgets(buf, sizeof(buf), f) != NULL) {
 752                unsigned strlen_buf;
 753                unsigned char ch;
 754                char *after_colon;
 755
 756                { /* remove all whitespace, and # comments */
 757                        char *p, *p0;
 758
 759                        p0 = buf;
 760                        /* skip non-whitespace beginning. Often the whole line
 761                         * is non-whitespace. We want this case to work fast,
 762                         * without needless copying, therefore we don't merge
 763                         * this operation into next while loop. */
 764                        while ((ch = *p0) != '\0' && ch != '\n' && ch != '#'
 765                         && ch != ' ' && ch != '\t'
 766                        ) {
 767                                p0++;
 768                        }
 769                        p = p0;
 770                        /* if we enter this loop, we have some whitespace.
 771                         * discard it */
 772                        while (ch != '\0' && ch != '\n' && ch != '#') {
 773                                if (ch != ' ' && ch != '\t') {
 774                                        *p++ = ch;
 775                                }
 776                                ch = *++p0;
 777                        }
 778                        *p = '\0';
 779                        strlen_buf = p - buf;
 780                        if (strlen_buf == 0)
 781                                continue; /* empty line */
 782                }
 783
 784                after_colon = strchr(buf, ':');
 785                /* strange line? */
 786                if (after_colon == NULL || *++after_colon == '\0')
 787                        goto config_error;
 788
 789                ch = (buf[0] & ~0x20); /* toupper if it's a letter */
 790
 791                if (ch == 'I') {
 792                        if (index_page != index_html)
 793                                free((char*)index_page);
 794                        index_page = xstrdup(after_colon);
 795                        continue;
 796                }
 797
 798                /* do not allow jumping around using H in subdir's configs */
 799                if (flag == FIRST_PARSE && ch == 'H') {
 800                        home_httpd = xstrdup(after_colon);
 801                        xchdir(home_httpd);
 802                        continue;
 803                }
 804
 805#if ENABLE_FEATURE_HTTPD_ACL_IP
 806                if (ch == 'A' || ch == 'D') {
 807                        Htaccess_IP *pip;
 808
 809                        if (*after_colon == '*') {
 810                                if (ch == 'D') {
 811                                        /* memorize "deny all" */
 812                                        flg_deny_all = 1;
 813                                }
 814                                /* skip assumed "A:*", it is a default anyway */
 815                                continue;
 816                        }
 817                        /* store "allow/deny IP/mask" line */
 818                        pip = xzalloc(sizeof(*pip));
 819                        if (scan_ip_mask(after_colon, &pip->ip, &pip->mask)) {
 820                                /* IP{/mask} syntax error detected, protect all */
 821                                ch = 'D';
 822                                pip->mask = 0;
 823                        }
 824                        pip->allow_deny = ch;
 825                        if (ch == 'D') {
 826                                /* Deny:from_IP - prepend */
 827                                pip->next = G.ip_a_d;
 828                                G.ip_a_d = pip;
 829                        } else {
 830                                /* A:from_IP - append (thus all D's precedes A's) */
 831                                Htaccess_IP *prev_IP = G.ip_a_d;
 832                                if (prev_IP == NULL) {
 833                                        G.ip_a_d = pip;
 834                                } else {
 835                                        while (prev_IP->next)
 836                                                prev_IP = prev_IP->next;
 837                                        prev_IP->next = pip;
 838                                }
 839                        }
 840                        continue;
 841                }
 842#endif
 843
 844#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
 845                if (flag == FIRST_PARSE && ch == 'E') {
 846                        unsigned i;
 847                        int status = atoi(buf + 1); /* error status code */
 848
 849                        if (status < HTTP_CONTINUE) {
 850                                goto config_error;
 851                        }
 852                        /* then error page; find matching status */
 853                        for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
 854                                if (http_response_type[i] == status) {
 855                                        /* We chdir to home_httpd, thus no need to
 856                                         * concat_path_file(home_httpd, after_colon)
 857                                         * here */
 858                                        http_error_page[i] = xstrdup(after_colon);
 859                                        break;
 860                                }
 861                        }
 862                        continue;
 863                }
 864#endif
 865
 866#if ENABLE_FEATURE_HTTPD_PROXY
 867                if (flag == FIRST_PARSE && ch == 'P') {
 868                        /* P:/url:[http://]hostname[:port]/new/path */
 869                        char *url_from, *host_port, *url_to;
 870                        Htaccess_Proxy *proxy_entry;
 871
 872                        url_from = after_colon;
 873                        host_port = strchr(after_colon, ':');
 874                        if (host_port == NULL) {
 875                                goto config_error;
 876                        }
 877                        *host_port++ = '\0';
 878                        if (is_prefixed_with(host_port, "http://"))
 879                                host_port += 7;
 880                        if (*host_port == '\0') {
 881                                goto config_error;
 882                        }
 883                        url_to = strchr(host_port, '/');
 884                        if (url_to == NULL) {
 885                                goto config_error;
 886                        }
 887                        *url_to = '\0';
 888                        proxy_entry = xzalloc(sizeof(*proxy_entry));
 889                        proxy_entry->url_from = xstrdup(url_from);
 890                        proxy_entry->host_port = xstrdup(host_port);
 891                        *url_to = '/';
 892                        proxy_entry->url_to = xstrdup(url_to);
 893                        proxy_entry->next = proxy;
 894                        proxy = proxy_entry;
 895                        continue;
 896                }
 897#endif
 898                /* the rest of directives are non-alphabetic,
 899                 * must avoid using "toupper'ed" ch */
 900                ch = buf[0];
 901
 902                if (ch == '.' /* ".ext:mime/type" */
 903#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
 904                 || (ch == '*' && buf[1] == '.') /* "*.php:/path/php" */
 905#endif
 906                ) {
 907                        char *p;
 908                        Htaccess *cur;
 909
 910                        cur = xzalloc(sizeof(*cur) /* includes space for NUL */ + strlen_buf);
 911                        strcpy(cur->before_colon, buf);
 912                        p = cur->before_colon + (after_colon - buf);
 913                        p[-1] = '\0';
 914                        cur->after_colon = p;
 915                        if (ch == '.') {
 916                                /* .mime line: prepend to mime_a list */
 917                                cur->next = mime_a;
 918                                mime_a = cur;
 919                        }
 920#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
 921                        else {
 922                                /* script interpreter line: prepend to script_i list */
 923                                cur->next = script_i;
 924                                script_i = cur;
 925                        }
 926#endif
 927                        continue;
 928                }
 929
 930#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
 931                if (ch == '/') { /* "/file:user:pass" */
 932                        char *p;
 933                        Htaccess *cur;
 934                        unsigned file_len;
 935
 936                        /* note: path is "" unless we are in SUBDIR parse,
 937                         * otherwise it does NOT start with "/" */
 938                        cur = xzalloc(sizeof(*cur) /* includes space for NUL */
 939                                + 1 + strlen(path)
 940                                + strlen_buf
 941                                );
 942                        /* form "/path/file" */
 943                        sprintf(cur->before_colon, "/%s%.*s",
 944                                path,
 945                                (int) (after_colon - buf - 1), /* includes "/", but not ":" */
 946                                buf);
 947                        /* canonicalize it */
 948                        p = bb_simplify_abs_path_inplace(cur->before_colon);
 949                        file_len = p - cur->before_colon;
 950                        /* add "user:pass" after NUL */
 951                        strcpy(++p, after_colon);
 952                        cur->after_colon = p;
 953
 954                        /* insert cur into g_auth */
 955                        /* g_auth is sorted by decreased filename length */
 956                        {
 957                                Htaccess *auth, **authp;
 958
 959                                authp = &g_auth;
 960                                while ((auth = *authp) != NULL) {
 961                                        if (file_len >= strlen(auth->before_colon)) {
 962                                                /* insert cur before auth */
 963                                                cur->next = auth;
 964                                                break;
 965                                        }
 966                                        authp = &auth->next;
 967                                }
 968                                *authp = cur;
 969                        }
 970                        continue;
 971                }
 972#endif /* BASIC_AUTH */
 973
 974                /* the line is not recognized */
 975 config_error:
 976                bb_error_msg("config error '%s' in '%s'", buf, filename);
 977        } /* while (fgets) */
 978
 979        fclose(f);
 980        return 0;
 981}
 982
 983#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
 984/*
 985 * Given a string, html-encode special characters.
 986 * This is used for the -e command line option to provide an easy way
 987 * for scripts to encode result data without confusing browsers.  The
 988 * returned string pointer is memory allocated by malloc().
 989 *
 990 * Returns a pointer to the encoded string (malloced).
 991 */
 992static char *encodeString(const char *string)
 993{
 994        /* take the simple route and encode everything */
 995        /* could possibly scan once to get length.     */
 996        int len = strlen(string);
 997        char *out = xmalloc(len * 6 + 1);
 998        char *p = out;
 999        char ch;
1000
1001        while ((ch = *string++) != '\0') {
1002                /* very simple check for what to encode */
1003                if (isalnum(ch))
1004                        *p++ = ch;
1005                else
1006                        p += sprintf(p, "&#%u;", (unsigned char) ch);
1007        }
1008        *p = '\0';
1009        return out;
1010}
1011#endif
1012
1013#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1014/*
1015 * Decode a base64 data stream as per rfc1521.
1016 * Note that the rfc states that non base64 chars are to be ignored.
1017 * Since the decode always results in a shorter size than the input,
1018 * it is OK to pass the input arg as an output arg.
1019 * Parameter: a pointer to a base64 encoded string.
1020 * Decoded data is stored in-place.
1021 */
1022static void decodeBase64(char *data)
1023{
1024        decode_base64(data, NULL)[0] = '\0';
1025}
1026#endif
1027
1028/*
1029 * Create a listen server socket on the designated port.
1030 */
1031static int openServer(void)
1032{
1033        unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
1034        if (!errno && n && n <= 0xffff)
1035                n = create_and_bind_stream_or_die(NULL, n);
1036        else
1037                n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
1038        xlisten(n, 9);
1039        return n;
1040}
1041
1042/*
1043 * Log the connection closure and exit.
1044 */
1045static void log_and_exit(void) NORETURN;
1046static void log_and_exit(void)
1047{
1048        /* Paranoia. IE said to be buggy. It may send some extra data
1049         * or be confused by us just exiting without SHUT_WR. Oh well. */
1050        shutdown(1, SHUT_WR);
1051        /* Why??
1052        (this also messes up stdin when user runs httpd -i from terminal)
1053        ndelay_on(0);
1054        while (read(STDIN_FILENO, iobuf, IOBUF_SIZE) > 0)
1055                continue;
1056        */
1057
1058        if (verbose > 2)
1059                bb_simple_error_msg("closed");
1060        _exit(xfunc_error_retval);
1061}
1062
1063/*
1064 * Create and send HTTP response headers.
1065 * The arguments are combined and sent as one write operation.  Note that
1066 * IE will puke big-time if the headers are not sent in one packet and the
1067 * second packet is delayed for any reason.
1068 * responseNum - the result code to send.
1069 */
1070static void send_headers(unsigned responseNum)
1071{
1072#if ENABLE_FEATURE_HTTPD_DATE || ENABLE_FEATURE_HTTPD_LAST_MODIFIED
1073        static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
1074        /* Fixed size 29-byte string. Example: Sun, 06 Nov 1994 08:49:37 GMT */
1075        char date_str[40]; /* using a bit larger buffer to paranoia reasons */
1076        struct tm tm;
1077#endif
1078        const char *responseString = "";
1079        const char *infoString = NULL;
1080#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1081        const char *error_page = NULL;
1082#endif
1083        unsigned len;
1084        unsigned i;
1085
1086        for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
1087                if (http_response_type[i] == responseNum) {
1088                        responseString = http_response[i].name;
1089                        infoString = http_response[i].info;
1090#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1091                        error_page = http_error_page[i];
1092#endif
1093                        break;
1094                }
1095        }
1096
1097        if (verbose)
1098                bb_error_msg("response:%u", responseNum);
1099
1100        /* We use sprintf, not snprintf (it's less code).
1101         * iobuf[] is several kbytes long and all headers we generate
1102         * always fit into those kbytes.
1103         */
1104
1105        {
1106#if ENABLE_FEATURE_HTTPD_DATE
1107                time_t timer = time(NULL);
1108                strftime(date_str, sizeof(date_str), RFC1123FMT, gmtime_r(&timer, &tm));
1109                /* ^^^ using gmtime_r() instead of gmtime() to not use static data */
1110#endif
1111                len = sprintf(iobuf,
1112                        "HTTP/1.1 %u %s\r\n"
1113#if ENABLE_FEATURE_HTTPD_DATE
1114                        "Date: %s\r\n"
1115#endif
1116                        "Connection: close\r\n",
1117                        responseNum, responseString
1118#if ENABLE_FEATURE_HTTPD_DATE
1119                        ,date_str
1120#endif
1121                );
1122        }
1123
1124        if (responseNum != HTTP_OK || found_mime_type) {
1125                len += sprintf(iobuf + len,
1126                                "Content-type: %s\r\n",
1127                                /* if it's error message, then it's HTML */
1128                                (responseNum != HTTP_OK ? "text/html" : found_mime_type)
1129                );
1130        }
1131
1132#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1133        if (responseNum == HTTP_UNAUTHORIZED) {
1134                len += sprintf(iobuf + len,
1135                                "WWW-Authenticate: Basic realm=\"%.999s\"\r\n",
1136                                g_realm /* %.999s protects from overflowing iobuf[] */
1137                );
1138        }
1139#endif
1140        if (responseNum == HTTP_MOVED_TEMPORARILY) {
1141                /* Responding to "GET /dir" with
1142                 * "HTTP/1.1 302 Found" "Location: /dir/"
1143                 * - IOW, asking them to repeat with a slash.
1144                 * Here, overflow IS possible, can't use sprintf:
1145                 * mkdir test
1146                 * python -c 'print("get /test?" + ("x" * 8192))' | busybox httpd -i -h .
1147                 */
1148                len += snprintf(iobuf + len, IOBUF_SIZE-3 - len,
1149                                "Location: %s/%s%s\r\n",
1150                                found_moved_temporarily,
1151                                (g_query ? "?" : ""),
1152                                (g_query ? g_query : "")
1153                );
1154                if (len > IOBUF_SIZE-3)
1155                        len = IOBUF_SIZE-3;
1156        }
1157
1158#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1159        if (error_page && access(error_page, R_OK) == 0) {
1160                iobuf[len++] = '\r';
1161                iobuf[len++] = '\n';
1162                if (DEBUG) {
1163                        iobuf[len] = '\0';
1164                        fprintf(stderr, "headers: '%s'\n", iobuf);
1165                }
1166                full_write(STDOUT_FILENO, iobuf, len);
1167                dbg("writing error page: '%s'\n", error_page);
1168                return send_file_and_exit(error_page, SEND_BODY);
1169        }
1170#endif
1171
1172        if (file_size != -1) {    /* file */
1173#if ENABLE_FEATURE_HTTPD_LAST_MODIFIED
1174                strftime(date_str, sizeof(date_str), RFC1123FMT, gmtime_r(&last_mod, &tm));
1175#endif
1176#if ENABLE_FEATURE_HTTPD_RANGES
1177                if (responseNum == HTTP_PARTIAL_CONTENT) {
1178                        len += sprintf(iobuf + len,
1179                                "Content-Range: bytes %"OFF_FMT"u-%"OFF_FMT"u/%"OFF_FMT"u\r\n",
1180                                        range_start,
1181                                        range_end,
1182                                        file_size
1183                        );
1184                        file_size = range_end - range_start + 1;
1185                }
1186#endif
1187
1188//RFC 2616 4.4 Message Length
1189// The transfer-length of a message is the length of the message-body as
1190// it appears in the message; that is, after any transfer-codings have
1191// been applied. When a message-body is included with a message, the
1192// transfer-length of that body is determined by one of the following
1193// (in order of precedence):
1194// 1.Any response message which "MUST NOT" include a message-body (such
1195//   as the 1xx, 204, and 304 responses and any response to a HEAD
1196//   request) is always terminated by the first empty line after the
1197//   header fields, regardless of the entity-header fields present in
1198//   the message.
1199// 2.If a Transfer-Encoding header field (section 14.41) is present and
1200//   has any value other than "identity", then the transfer-length is
1201//   defined by use of the "chunked" transfer-coding (section 3.6),
1202//   unless the message is terminated by closing the connection.
1203// 3.If a Content-Length header field (section 14.13) is present, its
1204//   decimal value in OCTETs represents both the entity-length and the
1205//   transfer-length. The Content-Length header field MUST NOT be sent
1206//   if these two lengths are different (i.e., if a Transfer-Encoding
1207//   header field is present). If a message is received with both a
1208//   Transfer-Encoding header field and a Content-Length header field,
1209//   the latter MUST be ignored.
1210// 4.If the message uses the media type "multipart/byteranges" ...
1211// 5.By the server closing the connection.
1212//
1213// (NB: standards do not define "Transfer-Length:" _header_,
1214// transfer-length above is just a concept).
1215
1216                len += sprintf(iobuf + len,
1217#if ENABLE_FEATURE_HTTPD_RANGES
1218                        "Accept-Ranges: bytes\r\n"
1219#endif
1220#if ENABLE_FEATURE_HTTPD_LAST_MODIFIED
1221                        "Last-Modified: %s\r\n"
1222#endif
1223#if ENABLE_FEATURE_HTTPD_ETAG
1224                        "ETag: %s\r\n"
1225#endif
1226
1227        /* Because of 4.4 (5), we can forgo sending of "Content-Length"
1228         * since we close connection afterwards, but it helps clients
1229         * to e.g. estimate download times, show progress bars etc.
1230         * Theoretically we should not send it if page is compressed,
1231         * but de-facto standard is to send it (see comment below).
1232         */
1233                        "Content-Length: %"OFF_FMT"u\r\n",
1234#if ENABLE_FEATURE_HTTPD_LAST_MODIFIED
1235                                date_str,
1236#endif
1237#if ENABLE_FEATURE_HTTPD_ETAG
1238                                G.etag,
1239#endif
1240                                file_size
1241                );
1242        }
1243
1244        /* This should be "Transfer-Encoding", not "Content-Encoding":
1245         * "data is compressed for transfer", not "data is an archive".
1246         * But many clients were not handling "Transfer-Encoding" correctly
1247         * (they were not uncompressing gzipped pages, tried to show
1248         * raw compressed data), and servers worked around it by using
1249         * "Content-Encoding" instead... and this become de-facto standard.
1250         * https://bugzilla.mozilla.org/show_bug.cgi?id=68517
1251         * https://bugs.chromium.org/p/chromium/issues/detail?id=94730
1252         */
1253        if (content_gzip)
1254                len += sprintf(iobuf + len, "Content-Encoding: gzip\r\n");
1255
1256        iobuf[len++] = '\r';
1257        iobuf[len++] = '\n';
1258        if (infoString) {
1259                len += sprintf(iobuf + len,
1260                                "<HTML><HEAD><TITLE>%u %s</TITLE></HEAD>\n"
1261                                "<BODY><H1>%u %s</H1>\n"
1262                                "%s\n"
1263                                "</BODY></HTML>\n",
1264                                responseNum, responseString,
1265                                responseNum, responseString,
1266                                infoString
1267                );
1268        }
1269        if (DEBUG) {
1270                iobuf[len] = '\0';
1271                fprintf(stderr, "headers: '%s'\n", iobuf);
1272        }
1273        if (full_write(STDOUT_FILENO, iobuf, len) != len) {
1274                if (verbose > 1)
1275                        bb_simple_perror_msg("error");
1276                log_and_exit();
1277        }
1278}
1279
1280static void send_headers_and_exit(int responseNum) NORETURN;
1281static void send_headers_and_exit(int responseNum)
1282{
1283        IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
1284        send_headers(responseNum);
1285        log_and_exit();
1286}
1287
1288/*
1289 * Read from the socket until '\n' or EOF.
1290 * '\r' chars are removed.
1291 * '\n' is replaced with NUL.
1292 * Return number of characters read or 0 if nothing is read
1293 * ('\r' and '\n' are not counted).
1294 * Data is returned in iobuf.
1295 */
1296static unsigned get_line(void)
1297{
1298        unsigned count;
1299        char c;
1300
1301        count = 0;
1302        while (1) {
1303                if (hdr_cnt <= 0) {
1304                        alarm(HEADER_READ_TIMEOUT);
1305                        hdr_cnt = safe_read(STDIN_FILENO, hdr_buf, sizeof_hdr_buf);
1306                        if (hdr_cnt <= 0)
1307                                goto ret;
1308                        hdr_ptr = hdr_buf;
1309                }
1310                hdr_cnt--;
1311                c = *hdr_ptr++;
1312                if (c == '\r')
1313                        continue;
1314                if (c == '\n')
1315                        break;
1316                iobuf[count] = c;
1317                if (count < (IOBUF_SIZE - 1))      /* check overflow */
1318                        count++;
1319        }
1320 ret:
1321        iobuf[count] = '\0';
1322        return count;
1323}
1324
1325#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
1326
1327/* gcc 4.2.1 fares better with NOINLINE */
1328static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) NORETURN;
1329static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1330{
1331        enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1332        struct pollfd pfd[3];
1333        int out_cnt; /* we buffer a bit of initial CGI output */
1334        int count;
1335
1336        /* iobuf is used for CGI -> network data,
1337         * hdr_buf is for network -> CGI data (POSTDATA) */
1338
1339        /* If CGI dies, we still want to correctly finish reading its output
1340         * and send it to the peer. So please no SIGPIPEs! */
1341        signal(SIGPIPE, SIG_IGN);
1342
1343        // We inconsistently handle a case when more POSTDATA from network
1344        // is coming than we expected. We may give *some part* of that
1345        // extra data to CGI.
1346
1347        //if (hdr_cnt > post_len) {
1348        //      /* We got more POSTDATA from network than we expected */
1349        //      hdr_cnt = post_len;
1350        //}
1351        post_len -= hdr_cnt;
1352        /* post_len - number of POST bytes not yet read from network */
1353
1354        /* NB: breaking out of this loop jumps to log_and_exit() */
1355        out_cnt = 0;
1356        pfd[FROM_CGI].fd = fromCgi_rd;
1357        pfd[FROM_CGI].events = POLLIN;
1358        pfd[TO_CGI].fd = toCgi_wr;
1359        while (1) {
1360                /* Note: even pfd[0].events == 0 won't prevent
1361                 * revents == POLLHUP|POLLERR reports from closed stdin.
1362                 * Setting fd to -1 works: */
1363                pfd[0].fd = -1;
1364                pfd[0].events = POLLIN;
1365                pfd[0].revents = 0; /* probably not needed, paranoia */
1366
1367                /* We always poll this fd, thus kernel always sets revents: */
1368                /*pfd[FROM_CGI].events = POLLIN; - moved out of loop */
1369                /*pfd[FROM_CGI].revents = 0; - not needed */
1370
1371                /* gcc-4.8.0 still doesnt fill two shorts with one insn :( */
1372                /* http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47059 */
1373                /* hopefully one day it will... */
1374                pfd[TO_CGI].events = POLLOUT;
1375                pfd[TO_CGI].revents = 0; /* needed! */
1376
1377                if (toCgi_wr && hdr_cnt <= 0) {
1378                        if (post_len > 0) {
1379                                /* Expect more POST data from network */
1380                                pfd[0].fd = 0;
1381                        } else {
1382                                /* post_len <= 0 && hdr_cnt <= 0:
1383                                 * no more POST data to CGI,
1384                                 * let CGI see EOF on CGI's stdin */
1385                                if (toCgi_wr != fromCgi_rd)
1386                                        close(toCgi_wr);
1387                                toCgi_wr = 0;
1388                        }
1389                }
1390
1391                /* Now wait on the set of sockets */
1392                count = safe_poll(pfd, hdr_cnt > 0 ? TO_CGI+1 : FROM_CGI+1, -1);
1393                if (count <= 0) {
1394#if 0
1395                        if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
1396                                /* Weird. CGI didn't exit and no fd's
1397                                 * are ready, yet poll returned?! */
1398                                continue;
1399                        }
1400                        if (DEBUG && WIFEXITED(status))
1401                                bb_error_msg("CGI exited, status=%u", WEXITSTATUS(status));
1402                        if (DEBUG && WIFSIGNALED(status))
1403                                bb_error_msg("CGI killed, signal=%u", WTERMSIG(status));
1404#endif
1405                        break;
1406                }
1407
1408                if (pfd[TO_CGI].revents) {
1409                        /* hdr_cnt > 0 here due to the way poll() called */
1410                        /* Have data from peer and can write to CGI */
1411                        count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1412                        /* Doesn't happen, we dont use nonblocking IO here
1413                         *if (count < 0 && errno == EAGAIN) {
1414                         *      ...
1415                         *} else */
1416                        if (count > 0) {
1417                                hdr_ptr += count;
1418                                hdr_cnt -= count;
1419                        } else {
1420                                /* EOF/broken pipe to CGI, stop piping POST data */
1421                                hdr_cnt = post_len = 0;
1422                        }
1423                }
1424
1425                if (pfd[0].revents) {
1426                        /* post_len > 0 && hdr_cnt == 0 here */
1427                        /* We expect data, prev data portion is eaten by CGI
1428                         * and there *is* data to read from the peer
1429                         * (POSTDATA) */
1430                        //count = post_len > (int)sizeof_hdr_buf ? (int)sizeof_hdr_buf : post_len;
1431                        //count = safe_read(STDIN_FILENO, hdr_buf, count);
1432                        count = safe_read(STDIN_FILENO, hdr_buf, sizeof_hdr_buf);
1433                        if (count > 0) {
1434                                hdr_cnt = count;
1435                                hdr_ptr = hdr_buf;
1436                                post_len -= count;
1437                        } else {
1438                                /* no more POST data can be read */
1439                                post_len = 0;
1440                        }
1441                }
1442
1443                if (pfd[FROM_CGI].revents) {
1444                        /* There is something to read from CGI */
1445                        char *rbuf = iobuf;
1446
1447                        /* Are we still buffering CGI output? */
1448                        if (out_cnt >= 0) {
1449                                /* HTTP_200[] has single "\r\n" at the end.
1450                                 * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1451                                 * CGI scripts MUST send their own header terminated by
1452                                 * empty line, then data. That's why we have only one
1453                                 * <cr><lf> pair here. We will output "200 OK" line
1454                                 * if needed, but CGI still has to provide blank line
1455                                 * between header and body */
1456
1457                                /* Must use safe_read, not full_read, because
1458                                 * CGI may output a few first bytes and then wait
1459                                 * for POSTDATA without closing stdout.
1460                                 * With full_read we may wait here forever. */
1461                                count = safe_read(fromCgi_rd, rbuf + out_cnt, IOBUF_SIZE - 8);
1462                                if (count <= 0) {
1463                                        /* eof (or error) and there was no "HTTP",
1464                                         * send "HTTP/1.1 200 OK\r\n", then send received data */
1465                                        if (out_cnt) {
1466                                                full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1);
1467                                                full_write(STDOUT_FILENO, rbuf, out_cnt);
1468                                        }
1469                                        break; /* CGI stdout is closed, exiting */
1470                                }
1471                                out_cnt += count;
1472                                count = 0;
1473                                /* "Status" header format is: "Status: 302 Redirected\r\n" */
1474                                if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1475                                        /* send "HTTP/1.1 " */
1476                                        if (full_write(STDOUT_FILENO, HTTP_200, 9) != 9)
1477                                                break;
1478                                        /* skip "Status: " (including space, sending "HTTP/1.1  NNN" is wrong) */
1479                                        rbuf += 8;
1480                                        count = out_cnt - 8;
1481                                        out_cnt = -1; /* buffering off */
1482                                } else if (out_cnt >= 4) {
1483                                        /* Did CGI add "HTTP"? */
1484                                        if (memcmp(rbuf, HTTP_200, 4) != 0) {
1485                                                /* there is no "HTTP", do it ourself */
1486                                                if (full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
1487                                                        break;
1488                                        }
1489                                        /* Commented out:
1490                                        if (!strstr(rbuf, "ontent-")) {
1491                                                full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1492                                        }
1493                                         * Counter-example of valid CGI without Content-type:
1494                                         * echo -en "HTTP/1.1 302 Found\r\n"
1495                                         * echo -en "Location: http://www.busybox.net\r\n"
1496                                         * echo -en "\r\n"
1497                                         */
1498                                        count = out_cnt;
1499                                        out_cnt = -1; /* buffering off */
1500                                }
1501                        } else {
1502                                count = safe_read(fromCgi_rd, rbuf, IOBUF_SIZE);
1503                                if (count <= 0)
1504                                        break;  /* eof (or error) */
1505                        }
1506                        if (full_write(STDOUT_FILENO, rbuf, count) != count)
1507                                break;
1508                        dbg("cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1509                } /* if (pfd[FROM_CGI].revents) */
1510        } /* while (1) */
1511        log_and_exit();
1512}
1513#endif
1514
1515#if ENABLE_FEATURE_HTTPD_CGI
1516
1517static void setenv1(const char *name, const char *value)
1518{
1519        setenv(name, value ? value : "", 1);
1520}
1521
1522/*
1523 * Spawn CGI script, forward CGI's stdin/out <=> network
1524 *
1525 * Environment variables are set up and the script is invoked with pipes
1526 * for stdin/stdout.  If a POST is being done the script is fed the POST
1527 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
1528 *
1529 * Parameters:
1530 * const char *url              The requested URL (with leading /).
1531 * const char *orig_uri         The original URI before rewriting (if any)
1532 * int post_len                 Length of the POST body.
1533 */
1534static void send_cgi_and_exit(
1535                const char *url,
1536                const char *orig_uri,
1537                const char *request,
1538                int post_len) NORETURN;
1539static void send_cgi_and_exit(
1540                const char *url,
1541                const char *orig_uri,
1542                const char *request,
1543                int post_len)
1544{
1545        struct fd_pair fromCgi;  /* CGI -> httpd pipe */
1546        struct fd_pair toCgi;    /* httpd -> CGI pipe */
1547        char *script, *last_slash;
1548        int pid;
1549
1550        /* Make a copy. NB: caller guarantees:
1551         * url[0] == '/', url[1] != '/' */
1552        url = xstrdup(url);
1553
1554        /*
1555         * We are mucking with environment _first_ and then vfork/exec,
1556         * this allows us to use vfork safely. Parent doesn't care about
1557         * these environment changes anyway.
1558         */
1559
1560        /* Check for [dirs/]script.cgi/PATH_INFO */
1561        last_slash = script = (char*)url;
1562        while ((script = strchr(script + 1, '/')) != NULL) {
1563                int dir;
1564                *script = '\0';
1565                dir = is_directory(url + 1, /*followlinks:*/ 1);
1566                *script = '/';
1567                if (!dir) {
1568                        /* not directory, found script.cgi/PATH_INFO */
1569                        break;
1570                }
1571                /* is directory, find next '/' */
1572                last_slash = script;
1573        }
1574        setenv1("PATH_INFO", script);   /* set to /PATH_INFO or "" */
1575        setenv1("REQUEST_METHOD", request);
1576        if (g_query) {
1577                putenv(xasprintf("%s=%s?%s", "REQUEST_URI", orig_uri, g_query));
1578        } else {
1579                setenv1("REQUEST_URI", orig_uri);
1580        }
1581        if (script != NULL)
1582                *script = '\0';         /* cut off /PATH_INFO */
1583
1584        /* SCRIPT_FILENAME is required by PHP in CGI mode */
1585        if (home_httpd[0] == '/') {
1586                char *fullpath = concat_path_file(home_httpd, url);
1587                setenv1("SCRIPT_FILENAME", fullpath);
1588        }
1589        /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
1590        setenv1("SCRIPT_NAME", url);
1591        /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1592         * QUERY_STRING: The information which follows the ? in the URL
1593         * which referenced this script. This is the query information.
1594         * It should not be decoded in any fashion. This variable
1595         * should always be set when there is query information,
1596         * regardless of command line decoding. */
1597        /* (Older versions of bbox seem to do some decoding) */
1598        setenv1("QUERY_STRING", g_query);
1599        putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1600        putenv((char*)"SERVER_PROTOCOL=HTTP/1.1");
1601        putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1602        /* Having _separate_ variables for IP and port defeats
1603         * the purpose of having socket abstraction. Which "port"
1604         * are you using on Unix domain socket?
1605         * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1606         * Oh well... */
1607        {
1608                char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1609                char *cp = strrchr(p, ':');
1610                if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1611                        cp = NULL;
1612                if (cp) *cp = '\0'; /* delete :PORT */
1613                setenv1("REMOTE_ADDR", p);
1614                if (cp) {
1615                        *cp = ':';
1616#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1617                        setenv1("REMOTE_PORT", cp + 1);
1618#endif
1619                }
1620        }
1621        if (post_len)
1622                putenv(xasprintf("CONTENT_LENGTH=%u", post_len));
1623#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1624        if (remoteuser) {
1625                setenv1("REMOTE_USER", remoteuser);
1626                putenv((char*)"AUTH_TYPE=Basic");
1627        }
1628#endif
1629        /* setenv1("SERVER_NAME", safe_gethostname()); - don't do this,
1630         * just run "env SERVER_NAME=xyz httpd ..." instead */
1631
1632        xpiped_pair(fromCgi);
1633        xpiped_pair(toCgi);
1634
1635        pid = vfork();
1636        if (pid < 0) {
1637                /* TODO: log perror? */
1638                log_and_exit();
1639        }
1640
1641        if (pid == 0) {
1642                /* Child process */
1643                char *argv[3];
1644
1645                xfunc_error_retval = 242;
1646
1647                /* NB: close _first_, then move fds! */
1648                close(toCgi.wr);
1649                close(fromCgi.rd);
1650                xmove_fd(toCgi.rd, 0);  /* replace stdin with the pipe */
1651                xmove_fd(fromCgi.wr, 1);  /* replace stdout with the pipe */
1652                /* User seeing stderr output can be a security problem.
1653                 * If CGI really wants that, it can always do dup itself. */
1654                /* dup2(1, 2); */
1655
1656                /* Chdiring to script's dir */
1657                script = last_slash;
1658                if (script != url) { /* paranoia */
1659                        *script = '\0';
1660                        if (chdir(url + 1) != 0) {
1661                                bb_perror_msg("can't change directory to '%s'", url + 1);
1662                                goto error_execing_cgi;
1663                        }
1664                        // not needed: *script = '/';
1665                }
1666                script++;
1667
1668                /* set argv[0] to name without path */
1669                argv[0] = script;
1670                argv[1] = NULL;
1671
1672#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
1673                {
1674                        char *suffix = strrchr(script, '.');
1675
1676                        if (suffix) {
1677                                Htaccess *cur;
1678                                for (cur = script_i; cur; cur = cur->next) {
1679                                        if (strcmp(cur->before_colon + 1, suffix) == 0) {
1680                                                /* found interpreter name */
1681                                                argv[0] = cur->after_colon;
1682                                                argv[1] = script;
1683                                                argv[2] = NULL;
1684                                                break;
1685                                        }
1686                                }
1687                        }
1688                }
1689#endif
1690                /* restore default signal dispositions for CGI process */
1691                bb_signals(0
1692                        | (1 << SIGCHLD)
1693                        | (1 << SIGPIPE)
1694                        | (1 << SIGHUP)
1695                        , SIG_DFL);
1696
1697                /* _NOT_ execvp. We do not search PATH. argv[0] is a filename
1698                 * without any dir components and will only match a file
1699                 * in the current directory */
1700                execv(argv[0], argv);
1701                if (verbose)
1702                        bb_perror_msg("can't execute '%s'", argv[0]);
1703 error_execing_cgi:
1704                /* send to stdout
1705                 * (we are CGI here, our stdout is pumped to the net) */
1706                send_headers_and_exit(HTTP_NOT_FOUND);
1707        } /* end child */
1708
1709        /* Parent process */
1710
1711        /* Restore variables possibly changed by child */
1712        xfunc_error_retval = 0;
1713
1714        /* Pump data */
1715        close(fromCgi.wr);
1716        close(toCgi.rd);
1717        cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
1718}
1719
1720#endif          /* FEATURE_HTTPD_CGI */
1721
1722/*
1723 * Send a file response to a HTTP request, and exit
1724 *
1725 * Parameters:
1726 * const char *url  The requested URL (with leading /).
1727 * what             What to send (headers/body/both).
1728 */
1729static NOINLINE void send_file_and_exit(const char *url, int what)
1730{
1731        char *suffix;
1732        int fd;
1733        ssize_t count;
1734
1735        if (content_gzip) {
1736                /* does <url>.gz exist? Then use it instead */
1737                char *gzurl = xasprintf("%s.gz", url);
1738                fd = open(gzurl, O_RDONLY);
1739                free(gzurl);
1740                if (fd != -1) {
1741                        struct stat sb;
1742                        fstat(fd, &sb);
1743                        file_size = sb.st_size;
1744                        last_mod = sb.st_mtime;
1745                } else {
1746                        IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
1747                        fd = open(url, O_RDONLY);
1748                }
1749        } else {
1750                fd = open(url, O_RDONLY);
1751                /* file_size and last_mod are already populated */
1752        }
1753        if (fd < 0) {
1754                dbg("can't open '%s'\n", url);
1755                /* Error pages are sent by using send_file_and_exit(SEND_BODY).
1756                 * IOW: it is unsafe to call send_headers_and_exit
1757                 * if what is SEND_BODY! Can recurse! */
1758                if (what != SEND_BODY)
1759                        send_headers_and_exit(HTTP_NOT_FOUND);
1760                log_and_exit();
1761        }
1762#if ENABLE_FEATURE_HTTPD_ETAG
1763        /* ETag is "hex(last_mod)-hex(file_size)" e.g. "5e132e20-417" */
1764        sprintf(G.etag, "\"%llx-%llx\"", (unsigned long long)last_mod, (unsigned long long)file_size);
1765
1766        if (G.if_none_match) {
1767                dbg("If-None-Match:'%s' file's ETag:'%s'\n", G.if_none_match, G.etag);
1768                /* Weak ETag comparision.
1769                 * If-None-Match may have many ETags but they are quoted so we can use simple substring search */
1770                if (strstr(G.if_none_match, G.etag))
1771                        send_headers_and_exit(HTTP_NOT_MODIFIED);
1772        }
1773#endif
1774        /* If you want to know about EPIPE below
1775         * (happens if you abort downloads from local httpd): */
1776        signal(SIGPIPE, SIG_IGN);
1777
1778        /* If not found, default is to not send "Content-type:" */
1779        /*found_mime_type = NULL; - already is */
1780        suffix = strrchr(url, '.');
1781        if (suffix) {
1782                static const char suffixTable[] ALIGN1 =
1783                        /* Shorter suffix must be first:
1784                         * ".html.htm" will fail for ".htm"
1785                         */
1786                        ".txt.h.c.cc.cpp\0" "text/plain\0"
1787                        /* .htm line must be after .h line */
1788                        ".htm.html\0" "text/html\0"
1789                        ".jpg.jpeg\0" "image/jpeg\0"
1790                        ".gif\0"      "image/gif\0"
1791                        ".png\0"      "image/png\0"
1792                        ".svg\0"      "image/svg+xml\0"
1793                        /* .css line must be after .c line */
1794                        ".css\0"      "text/css\0"
1795                        ".js\0"       "application/javascript\0"
1796                        ".wav\0"      "audio/wav\0"
1797                        ".avi\0"      "video/x-msvideo\0"
1798                        ".qt.mov\0"   "video/quicktime\0"
1799                        ".mpe.mpeg\0" "video/mpeg\0"
1800                        ".mid.midi\0" "audio/midi\0"
1801                        ".mp3\0"      "audio/mpeg\0"
1802#if 0  /* unpopular */
1803                        ".au\0"       "audio/basic\0"
1804                        ".pac\0"      "application/x-ns-proxy-autoconfig\0"
1805                        ".vrml.wrl\0" "model/vrml\0"
1806#endif
1807                        /* compiler adds another "\0" here */
1808                ;
1809                Htaccess *cur;
1810
1811                /* Examine built-in table */
1812                const char *table = suffixTable;
1813                const char *table_next;
1814                for (; *table; table = table_next) {
1815                        const char *try_suffix;
1816                        const char *mime_type;
1817                        mime_type  = table + strlen(table) + 1;
1818                        table_next = mime_type + strlen(mime_type) + 1;
1819                        try_suffix = strstr(table, suffix);
1820                        if (!try_suffix)
1821                                continue;
1822                        try_suffix += strlen(suffix);
1823                        if (*try_suffix == '\0' || *try_suffix == '.') {
1824                                found_mime_type = mime_type;
1825                                break;
1826                        }
1827                        /* Example: strstr(table, ".av") != NULL, but it
1828                         * does not match ".avi" after all and we end up here.
1829                         * The table is arranged so that in this case we know
1830                         * that it can't match anything in the following lines,
1831                         * and we stop the search: */
1832                        break;
1833                }
1834                /* ...then user's table */
1835                for (cur = mime_a; cur; cur = cur->next) {
1836                        if (strcmp(cur->before_colon, suffix) == 0) {
1837                                found_mime_type = cur->after_colon;
1838                                break;
1839                        }
1840                }
1841        }
1842
1843        dbg("sending file '%s' content-type:%s\n", url, found_mime_type);
1844
1845#if ENABLE_FEATURE_HTTPD_RANGES
1846        if (what == SEND_BODY /* err pages and ranges don't mix */
1847         || content_gzip /* we are sending compressed page: can't do ranges */  ///why?
1848        ) {
1849                range_start = -1;
1850        }
1851        range_len = MAXINT(off_t);
1852        if (range_start >= 0) {
1853                if (!range_end || range_end > file_size - 1) {
1854                        range_end = file_size - 1;
1855                }
1856                if (range_end < range_start
1857                 || lseek(fd, range_start, SEEK_SET) != range_start
1858                ) {
1859                        lseek(fd, 0, SEEK_SET);
1860                        range_start = -1;
1861                } else {
1862                        range_len = range_end - range_start + 1;
1863                        send_headers(HTTP_PARTIAL_CONTENT);
1864                        what = SEND_BODY;
1865                }
1866        }
1867#endif
1868        if (what & SEND_HEADERS)
1869                send_headers(HTTP_OK);
1870#if ENABLE_FEATURE_USE_SENDFILE
1871        {
1872                off_t offset = (range_start < 0) ? 0 : range_start;
1873                while (1) {
1874                        /* sz is rounded down to 64k */
1875                        ssize_t sz = MAXINT(ssize_t) - 0xffff;
1876                        IF_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
1877                        count = sendfile(STDOUT_FILENO, fd, &offset, sz);
1878                        if (count < 0) {
1879                                if (offset == range_start)
1880                                        break; /* fall back to read/write loop */
1881                                goto fin;
1882                        }
1883                        IF_FEATURE_HTTPD_RANGES(range_len -= count;)
1884                        if (count == 0 || range_len == 0)
1885                                log_and_exit();
1886                }
1887        }
1888#endif
1889        while ((count = safe_read(fd, iobuf, IOBUF_SIZE)) > 0) {
1890                ssize_t n;
1891                IF_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
1892                n = full_write(STDOUT_FILENO, iobuf, count);
1893                if (count != n)
1894                        break;
1895                IF_FEATURE_HTTPD_RANGES(range_len -= count;)
1896                if (range_len == 0)
1897                        break;
1898        }
1899        if (count < 0) {
1900 IF_FEATURE_USE_SENDFILE(fin:)
1901                if (verbose > 1)
1902                        bb_simple_perror_msg("error");
1903        }
1904        log_and_exit();
1905}
1906
1907#if ENABLE_FEATURE_HTTPD_ACL_IP
1908static void if_ip_denied_send_HTTP_FORBIDDEN_and_exit(unsigned remote_ip)
1909{
1910        Htaccess_IP *cur;
1911
1912        for (cur = G.ip_a_d; cur; cur = cur->next) {
1913                dbg("checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1914                        rmt_ip_str,
1915                        (unsigned char)(cur->ip >> 24),
1916                        (unsigned char)(cur->ip >> 16),
1917                        (unsigned char)(cur->ip >> 8),
1918                        (unsigned char)(cur->ip),
1919                        (unsigned char)(cur->mask >> 24),
1920                        (unsigned char)(cur->mask >> 16),
1921                        (unsigned char)(cur->mask >> 8),
1922                        (unsigned char)(cur->mask)
1923                );
1924                if ((remote_ip & cur->mask) == cur->ip) {
1925                        if (cur->allow_deny == 'A')
1926                                return;
1927                        send_headers_and_exit(HTTP_FORBIDDEN);
1928                }
1929        }
1930
1931        if (flg_deny_all) /* depends on whether we saw "D:*" */
1932                send_headers_and_exit(HTTP_FORBIDDEN);
1933}
1934#else
1935# define if_ip_denied_send_HTTP_FORBIDDEN_and_exit(arg) ((void)0)
1936#endif
1937
1938#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1939
1940# if ENABLE_PAM
1941struct pam_userinfo {
1942        const char *name;
1943        const char *pw;
1944};
1945
1946static int pam_talker(int num_msg,
1947                const struct pam_message **msg,
1948                struct pam_response **resp,
1949                void *appdata_ptr)
1950{
1951        int i;
1952        struct pam_userinfo *userinfo = (struct pam_userinfo *) appdata_ptr;
1953        struct pam_response *response;
1954
1955        if (!resp || !msg || !userinfo)
1956                return PAM_CONV_ERR;
1957
1958        /* allocate memory to store response */
1959        response = xzalloc(num_msg * sizeof(*response));
1960
1961        /* copy values */
1962        for (i = 0; i < num_msg; i++) {
1963                const char *s;
1964
1965                switch (msg[i]->msg_style) {
1966                case PAM_PROMPT_ECHO_ON:
1967                        s = userinfo->name;
1968                        break;
1969                case PAM_PROMPT_ECHO_OFF:
1970                        s = userinfo->pw;
1971                        break;
1972                case PAM_ERROR_MSG:
1973                case PAM_TEXT_INFO:
1974                        s = "";
1975                        break;
1976                default:
1977                        free(response);
1978                        return PAM_CONV_ERR;
1979                }
1980                response[i].resp = xstrdup(s);
1981                if (PAM_SUCCESS != 0)
1982                        response[i].resp_retcode = PAM_SUCCESS;
1983        }
1984        *resp = response;
1985        return PAM_SUCCESS;
1986}
1987# endif
1988
1989/*
1990 * Config file entries are of the form "/<path>:<user>:<passwd>".
1991 * If config file has no prefix match for path, access is allowed.
1992 *
1993 * path                 The file path
1994 * user_and_passwd      "user:passwd" to validate
1995 *
1996 * Returns 1 if user_and_passwd is OK.
1997 */
1998static int check_user_passwd(const char *path, char *user_and_passwd)
1999{
2000        Htaccess *cur;
2001        const char *prev = NULL;
2002
2003        for (cur = g_auth; cur; cur = cur->next) {
2004                const char *dir_prefix;
2005                size_t len;
2006                int r;
2007
2008                dir_prefix = cur->before_colon;
2009
2010                /* WHY? */
2011                /* If already saw a match, don't accept other different matches */
2012                if (prev && strcmp(prev, dir_prefix) != 0)
2013                        continue;
2014
2015                dbg("checkPerm: '%s' ? '%s'\n", dir_prefix, user_and_passwd);
2016
2017                /* If it's not a prefix match, continue searching */
2018                len = strlen(dir_prefix);
2019                if (len != 1 /* dir_prefix "/" matches all, don't need to check */
2020                 && (strncmp(dir_prefix, path, len) != 0
2021                    || (path[len] != '/' && path[len] != '\0')
2022                    )
2023                ) {
2024                        continue;
2025                }
2026
2027                /* Path match found */
2028                prev = dir_prefix;
2029
2030                if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
2031                        char *colon_after_user;
2032                        const char *passwd;
2033# if ENABLE_FEATURE_SHADOWPASSWDS && !ENABLE_PAM
2034                        char sp_buf[256];
2035# endif
2036
2037                        colon_after_user = strchr(user_and_passwd, ':');
2038                        if (!colon_after_user)
2039                                goto bad_input;
2040
2041                        /* compare "user:" */
2042                        if (cur->after_colon[0] != '*'
2043                         && strncmp(cur->after_colon, user_and_passwd,
2044                                        colon_after_user - user_and_passwd + 1) != 0
2045                        ) {
2046                                continue;
2047                        }
2048                        /* this cfg entry is '*' or matches username from peer */
2049
2050                        passwd = strchr(cur->after_colon, ':');
2051                        if (!passwd)
2052                                goto bad_input;
2053                        passwd++;
2054                        if (passwd[0] == '*') {
2055# if ENABLE_PAM
2056                                struct pam_userinfo userinfo;
2057                                struct pam_conv conv_info = { &pam_talker, (void *) &userinfo };
2058                                pam_handle_t *pamh;
2059
2060                                *colon_after_user = '\0';
2061                                userinfo.name = user_and_passwd;
2062                                userinfo.pw = colon_after_user + 1;
2063                                r = pam_start("httpd", user_and_passwd, &conv_info, &pamh) != PAM_SUCCESS;
2064                                if (r == 0) {
2065                                        r = pam_authenticate(pamh, PAM_DISALLOW_NULL_AUTHTOK) != PAM_SUCCESS
2066                                         || pam_acct_mgmt(pamh, PAM_DISALLOW_NULL_AUTHTOK)    != PAM_SUCCESS
2067                                        ;
2068                                        pam_end(pamh, PAM_SUCCESS);
2069                                }
2070                                *colon_after_user = ':';
2071                                goto end_check_passwd;
2072# else
2073#  if ENABLE_FEATURE_SHADOWPASSWDS
2074                                /* Using _r function to avoid pulling in static buffers */
2075                                struct spwd spw;
2076#  endif
2077                                struct passwd *pw;
2078
2079                                *colon_after_user = '\0';
2080                                pw = getpwnam(user_and_passwd);
2081                                *colon_after_user = ':';
2082                                if (!pw || !pw->pw_passwd)
2083                                        continue;
2084                                passwd = pw->pw_passwd;
2085#  if ENABLE_FEATURE_SHADOWPASSWDS
2086                                if ((passwd[0] == 'x' || passwd[0] == '*') && !passwd[1]) {
2087                                        /* getspnam_r may return 0 yet set result to NULL.
2088                                         * At least glibc 2.4 does this. Be extra paranoid here. */
2089                                        struct spwd *result = NULL;
2090                                        r = getspnam_r(pw->pw_name, &spw, sp_buf, sizeof(sp_buf), &result);
2091                                        if (r == 0 && result)
2092                                                passwd = result->sp_pwdp;
2093                                }
2094#  endif
2095                                /* In this case, passwd is ALWAYS encrypted:
2096                                 * it came from /etc/passwd or /etc/shadow!
2097                                 */
2098                                goto check_encrypted;
2099# endif /* ENABLE_PAM */
2100                        }
2101                        /* Else: passwd is from httpd.conf, it is either plaintext or encrypted */
2102
2103                        if (passwd[0] == '$' && isdigit(passwd[1])) {
2104                                char *encrypted;
2105# if !ENABLE_PAM
2106 check_encrypted:
2107# endif
2108                                /* encrypt pwd from peer and check match with local one */
2109                                encrypted = pw_encrypt(
2110                                        /* pwd (from peer): */  colon_after_user + 1,
2111                                        /* salt: */ passwd,
2112                                        /* cleanup: */ 0
2113                                );
2114                                r = strcmp(encrypted, passwd);
2115                                free(encrypted);
2116                        } else {
2117                                /* local passwd is from httpd.conf and it's plaintext */
2118                                r = strcmp(colon_after_user + 1, passwd);
2119                        }
2120                        goto end_check_passwd;
2121                }
2122 bad_input:
2123                /* Comparing plaintext "user:pass" in one go */
2124                r = strcmp(cur->after_colon, user_and_passwd);
2125 end_check_passwd:
2126                if (r == 0) {
2127                        remoteuser = xstrndup(user_and_passwd,
2128                                strchrnul(user_and_passwd, ':') - user_and_passwd
2129                        );
2130                        return 1; /* Ok */
2131                }
2132        } /* for */
2133
2134        /* 0(bad) if prev is set: matches were found but passwd was wrong */
2135        return (prev == NULL);
2136}
2137#endif  /* FEATURE_HTTPD_BASIC_AUTH */
2138
2139#if ENABLE_FEATURE_HTTPD_PROXY
2140static Htaccess_Proxy *find_proxy_entry(const char *url)
2141{
2142        Htaccess_Proxy *p;
2143        for (p = proxy; p; p = p->next) {
2144                if (is_prefixed_with(url, p->url_from))
2145                        return p;
2146        }
2147        return NULL;
2148}
2149#endif
2150
2151/*
2152 * Handle timeouts
2153 */
2154static void send_REQUEST_TIMEOUT_and_exit(int sig) NORETURN;
2155static void send_REQUEST_TIMEOUT_and_exit(int sig UNUSED_PARAM)
2156{
2157        send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
2158}
2159
2160/*
2161 * Handle an incoming http request and exit.
2162 */
2163static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) NORETURN;
2164static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
2165{
2166        struct stat sb;
2167        char *urlcopy;
2168        char *urlp;
2169        char *tptr;
2170#if ENABLE_FEATURE_HTTPD_ACL_IP
2171        unsigned remote_ip;
2172#endif
2173#if ENABLE_FEATURE_HTTPD_CGI
2174        unsigned total_headers_len;
2175#endif
2176        const char *prequest;
2177        static const char request_GET[]  ALIGN1 = "GET";
2178        static const char request_HEAD[] ALIGN1 = "HEAD";
2179#if ENABLE_FEATURE_HTTPD_CGI
2180        static const char request_POST[] ALIGN1 = "POST";
2181        unsigned long POST_length;
2182        enum CGI_type {
2183                CGI_NONE = 0,
2184                CGI_NORMAL,
2185                CGI_INDEX,
2186                CGI_INTERPRETER,
2187        } cgi_type = CGI_NONE;
2188#endif
2189#if ENABLE_FEATURE_HTTPD_PROXY
2190        Htaccess_Proxy *proxy_entry;
2191#endif
2192#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
2193        smallint authorized = -1;
2194#endif
2195        char *HTTP_slash;
2196
2197        /* Allocation of iobuf is postponed until now
2198         * (IOW, server process doesn't need to waste 8k) */
2199        iobuf = xmalloc(IOBUF_SIZE);
2200
2201        if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
2202                /* NB: can be NULL (user runs httpd -i by hand?) */
2203                rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
2204        }
2205        if (verbose) {
2206                /* this trick makes -v logging much simpler */
2207                if (rmt_ip_str)
2208                        applet_name = rmt_ip_str;
2209                if (verbose > 2)
2210                        bb_simple_error_msg("connected");
2211        }
2212#if ENABLE_FEATURE_HTTPD_ACL_IP
2213        remote_ip = 0;
2214        if (fromAddr->u.sa.sa_family == AF_INET) {
2215                remote_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
2216        }
2217# if ENABLE_FEATURE_IPV6
2218        if (fromAddr->u.sa.sa_family == AF_INET6
2219         && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
2220         && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
2221         && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
2222                remote_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
2223# endif
2224        if_ip_denied_send_HTTP_FORBIDDEN_and_exit(remote_ip);
2225#endif
2226
2227        /* Install timeout handler. get_line() needs it. */
2228        signal(SIGALRM, send_REQUEST_TIMEOUT_and_exit);
2229
2230        if (!get_line()) { /* EOF or error or empty line */
2231                /* Observed Firefox to "speculatively" open
2232                 * extra connections to a new site on first access,
2233                 * they are closed in ~5 seconds with nothing
2234                 * being sent at all.
2235                 * (Presumably it's a method to decrease latency?)
2236                 */
2237                if (verbose > 2)
2238                        bb_simple_error_msg("eof on read, closing");
2239                /* Don't bother generating error page in this case,
2240                 * just close the socket.
2241                 */
2242                //send_headers_and_exit(HTTP_BAD_REQUEST);
2243                _exit(xfunc_error_retval);
2244        }
2245        dbg("Request:'%s'\n", iobuf);
2246
2247        /* Find URL */
2248        // rfc2616: method and URI is separated by exactly one space
2249        //urlp = strpbrk(iobuf, " \t"); - no, tab isn't allowed
2250        urlp = strchr(iobuf, ' ');
2251        if (urlp == NULL)
2252                send_headers_and_exit(HTTP_BAD_REQUEST);
2253        *urlp++ = '\0';
2254        //urlp = skip_whitespace(urlp); - should not be necessary
2255        if (urlp[0] != '/')
2256                send_headers_and_exit(HTTP_BAD_REQUEST);
2257        /* Find end of URL */
2258        HTTP_slash = strchr(urlp, ' ');
2259        /* Is it " HTTP/"? */
2260        if (!HTTP_slash || strncmp(HTTP_slash + 1, HTTP_200, 5) != 0)
2261                send_headers_and_exit(HTTP_BAD_REQUEST);
2262        *HTTP_slash++ = '\0';
2263
2264#if ENABLE_FEATURE_HTTPD_PROXY
2265        proxy_entry = find_proxy_entry(urlp);
2266        if (proxy_entry) {
2267                int proxy_fd;
2268                len_and_sockaddr *lsa;
2269
2270                if (verbose > 1)
2271                        bb_error_msg("proxy:%s", urlp);
2272                lsa = host2sockaddr(proxy_entry->host_port, 80);
2273                if (!lsa)
2274                        send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2275                proxy_fd = socket(lsa->u.sa.sa_family, SOCK_STREAM, 0);
2276                if (proxy_fd < 0)
2277                        send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2278                if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
2279                        send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2280                /* Disable peer header reading timeout */
2281                alarm(0);
2282                /* Config directive was of the form:
2283                 *   P:/url:[http://]hostname[:port]/new/path
2284                 * When /urlSFX is requested, reverse proxy it
2285                 * to http://hostname[:port]/new/pathSFX
2286                 */
2287                fdprintf(proxy_fd, "%s %s%s %s\r\n",
2288                                iobuf, /* "GET" / "POST" / etc */
2289                                proxy_entry->url_to, /* "/new/path" */
2290                                urlp + strlen(proxy_entry->url_from), /* "SFX" */
2291                                HTTP_slash /* "HTTP/xyz" */
2292                );
2293                cgi_io_loop_and_exit(proxy_fd, proxy_fd, /*max POST length:*/ INT_MAX);
2294        }
2295#endif
2296
2297        /* Determine type of request (GET/POST/...) */
2298        prequest = request_GET;
2299        if (strcasecmp(iobuf, prequest) == 0)
2300                goto found;
2301        prequest = request_HEAD;
2302        if (strcasecmp(iobuf, prequest) == 0)
2303                goto found;
2304#if !ENABLE_FEATURE_HTTPD_CGI
2305        send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2306#else
2307        prequest = request_POST;
2308        if (strcasecmp(iobuf, prequest) == 0)
2309                goto found;
2310        /* For CGI, allow DELETE, PUT, OPTIONS, etc too */
2311        prequest = alloca(16);
2312        safe_strncpy((char*)prequest, iobuf, 16);
2313#endif
2314 found:
2315        /* Copy URL to stack-allocated char[] */
2316        urlcopy = alloca((HTTP_slash - urlp) + 2 + strlen(index_page));
2317        strcpy(urlcopy, urlp);
2318        /* NB: urlcopy ptr is never changed after this */
2319
2320        /* Extract url args if present */
2321        g_query = strchr(urlcopy, '?');
2322        if (g_query)
2323                *g_query++ = '\0';
2324
2325        /* Decode URL escape sequences */
2326        tptr = percent_decode_in_place(urlcopy, /*strict:*/ 1);
2327        if (tptr == NULL)
2328                send_headers_and_exit(HTTP_BAD_REQUEST);
2329        if (tptr == urlcopy + 1) {
2330                /* '/' or NUL is encoded */
2331                send_headers_and_exit(HTTP_NOT_FOUND);
2332        }
2333
2334        /* Canonicalize path */
2335        /* Algorithm stolen from libbb bb_simplify_path(),
2336         * but don't strdup, retain trailing slash, protect root */
2337        urlp = tptr = urlcopy;
2338        while (1) {
2339                if (*urlp == '/') {
2340                        /* skip duplicate (or initial) slash */
2341                        if (*tptr == '/') {
2342                                goto next_char;
2343                        }
2344                        if (*tptr == '.') {
2345                                if (tptr[1] == '.' && (tptr[2] == '/' || tptr[2] == '\0')) {
2346                                        /* "..": be careful */
2347                                        /* protect root */
2348                                        if (urlp == urlcopy)
2349                                                send_headers_and_exit(HTTP_BAD_REQUEST);
2350                                        /* omit previous dir */
2351                                        while (*--urlp != '/')
2352                                                continue;
2353                                        /* skip to "./" or ".<NUL>" */
2354                                        tptr++;
2355                                }
2356                                if (tptr[1] == '/' || tptr[1] == '\0') {
2357                                        /* skip extra "/./" */
2358                                        goto next_char;
2359                                }
2360                        }
2361                }
2362                *++urlp = *tptr;
2363                if (*tptr == '\0')
2364                        break;
2365 next_char:
2366                tptr++;
2367        }
2368
2369        /* Log it */
2370        if (verbose > 1)
2371                bb_error_msg("url:%s", urlcopy);
2372
2373        tptr = urlcopy;
2374        while ((tptr = strchr(tptr + 1, '/')) != NULL) {
2375                /* have path1/path2 */
2376                *tptr = '\0';
2377                /* may have subdir config */
2378                if (parse_conf(urlcopy + 1, SUBDIR_PARSE) == 0)
2379                        if_ip_denied_send_HTTP_FORBIDDEN_and_exit(remote_ip);
2380                *tptr = '/';
2381        }
2382
2383        tptr = urlcopy + 1;      /* skip first '/' */
2384
2385#if ENABLE_FEATURE_HTTPD_CGI
2386        if (is_prefixed_with(tptr, "cgi-bin/")) {
2387                if (tptr[8] == '\0') {
2388                        /* protect listing "cgi-bin/" */
2389                        send_headers_and_exit(HTTP_FORBIDDEN);
2390                }
2391                cgi_type = CGI_NORMAL;
2392        }
2393#endif
2394
2395        if (urlp[-1] == '/') {
2396                /* When index_page string is appended to <dir>/ URL, it overwrites
2397                 * the query string. If we fall back to call /cgi-bin/index.cgi,
2398                 * query string would be lost and not available to the CGI.
2399                 * Work around it by making a deep copy.
2400                 */
2401                if (ENABLE_FEATURE_HTTPD_CGI)
2402                        g_query = xstrdup(g_query); /* ok for NULL too */
2403                strcpy(urlp, index_page);
2404        }
2405        if (stat(tptr, &sb) == 0) {
2406                /* If URL is a directory with no slash, set up
2407                 * "HTTP/1.1 302 Found" "Location: /dir/" reply */
2408                if (urlp[-1] != '/' && S_ISDIR(sb.st_mode)) {
2409                        found_moved_temporarily = urlcopy;
2410                } else {
2411#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
2412                        char *suffix = strrchr(tptr, '.');
2413                        if (suffix) {
2414                                Htaccess *cur;
2415                                for (cur = script_i; cur; cur = cur->next) {
2416                                        if (strcmp(cur->before_colon + 1, suffix) == 0) {
2417                                                cgi_type = CGI_INTERPRETER;
2418                                                break;
2419                                        }
2420                                }
2421                        }
2422#endif
2423                        file_size = sb.st_size;
2424                        last_mod = sb.st_mtime;
2425                }
2426        }
2427#if ENABLE_FEATURE_HTTPD_CGI
2428        else if (urlp[-1] == '/') {
2429                /* It's a dir URL and there is no index.html */
2430                /* Is there cgi-bin/index.cgi? */
2431                if (access("/cgi-bin/index.cgi"+1, X_OK) != 0)
2432                        send_headers_and_exit(HTTP_NOT_FOUND); /* no */
2433                cgi_type = CGI_INDEX;
2434        }
2435#endif
2436
2437#if ENABLE_FEATURE_HTTPD_BASIC_AUTH || ENABLE_FEATURE_HTTPD_CGI
2438        /* check_user_passwd() would be confused by added .../index.html, truncate it */
2439        urlp[0] = '\0';
2440#endif
2441
2442#if ENABLE_FEATURE_HTTPD_CGI
2443        total_headers_len = 0;
2444        POST_length = 0;
2445#endif
2446
2447        /* Read until blank line */
2448        while (1) {
2449                unsigned iobuf_len = get_line();
2450                if (!iobuf_len)
2451                        break; /* EOF or error or empty line */
2452#if ENABLE_FEATURE_HTTPD_CGI
2453                /* Prevent unlimited growth of HTTP_xyz envvars */
2454                total_headers_len += iobuf_len;
2455                if (total_headers_len >= MAX_HTTP_HEADERS_SIZE)
2456                        send_headers_and_exit(HTTP_ENTITY_TOO_LARGE);
2457#endif
2458                dbg("header:'%s'\n", iobuf);
2459#if ENABLE_FEATURE_HTTPD_CGI
2460                /* Only POST needs to know POST_length */
2461                if (prequest == request_POST && STRNCASECMP(iobuf, "Content-Length:") == 0) {
2462                        tptr = skip_whitespace(iobuf + sizeof("Content-Length:") - 1);
2463                        if (!tptr[0])
2464                                send_headers_and_exit(HTTP_BAD_REQUEST);
2465                        /* not using strtoul: it ignores leading minus! */
2466                        POST_length = bb_strtou(tptr, NULL, 10);
2467                        /* length is "ulong", but we need to pass it to int later */
2468                        if (errno || POST_length > INT_MAX)
2469                                send_headers_and_exit(HTTP_BAD_REQUEST);
2470                        continue;
2471                }
2472#endif
2473#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
2474                if (STRNCASECMP(iobuf, "Authorization:") == 0) {
2475                        /* We only allow Basic credentials.
2476                         * It shows up as "Authorization: Basic <user>:<passwd>" where
2477                         * "<user>:<passwd>" is base64 encoded.
2478                         */
2479                        tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
2480                        if (STRNCASECMP(tptr, "Basic") == 0) {
2481                                tptr += sizeof("Basic")-1;
2482                                /* decodeBase64() skips whitespace itself */
2483                                decodeBase64(tptr);
2484                                authorized = check_user_passwd(urlcopy, tptr);
2485                                continue;
2486                        }
2487                }
2488#endif
2489#if ENABLE_FEATURE_HTTPD_RANGES
2490                if (STRNCASECMP(iobuf, "Range:") == 0) {
2491                        /* We know only bytes=NNN-[MMM] */
2492                        char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
2493                        s = is_prefixed_with(s, "bytes=");
2494                        if (s) {
2495                                range_start = BB_STRTOOFF(s, &s, 10);
2496                                if (s[0] != '-' || range_start < 0) {
2497                                        range_start = -1;
2498                                } else if (s[1]) {
2499                                        range_end = BB_STRTOOFF(s+1, NULL, 10);
2500                                        if (errno || range_end < range_start)
2501                                                range_start = -1;
2502                                }
2503                        }
2504                        continue;
2505                }
2506#endif
2507#if ENABLE_FEATURE_HTTPD_GZIP
2508                if (STRNCASECMP(iobuf, "Accept-Encoding:") == 0) {
2509                        /* Note: we do not support "gzip;q=0"
2510                         * method of _disabling_ gzip
2511                         * delivery. No one uses that, though */
2512                        const char *s = strstr(iobuf, "gzip");
2513                        if (s) {
2514                                // want more thorough checks?
2515                                //if (s[-1] == ' '
2516                                // || s[-1] == ','
2517                                // || s[-1] == ':'
2518                                //) {
2519                                        content_gzip = 1;
2520                                //}
2521                        }
2522                        continue;
2523                }
2524#endif
2525#if ENABLE_FEATURE_HTTPD_ETAG
2526                if (STRNCASECMP(iobuf, "If-None-Match:") == 0) {
2527                        free(G.if_none_match);
2528                        G.if_none_match = xstrdup(skip_whitespace(iobuf + sizeof("If-None-Match:") - 1));
2529                        continue;
2530                }
2531#endif
2532#if ENABLE_FEATURE_HTTPD_CGI
2533                if (cgi_type != CGI_NONE) {
2534                        bool ct = (STRNCASECMP(iobuf, "Content-Type:") == 0);
2535                        char *cp;
2536                        char *colon = strchr(iobuf, ':');
2537
2538                        if (!colon)
2539                                continue;
2540                        cp = iobuf;
2541                        while (cp < colon) {
2542                                /* a-z => A-Z, not-alnum => _ */
2543                                char c = (*cp & ~0x20); /* toupper for A-Za-z, undef for others */
2544                                if ((unsigned)(c - 'A') <= ('Z' - 'A')) {
2545                                        *cp++ = c;
2546                                        continue;
2547                                }
2548                                if (!isdigit(*cp))
2549                                        *cp = '_';
2550                                cp++;
2551                        }
2552                        /* "Content-Type:" gets no HTTP_ prefix, all others do */
2553                        cp = xasprintf(ct ? "HTTP_%.*s=%s" + 5 : "HTTP_%.*s=%s",
2554                                (int)(colon - iobuf), iobuf,
2555                                skip_whitespace(colon + 1)
2556                        );
2557                        putenv(cp);
2558                }
2559#endif
2560        } /* while extra header reading */
2561
2562        /* We are done reading headers, disable peer timeout */
2563        alarm(0);
2564
2565        if (strcmp(bb_basename(urlcopy), HTTPD_CONF) == 0) {
2566                /* protect listing [/path]/httpd.conf or IP deny */
2567                send_headers_and_exit(HTTP_FORBIDDEN);
2568        }
2569
2570#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
2571        /* Case: no "Authorization:" was seen, but page might require passwd.
2572         * Check that with dummy user:pass */
2573        if (authorized < 0)
2574                authorized = check_user_passwd(urlcopy, (char *) "");
2575        if (!authorized)
2576                send_headers_and_exit(HTTP_UNAUTHORIZED);
2577#endif
2578
2579        if (found_moved_temporarily)
2580                send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2581
2582#if ENABLE_FEATURE_HTTPD_CGI
2583        if (cgi_type != CGI_NONE) {
2584                send_cgi_and_exit(
2585                        (cgi_type == CGI_INDEX) ? "/cgi-bin/index.cgi"
2586                        /*CGI_NORMAL or CGI_INTERPRETER*/ : urlcopy,
2587                        urlcopy, prequest, POST_length
2588                );
2589        }
2590#endif
2591
2592#if ENABLE_FEATURE_HTTPD_CGI
2593        if (prequest != request_GET && prequest != request_HEAD) {
2594                /* POST / DELETE / PUT / OPTIONS for files do not make sense */
2595                send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2596        }
2597#else
2598        /* !CGI: it can be only GET or HEAD */
2599#endif
2600
2601#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
2602        /* Restore truncated .../index.html */
2603        if (urlp[-1] == '/')
2604                urlp[0] = index_page[0];
2605#endif
2606        send_file_and_exit(urlcopy + 1,
2607                (prequest != request_HEAD ? (SEND_HEADERS + SEND_BODY) : SEND_HEADERS)
2608        );
2609}
2610
2611/*
2612 * The main http server function.
2613 * Given a socket, listen for new connections and farm out
2614 * the processing as a [v]forked process.
2615 * Never returns.
2616 */
2617#if BB_MMU
2618static void mini_httpd(int server_socket) NORETURN;
2619static void mini_httpd(int server_socket)
2620{
2621        /* NB: it's best to not use xfuncs in this loop before fork().
2622         * Otherwise server may die on transient errors (temporary
2623         * out-of-memory condition, etc), which is Bad(tm).
2624         * Try to do any dangerous calls after fork.
2625         */
2626        while (1) {
2627                int n;
2628                len_and_sockaddr fromAddr;
2629
2630                /* Wait for connections... */
2631                fromAddr.len = LSA_SIZEOF_SA;
2632                n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
2633                if (n < 0)
2634                        continue;
2635//TODO: we can reject connects from denied IPs right away;
2636//also, we might want to do one MSG_DONTWAIT'ed recv() here
2637//to detect immediate EOF,
2638//to avoid forking a whole new process for attackers
2639//who open and close lots of connections.
2640//(OTOH, the real mitigtion for this sort of thing is
2641//to ratelimit connects in iptables)
2642
2643                /* set the KEEPALIVE option to cull dead connections */
2644                setsockopt_keepalive(n);
2645
2646                if (fork() == 0) {
2647                        /* child */
2648                        /* Do not reload config on HUP */
2649                        signal(SIGHUP, SIG_IGN);
2650                        close(server_socket);
2651                        xmove_fd(n, 0);
2652                        xdup2(0, 1);
2653
2654                        handle_incoming_and_exit(&fromAddr);
2655                }
2656                /* parent, or fork failed */
2657                close(n);
2658        } /* while (1) */
2659        /* never reached */
2660}
2661#else
2662static void mini_httpd_nommu(int server_socket, int argc, char **argv) NORETURN;
2663static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2664{
2665        char *argv_copy[argc + 2];
2666
2667        argv_copy[0] = argv[0];
2668        argv_copy[1] = (char*)"-i";
2669        memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2670
2671        /* NB: it's best to not use xfuncs in this loop before vfork().
2672         * Otherwise server may die on transient errors (temporary
2673         * out-of-memory condition, etc), which is Bad(tm).
2674         * Try to do any dangerous calls after fork.
2675         */
2676        while (1) {
2677                int n;
2678
2679                /* Wait for connections... */
2680                n = accept(server_socket, NULL, NULL);
2681                if (n < 0)
2682                        continue;
2683
2684                /* set the KEEPALIVE option to cull dead connections */
2685                setsockopt_keepalive(n);
2686
2687                if (vfork() == 0) {
2688                        /* child */
2689                        /* Do not reload config on HUP */
2690                        signal(SIGHUP, SIG_IGN);
2691                        close(server_socket);
2692                        xmove_fd(n, 0);
2693                        xdup2(0, 1);
2694
2695                        /* Run a copy of ourself in inetd mode */
2696                        re_exec(argv_copy);
2697                }
2698                argv_copy[0][0] &= 0x7f;
2699                /* parent, or vfork failed */
2700                close(n);
2701        } /* while (1) */
2702        /* never reached */
2703}
2704#endif
2705
2706/*
2707 * Process a HTTP connection on stdin/out.
2708 * Never returns.
2709 */
2710static void mini_httpd_inetd(void) NORETURN;
2711static void mini_httpd_inetd(void)
2712{
2713        len_and_sockaddr fromAddr;
2714
2715        memset(&fromAddr, 0, sizeof(fromAddr));
2716        fromAddr.len = LSA_SIZEOF_SA;
2717        /* NB: can fail if user runs it by hand and types in http cmds */
2718        getpeername(0, &fromAddr.u.sa, &fromAddr.len);
2719        handle_incoming_and_exit(&fromAddr);
2720}
2721
2722static void sighup_handler(int sig UNUSED_PARAM)
2723{
2724        int sv = errno;
2725        parse_conf(DEFAULT_PATH_HTTPD_CONF, SIGNALED_PARSE);
2726        errno = sv;
2727}
2728
2729enum {
2730        c_opt_config_file = 0,
2731        d_opt_decode_url,
2732        h_opt_home_httpd,
2733        IF_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
2734        IF_FEATURE_HTTPD_BASIC_AUTH(    r_opt_realm     ,)
2735        IF_FEATURE_HTTPD_AUTH_MD5(      m_opt_md5       ,)
2736        IF_FEATURE_HTTPD_SETUID(        u_opt_setuid    ,)
2737        p_opt_port      ,
2738        p_opt_inetd     ,
2739        p_opt_foreground,
2740        p_opt_verbose   ,
2741        OPT_CONFIG_FILE = 1 << c_opt_config_file,
2742        OPT_DECODE_URL  = 1 << d_opt_decode_url,
2743        OPT_HOME_HTTPD  = 1 << h_opt_home_httpd,
2744        OPT_ENCODE_URL  = IF_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2745        OPT_REALM       = IF_FEATURE_HTTPD_BASIC_AUTH(    (1 << r_opt_realm     )) + 0,
2746        OPT_MD5         = IF_FEATURE_HTTPD_AUTH_MD5(      (1 << m_opt_md5       )) + 0,
2747        OPT_SETUID      = IF_FEATURE_HTTPD_SETUID(        (1 << u_opt_setuid    )) + 0,
2748        OPT_PORT        = 1 << p_opt_port,
2749        OPT_INETD       = 1 << p_opt_inetd,
2750        OPT_FOREGROUND  = 1 << p_opt_foreground,
2751        OPT_VERBOSE     = 1 << p_opt_verbose,
2752};
2753
2754
2755int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
2756int httpd_main(int argc UNUSED_PARAM, char **argv)
2757{
2758        int server_socket = server_socket; /* for gcc */
2759        unsigned opt;
2760        char *url_for_decode;
2761        IF_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
2762        IF_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2763        IF_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
2764        IF_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
2765
2766        INIT_G();
2767
2768#if ENABLE_LOCALE_SUPPORT
2769        /* Undo busybox.c: we want to speak English in http (dates etc) */
2770        setlocale(LC_TIME, "C");
2771#endif
2772
2773        home_httpd = xrealloc_getcwd_or_warn(NULL);
2774        /* We do not "absolutize" path given by -h (home) opt.
2775         * If user gives relative path in -h,
2776         * $SCRIPT_FILENAME will not be set. */
2777        opt = getopt32(argv, "^"
2778                        "c:d:h:"
2779                        IF_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2780                        IF_FEATURE_HTTPD_BASIC_AUTH("r:")
2781                        IF_FEATURE_HTTPD_AUTH_MD5("m:")
2782                        IF_FEATURE_HTTPD_SETUID("u:")
2783                        "p:ifv"
2784                        "\0"
2785                        /* -v counts, -i implies -f */
2786                        "vv:if",
2787                        &opt_c_configFile, &url_for_decode, &home_httpd
2788                        IF_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
2789                        IF_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
2790                        IF_FEATURE_HTTPD_AUTH_MD5(, &pass)
2791                        IF_FEATURE_HTTPD_SETUID(, &s_ugid)
2792                        , &bind_addr_or_port
2793                        , &verbose
2794                );
2795        if (opt & OPT_DECODE_URL) {
2796                fputs_stdout(percent_decode_in_place(url_for_decode, /*strict:*/ 0));
2797                return 0;
2798        }
2799#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
2800        if (opt & OPT_ENCODE_URL) {
2801                fputs_stdout(encodeString(url_for_encode));
2802                return 0;
2803        }
2804#endif
2805#if ENABLE_FEATURE_HTTPD_AUTH_MD5
2806        if (opt & OPT_MD5) {
2807                char salt[sizeof("$1$XXXXXXXX")];
2808                salt[0] = '$';
2809                salt[1] = '1';
2810                salt[2] = '$';
2811                crypt_make_salt(salt + 3, 4);
2812                puts(pw_encrypt(pass, salt, /*cleanup:*/ 0));
2813                return 0;
2814        }
2815#endif
2816#if ENABLE_FEATURE_HTTPD_SETUID
2817        if (opt & OPT_SETUID) {
2818                xget_uidgid(&ugid, s_ugid);
2819        }
2820#endif
2821
2822#if !BB_MMU
2823        if (!(opt & OPT_FOREGROUND)) {
2824                bb_daemonize_or_rexec(0, argv); /* don't change current directory */
2825                re_execed = 0; /* for the following chdir to work */
2826        }
2827#endif
2828        /* Chdir to home (unless we were re_exec()ed for NOMMU case
2829         * in mini_httpd_nommu(): we are already in the home dir then).
2830         */
2831        if (!re_execed)
2832                xchdir(home_httpd);
2833
2834        if (!(opt & OPT_INETD)) {
2835                signal(SIGCHLD, SIG_IGN);
2836                server_socket = openServer();
2837#if ENABLE_FEATURE_HTTPD_SETUID
2838                /* drop privileges */
2839                if (opt & OPT_SETUID) {
2840                        if (ugid.gid != (gid_t)-1) {
2841                                if (setgroups(1, &ugid.gid) == -1)
2842                                        bb_simple_perror_msg_and_die("setgroups");
2843                                xsetgid(ugid.gid);
2844                        }
2845                        xsetuid(ugid.uid);
2846                }
2847#endif
2848        }
2849
2850#if 0
2851        /* User can do it himself: 'env - PATH="$PATH" httpd'
2852         * We don't do it because we don't want to screw users
2853         * which want to do
2854         * 'env - VAR1=val1 VAR2=val2 httpd'
2855         * and have VAR1 and VAR2 values visible in their CGIs.
2856         * Besides, it is also smaller. */
2857        {
2858                char *p = getenv("PATH");
2859                /* env strings themself are not freed, no need to xstrdup(p): */
2860                clearenv();
2861                if (p)
2862                        putenv(p - 5);
2863//              if (!(opt & OPT_INETD))
2864//                      setenv_long("SERVER_PORT", ???);
2865        }
2866#endif
2867
2868        parse_conf(DEFAULT_PATH_HTTPD_CONF, FIRST_PARSE);
2869        if (!(opt & OPT_INETD))
2870                signal(SIGHUP, sighup_handler);
2871
2872        xfunc_error_retval = 0;
2873        if (opt & OPT_INETD)
2874                mini_httpd_inetd(); /* never returns */
2875#if BB_MMU
2876        if (!(opt & OPT_FOREGROUND))
2877                bb_daemonize(0); /* don't change current directory */
2878        mini_httpd(server_socket); /* never returns */
2879#else
2880        mini_httpd_nommu(server_socket, argc, argv); /* never returns */
2881#endif
2882        /* return 0; */
2883}
2884