2012-06-04 16:48:31 +02:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2012-06-04 16:48:31 +02:00
|
|
|
*
|
|
|
|
* 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 <sys/types.h>
|
2015-09-19 12:50:29 +02:00
|
|
|
#include <sys/wait.h>
|
2012-08-01 17:06:41 +02:00
|
|
|
#include <sys/stat.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
2012-06-04 16:48:31 +02:00
|
|
|
#include <sys/socket.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#endif // HAVE_SYS_SOCKET_H
|
2015-02-22 04:27:51 +01:00
|
|
|
#include <sys/un.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#ifdef HAVE_NETDB_H
|
2012-06-04 16:48:31 +02:00
|
|
|
#include <netdb.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#endif // HAVE_NETDB_H
|
2012-06-04 16:48:31 +02:00
|
|
|
#include <signal.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
2012-06-06 15:43:35 +02:00
|
|
|
#include <netinet/in.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#endif // HAVE_NETINET_IN_H
|
2015-01-29 13:14:44 +01:00
|
|
|
#include <netinet/tcp.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#ifdef HAVE_ARPA_INET_H
|
2012-06-06 15:43:35 +02:00
|
|
|
#include <arpa/inet.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#endif // HAVE_ARPA_INET_H
|
|
|
|
#ifdef HAVE_UNISTD_H
|
2012-06-06 16:58:19 +02:00
|
|
|
#include <unistd.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#endif // HAVE_UNISTD_H
|
2012-06-06 16:58:19 +02:00
|
|
|
#include <getopt.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#ifdef HAVE_SYSLOG_H
|
2012-08-01 18:20:18 +02:00
|
|
|
#include <syslog.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#endif // HAVE_SYSLOG_H
|
|
|
|
#ifdef HAVE_LIMITS_H
|
2014-08-12 15:22:02 +02:00
|
|
|
#include <limits.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#endif // HAVE_LIMITS_H
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
2015-01-10 15:17:48 +01:00
|
|
|
#include <sys/time.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#endif // HAVE_SYS_TIME_H
|
2015-01-10 15:17:48 +01:00
|
|
|
#include <sys/resource.h>
|
2012-06-04 16:48:31 +02:00
|
|
|
|
2015-05-13 17:17:45 +02:00
|
|
|
#include <cinttypes>
|
2012-06-06 16:58:19 +02:00
|
|
|
#include <limits>
|
2012-06-04 16:48:31 +02:00
|
|
|
#include <cstdlib>
|
2012-06-06 16:58:19 +02:00
|
|
|
#include <iostream>
|
2012-07-31 18:51:16 +02:00
|
|
|
#include <fstream>
|
2012-08-01 17:06:41 +02:00
|
|
|
#include <vector>
|
2015-02-22 09:01:19 +01:00
|
|
|
#include <initializer_list>
|
2016-01-15 15:04:58 +01:00
|
|
|
#include <random>
|
2012-06-04 16:48:31 +02:00
|
|
|
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
#include <openssl/err.h>
|
2014-12-27 18:59:06 +01:00
|
|
|
#include <ev.h>
|
2012-06-04 16:48:31 +02:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
#include <nghttp2/nghttp2.h>
|
2012-06-04 16:48:31 +02:00
|
|
|
|
|
|
|
#include "shrpx_config.h"
|
2012-06-08 15:41:24 +02:00
|
|
|
#include "shrpx_ssl.h"
|
2015-02-25 16:02:29 +01:00
|
|
|
#include "shrpx_log_config.h"
|
2014-08-12 15:22:02 +02:00
|
|
|
#include "shrpx_worker.h"
|
2015-02-24 07:21:10 +01:00
|
|
|
#include "shrpx_http2_upstream.h"
|
|
|
|
#include "shrpx_http2_session.h"
|
2015-09-17 18:16:49 +02:00
|
|
|
#include "shrpx_worker_process.h"
|
|
|
|
#include "shrpx_process.h"
|
2015-09-24 16:33:28 +02:00
|
|
|
#include "shrpx_signal.h"
|
2016-05-07 09:18:58 +02:00
|
|
|
#include "shrpx_connection.h"
|
2014-01-08 17:27:56 +01:00
|
|
|
#include "util.h"
|
2014-02-09 10:47:26 +01:00
|
|
|
#include "app_helper.h"
|
2014-03-04 13:33:43 +01:00
|
|
|
#include "ssl.h"
|
2015-02-05 15:21:53 +01:00
|
|
|
#include "template.h"
|
2016-10-02 14:22:02 +02:00
|
|
|
#include "allocator.h"
|
2016-10-08 03:50:28 +02:00
|
|
|
#include "ssl_compat.h"
|
2016-10-09 12:14:49 +02:00
|
|
|
#include "xsi_strerror.h"
|
2014-01-08 17:27:56 +01:00
|
|
|
|
2014-08-12 15:22:02 +02:00
|
|
|
extern char **environ;
|
|
|
|
|
2014-01-08 17:27:56 +01:00
|
|
|
using namespace nghttp2;
|
2012-06-04 16:48:31 +02:00
|
|
|
|
|
|
|
namespace shrpx {
|
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
// Deprecated: Environment variables to tell new binary the listening
|
|
|
|
// socket's file descriptors. They are not close-on-exec.
|
2016-03-24 17:10:48 +01:00
|
|
|
constexpr auto ENV_LISTENER4_FD = StringRef::from_lit("NGHTTPX_LISTENER4_FD");
|
|
|
|
constexpr auto ENV_LISTENER6_FD = StringRef::from_lit("NGHTTPX_LISTENER6_FD");
|
2014-08-12 15:22:02 +02:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
// Deprecated: Environment variable to tell new binary the port number
|
|
|
|
// the current binary is listening to.
|
2016-03-24 17:10:48 +01:00
|
|
|
constexpr auto ENV_PORT = StringRef::from_lit("NGHTTPX_PORT");
|
2014-08-12 15:22:02 +02:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
// Deprecated: Environment variable to tell new binary the listening
|
|
|
|
// socket's file descriptor if frontend listens UNIX domain socket.
|
2016-03-24 17:10:48 +01:00
|
|
|
constexpr auto ENV_UNIX_FD = StringRef::from_lit("NGHTTP2_UNIX_FD");
|
2016-01-31 11:41:56 +01:00
|
|
|
// Deprecated: Environment variable to tell new binary the UNIX domain
|
|
|
|
// socket path.
|
2016-03-24 17:10:48 +01:00
|
|
|
constexpr auto ENV_UNIX_PATH = StringRef::from_lit("NGHTTP2_UNIX_PATH");
|
2015-02-22 09:01:19 +01:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
// 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,<FD>.
|
|
|
|
// <FD> is file descriptor. For UNIX domain socket, the value must be
|
|
|
|
// comma separated 3 parameters: unix,<FD>,<PATH>. <FD> is file
|
|
|
|
// descriptor. <PATH> is a path to UNIX domain socket.
|
2016-03-24 17:10:48 +01:00
|
|
|
constexpr auto ENV_ACCEPT_PREFIX = StringRef::from_lit("NGHTTPX_ACCEPT_");
|
2016-01-31 11:41:56 +01:00
|
|
|
|
2015-10-03 00:32:58 +02:00
|
|
|
#ifndef _KERNEL_FASTOPEN
|
|
|
|
#define _KERNEL_FASTOPEN
|
|
|
|
// conditional define for TCP_FASTOPEN mostly on ubuntu
|
|
|
|
#ifndef TCP_FASTOPEN
|
2015-10-14 16:23:34 +02:00
|
|
|
#define TCP_FASTOPEN 23
|
2015-10-03 00:32:58 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// conditional define for SOL_TCP mostly on ubuntu
|
|
|
|
#ifndef SOL_TCP
|
|
|
|
#define SOL_TCP 6
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2016-07-31 09:34:55 +02:00
|
|
|
// This configuration is fixed at the first startup of the main
|
|
|
|
// process, and does not change after subsequent reloadings.
|
|
|
|
struct StartupConfig {
|
|
|
|
// This contains all options given in command-line.
|
|
|
|
std::vector<std::pair<StringRef, StringRef>> cmdcfgs;
|
|
|
|
// The current working directory where this process started.
|
|
|
|
char *cwd;
|
|
|
|
// The pointer to original argv (not sure why we have this?)
|
|
|
|
char **original_argv;
|
|
|
|
// The pointer to argv, this is a deep copy of original argv.
|
|
|
|
char **argv;
|
|
|
|
// The number of elements in argv.
|
|
|
|
int argc;
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
StartupConfig suconfig;
|
|
|
|
} // namespace
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
struct InheritedAddr {
|
|
|
|
// IP address if TCP socket. Otherwise, UNIX domain socket path.
|
2016-10-02 14:22:02 +02:00
|
|
|
StringRef host;
|
2016-07-31 08:57:41 +02:00
|
|
|
uint16_t port;
|
|
|
|
// true if UNIX domain socket path
|
|
|
|
bool host_unix;
|
|
|
|
int fd;
|
|
|
|
bool used;
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
std::random_device rd;
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void signal_cb(struct ev_loop *loop, ev_signal *w, int revents);
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void worker_process_child_cb(struct ev_loop *loop, ev_child *w, int revents);
|
|
|
|
} // namespace
|
|
|
|
|
2016-07-31 09:16:23 +02:00
|
|
|
struct WorkerProcess {
|
|
|
|
WorkerProcess(struct ev_loop *loop, pid_t worker_pid, int ipc_fd)
|
2016-07-31 08:57:41 +02:00
|
|
|
: loop(loop), worker_pid(worker_pid), ipc_fd(ipc_fd) {
|
|
|
|
ev_signal_init(&reopen_log_signalev, signal_cb, REOPEN_LOG_SIGNAL);
|
|
|
|
reopen_log_signalev.data = this;
|
|
|
|
ev_signal_start(loop, &reopen_log_signalev);
|
|
|
|
|
|
|
|
ev_signal_init(&exec_binary_signalev, signal_cb, EXEC_BINARY_SIGNAL);
|
|
|
|
exec_binary_signalev.data = this;
|
|
|
|
ev_signal_start(loop, &exec_binary_signalev);
|
|
|
|
|
|
|
|
ev_signal_init(&graceful_shutdown_signalev, signal_cb,
|
|
|
|
GRACEFUL_SHUTDOWN_SIGNAL);
|
|
|
|
graceful_shutdown_signalev.data = this;
|
|
|
|
ev_signal_start(loop, &graceful_shutdown_signalev);
|
|
|
|
|
|
|
|
ev_signal_init(&reload_signalev, signal_cb, RELOAD_SIGNAL);
|
|
|
|
reload_signalev.data = this;
|
|
|
|
ev_signal_start(loop, &reload_signalev);
|
|
|
|
|
|
|
|
ev_child_init(&worker_process_childev, worker_process_child_cb, worker_pid,
|
|
|
|
0);
|
|
|
|
worker_process_childev.data = this;
|
|
|
|
ev_child_start(loop, &worker_process_childev);
|
|
|
|
}
|
|
|
|
|
2016-07-31 09:16:23 +02:00
|
|
|
~WorkerProcess() {
|
2016-07-31 08:57:41 +02:00
|
|
|
shutdown_signal_watchers();
|
|
|
|
|
|
|
|
ev_child_stop(loop, &worker_process_childev);
|
|
|
|
|
|
|
|
if (ipc_fd != -1) {
|
|
|
|
shutdown(ipc_fd, SHUT_WR);
|
|
|
|
close(ipc_fd);
|
2015-09-17 18:16:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
void shutdown_signal_watchers() {
|
|
|
|
ev_signal_stop(loop, &reopen_log_signalev);
|
|
|
|
ev_signal_stop(loop, &exec_binary_signalev);
|
|
|
|
ev_signal_stop(loop, &graceful_shutdown_signalev);
|
|
|
|
ev_signal_stop(loop, &reload_signalev);
|
|
|
|
}
|
|
|
|
|
|
|
|
ev_signal reopen_log_signalev;
|
|
|
|
ev_signal exec_binary_signalev;
|
|
|
|
ev_signal graceful_shutdown_signalev;
|
|
|
|
ev_signal reload_signalev;
|
|
|
|
ev_child worker_process_childev;
|
|
|
|
struct ev_loop *loop;
|
|
|
|
pid_t worker_pid;
|
|
|
|
int ipc_fd;
|
2015-09-17 18:16:49 +02:00
|
|
|
};
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
namespace {
|
2016-07-31 09:16:23 +02:00
|
|
|
void reload_config(WorkerProcess *wp);
|
2016-07-31 08:57:41 +02:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2016-07-31 09:16:23 +02:00
|
|
|
std::deque<std::unique_ptr<WorkerProcess>> worker_processes;
|
2016-07-31 08:57:41 +02:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2016-07-31 09:16:23 +02:00
|
|
|
void worker_process_add(std::unique_ptr<WorkerProcess> wp) {
|
|
|
|
worker_processes.push_back(std::move(wp));
|
2016-07-31 08:57:41 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2016-07-31 09:16:23 +02:00
|
|
|
void worker_process_remove(const WorkerProcess *wp) {
|
|
|
|
for (auto it = std::begin(worker_processes); it != std::end(worker_processes);
|
2016-07-31 08:57:41 +02:00
|
|
|
++it) {
|
|
|
|
auto &s = *it;
|
|
|
|
|
2016-07-31 09:16:23 +02:00
|
|
|
if (s.get() != wp) {
|
2016-07-31 08:57:41 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-07-31 09:16:23 +02:00
|
|
|
worker_processes.erase(it);
|
2016-07-31 08:57:41 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2016-07-31 09:16:23 +02:00
|
|
|
void worker_process_remove_all() {
|
|
|
|
std::deque<std::unique_ptr<WorkerProcess>>().swap(worker_processes);
|
2016-07-31 08:57:41 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
// Send signal |signum| to all worker processes, and clears
|
2016-07-31 09:16:23 +02:00
|
|
|
// worker_processes.
|
|
|
|
void worker_process_kill(int signum) {
|
|
|
|
for (auto &s : worker_processes) {
|
2016-07-31 08:57:41 +02:00
|
|
|
if (s->worker_pid == -1) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
kill(s->worker_pid, signum);
|
|
|
|
}
|
2016-07-31 13:26:03 +02:00
|
|
|
worker_process_remove_all();
|
2016-07-31 08:57:41 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2016-07-31 09:20:00 +02:00
|
|
|
namespace {
|
|
|
|
// Returns the last PID of worker process. Returns -1 if there is no
|
|
|
|
// worker process at the moment.
|
|
|
|
int worker_process_last_pid() {
|
|
|
|
if (worker_processes.empty()) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return worker_processes.back()->worker_pid;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2015-09-22 11:32:40 +02:00
|
|
|
namespace {
|
|
|
|
int chown_to_running_user(const char *path) {
|
2016-10-08 04:34:23 +02:00
|
|
|
auto config = get_config();
|
|
|
|
return chown(path, config->uid, config->gid);
|
2015-09-22 11:32:40 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2015-02-22 09:01:19 +01:00
|
|
|
namespace {
|
2016-07-31 13:35:10 +02:00
|
|
|
int save_pid() {
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
2016-10-08 04:34:23 +02:00
|
|
|
auto config = get_config();
|
|
|
|
|
2016-05-23 15:39:38 +02:00
|
|
|
constexpr auto SUFFIX = StringRef::from_lit(".XXXXXX");
|
2016-10-08 04:34:23 +02:00
|
|
|
auto &pid_file = config->pid_file;
|
2016-05-23 15:39:38 +02:00
|
|
|
|
2016-10-08 04:34:23 +02:00
|
|
|
auto len = config->pid_file.size() + SUFFIX.size();
|
2016-05-23 18:32:11 +02:00
|
|
|
auto buf = make_unique<char[]>(len + 1);
|
|
|
|
auto p = buf.get();
|
2016-05-23 15:39:38 +02:00
|
|
|
|
2016-05-23 18:32:11 +02:00
|
|
|
p = std::copy(std::begin(pid_file), std::end(pid_file), p);
|
|
|
|
p = std::copy(std::begin(SUFFIX), std::end(SUFFIX), p);
|
2016-05-23 15:39:38 +02:00
|
|
|
*p = '\0';
|
|
|
|
|
2016-05-23 18:32:11 +02:00
|
|
|
auto temp_path = buf.get();
|
|
|
|
|
|
|
|
auto fd = mkstemp(temp_path);
|
2016-05-23 15:39:38 +02:00
|
|
|
if (fd == -1) {
|
|
|
|
auto error = errno;
|
|
|
|
LOG(ERROR) << "Could not save PID to file " << pid_file << ": "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-07-31 13:35:10 +02:00
|
|
|
return -1;
|
2016-05-23 15:39:38 +02:00
|
|
|
}
|
|
|
|
|
2016-10-08 04:34:23 +02:00
|
|
|
auto content = util::utos(config->pid) + '\n';
|
2016-05-23 15:39:38 +02:00
|
|
|
|
|
|
|
if (write(fd, content.c_str(), content.size()) == -1) {
|
|
|
|
auto error = errno;
|
|
|
|
LOG(ERROR) << "Could not save PID to file " << pid_file << ": "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-07-31 13:35:10 +02:00
|
|
|
return -1;
|
2016-05-23 15:39:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fsync(fd) == -1) {
|
|
|
|
auto error = errno;
|
|
|
|
LOG(ERROR) << "Could not save PID to file " << pid_file << ": "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-07-31 13:35:10 +02:00
|
|
|
return -1;
|
2016-05-23 15:39:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
2016-05-23 18:32:11 +02:00
|
|
|
if (rename(temp_path, pid_file.c_str()) == -1) {
|
2016-05-23 15:39:38 +02:00
|
|
|
auto error = errno;
|
|
|
|
LOG(ERROR) << "Could not save PID to file " << pid_file << ": "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-05-23 15:39:38 +02:00
|
|
|
|
2016-05-23 18:32:11 +02:00
|
|
|
unlink(temp_path);
|
2016-05-23 15:39:38 +02:00
|
|
|
|
2016-07-31 13:35:10 +02:00
|
|
|
return -1;
|
2015-09-17 18:16:49 +02:00
|
|
|
}
|
|
|
|
|
2016-10-08 04:34:23 +02:00
|
|
|
if (config->uid != 0) {
|
2016-05-23 15:39:38 +02:00
|
|
|
if (chown_to_running_user(pid_file.c_str()) == -1) {
|
2015-09-17 18:16:49 +02:00
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(WARN) << "Changing owner of pid file " << pid_file << " failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-09-17 18:16:49 +02:00
|
|
|
}
|
|
|
|
}
|
2016-07-31 13:35:10 +02:00
|
|
|
|
|
|
|
return 0;
|
2015-09-17 18:16:49 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2016-07-31 13:26:03 +02:00
|
|
|
void exec_binary() {
|
2015-09-24 16:33:28 +02:00
|
|
|
int rv;
|
|
|
|
sigset_t oldset;
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
2015-09-17 18:16:49 +02:00
|
|
|
|
2015-09-24 16:33:28 +02:00
|
|
|
LOG(NOTICE) << "Executing new binary";
|
2015-09-17 18:16:49 +02:00
|
|
|
|
2015-09-24 16:33:28 +02:00
|
|
|
rv = shrpx_signal_block_all(&oldset);
|
|
|
|
if (rv != 0) {
|
2015-09-17 18:16:49 +02:00
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(ERROR) << "Blocking all signals failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-09-24 16:33:28 +02:00
|
|
|
|
2015-09-17 18:16:49 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-24 16:33:28 +02:00
|
|
|
auto pid = fork();
|
|
|
|
|
2015-09-17 18:16:49 +02:00
|
|
|
if (pid != 0) {
|
2015-09-24 16:33:28 +02:00
|
|
|
if (pid == -1) {
|
|
|
|
auto error = errno;
|
|
|
|
LOG(ERROR) << "fork() failed errno=" << error;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = shrpx_signal_set(&oldset);
|
|
|
|
|
|
|
|
if (rv != 0) {
|
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(FATAL) << "Restoring signal mask failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-09-24 16:33:28 +02:00
|
|
|
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2015-09-17 18:16:49 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-24 16:57:24 +02:00
|
|
|
// child process
|
|
|
|
|
2015-09-24 16:33:28 +02:00
|
|
|
shrpx_signal_unset_master_proc_ign_handler();
|
|
|
|
|
|
|
|
rv = shrpx_signal_unblock_all();
|
|
|
|
if (rv != 0) {
|
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(ERROR) << "Unblocking all signals failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-09-24 16:33:28 +02:00
|
|
|
|
2015-09-24 16:57:24 +02:00
|
|
|
_Exit(EXIT_FAILURE);
|
2015-09-24 16:33:28 +02:00
|
|
|
}
|
|
|
|
|
2016-07-31 09:34:55 +02:00
|
|
|
auto exec_path =
|
|
|
|
util::get_exec_path(suconfig.argc, suconfig.argv, suconfig.cwd);
|
2015-09-17 18:16:49 +02:00
|
|
|
|
|
|
|
if (!exec_path) {
|
|
|
|
LOG(ERROR) << "Could not resolve the executable path";
|
2015-09-24 16:57:24 +02:00
|
|
|
_Exit(EXIT_FAILURE);
|
2015-09-17 18:16:49 +02:00
|
|
|
}
|
|
|
|
|
2016-07-31 09:34:55 +02:00
|
|
|
auto argv = make_unique<char *[]>(suconfig.argc + 1);
|
2015-09-17 18:16:49 +02:00
|
|
|
|
|
|
|
argv[0] = exec_path;
|
2016-07-31 09:34:55 +02:00
|
|
|
for (int i = 1; i < suconfig.argc; ++i) {
|
|
|
|
argv[i] = suconfig.argv[i];
|
2015-09-17 18:16:49 +02:00
|
|
|
}
|
2016-07-31 09:34:55 +02:00
|
|
|
argv[suconfig.argc] = nullptr;
|
2015-09-17 18:16:49 +02:00
|
|
|
|
|
|
|
size_t envlen = 0;
|
|
|
|
for (char **p = environ; *p; ++p, ++envlen)
|
|
|
|
;
|
2015-09-18 15:48:45 +02:00
|
|
|
|
2016-01-19 08:56:12 +01:00
|
|
|
auto &listenerconf = get_config()->conn.listener;
|
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
auto envp = make_unique<char *[]>(envlen + listenerconf.addrs.size() + 1);
|
|
|
|
size_t envidx = 0;
|
2015-09-17 18:16:49 +02:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
std::vector<ImmutableString> fd_envs;
|
|
|
|
for (size_t i = 0; i < listenerconf.addrs.size(); ++i) {
|
|
|
|
auto &addr = listenerconf.addrs[i];
|
2016-03-24 17:07:22 +01:00
|
|
|
auto s = ENV_ACCEPT_PREFIX.str();
|
2016-01-31 11:41:56 +01:00
|
|
|
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);
|
2015-09-17 18:16:49 +02:00
|
|
|
}
|
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
fd_envs.emplace_back(s);
|
|
|
|
envp[envidx++] = const_cast<char *>(fd_envs.back().c_str());
|
2015-09-17 18:16:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < envlen; ++i) {
|
2016-03-24 17:07:22 +01:00
|
|
|
auto env = StringRef{environ[i]};
|
|
|
|
if (util::starts_with(env, ENV_ACCEPT_PREFIX) ||
|
|
|
|
util::starts_with(env, ENV_LISTENER4_FD) ||
|
|
|
|
util::starts_with(env, ENV_LISTENER6_FD) ||
|
|
|
|
util::starts_with(env, ENV_PORT) ||
|
|
|
|
util::starts_with(env, ENV_UNIX_FD) ||
|
|
|
|
util::starts_with(env, ENV_UNIX_PATH)) {
|
2015-02-22 09:01:19 +01:00
|
|
|
continue;
|
|
|
|
}
|
2015-09-17 18:16:49 +02:00
|
|
|
|
|
|
|
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;
|
2015-09-24 16:57:24 +02:00
|
|
|
_Exit(EXIT_FAILURE);
|
2015-09-17 18:16:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2016-07-31 09:16:23 +02:00
|
|
|
void ipc_send(WorkerProcess *wp, uint8_t ipc_event) {
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
2015-09-17 18:16:49 +02:00
|
|
|
ssize_t nwrite;
|
2016-07-31 09:16:23 +02:00
|
|
|
while ((nwrite = write(wp->ipc_fd, &ipc_event, 1)) == -1 && errno == EINTR)
|
2015-09-17 18:16:49 +02:00
|
|
|
;
|
|
|
|
|
|
|
|
if (nwrite < 0) {
|
|
|
|
auto error = errno;
|
|
|
|
LOG(ERROR) << "Could not send IPC event to worker process: "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-09-17 18:16:49 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nwrite == 0) {
|
|
|
|
LOG(ERROR) << "Could not send IPC event due to pipe overflow";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2016-07-31 09:16:23 +02:00
|
|
|
void reopen_log(WorkerProcess *wp) {
|
2015-09-17 18:16:49 +02:00
|
|
|
LOG(NOTICE) << "Reopening log files: master process";
|
|
|
|
|
|
|
|
(void)reopen_log_files();
|
|
|
|
redirect_stderr_to_errorlog();
|
2016-07-31 09:16:23 +02:00
|
|
|
ipc_send(wp, SHRPX_IPC_REOPEN_LOG);
|
2015-09-17 18:16:49 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void signal_cb(struct ev_loop *loop, ev_signal *w, int revents) {
|
2016-07-31 09:16:23 +02:00
|
|
|
auto wp = static_cast<WorkerProcess *>(w->data);
|
|
|
|
if (wp->worker_pid == -1) {
|
2015-09-17 18:16:49 +02:00
|
|
|
ev_break(loop);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (w->signum) {
|
|
|
|
case REOPEN_LOG_SIGNAL:
|
2016-07-31 09:16:23 +02:00
|
|
|
reopen_log(wp);
|
2015-09-17 18:16:49 +02:00
|
|
|
return;
|
|
|
|
case EXEC_BINARY_SIGNAL:
|
2016-07-31 13:26:03 +02:00
|
|
|
exec_binary();
|
2015-09-17 18:16:49 +02:00
|
|
|
return;
|
|
|
|
case GRACEFUL_SHUTDOWN_SIGNAL:
|
2016-07-31 09:16:23 +02:00
|
|
|
ipc_send(wp, SHRPX_IPC_GRACEFUL_SHUTDOWN);
|
2015-09-17 18:16:49 +02:00
|
|
|
return;
|
2016-07-31 08:57:41 +02:00
|
|
|
case RELOAD_SIGNAL:
|
2016-07-31 09:16:23 +02:00
|
|
|
reload_config(wp);
|
2016-07-31 08:57:41 +02:00
|
|
|
return;
|
2015-09-17 18:16:49 +02:00
|
|
|
default:
|
2016-07-31 09:16:23 +02:00
|
|
|
worker_process_kill(w->signum);
|
2015-09-17 18:16:49 +02:00
|
|
|
ev_break(loop);
|
|
|
|
return;
|
2015-02-22 09:01:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2015-09-17 18:16:49 +02:00
|
|
|
void worker_process_child_cb(struct ev_loop *loop, ev_child *w, int revents) {
|
2016-07-31 09:16:23 +02:00
|
|
|
auto wp = static_cast<WorkerProcess *>(w->data);
|
2016-07-31 08:57:41 +02:00
|
|
|
|
2015-09-23 12:45:53 +02:00
|
|
|
log_chld(w->rpid, w->rstatus, "Worker process");
|
2015-09-22 14:21:40 +02:00
|
|
|
|
2016-07-31 09:16:23 +02:00
|
|
|
auto pid = wp->worker_pid;
|
2015-09-17 18:16:49 +02:00
|
|
|
|
2016-07-31 09:16:23 +02:00
|
|
|
worker_process_remove(wp);
|
2016-07-31 08:57:41 +02:00
|
|
|
|
2016-07-31 09:20:00 +02:00
|
|
|
if (worker_process_last_pid() == pid) {
|
2016-07-31 08:57:41 +02:00
|
|
|
ev_break(loop);
|
|
|
|
}
|
2015-09-17 18:16:49 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
namespace {
|
2016-02-07 09:51:53 +01:00
|
|
|
int create_unix_domain_server_socket(UpstreamAddr &faddr,
|
2016-01-31 11:41:56 +01:00
|
|
|
std::vector<InheritedAddr> &iaddrs) {
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
2016-01-31 11:41:56 +01:00
|
|
|
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;
|
|
|
|
});
|
2015-02-22 09:01:19 +01:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
if (found != std::end(iaddrs)) {
|
2016-03-23 15:56:09 +01:00
|
|
|
LOG(NOTICE) << "Listening on UNIX domain socket " << faddr.host
|
|
|
|
<< (faddr.tls ? ", tls" : "");
|
2016-01-31 11:41:56 +01:00
|
|
|
(*found).used = true;
|
|
|
|
faddr.fd = (*found).fd;
|
2016-10-02 14:22:02 +02:00
|
|
|
faddr.hostport = StringRef::from_lit("localhost");
|
2015-02-22 09:01:19 +01:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
return 0;
|
2015-02-22 09:01:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SOCK_NONBLOCK
|
|
|
|
auto fd = socket(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK, 0);
|
|
|
|
if (fd == -1) {
|
2016-01-31 11:41:56 +01:00
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(WARN) << "socket() syscall failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-09-17 18:16:49 +02:00
|
|
|
return -1;
|
2015-02-22 09:01:19 +01:00
|
|
|
}
|
|
|
|
#else // !SOCK_NONBLOCK
|
|
|
|
auto fd = socket(AF_UNIX, SOCK_STREAM, 0);
|
|
|
|
if (fd == -1) {
|
2016-01-31 11:41:56 +01:00
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(WARN) << "socket() syscall failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-09-17 18:16:49 +02:00
|
|
|
return -1;
|
2015-02-22 09:01:19 +01:00
|
|
|
}
|
|
|
|
util::make_socket_nonblocking(fd);
|
|
|
|
#endif // !SOCK_NONBLOCK
|
|
|
|
int val = 1;
|
|
|
|
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &val,
|
|
|
|
static_cast<socklen_t>(sizeof(val))) == -1) {
|
2016-01-31 11:41:56 +01:00
|
|
|
auto error = errno;
|
|
|
|
LOG(WARN) << "Failed to set SO_REUSEADDR option to listener socket: "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-02-22 09:01:19 +01:00
|
|
|
close(fd);
|
2015-09-17 18:16:49 +02:00
|
|
|
return -1;
|
2015-02-22 09:01:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sockaddr_union addr;
|
|
|
|
addr.un.sun_family = AF_UNIX;
|
2016-01-31 11:41:56 +01:00
|
|
|
if (faddr.host.size() + 1 > sizeof(addr.un.sun_path)) {
|
|
|
|
LOG(FATAL) << "UNIX domain socket path " << faddr.host << " is too long > "
|
2015-02-22 09:01:19 +01:00
|
|
|
<< sizeof(addr.un.sun_path);
|
2015-02-22 09:53:12 +01:00
|
|
|
close(fd);
|
2015-09-17 18:16:49 +02:00
|
|
|
return -1;
|
2015-02-22 09:01:19 +01:00
|
|
|
}
|
|
|
|
// copy path including terminal NULL
|
2016-01-31 11:41:56 +01:00
|
|
|
std::copy_n(faddr.host.c_str(), faddr.host.size() + 1, addr.un.sun_path);
|
2015-02-22 09:01:19 +01:00
|
|
|
|
|
|
|
// unlink (remove) already existing UNIX domain socket path
|
2016-01-31 11:41:56 +01:00
|
|
|
unlink(faddr.host.c_str());
|
2015-02-22 09:01:19 +01:00
|
|
|
|
2015-02-22 09:53:12 +01:00
|
|
|
if (bind(fd, &addr.sa, sizeof(addr.un)) != 0) {
|
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(FATAL) << "Failed to bind UNIX domain socket: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-02-22 09:53:12 +01:00
|
|
|
close(fd);
|
2015-09-17 18:16:49 +02:00
|
|
|
return -1;
|
2015-02-22 09:53:12 +01:00
|
|
|
}
|
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
auto &listenerconf = get_config()->conn.listener;
|
|
|
|
|
2016-01-19 08:56:12 +01:00
|
|
|
if (listen(fd, listenerconf.backlog) != 0) {
|
2015-02-22 09:53:12 +01:00
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(FATAL) << "Failed to listen to UNIX domain socket: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-02-22 09:53:12 +01:00
|
|
|
close(fd);
|
2015-09-17 18:16:49 +02:00
|
|
|
return -1;
|
2015-02-22 09:01:19 +01:00
|
|
|
}
|
|
|
|
|
2016-03-23 15:56:09 +01:00
|
|
|
LOG(NOTICE) << "Listening on UNIX domain socket " << faddr.host
|
|
|
|
<< (faddr.tls ? ", tls" : "");
|
2015-02-22 09:01:19 +01:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
faddr.fd = fd;
|
2016-10-02 14:22:02 +02:00
|
|
|
faddr.hostport = StringRef::from_lit("localhost");
|
2016-01-31 11:41:56 +01:00
|
|
|
|
|
|
|
return 0;
|
2015-02-22 09:01:19 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-06-05 19:23:07 +02:00
|
|
|
namespace {
|
2016-02-07 09:51:53 +01:00
|
|
|
int create_tcp_server_socket(UpstreamAddr &faddr,
|
2016-01-31 11:41:56 +01:00
|
|
|
std::vector<InheritedAddr> &iaddrs) {
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
2012-06-04 16:48:31 +02:00
|
|
|
int fd = -1;
|
2014-07-06 12:21:18 +02:00
|
|
|
int rv;
|
2014-05-14 15:39:28 +02:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
auto &listenerconf = get_config()->conn.listener;
|
|
|
|
|
|
|
|
auto service = util::utos(faddr.port);
|
2015-07-19 10:55:37 +02:00
|
|
|
addrinfo hints{};
|
2016-01-31 11:41:56 +01:00
|
|
|
hints.ai_family = faddr.family;
|
2012-06-04 16:48:31 +02:00
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
hints.ai_flags = AI_PASSIVE;
|
|
|
|
#ifdef AI_ADDRCONFIG
|
|
|
|
hints.ai_flags |= AI_ADDRCONFIG;
|
|
|
|
#endif // AI_ADDRCONFIG
|
2012-06-06 15:43:35 +02:00
|
|
|
|
2016-03-24 16:07:21 +01:00
|
|
|
auto node =
|
|
|
|
faddr.host == StringRef::from_lit("*") ? nullptr : faddr.host.c_str();
|
2014-05-25 09:15:48 +02:00
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
addrinfo *res, *rp;
|
2014-07-06 12:21:18 +02:00
|
|
|
rv = getaddrinfo(node, service.c_str(), &hints, &res);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (rv != 0) {
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
2016-01-31 11:41:56 +01:00
|
|
|
LOG(INFO) << "Unable to get IPv" << (faddr.family == AF_INET ? "4" : "6")
|
|
|
|
<< " address for " << faddr.host << ", port " << faddr.port
|
|
|
|
<< ": " << gai_strerror(rv);
|
2013-01-21 14:42:49 +01:00
|
|
|
}
|
2015-09-17 18:16:49 +02:00
|
|
|
return -1;
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
2015-09-17 18:16:49 +02:00
|
|
|
|
|
|
|
auto res_d = defer(freeaddrinfo, res);
|
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
std::array<char, NI_MAXHOST> host;
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
for (rp = res; rp; rp = rp->ai_next) {
|
2016-01-31 11:41:56 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-01-10 16:28:00 +01:00
|
|
|
#ifdef SOCK_NONBLOCK
|
2014-12-27 18:59:06 +01:00
|
|
|
fd =
|
|
|
|
socket(rp->ai_family, rp->ai_socktype | SOCK_NONBLOCK, rp->ai_protocol);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (fd == -1) {
|
2015-06-06 17:02:30 +02:00
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(WARN) << "socket() syscall failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2012-06-04 16:48:31 +02:00
|
|
|
continue;
|
|
|
|
}
|
2015-01-10 16:28:00 +01:00
|
|
|
#else // !SOCK_NONBLOCK
|
|
|
|
fd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
|
|
|
|
if (fd == -1) {
|
2015-06-06 17:02:30 +02:00
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(WARN) << "socket() syscall failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-01-10 16:28:00 +01:00
|
|
|
continue;
|
|
|
|
}
|
2015-02-07 16:49:56 +01:00
|
|
|
util::make_socket_nonblocking(fd);
|
2015-01-10 16:28:00 +01:00
|
|
|
#endif // !SOCK_NONBLOCK
|
2012-06-04 16:48:31 +02:00
|
|
|
int val = 1;
|
2014-11-27 15:39:04 +01:00
|
|
|
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &val,
|
|
|
|
static_cast<socklen_t>(sizeof(val))) == -1) {
|
2015-06-06 17:02:30 +02:00
|
|
|
auto error = errno;
|
2016-01-31 11:41:56 +01:00
|
|
|
LOG(WARN) << "Failed to set SO_REUSEADDR option to listener socket: "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2012-06-04 16:48:31 +02:00
|
|
|
close(fd);
|
|
|
|
continue;
|
|
|
|
}
|
2014-12-27 18:59:06 +01:00
|
|
|
|
2012-06-06 15:43:35 +02:00
|
|
|
#ifdef IPV6_V6ONLY
|
2016-01-31 11:41:56 +01:00
|
|
|
if (faddr.family == AF_INET6) {
|
2014-11-27 15:39:04 +01:00
|
|
|
if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &val,
|
|
|
|
static_cast<socklen_t>(sizeof(val))) == -1) {
|
2015-06-06 17:02:30 +02:00
|
|
|
auto error = errno;
|
2016-01-31 11:41:56 +01:00
|
|
|
LOG(WARN) << "Failed to set IPV6_V6ONLY option to listener socket: "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2012-06-06 15:43:35 +02:00
|
|
|
close(fd);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // IPV6_V6ONLY
|
2015-01-29 13:14:44 +01:00
|
|
|
|
|
|
|
#ifdef TCP_DEFER_ACCEPT
|
|
|
|
val = 3;
|
|
|
|
if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &val,
|
|
|
|
static_cast<socklen_t>(sizeof(val))) == -1) {
|
2016-01-31 11:41:56 +01:00
|
|
|
auto error = errno;
|
|
|
|
LOG(WARN) << "Failed to set TCP_DEFER_ACCEPT option to listener socket: "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-01-29 13:14:44 +01:00
|
|
|
}
|
|
|
|
#endif // TCP_DEFER_ACCEPT
|
|
|
|
|
2015-06-06 17:05:33 +02:00
|
|
|
// 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.
|
2015-06-06 17:02:30 +02:00
|
|
|
if (bind(fd, rp->ai_addr, rp->ai_addrlen) == -1) {
|
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(WARN) << "bind() syscall failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-06-06 17:02:30 +02:00
|
|
|
close(fd);
|
|
|
|
continue;
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
2015-06-06 17:02:30 +02:00
|
|
|
|
2016-01-19 08:56:12 +01:00
|
|
|
if (listenerconf.fastopen > 0) {
|
|
|
|
val = listenerconf.fastopen;
|
2015-10-03 00:32:58 +02:00
|
|
|
if (setsockopt(fd, SOL_TCP, TCP_FASTOPEN, &val,
|
2015-10-14 16:23:34 +02:00
|
|
|
static_cast<socklen_t>(sizeof(val))) == -1) {
|
2016-01-31 11:41:56 +01:00
|
|
|
auto error = errno;
|
|
|
|
LOG(WARN) << "Failed to set TCP_FASTOPEN option to listener socket: "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-10-03 00:32:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-19 08:56:12 +01:00
|
|
|
if (listen(fd, listenerconf.backlog) == -1) {
|
2015-06-06 17:02:30 +02:00
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(WARN) << "listen() syscall failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-06-06 17:02:30 +02:00
|
|
|
close(fd);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
2014-07-06 12:21:18 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!rp) {
|
2016-01-31 11:41:56 +01:00
|
|
|
LOG(WARN) << "Listening " << (faddr.family == AF_INET ? "IPv4" : "IPv6")
|
2014-11-08 02:51:56 +01:00
|
|
|
<< " socket failed";
|
2014-07-06 12:21:18 +02:00
|
|
|
|
2015-09-17 18:16:49 +02:00
|
|
|
return -1;
|
2012-06-06 15:43:35 +02:00
|
|
|
}
|
2014-07-06 12:21:18 +02:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
faddr.fd = fd;
|
2016-10-02 14:22:02 +02:00
|
|
|
faddr.hostport = util::make_http_hostport(mod_config()->balloc,
|
|
|
|
StringRef{host.data()}, faddr.port);
|
2014-07-06 12:21:18 +02:00
|
|
|
|
2016-03-23 15:56:09 +01:00
|
|
|
LOG(NOTICE) << "Listening on " << faddr.hostport
|
|
|
|
<< (faddr.tls ? ", tls" : "");
|
2014-07-06 12:21:18 +02:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
2014-07-06 12:21:18 +02:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
namespace {
|
2016-07-31 08:57:41 +02:00
|
|
|
// Returns array of InheritedAddr constructed from |config|. This
|
|
|
|
// function is intended to be used when reloading configuration, and
|
|
|
|
// |config| is usually a current configuration.
|
2016-10-03 15:08:49 +02:00
|
|
|
std::vector<InheritedAddr>
|
|
|
|
get_inherited_addr_from_config(BlockAllocator &balloc, Config *config) {
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
2016-07-31 08:57:41 +02:00
|
|
|
int rv;
|
|
|
|
|
|
|
|
auto &listenerconf = config->conn.listener;
|
|
|
|
|
2016-07-31 11:47:03 +02:00
|
|
|
std::vector<InheritedAddr> iaddrs(listenerconf.addrs.size());
|
|
|
|
|
|
|
|
size_t idx = 0;
|
2016-07-31 08:57:41 +02:00
|
|
|
for (auto &addr : listenerconf.addrs) {
|
2016-07-31 11:47:03 +02:00
|
|
|
auto &iaddr = iaddrs[idx++];
|
2016-07-31 08:57:41 +02:00
|
|
|
|
|
|
|
if (addr.host_unix) {
|
|
|
|
iaddr.host = addr.host;
|
|
|
|
iaddr.host_unix = true;
|
|
|
|
iaddr.fd = addr.fd;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
iaddr.port = addr.port;
|
|
|
|
iaddr.fd = addr.fd;
|
|
|
|
|
|
|
|
// We have to getsockname/getnameinfo for fd, since we may have
|
|
|
|
// '*' appear in addr.host, which makes comparison against "real"
|
|
|
|
// address fail.
|
|
|
|
|
|
|
|
sockaddr_union su;
|
|
|
|
socklen_t salen = sizeof(su);
|
|
|
|
|
|
|
|
// We already added entry to iaddrs. Even if we got errors, we
|
|
|
|
// don't remove it. This is required because we have to close the
|
|
|
|
// socket if it is not reused. The empty host name usually does
|
|
|
|
// not match anything.
|
|
|
|
|
|
|
|
if (getsockname(addr.fd, &su.sa, &salen) != 0) {
|
|
|
|
auto error = errno;
|
|
|
|
LOG(WARN) << "getsockname() syscall failed (fd=" << addr.fd
|
2016-10-09 12:14:49 +02:00
|
|
|
<< "): " << xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-07-31 08:57:41 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::array<char, NI_MAXHOST> host;
|
|
|
|
rv = getnameinfo(&su.sa, salen, host.data(), host.size(), nullptr, 0,
|
|
|
|
NI_NUMERICHOST);
|
|
|
|
if (rv != 0) {
|
|
|
|
LOG(WARN) << "getnameinfo() failed (fd=" << addr.fd
|
|
|
|
<< "): " << gai_strerror(rv);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-10-03 15:08:49 +02:00
|
|
|
iaddr.host = make_string_ref(balloc, StringRef{host.data()});
|
2016-07-31 08:57:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return iaddrs;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
// Returns array of InheritedAddr constructed from environment
|
|
|
|
// variables. This function handles the old environment variable
|
|
|
|
// names used in 1.7.0 or earlier.
|
2016-10-02 14:22:02 +02:00
|
|
|
std::vector<InheritedAddr> get_inherited_addr_from_env(Config *config) {
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
2016-01-31 11:41:56 +01:00
|
|
|
int rv;
|
|
|
|
std::vector<InheritedAddr> iaddrs;
|
|
|
|
|
|
|
|
{
|
|
|
|
// Upgrade from 1.7.0 or earlier
|
2016-03-24 17:07:22 +01:00
|
|
|
auto portenv = getenv(ENV_PORT.c_str());
|
2016-01-31 11:41:56 +01:00
|
|
|
if (portenv) {
|
|
|
|
size_t i = 1;
|
|
|
|
for (auto env_name : {ENV_LISTENER4_FD, ENV_LISTENER6_FD}) {
|
2016-03-24 17:07:22 +01:00
|
|
|
auto fdenv = getenv(env_name.c_str());
|
2016-01-31 11:41:56 +01:00
|
|
|
if (fdenv) {
|
2016-03-24 17:07:22 +01:00
|
|
|
auto name = ENV_ACCEPT_PREFIX.str();
|
2016-01-31 11:41:56 +01:00
|
|
|
name += util::utos(i);
|
|
|
|
std::string value = "tcp,";
|
|
|
|
value += fdenv;
|
|
|
|
setenv(name.c_str(), value.c_str(), 0);
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2016-10-03 15:08:33 +02:00
|
|
|
// The return value of getenv may be allocated statically.
|
2016-10-02 14:22:02 +02:00
|
|
|
if (getenv(ENV_UNIX_PATH.c_str()) && getenv(ENV_UNIX_FD.c_str())) {
|
2016-03-24 17:07:22 +01:00
|
|
|
auto name = ENV_ACCEPT_PREFIX.str();
|
2016-01-31 11:41:56 +01:00
|
|
|
name += '1';
|
|
|
|
std::string value = "unix,";
|
2016-10-02 14:22:02 +02:00
|
|
|
value += getenv(ENV_UNIX_FD.c_str());
|
2016-01-31 11:41:56 +01:00
|
|
|
value += ',';
|
2016-10-02 14:22:02 +02:00
|
|
|
value += getenv(ENV_UNIX_PATH.c_str());
|
2016-01-31 11:41:56 +01:00
|
|
|
setenv(name.c_str(), value.c_str(), 0);
|
|
|
|
}
|
|
|
|
}
|
2014-07-06 12:21:18 +02:00
|
|
|
}
|
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
for (size_t i = 1;; ++i) {
|
2016-03-24 17:07:22 +01:00
|
|
|
auto name = ENV_ACCEPT_PREFIX.str();
|
2016-01-31 11:41:56 +01:00
|
|
|
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;
|
2012-06-06 15:43:35 +02:00
|
|
|
|
2016-03-24 16:07:21 +01:00
|
|
|
if (type == StringRef::from_lit("unix")) {
|
2016-01-31 11:41:56 +01:00
|
|
|
auto endfd = strchr(value, ',');
|
|
|
|
if (!endfd) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
auto fd = util::parse_uint(reinterpret_cast<const uint8_t *>(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{};
|
2016-10-02 14:22:02 +02:00
|
|
|
addr.host = make_string_ref(config->balloc, StringRef{path});
|
2016-01-31 11:41:56 +01:00
|
|
|
addr.host_unix = true;
|
|
|
|
addr.fd = static_cast<int>(fd);
|
|
|
|
iaddrs.push_back(std::move(addr));
|
|
|
|
}
|
|
|
|
|
2016-03-24 16:07:21 +01:00
|
|
|
if (type == StringRef::from_lit("tcp")) {
|
2016-01-31 11:41:56 +01:00
|
|
|
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
|
2016-10-09 12:14:49 +02:00
|
|
|
<< "): " << xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-01-31 11:41:56 +01:00
|
|
|
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<char, NI_MAXHOST> 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{};
|
2016-10-02 14:22:02 +02:00
|
|
|
addr.host = make_string_ref(config->balloc, StringRef{host.data()});
|
2016-01-31 11:41:56 +01:00
|
|
|
addr.port = static_cast<uint16_t>(port);
|
|
|
|
addr.fd = static_cast<int>(fd);
|
|
|
|
iaddrs.push_back(std::move(addr));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-30 16:58:19 +02:00
|
|
|
return iaddrs;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2016-07-31 08:57:41 +02:00
|
|
|
// Closes all sockets which are not reused.
|
|
|
|
void close_unused_inherited_addr(const std::vector<InheritedAddr> &iaddrs) {
|
2016-07-30 16:58:19 +02:00
|
|
|
for (auto &ia : iaddrs) {
|
|
|
|
if (ia.used) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(ia.fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2016-07-31 08:57:41 +02:00
|
|
|
int create_acceptor_socket(Config *config, std::vector<InheritedAddr> &iaddrs) {
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &listenerconf = config->conn.listener;
|
2016-07-30 16:58:19 +02:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
for (auto &addr : listenerconf.addrs) {
|
|
|
|
if (addr.host_unix) {
|
|
|
|
if (create_unix_domain_server_socket(addr, iaddrs) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
if (config->uid != 0) {
|
2016-01-31 11:41:56 +01:00
|
|
|
// 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
|
2016-10-09 12:14:49 +02:00
|
|
|
<< " failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-01-31 11:41:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (create_tcp_server_socket(addr, iaddrs) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-08-01 17:29:37 +02:00
|
|
|
namespace {
|
2015-09-17 18:16:49 +02:00
|
|
|
int call_daemon() {
|
|
|
|
#ifdef __sgi
|
|
|
|
return _daemonize(0, 0, 0, 0);
|
|
|
|
#else // !__sgi
|
|
|
|
return daemon(0, 0);
|
|
|
|
#endif // !__sgi
|
2012-08-01 17:29:37 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2014-07-05 11:22:40 +02:00
|
|
|
namespace {
|
2016-07-31 08:57:41 +02:00
|
|
|
// Opens IPC socket used to communicate with worker proess. The
|
|
|
|
// communication is unidirectional; that is main process sends
|
|
|
|
// messages to the worker process. On success, ipc_fd[0] is for
|
|
|
|
// reading, and ipc_fd[1] for writing, just like pipe(2).
|
|
|
|
int create_ipc_socket(std::array<int, 2> &ipc_fd) {
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
2016-07-31 08:57:41 +02:00
|
|
|
int rv;
|
|
|
|
|
|
|
|
rv = pipe(ipc_fd.data());
|
|
|
|
if (rv == -1) {
|
|
|
|
auto error = errno;
|
|
|
|
LOG(WARN) << "Failed to create pipe to communicate worker process: "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-07-31 08:57:41 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < 2; ++i) {
|
|
|
|
auto fd = ipc_fd[i];
|
|
|
|
util::make_socket_nonblocking(fd);
|
|
|
|
util::make_socket_closeonexec(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
// Creates worker process, and returns PID of worker process. On
|
|
|
|
// success, file descriptor for IPC (send only) is assigned to
|
2016-07-31 11:47:03 +02:00
|
|
|
// |main_ipc_fd|. In child process, we will close file descriptors
|
|
|
|
// which are inherited from previous configuration/process, but not
|
|
|
|
// used in the current configuration.
|
|
|
|
pid_t fork_worker_process(int &main_ipc_fd,
|
|
|
|
const std::vector<InheritedAddr> &iaddrs) {
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
2015-09-17 18:16:49 +02:00
|
|
|
int rv;
|
2015-09-24 16:33:28 +02:00
|
|
|
sigset_t oldset;
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
std::array<int, 2> ipc_fd;
|
|
|
|
|
|
|
|
rv = create_ipc_socket(ipc_fd);
|
|
|
|
if (rv != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-09-24 16:33:28 +02:00
|
|
|
rv = shrpx_signal_block_all(&oldset);
|
|
|
|
if (rv != 0) {
|
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(ERROR) << "Blocking all signals failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2014-08-12 15:22:02 +02:00
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
close(ipc_fd[0]);
|
|
|
|
close(ipc_fd[1]);
|
|
|
|
|
2015-07-23 14:09:16 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-09-24 16:33:28 +02:00
|
|
|
auto pid = fork();
|
|
|
|
|
2015-09-17 18:16:49 +02:00
|
|
|
if (pid == 0) {
|
2015-09-24 16:33:28 +02:00
|
|
|
ev_loop_fork(EV_DEFAULT);
|
|
|
|
|
2016-07-31 09:16:23 +02:00
|
|
|
// Remove all WorkerProcesses to stop any registered watcher on
|
2016-07-31 08:57:41 +02:00
|
|
|
// default loop.
|
2016-07-31 09:16:23 +02:00
|
|
|
worker_process_remove_all();
|
2016-07-31 08:57:41 +02:00
|
|
|
|
2016-07-31 11:47:03 +02:00
|
|
|
close_unused_inherited_addr(iaddrs);
|
|
|
|
|
2015-09-24 16:33:28 +02:00
|
|
|
shrpx_signal_set_worker_proc_ign_handler();
|
|
|
|
|
|
|
|
rv = shrpx_signal_unblock_all();
|
|
|
|
if (rv != 0) {
|
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(FATAL) << "Unblocking all signals failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-09-24 16:33:28 +02:00
|
|
|
|
2015-09-24 16:57:24 +02:00
|
|
|
_Exit(EXIT_FAILURE);
|
2015-09-24 16:33:28 +02:00
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
close(ipc_fd[1]);
|
|
|
|
WorkerProcessConfig wpconf{ipc_fd[0]};
|
2015-09-17 18:16:49 +02:00
|
|
|
rv = worker_process_event_loop(&wpconf);
|
|
|
|
if (rv != 0) {
|
2015-09-24 16:33:28 +02:00
|
|
|
LOG(FATAL) << "Worker process returned error";
|
|
|
|
|
2015-09-24 16:57:24 +02:00
|
|
|
_Exit(EXIT_FAILURE);
|
2015-07-27 17:54:44 +02:00
|
|
|
}
|
2015-09-24 16:33:28 +02:00
|
|
|
|
2015-09-24 17:11:35 +02:00
|
|
|
LOG(NOTICE) << "Worker process shutting down momentarily";
|
|
|
|
|
2016-01-21 09:12:40 +01:00
|
|
|
// call exit(...) instead of _Exit to get leak sanitizer report
|
2016-01-21 14:14:10 +01:00
|
|
|
_Exit(EXIT_SUCCESS);
|
2015-09-24 16:33:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// parent process
|
|
|
|
if (pid == -1) {
|
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(ERROR) << "Could not spawn worker process: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-09-24 16:33:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
rv = shrpx_signal_set(&oldset);
|
|
|
|
if (rv != 0) {
|
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(FATAL) << "Restoring signal mask failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-09-24 16:33:28 +02:00
|
|
|
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid == -1) {
|
2016-07-31 08:57:41 +02:00
|
|
|
close(ipc_fd[0]);
|
|
|
|
close(ipc_fd[1]);
|
|
|
|
|
2015-09-24 16:33:28 +02:00
|
|
|
return -1;
|
2015-07-27 17:54:44 +02:00
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
close(ipc_fd[0]);
|
|
|
|
|
|
|
|
main_ipc_fd = ipc_fd[1];
|
2015-07-27 17:54:44 +02:00
|
|
|
|
2015-09-23 12:45:53 +02:00
|
|
|
LOG(NOTICE) << "Worker process [" << pid << "] spawned";
|
2015-07-27 17:54:44 +02:00
|
|
|
|
2015-09-17 18:16:49 +02:00
|
|
|
return pid;
|
2015-06-27 10:51:07 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int event_loop() {
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
|
|
|
|
2015-09-24 16:33:28 +02:00
|
|
|
shrpx_signal_set_master_proc_ign_handler();
|
|
|
|
|
2016-10-08 04:34:23 +02:00
|
|
|
auto config = mod_config();
|
|
|
|
|
|
|
|
if (config->daemon) {
|
2015-06-27 10:51:07 +02:00
|
|
|
if (call_daemon() == -1) {
|
2014-08-13 15:13:08 +02:00
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(FATAL) << "Failed to daemonize: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-09-17 18:16:49 +02:00
|
|
|
return -1;
|
2012-10-28 06:29:27 +01:00
|
|
|
}
|
2014-11-27 13:32:34 +01:00
|
|
|
|
|
|
|
// We get new PID after successful daemon().
|
|
|
|
mod_config()->pid = getpid();
|
2015-04-08 09:59:58 +02:00
|
|
|
|
|
|
|
// daemon redirects stderr file descriptor to /dev/null, so we
|
|
|
|
// need this.
|
|
|
|
redirect_stderr_to_errorlog();
|
2012-10-28 06:29:27 +01:00
|
|
|
}
|
|
|
|
|
2016-10-23 12:55:58 +02:00
|
|
|
{
|
|
|
|
auto iaddrs = get_inherited_addr_from_env(config);
|
2016-07-30 16:58:19 +02:00
|
|
|
|
2016-10-23 12:55:58 +02:00
|
|
|
if (create_acceptor_socket(config, iaddrs) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2014-08-12 15:22:02 +02:00
|
|
|
|
2016-10-23 12:55:58 +02:00
|
|
|
close_unused_inherited_addr(iaddrs);
|
|
|
|
}
|
2016-07-30 16:58:19 +02:00
|
|
|
|
2016-10-08 04:34:23 +02:00
|
|
|
auto loop = ev_default_loop(config->ev_loop_flags);
|
2015-09-24 16:33:28 +02:00
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
int ipc_fd;
|
|
|
|
|
2016-07-31 11:47:03 +02:00
|
|
|
auto pid = fork_worker_process(ipc_fd, {});
|
2015-09-12 17:42:59 +02:00
|
|
|
|
2015-09-24 16:33:28 +02:00
|
|
|
if (pid == -1) {
|
2015-09-17 18:16:49 +02:00
|
|
|
return -1;
|
2014-07-05 11:22:40 +02:00
|
|
|
}
|
|
|
|
|
2016-07-31 09:16:23 +02:00
|
|
|
worker_process_add(make_unique<WorkerProcess>(loop, pid, ipc_fd));
|
2012-06-06 15:43:35 +02:00
|
|
|
|
2016-05-21 03:42:09 +02:00
|
|
|
// Write PID file when we are ready to accept connection from peer.
|
|
|
|
// This makes easier to write restart script for nghttpx. Because
|
|
|
|
// when we know that PID file is recreated, it means we can send
|
|
|
|
// QUIT signal to the old process to make it shutdown gracefully.
|
2016-10-08 04:34:23 +02:00
|
|
|
if (!config->pid_file.empty()) {
|
2016-05-21 03:42:09 +02:00
|
|
|
save_pid();
|
|
|
|
}
|
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
ev_run(loop, 0);
|
2014-07-05 11:22:40 +02:00
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-08-01 17:06:41 +02:00
|
|
|
namespace {
|
|
|
|
// Returns true if regular file or symbolic link |path| exists.
|
2014-11-27 15:39:04 +01:00
|
|
|
bool conf_exists(const char *path) {
|
2012-08-01 17:06:41 +02:00
|
|
|
struct stat buf;
|
|
|
|
int rv = stat(path, &buf);
|
|
|
|
return rv == 0 && (buf.st_mode & (S_IFREG | S_IFLNK));
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2013-09-23 13:55:39 +02:00
|
|
|
namespace {
|
2016-03-24 17:10:58 +01:00
|
|
|
constexpr auto DEFAULT_NPN_LIST = StringRef::from_lit("h2,h2-16,h2-14,"
|
2013-09-23 13:55:39 +02:00
|
|
|
#ifdef HAVE_SPDYLAY
|
2016-03-24 17:10:58 +01:00
|
|
|
"spdy/3.1,"
|
2013-09-23 13:55:39 +02:00
|
|
|
#endif // HAVE_SPDYLAY
|
2016-03-24 17:10:58 +01:00
|
|
|
"http/1.1");
|
2013-09-23 13:55:39 +02:00
|
|
|
} // namespace
|
|
|
|
|
2014-01-02 03:49:38 +01:00
|
|
|
namespace {
|
2016-03-24 17:10:58 +01:00
|
|
|
constexpr auto DEFAULT_TLS_PROTO_LIST = StringRef::from_lit("TLSv1.2,TLSv1.1");
|
2014-01-02 03:49:38 +01:00
|
|
|
} // namespace
|
|
|
|
|
2014-11-18 16:56:44 +01:00
|
|
|
namespace {
|
2016-03-24 17:10:58 +01:00
|
|
|
constexpr auto DEFAULT_ACCESSLOG_FORMAT = StringRef::from_lit(
|
2015-05-31 11:44:37 +02:00
|
|
|
R"($remote_addr - - [$time_local] )"
|
|
|
|
R"("$request" $status $body_bytes_sent )"
|
2016-03-24 17:10:58 +01:00
|
|
|
R"("$http_referer" "$http_user_agent")");
|
2014-11-18 16:56:44 +01:00
|
|
|
} // namespace
|
|
|
|
|
2012-06-06 16:58:19 +02:00
|
|
|
namespace {
|
2016-07-31 08:57:41 +02:00
|
|
|
void fill_default_config(Config *config) {
|
|
|
|
config->num_worker = 1;
|
2016-10-02 14:22:02 +02:00
|
|
|
config->conf_path = StringRef::from_lit("/etc/nghttpx/nghttpx.conf");
|
2016-07-31 08:57:41 +02:00
|
|
|
config->pid = getpid();
|
2016-01-18 06:21:09 +01:00
|
|
|
|
2016-05-06 16:10:09 +02:00
|
|
|
if (ev_supported_backends() & ~ev_recommended_backends() & EVBACKEND_KQUEUE) {
|
2016-07-31 08:57:41 +02:00
|
|
|
config->ev_loop_flags = ev_recommended_backends() | EVBACKEND_KQUEUE;
|
2016-05-06 16:10:09 +02:00
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &tlsconf = config->tls;
|
2016-01-18 06:21:09 +01:00
|
|
|
{
|
|
|
|
auto &ticketconf = tlsconf.ticket;
|
|
|
|
{
|
|
|
|
auto &memcachedconf = ticketconf.memcached;
|
|
|
|
memcachedconf.max_retry = 3;
|
|
|
|
memcachedconf.max_fail = 2;
|
|
|
|
memcachedconf.interval = 10_min;
|
2016-02-13 10:45:23 +01:00
|
|
|
memcachedconf.family = AF_UNSPEC;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto &session_cacheconf = tlsconf.session_cache;
|
|
|
|
{
|
|
|
|
auto &memcachedconf = session_cacheconf.memcached;
|
|
|
|
memcachedconf.family = AF_UNSPEC;
|
2016-01-18 06:21:09 +01:00
|
|
|
}
|
|
|
|
|
2016-02-06 16:16:14 +01:00
|
|
|
ticketconf.cipher = EVP_aes_128_cbc();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2016-01-18 06:21:09 +01:00
|
|
|
auto &ocspconf = tlsconf.ocsp;
|
|
|
|
// ocsp update interval = 14400 secs = 4 hours, borrowed from h2o
|
|
|
|
ocspconf.update_interval = 4_h;
|
2016-08-26 15:40:59 +02:00
|
|
|
ocspconf.fetch_ocsp_response_file =
|
2016-10-02 14:22:02 +02:00
|
|
|
StringRef::from_lit(PKGDATADIR "/fetch-ocsp-response");
|
2016-02-06 16:16:14 +01:00
|
|
|
}
|
2016-01-18 06:21:09 +01:00
|
|
|
|
2016-02-06 16:16:14 +01:00
|
|
|
{
|
2016-01-18 06:21:09 +01:00
|
|
|
auto &dyn_recconf = tlsconf.dyn_rec;
|
|
|
|
dyn_recconf.warmup_threshold = 1_m;
|
2016-01-19 09:27:56 +01:00
|
|
|
dyn_recconf.idle_timeout = 1_s;
|
2016-01-18 06:21:09 +01:00
|
|
|
}
|
2016-01-18 09:00:20 +01:00
|
|
|
|
2016-02-06 16:16:14 +01:00
|
|
|
tlsconf.session_timeout = std::chrono::hours(12);
|
2016-10-08 03:50:28 +02:00
|
|
|
#if OPENSSL_1_1_API
|
2016-10-08 04:44:03 +02:00
|
|
|
tlsconf.ecdh_curves = StringRef::from_lit("X25519:P-256:P-384:P-521");
|
2016-10-08 03:50:28 +02:00
|
|
|
#else // !OPENSSL_1_1_API
|
2016-10-08 04:44:03 +02:00
|
|
|
tlsconf.ecdh_curves = StringRef::from_lit("P-256:P-384:P-521");
|
2016-10-08 03:50:28 +02:00
|
|
|
#endif // !OPENSSL_1_1_API
|
2016-02-06 16:16:14 +01:00
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &httpconf = config->http;
|
2016-02-28 13:35:26 +01:00
|
|
|
httpconf.server_name =
|
2016-10-02 14:22:02 +02:00
|
|
|
StringRef::from_lit("nghttpx nghttp2/" NGHTTP2_VERSION);
|
2016-01-18 09:00:20 +01:00
|
|
|
httpconf.no_host_rewrite = true;
|
2016-02-06 09:22:23 +01:00
|
|
|
httpconf.request_header_field_buffer = 64_k;
|
|
|
|
httpconf.max_request_header_fields = 100;
|
2016-02-06 04:25:34 +01:00
|
|
|
httpconf.response_header_field_buffer = 64_k;
|
|
|
|
httpconf.max_response_header_fields = 500;
|
2016-01-18 09:00:20 +01:00
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &http2conf = config->http2;
|
2016-01-18 09:00:20 +01:00
|
|
|
{
|
|
|
|
auto &upstreamconf = http2conf.upstream;
|
2016-05-21 07:13:57 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
auto &timeoutconf = upstreamconf.timeout;
|
|
|
|
timeoutconf.settings = 10_s;
|
|
|
|
}
|
|
|
|
|
2016-09-09 14:05:37 +02:00
|
|
|
// window size 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_size = 64_k - 1;
|
|
|
|
// HTTP/2 and 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_size = 64_k - 1;
|
2016-02-27 16:06:40 +01:00
|
|
|
upstreamconf.max_concurrent_streams = 100;
|
2016-01-18 09:00:20 +01:00
|
|
|
|
2016-09-12 15:53:02 +02:00
|
|
|
upstreamconf.encoder_dynamic_table_size = 4_k;
|
|
|
|
upstreamconf.decoder_dynamic_table_size = 4_k;
|
|
|
|
|
2016-01-18 09:00:20 +01:00
|
|
|
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);
|
2016-09-12 15:53:02 +02:00
|
|
|
nghttp2_option_set_max_deflate_dynamic_table_size(
|
|
|
|
upstreamconf.option, upstreamconf.encoder_dynamic_table_size);
|
2016-06-02 16:47:41 +02:00
|
|
|
|
|
|
|
// For API endpoint, we enable automatic window update. This is
|
|
|
|
// because we are a sink.
|
2016-06-16 16:30:35 +02:00
|
|
|
nghttp2_option_new(&upstreamconf.alt_mode_option);
|
|
|
|
nghttp2_option_set_no_recv_client_magic(upstreamconf.alt_mode_option, 1);
|
2016-09-12 15:53:02 +02:00
|
|
|
nghttp2_option_set_max_deflate_dynamic_table_size(
|
|
|
|
upstreamconf.alt_mode_option, upstreamconf.encoder_dynamic_table_size);
|
2016-01-18 09:00:20 +01:00
|
|
|
}
|
2016-01-19 09:27:56 +01:00
|
|
|
|
2016-01-18 09:00:20 +01:00
|
|
|
{
|
|
|
|
auto &downstreamconf = http2conf.downstream;
|
2016-05-21 07:13:57 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
auto &timeoutconf = downstreamconf.timeout;
|
|
|
|
timeoutconf.settings = 10_s;
|
|
|
|
}
|
|
|
|
|
2016-09-09 14:05:37 +02:00
|
|
|
downstreamconf.window_size = 64_k - 1;
|
|
|
|
downstreamconf.connection_window_size = (1u << 31) - 1;
|
2016-02-27 16:06:40 +01:00
|
|
|
downstreamconf.max_concurrent_streams = 100;
|
2016-01-18 09:00:20 +01:00
|
|
|
|
2016-09-12 15:53:02 +02:00
|
|
|
downstreamconf.encoder_dynamic_table_size = 4_k;
|
|
|
|
downstreamconf.decoder_dynamic_table_size = 4_k;
|
|
|
|
|
2016-01-18 09:00:20 +01:00
|
|
|
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);
|
2016-09-12 15:53:02 +02:00
|
|
|
nghttp2_option_set_max_deflate_dynamic_table_size(
|
|
|
|
downstreamconf.option, downstreamconf.encoder_dynamic_table_size);
|
2016-01-18 09:00:20 +01:00
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &loggingconf = config->logging;
|
2016-01-18 09:26:27 +01:00
|
|
|
{
|
|
|
|
auto &accessconf = loggingconf.access;
|
2016-10-02 14:22:02 +02:00
|
|
|
accessconf.format =
|
|
|
|
parse_log_format(config->balloc, DEFAULT_ACCESSLOG_FORMAT);
|
2016-01-18 09:26:27 +01:00
|
|
|
|
|
|
|
auto &errorconf = loggingconf.error;
|
2016-10-02 14:22:02 +02:00
|
|
|
errorconf.file = StringRef::from_lit("/dev/stderr");
|
2016-01-18 09:26:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
loggingconf.syslog_facility = LOG_DAEMON;
|
2016-01-19 08:56:12 +01:00
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &connconf = config->conn;
|
2016-01-19 08:56:12 +01:00
|
|
|
{
|
|
|
|
auto &listenerconf = connconf.listener;
|
|
|
|
{
|
|
|
|
// Default accept() backlog
|
|
|
|
listenerconf.backlog = 512;
|
2016-01-19 09:03:01 +01:00
|
|
|
listenerconf.timeout.sleep = 30_s;
|
2016-01-19 08:56:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
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
|
2016-01-19 09:27:56 +01:00
|
|
|
timeoutconf.write = 30_s;
|
2016-01-19 08:56:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2016-06-03 12:13:02 +02:00
|
|
|
connconf.downstream = std::make_shared<DownstreamConfig>();
|
|
|
|
auto &downstreamconf = *connconf.downstream;
|
2016-01-19 08:56:12 +01:00
|
|
|
{
|
|
|
|
auto &timeoutconf = downstreamconf.timeout;
|
|
|
|
// Read/Write timeouts for downstream connection
|
|
|
|
timeoutconf.read = 1_min;
|
2016-01-19 09:27:56 +01:00
|
|
|
timeoutconf.write = 30_s;
|
2016-01-19 08:56:12 +01:00
|
|
|
// Timeout for pooled (idle) connections
|
2016-01-19 09:27:56 +01:00
|
|
|
timeoutconf.idle_read = 2_s;
|
2016-10-10 15:50:41 +02:00
|
|
|
timeoutconf.connect = 30_s;
|
2016-06-21 17:13:43 +02:00
|
|
|
timeoutconf.max_backoff = 120_s;
|
2016-01-19 08:56:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
downstreamconf.connections_per_host = 8;
|
|
|
|
downstreamconf.request_buffer_size = 16_k;
|
2016-01-20 03:16:49 +01:00
|
|
|
downstreamconf.response_buffer_size = 128_k;
|
2016-02-13 11:09:39 +01:00
|
|
|
downstreamconf.family = AF_UNSPEC;
|
2016-01-19 08:56:12 +01:00
|
|
|
}
|
2016-06-04 10:24:54 +02:00
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &apiconf = config->api;
|
2016-06-04 10:24:54 +02:00
|
|
|
apiconf.max_request_body = 16_k;
|
2016-12-10 09:48:28 +01:00
|
|
|
|
|
|
|
auto &dnsconf = config->dns;
|
|
|
|
{
|
|
|
|
auto &timeoutconf = dnsconf.timeout;
|
|
|
|
timeoutconf.cache = 10_s;
|
2016-12-10 16:50:16 +01:00
|
|
|
timeoutconf.lookup = 5_s;
|
2016-12-10 09:48:28 +01:00
|
|
|
}
|
2016-12-10 16:50:16 +01:00
|
|
|
dnsconf.max_try = 2;
|
2013-09-13 14:23:55 +02:00
|
|
|
}
|
2016-01-18 09:00:20 +01:00
|
|
|
|
2013-09-13 14:23:55 +02:00
|
|
|
} // namespace
|
|
|
|
|
2012-11-22 15:08:36 +01:00
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
void print_version(std::ostream &out) {
|
2016-01-18 09:00:20 +01:00
|
|
|
out << get_config()->http.server_name.c_str() << std::endl;
|
2012-11-22 15:08:36 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-06-06 16:58:19 +02:00
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
void print_usage(std::ostream &out) {
|
2014-03-22 14:03:13 +01:00
|
|
|
out << R"(Usage: nghttpx [OPTIONS]... [<PRIVATE_KEY> <CERT>]
|
2016-10-15 11:36:04 +02:00
|
|
|
A reverse proxy for HTTP/2, HTTP/1 and SPDY.)"
|
|
|
|
<< std::endl;
|
2012-06-06 16:58:19 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
void print_help(std::ostream &out) {
|
2016-10-08 04:34:23 +02:00
|
|
|
auto config = get_config();
|
|
|
|
|
2012-06-06 16:58:19 +02:00
|
|
|
print_usage(out);
|
2014-03-22 14:03:13 +01:00
|
|
|
out << R"(
|
2015-01-13 15:02:18 +01:00
|
|
|
<PRIVATE_KEY>
|
2016-02-28 13:35:26 +01:00
|
|
|
Set path to server's private key. Required unless
|
2016-04-29 15:47:49 +02:00
|
|
|
"no-tls" parameter is used in --frontend option.
|
2016-02-28 13:35:26 +01:00
|
|
|
<CERT> Set path to server's certificate. Required unless
|
2016-04-29 15:47:49 +02:00
|
|
|
"no-tls" parameter is used in --frontend option. To
|
|
|
|
make OCSP stapling work, this must be an absolute path.
|
2015-01-13 15:02:18 +01:00
|
|
|
|
2014-03-22 14:03:13 +01:00
|
|
|
Options:
|
|
|
|
The options are categorized into several groups.
|
|
|
|
|
|
|
|
Connections:
|
2016-10-09 10:18:29 +02:00
|
|
|
-b, --backend=(<HOST>,<PORT>|unix:<PATH>)[;[<PATTERN>[:...]][[;<PARAM>]...]
|
2016-04-18 16:45:33 +02:00
|
|
|
|
2015-03-10 13:54:29 +01:00
|
|
|
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
|
2015-07-11 05:43:48 +02:00
|
|
|
with "unix:" (e.g., unix:/var/run/backend.sock).
|
|
|
|
|
2015-07-09 19:52:11 +02:00
|
|
|
Optionally, if <PATTERN>s are given, the backend address
|
2016-02-28 13:35:26 +01:00
|
|
|
is only used if request matches the pattern. If
|
|
|
|
--http2-proxy is used, <PATTERN>s are ignored. The
|
|
|
|
pattern matching is closely designed to ServeMux in
|
|
|
|
net/http package of Go programming language. <PATTERN>
|
|
|
|
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/").
|
2015-07-14 16:44:58 +02:00
|
|
|
|
|
|
|
Patterns with host take precedence over patterns with
|
|
|
|
just path. Then, longer patterns take precedence over
|
2016-03-12 16:59:25 +01:00
|
|
|
shorter ones.
|
|
|
|
|
|
|
|
Host can include "*" in the left most position to
|
|
|
|
indicate wildcard match (only suffix match is done).
|
2016-03-22 14:40:23 +01:00
|
|
|
The "*" must match at least one character. For example,
|
|
|
|
host pattern "*.nghttp2.org" matches against
|
|
|
|
"www.nghttp2.org" and "git.ngttp2.org", but does not
|
|
|
|
match against "nghttp2.org". The exact hosts match
|
|
|
|
takes precedence over the wildcard hosts match.
|
2015-07-11 05:43:48 +02:00
|
|
|
|
2016-02-28 13:35:26 +01:00
|
|
|
If <PATTERN> is omitted or empty string, "/" is used as
|
|
|
|
pattern, which matches all request paths (catch-all
|
|
|
|
pattern). The catch-all backend must be given.
|
2015-07-11 05:43:48 +02:00
|
|
|
|
|
|
|
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 <PATTERN>s can be specified, delimiting
|
|
|
|
them by ":". Specifying
|
2015-07-09 19:52:11 +02:00
|
|
|
-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'
|
2015-07-14 16:44:58 +02:00
|
|
|
and -b'127.0.0.1,8080;www.nghttp2.org'.
|
2015-07-11 05:43:48 +02:00
|
|
|
|
|
|
|
The backend addresses sharing same <PATTERN> are grouped
|
2015-07-14 16:44:58 +02:00
|
|
|
together forming load balancing group.
|
|
|
|
|
2016-04-18 16:45:33 +02:00
|
|
|
Several parameters <PARAM> are accepted after <PATTERN>.
|
|
|
|
The parameters are delimited by ";". The available
|
2016-04-29 07:42:18 +02:00
|
|
|
parameters are: "proto=<PROTO>", "tls",
|
2016-12-04 15:43:41 +01:00
|
|
|
"sni=<SNI_HOST>", "fall=<N>", "rise=<N>",
|
|
|
|
"affinity=<METHOD>", and "dns". The parameter consists
|
|
|
|
of keyword, and optionally followed by "=" and value.
|
|
|
|
For example, the parameter "proto=h2" consists of the
|
|
|
|
keyword "proto" and value "h2". The parameter "tls"
|
|
|
|
consists of the keyword "tls" without value. Each
|
|
|
|
parameter is described as follows.
|
2016-04-18 16:45:33 +02:00
|
|
|
|
2016-04-25 14:53:41 +02:00
|
|
|
The backend application protocol can be specified using
|
2016-04-29 15:47:49 +02:00
|
|
|
optional "proto" parameter, and in the form of
|
2016-05-24 16:36:43 +02:00
|
|
|
"proto=<PROTO>". <PROTO> should be one of the following
|
|
|
|
list without quotes: "h2", "http/1.1". The default
|
|
|
|
value of <PROTO> is "http/1.1". Note that usually "h2"
|
|
|
|
refers to HTTP/2 over TLS. But in this option, it may
|
|
|
|
mean HTTP/2 over cleartext TCP unless "tls" keyword is
|
|
|
|
used (see below).
|
2016-03-23 14:56:18 +01:00
|
|
|
|
2016-04-29 15:47:49 +02:00
|
|
|
TLS can be enabled by specifying optional "tls"
|
|
|
|
parameter. TLS is not enabled by default.
|
2016-02-28 13:35:26 +01:00
|
|
|
|
2016-04-29 07:42:18 +02:00
|
|
|
With "sni=<SNI_HOST>" parameter, it can override the TLS
|
|
|
|
SNI field value with given <SNI_HOST>. This will
|
|
|
|
default to the backend <HOST> name
|
|
|
|
|
2016-04-25 14:53:41 +02:00
|
|
|
The feature to detect whether backend is online or
|
|
|
|
offline can be enabled using optional "fall" and "rise"
|
2016-04-09 14:58:08 +02:00
|
|
|
parameters. Using "fall=<N>" parameter, if nghttpx
|
|
|
|
cannot connect to a this backend <N> times in a row,
|
|
|
|
this backend is assumed to be offline, and it is
|
|
|
|
excluded from load balancing. If <N> is 0, this backend
|
|
|
|
never be excluded from load balancing whatever times
|
|
|
|
nghttpx cannot connect to it, and this is the default.
|
|
|
|
There is also "rise=<N>" parameter. After backend was
|
|
|
|
excluded from load balancing group, nghttpx periodically
|
|
|
|
attempts to make a connection to the failed backend, and
|
|
|
|
if the connection is made successfully <N> times in a
|
|
|
|
row, the backend is assumed to be online, and it is now
|
|
|
|
eligible for load balancing target. If <N> is 0, a
|
|
|
|
backend is permanently offline, once it goes in that
|
|
|
|
state, and this is the default behaviour.
|
|
|
|
|
2016-06-09 15:35:59 +02:00
|
|
|
The session affinity is enabled using
|
|
|
|
"affinity=<METHOD>" parameter. If "ip" is given in
|
|
|
|
<METHOD>, client IP based session affinity is enabled.
|
|
|
|
If "none" is given in <METHOD>, session affinity is
|
|
|
|
disabled, and this is the default. The session affinity
|
|
|
|
is enabled per <PATTERN>. If at least one backend has
|
|
|
|
"affinity" parameter, and its <METHOD> is not "none",
|
|
|
|
session affinity is enabled for all backend servers
|
|
|
|
sharing the same <PATTERN>. It is advised to set
|
|
|
|
"affinity" parameter to all backend explicitly if
|
|
|
|
session affinity is desired. The session affinity may
|
|
|
|
break if one of the backend gets unreachable, or backend
|
2016-06-26 15:33:17 +02:00
|
|
|
settings are reloaded or replaced by API.
|
2016-06-09 15:35:59 +02:00
|
|
|
|
2016-12-04 15:43:41 +01:00
|
|
|
By default, name resolution of backend host name is done
|
|
|
|
at start up, or reloading configuration. If "dns"
|
|
|
|
parameter is given, name resolution takes place
|
|
|
|
dynamically. This is useful if backend address changes
|
|
|
|
frequently. If "dns" is given, name resolution of
|
|
|
|
backend host name at start up, or reloading
|
|
|
|
configuration is skipped.
|
|
|
|
|
2015-07-14 16:44:58 +02:00
|
|
|
Since ";" and ":" are used as delimiter, <PATTERN> must
|
|
|
|
not contain these characters. Since ";" has special
|
|
|
|
meaning in shell, the option value must be quoted.
|
|
|
|
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< DEFAULT_DOWNSTREAM_HOST << "," << DEFAULT_DOWNSTREAM_PORT << R"(
|
2016-10-09 10:18:29 +02:00
|
|
|
-f, --frontend=(<HOST>,<PORT>|unix:<PATH>)[[;<PARAM>]...]
|
2015-01-13 15:02:18 +01:00
|
|
|
Set frontend host and port. If <HOST> is '*', it
|
2015-02-22 09:01:19 +01:00
|
|
|
assumes all addresses including both IPv4 and IPv6.
|
|
|
|
UNIX domain socket can be specified by prefixing path
|
2016-01-31 11:41:56 +01:00
|
|
|
name with "unix:" (e.g., unix:/var/run/nghttpx.sock).
|
|
|
|
This option can be used multiple times to listen to
|
|
|
|
multiple addresses.
|
2016-03-23 15:56:09 +01:00
|
|
|
|
2016-06-16 17:00:37 +02:00
|
|
|
This option can take 0 or more parameters, which are
|
2016-06-21 15:44:26 +02:00
|
|
|
described below. Note that "api" and "healthmon"
|
|
|
|
parameters are mutually exclusive.
|
2016-06-16 17:00:37 +02:00
|
|
|
|
2016-03-23 15:56:09 +01:00
|
|
|
Optionally, TLS can be disabled by specifying "no-tls"
|
2016-04-29 15:47:49 +02:00
|
|
|
parameter. TLS is enabled by default.
|
2016-03-23 15:56:09 +01:00
|
|
|
|
2016-06-04 11:48:16 +02:00
|
|
|
To make this frontend as API endpoint, specify "api"
|
|
|
|
parameter. This is disabled by default. It is
|
|
|
|
important to limit the access to the API frontend.
|
|
|
|
Otherwise, someone may change the backend server, and
|
|
|
|
break your services, or expose confidential information
|
|
|
|
to the outside the world.
|
|
|
|
|
2016-06-16 17:00:37 +02:00
|
|
|
To make this frontend as health monitor endpoint,
|
|
|
|
specify "healthmon" parameter. This is disabled by
|
|
|
|
default. Any requests which come through this address
|
|
|
|
are replied with 200 HTTP status, without no body.
|
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
Default: *,3000
|
2015-01-13 15:02:18 +01:00
|
|
|
--backlog=<N>
|
|
|
|
Set listen backlog size.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->conn.listener.backlog << R"(
|
2016-02-13 11:09:39 +01:00
|
|
|
--backend-address-family=(auto|IPv4|IPv6)
|
|
|
|
Specify address family of backend connections. If
|
|
|
|
"auto" is given, both IPv4 and IPv6 are considered. If
|
|
|
|
"IPv4" is given, only IPv4 address is considered. If
|
|
|
|
"IPv6" is given, only IPv6 address is considered.
|
|
|
|
Default: auto
|
2014-08-27 16:37:54 +02:00
|
|
|
--backend-http-proxy-uri=<URI>
|
2015-01-13 15:02:18 +01:00
|
|
|
Specify proxy URI in the form
|
|
|
|
http://[<USER>:<PASS>@]<PROXY>:<PORT>. If a proxy
|
|
|
|
requires authentication, specify <USER> and <PASS>.
|
|
|
|
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.
|
2015-09-06 16:27:07 +02:00
|
|
|
--accept-proxy-protocol
|
|
|
|
Accept PROXY protocol version 1 on frontend connection.
|
2014-03-22 14:03:13 +01:00
|
|
|
|
|
|
|
Performance:
|
2015-01-13 14:39:35 +01:00
|
|
|
-n, --workers=<N>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set the number of worker threads.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->num_worker << R"(
|
2015-01-13 13:54:53 +01:00
|
|
|
--read-rate=<SIZE>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set maximum average read rate on frontend connection.
|
|
|
|
Setting 0 to this option means read rate is unlimited.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->conn.upstream.ratelimit.read.rate << R"(
|
2014-08-17 09:17:10 +02:00
|
|
|
--read-burst=<SIZE>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set maximum read burst size on frontend connection.
|
|
|
|
Setting 0 to this option means read burst size is
|
|
|
|
unlimited.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->conn.upstream.ratelimit.read.burst << R"(
|
2015-01-13 13:54:53 +01:00
|
|
|
--write-rate=<SIZE>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set maximum average write rate on frontend connection.
|
|
|
|
Setting 0 to this option means write rate is unlimited.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->conn.upstream.ratelimit.write.rate << R"(
|
2014-08-17 09:17:10 +02:00
|
|
|
--write-burst=<SIZE>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set maximum write burst size on frontend connection.
|
|
|
|
Setting 0 to this option means write burst size is
|
|
|
|
unlimited.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->conn.upstream.ratelimit.write.burst << R"(
|
2015-01-13 13:54:53 +01:00
|
|
|
--worker-read-rate=<SIZE>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set maximum average read rate on frontend connection per
|
|
|
|
worker. Setting 0 to this option means read rate is
|
|
|
|
unlimited. Not implemented yet.
|
2016-01-19 08:56:12 +01:00
|
|
|
Default: 0
|
2014-03-22 14:03:13 +01:00
|
|
|
--worker-read-burst=<SIZE>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set maximum read burst size on frontend connection per
|
|
|
|
worker. Setting 0 to this option means read burst size
|
|
|
|
is unlimited. Not implemented yet.
|
2016-01-19 08:56:12 +01:00
|
|
|
Default: 0
|
2015-01-13 13:54:53 +01:00
|
|
|
--worker-write-rate=<SIZE>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set maximum average write rate on frontend connection
|
|
|
|
per worker. Setting 0 to this option means write rate
|
|
|
|
is unlimited. Not implemented yet.
|
2016-01-19 08:56:12 +01:00
|
|
|
Default: 0
|
2014-03-22 14:03:13 +01:00
|
|
|
--worker-write-burst=<SIZE>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set maximum write burst size on frontend connection per
|
|
|
|
worker. Setting 0 to this option means write burst size
|
|
|
|
is unlimited. Not implemented yet.
|
2016-01-19 08:56:12 +01:00
|
|
|
Default: 0
|
2015-01-13 14:39:35 +01:00
|
|
|
--worker-frontend-connections=<N>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set maximum number of simultaneous connections frontend
|
|
|
|
accepts. Setting 0 means unlimited.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->conn.upstream.worker_connections << R"(
|
2016-02-28 14:15:49 +01:00
|
|
|
--backend-connections-per-host=<N>
|
|
|
|
Set maximum number of backend concurrent connections
|
|
|
|
(and/or streams in case of HTTP/2) per origin host.
|
|
|
|
This option is meaningful when --http2-proxy 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
|
2016-02-28 13:35:26 +01:00
|
|
|
--backend-connections-per-frontend.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->conn.downstream->connections_per_host << R"(
|
2016-02-28 09:11:12 +01:00
|
|
|
--backend-connections-per-frontend=<N>
|
2016-02-28 14:15:49 +01:00
|
|
|
Set maximum number of backend concurrent connections
|
|
|
|
(and/or streams in case of HTTP/2) per frontend. This
|
|
|
|
option is only used for default mode. 0 means
|
|
|
|
unlimited. To limit the number of connections per host
|
|
|
|
with --http2-proxy option, use
|
|
|
|
--backend-connections-per-host.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->conn.downstream->connections_per_frontend << R"(
|
2015-01-10 15:17:48 +01:00
|
|
|
--rlimit-nofile=<N>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set maximum number of open files (RLIMIT_NOFILE) to <N>.
|
|
|
|
If 0 is given, nghttpx does not set the limit.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->rlimit_nofile << R"(
|
2015-01-13 15:30:28 +01:00
|
|
|
--backend-request-buffer=<SIZE>
|
|
|
|
Set buffer size used to store backend request.
|
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::utos_unit(config->conn.downstream->request_buffer_size) << R"(
|
2015-01-13 15:20:06 +01:00
|
|
|
--backend-response-buffer=<SIZE>
|
|
|
|
Set buffer size used to store backend response.
|
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::utos_unit(config->conn.downstream->response_buffer_size) << R"(
|
2015-10-03 00:32:58 +02:00
|
|
|
--fastopen=<N>
|
2015-10-14 16:44:30 +02:00
|
|
|
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.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->conn.listener.fastopen << R"(
|
2016-05-06 16:10:09 +02:00
|
|
|
--no-kqueue Don't use kqueue. This option is only applicable for
|
|
|
|
the platforms which have kqueue. For other platforms,
|
|
|
|
this option will be simply ignored.
|
|
|
|
|
2014-03-22 14:03:13 +01:00
|
|
|
Timeout:
|
2015-01-29 15:23:30 +01:00
|
|
|
--frontend-http2-read-timeout=<DURATION>
|
2015-01-13 15:02:18 +01:00
|
|
|
Specify read timeout for HTTP/2 and SPDY frontend
|
|
|
|
connection.
|
2015-01-27 16:36:44 +01:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->conn.upstream.timeout.http2_read) << R"(
|
2015-01-29 15:23:30 +01:00
|
|
|
--frontend-read-timeout=<DURATION>
|
2015-01-13 15:02:18 +01:00
|
|
|
Specify read timeout for HTTP/1.1 frontend connection.
|
2015-01-27 16:36:44 +01:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->conn.upstream.timeout.read) << R"(
|
2015-01-29 15:23:30 +01:00
|
|
|
--frontend-write-timeout=<DURATION>
|
2015-01-13 15:02:18 +01:00
|
|
|
Specify write timeout for all frontend connections.
|
2015-01-27 16:36:44 +01:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->conn.upstream.timeout.write) << R"(
|
2015-01-29 15:23:30 +01:00
|
|
|
--stream-read-timeout=<DURATION>
|
2015-01-13 15:02:18 +01:00
|
|
|
Specify read timeout for HTTP/2 and SPDY streams. 0
|
|
|
|
means no timeout.
|
2015-01-27 16:36:44 +01:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->http2.timeout.stream_read) << R"(
|
2015-01-29 15:23:30 +01:00
|
|
|
--stream-write-timeout=<DURATION>
|
2015-01-13 15:02:18 +01:00
|
|
|
Specify write timeout for HTTP/2 and SPDY streams. 0
|
|
|
|
means no timeout.
|
2015-01-27 16:36:44 +01:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->http2.timeout.stream_write) << R"(
|
2015-01-29 15:23:30 +01:00
|
|
|
--backend-read-timeout=<DURATION>
|
2015-01-13 15:02:18 +01:00
|
|
|
Specify read timeout for backend connection.
|
2015-01-27 16:36:44 +01:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->conn.downstream->timeout.read) << R"(
|
2015-01-29 15:23:30 +01:00
|
|
|
--backend-write-timeout=<DURATION>
|
2015-01-13 15:02:18 +01:00
|
|
|
Specify write timeout for backend connection.
|
2015-01-27 16:36:44 +01:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->conn.downstream->timeout.write) << R"(
|
2016-10-10 15:50:41 +02:00
|
|
|
--backend-connect-timeout=<DURATION>
|
|
|
|
Specify timeout before establishing TCP connection to
|
|
|
|
backend.
|
|
|
|
Default: )"
|
|
|
|
<< util::duration_str(config->conn.downstream->timeout.connect) << R"(
|
2015-01-29 15:23:30 +01:00
|
|
|
--backend-keep-alive-timeout=<DURATION>
|
2015-01-13 15:02:18 +01:00
|
|
|
Specify keep-alive timeout for backend connection.
|
2015-01-27 16:36:44 +01:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->conn.downstream->timeout.idle_read) << R"(
|
2015-01-29 15:23:30 +01:00
|
|
|
--listener-disable-timeout=<DURATION>
|
2015-01-13 15:02:18 +01:00
|
|
|
After accepting connection failed, connection listener
|
2015-01-27 16:36:44 +01:00
|
|
|
is disabled for a given amount of time. Specifying 0
|
2015-01-13 15:02:18 +01:00
|
|
|
disables this feature.
|
2015-01-27 16:36:44 +01:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->conn.listener.timeout.sleep) << R"(
|
2016-05-21 07:13:57 +02:00
|
|
|
--frontend-http2-setting-timeout=<DURATION>
|
|
|
|
Specify timeout before SETTINGS ACK is received from
|
|
|
|
client.
|
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->http2.upstream.timeout.settings) << R"(
|
2016-05-21 07:13:57 +02:00
|
|
|
--backend-http2-settings-timeout=<DURATION>
|
|
|
|
Specify timeout before SETTINGS ACK is received from
|
|
|
|
backend server.
|
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->http2.downstream.timeout.settings) << R"(
|
2016-06-21 17:13:43 +02:00
|
|
|
--backend-max-backoff=<DURATION>
|
|
|
|
Specify maximum backoff interval. This is used when
|
|
|
|
doing health check against offline backend (see "fail"
|
|
|
|
parameter in --backend option). It is also used to
|
|
|
|
limit the maximum interval to temporarily disable
|
|
|
|
backend when nghttpx failed to connect to it. These
|
|
|
|
intervals are calculated using exponential backoff, and
|
|
|
|
consecutive failed attempts increase the interval. This
|
|
|
|
option caps its maximum value.
|
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->conn.downstream->timeout.max_backoff) << R"(
|
2014-03-22 14:03:13 +01:00
|
|
|
|
|
|
|
SSL/TLS:
|
2015-01-13 15:02:18 +01:00
|
|
|
--ciphers=<SUITE>
|
|
|
|
Set allowed cipher list. The format of the string is
|
|
|
|
described in OpenSSL ciphers(1).
|
2016-10-08 03:50:28 +02:00
|
|
|
--ecdh-curves=<LIST>
|
|
|
|
Set supported curve list for frontend connections.
|
|
|
|
<LIST> is a colon separated list of curve NID or names
|
|
|
|
in the preference order. The supported curves depend on
|
|
|
|
the linked OpenSSL library. This function requires
|
|
|
|
OpenSSL >= 1.0.2.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->tls.ecdh_curves << R"(
|
2014-03-22 14:03:13 +01:00
|
|
|
-k, --insecure
|
2016-02-07 09:05:45 +01:00
|
|
|
Don't verify backend server's certificate if TLS is
|
|
|
|
enabled for backend connections.
|
2015-01-13 15:02:18 +01:00
|
|
|
--cacert=<PATH>
|
2016-02-07 09:05:45 +01:00
|
|
|
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.
|
2015-01-13 14:39:35 +01:00
|
|
|
--private-key-passwd-file=<PATH>
|
2015-01-13 15:02:18 +01:00
|
|
|
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.
|
2016-10-08 12:03:21 +02:00
|
|
|
--subcert=<KEYPATH>:<CERTPATH>[[;<PARAM>]...]
|
2015-01-13 15:02:18 +01:00
|
|
|
Specify additional certificate and private key file.
|
|
|
|
nghttpx will choose certificates based on the hostname
|
|
|
|
indicated by client using TLS SNI extension. This
|
2015-03-30 16:20:40 +02:00
|
|
|
option can be used multiple times. To make OCSP
|
|
|
|
stapling work, <CERTPATH> must be absolute path.
|
2016-10-08 12:03:21 +02:00
|
|
|
|
|
|
|
Additional parameter can be specified in <PARAM>. The
|
|
|
|
available <PARAM> is "sct-dir=<DIR>".
|
|
|
|
|
|
|
|
"sct-dir=<DIR>" specifies the path to directory which
|
|
|
|
contains *.sct files for TLS
|
|
|
|
signed_certificate_timestamp extension (RFC 6962). This
|
|
|
|
feature requires OpenSSL >= 1.0.2. See also
|
|
|
|
--tls-sct-dir option.
|
2014-03-22 14:03:13 +01:00
|
|
|
--dh-param-file=<PATH>
|
2015-01-13 15:02:18 +01:00
|
|
|
Path to file that contains DH parameters in PEM format.
|
|
|
|
Without this option, DHE cipher suites are not
|
|
|
|
available.
|
|
|
|
--npn-list=<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.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< DEFAULT_NPN_LIST << R"(
|
2015-01-13 15:02:18 +01:00
|
|
|
--verify-client
|
|
|
|
Require and verify client certificate.
|
2014-03-22 14:03:13 +01:00
|
|
|
--verify-client-cacert=<PATH>
|
2015-01-13 15:02:18 +01:00
|
|
|
Path to file that contains CA certificates to verify
|
|
|
|
client certificate. The file must be in PEM format. It
|
|
|
|
can contain multiple certificates.
|
2014-03-22 14:03:13 +01:00
|
|
|
--client-private-key-file=<PATH>
|
2015-01-13 15:02:18 +01:00
|
|
|
Path to file that contains client private key used in
|
|
|
|
backend client authentication.
|
2014-03-22 14:03:13 +01:00
|
|
|
--client-cert-file=<PATH>
|
2015-01-13 15:02:18 +01:00
|
|
|
Path to file that contains client certificate used in
|
|
|
|
backend client authentication.
|
2014-03-22 14:03:13 +01:00
|
|
|
--tls-proto-list=<LIST>
|
2015-01-13 15:02:18 +01:00
|
|
|
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
|
2015-10-14 16:23:43 +02:00
|
|
|
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".
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< DEFAULT_TLS_PROTO_LIST << R"(
|
2015-01-13 14:39:35 +01:00
|
|
|
--tls-ticket-key-file=<PATH>
|
2015-07-17 18:49:20 +02:00
|
|
|
Path to file that contains random data to construct TLS
|
|
|
|
session ticket parameters. If aes-128-cbc is given in
|
2015-07-28 16:49:37 +02:00
|
|
|
--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.
|
2016-03-23 16:22:13 +01:00
|
|
|
--tls-ticket-key-memcached=<HOST>,<PORT>[;tls]
|
2016-02-13 10:17:11 +01:00
|
|
|
Specify address of memcached server to get TLS ticket
|
|
|
|
keys for session resumption. 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
|
2016-03-23 16:22:13 +01:00
|
|
|
to know the data format in memcached entry. Optionally,
|
|
|
|
memcached connection can be encrypted with TLS by
|
2016-04-29 15:47:49 +02:00
|
|
|
specifying "tls" parameter.
|
2016-02-13 10:45:23 +01:00
|
|
|
--tls-ticket-key-memcached-address-family=(auto|IPv4|IPv6)
|
|
|
|
Specify address family of memcached connections to get
|
|
|
|
TLS ticket keys. If "auto" is given, both IPv4 and IPv6
|
|
|
|
are considered. If "IPv4" is given, only IPv4 address
|
|
|
|
is considered. If "IPv6" is given, only IPv6 address is
|
|
|
|
considered.
|
|
|
|
Default: auto
|
2015-07-27 18:02:33 +02:00
|
|
|
--tls-ticket-key-memcached-interval=<DURATION>
|
|
|
|
Set interval to get TLS ticket keys from memcached.
|
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->tls.ticket.memcached.interval) << R"(
|
2015-07-27 18:17:29 +02:00
|
|
|
--tls-ticket-key-memcached-max-retry=<N>
|
|
|
|
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.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->tls.ticket.memcached.max_retry << R"(
|
2015-07-27 18:17:29 +02:00
|
|
|
--tls-ticket-key-memcached-max-fail=<N>
|
|
|
|
Set maximum number of consecutive failure before
|
|
|
|
disabling TLS ticket until next scheduled key retrieval.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->tls.ticket.memcached.max_fail << R"(
|
2015-07-28 16:49:37 +02:00
|
|
|
--tls-ticket-key-cipher=<CIPHER>
|
2015-07-28 16:43:32 +02:00
|
|
|
Specify cipher to encrypt TLS session ticket. Specify
|
|
|
|
either aes-128-cbc or aes-256-cbc. By default,
|
|
|
|
aes-128-cbc is used.
|
2016-02-13 10:17:11 +01:00
|
|
|
--tls-ticket-key-memcached-cert-file=<PATH>
|
|
|
|
Path to client certificate for memcached connections to
|
|
|
|
get TLS ticket keys.
|
|
|
|
--tls-ticket-key-memcached-private-key-file=<PATH>
|
|
|
|
Path to client private key for memcached connections to
|
|
|
|
get TLS ticket keys.
|
2015-07-28 16:43:32 +02:00
|
|
|
--fetch-ocsp-response-file=<PATH>
|
|
|
|
Path to fetch-ocsp-response script file. It should be
|
|
|
|
absolute path.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->tls.ocsp.fetch_ocsp_response_file << R"(
|
2015-07-28 16:43:32 +02:00
|
|
|
--ocsp-update-interval=<DURATION>
|
|
|
|
Set interval to update OCSP response cache.
|
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->tls.ocsp.update_interval) << R"(
|
2015-07-28 16:43:32 +02:00
|
|
|
--no-ocsp Disable OCSP stapling.
|
2016-03-23 16:22:13 +01:00
|
|
|
--tls-session-cache-memcached=<HOST>,<PORT>[;tls]
|
2015-07-28 16:43:32 +02:00
|
|
|
Specify address of memcached server to store session
|
|
|
|
cache. This enables shared session cache between
|
2016-03-23 16:22:13 +01:00
|
|
|
multiple nghttpx instances. Optionally, memcached
|
|
|
|
connection can be encrypted with TLS by specifying "tls"
|
2016-04-29 15:47:49 +02:00
|
|
|
parameter.
|
2016-02-13 10:45:23 +01:00
|
|
|
--tls-session-cache-memcached-address-family=(auto|IPv4|IPv6)
|
|
|
|
Specify address family of memcached connections to store
|
|
|
|
session cache. If "auto" is given, both IPv4 and IPv6
|
|
|
|
are considered. If "IPv4" is given, only IPv4 address
|
|
|
|
is considered. If "IPv6" is given, only IPv6 address is
|
|
|
|
considered.
|
|
|
|
Default: auto
|
2016-02-12 16:20:38 +01:00
|
|
|
--tls-session-cache-memcached-cert-file=<PATH>
|
|
|
|
Path to client certificate for memcached connections to
|
|
|
|
store session cache.
|
|
|
|
--tls-session-cache-memcached-private-key-file=<PATH>
|
|
|
|
Path to client private key for memcached connections to
|
|
|
|
store session cache.
|
2015-10-21 12:22:46 +02:00
|
|
|
--tls-dyn-rec-warmup-threshold=<SIZE>
|
2015-10-25 09:09:33 +01:00
|
|
|
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
|
2015-10-21 12:22:46 +02:00
|
|
|
frontends, and TLS HTTP/2 backends.
|
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::utos_unit(config->tls.dyn_rec.warmup_threshold) << R"(
|
2015-10-21 12:22:46 +02:00
|
|
|
--tls-dyn-rec-idle-timeout=<DURATION>
|
2015-10-25 09:09:33 +01:00
|
|
|
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.
|
2015-10-21 12:22:46 +02:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::duration_str(config->tls.dyn_rec.idle_timeout) << R"(
|
2016-02-06 09:05:14 +01:00
|
|
|
--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.
|
2016-10-08 12:03:21 +02:00
|
|
|
--tls-sct-dir=<DIR>
|
|
|
|
Specifies the directory where *.sct files exist. All
|
|
|
|
*.sct files in <DIR> are read, and sent as
|
|
|
|
extension_data of TLS signed_certificate_timestamp (RFC
|
|
|
|
6962) to client. These *.sct files are for the
|
|
|
|
certificate specified in positional command-line
|
|
|
|
argument <CERT>, or certificate option in configuration
|
|
|
|
file. For additional certificates, use --subcert
|
|
|
|
option. This option requires OpenSSL >= 1.0.2.
|
2014-03-22 14:03:13 +01:00
|
|
|
|
|
|
|
HTTP/2 and SPDY:
|
2016-02-27 16:06:40 +01:00
|
|
|
-c, --frontend-http2-max-concurrent-streams=<N>
|
|
|
|
Set the maximum number of the concurrent streams in one
|
|
|
|
frontend HTTP/2 and SPDY session.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->http2.upstream.max_concurrent_streams << R"(
|
2016-02-27 16:06:40 +01:00
|
|
|
--backend-http2-max-concurrent-streams=<N>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set the maximum number of the concurrent streams in one
|
2016-02-27 16:06:40 +01:00
|
|
|
backend HTTP/2 session. This sets maximum number of
|
|
|
|
concurrent opened pushed streams. The maximum number of
|
|
|
|
concurrent requests are set by a remote server.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->http2.downstream.max_concurrent_streams << R"(
|
2016-09-09 14:05:37 +02:00
|
|
|
--frontend-http2-window-size=<SIZE>
|
|
|
|
Sets the per-stream initial window size of HTTP/2 and
|
|
|
|
SPDY frontend connection.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->http2.upstream.window_size << R"(
|
2016-09-09 14:05:37 +02:00
|
|
|
--frontend-http2-connection-window-size=<SIZE>
|
2015-01-13 15:02:18 +01:00
|
|
|
Sets the per-connection window size of HTTP/2 and SPDY
|
2016-09-09 14:05:37 +02:00
|
|
|
frontend connection. For SPDY connection, the value
|
|
|
|
less than 64KiB is rounded up to 64KiB.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->http2.upstream.connection_window_size << R"(
|
2016-09-09 14:05:37 +02:00
|
|
|
--backend-http2-window-size=<SIZE>
|
2015-01-13 15:02:18 +01:00
|
|
|
Sets the initial window size of HTTP/2 backend
|
2016-09-09 14:05:37 +02:00
|
|
|
connection.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->http2.downstream.window_size << R"(
|
2016-09-09 14:05:37 +02:00
|
|
|
--backend-http2-connection-window-size=<SIZE>
|
2015-01-13 15:02:18 +01:00
|
|
|
Sets the per-connection window size of HTTP/2 backend
|
2016-09-09 14:05:37 +02:00
|
|
|
connection.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->http2.downstream.connection_window_size << R"(
|
2014-03-22 14:03:13 +01:00
|
|
|
--http2-no-cookie-crumbling
|
2015-01-13 15:02:18 +01:00
|
|
|
Don't crumble cookie header field.
|
|
|
|
--padding=<N>
|
|
|
|
Add at most <N> 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.
|
2015-02-08 08:19:12 +01:00
|
|
|
--no-server-push
|
2015-11-15 16:12:54 +01:00
|
|
|
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
|
2016-02-28 15:12:57 +01:00
|
|
|
HTTP/2 in default mode. In this case, server push from
|
|
|
|
backend session is relayed to frontend, and server push
|
|
|
|
via Link header field is also supported. SPDY frontend
|
|
|
|
does not support server push.
|
2016-09-08 15:49:36 +02:00
|
|
|
--frontend-http2-optimize-write-buffer-size
|
|
|
|
(Experimental) Enable write buffer size optimization in
|
|
|
|
frontend HTTP/2 TLS connection. This optimization aims
|
|
|
|
to reduce write buffer size so that it only contains
|
|
|
|
bytes which can send immediately. This makes server
|
|
|
|
more responsive to prioritized HTTP/2 stream because the
|
|
|
|
buffering of lower priority stream is reduced. This
|
|
|
|
option is only effective on recent Linux platform.
|
|
|
|
--frontend-http2-optimize-window-size
|
|
|
|
(Experimental) Automatically tune connection level
|
|
|
|
window size of frontend HTTP/2 TLS connection. If this
|
|
|
|
feature is enabled, connection window size starts with
|
|
|
|
the default window size, 65535 bytes. nghttpx
|
|
|
|
automatically adjusts connection window size based on
|
|
|
|
TCP receiving window size. The maximum window size is
|
|
|
|
capped by the value specified by
|
2016-09-09 14:05:37 +02:00
|
|
|
--frontend-http2-connection-window-size. Since the
|
2016-09-08 15:49:36 +02:00
|
|
|
stream is subject to stream level window size, it should
|
2016-09-09 14:05:37 +02:00
|
|
|
be adjusted using --frontend-http2-window-size option as
|
2016-09-08 15:49:36 +02:00
|
|
|
well. This option is only effective on recent Linux
|
|
|
|
platform.
|
2016-09-12 15:53:02 +02:00
|
|
|
--frontend-http2-encoder-dynamic-table-size=<SIZE>
|
|
|
|
Specify the maximum dynamic table size of HPACK encoder
|
|
|
|
in the frontend HTTP/2 connection. The decoder (client)
|
|
|
|
specifies the maximum dynamic table size it accepts.
|
|
|
|
Then the negotiated dynamic table size is the minimum of
|
2016-09-17 15:37:13 +02:00
|
|
|
this option value and the value which client specified.
|
2016-09-12 15:53:02 +02:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::utos_unit(config->http2.upstream.encoder_dynamic_table_size)
|
|
|
|
<< R"(
|
2016-09-12 15:53:02 +02:00
|
|
|
--frontend-http2-decoder-dynamic-table-size=<SIZE>
|
|
|
|
Specify the maximum dynamic table size of HPACK decoder
|
|
|
|
in the frontend HTTP/2 connection.
|
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::utos_unit(config->http2.upstream.decoder_dynamic_table_size)
|
|
|
|
<< R"(
|
2016-09-12 15:53:02 +02:00
|
|
|
--backend-http2-encoder-dynamic-table-size=<SIZE>
|
|
|
|
Specify the maximum dynamic table size of HPACK encoder
|
|
|
|
in the backend HTTP/2 connection. The decoder (backend)
|
|
|
|
specifies the maximum dynamic table size it accepts.
|
|
|
|
Then the negotiated dynamic table size is the minimum of
|
2016-09-17 15:37:13 +02:00
|
|
|
this option value and the value which backend specified.
|
2016-09-12 15:53:02 +02:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::utos_unit(config->http2.downstream.encoder_dynamic_table_size)
|
|
|
|
<< R"(
|
2016-09-12 15:53:02 +02:00
|
|
|
--backend-http2-decoder-dynamic-table-size=<SIZE>
|
|
|
|
Specify the maximum dynamic table size of HPACK decoder
|
|
|
|
in the backend HTTP/2 connection.
|
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::utos_unit(config->http2.downstream.decoder_dynamic_table_size)
|
|
|
|
<< R"(
|
2014-03-22 14:03:13 +01:00
|
|
|
|
|
|
|
Mode:
|
2015-01-13 15:02:18 +01:00
|
|
|
(default mode)
|
2016-03-24 18:14:39 +01:00
|
|
|
Accept HTTP/2, SPDY and HTTP/1.1 over SSL/TLS. "no-tls"
|
2016-04-29 15:47:49 +02:00
|
|
|
parameter is used in --frontend option, accept HTTP/2
|
|
|
|
and HTTP/1.1 over cleartext TCP. The incoming HTTP/1.1
|
2016-03-24 18:14:39 +01:00
|
|
|
connection can be upgraded to HTTP/2 through HTTP
|
|
|
|
Upgrade.
|
2015-01-13 15:02:18 +01:00
|
|
|
-s, --http2-proxy
|
2016-02-28 13:35:26 +01:00
|
|
|
Like default mode, but enable forward proxy. This is so
|
|
|
|
called HTTP/2 proxy mode.
|
2014-03-22 14:03:13 +01:00
|
|
|
|
|
|
|
Logging:
|
|
|
|
-L, --log-level=<LEVEL>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set the severity level of log output. <LEVEL> must be
|
|
|
|
one of INFO, NOTICE, WARN, ERROR and FATAL.
|
|
|
|
Default: NOTICE
|
2014-07-05 11:22:40 +02:00
|
|
|
--accesslog-file=<PATH>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set path to write access log. To reopen file, send USR1
|
|
|
|
signal to nghttpx.
|
2014-07-05 11:22:40 +02:00
|
|
|
--accesslog-syslog
|
2015-01-13 15:02:18 +01:00
|
|
|
Send access log to syslog. If this option is used,
|
|
|
|
--accesslog-file option is ignored.
|
2014-11-18 16:56:44 +01:00
|
|
|
--accesslog-format=<FORMAT>
|
2015-01-13 15:02:18 +01:00
|
|
|
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_<VAR>: value of HTTP request header <VAR> where
|
|
|
|
'_' in <VAR> 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.
|
2015-06-28 09:37:17 +02:00
|
|
|
* $ssl_cipher: cipher used for SSL/TLS connection.
|
|
|
|
* $ssl_protocol: protocol for SSL/TLS connection.
|
|
|
|
* $ssl_session_id: session ID for SSL/TLS connection.
|
2015-06-28 15:15:04 +02:00
|
|
|
* $ssl_session_reused: "r" if SSL/TLS session was
|
|
|
|
reused. Otherwise, "."
|
2016-08-04 17:04:47 +02:00
|
|
|
* $backend_host: backend host used to fulfill the
|
|
|
|
request. "-" if backend host is not available.
|
|
|
|
* $backend_port: backend port used to fulfill the
|
|
|
|
request. "-" if backend host is not available.
|
2015-01-13 15:02:18 +01:00
|
|
|
|
2015-07-14 15:25:52 +02:00
|
|
|
The variable can be enclosed by "{" and "}" for
|
|
|
|
disambiguation (e.g., ${remote_addr}).
|
|
|
|
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< DEFAULT_ACCESSLOG_FORMAT << R"(
|
2014-07-05 11:22:40 +02:00
|
|
|
--errorlog-file=<PATH>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set path to write error log. To reopen file, send USR1
|
2015-04-08 10:33:18 +02:00
|
|
|
signal to nghttpx. stderr will be redirected to the
|
|
|
|
error log file unless --errorlog-syslog is used.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->logging.error.file << R"(
|
2015-01-13 15:02:18 +01:00
|
|
|
--errorlog-syslog
|
|
|
|
Send error log to syslog. If this option is used,
|
|
|
|
--errorlog-file option is ignored.
|
2014-03-22 14:03:13 +01:00
|
|
|
--syslog-facility=<FACILITY>
|
2015-01-13 15:02:18 +01:00
|
|
|
Set syslog facility to <FACILITY>.
|
2016-01-18 09:26:27 +01:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< str_syslog_facility(config->logging.syslog_facility) << R"(
|
2014-03-22 14:03:13 +01:00
|
|
|
|
2015-01-15 15:19:35 +01:00
|
|
|
HTTP:
|
2014-03-22 14:03:13 +01:00
|
|
|
--add-x-forwarded-for
|
2015-01-13 15:02:18 +01:00
|
|
|
Append X-Forwarded-For header field to the downstream
|
|
|
|
request.
|
2014-10-24 15:24:17 +02:00
|
|
|
--strip-incoming-x-forwarded-for
|
2015-01-13 15:02:18 +01:00
|
|
|
Strip X-Forwarded-For header field from inbound client
|
|
|
|
requests.
|
2016-01-16 03:57:04 +01:00
|
|
|
--add-forwarded=<LIST>
|
|
|
|
Append RFC 7239 Forwarded header field with parameters
|
|
|
|
specified in comma delimited list <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|<VALUE>)
|
|
|
|
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,
|
2016-02-01 15:34:07 +01:00
|
|
|
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.
|
2016-01-16 03:57:04 +01:00
|
|
|
Default: obfuscated
|
2016-01-21 13:05:07 +01:00
|
|
|
--forwarded-for=(obfuscated|ip)
|
2016-01-16 03:57:04 +01:00
|
|
|
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
|
2016-02-01 15:34:07 +01:00
|
|
|
"for" parameter. In case of UNIX domain socket,
|
|
|
|
"localhost" is used instead of address.
|
2016-01-16 03:57:04 +01:00
|
|
|
Default: obfuscated
|
2015-01-13 15:02:18 +01:00
|
|
|
--no-via Don't append to Via header field. If Via header field
|
|
|
|
is received, it is left unaltered.
|
2014-08-10 05:39:27 +02:00
|
|
|
--no-location-rewrite
|
2016-02-28 13:35:26 +01:00
|
|
|
Don't rewrite location header field in default mode.
|
|
|
|
When --http2-proxy is used, location header field will
|
|
|
|
not be altered regardless of this option.
|
2015-07-23 16:54:56 +02:00
|
|
|
--host-rewrite
|
2016-02-28 13:35:26 +01:00
|
|
|
Rewrite host and :authority header fields in default
|
|
|
|
mode. When --http2-proxy is used, these headers will
|
|
|
|
not be altered regardless of this option.
|
2014-04-08 15:28:50 +02:00
|
|
|
--altsvc=<PROTOID,PORT[,HOST,[ORIGIN]]>
|
2015-01-13 15:02:18 +01:00
|
|
|
Specify protocol ID, port, host and origin of
|
|
|
|
alternative service. <HOST> and <ORIGIN> are optional.
|
2015-03-22 15:22:06 +01:00
|
|
|
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
|
2015-06-05 16:04:20 +02:00
|
|
|
--add-request-header=<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"
|
2014-04-26 07:56:08 +02:00
|
|
|
--add-response-header=<HEADER>
|
2015-01-13 15:02:18 +01:00
|
|
|
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"
|
2016-02-06 09:22:23 +01:00
|
|
|
--request-header-field-buffer=<SIZE>
|
2016-01-05 08:41:34 +01:00
|
|
|
Set maximum buffer size for incoming HTTP request header
|
|
|
|
field list. This is the sum of header name and value in
|
2016-02-06 04:25:34 +01:00
|
|
|
bytes. If trailer fields exist, they are counted
|
|
|
|
towards this number.
|
2016-01-18 09:00:20 +01:00
|
|
|
Default: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::utos_unit(config->http.request_header_field_buffer) << R"(
|
2016-02-06 09:22:23 +01:00
|
|
|
--max-request-header-fields=<N>
|
2016-01-05 08:41:34 +01:00
|
|
|
Set maximum number of incoming HTTP request header
|
2016-02-06 04:25:34 +01:00
|
|
|
fields. If trailer fields exist, they are counted
|
|
|
|
towards this number.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->http.max_request_header_fields << R"(
|
2016-02-06 04:25:34 +01:00
|
|
|
--response-header-field-buffer=<SIZE>
|
|
|
|
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: )"
|
2016-10-08 04:34:23 +02:00
|
|
|
<< util::utos_unit(config->http.response_header_field_buffer) << R"(
|
2016-02-06 04:25:34 +01:00
|
|
|
--max-response-header-fields=<N>
|
|
|
|
Set maximum number of incoming HTTP response header
|
|
|
|
fields. If trailer fields exist, they are counted
|
|
|
|
towards this number.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->http.max_response_header_fields << R"(
|
2016-03-19 15:49:15 +01:00
|
|
|
--error-page=(<CODE>|*)=<PATH>
|
2016-03-19 15:41:21 +01:00
|
|
|
Set file path to custom error page served when nghttpx
|
|
|
|
originally generates HTTP error status code <CODE>.
|
|
|
|
<CODE> must be greater than or equal to 400, and at most
|
2016-03-19 15:49:15 +01:00
|
|
|
599. If "*" is used instead of <CODE>, it matches all
|
|
|
|
HTTP status code. If error status code comes from
|
|
|
|
backend server, the custom error pages are not used.
|
2016-08-26 15:28:09 +02:00
|
|
|
--server-name=<NAME>
|
|
|
|
Change server response header field value to <NAME>.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->http.server_name << R"(
|
2016-08-31 16:47:15 +02:00
|
|
|
--no-server-rewrite
|
|
|
|
Don't rewrite server header field in default mode. When
|
|
|
|
--http2-proxy is used, these headers will not be altered
|
|
|
|
regardless of this option.
|
2015-01-15 15:19:35 +01:00
|
|
|
|
2016-06-04 10:24:54 +02:00
|
|
|
API:
|
|
|
|
--api-max-request-body=<SIZE>
|
|
|
|
Set the maximum size of request body for API request.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< util::utos_unit(config->api.max_request_body) << R"(
|
2016-06-04 10:24:54 +02:00
|
|
|
|
2016-12-10 09:48:28 +01:00
|
|
|
DNS:
|
|
|
|
--dns-cache-timeout=<DURATION>
|
|
|
|
Set duration that cached DNS results remain valid. Note
|
|
|
|
that nghttpx caches the unsuccessful results as well.
|
|
|
|
Default: )"
|
|
|
|
<< util::duration_str(config->dns.timeout.cache) << R"(
|
2016-12-10 16:50:16 +01:00
|
|
|
--dns-lookup-timeout=<DURATION>
|
|
|
|
Set timeout that DNS server is given to respond to the
|
|
|
|
initial DNS query. For the 2nd and later queries,
|
|
|
|
server is given time based on this timeout, and it is
|
|
|
|
scaled linearly.
|
|
|
|
Default: )"
|
|
|
|
<< util::duration_str(config->dns.timeout.lookup) << R"(
|
|
|
|
--dns-max-try=<N>
|
|
|
|
Set the number of DNS query before nghttpx gives up name
|
|
|
|
lookup.
|
|
|
|
Default: )"
|
|
|
|
<< config->dns.max_try << R"(
|
2016-12-10 09:48:28 +01:00
|
|
|
|
2015-01-15 15:19:35 +01:00
|
|
|
Debug:
|
2014-03-22 14:03:13 +01:00
|
|
|
--frontend-http2-dump-request-header=<PATH>
|
2015-01-13 15:02:18 +01:00
|
|
|
Dumps request headers received by HTTP/2 frontend to the
|
|
|
|
file denoted in <PATH>. 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<N>, where <N> >= 2.
|
2014-03-22 14:03:13 +01:00
|
|
|
--frontend-http2-dump-response-header=<PATH>
|
2015-01-13 15:02:18 +01:00
|
|
|
Dumps response headers sent from HTTP/2 frontend to the
|
|
|
|
file denoted in <PATH>. 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<N>, where <N> >= 2.
|
2014-03-22 14:03:13 +01:00
|
|
|
-o, --frontend-frame-debug
|
2015-01-13 15:02:18 +01:00
|
|
|
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.
|
2015-01-15 15:19:35 +01:00
|
|
|
|
|
|
|
Process:
|
2014-03-22 14:03:13 +01:00
|
|
|
-D, --daemon
|
2015-01-13 15:02:18 +01:00
|
|
|
Run in a background. If -D is used, the current working
|
|
|
|
directory is changed to '/'.
|
|
|
|
--pid-file=<PATH>
|
|
|
|
Set path to save PID of this program.
|
|
|
|
--user=<USER>
|
|
|
|
Run this program as <USER>. This option is intended to
|
|
|
|
be used to drop root privileges.
|
2015-01-15 15:19:35 +01:00
|
|
|
|
2015-09-02 18:37:47 +02:00
|
|
|
Scripting:
|
2015-10-25 09:05:15 +01:00
|
|
|
--mruby-file=<PATH>
|
|
|
|
Set mruby script file
|
2015-09-02 18:37:47 +02:00
|
|
|
|
2015-01-15 15:19:35 +01:00
|
|
|
Misc:
|
2015-01-13 15:02:18 +01:00
|
|
|
--conf=<PATH>
|
|
|
|
Load configuration from <PATH>.
|
2016-10-15 11:36:04 +02:00
|
|
|
Default: )"
|
|
|
|
<< config->conf_path << R"(
|
2015-07-12 16:18:36 +02:00
|
|
|
--include=<PATH>
|
|
|
|
Load additional configurations from <PATH>. File <PATH>
|
|
|
|
is read when configuration parser encountered this
|
|
|
|
option. This option can be used multiple times, or even
|
|
|
|
recursively.
|
2015-01-13 15:02:18 +01:00
|
|
|
-v, --version
|
|
|
|
Print version and exit.
|
|
|
|
-h, --help Print this help and exit.
|
2015-01-13 14:42:52 +01:00
|
|
|
|
2015-03-30 17:21:52 +02:00
|
|
|
--
|
|
|
|
|
2015-01-13 14:42:52 +01:00
|
|
|
The <SIZE> argument is an integer and an optional unit (e.g., 10K is
|
2015-01-27 16:36:44 +01:00
|
|
|
10 * 1024). Units are K, M and G (powers of 1024).
|
|
|
|
|
2015-01-29 15:23:30 +01:00
|
|
|
The <DURATION> argument is an integer and an optional unit (e.g., 1s
|
2015-03-30 16:20:40 +02:00
|
|
|
is 1 second and 500ms is 500 milliseconds). Units are h, m, s or ms
|
|
|
|
(hours, minutes, seconds and milliseconds, respectively). If a unit
|
2016-10-15 11:36:04 +02:00
|
|
|
is omitted, a second is used as unit.)"
|
|
|
|
<< std::endl;
|
2012-06-06 16:58:19 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2016-01-18 09:08:28 +01:00
|
|
|
namespace {
|
2016-07-31 08:57:41 +02:00
|
|
|
int process_options(Config *config,
|
|
|
|
std::vector<std::pair<StringRef, StringRef>> &cmdcfgs) {
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
2016-07-31 08:57:41 +02:00
|
|
|
if (conf_exists(config->conf_path.c_str())) {
|
2016-03-24 13:05:02 +01:00
|
|
|
std::set<StringRef> include_set;
|
2016-07-31 08:57:41 +02:00
|
|
|
if (load_config(config, config->conf_path.c_str(), include_set) == -1) {
|
|
|
|
LOG(FATAL) << "Failed to load configuration from " << config->conf_path;
|
|
|
|
return -1;
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
|
|
|
assert(include_set.empty());
|
|
|
|
}
|
2015-09-29 16:31:50 +02:00
|
|
|
|
2016-01-18 09:08:28 +01:00
|
|
|
// Reopen log files using configurations in file
|
|
|
|
reopen_log_files();
|
2012-06-06 16:58:19 +02:00
|
|
|
|
2016-01-18 09:08:28 +01:00
|
|
|
{
|
2016-03-24 13:05:02 +01:00
|
|
|
std::set<StringRef> include_set;
|
2015-08-13 11:01:37 +02:00
|
|
|
|
2016-03-24 13:05:02 +01:00
|
|
|
for (auto &p : cmdcfgs) {
|
2016-07-31 08:57:41 +02:00
|
|
|
if (parse_config(config, p.first, p.second, include_set) == -1) {
|
2016-01-18 09:08:28 +01:00
|
|
|
LOG(FATAL) << "Failed to parse command-line argument.";
|
2016-07-31 08:57:41 +02:00
|
|
|
return -1;
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
|
|
|
}
|
2015-07-23 17:32:19 +02:00
|
|
|
|
2016-01-18 09:08:28 +01:00
|
|
|
assert(include_set.empty());
|
|
|
|
}
|
2015-09-17 18:16:49 +02:00
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &loggingconf = config->logging;
|
2016-01-18 09:26:27 +01:00
|
|
|
|
|
|
|
if (loggingconf.access.syslog || loggingconf.error.syslog) {
|
2016-01-18 09:08:28 +01:00
|
|
|
openlog("nghttpx", LOG_NDELAY | LOG_NOWAIT | LOG_PID,
|
2016-01-18 09:26:27 +01:00
|
|
|
loggingconf.syslog_facility);
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
2014-08-12 15:22:02 +02:00
|
|
|
|
2016-01-18 09:08:28 +01:00
|
|
|
if (reopen_log_files() != 0) {
|
|
|
|
LOG(FATAL) << "Failed to open log file";
|
2016-07-31 08:57:41 +02:00
|
|
|
return -1;
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
redirect_stderr_to_errorlog();
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
if (config->uid != 0) {
|
2016-01-18 09:08:28 +01:00
|
|
|
if (log_config()->accesslog_fd != -1 &&
|
2016-07-31 08:57:41 +02:00
|
|
|
fchown(log_config()->accesslog_fd, config->uid, config->gid) == -1) {
|
2015-10-16 15:33:48 +02:00
|
|
|
auto error = errno;
|
2016-01-18 09:08:28 +01:00
|
|
|
LOG(WARN) << "Changing owner of access log file failed: "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
|
|
|
if (log_config()->errorlog_fd != -1 &&
|
2016-07-31 08:57:41 +02:00
|
|
|
fchown(log_config()->errorlog_fd, config->uid, config->gid) == -1) {
|
2016-01-18 09:08:28 +01:00
|
|
|
auto error = errno;
|
|
|
|
LOG(WARN) << "Changing owner of error log file failed: "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2015-10-16 15:33:48 +02:00
|
|
|
}
|
2014-08-12 15:22:02 +02:00
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &http2conf = config->http2;
|
2016-01-18 09:08:28 +01:00
|
|
|
{
|
|
|
|
auto &dumpconf = http2conf.upstream.debug.dump;
|
2014-08-12 15:22:02 +02:00
|
|
|
|
2016-02-14 13:28:47 +01:00
|
|
|
if (!dumpconf.request_header_file.empty()) {
|
|
|
|
auto path = dumpconf.request_header_file.c_str();
|
2016-01-18 09:08:28 +01:00
|
|
|
auto f = open_file_for_write(path);
|
2013-11-02 14:58:02 +01:00
|
|
|
|
2016-01-18 09:08:28 +01:00
|
|
|
if (f == nullptr) {
|
|
|
|
LOG(FATAL) << "Failed to open http2 upstream request header file: "
|
|
|
|
<< path;
|
2016-07-31 08:57:41 +02:00
|
|
|
return -1;
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dumpconf.request_header = f;
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
if (config->uid != 0) {
|
2016-01-18 09:08:28 +01:00
|
|
|
if (chown_to_running_user(path) == -1) {
|
|
|
|
auto error = errno;
|
|
|
|
LOG(WARN) << "Changing owner of http2 upstream request header file "
|
2016-10-09 12:14:49 +02:00
|
|
|
<< path << " failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
|
|
|
}
|
2014-08-12 18:53:44 +02:00
|
|
|
}
|
|
|
|
|
2016-02-14 13:28:47 +01:00
|
|
|
if (!dumpconf.response_header_file.empty()) {
|
|
|
|
auto path = dumpconf.response_header_file.c_str();
|
2016-01-18 09:00:20 +01:00
|
|
|
auto f = open_file_for_write(path);
|
2014-08-12 18:53:44 +02:00
|
|
|
|
2016-01-18 09:00:20 +01:00
|
|
|
if (f == nullptr) {
|
|
|
|
LOG(FATAL) << "Failed to open http2 upstream response header file: "
|
|
|
|
<< path;
|
2016-07-31 08:57:41 +02:00
|
|
|
return -1;
|
2016-01-18 09:00:20 +01:00
|
|
|
}
|
2014-08-12 18:53:44 +02:00
|
|
|
|
2016-01-18 09:00:20 +01:00
|
|
|
dumpconf.response_header = f;
|
2014-08-12 18:53:44 +02:00
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
if (config->uid != 0) {
|
2016-01-18 09:00:20 +01:00
|
|
|
if (chown_to_running_user(path) == -1) {
|
|
|
|
auto error = errno;
|
|
|
|
LOG(WARN) << "Changing owner of http2 upstream response header file"
|
2016-10-09 12:14:49 +02:00
|
|
|
<< " " << path << " failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-01-18 09:00:20 +01:00
|
|
|
}
|
2014-08-12 18:53:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &tlsconf = config->tls;
|
2016-01-18 06:21:09 +01:00
|
|
|
|
|
|
|
if (tlsconf.npn_list.empty()) {
|
2016-10-02 15:19:31 +02:00
|
|
|
tlsconf.npn_list = util::split_str(DEFAULT_NPN_LIST, ',');
|
2013-09-23 13:55:39 +02:00
|
|
|
}
|
2016-01-18 06:21:09 +01:00
|
|
|
if (tlsconf.tls_proto_list.empty()) {
|
2016-10-02 15:21:38 +02:00
|
|
|
tlsconf.tls_proto_list = util::split_str(DEFAULT_TLS_PROTO_LIST, ',');
|
2014-01-02 03:49:38 +01:00
|
|
|
}
|
2013-09-23 13:55:39 +02:00
|
|
|
|
2016-01-18 06:21:09 +01:00
|
|
|
tlsconf.tls_proto_mask = ssl::create_tls_proto_mask(tlsconf.tls_proto_list);
|
2014-06-08 15:52:27 +02:00
|
|
|
|
2016-07-31 13:35:10 +02:00
|
|
|
if (ssl::set_alpn_prefs(tlsconf.alpn_prefs, tlsconf.npn_list) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2014-06-10 16:15:29 +02:00
|
|
|
|
2016-05-07 09:18:58 +02:00
|
|
|
tlsconf.bio_method = create_bio_method();
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &listenerconf = config->conn.listener;
|
|
|
|
auto &upstreamconf = config->conn.upstream;
|
2016-01-19 08:56:12 +01:00
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
if (listenerconf.addrs.empty()) {
|
2016-02-07 09:51:53 +01:00
|
|
|
UpstreamAddr addr{};
|
2016-10-02 14:22:02 +02:00
|
|
|
addr.host = StringRef::from_lit("*");
|
2016-01-31 11:41:56 +01:00
|
|
|
addr.port = 3000;
|
2016-03-23 15:56:09 +01:00
|
|
|
addr.tls = true;
|
2016-02-06 15:28:04 +01:00
|
|
|
addr.family = AF_INET;
|
|
|
|
listenerconf.addrs.push_back(addr);
|
|
|
|
addr.family = AF_INET6;
|
2016-01-31 11:41:56 +01:00
|
|
|
listenerconf.addrs.push_back(std::move(addr));
|
|
|
|
}
|
|
|
|
|
2016-01-19 08:56:12 +01:00
|
|
|
if (upstreamconf.worker_connections == 0) {
|
|
|
|
upstreamconf.worker_connections = std::numeric_limits<size_t>::max();
|
2014-06-26 15:55:22 +02:00
|
|
|
}
|
|
|
|
|
2016-03-23 15:56:09 +01:00
|
|
|
if (ssl::upstream_tls_enabled() &&
|
2016-02-14 13:17:25 +01:00
|
|
|
(tlsconf.private_key_file.empty() || tlsconf.cert_file.empty())) {
|
2015-02-11 11:18:41 +01:00
|
|
|
print_usage(std::cerr);
|
|
|
|
LOG(FATAL) << "Too few arguments";
|
2016-07-31 08:57:41 +02:00
|
|
|
return -1;
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
|
|
|
|
2016-03-23 15:56:09 +01:00
|
|
|
if (ssl::upstream_tls_enabled() && !tlsconf.ocsp.disabled) {
|
2015-03-30 16:20:40 +02:00
|
|
|
struct stat buf;
|
2016-02-14 13:01:54 +01:00
|
|
|
if (stat(tlsconf.ocsp.fetch_ocsp_response_file.c_str(), &buf) != 0) {
|
2016-01-18 06:21:09 +01:00
|
|
|
tlsconf.ocsp.disabled = true;
|
2015-03-30 16:20:40 +02:00
|
|
|
LOG(WARN) << "--fetch-ocsp-response-file: "
|
2016-02-14 13:01:54 +01:00
|
|
|
<< tlsconf.ocsp.fetch_ocsp_response_file
|
2015-03-30 16:20:40 +02:00
|
|
|
<< " not found. OCSP stapling has been disabled.";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
if (configure_downstream_group(config, config->http2_proxy, false, tlsconf) !=
|
|
|
|
0) {
|
|
|
|
return -1;
|
2015-07-09 19:52:11 +02:00
|
|
|
}
|
2016-01-19 08:56:12 +01:00
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &proxy = config->downstream_http_proxy;
|
2016-01-18 09:08:28 +01:00
|
|
|
if (!proxy.host.empty()) {
|
2016-02-28 13:35:26 +01:00
|
|
|
auto hostport = util::make_hostport(StringRef{proxy.host}, proxy.port);
|
2016-01-18 09:08:28 +01:00
|
|
|
if (resolve_hostname(&proxy.addr, proxy.host.c_str(), proxy.port,
|
|
|
|
AF_UNSPEC) == -1) {
|
2016-02-13 15:21:32 +01:00
|
|
|
LOG(FATAL) << "Resolving backend HTTP proxy address failed: " << hostport;
|
2016-07-31 08:57:41 +02:00
|
|
|
return -1;
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
2016-02-13 15:21:32 +01:00
|
|
|
LOG(NOTICE) << "Backend HTTP proxy address: " << hostport << " -> "
|
2016-02-21 07:28:11 +01:00
|
|
|
<< util::to_numeric_addr(&proxy.addr);
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
auto &memcachedconf = tlsconf.session_cache.memcached;
|
2016-02-14 12:59:10 +01:00
|
|
|
if (!memcachedconf.host.empty()) {
|
|
|
|
auto hostport = util::make_hostport(StringRef{memcachedconf.host},
|
|
|
|
memcachedconf.port);
|
|
|
|
if (resolve_hostname(&memcachedconf.addr, memcachedconf.host.c_str(),
|
2016-02-13 10:45:23 +01:00
|
|
|
memcachedconf.port, memcachedconf.family) == -1) {
|
2016-02-13 15:21:32 +01:00
|
|
|
LOG(FATAL)
|
|
|
|
<< "Resolving memcached address for TLS session cache failed: "
|
|
|
|
<< hostport;
|
2016-07-31 08:57:41 +02:00
|
|
|
return -1;
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
2016-02-13 15:21:32 +01:00
|
|
|
LOG(NOTICE) << "Memcached address for TLS session cache: " << hostport
|
2016-02-21 07:28:11 +01:00
|
|
|
<< " -> " << util::to_numeric_addr(&memcachedconf.addr);
|
2016-03-23 16:22:13 +01:00
|
|
|
if (memcachedconf.tls) {
|
|
|
|
LOG(NOTICE) << "Connection to memcached for TLS session cache will be "
|
|
|
|
"encrypted by TLS";
|
|
|
|
}
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
auto &memcachedconf = tlsconf.ticket.memcached;
|
2016-02-14 12:59:10 +01:00
|
|
|
if (!memcachedconf.host.empty()) {
|
|
|
|
auto hostport = util::make_hostport(StringRef{memcachedconf.host},
|
|
|
|
memcachedconf.port);
|
|
|
|
if (resolve_hostname(&memcachedconf.addr, memcachedconf.host.c_str(),
|
2016-02-13 10:45:23 +01:00
|
|
|
memcachedconf.port, memcachedconf.family) == -1) {
|
2016-02-13 15:21:32 +01:00
|
|
|
LOG(FATAL) << "Resolving memcached address for TLS ticket key failed: "
|
|
|
|
<< hostport;
|
2016-07-31 08:57:41 +02:00
|
|
|
return -1;
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
2016-02-13 15:21:32 +01:00
|
|
|
LOG(NOTICE) << "Memcached address for TLS ticket key: " << hostport
|
2016-02-21 07:28:11 +01:00
|
|
|
<< " -> " << util::to_numeric_addr(&memcachedconf.addr);
|
2016-03-23 16:22:13 +01:00
|
|
|
if (memcachedconf.tls) {
|
|
|
|
LOG(NOTICE) << "Connection to memcached for TLS ticket key will be "
|
|
|
|
"encrypted by TLS";
|
|
|
|
}
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
if (config->rlimit_nofile) {
|
|
|
|
struct rlimit lim = {static_cast<rlim_t>(config->rlimit_nofile),
|
|
|
|
static_cast<rlim_t>(config->rlimit_nofile)};
|
2016-01-18 09:08:28 +01:00
|
|
|
if (setrlimit(RLIMIT_NOFILE, &lim) != 0) {
|
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(WARN) << "Setting rlimit-nofile failed: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
auto &fwdconf = config->http.forwarded;
|
2016-01-18 09:08:28 +01:00
|
|
|
|
|
|
|
if (fwdconf.by_node_type == FORWARDED_NODE_OBFUSCATED &&
|
|
|
|
fwdconf.by_obfuscated.empty()) {
|
2016-10-02 14:22:02 +02:00
|
|
|
// 2 for '_' and terminal NULL
|
|
|
|
auto iov = make_byte_ref(config->balloc, SHRPX_OBFUSCATED_NODE_LENGTH + 2);
|
|
|
|
auto p = iov.base;
|
2016-09-30 16:09:02 +02:00
|
|
|
*p++ = '_';
|
2016-10-02 14:22:02 +02:00
|
|
|
std::mt19937 gen(rd());
|
|
|
|
p = util::random_alpha_digit(p, p + SHRPX_OBFUSCATED_NODE_LENGTH, gen);
|
|
|
|
*p = '\0';
|
|
|
|
fwdconf.by_obfuscated = StringRef{iov.base, p};
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
if (config->http2.upstream.debug.frame_debug) {
|
2016-01-18 09:08:28 +01:00
|
|
|
// To make it sync to logging
|
|
|
|
set_output(stderr);
|
|
|
|
if (isatty(fileno(stdout))) {
|
|
|
|
set_color_output(true);
|
|
|
|
}
|
|
|
|
reset_timer();
|
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
config->http2.upstream.callbacks = create_http2_upstream_callbacks();
|
|
|
|
config->http2.downstream.callbacks = create_http2_downstream_callbacks();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2016-07-31 11:47:03 +02:00
|
|
|
namespace {
|
|
|
|
// Closes file descriptor which are opened for listeners in config,
|
2016-07-31 13:50:07 +02:00
|
|
|
// and are not inherited from |iaddrs|.
|
2016-07-31 11:47:03 +02:00
|
|
|
void close_not_inherited_fd(Config *config,
|
|
|
|
const std::vector<InheritedAddr> &iaddrs) {
|
|
|
|
auto &listenerconf = config->conn.listener;
|
|
|
|
|
|
|
|
for (auto &addr : listenerconf.addrs) {
|
|
|
|
auto inherited = std::find_if(
|
|
|
|
std::begin(iaddrs), std::end(iaddrs),
|
|
|
|
[&addr](const InheritedAddr &iaddr) { return addr.fd == iaddr.fd; });
|
|
|
|
|
|
|
|
if (inherited != std::end(iaddrs)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(addr.fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
namespace {
|
2016-07-31 09:16:23 +02:00
|
|
|
void reload_config(WorkerProcess *wp) {
|
2016-07-31 08:57:41 +02:00
|
|
|
int rv;
|
|
|
|
|
|
|
|
LOG(NOTICE) << "Reloading configuration";
|
|
|
|
|
2016-10-02 14:22:02 +02:00
|
|
|
auto cur_config = mod_config();
|
2016-07-31 08:57:41 +02:00
|
|
|
auto new_config = make_unique<Config>();
|
|
|
|
|
|
|
|
fill_default_config(new_config.get());
|
|
|
|
|
2016-10-02 14:22:02 +02:00
|
|
|
new_config->conf_path =
|
|
|
|
make_string_ref(new_config->balloc, cur_config->conf_path);
|
2016-07-31 09:34:55 +02:00
|
|
|
// daemon option is ignored here.
|
|
|
|
new_config->daemon = cur_config->daemon;
|
2016-07-31 11:47:03 +02:00
|
|
|
// loop is reused, and ev_loop_flags gets ignored
|
|
|
|
new_config->ev_loop_flags = cur_config->ev_loop_flags;
|
2016-07-31 08:57:41 +02:00
|
|
|
|
2016-07-31 09:34:55 +02:00
|
|
|
rv = process_options(new_config.get(), suconfig.cmdcfgs);
|
2016-07-31 08:57:41 +02:00
|
|
|
if (rv != 0) {
|
|
|
|
LOG(ERROR) << "Failed to process new configuration";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-10-03 15:08:49 +02:00
|
|
|
auto iaddrs = get_inherited_addr_from_config(new_config->balloc, cur_config);
|
2016-07-31 08:57:41 +02:00
|
|
|
|
|
|
|
if (create_acceptor_socket(new_config.get(), iaddrs) != 0) {
|
2016-07-31 11:47:03 +02:00
|
|
|
close_not_inherited_fd(new_config.get(), iaddrs);
|
2016-07-31 08:57:41 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-07-31 11:47:03 +02:00
|
|
|
// According to libev documentation, flags are ignored since we have
|
|
|
|
// already created first default loop.
|
|
|
|
auto loop = ev_default_loop(new_config->ev_loop_flags);
|
2016-07-31 08:57:41 +02:00
|
|
|
|
2016-07-31 11:47:03 +02:00
|
|
|
int ipc_fd;
|
2016-07-31 08:57:41 +02:00
|
|
|
|
2016-07-31 11:47:03 +02:00
|
|
|
// fork_worker_process and forked child process assumes new
|
|
|
|
// configuration can be obtained from get_config().
|
2016-07-31 08:57:41 +02:00
|
|
|
|
2016-07-31 12:01:29 +02:00
|
|
|
auto old_config = replace_config(std::move(new_config));
|
2016-07-31 08:57:41 +02:00
|
|
|
|
2016-07-31 11:47:03 +02:00
|
|
|
auto pid = fork_worker_process(ipc_fd, iaddrs);
|
2016-07-31 08:57:41 +02:00
|
|
|
|
|
|
|
if (pid == -1) {
|
|
|
|
LOG(ERROR) << "Failed to process new configuration";
|
2016-07-31 12:01:29 +02:00
|
|
|
|
|
|
|
new_config = replace_config(std::move(old_config));
|
2016-07-31 11:47:03 +02:00
|
|
|
close_not_inherited_fd(new_config.get(), iaddrs);
|
2016-07-31 12:01:29 +02:00
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
close_unused_inherited_addr(iaddrs);
|
|
|
|
|
|
|
|
// Send last worker process a graceful shutdown notice
|
2016-07-31 09:16:23 +02:00
|
|
|
auto &last_wp = worker_processes.back();
|
|
|
|
ipc_send(last_wp.get(), SHRPX_IPC_GRACEFUL_SHUTDOWN);
|
2016-07-31 08:57:41 +02:00
|
|
|
// We no longer use signals for this worker.
|
2016-07-31 09:16:23 +02:00
|
|
|
last_wp->shutdown_signal_watchers();
|
2016-07-31 08:57:41 +02:00
|
|
|
|
2016-07-31 09:16:23 +02:00
|
|
|
worker_process_add(make_unique<WorkerProcess>(loop, pid, ipc_fd));
|
2016-07-31 08:57:41 +02:00
|
|
|
|
|
|
|
if (!get_config()->pid_file.empty()) {
|
|
|
|
save_pid();
|
|
|
|
}
|
2016-01-18 09:08:28 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2016-07-31 08:57:41 +02:00
|
|
|
int rv;
|
2016-10-09 12:14:49 +02:00
|
|
|
std::array<char, STRERROR_BUFSIZE> errbuf;
|
2016-07-31 08:57:41 +02:00
|
|
|
|
2016-01-18 09:08:28 +01:00
|
|
|
nghttp2::ssl::libssl_init();
|
|
|
|
|
|
|
|
#ifndef NOTHREADS
|
|
|
|
nghttp2::ssl::LibsslGlobalLock lock;
|
|
|
|
#endif // NOTHREADS
|
|
|
|
|
|
|
|
Log::set_severity_level(NOTICE);
|
|
|
|
create_config();
|
2016-07-31 08:57:41 +02:00
|
|
|
fill_default_config(mod_config());
|
2016-01-18 09:08:28 +01:00
|
|
|
|
|
|
|
// 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();
|
|
|
|
|
2016-07-31 09:34:55 +02:00
|
|
|
suconfig.original_argv = argv;
|
2016-01-18 09:08:28 +01:00
|
|
|
|
|
|
|
// We have to copy argv, since getopt_long may change its content.
|
2016-07-31 09:34:55 +02:00
|
|
|
suconfig.argc = argc;
|
|
|
|
suconfig.argv = new char *[argc];
|
2016-01-18 09:08:28 +01:00
|
|
|
|
|
|
|
for (int i = 0; i < argc; ++i) {
|
2016-07-31 09:34:55 +02:00
|
|
|
suconfig.argv[i] = strdup(argv[i]);
|
|
|
|
if (suconfig.argv[i] == nullptr) {
|
2016-01-18 09:08:28 +01:00
|
|
|
auto error = errno;
|
2016-10-09 12:14:49 +02:00
|
|
|
LOG(FATAL) << "failed to copy argv: "
|
|
|
|
<< xsi_strerror(error, errbuf.data(), errbuf.size());
|
2016-01-18 09:08:28 +01:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-31 09:34:55 +02:00
|
|
|
suconfig.cwd = getcwd(nullptr, 0);
|
|
|
|
if (suconfig.cwd == nullptr) {
|
2016-01-18 09:08:28 +01:00
|
|
|
auto error = errno;
|
|
|
|
LOG(FATAL) << "failed to get current working directory: errno=" << error;
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2016-07-31 09:34:55 +02:00
|
|
|
auto &cmdcfgs = suconfig.cmdcfgs;
|
|
|
|
|
2016-01-18 09:08:28 +01:00
|
|
|
while (1) {
|
|
|
|
static int flag = 0;
|
|
|
|
static option long_options[] = {
|
2016-03-24 13:05:02 +01:00
|
|
|
{SHRPX_OPT_DAEMON.c_str(), no_argument, nullptr, 'D'},
|
|
|
|
{SHRPX_OPT_LOG_LEVEL.c_str(), required_argument, nullptr, 'L'},
|
|
|
|
{SHRPX_OPT_BACKEND.c_str(), required_argument, nullptr, 'b'},
|
|
|
|
{SHRPX_OPT_HTTP2_MAX_CONCURRENT_STREAMS.c_str(), required_argument,
|
|
|
|
nullptr, 'c'},
|
|
|
|
{SHRPX_OPT_FRONTEND.c_str(), required_argument, nullptr, 'f'},
|
2016-01-18 09:08:28 +01:00
|
|
|
{"help", no_argument, nullptr, 'h'},
|
2016-03-24 13:05:02 +01:00
|
|
|
{SHRPX_OPT_INSECURE.c_str(), no_argument, nullptr, 'k'},
|
|
|
|
{SHRPX_OPT_WORKERS.c_str(), required_argument, nullptr, 'n'},
|
|
|
|
{SHRPX_OPT_CLIENT_PROXY.c_str(), no_argument, nullptr, 'p'},
|
|
|
|
{SHRPX_OPT_HTTP2_PROXY.c_str(), no_argument, nullptr, 's'},
|
2016-01-18 09:08:28 +01:00
|
|
|
{"version", no_argument, nullptr, 'v'},
|
2016-03-24 13:05:02 +01:00
|
|
|
{SHRPX_OPT_FRONTEND_FRAME_DEBUG.c_str(), no_argument, nullptr, 'o'},
|
|
|
|
{SHRPX_OPT_ADD_X_FORWARDED_FOR.c_str(), no_argument, &flag, 1},
|
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_READ_TIMEOUT.c_str(), required_argument,
|
|
|
|
&flag, 2},
|
|
|
|
{SHRPX_OPT_FRONTEND_READ_TIMEOUT.c_str(), required_argument, &flag, 3},
|
|
|
|
{SHRPX_OPT_FRONTEND_WRITE_TIMEOUT.c_str(), required_argument, &flag, 4},
|
|
|
|
{SHRPX_OPT_BACKEND_READ_TIMEOUT.c_str(), required_argument, &flag, 5},
|
|
|
|
{SHRPX_OPT_BACKEND_WRITE_TIMEOUT.c_str(), required_argument, &flag, 6},
|
|
|
|
{SHRPX_OPT_ACCESSLOG_FILE.c_str(), required_argument, &flag, 7},
|
|
|
|
{SHRPX_OPT_BACKEND_KEEP_ALIVE_TIMEOUT.c_str(), required_argument, &flag,
|
|
|
|
8},
|
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_WINDOW_BITS.c_str(), required_argument, &flag,
|
|
|
|
9},
|
|
|
|
{SHRPX_OPT_PID_FILE.c_str(), required_argument, &flag, 10},
|
|
|
|
{SHRPX_OPT_USER.c_str(), required_argument, &flag, 11},
|
2016-01-18 09:08:28 +01:00
|
|
|
{"conf", required_argument, &flag, 12},
|
2016-03-24 13:05:02 +01:00
|
|
|
{SHRPX_OPT_SYSLOG_FACILITY.c_str(), required_argument, &flag, 14},
|
|
|
|
{SHRPX_OPT_BACKLOG.c_str(), required_argument, &flag, 15},
|
|
|
|
{SHRPX_OPT_CIPHERS.c_str(), required_argument, &flag, 16},
|
|
|
|
{SHRPX_OPT_CLIENT.c_str(), no_argument, &flag, 17},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP2_WINDOW_BITS.c_str(), required_argument, &flag,
|
|
|
|
18},
|
|
|
|
{SHRPX_OPT_CACERT.c_str(), required_argument, &flag, 19},
|
|
|
|
{SHRPX_OPT_BACKEND_IPV4.c_str(), no_argument, &flag, 20},
|
|
|
|
{SHRPX_OPT_BACKEND_IPV6.c_str(), no_argument, &flag, 21},
|
|
|
|
{SHRPX_OPT_PRIVATE_KEY_PASSWD_FILE.c_str(), required_argument, &flag,
|
|
|
|
22},
|
|
|
|
{SHRPX_OPT_NO_VIA.c_str(), no_argument, &flag, 23},
|
|
|
|
{SHRPX_OPT_SUBCERT.c_str(), required_argument, &flag, 24},
|
|
|
|
{SHRPX_OPT_HTTP2_BRIDGE.c_str(), no_argument, &flag, 25},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP_PROXY_URI.c_str(), required_argument, &flag,
|
|
|
|
26},
|
|
|
|
{SHRPX_OPT_BACKEND_NO_TLS.c_str(), no_argument, &flag, 27},
|
|
|
|
{SHRPX_OPT_FRONTEND_NO_TLS.c_str(), no_argument, &flag, 29},
|
|
|
|
{SHRPX_OPT_BACKEND_TLS_SNI_FIELD.c_str(), required_argument, &flag, 31},
|
|
|
|
{SHRPX_OPT_DH_PARAM_FILE.c_str(), required_argument, &flag, 33},
|
|
|
|
{SHRPX_OPT_READ_RATE.c_str(), required_argument, &flag, 34},
|
|
|
|
{SHRPX_OPT_READ_BURST.c_str(), required_argument, &flag, 35},
|
|
|
|
{SHRPX_OPT_WRITE_RATE.c_str(), required_argument, &flag, 36},
|
|
|
|
{SHRPX_OPT_WRITE_BURST.c_str(), required_argument, &flag, 37},
|
|
|
|
{SHRPX_OPT_NPN_LIST.c_str(), required_argument, &flag, 38},
|
|
|
|
{SHRPX_OPT_VERIFY_CLIENT.c_str(), no_argument, &flag, 39},
|
|
|
|
{SHRPX_OPT_VERIFY_CLIENT_CACERT.c_str(), required_argument, &flag, 40},
|
|
|
|
{SHRPX_OPT_CLIENT_PRIVATE_KEY_FILE.c_str(), required_argument, &flag,
|
|
|
|
41},
|
|
|
|
{SHRPX_OPT_CLIENT_CERT_FILE.c_str(), required_argument, &flag, 42},
|
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_DUMP_REQUEST_HEADER.c_str(),
|
|
|
|
required_argument, &flag, 43},
|
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_DUMP_RESPONSE_HEADER.c_str(),
|
|
|
|
required_argument, &flag, 44},
|
|
|
|
{SHRPX_OPT_HTTP2_NO_COOKIE_CRUMBLING.c_str(), no_argument, &flag, 45},
|
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_CONNECTION_WINDOW_BITS.c_str(),
|
|
|
|
required_argument, &flag, 46},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP2_CONNECTION_WINDOW_BITS.c_str(),
|
|
|
|
required_argument, &flag, 47},
|
|
|
|
{SHRPX_OPT_TLS_PROTO_LIST.c_str(), required_argument, &flag, 48},
|
|
|
|
{SHRPX_OPT_PADDING.c_str(), required_argument, &flag, 49},
|
|
|
|
{SHRPX_OPT_WORKER_READ_RATE.c_str(), required_argument, &flag, 50},
|
|
|
|
{SHRPX_OPT_WORKER_READ_BURST.c_str(), required_argument, &flag, 51},
|
|
|
|
{SHRPX_OPT_WORKER_WRITE_RATE.c_str(), required_argument, &flag, 52},
|
|
|
|
{SHRPX_OPT_WORKER_WRITE_BURST.c_str(), required_argument, &flag, 53},
|
|
|
|
{SHRPX_OPT_ALTSVC.c_str(), required_argument, &flag, 54},
|
|
|
|
{SHRPX_OPT_ADD_RESPONSE_HEADER.c_str(), required_argument, &flag, 55},
|
|
|
|
{SHRPX_OPT_WORKER_FRONTEND_CONNECTIONS.c_str(), required_argument,
|
|
|
|
&flag, 56},
|
|
|
|
{SHRPX_OPT_ACCESSLOG_SYSLOG.c_str(), no_argument, &flag, 57},
|
|
|
|
{SHRPX_OPT_ERRORLOG_FILE.c_str(), required_argument, &flag, 58},
|
|
|
|
{SHRPX_OPT_ERRORLOG_SYSLOG.c_str(), no_argument, &flag, 59},
|
|
|
|
{SHRPX_OPT_STREAM_READ_TIMEOUT.c_str(), required_argument, &flag, 60},
|
|
|
|
{SHRPX_OPT_STREAM_WRITE_TIMEOUT.c_str(), required_argument, &flag, 61},
|
|
|
|
{SHRPX_OPT_NO_LOCATION_REWRITE.c_str(), no_argument, &flag, 62},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP1_CONNECTIONS_PER_HOST.c_str(),
|
|
|
|
required_argument, &flag, 63},
|
|
|
|
{SHRPX_OPT_LISTENER_DISABLE_TIMEOUT.c_str(), required_argument, &flag,
|
|
|
|
64},
|
|
|
|
{SHRPX_OPT_STRIP_INCOMING_X_FORWARDED_FOR.c_str(), no_argument, &flag,
|
|
|
|
65},
|
|
|
|
{SHRPX_OPT_ACCESSLOG_FORMAT.c_str(), required_argument, &flag, 66},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP1_CONNECTIONS_PER_FRONTEND.c_str(),
|
|
|
|
required_argument, &flag, 67},
|
|
|
|
{SHRPX_OPT_TLS_TICKET_KEY_FILE.c_str(), required_argument, &flag, 68},
|
|
|
|
{SHRPX_OPT_RLIMIT_NOFILE.c_str(), required_argument, &flag, 69},
|
|
|
|
{SHRPX_OPT_BACKEND_RESPONSE_BUFFER.c_str(), required_argument, &flag,
|
|
|
|
71},
|
|
|
|
{SHRPX_OPT_BACKEND_REQUEST_BUFFER.c_str(), required_argument, &flag,
|
|
|
|
72},
|
|
|
|
{SHRPX_OPT_NO_HOST_REWRITE.c_str(), no_argument, &flag, 73},
|
|
|
|
{SHRPX_OPT_NO_SERVER_PUSH.c_str(), no_argument, &flag, 74},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP2_CONNECTIONS_PER_WORKER.c_str(),
|
|
|
|
required_argument, &flag, 76},
|
|
|
|
{SHRPX_OPT_FETCH_OCSP_RESPONSE_FILE.c_str(), required_argument, &flag,
|
|
|
|
77},
|
|
|
|
{SHRPX_OPT_OCSP_UPDATE_INTERVAL.c_str(), required_argument, &flag, 78},
|
|
|
|
{SHRPX_OPT_NO_OCSP.c_str(), no_argument, &flag, 79},
|
|
|
|
{SHRPX_OPT_HEADER_FIELD_BUFFER.c_str(), required_argument, &flag, 80},
|
|
|
|
{SHRPX_OPT_MAX_HEADER_FIELDS.c_str(), required_argument, &flag, 81},
|
|
|
|
{SHRPX_OPT_ADD_REQUEST_HEADER.c_str(), required_argument, &flag, 82},
|
|
|
|
{SHRPX_OPT_INCLUDE.c_str(), required_argument, &flag, 83},
|
|
|
|
{SHRPX_OPT_TLS_TICKET_KEY_CIPHER.c_str(), required_argument, &flag, 84},
|
|
|
|
{SHRPX_OPT_HOST_REWRITE.c_str(), no_argument, &flag, 85},
|
|
|
|
{SHRPX_OPT_TLS_SESSION_CACHE_MEMCACHED.c_str(), required_argument,
|
|
|
|
&flag, 86},
|
|
|
|
{SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED.c_str(), required_argument, &flag,
|
|
|
|
87},
|
|
|
|
{SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_INTERVAL.c_str(), required_argument,
|
|
|
|
&flag, 88},
|
|
|
|
{SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_MAX_RETRY.c_str(),
|
|
|
|
required_argument, &flag, 89},
|
|
|
|
{SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_MAX_FAIL.c_str(), required_argument,
|
|
|
|
&flag, 90},
|
|
|
|
{SHRPX_OPT_MRUBY_FILE.c_str(), required_argument, &flag, 91},
|
|
|
|
{SHRPX_OPT_ACCEPT_PROXY_PROTOCOL.c_str(), no_argument, &flag, 93},
|
|
|
|
{SHRPX_OPT_FASTOPEN.c_str(), required_argument, &flag, 94},
|
|
|
|
{SHRPX_OPT_TLS_DYN_REC_WARMUP_THRESHOLD.c_str(), required_argument,
|
|
|
|
&flag, 95},
|
|
|
|
{SHRPX_OPT_TLS_DYN_REC_IDLE_TIMEOUT.c_str(), required_argument, &flag,
|
|
|
|
96},
|
|
|
|
{SHRPX_OPT_ADD_FORWARDED.c_str(), required_argument, &flag, 97},
|
|
|
|
{SHRPX_OPT_STRIP_INCOMING_FORWARDED.c_str(), no_argument, &flag, 98},
|
|
|
|
{SHRPX_OPT_FORWARDED_BY.c_str(), required_argument, &flag, 99},
|
|
|
|
{SHRPX_OPT_FORWARDED_FOR.c_str(), required_argument, &flag, 100},
|
|
|
|
{SHRPX_OPT_RESPONSE_HEADER_FIELD_BUFFER.c_str(), required_argument,
|
|
|
|
&flag, 101},
|
|
|
|
{SHRPX_OPT_MAX_RESPONSE_HEADER_FIELDS.c_str(), required_argument, &flag,
|
|
|
|
102},
|
|
|
|
{SHRPX_OPT_NO_HTTP2_CIPHER_BLACK_LIST.c_str(), no_argument, &flag, 103},
|
|
|
|
{SHRPX_OPT_REQUEST_HEADER_FIELD_BUFFER.c_str(), required_argument,
|
|
|
|
&flag, 104},
|
|
|
|
{SHRPX_OPT_MAX_REQUEST_HEADER_FIELDS.c_str(), required_argument, &flag,
|
|
|
|
105},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP1_TLS.c_str(), no_argument, &flag, 106},
|
|
|
|
{SHRPX_OPT_TLS_SESSION_CACHE_MEMCACHED_TLS.c_str(), no_argument, &flag,
|
|
|
|
108},
|
|
|
|
{SHRPX_OPT_TLS_SESSION_CACHE_MEMCACHED_CERT_FILE.c_str(),
|
|
|
|
required_argument, &flag, 109},
|
|
|
|
{SHRPX_OPT_TLS_SESSION_CACHE_MEMCACHED_PRIVATE_KEY_FILE.c_str(),
|
2016-02-12 16:20:38 +01:00
|
|
|
required_argument, &flag, 110},
|
2016-03-24 13:05:02 +01:00
|
|
|
{SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_TLS.c_str(), no_argument, &flag,
|
|
|
|
111},
|
|
|
|
{SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_CERT_FILE.c_str(),
|
|
|
|
required_argument, &flag, 112},
|
|
|
|
{SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_PRIVATE_KEY_FILE.c_str(),
|
|
|
|
required_argument, &flag, 113},
|
|
|
|
{SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_ADDRESS_FAMILY.c_str(),
|
|
|
|
required_argument, &flag, 114},
|
|
|
|
{SHRPX_OPT_TLS_SESSION_CACHE_MEMCACHED_ADDRESS_FAMILY.c_str(),
|
2016-02-13 10:45:23 +01:00
|
|
|
required_argument, &flag, 115},
|
2016-03-24 13:05:02 +01:00
|
|
|
{SHRPX_OPT_BACKEND_ADDRESS_FAMILY.c_str(), required_argument, &flag,
|
|
|
|
116},
|
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_MAX_CONCURRENT_STREAMS.c_str(),
|
|
|
|
required_argument, &flag, 117},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP2_MAX_CONCURRENT_STREAMS.c_str(),
|
|
|
|
required_argument, &flag, 118},
|
|
|
|
{SHRPX_OPT_BACKEND_CONNECTIONS_PER_FRONTEND.c_str(), required_argument,
|
|
|
|
&flag, 119},
|
|
|
|
{SHRPX_OPT_BACKEND_TLS.c_str(), no_argument, &flag, 120},
|
|
|
|
{SHRPX_OPT_BACKEND_CONNECTIONS_PER_HOST.c_str(), required_argument,
|
|
|
|
&flag, 121},
|
|
|
|
{SHRPX_OPT_ERROR_PAGE.c_str(), required_argument, &flag, 122},
|
2016-05-06 16:10:09 +02:00
|
|
|
{SHRPX_OPT_NO_KQUEUE.c_str(), no_argument, &flag, 123},
|
2016-05-21 07:13:57 +02:00
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_SETTINGS_TIMEOUT.c_str(), required_argument,
|
|
|
|
&flag, 124},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP2_SETTINGS_TIMEOUT.c_str(), required_argument,
|
|
|
|
&flag, 125},
|
2016-06-04 10:24:54 +02:00
|
|
|
{SHRPX_OPT_API_MAX_REQUEST_BODY.c_str(), required_argument, &flag, 126},
|
2016-06-21 17:13:43 +02:00
|
|
|
{SHRPX_OPT_BACKEND_MAX_BACKOFF.c_str(), required_argument, &flag, 127},
|
2016-08-26 15:28:09 +02:00
|
|
|
{SHRPX_OPT_SERVER_NAME.c_str(), required_argument, &flag, 128},
|
2016-08-31 16:47:15 +02:00
|
|
|
{SHRPX_OPT_NO_SERVER_REWRITE.c_str(), no_argument, &flag, 129},
|
2016-09-08 15:49:36 +02:00
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_OPTIMIZE_WRITE_BUFFER_SIZE.c_str(),
|
|
|
|
no_argument, &flag, 130},
|
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_OPTIMIZE_WINDOW_SIZE.c_str(), no_argument,
|
|
|
|
&flag, 131},
|
2016-09-09 14:05:37 +02:00
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_WINDOW_SIZE.c_str(), required_argument, &flag,
|
|
|
|
132},
|
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_CONNECTION_WINDOW_SIZE.c_str(),
|
|
|
|
required_argument, &flag, 133},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP2_WINDOW_SIZE.c_str(), required_argument, &flag,
|
|
|
|
134},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP2_CONNECTION_WINDOW_SIZE.c_str(),
|
|
|
|
required_argument, &flag, 135},
|
2016-09-12 15:53:02 +02:00
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_ENCODER_DYNAMIC_TABLE_SIZE.c_str(),
|
|
|
|
required_argument, &flag, 136},
|
|
|
|
{SHRPX_OPT_FRONTEND_HTTP2_DECODER_DYNAMIC_TABLE_SIZE.c_str(),
|
|
|
|
required_argument, &flag, 137},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP2_ENCODER_DYNAMIC_TABLE_SIZE.c_str(),
|
|
|
|
required_argument, &flag, 138},
|
|
|
|
{SHRPX_OPT_BACKEND_HTTP2_DECODER_DYNAMIC_TABLE_SIZE.c_str(),
|
|
|
|
required_argument, &flag, 139},
|
2016-10-08 03:50:28 +02:00
|
|
|
{SHRPX_OPT_ECDH_CURVES.c_str(), required_argument, &flag, 140},
|
2016-10-08 12:03:21 +02:00
|
|
|
{SHRPX_OPT_TLS_SCT_DIR.c_str(), required_argument, &flag, 141},
|
2016-10-10 15:50:41 +02:00
|
|
|
{SHRPX_OPT_BACKEND_CONNECT_TIMEOUT.c_str(), required_argument, &flag,
|
|
|
|
142},
|
2016-12-10 09:48:28 +01:00
|
|
|
{SHRPX_OPT_DNS_CACHE_TIMEOUT.c_str(), required_argument, &flag, 143},
|
2016-12-10 16:50:16 +01:00
|
|
|
{SHRPX_OPT_DNS_LOOKUP_TIMEOUT.c_str(), required_argument, &flag, 144},
|
|
|
|
{SHRPX_OPT_DNS_MAX_TRY.c_str(), required_argument, &flag, 145},
|
2016-01-18 09:08:28 +01:00
|
|
|
{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;
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
2016-01-18 09:08:28 +01:00
|
|
|
switch (c) {
|
|
|
|
case 'D':
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_DAEMON, StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 'L':
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_LOG_LEVEL, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 'b':
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 'c':
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_HTTP2_MAX_CONCURRENT_STREAMS,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 'f':
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
print_help(std::cout);
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
case 'k':
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_INSECURE, StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 'n':
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_WORKERS, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 'o':
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_FRAME_DEBUG,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 'p':
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_CLIENT_PROXY, StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 's':
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_HTTP2_PROXY, StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
print_version(std::cout);
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
case '?':
|
|
|
|
util::show_candidates(argv[optind - 1], long_options);
|
2013-02-09 08:42:01 +01:00
|
|
|
exit(EXIT_FAILURE);
|
2016-01-18 09:08:28 +01:00
|
|
|
case 0:
|
|
|
|
switch (flag) {
|
|
|
|
case 1:
|
|
|
|
// --add-x-forwarded-for
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ADD_X_FORWARDED_FOR,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
// --frontend-http2-read-timeout
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_READ_TIMEOUT,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
// --frontend-read-timeout
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_READ_TIMEOUT,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
// --frontend-write-timeout
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_WRITE_TIMEOUT,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
// --backend-read-timeout
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_READ_TIMEOUT, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
// --backend-write-timeout
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_WRITE_TIMEOUT,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 7:
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ACCESSLOG_FILE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
// --backend-keep-alive-timeout
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_KEEP_ALIVE_TIMEOUT,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 9:
|
|
|
|
// --frontend-http2-window-bits
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_WINDOW_BITS,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 10:
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_PID_FILE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 11:
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_USER, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 12:
|
|
|
|
// --conf
|
2016-10-02 14:22:02 +02:00
|
|
|
mod_config()->conf_path =
|
|
|
|
make_string_ref(mod_config()->balloc, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 14:
|
|
|
|
// --syslog-facility
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_SYSLOG_FACILITY, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 15:
|
|
|
|
// --backlog
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKLOG, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
// --ciphers
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_CIPHERS, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 17:
|
|
|
|
// --client
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_CLIENT, StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 18:
|
|
|
|
// --backend-http2-window-bits
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP2_WINDOW_BITS,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 19:
|
|
|
|
// --cacert
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_CACERT, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 20:
|
|
|
|
// --backend-ipv4
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_IPV4,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 21:
|
|
|
|
// --backend-ipv6
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_IPV6,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 22:
|
|
|
|
// --private-key-passwd-file
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_PRIVATE_KEY_PASSWD_FILE,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 23:
|
|
|
|
// --no-via
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_NO_VIA, StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 24:
|
|
|
|
// --subcert
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_SUBCERT, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 25:
|
|
|
|
// --http2-bridge
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_HTTP2_BRIDGE,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 26:
|
|
|
|
// --backend-http-proxy-uri
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP_PROXY_URI,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 27:
|
|
|
|
// --backend-no-tls
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_NO_TLS,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 29:
|
|
|
|
// --frontend-no-tls
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_NO_TLS,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 31:
|
|
|
|
// --backend-tls-sni-field
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_TLS_SNI_FIELD,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 33:
|
|
|
|
// --dh-param-file
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_DH_PARAM_FILE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 34:
|
|
|
|
// --read-rate
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_READ_RATE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 35:
|
|
|
|
// --read-burst
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_READ_BURST, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 36:
|
|
|
|
// --write-rate
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_WRITE_RATE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 37:
|
|
|
|
// --write-burst
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_WRITE_BURST, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 38:
|
|
|
|
// --npn-list
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_NPN_LIST, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 39:
|
|
|
|
// --verify-client
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_VERIFY_CLIENT,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 40:
|
|
|
|
// --verify-client-cacert
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_VERIFY_CLIENT_CACERT, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 41:
|
|
|
|
// --client-private-key-file
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_CLIENT_PRIVATE_KEY_FILE,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 42:
|
|
|
|
// --client-cert-file
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_CLIENT_CERT_FILE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 43:
|
|
|
|
// --frontend-http2-dump-request-header
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_DUMP_REQUEST_HEADER,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 44:
|
|
|
|
// --frontend-http2-dump-response-header
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_DUMP_RESPONSE_HEADER,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 45:
|
|
|
|
// --http2-no-cookie-crumbling
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_HTTP2_NO_COOKIE_CRUMBLING,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 46:
|
|
|
|
// --frontend-http2-connection-window-bits
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_CONNECTION_WINDOW_BITS,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 47:
|
|
|
|
// --backend-http2-connection-window-bits
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP2_CONNECTION_WINDOW_BITS,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 48:
|
|
|
|
// --tls-proto-list
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_PROTO_LIST, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 49:
|
|
|
|
// --padding
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_PADDING, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 50:
|
|
|
|
// --worker-read-rate
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_WORKER_READ_RATE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 51:
|
|
|
|
// --worker-read-burst
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_WORKER_READ_BURST, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 52:
|
|
|
|
// --worker-write-rate
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_WORKER_WRITE_RATE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 53:
|
|
|
|
// --worker-write-burst
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_WORKER_WRITE_BURST, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 54:
|
|
|
|
// --altsvc
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ALTSVC, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 55:
|
|
|
|
// --add-response-header
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ADD_RESPONSE_HEADER, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 56:
|
|
|
|
// --worker-frontend-connections
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_WORKER_FRONTEND_CONNECTIONS,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 57:
|
|
|
|
// --accesslog-syslog
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ACCESSLOG_SYSLOG,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 58:
|
|
|
|
// --errorlog-file
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ERRORLOG_FILE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 59:
|
|
|
|
// --errorlog-syslog
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ERRORLOG_SYSLOG,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 60:
|
|
|
|
// --stream-read-timeout
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_STREAM_READ_TIMEOUT, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 61:
|
|
|
|
// --stream-write-timeout
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_STREAM_WRITE_TIMEOUT, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 62:
|
|
|
|
// --no-location-rewrite
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_NO_LOCATION_REWRITE,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 63:
|
|
|
|
// --backend-http1-connections-per-host
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP1_CONNECTIONS_PER_HOST,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 64:
|
|
|
|
// --listener-disable-timeout
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_LISTENER_DISABLE_TIMEOUT,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 65:
|
|
|
|
// --strip-incoming-x-forwarded-for
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_STRIP_INCOMING_X_FORWARDED_FOR,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 66:
|
|
|
|
// --accesslog-format
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ACCESSLOG_FORMAT, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 67:
|
|
|
|
// --backend-http1-connections-per-frontend
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP1_CONNECTIONS_PER_FRONTEND,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 68:
|
|
|
|
// --tls-ticket-key-file
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_FILE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 69:
|
|
|
|
// --rlimit-nofile
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_RLIMIT_NOFILE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 71:
|
|
|
|
// --backend-response-buffer
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_RESPONSE_BUFFER,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 72:
|
|
|
|
// --backend-request-buffer
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_REQUEST_BUFFER,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 73:
|
|
|
|
// --no-host-rewrite
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_NO_HOST_REWRITE,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 74:
|
|
|
|
// --no-server-push
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_NO_SERVER_PUSH,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 76:
|
|
|
|
// --backend-http2-connections-per-worker
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP2_CONNECTIONS_PER_WORKER,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 77:
|
|
|
|
// --fetch-ocsp-response-file
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FETCH_OCSP_RESPONSE_FILE,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 78:
|
|
|
|
// --ocsp-update-interval
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_OCSP_UPDATE_INTERVAL, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 79:
|
|
|
|
// --no-ocsp
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_NO_OCSP, StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 80:
|
|
|
|
// --header-field-buffer
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_HEADER_FIELD_BUFFER, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 81:
|
|
|
|
// --max-header-fields
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_MAX_HEADER_FIELDS, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 82:
|
|
|
|
// --add-request-header
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ADD_REQUEST_HEADER, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 83:
|
|
|
|
// --include
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_INCLUDE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 84:
|
|
|
|
// --tls-ticket-key-cipher
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_CIPHER,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 85:
|
|
|
|
// --host-rewrite
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_HOST_REWRITE,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 86:
|
|
|
|
// --tls-session-cache-memcached
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_SESSION_CACHE_MEMCACHED,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 87:
|
|
|
|
// --tls-ticket-key-memcached
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 88:
|
|
|
|
// --tls-ticket-key-memcached-interval
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_INTERVAL,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 89:
|
|
|
|
// --tls-ticket-key-memcached-max-retry
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_MAX_RETRY,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 90:
|
|
|
|
// --tls-ticket-key-memcached-max-fail
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_MAX_FAIL,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 91:
|
|
|
|
// --mruby-file
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_MRUBY_FILE, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 93:
|
|
|
|
// --accept-proxy-protocol
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ACCEPT_PROXY_PROTOCOL,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 94:
|
|
|
|
// --fastopen
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FASTOPEN, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 95:
|
|
|
|
// --tls-dyn-rec-warmup-threshold
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_DYN_REC_WARMUP_THRESHOLD,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 96:
|
|
|
|
// --tls-dyn-rec-idle-timeout
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_DYN_REC_IDLE_TIMEOUT,
|
|
|
|
StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 97:
|
|
|
|
// --add-forwarded
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ADD_FORWARDED, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 98:
|
|
|
|
// --strip-incoming-forwarded
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_STRIP_INCOMING_FORWARDED,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 99:
|
|
|
|
// --forwarded-by
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FORWARDED_BY, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
case 100:
|
|
|
|
// --forwarded-for
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FORWARDED_FOR, StringRef{optarg});
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
2016-02-06 04:25:34 +01:00
|
|
|
case 101:
|
|
|
|
// --response-header-field-buffer
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_RESPONSE_HEADER_FIELD_BUFFER,
|
|
|
|
StringRef{optarg});
|
2016-02-06 04:25:34 +01:00
|
|
|
break;
|
|
|
|
case 102:
|
|
|
|
// --max-response-header-fields
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_MAX_RESPONSE_HEADER_FIELDS,
|
|
|
|
StringRef{optarg});
|
2016-02-06 04:25:34 +01:00
|
|
|
break;
|
2016-02-06 09:05:14 +01:00
|
|
|
case 103:
|
|
|
|
// --no-http2-cipher-black-list
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_NO_HTTP2_CIPHER_BLACK_LIST,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-02-06 09:05:14 +01:00
|
|
|
break;
|
2016-02-06 09:22:23 +01:00
|
|
|
case 104:
|
|
|
|
// --request-header-field-buffer
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_REQUEST_HEADER_FIELD_BUFFER,
|
|
|
|
StringRef{optarg});
|
2016-02-06 09:22:23 +01:00
|
|
|
break;
|
|
|
|
case 105:
|
|
|
|
// --max-request-header-fields
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_MAX_REQUEST_HEADER_FIELDS,
|
|
|
|
StringRef{optarg});
|
2016-02-06 09:22:23 +01:00
|
|
|
break;
|
2016-02-06 11:50:21 +01:00
|
|
|
case 106:
|
|
|
|
// --backend-http1-tls
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP1_TLS,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-02-06 11:50:21 +01:00
|
|
|
break;
|
2016-02-11 14:56:45 +01:00
|
|
|
case 108:
|
|
|
|
// --tls-session-cache-memcached-tls
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_SESSION_CACHE_MEMCACHED_TLS,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-02-11 14:56:45 +01:00
|
|
|
break;
|
2016-02-12 16:20:38 +01:00
|
|
|
case 109:
|
|
|
|
// --tls-session-cache-memcached-cert-file
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_SESSION_CACHE_MEMCACHED_CERT_FILE,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-02-12 16:20:38 +01:00
|
|
|
break;
|
|
|
|
case 110:
|
|
|
|
// --tls-session-cache-memcached-private-key-file
|
|
|
|
cmdcfgs.emplace_back(
|
2016-03-24 13:05:02 +01:00
|
|
|
SHRPX_OPT_TLS_SESSION_CACHE_MEMCACHED_PRIVATE_KEY_FILE,
|
|
|
|
StringRef{optarg});
|
2016-02-12 16:20:38 +01:00
|
|
|
break;
|
2016-02-13 10:17:11 +01:00
|
|
|
case 111:
|
|
|
|
// --tls-ticket-key-memcached-tls
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_TLS,
|
|
|
|
StringRef::from_lit("yes"));
|
2016-02-13 10:17:11 +01:00
|
|
|
break;
|
|
|
|
case 112:
|
|
|
|
// --tls-ticket-key-memcached-cert-file
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_CERT_FILE,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-02-13 10:17:11 +01:00
|
|
|
break;
|
|
|
|
case 113:
|
|
|
|
// --tls-ticket-key-memcached-private-key-file
|
|
|
|
cmdcfgs.emplace_back(
|
2016-03-24 13:05:02 +01:00
|
|
|
SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_PRIVATE_KEY_FILE,
|
|
|
|
StringRef{optarg});
|
2016-02-13 10:17:11 +01:00
|
|
|
break;
|
2016-02-13 10:45:23 +01:00
|
|
|
case 114:
|
|
|
|
// --tls-ticket-key-memcached-address-family
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_TICKET_KEY_MEMCACHED_ADDRESS_FAMILY,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-02-13 10:45:23 +01:00
|
|
|
break;
|
|
|
|
case 115:
|
|
|
|
// --tls-session-cache-memcached-address-family
|
|
|
|
cmdcfgs.emplace_back(
|
2016-03-24 13:05:02 +01:00
|
|
|
SHRPX_OPT_TLS_SESSION_CACHE_MEMCACHED_ADDRESS_FAMILY,
|
|
|
|
StringRef{optarg});
|
2016-02-13 10:45:23 +01:00
|
|
|
break;
|
2016-02-13 11:09:39 +01:00
|
|
|
case 116:
|
|
|
|
// --backend-address-family
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_ADDRESS_FAMILY,
|
|
|
|
StringRef{optarg});
|
2016-02-13 11:09:39 +01:00
|
|
|
break;
|
2016-02-27 16:06:40 +01:00
|
|
|
case 117:
|
|
|
|
// --frontend-http2-max-concurrent-streams
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_MAX_CONCURRENT_STREAMS,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-02-27 16:06:40 +01:00
|
|
|
break;
|
|
|
|
case 118:
|
|
|
|
// --backend-http2-max-concurrent-streams
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP2_MAX_CONCURRENT_STREAMS,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-02-27 16:06:40 +01:00
|
|
|
break;
|
2016-02-28 09:11:12 +01:00
|
|
|
case 119:
|
|
|
|
// --backend-connections-per-frontend
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_CONNECTIONS_PER_FRONTEND,
|
2016-03-24 13:05:02 +01:00
|
|
|
StringRef{optarg});
|
2016-02-28 09:11:12 +01:00
|
|
|
break;
|
2016-02-28 13:35:26 +01:00
|
|
|
case 120:
|
|
|
|
// --backend-tls
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_TLS, StringRef::from_lit("yes"));
|
2016-02-28 13:35:26 +01:00
|
|
|
break;
|
2016-02-28 14:15:49 +01:00
|
|
|
case 121:
|
|
|
|
// --backend-connections-per-host
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_CONNECTIONS_PER_HOST,
|
|
|
|
StringRef{optarg});
|
2016-02-28 14:15:49 +01:00
|
|
|
break;
|
2016-03-19 15:41:21 +01:00
|
|
|
case 122:
|
|
|
|
// --error-page
|
2016-03-24 13:05:02 +01:00
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ERROR_PAGE, StringRef{optarg});
|
2016-03-19 15:41:21 +01:00
|
|
|
break;
|
2016-05-06 16:10:09 +02:00
|
|
|
case 123:
|
|
|
|
// --no-kqueue
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_NO_KQUEUE, StringRef::from_lit("yes"));
|
|
|
|
break;
|
2016-05-21 07:13:57 +02:00
|
|
|
case 124:
|
|
|
|
// --frontend-http2-settings-timeout
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_SETTINGS_TIMEOUT,
|
|
|
|
StringRef{optarg});
|
|
|
|
break;
|
|
|
|
case 125:
|
|
|
|
// --backend-http2-settings-timeout
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP2_SETTINGS_TIMEOUT,
|
|
|
|
StringRef{optarg});
|
|
|
|
break;
|
2016-06-04 10:24:54 +02:00
|
|
|
case 126:
|
|
|
|
// --api-max-request-body
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_API_MAX_REQUEST_BODY, StringRef{optarg});
|
|
|
|
break;
|
2016-06-21 17:13:43 +02:00
|
|
|
case 127:
|
|
|
|
// --backend-max-backoff
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_MAX_BACKOFF, StringRef{optarg});
|
|
|
|
break;
|
2016-08-26 15:28:09 +02:00
|
|
|
case 128:
|
|
|
|
// --server-name
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_SERVER_NAME, StringRef{optarg});
|
|
|
|
break;
|
2016-08-31 16:47:15 +02:00
|
|
|
case 129:
|
|
|
|
// --no-server-rewrite
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_NO_SERVER_REWRITE,
|
|
|
|
StringRef::from_lit("yes"));
|
|
|
|
break;
|
2016-09-08 15:49:36 +02:00
|
|
|
case 130:
|
|
|
|
// --frontend-http2-optimize-write-buffer-size
|
|
|
|
cmdcfgs.emplace_back(
|
|
|
|
SHRPX_OPT_FRONTEND_HTTP2_OPTIMIZE_WRITE_BUFFER_SIZE,
|
|
|
|
StringRef::from_lit("yes"));
|
|
|
|
break;
|
|
|
|
case 131:
|
|
|
|
// --frontend-http2-optimize-window-size
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_OPTIMIZE_WINDOW_SIZE,
|
|
|
|
StringRef::from_lit("yes"));
|
|
|
|
break;
|
2016-09-09 14:05:37 +02:00
|
|
|
case 132:
|
|
|
|
// --frontend-http2-window-size
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_WINDOW_SIZE,
|
|
|
|
StringRef{optarg});
|
|
|
|
break;
|
|
|
|
case 133:
|
|
|
|
// --frontend-http2-connection-window-size
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_FRONTEND_HTTP2_CONNECTION_WINDOW_SIZE,
|
|
|
|
StringRef{optarg});
|
|
|
|
break;
|
|
|
|
case 134:
|
|
|
|
// --backend-http2-window-size
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP2_WINDOW_SIZE,
|
|
|
|
StringRef{optarg});
|
|
|
|
break;
|
|
|
|
case 135:
|
|
|
|
// --backend-http2-connection-window-size
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP2_CONNECTION_WINDOW_SIZE,
|
|
|
|
StringRef{optarg});
|
|
|
|
break;
|
2016-09-12 15:53:02 +02:00
|
|
|
case 136:
|
|
|
|
// --frontend-http2-encoder-dynamic-table-size
|
|
|
|
cmdcfgs.emplace_back(
|
|
|
|
SHRPX_OPT_FRONTEND_HTTP2_ENCODER_DYNAMIC_TABLE_SIZE,
|
|
|
|
StringRef{optarg});
|
|
|
|
break;
|
|
|
|
case 137:
|
|
|
|
// --frontend-http2-decoder-dynamic-table-size
|
|
|
|
cmdcfgs.emplace_back(
|
|
|
|
SHRPX_OPT_FRONTEND_HTTP2_DECODER_DYNAMIC_TABLE_SIZE,
|
|
|
|
StringRef{optarg});
|
|
|
|
break;
|
|
|
|
case 138:
|
|
|
|
// --backend-http2-encoder-dynamic-table-size
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP2_ENCODER_DYNAMIC_TABLE_SIZE,
|
|
|
|
StringRef{optarg});
|
|
|
|
break;
|
|
|
|
case 139:
|
|
|
|
// --backend-http2-decoder-dynamic-table-size
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_HTTP2_DECODER_DYNAMIC_TABLE_SIZE,
|
|
|
|
StringRef{optarg});
|
|
|
|
break;
|
2016-10-08 03:50:28 +02:00
|
|
|
case 140:
|
|
|
|
// --ecdh-curves
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_ECDH_CURVES, StringRef{optarg});
|
|
|
|
break;
|
2016-10-08 12:03:21 +02:00
|
|
|
case 141:
|
|
|
|
// --tls-sct-dir
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_TLS_SCT_DIR, StringRef{optarg});
|
|
|
|
break;
|
2016-10-10 15:50:41 +02:00
|
|
|
case 142:
|
|
|
|
// --backend-connect-timeout
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_BACKEND_CONNECT_TIMEOUT,
|
|
|
|
StringRef{optarg});
|
|
|
|
break;
|
2016-12-10 09:48:28 +01:00
|
|
|
case 143:
|
|
|
|
// --dns-cache-timeout
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_DNS_CACHE_TIMEOUT, StringRef{optarg});
|
|
|
|
break;
|
2016-12-10 16:50:16 +01:00
|
|
|
case 144:
|
|
|
|
// --dns-lookup-timeou
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_DNS_LOOKUP_TIMEOUT, StringRef{optarg});
|
|
|
|
break;
|
|
|
|
case 145:
|
|
|
|
// --dns-max-try
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_DNS_MAX_TRY, StringRef{optarg});
|
|
|
|
break;
|
2016-01-18 09:08:28 +01:00
|
|
|
default:
|
|
|
|
break;
|
2016-01-18 06:21:09 +01:00
|
|
|
}
|
2016-01-18 09:08:28 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2015-07-27 17:54:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-31 08:57:41 +02:00
|
|
|
if (argc - optind >= 2) {
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_PRIVATE_KEY_FILE, StringRef{argv[optind++]});
|
|
|
|
cmdcfgs.emplace_back(SHRPX_OPT_CERTIFICATE_FILE, StringRef{argv[optind++]});
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = process_options(mod_config(), cmdcfgs);
|
|
|
|
if (rv != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2015-10-04 03:36:20 +02:00
|
|
|
|
2015-09-01 17:19:32 +02:00
|
|
|
if (event_loop() != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2012-06-08 15:41:24 +02:00
|
|
|
|
2014-11-06 15:32:56 +01:00
|
|
|
LOG(NOTICE) << "Shutdown momentarily";
|
2014-08-12 15:22:02 +02:00
|
|
|
|
2016-10-23 12:10:56 +02:00
|
|
|
delete_log_config();
|
2015-09-01 19:07:29 +02:00
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace shrpx
|
|
|
|
|
2015-10-17 16:34:05 +02:00
|
|
|
int main(int argc, char **argv) { return run_app(shrpx::main, argc, argv); }
|