/* * nghttp2 - HTTP/2 C Library * * Copyright (c) 2012 Tatsuhiro Tsujikawa * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "shrpx.h" #include #include #include #ifdef HAVE_SYS_SOCKET_H #include #endif // HAVE_SYS_SOCKET_H #include #ifdef HAVE_NETDB_H #include #endif // HAVE_NETDB_H #include #ifdef HAVE_NETINET_IN_H #include #endif // HAVE_NETINET_IN_H #include #ifdef HAVE_ARPA_INET_H #include #endif // HAVE_ARPA_INET_H #ifdef HAVE_UNISTD_H #include #endif // HAVE_UNISTD_H #include #ifdef HAVE_SYSLOG_H #include #endif // HAVE_SYSLOG_H #ifdef HAVE_LIMITS_H #include #endif // HAVE_LIMITS_H #ifdef HAVE_SYS_TIME_H #include #endif // HAVE_SYS_TIME_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include "shrpx_config.h" #include "shrpx_ssl.h" #include "shrpx_log_config.h" #include "shrpx_worker.h" #include "shrpx_http2_upstream.h" #include "shrpx_http2_session.h" #include "shrpx_worker_process.h" #include "shrpx_process.h" #include "shrpx_signal.h" #include "util.h" #include "app_helper.h" #include "ssl.h" #include "template.h" extern char **environ; using namespace nghttp2; namespace shrpx { // Deprecated: Environment variables to tell new binary the listening // socket's file descriptors. They are not close-on-exec. #define ENV_LISTENER4_FD "NGHTTPX_LISTENER4_FD" #define ENV_LISTENER6_FD "NGHTTPX_LISTENER6_FD" // Deprecated: Environment variable to tell new binary the port number // the current binary is listening to. #define ENV_PORT "NGHTTPX_PORT" // Deprecated: Environment variable to tell new binary the listening // socket's file descriptor if frontend listens UNIX domain socket. #define ENV_UNIX_FD "NGHTTP2_UNIX_FD" // Deprecated: Environment variable to tell new binary the UNIX domain // socket path. #define ENV_UNIX_PATH "NGHTTP2_UNIX_PATH" // Prefix of environment variables to tell new binary the listening // socket's file descriptor. They are not close-on-exec. For TCP // socket, the value must be comma separated 2 parameters: tcp,. // is file descriptor. For UNIX domain socket, the value must be // comma separated 3 parameters: unix,,. is file // descriptor. is a path to UNIX domain socket. constexpr char ENV_ACCEPT_PREFIX[] = "NGHTTPX_ACCEPT_"; #ifndef _KERNEL_FASTOPEN #define _KERNEL_FASTOPEN // conditional define for TCP_FASTOPEN mostly on ubuntu #ifndef TCP_FASTOPEN #define TCP_FASTOPEN 23 #endif // conditional define for SOL_TCP mostly on ubuntu #ifndef SOL_TCP #define SOL_TCP 6 #endif #endif struct SignalServer { SignalServer() : ipc_fd{{-1, -1}}, worker_process_pid(-1) {} ~SignalServer() { if (ipc_fd[0] != -1) { close(ipc_fd[0]); } if (ipc_fd[1] != -1) { shutdown(ipc_fd[1], SHUT_WR); close(ipc_fd[1]); } } std::array ipc_fd; pid_t worker_process_pid; }; namespace { int resolve_hostname(Address *addr, const char *hostname, uint16_t port, int family) { int rv; auto service = util::utos(port); addrinfo hints{}; hints.ai_family = family; hints.ai_socktype = SOCK_STREAM; #ifdef AI_ADDRCONFIG hints.ai_flags |= AI_ADDRCONFIG; #endif // AI_ADDRCONFIG addrinfo *res; rv = getaddrinfo(hostname, service.c_str(), &hints, &res); if (rv != 0) { LOG(FATAL) << "Unable to resolve address for " << hostname << ": " << gai_strerror(rv); return -1; } auto res_d = defer(freeaddrinfo, res); char host[NI_MAXHOST]; rv = getnameinfo(res->ai_addr, res->ai_addrlen, host, sizeof(host), 0, 0, NI_NUMERICHOST); if (rv != 0) { LOG(FATAL) << "Address resolution for " << hostname << " failed: " << gai_strerror(rv); return -1; } if (LOG_ENABLED(INFO)) { LOG(INFO) << "Address resolution for " << hostname << " succeeded: " << host; } memcpy(&addr->su, res->ai_addr, res->ai_addrlen); addr->len = res->ai_addrlen; return 0; } } // namespace namespace { int chown_to_running_user(const char *path) { return chown(path, get_config()->uid, get_config()->gid); } } // namespace namespace { void save_pid() { std::ofstream out(get_config()->pid_file.get(), std::ios::binary); out << get_config()->pid << "\n"; out.close(); if (!out) { LOG(ERROR) << "Could not save PID to file " << get_config()->pid_file.get(); exit(EXIT_FAILURE); } if (get_config()->uid != 0) { if (chown_to_running_user(get_config()->pid_file.get()) == -1) { auto error = errno; LOG(WARN) << "Changing owner of pid file " << get_config()->pid_file.get() << " failed: " << strerror(error); } } } } // namespace namespace { void exec_binary(SignalServer *ssv) { int rv; sigset_t oldset; LOG(NOTICE) << "Executing new binary"; rv = shrpx_signal_block_all(&oldset); if (rv != 0) { auto error = errno; LOG(ERROR) << "Blocking all signals failed: " << strerror(error); return; } auto pid = fork(); if (pid != 0) { if (pid == -1) { auto error = errno; LOG(ERROR) << "fork() failed errno=" << error; } rv = shrpx_signal_set(&oldset); if (rv != 0) { auto error = errno; LOG(FATAL) << "Restoring signal mask failed: " << strerror(error); exit(EXIT_FAILURE); } return; } // child process shrpx_signal_unset_master_proc_ign_handler(); rv = shrpx_signal_unblock_all(); if (setsid() == -1) { auto error = errno; LOG(ERROR) << "setsid() failed: " << strerror(error); } if (rv != 0) { auto error = errno; LOG(ERROR) << "Unblocking all signals failed: " << strerror(error); _Exit(EXIT_FAILURE); } auto exec_path = util::get_exec_path(get_config()->argc, get_config()->argv, get_config()->cwd); if (!exec_path) { LOG(ERROR) << "Could not resolve the executable path"; _Exit(EXIT_FAILURE); } auto argv = make_unique(get_config()->argc + 1); argv[0] = exec_path; for (int i = 1; i < get_config()->argc; ++i) { argv[i] = get_config()->argv[i]; } argv[get_config()->argc] = nullptr; size_t envlen = 0; for (char **p = environ; *p; ++p, ++envlen) ; auto &listenerconf = get_config()->conn.listener; auto envp = make_unique(envlen + listenerconf.addrs.size() + 1); size_t envidx = 0; std::vector fd_envs; for (size_t i = 0; i < listenerconf.addrs.size(); ++i) { auto &addr = listenerconf.addrs[i]; std::string s = ENV_ACCEPT_PREFIX; s += util::utos(i + 1); s += '='; if (addr.host_unix) { s += "unix,"; s += util::utos(addr.fd); s += ','; s += addr.host; } else { s += "tcp,"; s += util::utos(addr.fd); } fd_envs.emplace_back(s); envp[envidx++] = const_cast(fd_envs.back().c_str()); } for (size_t i = 0; i < envlen; ++i) { if (util::starts_with(environ[i], ENV_ACCEPT_PREFIX) || util::starts_with(environ[i], ENV_LISTENER4_FD) || util::starts_with(environ[i], ENV_LISTENER6_FD) || util::starts_with(environ[i], ENV_PORT) || util::starts_with(environ[i], ENV_UNIX_FD) || util::starts_with(environ[i], ENV_UNIX_PATH)) { continue; } envp[envidx++] = environ[i]; } envp[envidx++] = nullptr; if (LOG_ENABLED(INFO)) { LOG(INFO) << "cmdline"; for (int i = 0; argv[i]; ++i) { LOG(INFO) << i << ": " << argv[i]; } LOG(INFO) << "environ"; for (int i = 0; envp[i]; ++i) { LOG(INFO) << i << ": " << envp[i]; } } // restores original stderr util::restore_original_fds(); if (execve(argv[0], argv.get(), envp.get()) == -1) { auto error = errno; LOG(ERROR) << "execve failed: errno=" << error; _Exit(EXIT_FAILURE); } } } // namespace namespace { void ipc_send(SignalServer *ssv, uint8_t ipc_event) { ssize_t nwrite; while ((nwrite = write(ssv->ipc_fd[1], &ipc_event, 1)) == -1 && errno == EINTR) ; if (nwrite < 0) { auto error = errno; LOG(ERROR) << "Could not send IPC event to worker process: " << strerror(error); return; } if (nwrite == 0) { LOG(ERROR) << "Could not send IPC event due to pipe overflow"; return; } } } // namespace namespace { void reopen_log(SignalServer *ssv) { LOG(NOTICE) << "Reopening log files: master process"; (void)reopen_log_files(); redirect_stderr_to_errorlog(); ipc_send(ssv, SHRPX_IPC_REOPEN_LOG); } } // namespace namespace { void signal_cb(struct ev_loop *loop, ev_signal *w, int revents) { auto ssv = static_cast(w->data); if (ssv->worker_process_pid == -1) { ev_break(loop); return; } switch (w->signum) { case REOPEN_LOG_SIGNAL: reopen_log(ssv); return; case EXEC_BINARY_SIGNAL: exec_binary(ssv); return; case GRACEFUL_SHUTDOWN_SIGNAL: ipc_send(ssv, SHRPX_IPC_GRACEFUL_SHUTDOWN); return; default: kill(ssv->worker_process_pid, w->signum); ev_break(loop); return; } } } // namespace namespace { void worker_process_child_cb(struct ev_loop *loop, ev_child *w, int revents) { log_chld(w->rpid, w->rstatus, "Worker process"); ev_child_stop(loop, w); ev_break(loop); } } // namespace struct InheritedAddr { // IP address if TCP socket. Otherwise, UNIX domain socket path. ImmutableString host; uint16_t port; // true if UNIX domain socket path bool host_unix; int fd; bool used; }; namespace { int create_unix_domain_server_socket(UpstreamAddr &faddr, std::vector &iaddrs) { auto found = std::find_if( std::begin(iaddrs), std::end(iaddrs), [&faddr](const InheritedAddr &ia) { return !ia.used && ia.host_unix && ia.host == faddr.host; }); if (found != std::end(iaddrs)) { LOG(NOTICE) << "Listening on UNIX domain socket " << faddr.host; (*found).used = true; faddr.fd = (*found).fd; faddr.hostport = "localhost"; return 0; } #ifdef SOCK_NONBLOCK auto fd = socket(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK, 0); if (fd == -1) { auto error = errno; LOG(WARN) << "socket() syscall failed: " << strerror(error); return -1; } #else // !SOCK_NONBLOCK auto fd = socket(AF_UNIX, SOCK_STREAM, 0); if (fd == -1) { auto error = errno; LOG(WARN) << "socket() syscall failed: " << strerror(error); return -1; } util::make_socket_nonblocking(fd); #endif // !SOCK_NONBLOCK int val = 1; if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &val, static_cast(sizeof(val))) == -1) { auto error = errno; LOG(WARN) << "Failed to set SO_REUSEADDR option to listener socket: " << strerror(error); close(fd); return -1; } sockaddr_union addr; addr.un.sun_family = AF_UNIX; if (faddr.host.size() + 1 > sizeof(addr.un.sun_path)) { LOG(FATAL) << "UNIX domain socket path " << faddr.host << " is too long > " << sizeof(addr.un.sun_path); close(fd); return -1; } // copy path including terminal NULL std::copy_n(faddr.host.c_str(), faddr.host.size() + 1, addr.un.sun_path); // unlink (remove) already existing UNIX domain socket path unlink(faddr.host.c_str()); if (bind(fd, &addr.sa, sizeof(addr.un)) != 0) { auto error = errno; LOG(FATAL) << "Failed to bind UNIX domain socket: " << strerror(error); close(fd); return -1; } auto &listenerconf = get_config()->conn.listener; if (listen(fd, listenerconf.backlog) != 0) { auto error = errno; LOG(FATAL) << "Failed to listen to UNIX domain socket: " << strerror(error); close(fd); return -1; } LOG(NOTICE) << "Listening on UNIX domain socket " << faddr.host; faddr.fd = fd; faddr.hostport = "localhost"; return 0; } } // namespace namespace { int create_tcp_server_socket(UpstreamAddr &faddr, std::vector &iaddrs) { int fd = -1; int rv; auto &listenerconf = get_config()->conn.listener; auto service = util::utos(faddr.port); addrinfo hints{}; hints.ai_family = faddr.family; hints.ai_socktype = SOCK_STREAM; hints.ai_flags = AI_PASSIVE; #ifdef AI_ADDRCONFIG hints.ai_flags |= AI_ADDRCONFIG; #endif // AI_ADDRCONFIG auto node = faddr.host == "*" ? nullptr : faddr.host.c_str(); addrinfo *res, *rp; rv = getaddrinfo(node, service.c_str(), &hints, &res); if (rv != 0) { if (LOG_ENABLED(INFO)) { LOG(INFO) << "Unable to get IPv" << (faddr.family == AF_INET ? "4" : "6") << " address for " << faddr.host << ", port " << faddr.port << ": " << gai_strerror(rv); } return -1; } auto res_d = defer(freeaddrinfo, res); std::array host; for (rp = res; rp; rp = rp->ai_next) { rv = getnameinfo(rp->ai_addr, rp->ai_addrlen, host.data(), host.size(), nullptr, 0, NI_NUMERICHOST); if (rv != 0) { LOG(WARN) << "getnameinfo() failed: " << gai_strerror(rv); continue; } auto found = std::find_if(std::begin(iaddrs), std::end(iaddrs), [&host, &faddr](const InheritedAddr &ia) { return !ia.used && !ia.host_unix && ia.host == host.data() && ia.port == faddr.port; }); if (found != std::end(iaddrs)) { (*found).used = true; fd = (*found).fd; break; } #ifdef SOCK_NONBLOCK fd = socket(rp->ai_family, rp->ai_socktype | SOCK_NONBLOCK, rp->ai_protocol); if (fd == -1) { auto error = errno; LOG(WARN) << "socket() syscall failed: " << strerror(error); continue; } #else // !SOCK_NONBLOCK fd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol); if (fd == -1) { auto error = errno; LOG(WARN) << "socket() syscall failed: " << strerror(error); continue; } util::make_socket_nonblocking(fd); #endif // !SOCK_NONBLOCK int val = 1; if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &val, static_cast(sizeof(val))) == -1) { auto error = errno; LOG(WARN) << "Failed to set SO_REUSEADDR option to listener socket: " << strerror(error); close(fd); continue; } #ifdef IPV6_V6ONLY if (faddr.family == AF_INET6) { if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &val, static_cast(sizeof(val))) == -1) { auto error = errno; LOG(WARN) << "Failed to set IPV6_V6ONLY option to listener socket: " << strerror(error); close(fd); continue; } } #endif // IPV6_V6ONLY #ifdef TCP_DEFER_ACCEPT val = 3; if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &val, static_cast(sizeof(val))) == -1) { auto error = errno; LOG(WARN) << "Failed to set TCP_DEFER_ACCEPT option to listener socket: " << strerror(error); } #endif // TCP_DEFER_ACCEPT // When we are executing new binary, and the old binary did not // bind privileged port (< 1024) for some reason, binding to those // ports will fail with permission denied error. if (bind(fd, rp->ai_addr, rp->ai_addrlen) == -1) { auto error = errno; LOG(WARN) << "bind() syscall failed: " << strerror(error); close(fd); continue; } if (listenerconf.fastopen > 0) { val = listenerconf.fastopen; if (setsockopt(fd, SOL_TCP, TCP_FASTOPEN, &val, static_cast(sizeof(val))) == -1) { auto error = errno; LOG(WARN) << "Failed to set TCP_FASTOPEN option to listener socket: " << strerror(error); } } if (listen(fd, listenerconf.backlog) == -1) { auto error = errno; LOG(WARN) << "listen() syscall failed: " << strerror(error); close(fd); continue; } break; } if (!rp) { LOG(WARN) << "Listening " << (faddr.family == AF_INET ? "IPv4" : "IPv6") << " socket failed"; return -1; } faddr.fd = fd; faddr.hostport = util::make_hostport(host.data(), faddr.port); LOG(NOTICE) << "Listening on " << faddr.hostport; return 0; } } // namespace namespace { int create_acceptor_socket() { int rv; auto &listenerconf = mod_config()->conn.listener; std::vector iaddrs; { // Upgrade from 1.7.0 or earlier auto portenv = getenv(ENV_PORT); if (portenv) { size_t i = 1; for (auto env_name : {ENV_LISTENER4_FD, ENV_LISTENER6_FD}) { auto fdenv = getenv(env_name); if (fdenv) { std::string name = ENV_ACCEPT_PREFIX; name += util::utos(i); std::string value = "tcp,"; value += fdenv; setenv(name.c_str(), value.c_str(), 0); ++i; } } } else { auto pathenv = getenv(ENV_UNIX_PATH); auto fdenv = getenv(ENV_UNIX_FD); if (pathenv && fdenv) { std::string name = ENV_ACCEPT_PREFIX; name += '1'; std::string value = "unix,"; value += fdenv; value += ','; value += pathenv; setenv(name.c_str(), value.c_str(), 0); } } } for (size_t i = 1;; ++i) { std::string name = ENV_ACCEPT_PREFIX; name += util::utos(i); auto env = getenv(name.c_str()); if (!env) { break; } if (LOG_ENABLED(INFO)) { LOG(INFO) << "Read env " << name << "=" << env; } auto end_type = strchr(env, ','); if (!end_type) { continue; } auto type = StringRef(env, end_type); auto value = end_type + 1; if (type == "unix") { auto endfd = strchr(value, ','); if (!endfd) { continue; } auto fd = util::parse_uint(reinterpret_cast(value), endfd - value); if (fd == -1) { LOG(WARN) << "Could not parse file descriptor from " << std::string(value, endfd - value); continue; } auto path = endfd + 1; if (strlen(path) == 0) { LOG(WARN) << "Empty UNIX domain socket path (fd=" << fd << ")"; close(fd); continue; } if (LOG_ENABLED(INFO)) { LOG(INFO) << "Inherit UNIX domain socket fd=" << fd << ", path=" << path; } InheritedAddr addr{}; addr.host = path; addr.host_unix = true; addr.fd = static_cast(fd); iaddrs.push_back(std::move(addr)); } if (type == "tcp") { auto fd = util::parse_uint(value); if (fd == -1) { LOG(WARN) << "Could not parse file descriptor from " << value; continue; } sockaddr_union su; socklen_t salen = sizeof(su); if (getsockname(fd, &su.sa, &salen) != 0) { auto error = errno; LOG(WARN) << "getsockname() syscall failed (fd=" << fd << "): " << strerror(error); close(fd); continue; } uint16_t port; switch (su.storage.ss_family) { case AF_INET: port = ntohs(su.in.sin_port); break; case AF_INET6: port = ntohs(su.in6.sin6_port); break; default: close(fd); continue; } std::array host; rv = getnameinfo(&su.sa, salen, host.data(), host.size(), nullptr, 0, NI_NUMERICHOST); if (rv != 0) { LOG(WARN) << "getnameinfo() failed (fd=" << fd << "): " << gai_strerror(rv); close(fd); continue; } if (LOG_ENABLED(INFO)) { LOG(INFO) << "Inherit TCP socket fd=" << fd << ", address=" << host.data() << ", port=" << port; } InheritedAddr addr{}; addr.host = host.data(); addr.port = static_cast(port); addr.fd = static_cast(fd); iaddrs.push_back(std::move(addr)); continue; } } for (auto &addr : listenerconf.addrs) { if (addr.host_unix) { if (create_unix_domain_server_socket(addr, iaddrs) != 0) { return -1; } if (get_config()->uid != 0) { // fd is not associated to inode, so we cannot use fchown(2) // here. https://lkml.org/lkml/2004/11/1/84 if (chown_to_running_user(addr.host.c_str()) == -1) { auto error = errno; LOG(WARN) << "Changing owner of UNIX domain socket " << addr.host << " failed: " << strerror(error); } } continue; } if (create_tcp_server_socket(addr, iaddrs) != 0) { return -1; } } for (auto &ia : iaddrs) { if (ia.used) { continue; } close(ia.fd); } return 0; } } // namespace namespace { int call_daemon() { #ifdef __sgi return _daemonize(0, 0, 0, 0); #else // !__sgi return daemon(0, 0); #endif // !__sgi } } // namespace namespace { pid_t fork_worker_process(SignalServer *ssv) { int rv; sigset_t oldset; rv = shrpx_signal_block_all(&oldset); if (rv != 0) { auto error = errno; LOG(ERROR) << "Blocking all signals failed: " << strerror(error); return -1; } auto pid = fork(); if (pid == 0) { ev_loop_fork(EV_DEFAULT); shrpx_signal_set_worker_proc_ign_handler(); rv = shrpx_signal_unblock_all(); if (rv != 0) { auto error = errno; LOG(FATAL) << "Unblocking all signals failed: " << strerror(error); _Exit(EXIT_FAILURE); } close(ssv->ipc_fd[1]); WorkerProcessConfig wpconf{ssv->ipc_fd[0]}; rv = worker_process_event_loop(&wpconf); if (rv != 0) { LOG(FATAL) << "Worker process returned error"; _Exit(EXIT_FAILURE); } LOG(NOTICE) << "Worker process shutting down momentarily"; // call exit(...) instead of _Exit to get leak sanitizer report _Exit(EXIT_SUCCESS); } // parent process if (pid == -1) { auto error = errno; LOG(ERROR) << "Could not spawn worker process: " << strerror(error); } rv = shrpx_signal_set(&oldset); if (rv != 0) { auto error = errno; LOG(FATAL) << "Restoring signal mask failed: " << strerror(error); exit(EXIT_FAILURE); } if (pid == -1) { return -1; } close(ssv->ipc_fd[0]); LOG(NOTICE) << "Worker process [" << pid << "] spawned"; return pid; } } // namespace namespace { int event_loop() { int rv; shrpx_signal_set_master_proc_ign_handler(); if (get_config()->daemon) { if (call_daemon() == -1) { auto error = errno; LOG(FATAL) << "Failed to daemonize: " << strerror(error); return -1; } // We get new PID after successful daemon(). mod_config()->pid = getpid(); // daemon redirects stderr file descriptor to /dev/null, so we // need this. redirect_stderr_to_errorlog(); } if (get_config()->pid_file) { save_pid(); } SignalServer ssv; rv = pipe(ssv.ipc_fd.data()); if (rv == -1) { auto error = errno; LOG(WARN) << "Failed to create pipe to communicate worker process: " << strerror(error); return -1; } for (int i = 0; i < 2; ++i) { auto fd = ssv.ipc_fd[i]; util::make_socket_nonblocking(fd); util::make_socket_closeonexec(fd); } if (create_acceptor_socket() != 0) { return -1; } auto loop = EV_DEFAULT; auto pid = fork_worker_process(&ssv); if (pid == -1) { return -1; } ssv.worker_process_pid = pid; constexpr auto signals = std::array{ {REOPEN_LOG_SIGNAL, EXEC_BINARY_SIGNAL, GRACEFUL_SHUTDOWN_SIGNAL}}; auto sigevs = std::array(); for (size_t i = 0; i < signals.size(); ++i) { auto sigev = &sigevs[i]; ev_signal_init(sigev, signal_cb, signals[i]); sigev->data = &ssv; ev_signal_start(loop, sigev); } ev_child worker_process_childev; ev_child_init(&worker_process_childev, worker_process_child_cb, pid, 0); worker_process_childev.data = nullptr; ev_child_start(loop, &worker_process_childev); ev_run(loop, 0); return 0; } } // namespace namespace { // Returns true if regular file or symbolic link |path| exists. bool conf_exists(const char *path) { struct stat buf; int rv = stat(path, &buf); return rv == 0 && (buf.st_mode & (S_IFREG | S_IFLNK)); } } // namespace namespace { constexpr char DEFAULT_NPN_LIST[] = "h2,h2-16,h2-14," #ifdef HAVE_SPDYLAY "spdy/3.1," #endif // HAVE_SPDYLAY "http/1.1"; } // namespace namespace { constexpr char DEFAULT_TLS_PROTO_LIST[] = "TLSv1.2,TLSv1.1"; } // namespace namespace { constexpr char DEFAULT_ACCESSLOG_FORMAT[] = R"($remote_addr - - [$time_local] )" R"("$request" $status $body_bytes_sent )" R"("$http_referer" "$http_user_agent")"; } // namespace namespace { constexpr char DEFAULT_DOWNSTREAM_HOST[] = "127.0.0.1"; int16_t DEFAULT_DOWNSTREAM_PORT = 80; } // namespace; namespace { void fill_default_config() { *mod_config() = {}; mod_config()->num_worker = 1; mod_config()->conf_path = strcopy("/etc/nghttpx/nghttpx.conf"); mod_config()->pid = getpid(); auto &tlsconf = mod_config()->tls; { auto &ticketconf = tlsconf.ticket; { auto &memcachedconf = ticketconf.memcached; memcachedconf.max_retry = 3; memcachedconf.max_fail = 2; memcachedconf.interval = 10_min; } ticketconf.cipher = EVP_aes_128_cbc(); } { auto &ocspconf = tlsconf.ocsp; // ocsp update interval = 14400 secs = 4 hours, borrowed from h2o ocspconf.update_interval = 4_h; ocspconf.fetch_ocsp_response_file = strcopy(PKGDATADIR "/fetch-ocsp-response"); } { auto &dyn_recconf = tlsconf.dyn_rec; dyn_recconf.warmup_threshold = 1_m; dyn_recconf.idle_timeout = 1_s; } tlsconf.session_timeout = std::chrono::hours(12); tlsconf.downstream_session_cache_per_worker = 10000; auto &httpconf = mod_config()->http; httpconf.server_name = "nghttpx nghttp2/" NGHTTP2_VERSION; httpconf.no_host_rewrite = true; httpconf.request_header_field_buffer = 64_k; httpconf.max_request_header_fields = 100; httpconf.response_header_field_buffer = 64_k; httpconf.max_response_header_fields = 500; auto &http2conf = mod_config()->http2; { auto &upstreamconf = http2conf.upstream; // window bits for HTTP/2 and SPDY upstream connection per // stream. 2**16-1 = 64KiB-1, which is HTTP/2 default. Please note // that SPDY/3 default is 64KiB. upstreamconf.window_bits = 16; // HTTP/2 SPDY/3.1 has connection-level flow control. The default // window size for HTTP/2 is 64KiB - 1. SPDY/3's default is 64KiB upstreamconf.connection_window_bits = 16; nghttp2_option_new(&upstreamconf.option); nghttp2_option_set_no_auto_window_update(upstreamconf.option, 1); nghttp2_option_set_no_recv_client_magic(upstreamconf.option, 1); } { auto &downstreamconf = http2conf.downstream; downstreamconf.window_bits = 16; downstreamconf.connection_window_bits = 16; nghttp2_option_new(&downstreamconf.option); nghttp2_option_set_no_auto_window_update(downstreamconf.option, 1); nghttp2_option_set_peer_max_concurrent_streams(downstreamconf.option, 100); } http2conf.max_concurrent_streams = 100; auto &loggingconf = mod_config()->logging; { auto &accessconf = loggingconf.access; accessconf.format = parse_log_format(DEFAULT_ACCESSLOG_FORMAT); auto &errorconf = loggingconf.error; errorconf.file = strcopy("/dev/stderr"); } loggingconf.syslog_facility = LOG_DAEMON; auto &connconf = mod_config()->conn; { auto &listenerconf = connconf.listener; { // Default accept() backlog listenerconf.backlog = 512; listenerconf.timeout.sleep = 30_s; } } { auto &upstreamconf = connconf.upstream; { auto &timeoutconf = upstreamconf.timeout; // Read timeout for HTTP2 upstream connection timeoutconf.http2_read = 3_min; // Read timeout for non-HTTP2 upstream connection timeoutconf.read = 1_min; // Write timeout for HTTP2/non-HTTP2 upstream connection timeoutconf.write = 30_s; } } { auto &downstreamconf = connconf.downstream; { auto &timeoutconf = downstreamconf.timeout; // Read/Write timeouts for downstream connection timeoutconf.read = 1_min; timeoutconf.write = 30_s; // Timeout for pooled (idle) connections timeoutconf.idle_read = 2_s; } downstreamconf.connections_per_host = 8; downstreamconf.request_buffer_size = 16_k; downstreamconf.response_buffer_size = 128_k; } } } // namespace namespace { void print_version(std::ostream &out) { out << get_config()->http.server_name.c_str() << std::endl; } } // namespace namespace { void print_usage(std::ostream &out) { out << R"(Usage: nghttpx [OPTIONS]... [ ] A reverse proxy for HTTP/2, HTTP/1 and SPDY.)" << std::endl; } } // namespace namespace { void print_help(std::ostream &out) { print_usage(out); out << R"( Set path to server's private key. Required unless -p, --client or --frontend-no-tls are given. Set path to server's certificate. Required unless -p, --client or --frontend-no-tls are given. To make OCSP stapling work, this must be absolute path. Options: The options are categorized into several groups. Connections: -b, --backend=(,|unix:)[;[:...]] Set backend host and port. The multiple backend addresses are accepted by repeating this option. UNIX domain socket can be specified by prefixing path name with "unix:" (e.g., unix:/var/run/backend.sock). Optionally, if s are given, the backend address is only used if request matches the pattern. If -s or -p is used, s are ignored. The pattern matching is closely designed to ServeMux in net/http package of Go programming language. consists of path, host + path or just host. The path must start with "/". If it ends with "/", it matches all request path in its subtree. To deal with the request to the directory without trailing slash, the path which ends with "/" also matches the request path which only lacks trailing '/' (e.g., path "/foo/" matches request path "/foo"). If it does not end with "/", it performs exact match against the request path. If host is given, it performs exact match against the request host. If host alone is given, "/" is appended to it, so that it matches all request paths under the host (e.g., specifying "nghttp2.org" equals to "nghttp2.org/"). Patterns with host take precedence over patterns with just path. Then, longer patterns take precedence over shorter ones, breaking a tie by the order of the appearance in the configuration. If is omitted, "/" is used as pattern, which matches all request paths (catch-all pattern). The catch-all backend must be given. When doing a match, nghttpx made some normalization to pattern, request host and path. For host part, they are converted to lower case. For path part, percent-encoded unreserved characters defined in RFC 3986 are decoded, and any dot-segments (".." and ".") are resolved and removed. For example, -b'127.0.0.1,8080;nghttp2.org/httpbin/' matches the request host "nghttp2.org" and the request path "/httpbin/get", but does not match the request host "nghttp2.org" and the request path "/index.html". The multiple s can be specified, delimiting them by ":". Specifying -b'127.0.0.1,8080;nghttp2.org:www.nghttp2.org' has the same effect to specify -b'127.0.0.1,8080;nghttp2.org' and -b'127.0.0.1,8080;www.nghttp2.org'. The backend addresses sharing same are grouped together forming load balancing group. Since ";" and ":" are used as delimiter, must not contain these characters. Since ";" has special meaning in shell, the option value must be quoted. Default: )" << DEFAULT_DOWNSTREAM_HOST << "," << DEFAULT_DOWNSTREAM_PORT << R"( -f, --frontend=(,|unix:) Set frontend host and port. If is '*', it assumes all addresses including both IPv4 and IPv6. UNIX domain socket can be specified by prefixing path name with "unix:" (e.g., unix:/var/run/nghttpx.sock). This option can be used multiple times to listen to multiple addresses. Default: *,3000 --backlog= Set listen backlog size. Default: )" << get_config()->conn.listener.backlog << R"( --backend-ipv4 Resolve backend hostname to IPv4 address only. --backend-ipv6 Resolve backend hostname to IPv6 address only. --backend-http-proxy-uri= Specify proxy URI in the form http://[:@]:. If a proxy requires authentication, specify and . Note that they must be properly percent-encoded. This proxy is used when the backend connection is HTTP/2. First, make a CONNECT request to the proxy and it connects to the backend on behalf of nghttpx. This forms tunnel. After that, nghttpx performs SSL/TLS handshake with the downstream through the tunnel. The timeouts when connecting and making CONNECT request can be specified by --backend-read-timeout and --backend-write-timeout options. --accept-proxy-protocol Accept PROXY protocol version 1 on frontend connection. --backend-no-tls Disable SSL/TLS on backend connections. For HTTP/2 backend connections, TLS is enabled by default. For HTTP/1 backend connections, TLS is disabled by default, and can be enabled by --backend-http1-tls option. If both --backend-no-tls and --backend-http1-tls options are used, --backend-no-tls has the precedence. --backend-http1-tls Enable SSL/TLS on backend HTTP/1 connections. See also --backend-no-tls option. Performance: -n, --workers= Set the number of worker threads. Default: )" << get_config()->num_worker << R"( --read-rate= Set maximum average read rate on frontend connection. Setting 0 to this option means read rate is unlimited. Default: )" << get_config()->conn.upstream.ratelimit.read.rate << R"( --read-burst= Set maximum read burst size on frontend connection. Setting 0 to this option means read burst size is unlimited. Default: )" << get_config()->conn.upstream.ratelimit.read.burst << R"( --write-rate= Set maximum average write rate on frontend connection. Setting 0 to this option means write rate is unlimited. Default: )" << get_config()->conn.upstream.ratelimit.write.rate << R"( --write-burst= Set maximum write burst size on frontend connection. Setting 0 to this option means write burst size is unlimited. Default: )" << get_config()->conn.upstream.ratelimit.write.burst << R"( --worker-read-rate= Set maximum average read rate on frontend connection per worker. Setting 0 to this option means read rate is unlimited. Not implemented yet. Default: 0 --worker-read-burst= Set maximum read burst size on frontend connection per worker. Setting 0 to this option means read burst size is unlimited. Not implemented yet. Default: 0 --worker-write-rate= Set maximum average write rate on frontend connection per worker. Setting 0 to this option means write rate is unlimited. Not implemented yet. Default: 0 --worker-write-burst= Set maximum write burst size on frontend connection per worker. Setting 0 to this option means write burst size is unlimited. Not implemented yet. Default: 0 --worker-frontend-connections= Set maximum number of simultaneous connections frontend accepts. Setting 0 means unlimited. Default: )" << get_config()->conn.upstream.worker_connections << R"( --backend-http2-connections-per-worker= Set maximum number of backend HTTP/2 physical connections per worker. If pattern is used in -b option, this limit is applied to each pattern group (in other words, each pattern group can have maximum HTTP/2 connections). The default value is 0, which means that the value is adjusted to the number of backend addresses. If pattern is used, this adjustment is done for each pattern group. --backend-http1-connections-per-host= Set maximum number of backend concurrent HTTP/1 connections per origin host. This option is meaningful when -s option is used. The origin host is determined by authority portion of request URI (or :authority header field for HTTP/2). To limit the number of connections per frontend for default mode, use --backend-http1-connections-per-frontend. Default: )" << get_config()->conn.downstream.connections_per_host << R"( --backend-http1-connections-per-frontend= Set maximum number of backend concurrent HTTP/1 connections per frontend. This option is only used for default mode. 0 means unlimited. To limit the number of connections per host for HTTP/2 or SPDY proxy mode (-s option), use --backend-http1-connections-per-host. Default: )" << get_config()->conn.downstream.connections_per_frontend << R"( --rlimit-nofile= Set maximum number of open files (RLIMIT_NOFILE) to . If 0 is given, nghttpx does not set the limit. Default: )" << get_config()->rlimit_nofile << R"( --backend-request-buffer= Set buffer size used to store backend request. Default: )" << util::utos_unit(get_config()->conn.downstream.request_buffer_size) << R"( --backend-response-buffer= Set buffer size used to store backend response. Default: )" << util::utos_unit(get_config()->conn.downstream.response_buffer_size) << R"( --fastopen= Enables "TCP Fast Open" for the listening socket and limits the maximum length for the queue of connections that have not yet completed the three-way handshake. If value is 0 then fast open is disabled. Default: )" << get_config()->conn.listener.fastopen << R"( Timeout: --frontend-http2-read-timeout= Specify read timeout for HTTP/2 and SPDY frontend connection. Default: )" << util::duration_str(get_config()->conn.upstream.timeout.http2_read) << R"( --frontend-read-timeout= Specify read timeout for HTTP/1.1 frontend connection. Default: )" << util::duration_str(get_config()->conn.upstream.timeout.read) << R"( --frontend-write-timeout= Specify write timeout for all frontend connections. Default: )" << util::duration_str(get_config()->conn.upstream.timeout.write) << R"( --stream-read-timeout= Specify read timeout for HTTP/2 and SPDY streams. 0 means no timeout. Default: )" << util::duration_str(get_config()->http2.timeout.stream_read) << R"( --stream-write-timeout= Specify write timeout for HTTP/2 and SPDY streams. 0 means no timeout. Default: )" << util::duration_str(get_config()->http2.timeout.stream_write) << R"( --backend-read-timeout= Specify read timeout for backend connection. Default: )" << util::duration_str(get_config()->conn.downstream.timeout.read) << R"( --backend-write-timeout= Specify write timeout for backend connection. Default: )" << util::duration_str(get_config()->conn.downstream.timeout.write) << R"( --backend-keep-alive-timeout= Specify keep-alive timeout for backend connection. Default: )" << util::duration_str(get_config()->conn.downstream.timeout.idle_read) << R"( --listener-disable-timeout= After accepting connection failed, connection listener is disabled for a given amount of time. Specifying 0 disables this feature. Default: )" << util::duration_str(get_config()->conn.listener.timeout.sleep) << R"( SSL/TLS: --ciphers= Set allowed cipher list. The format of the string is described in OpenSSL ciphers(1). -k, --insecure Don't verify backend server's certificate if TLS is enabled for backend connections. --cacert= Set path to trusted CA certificate file used in backend TLS connections. The file must be in PEM format. It can contain multiple certificates. If the linked OpenSSL is configured to load system wide certificates, they are loaded at startup regardless of this option. --private-key-passwd-file= Path to file that contains password for the server's private key. If none is given and the private key is password protected it'll be requested interactively. --subcert=: Specify additional certificate and private key file. nghttpx will choose certificates based on the hostname indicated by client using TLS SNI extension. This option can be used multiple times. To make OCSP stapling work, must be absolute path. --backend-tls-sni-field= Explicitly set the content of the TLS SNI extension. This will default to the backend HOST name. --dh-param-file= Path to file that contains DH parameters in PEM format. Without this option, DHE cipher suites are not available. --npn-list= Comma delimited list of ALPN protocol identifier sorted in the order of preference. That means most desirable protocol comes first. This is used in both ALPN and NPN. The parameter must be delimited by a single comma only and any white spaces are treated as a part of protocol string. Default: )" << DEFAULT_NPN_LIST << R"( --verify-client Require and verify client certificate. --verify-client-cacert= Path to file that contains CA certificates to verify client certificate. The file must be in PEM format. It can contain multiple certificates. --client-private-key-file= Path to file that contains client private key used in backend client authentication. --client-cert-file= Path to file that contains client certificate used in backend client authentication. --tls-proto-list= Comma delimited list of SSL/TLS protocol to be enabled. The following protocols are available: TLSv1.2, TLSv1.1 and TLSv1.0. The name matching is done in case-insensitive manner. The parameter must be delimited by a single comma only and any white spaces are treated as a part of protocol string. If the protocol list advertised by client does not overlap this list, you will receive the error message "unknown protocol". Default: )" << DEFAULT_TLS_PROTO_LIST << R"( --tls-ticket-key-file= Path to file that contains random data to construct TLS session ticket parameters. If aes-128-cbc is given in --tls-ticket-key-cipher, the file must contain exactly 48 bytes. If aes-256-cbc is given in --tls-ticket-key-cipher, the file must contain exactly 80 bytes. This options can be used repeatedly to specify multiple ticket parameters. If several files are given, only the first key is used to encrypt TLS session tickets. Other keys are accepted but server will issue new session ticket with first key. This allows session key rotation. Please note that key rotation does not occur automatically. User should rearrange files or change options values and restart nghttpx gracefully. If opening or reading given file fails, all loaded keys are discarded and it is treated as if none of this option is given. If this option is not given or an error occurred while opening or reading a file, key is generated every 1 hour internally and they are valid for 12 hours. This is recommended if ticket key sharing between nghttpx instances is not required. --tls-ticket-key-memcached=, Specify address of memcached server to store session cache. This enables shared TLS ticket key between multiple nghttpx instances. nghttpx does not set TLS ticket key to memcached. The external ticket key generator is required. nghttpx just gets TLS ticket keys from memcached, and use them, possibly replacing current set of keys. It is up to extern TLS ticket key generator to rotate keys frequently. See "TLS SESSION TICKET RESUMPTION" section in manual page to know the data format in memcached entry. --tls-ticket-key-memcached-interval= Set interval to get TLS ticket keys from memcached. Default: )" << util::duration_str(get_config()->tls.ticket.memcached.interval) << R"( --tls-ticket-key-memcached-max-retry= Set maximum number of consecutive retries before abandoning TLS ticket key retrieval. If this number is reached, the attempt is considered as failure, and "failure" count is incremented by 1, which contributed to the value controlled --tls-ticket-key-memcached-max-fail option. Default: )" << get_config()->tls.ticket.memcached.max_retry << R"( --tls-ticket-key-memcached-max-fail= Set maximum number of consecutive failure before disabling TLS ticket until next scheduled key retrieval. Default: )" << get_config()->tls.ticket.memcached.max_fail << R"( --tls-ticket-key-cipher= Specify cipher to encrypt TLS session ticket. Specify either aes-128-cbc or aes-256-cbc. By default, aes-128-cbc is used. --fetch-ocsp-response-file= Path to fetch-ocsp-response script file. It should be absolute path. Default: )" << get_config()->tls.ocsp.fetch_ocsp_response_file.get() << R"( --ocsp-update-interval= Set interval to update OCSP response cache. Default: )" << util::duration_str(get_config()->tls.ocsp.update_interval) << R"( --no-ocsp Disable OCSP stapling. --tls-session-cache-memcached=, Specify address of memcached server to store session cache. This enables shared session cache between multiple nghttpx instances. --tls-dyn-rec-warmup-threshold= Specify the threshold size for TLS dynamic record size behaviour. During a TLS session, after the threshold number of bytes have been written, the TLS record size will be increased to the maximum allowed (16K). The max record size will continue to be used on the active TLS session. After --tls-dyn-rec-idle-timeout has elapsed, the record size is reduced to 1300 bytes. Specify 0 to always use the maximum record size, regardless of idle period. This behaviour applies to all TLS based frontends, and TLS HTTP/2 backends. Default: )" << util::utos_unit(get_config()->tls.dyn_rec.warmup_threshold) << R"( --tls-dyn-rec-idle-timeout= Specify TLS dynamic record size behaviour timeout. See --tls-dyn-rec-warmup-threshold for more information. This behaviour applies to all TLS based frontends, and TLS HTTP/2 backends. Default: )" << util::duration_str(get_config()->tls.dyn_rec.idle_timeout) << R"( --no-http2-cipher-black-list Allow black listed cipher suite on HTTP/2 connection. See https://tools.ietf.org/html/rfc7540#appendix-A for the complete HTTP/2 cipher suites black list. --backend-tls-session-cache-per-worker= Set the maximum number of backend TLS session cache stored per worker. Default: )" << get_config()->tls.downstream_session_cache_per_worker << R"( HTTP/2 and SPDY: -c, --http2-max-concurrent-streams= Set the maximum number of the concurrent streams in one HTTP/2 and SPDY session. Default: )" << get_config()->http2.max_concurrent_streams << R"( --frontend-http2-window-bits= Sets the per-stream initial window size of HTTP/2 SPDY frontend connection. For HTTP/2, the size is 2**-1. For SPDY, the size is 2**. Default: )" << get_config()->http2.upstream.window_bits << R"( --frontend-http2-connection-window-bits= Sets the per-connection window size of HTTP/2 and SPDY frontend connection. For HTTP/2, the size is 2**-1. For SPDY, the size is 2**. Default: )" << get_config()->http2.upstream.connection_window_bits << R"( --frontend-no-tls Disable SSL/TLS on frontend connections. --backend-http2-window-bits= Sets the initial window size of HTTP/2 backend connection to 2**-1. Default: )" << get_config()->http2.downstream.window_bits << R"( --backend-http2-connection-window-bits= Sets the per-connection window size of HTTP/2 backend connection to 2**-1. Default: )" << get_config()->http2.downstream.connection_window_bits << R"( --http2-no-cookie-crumbling Don't crumble cookie header field. --padding= Add at most bytes to a HTTP/2 frame payload as padding. Specify 0 to disable padding. This option is meant for debugging purpose and not intended to enhance protocol security. --no-server-push Disable HTTP/2 server push. Server push is supported by default mode and HTTP/2 frontend via Link header field. It is also supported if both frontend and backend are HTTP/2 (which implies --http2-bridge or --client mode). In this case, server push from backend session is relayed to frontend, and server push via Link header field is also supported. HTTP SPDY frontend does not support server push. Mode: (default mode) Accept HTTP/2, SPDY and HTTP/1.1 over SSL/TLS. If --frontend-no-tls is used, accept HTTP/2 and HTTP/1.1. The incoming HTTP/1.1 connection can be upgraded to HTTP/2 through HTTP Upgrade. The protocol to the backend is HTTP/1.1. -s, --http2-proxy Like default mode, but enable secure proxy mode. --http2-bridge Like default mode, but communicate with the backend in HTTP/2 over SSL/TLS. Thus the incoming all connections are converted to HTTP/2 connection and relayed to the backend. See --backend-http-proxy-uri option if you are behind the proxy and want to connect to the outside HTTP/2 proxy. --client Accept HTTP/2 and HTTP/1.1 without SSL/TLS. The incoming HTTP/1.1 connection can be upgraded to HTTP/2 connection through HTTP Upgrade. The protocol to the backend is HTTP/2. To use nghttpx as a forward proxy, use -p option instead. -p, --client-proxy Like --client option, but it also requires the request path from frontend must be an absolute URI, suitable for use as a forward proxy. Logging: -L, --log-level= Set the severity level of log output. must be one of INFO, NOTICE, WARN, ERROR and FATAL. Default: NOTICE --accesslog-file= Set path to write access log. To reopen file, send USR1 signal to nghttpx. --accesslog-syslog Send access log to syslog. If this option is used, --accesslog-file option is ignored. --accesslog-format= Specify format string for access log. The default format is combined format. The following variables are available: * $remote_addr: client IP address. * $time_local: local time in Common Log format. * $time_iso8601: local time in ISO 8601 format. * $request: HTTP request line. * $status: HTTP response status code. * $body_bytes_sent: the number of bytes sent to client as response body. * $http_: value of HTTP request header where '_' in is replaced with '-'. * $remote_port: client port. * $server_port: server port. * $request_time: request processing time in seconds with milliseconds resolution. * $pid: PID of the running process. * $alpn: ALPN identifier of the protocol which generates the response. For HTTP/1, ALPN is always http/1.1, regardless of minor version. * $ssl_cipher: cipher used for SSL/TLS connection. * $ssl_protocol: protocol for SSL/TLS connection. * $ssl_session_id: session ID for SSL/TLS connection. * $ssl_session_reused: "r" if SSL/TLS session was reused. Otherwise, "." The variable can be enclosed by "{" and "}" for disambiguation (e.g., ${remote_addr}). Default: )" << DEFAULT_ACCESSLOG_FORMAT << R"( --errorlog-file= Set path to write error log. To reopen file, send USR1 signal to nghttpx. stderr will be redirected to the error log file unless --errorlog-syslog is used. Default: )" << get_config()->logging.error.file.get() << R"( --errorlog-syslog Send error log to syslog. If this option is used, --errorlog-file option is ignored. --syslog-facility= Set syslog facility to . Default: )" << str_syslog_facility(get_config()->logging.syslog_facility) << R"( HTTP: --add-x-forwarded-for Append X-Forwarded-For header field to the downstream request. --strip-incoming-x-forwarded-for Strip X-Forwarded-For header field from inbound client requests. --add-forwarded= Append RFC 7239 Forwarded header field with parameters specified in comma delimited list . The supported parameters are "by", "for", "host", and "proto". By default, the value of "by" and "for" parameters are obfuscated string. See --forwarded-by and --forwarded-for options respectively. Note that nghttpx does not translate non-standard X-Forwarded-* header fields into Forwarded header field, and vice versa. --strip-incoming-forwarded Strip Forwarded header field from inbound client requests. --forwarded-by=(obfuscated|ip|) Specify the parameter value sent out with "by" parameter of Forwarded header field. If "obfuscated" is given, the string is randomly generated at startup. If "ip" is given, the interface address of the connection, including port number, is sent with "by" parameter. In case of UNIX domain socket, "localhost" is used instead of address and port. User can also specify the static obfuscated string. The limitation is that it must start with "_", and only consists of character set [A-Za-z0-9._-], as described in RFC 7239. Default: obfuscated --forwarded-for=(obfuscated|ip) Specify the parameter value sent out with "for" parameter of Forwarded header field. If "obfuscated" is given, the string is randomly generated for each client connection. If "ip" is given, the remote client address of the connection, without port number, is sent with "for" parameter. In case of UNIX domain socket, "localhost" is used instead of address. Default: obfuscated --no-via Don't append to Via header field. If Via header field is received, it is left unaltered. --no-location-rewrite Don't rewrite location header field on --http2-bridge, --client and default mode. For --http2-proxy and --client-proxy mode, location header field will not be altered regardless of this option. --host-rewrite Rewrite host and :authority header fields on --http2-bridge, --client and default mode. For --http2-proxy and --client-proxy mode, these headers will not be altered regardless of this option. --altsvc= Specify protocol ID, port, host and origin of alternative service. and are optional. They are advertised in alt-svc header field only in HTTP/1.1 frontend. This option can be used multiple times to specify multiple alternative services. Example: --altsvc=h2,443 --add-request-header=
Specify additional header field to add to request header set. This option just appends header field and won't replace anything already set. This option can be used several times to specify multiple header fields. Example: --add-request-header="foo: bar" --add-response-header=
Specify additional header field to add to response header set. This option just appends header field and won't replace anything already set. This option can be used several times to specify multiple header fields. Example: --add-response-header="foo: bar" --request-header-field-buffer= Set maximum buffer size for incoming HTTP request header field list. This is the sum of header name and value in bytes. If trailer fields exist, they are counted towards this number. Default: )" << util::utos_unit(get_config()->http.request_header_field_buffer) << R"( --max-request-header-fields= Set maximum number of incoming HTTP request header fields. If trailer fields exist, they are counted towards this number. Default: )" << get_config()->http.max_request_header_fields << R"( --response-header-field-buffer= Set maximum buffer size for incoming HTTP response header field list. This is the sum of header name and value in bytes. If trailer fields exist, they are counted towards this number. Default: )" << util::utos_unit(get_config()->http.response_header_field_buffer) << R"( --max-response-header-fields= Set maximum number of incoming HTTP response header fields. If trailer fields exist, they are counted towards this number. Default: )" << get_config()->http.max_response_header_fields << R"( Debug: --frontend-http2-dump-request-header= Dumps request headers received by HTTP/2 frontend to the file denoted in . The output is done in HTTP/1 header field format and each header block is followed by an empty line. This option is not thread safe and MUST NOT be used with option -n, where >= 2. --frontend-http2-dump-response-header= Dumps response headers sent from HTTP/2 frontend to the file denoted in . The output is done in HTTP/1 header field format and each header block is followed by an empty line. This option is not thread safe and MUST NOT be used with option -n, where >= 2. -o, --frontend-frame-debug Print HTTP/2 frames in frontend to stderr. This option is not thread safe and MUST NOT be used with option -n=N, where N >= 2. Process: -D, --daemon Run in a background. If -D is used, the current working directory is changed to '/'. --pid-file= Set path to save PID of this program. --user= Run this program as . This option is intended to be used to drop root privileges. Scripting: --mruby-file= Set mruby script file Misc: --conf= Load configuration from . Default: )" << get_config()->conf_path.get() << R"( --include= Load additional configurations from . File is read when configuration parser encountered this option. This option can be used multiple times, or even recursively. -v, --version Print version and exit. -h, --help Print this help and exit. -- The argument is an integer and an optional unit (e.g., 10K is 10 * 1024). Units are K, M and G (powers of 1024). The argument is an integer and an optional unit (e.g., 1s is 1 second and 500ms is 500 milliseconds). Units are h, m, s or ms (hours, minutes, seconds and milliseconds, respectively). If a unit is omitted, a second is used as unit.)" << std::endl; } } // namespace namespace { void process_options( int argc, char **argv, std::vector> &cmdcfgs) { if (conf_exists(get_config()->conf_path.get())) { std::set include_set; if (load_config(get_config()->conf_path.get(), include_set) == -1) { LOG(FATAL) << "Failed to load configuration from " << get_config()->conf_path.get(); exit(EXIT_FAILURE); } assert(include_set.empty()); } if (argc - optind >= 2) { cmdcfgs.emplace_back(SHRPX_OPT_PRIVATE_KEY_FILE, argv[optind++]); cmdcfgs.emplace_back(SHRPX_OPT_CERTIFICATE_FILE, argv[optind++]); } // Reopen log files using configurations in file reopen_log_files(); { std::set include_set; for (size_t i = 0, len = cmdcfgs.size(); i < len; ++i) { if (parse_config(cmdcfgs[i].first, cmdcfgs[i].second, include_set) == -1) { LOG(FATAL) << "Failed to parse command-line argument."; exit(EXIT_FAILURE); } } assert(include_set.empty()); } auto &loggingconf = get_config()->logging; if (loggingconf.access.syslog || loggingconf.error.syslog) { openlog("nghttpx", LOG_NDELAY | LOG_NOWAIT | LOG_PID, loggingconf.syslog_facility); } if (reopen_log_files() != 0) { LOG(FATAL) << "Failed to open log file"; exit(EXIT_FAILURE); } redirect_stderr_to_errorlog(); if (get_config()->uid != 0) { if (log_config()->accesslog_fd != -1 && fchown(log_config()->accesslog_fd, get_config()->uid, get_config()->gid) == -1) { auto error = errno; LOG(WARN) << "Changing owner of access log file failed: " << strerror(error); } if (log_config()->errorlog_fd != -1 && fchown(log_config()->errorlog_fd, get_config()->uid, get_config()->gid) == -1) { auto error = errno; LOG(WARN) << "Changing owner of error log file failed: " << strerror(error); } } auto &http2conf = mod_config()->http2; { auto &dumpconf = http2conf.upstream.debug.dump; if (dumpconf.request_header_file) { auto path = dumpconf.request_header_file.get(); auto f = open_file_for_write(path); if (f == nullptr) { LOG(FATAL) << "Failed to open http2 upstream request header file: " << path; exit(EXIT_FAILURE); } dumpconf.request_header = f; if (get_config()->uid != 0) { if (chown_to_running_user(path) == -1) { auto error = errno; LOG(WARN) << "Changing owner of http2 upstream request header file " << path << " failed: " << strerror(error); } } } if (dumpconf.response_header_file) { auto path = dumpconf.response_header_file.get(); auto f = open_file_for_write(path); if (f == nullptr) { LOG(FATAL) << "Failed to open http2 upstream response header file: " << path; exit(EXIT_FAILURE); } dumpconf.response_header = f; if (get_config()->uid != 0) { if (chown_to_running_user(path) == -1) { auto error = errno; LOG(WARN) << "Changing owner of http2 upstream response header file" << " " << path << " failed: " << strerror(error); } } } } auto &tlsconf = mod_config()->tls; if (tlsconf.npn_list.empty()) { tlsconf.npn_list = util::parse_config_str_list(DEFAULT_NPN_LIST); } if (tlsconf.tls_proto_list.empty()) { tlsconf.tls_proto_list = util::parse_config_str_list(DEFAULT_TLS_PROTO_LIST); } tlsconf.tls_proto_mask = ssl::create_tls_proto_mask(tlsconf.tls_proto_list); tlsconf.alpn_prefs = ssl::set_alpn_prefs(tlsconf.npn_list); auto &listenerconf = mod_config()->conn.listener; auto &upstreamconf = mod_config()->conn.upstream; auto &downstreamconf = mod_config()->conn.downstream; if (listenerconf.addrs.empty()) { UpstreamAddr addr{}; addr.host = "*"; addr.port = 3000; addr.family = AF_INET; listenerconf.addrs.push_back(addr); addr.family = AF_INET6; listenerconf.addrs.push_back(std::move(addr)); } if (downstreamconf.ipv4 && downstreamconf.ipv6) { LOG(FATAL) << "--backend-ipv4 and --backend-ipv6 cannot be used at the " << "same time."; exit(EXIT_FAILURE); } if (upstreamconf.worker_connections == 0) { upstreamconf.worker_connections = std::numeric_limits::max(); } if (get_config()->http2_proxy + get_config()->http2_bridge + get_config()->client_proxy + get_config()->client > 1) { LOG(FATAL) << "--http2-proxy, --http2-bridge, --client-proxy and --client " << "cannot be used at the same time."; exit(EXIT_FAILURE); } if (get_config()->client || get_config()->client_proxy) { mod_config()->client_mode = true; upstreamconf.no_tls = true; } if (get_config()->client_mode || get_config()->http2_bridge) { downstreamconf.proto = PROTO_HTTP2; } else { downstreamconf.proto = PROTO_HTTP; } if (downstreamconf.proto == PROTO_HTTP && !downstreamconf.http1_tls) { downstreamconf.no_tls = true; } if (!upstreamconf.no_tls && (!tlsconf.private_key_file || !tlsconf.cert_file)) { print_usage(std::cerr); LOG(FATAL) << "Too few arguments"; exit(EXIT_FAILURE); } if (!upstreamconf.no_tls && !tlsconf.ocsp.disabled) { struct stat buf; if (stat(tlsconf.ocsp.fetch_ocsp_response_file.get(), &buf) != 0) { tlsconf.ocsp.disabled = true; LOG(WARN) << "--fetch-ocsp-response-file: " << tlsconf.ocsp.fetch_ocsp_response_file.get() << " not found. OCSP stapling has been disabled."; } } auto &addr_groups = downstreamconf.addr_groups; if (addr_groups.empty()) { DownstreamAddr addr; addr.host = ImmutableString::from_lit(DEFAULT_DOWNSTREAM_HOST); addr.port = DEFAULT_DOWNSTREAM_PORT; DownstreamAddrGroup g("/"); g.addrs.push_back(std::move(addr)); mod_config()->router.add_route(g.pattern.get(), 1, addr_groups.size()); addr_groups.push_back(std::move(g)); } else if (get_config()->http2_proxy || get_config()->client_proxy) { // We don't support host mapping in these cases. Move all // non-catch-all patterns to catch-all pattern. DownstreamAddrGroup catch_all("/"); for (auto &g : addr_groups) { std::move(std::begin(g.addrs), std::end(g.addrs), std::back_inserter(catch_all.addrs)); } std::vector().swap(addr_groups); // maybe not necessary? mod_config()->router = Router(); mod_config()->router.add_route(catch_all.pattern.get(), 1, addr_groups.size()); addr_groups.push_back(std::move(catch_all)); } if (LOG_ENABLED(INFO)) { LOG(INFO) << "Resolving backend address"; } ssize_t catch_all_group = -1; for (size_t i = 0; i < addr_groups.size(); ++i) { auto &g = addr_groups[i]; if (util::streq(g.pattern.get(), "/")) { catch_all_group = i; } if (LOG_ENABLED(INFO)) { LOG(INFO) << "Host-path pattern: group " << i << ": '" << g.pattern.get() << "'"; for (auto &addr : g.addrs) { LOG(INFO) << "group " << i << " -> " << addr.host.c_str() << (addr.host_unix ? "" : ":" + util::utos(addr.port)); } } } if (catch_all_group == -1) { LOG(FATAL) << "-b: No catch-all backend address is configured"; exit(EXIT_FAILURE); } downstreamconf.addr_group_catch_all = catch_all_group; if (LOG_ENABLED(INFO)) { LOG(INFO) << "Catch-all pattern is group " << catch_all_group; } for (auto &g : addr_groups) { for (auto &addr : g.addrs) { if (addr.host_unix) { // for AF_UNIX socket, we use "localhost" as host for backend // hostport. This is used as Host header field to backend and // not going to be passed to any syscalls. addr.hostport = "localhost"; auto path = addr.host.c_str(); auto pathlen = addr.host.size(); if (pathlen + 1 > sizeof(addr.addr.su.un.sun_path)) { LOG(FATAL) << "UNIX domain socket path " << path << " is too long > " << sizeof(addr.addr.su.un.sun_path); exit(EXIT_FAILURE); } LOG(INFO) << "Use UNIX domain socket path " << path << " for backend connection"; addr.addr.su.un.sun_family = AF_UNIX; // copy path including terminal NULL std::copy_n(path, pathlen + 1, addr.addr.su.un.sun_path); addr.addr.len = sizeof(addr.addr.su.un); continue; } addr.hostport = ImmutableString(util::make_hostport(addr.host.c_str(), addr.port)); if (resolve_hostname( &addr.addr, addr.host.c_str(), addr.port, downstreamconf.ipv4 ? AF_INET : (downstreamconf.ipv6 ? AF_INET6 : AF_UNSPEC)) == -1) { exit(EXIT_FAILURE); } } } auto &proxy = mod_config()->downstream_http_proxy; if (!proxy.host.empty()) { if (LOG_ENABLED(INFO)) { LOG(INFO) << "Resolving backend http proxy address"; } if (resolve_hostname(&proxy.addr, proxy.host.c_str(), proxy.port, AF_UNSPEC) == -1) { exit(EXIT_FAILURE); } } { auto &memcachedconf = tlsconf.session_cache.memcached; if (memcachedconf.host) { if (resolve_hostname(&memcachedconf.addr, memcachedconf.host.get(), memcachedconf.port, AF_UNSPEC) == -1) { exit(EXIT_FAILURE); } } } { auto &memcachedconf = tlsconf.ticket.memcached; if (memcachedconf.host) { if (resolve_hostname(&memcachedconf.addr, memcachedconf.host.get(), memcachedconf.port, AF_UNSPEC) == -1) { exit(EXIT_FAILURE); } } } if (get_config()->rlimit_nofile) { struct rlimit lim = {static_cast(get_config()->rlimit_nofile), static_cast(get_config()->rlimit_nofile)}; if (setrlimit(RLIMIT_NOFILE, &lim) != 0) { auto error = errno; LOG(WARN) << "Setting rlimit-nofile failed: " << strerror(error); } } auto &fwdconf = mod_config()->http.forwarded; if (fwdconf.by_node_type == FORWARDED_NODE_OBFUSCATED && fwdconf.by_obfuscated.empty()) { std::random_device rd; std::mt19937 gen(rd()); auto &dst = fwdconf.by_obfuscated; dst = "_"; dst += util::random_alpha_digit(gen, SHRPX_OBFUSCATED_NODE_LENGTH); } if (get_config()->http2.upstream.debug.frame_debug) { // To make it sync to logging set_output(stderr); if (isatty(fileno(stdout))) { set_color_output(true); } reset_timer(); } mod_config()->http2.upstream.callbacks = create_http2_upstream_callbacks(); mod_config()->http2.downstream.callbacks = create_http2_downstream_callbacks(); } } // namespace int main(int argc, char **argv) { nghttp2::ssl::libssl_init(); #ifndef NOTHREADS nghttp2::ssl::LibsslGlobalLock lock; #endif // NOTHREADS Log::set_severity_level(NOTICE); create_config(); fill_default_config(); // make copy of stderr util::store_original_fds(); // First open log files with default configuration, so that we can // log errors/warnings while reading configuration files. reopen_log_files(); mod_config()->original_argv = argv; // We have to copy argv, since getopt_long may change its content. mod_config()->argc = argc; mod_config()->argv = new char *[argc]; for (int i = 0; i < argc; ++i) { mod_config()->argv[i] = strdup(argv[i]); if (mod_config()->argv[i] == nullptr) { auto error = errno; LOG(FATAL) << "failed to copy argv: " << strerror(error); exit(EXIT_FAILURE); } } mod_config()->cwd = getcwd(nullptr, 0); if (mod_config()->cwd == nullptr) { auto error = errno; LOG(FATAL) << "failed to get current working directory: errno=" << error; exit(EXIT_FAILURE); } std::vector> cmdcfgs; while (1) { static int flag = 0; static option long_options[] = { {SHRPX_OPT_DAEMON, no_argument, nullptr, 'D'}, {SHRPX_OPT_LOG_LEVEL, required_argument, nullptr, 'L'}, {SHRPX_OPT_BACKEND, required_argument, nullptr, 'b'}, {SHRPX_OPT_HTTP2_MAX_CONCURRENT_STREAMS, required_argument, nullptr, 'c'}, {SHRPX_OPT_FRONTEND, required_argument, nullptr, 'f'}, {"help", no_argument, nullptr, 'h'}, {SHRPX_OPT_INSECURE, no_argument, nullptr, 'k'}, {SHRPX_OPT_WORKERS, required_argument, nullptr, 'n'}, {SHRPX_OPT_CLIENT_PROXY, no_argument, nullptr, 'p'}, {SHRPX_OPT_HTTP2_PROXY, no_argument, nullptr, 's'}, {"version", no_argument, nullptr, 'v'}, {SHRPX_OPT_FRONTEND_FRAME_DEBUG, no_argument, nullptr, 'o'}, {SHRPX_OPT_ADD_X_FORWARDED_FOR, no_argument, &flag, 1}, {SHRPX_OPT_FRONTEND_HTTP2_READ_TIMEOUT, required_argument, &flag, 2}, {SHRPX_OPT_FRONTEND_READ_TIMEOUT, required_argument, &flag, 3}, {SHRPX_OPT_FRONTEND_WRITE_TIMEOUT, required_argument, &flag, 4}, {SHRPX_OPT_BACKEND_READ_TIMEOUT, required_argument, &flag, 5}, {SHRPX_OPT_BACKEND_WRITE_TIMEOUT, required_argument, &flag, 6}, {SHRPX_OPT_ACCESSLOG_FILE, required_argument, &flag, 7}, {SHRPX_OPT_BACKEND_KEEP_ALIVE_TIMEOUT, required_argument, &flag, 8}, {SHRPX_OPT_FRONTEND_HTTP2_WINDOW_BITS, required_argument, &flag, 9}, {SHRPX_OPT_PID_FILE, required_argument, &flag, 10}, {SHRPX_OPT_USER, required_argument, &flag, 11}, {"conf", required_argument, &flag, 12}, {SHRPX_OPT_SYSLOG_FACILITY, required_argument, &flag, 14}, {SHRPX_OPT_BACKLOG, required_argument, &flag, 15}, {SHRPX_OPT_CIPHERS, required_argument, &flag, 16}, {SHRPX_OPT_CLIENT, no_argument, &flag, 17}, {SHRPX_OPT_BACKEND_HTTP2_WINDOW_BITS, required_argument, &flag, 18}, {SHRPX_OPT_CACERT, required_argument, &flag, 19}, {SHRPX_OPT_BACKEND_IPV4, no_argument, &flag, 20}, {SHRPX_OPT_BACKEND_IPV6, no_argument, &flag, 21}, {SHRPX_OPT_PRIVATE_KEY_PASSWD_FILE, required_argument, &flag, 22}, {SHRPX_OPT_NO_VIA, no_argument, &flag, 23}, {SHRPX_OPT_SUBCERT, required_argument, &flag, 24}, {SHRPX_OPT_HTTP2_BRIDGE, no_argument, &flag, 25}, {SHRPX_OPT_BACKEND_HTTP_PROXY_URI, required_argument, &flag, 26}, {SHRPX_OPT_BACKEND_NO_TLS, no_argument, &flag, 27}, {SHRPX_OPT_FRONTEND_NO_TLS, no_argument, &flag, 29}, {SHRPX_OPT_BACKEND_TLS_SNI_FIELD, required_argument, &flag, 31}, {SHRPX_OPT_DH_PARAM_FILE, required_argument, &flag, 33}, {SHRPX_OPT_READ_RATE, required_argument, &flag, 34}, {SHRPX_OPT_READ_BURST, required_argument, &flag, 35}, {SHRPX_OPT_WRITE_RATE, required_argument, &flag, 36}, {SHRPX_OPT_WRITE_BURST, required_argument, &flag, 37}, {SHRPX_OPT_NPN_LIST, required_argument, &flag, 38}, {SHRPX_OPT_VERIFY_CLIENT, no_argument, &flag, 39}, {SHRPX_OPT_VERIFY_CLIENT_CACERT, required_argument, &flag, 40}, {SHRPX_OPT_CLIENT_PRIVATE_KEY_FILE, required_argument, &flag, 41}, {SHRPX_OPT_CLIENT_CERT_FILE, required_argument, &flag, 42}, {SHRPX_OPT_FRONTEND_HTTP2_DUMP_REQUEST_HEADER, required_argument, &flag, 43}, {SHRPX_OPT_FRONTEND_HTTP2_DUMP_RESPONSE_HEADER, required_argument, &flag, 44}, {SHRPX_OPT_HTTP2_NO_COOKIE_CRUMBLING, no_argument, &flag, 45}, {SHRPX_OPT_FRONTEND_HTTP2_CONNECTION_WINDOW_BITS, required_argument, &flag, 46}, {SHRPX_OPT_BACKEND_HTTP2_CONNECTION_WINDOW_BITS, required_argument, &flag, 47}, {SHRPX_OPT_TLS_PROTO_LIST, required_argument, &flag, 48}, {SHRPX_OPT_PADDING, required_argument, &flag, 49}, {SHRPX_OPT_WORKER_READ_RATE, required_argument, &flag, 50}, {SHRPX_OPT_WORKER_READ_BURST, required_argument, &flag, 51}, {SHRPX_OPT_WORKER_WRITE_RATE, required_argument, &flag, 52}, {SHRPX_OPT_WORKER_WRITE_BURST, required_argument, &flag, 53}, {SHRPX_OPT_ALTSVC, required_argument, &flag, 54}, {SHRPX_OPT_ADD_RESPONSE_HEADER, required_argument, &flag, 55}, {SHRPX_OPT_WORKER_FRONTEND_CONNECTIONS, required_argument, &flag, 56}, {SHRPX_OPT_ACCESSLOG_SYSLOG, no_argument, &flag, 57}, {SHRPX_OPT_ERRORLOG_FILE, required_argument, &flag, 58}, {SHRPX_OPT_ERRORLOG_SYSLOG, no_argument, &flag, 59}, {SHRPX_OPT_STREAM_READ_TIMEOUT, required_argument, &flag, 60}, {SHRPX_OPT_STREAM_WRITE_TIMEOUT, required_argument, &flag, 61}, {SHRPX_OPT_NO_LOCATION_REWRITE, no_argument, &flag, 62}, {SHRPX_OPT_BACKEND_HTTP1_CONNECTIONS_PER_HOST, required_argument, &flag, 63}, {SHRPX_OPT_LISTENER_DISABLE_TIMEOUT, required_argument, &flag, 64}, {SHRPX_OPT_STRIP_INCOMING_X_FORWARDED_FOR, no_argument, &flag, 65}, {SHRPX_OPT_ACCESSLOG_FORMAT, required_argument, &flag, 66}, {SHRPX_OPT_BACKEND_HTTP1_CONNECTIONS_PER_FRONTEND, required_argument, &flag, 67}, {SHRPX_OPT_TLS_TICKET_KEY_FILE, required_argument, &flag, 68}, {SHRPX_OPT_RLIMIT_NOFILE, required_argument, &flag, 69}, {SHRPX_OPT_BACKEND_RESPONSE_BUFFER, required_argument, &flag, 71}, {SHRPX_OPT_BACKEND_REQUEST_BUFFER, required_argument, &flag, 72}, {SHRPX_OPT_NO_HOST_REWRITE, no_argument, &flag, 73}, {SHRPX_OPT_NO_SERVER_PUSH, no_argument, &flag, 74}, {SHRPX_OPT_BACKEND_HTTP2_CONNECTIONS_PER_WORKER, required_argument, &flag, 76}, {SHRPX_OPT_FETCH_OCSP_RESPONSE_FILE, required_argument, &flag, 77}, {SHRPX_OPT_OCSP_UPDATE_INTERVAL, required_argument, &flag, 78}, {SHRPX_OPT_NO_OCSP, no_argument, &flag, 79}, {SHRPX_OPT_HEADER_FIELD_BUFFER, required_argument, &flag, 80}, {SHRPX_OPT_MAX_HEADER_FIELDS, required_argument, &flag, 81}, {SHRPX_OPT_ADD_REQUEST_HEADER, required_argument, &flag, 82}, {SHRPX_OPT_INCLUDE, required_argument, &flag, 83}, {SHRPX_OPT_TLS_TICKET_KEY_CIPHER, required_argument, &flag, 84}, {SHRPX_OPT_HOST_REWRITE, no_argument, &flag, 85}, {SHRPX_OPT_TLS_SESSION_CACHE_MEMCACHED, required_argument, &flag, 86}, {SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED, required_argument, &flag, 87}, {SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_INTERVAL, required_argument, &flag, 88}, {SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_MAX_RETRY, required_argument, &flag, 89}, {SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_MAX_FAIL, required_argument, &flag, 90}, {SHRPX_OPT_MRUBY_FILE, required_argument, &flag, 91}, {SHRPX_OPT_ACCEPT_PROXY_PROTOCOL, no_argument, &flag, 93}, {SHRPX_OPT_FASTOPEN, required_argument, &flag, 94}, {SHRPX_OPT_TLS_DYN_REC_WARMUP_THRESHOLD, required_argument, &flag, 95}, {SHRPX_OPT_TLS_DYN_REC_IDLE_TIMEOUT, required_argument, &flag, 96}, {SHRPX_OPT_ADD_FORWARDED, required_argument, &flag, 97}, {SHRPX_OPT_STRIP_INCOMING_FORWARDED, no_argument, &flag, 98}, {SHRPX_OPT_FORWARDED_BY, required_argument, &flag, 99}, {SHRPX_OPT_FORWARDED_FOR, required_argument, &flag, 100}, {SHRPX_OPT_RESPONSE_HEADER_FIELD_BUFFER, required_argument, &flag, 101}, {SHRPX_OPT_MAX_RESPONSE_HEADER_FIELDS, required_argument, &flag, 102}, {SHRPX_OPT_NO_HTTP2_CIPHER_BLACK_LIST, no_argument, &flag, 103}, {SHRPX_OPT_REQUEST_HEADER_FIELD_BUFFER, required_argument, &flag, 104}, {SHRPX_OPT_MAX_REQUEST_HEADER_FIELDS, required_argument, &flag, 105}, {SHRPX_OPT_BACKEND_HTTP1_TLS, no_argument, &flag, 106}, {SHRPX_OPT_BACKEND_TLS_SESSION_CACHE_PER_WORKER, required_argument, &flag, 107}, {nullptr, 0, nullptr, 0}}; int option_index = 0; int c = getopt_long(argc, argv, "DL:b:c:f:hkn:opsv", long_options, &option_index); if (c == -1) { break; } switch (c) { case 'D': cmdcfgs.emplace_back(SHRPX_OPT_DAEMON, "yes"); break; case 'L': cmdcfgs.emplace_back(SHRPX_OPT_LOG_LEVEL, optarg); break; case 'b': cmdcfgs.emplace_back(SHRPX_OPT_BACKEND, optarg); break; case 'c': cmdcfgs.emplace_back(SHRPX_OPT_HTTP2_MAX_CONCURRENT_STREAMS, optarg); break; case 'f': cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND, optarg); break; case 'h': print_help(std::cout); exit(EXIT_SUCCESS); case 'k': cmdcfgs.emplace_back(SHRPX_OPT_INSECURE, "yes"); break; case 'n': cmdcfgs.emplace_back(SHRPX_OPT_WORKERS, optarg); break; case 'o': cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_FRAME_DEBUG, "yes"); break; case 'p': cmdcfgs.emplace_back(SHRPX_OPT_CLIENT_PROXY, "yes"); break; case 's': cmdcfgs.emplace_back(SHRPX_OPT_HTTP2_PROXY, "yes"); break; case 'v': print_version(std::cout); exit(EXIT_SUCCESS); case '?': util::show_candidates(argv[optind - 1], long_options); exit(EXIT_FAILURE); case 0: switch (flag) { case 1: // --add-x-forwarded-for cmdcfgs.emplace_back(SHRPX_OPT_ADD_X_FORWARDED_FOR, "yes"); break; case 2: // --frontend-http2-read-timeout cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_READ_TIMEOUT, optarg); break; case 3: // --frontend-read-timeout cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_READ_TIMEOUT, optarg); break; case 4: // --frontend-write-timeout cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_WRITE_TIMEOUT, optarg); break; case 5: // --backend-read-timeout cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_READ_TIMEOUT, optarg); break; case 6: // --backend-write-timeout cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_WRITE_TIMEOUT, optarg); break; case 7: cmdcfgs.emplace_back(SHRPX_OPT_ACCESSLOG_FILE, optarg); break; case 8: // --backend-keep-alive-timeout cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_KEEP_ALIVE_TIMEOUT, optarg); break; case 9: // --frontend-http2-window-bits cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_WINDOW_BITS, optarg); break; case 10: cmdcfgs.emplace_back(SHRPX_OPT_PID_FILE, optarg); break; case 11: cmdcfgs.emplace_back(SHRPX_OPT_USER, optarg); break; case 12: // --conf mod_config()->conf_path = strcopy(optarg); break; case 14: // --syslog-facility cmdcfgs.emplace_back(SHRPX_OPT_SYSLOG_FACILITY, optarg); break; case 15: // --backlog cmdcfgs.emplace_back(SHRPX_OPT_BACKLOG, optarg); break; case 16: // --ciphers cmdcfgs.emplace_back(SHRPX_OPT_CIPHERS, optarg); break; case 17: // --client cmdcfgs.emplace_back(SHRPX_OPT_CLIENT, "yes"); break; case 18: // --backend-http2-window-bits cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP2_WINDOW_BITS, optarg); break; case 19: // --cacert cmdcfgs.emplace_back(SHRPX_OPT_CACERT, optarg); break; case 20: // --backend-ipv4 cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_IPV4, "yes"); break; case 21: // --backend-ipv6 cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_IPV6, "yes"); break; case 22: // --private-key-passwd-file cmdcfgs.emplace_back(SHRPX_OPT_PRIVATE_KEY_PASSWD_FILE, optarg); break; case 23: // --no-via cmdcfgs.emplace_back(SHRPX_OPT_NO_VIA, "yes"); break; case 24: // --subcert cmdcfgs.emplace_back(SHRPX_OPT_SUBCERT, optarg); break; case 25: // --http2-bridge cmdcfgs.emplace_back(SHRPX_OPT_HTTP2_BRIDGE, "yes"); break; case 26: // --backend-http-proxy-uri cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP_PROXY_URI, optarg); break; case 27: // --backend-no-tls cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_NO_TLS, "yes"); break; case 29: // --frontend-no-tls cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_NO_TLS, "yes"); break; case 31: // --backend-tls-sni-field cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_TLS_SNI_FIELD, optarg); break; case 33: // --dh-param-file cmdcfgs.emplace_back(SHRPX_OPT_DH_PARAM_FILE, optarg); break; case 34: // --read-rate cmdcfgs.emplace_back(SHRPX_OPT_READ_RATE, optarg); break; case 35: // --read-burst cmdcfgs.emplace_back(SHRPX_OPT_READ_BURST, optarg); break; case 36: // --write-rate cmdcfgs.emplace_back(SHRPX_OPT_WRITE_RATE, optarg); break; case 37: // --write-burst cmdcfgs.emplace_back(SHRPX_OPT_WRITE_BURST, optarg); break; case 38: // --npn-list cmdcfgs.emplace_back(SHRPX_OPT_NPN_LIST, optarg); break; case 39: // --verify-client cmdcfgs.emplace_back(SHRPX_OPT_VERIFY_CLIENT, "yes"); break; case 40: // --verify-client-cacert cmdcfgs.emplace_back(SHRPX_OPT_VERIFY_CLIENT_CACERT, optarg); break; case 41: // --client-private-key-file cmdcfgs.emplace_back(SHRPX_OPT_CLIENT_PRIVATE_KEY_FILE, optarg); break; case 42: // --client-cert-file cmdcfgs.emplace_back(SHRPX_OPT_CLIENT_CERT_FILE, optarg); break; case 43: // --frontend-http2-dump-request-header cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_DUMP_REQUEST_HEADER, optarg); break; case 44: // --frontend-http2-dump-response-header cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_DUMP_RESPONSE_HEADER, optarg); break; case 45: // --http2-no-cookie-crumbling cmdcfgs.emplace_back(SHRPX_OPT_HTTP2_NO_COOKIE_CRUMBLING, "yes"); break; case 46: // --frontend-http2-connection-window-bits cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_CONNECTION_WINDOW_BITS, optarg); break; case 47: // --backend-http2-connection-window-bits cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP2_CONNECTION_WINDOW_BITS, optarg); break; case 48: // --tls-proto-list cmdcfgs.emplace_back(SHRPX_OPT_TLS_PROTO_LIST, optarg); break; case 49: // --padding cmdcfgs.emplace_back(SHRPX_OPT_PADDING, optarg); break; case 50: // --worker-read-rate cmdcfgs.emplace_back(SHRPX_OPT_WORKER_READ_RATE, optarg); break; case 51: // --worker-read-burst cmdcfgs.emplace_back(SHRPX_OPT_WORKER_READ_BURST, optarg); break; case 52: // --worker-write-rate cmdcfgs.emplace_back(SHRPX_OPT_WORKER_WRITE_RATE, optarg); break; case 53: // --worker-write-burst cmdcfgs.emplace_back(SHRPX_OPT_WORKER_WRITE_BURST, optarg); break; case 54: // --altsvc cmdcfgs.emplace_back(SHRPX_OPT_ALTSVC, optarg); break; case 55: // --add-response-header cmdcfgs.emplace_back(SHRPX_OPT_ADD_RESPONSE_HEADER, optarg); break; case 56: // --worker-frontend-connections cmdcfgs.emplace_back(SHRPX_OPT_WORKER_FRONTEND_CONNECTIONS, optarg); break; case 57: // --accesslog-syslog cmdcfgs.emplace_back(SHRPX_OPT_ACCESSLOG_SYSLOG, "yes"); break; case 58: // --errorlog-file cmdcfgs.emplace_back(SHRPX_OPT_ERRORLOG_FILE, optarg); break; case 59: // --errorlog-syslog cmdcfgs.emplace_back(SHRPX_OPT_ERRORLOG_SYSLOG, "yes"); break; case 60: // --stream-read-timeout cmdcfgs.emplace_back(SHRPX_OPT_STREAM_READ_TIMEOUT, optarg); break; case 61: // --stream-write-timeout cmdcfgs.emplace_back(SHRPX_OPT_STREAM_WRITE_TIMEOUT, optarg); break; case 62: // --no-location-rewrite cmdcfgs.emplace_back(SHRPX_OPT_NO_LOCATION_REWRITE, "yes"); break; case 63: // --backend-http1-connections-per-host cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP1_CONNECTIONS_PER_HOST, optarg); break; case 64: // --listener-disable-timeout cmdcfgs.emplace_back(SHRPX_OPT_LISTENER_DISABLE_TIMEOUT, optarg); break; case 65: // --strip-incoming-x-forwarded-for cmdcfgs.emplace_back(SHRPX_OPT_STRIP_INCOMING_X_FORWARDED_FOR, "yes"); break; case 66: // --accesslog-format cmdcfgs.emplace_back(SHRPX_OPT_ACCESSLOG_FORMAT, optarg); break; case 67: // --backend-http1-connections-per-frontend cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP1_CONNECTIONS_PER_FRONTEND, optarg); break; case 68: // --tls-ticket-key-file cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_FILE, optarg); break; case 69: // --rlimit-nofile cmdcfgs.emplace_back(SHRPX_OPT_RLIMIT_NOFILE, optarg); break; case 71: // --backend-response-buffer cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_RESPONSE_BUFFER, optarg); break; case 72: // --backend-request-buffer cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_REQUEST_BUFFER, optarg); break; case 73: // --no-host-rewrite cmdcfgs.emplace_back(SHRPX_OPT_NO_HOST_REWRITE, "yes"); break; case 74: // --no-server-push cmdcfgs.emplace_back(SHRPX_OPT_NO_SERVER_PUSH, "yes"); break; case 76: // --backend-http2-connections-per-worker cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP2_CONNECTIONS_PER_WORKER, optarg); break; case 77: // --fetch-ocsp-response-file cmdcfgs.emplace_back(SHRPX_OPT_FETCH_OCSP_RESPONSE_FILE, optarg); break; case 78: // --ocsp-update-interval cmdcfgs.emplace_back(SHRPX_OPT_OCSP_UPDATE_INTERVAL, optarg); break; case 79: // --no-ocsp cmdcfgs.emplace_back(SHRPX_OPT_NO_OCSP, "yes"); break; case 80: // --header-field-buffer cmdcfgs.emplace_back(SHRPX_OPT_HEADER_FIELD_BUFFER, optarg); break; case 81: // --max-header-fields cmdcfgs.emplace_back(SHRPX_OPT_MAX_HEADER_FIELDS, optarg); break; case 82: // --add-request-header cmdcfgs.emplace_back(SHRPX_OPT_ADD_REQUEST_HEADER, optarg); break; case 83: // --include cmdcfgs.emplace_back(SHRPX_OPT_INCLUDE, optarg); break; case 84: // --tls-ticket-key-cipher cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_CIPHER, optarg); break; case 85: // --host-rewrite cmdcfgs.emplace_back(SHRPX_OPT_HOST_REWRITE, "yes"); break; case 86: // --tls-session-cache-memcached cmdcfgs.emplace_back(SHRPX_OPT_TLS_SESSION_CACHE_MEMCACHED, optarg); break; case 87: // --tls-ticket-key-memcached cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED, optarg); break; case 88: // --tls-ticket-key-memcached-interval cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_INTERVAL, optarg); break; case 89: // --tls-ticket-key-memcached-max-retry cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_MAX_RETRY, optarg); break; case 90: // --tls-ticket-key-memcached-max-fail cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_MAX_FAIL, optarg); break; case 91: // --mruby-file cmdcfgs.emplace_back(SHRPX_OPT_MRUBY_FILE, optarg); break; case 93: // --accept-proxy-protocol cmdcfgs.emplace_back(SHRPX_OPT_ACCEPT_PROXY_PROTOCOL, "yes"); break; case 94: // --fastopen cmdcfgs.emplace_back(SHRPX_OPT_FASTOPEN, optarg); break; case 95: // --tls-dyn-rec-warmup-threshold cmdcfgs.emplace_back(SHRPX_OPT_TLS_DYN_REC_WARMUP_THRESHOLD, optarg); break; case 96: // --tls-dyn-rec-idle-timeout cmdcfgs.emplace_back(SHRPX_OPT_TLS_DYN_REC_IDLE_TIMEOUT, optarg); break; case 97: // --add-forwarded cmdcfgs.emplace_back(SHRPX_OPT_ADD_FORWARDED, optarg); break; case 98: // --strip-incoming-forwarded cmdcfgs.emplace_back(SHRPX_OPT_STRIP_INCOMING_FORWARDED, "yes"); break; case 99: // --forwarded-by cmdcfgs.emplace_back(SHRPX_OPT_FORWARDED_BY, optarg); break; case 100: // --forwarded-for cmdcfgs.emplace_back(SHRPX_OPT_FORWARDED_FOR, optarg); break; case 101: // --response-header-field-buffer cmdcfgs.emplace_back(SHRPX_OPT_RESPONSE_HEADER_FIELD_BUFFER, optarg); break; case 102: // --max-response-header-fields cmdcfgs.emplace_back(SHRPX_OPT_MAX_RESPONSE_HEADER_FIELDS, optarg); break; case 103: // --no-http2-cipher-black-list cmdcfgs.emplace_back(SHRPX_OPT_NO_HTTP2_CIPHER_BLACK_LIST, "yes"); break; case 104: // --request-header-field-buffer cmdcfgs.emplace_back(SHRPX_OPT_REQUEST_HEADER_FIELD_BUFFER, optarg); break; case 105: // --max-request-header-fields cmdcfgs.emplace_back(SHRPX_OPT_MAX_REQUEST_HEADER_FIELDS, optarg); break; case 106: // --backend-http1-tls cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP1_TLS, "yes"); break; case 107: // --backend-tls-session-cache-per-worker cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_TLS_SESSION_CACHE_PER_WORKER, optarg); break; default: break; } break; default: break; } } process_options(argc, argv, cmdcfgs); if (event_loop() != 0) { return -1; } LOG(NOTICE) << "Shutdown momentarily"; delete log_config(); return 0; } } // namespace shrpx int main(int argc, char **argv) { return run_app(shrpx::main, argc, argv); }