2012-06-04 16:48:31 +02:00
|
|
|
/*
|
2013-07-12 17:19:03 +02:00
|
|
|
* nghttp2 - HTTP/2.0 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.
|
|
|
|
*/
|
|
|
|
#ifndef SHRPX_CONFIG_H
|
|
|
|
#define SHRPX_CONFIG_H
|
|
|
|
|
2012-06-04 20:11:43 +02:00
|
|
|
#include "shrpx.h"
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
2013-02-06 15:27:05 +01:00
|
|
|
#include <vector>
|
|
|
|
|
2013-09-12 17:25:24 +02:00
|
|
|
#include <event.h>
|
2013-02-06 15:27:05 +01:00
|
|
|
#include <openssl/ssl.h>
|
2012-06-04 16:48:31 +02:00
|
|
|
|
|
|
|
namespace shrpx {
|
|
|
|
|
2013-02-06 15:27:05 +01:00
|
|
|
namespace ssl {
|
|
|
|
|
|
|
|
struct CertLookupTree;
|
|
|
|
|
|
|
|
} // namespace ssl
|
|
|
|
|
2012-08-01 17:06:41 +02:00
|
|
|
extern const char SHRPX_OPT_PRIVATE_KEY_FILE[];
|
2012-12-03 07:33:04 +01:00
|
|
|
extern const char SHRPX_OPT_PRIVATE_KEY_PASSWD_FILE[];
|
2012-08-01 17:06:41 +02:00
|
|
|
extern const char SHRPX_OPT_CERTIFICATE_FILE[];
|
2013-08-30 15:07:42 +02:00
|
|
|
extern const char SHRPX_OPT_DH_PARAM_FILE[];
|
2013-02-06 15:27:05 +01:00
|
|
|
extern const char SHRPX_OPT_SUBCERT[];
|
2012-08-01 17:06:41 +02:00
|
|
|
extern const char SHRPX_OPT_BACKEND[];
|
|
|
|
extern const char SHRPX_OPT_FRONTEND[];
|
|
|
|
extern const char SHRPX_OPT_WORKERS[];
|
|
|
|
extern const char SHRPX_OPT_SPDY_MAX_CONCURRENT_STREAMS[];
|
|
|
|
extern const char SHRPX_OPT_LOG_LEVEL[];
|
|
|
|
extern const char SHRPX_OPT_DAEMON[];
|
|
|
|
extern const char SHRPX_OPT_SPDY_PROXY[];
|
2013-02-08 13:46:58 +01:00
|
|
|
extern const char SHRPX_OPT_SPDY_BRIDGE[];
|
2012-11-21 14:10:35 +01:00
|
|
|
extern const char SHRPX_OPT_CLIENT_PROXY[];
|
2012-08-01 17:06:41 +02:00
|
|
|
extern const char SHRPX_OPT_ADD_X_FORWARDED_FOR[];
|
2013-01-09 14:01:25 +01:00
|
|
|
extern const char SHRPX_OPT_NO_VIA[];
|
2012-08-01 17:06:41 +02:00
|
|
|
extern const char SHRPX_OPT_FRONTEND_SPDY_READ_TIMEOUT[];
|
|
|
|
extern const char SHRPX_OPT_FRONTEND_READ_TIMEOUT[];
|
|
|
|
extern const char SHRPX_OPT_FRONTEND_WRITE_TIMEOUT[];
|
|
|
|
extern const char SHRPX_OPT_BACKEND_READ_TIMEOUT[];
|
|
|
|
extern const char SHRPX_OPT_BACKEND_WRITE_TIMEOUT[];
|
|
|
|
extern const char SHRPX_OPT_ACCESSLOG[];
|
|
|
|
extern const char SHRPX_OPT_BACKEND_KEEP_ALIVE_TIMEOUT[];
|
|
|
|
extern const char SHRPX_OPT_FRONTEND_SPDY_WINDOW_BITS[];
|
2012-11-21 15:47:48 +01:00
|
|
|
extern const char SHRPX_OPT_BACKEND_SPDY_WINDOW_BITS[];
|
2013-08-03 11:58:14 +02:00
|
|
|
extern const char SHRPX_OPT_FRONTEND_NO_TLS[];
|
|
|
|
extern const char SHRPX_OPT_BACKEND_NO_TLS[];
|
2012-08-01 17:06:41 +02:00
|
|
|
extern const char SHRPX_OPT_PID_FILE[];
|
|
|
|
extern const char SHRPX_OPT_USER[];
|
2012-08-01 18:20:18 +02:00
|
|
|
extern const char SHRPX_OPT_SYSLOG[];
|
|
|
|
extern const char SHRPX_OPT_SYSLOG_FACILITY[];
|
2012-08-01 18:28:59 +02:00
|
|
|
extern const char SHRPX_OPT_BACKLOG[];
|
2012-08-20 14:50:03 +02:00
|
|
|
extern const char SHRPX_OPT_CIPHERS[];
|
2013-04-18 20:25:48 +02:00
|
|
|
extern const char SHRPX_OPT_HONOR_CIPHER_ORDER[];
|
2012-11-21 14:10:35 +01:00
|
|
|
extern const char SHRPX_OPT_CLIENT[];
|
2012-11-22 13:46:15 +01:00
|
|
|
extern const char SHRPX_OPT_INSECURE[];
|
|
|
|
extern const char SHRPX_OPT_CACERT[];
|
2012-11-23 13:11:01 +01:00
|
|
|
extern const char SHRPX_OPT_BACKEND_IPV4[];
|
|
|
|
extern const char SHRPX_OPT_BACKEND_IPV6[];
|
2013-02-09 08:42:01 +01:00
|
|
|
extern const char SHRPX_OPT_BACKEND_HTTP_PROXY_URI[];
|
2013-03-29 14:06:33 +01:00
|
|
|
extern const char SHRPX_OPT_BACKEND_TLS_SNI_FIELD[];
|
2013-09-13 14:23:55 +02:00
|
|
|
extern const char SHRPX_OPT_READ_RATE[];
|
|
|
|
extern const char SHRPX_OPT_READ_BURST[];
|
|
|
|
extern const char SHRPX_OPT_WRITE_RATE[];
|
|
|
|
extern const char SHRPX_OPT_WRITE_BURST[];
|
2013-09-23 13:55:39 +02:00
|
|
|
extern const char SHRPX_OPT_NPN_LIST[];
|
2013-11-01 17:10:18 +01:00
|
|
|
extern const char SHRPX_OPT_VERIFY_CLIENT[];
|
2013-11-02 13:30:32 +01:00
|
|
|
extern const char SHRPX_OPT_VERIFY_CLIENT_CACERT[];
|
2012-08-01 17:06:41 +02:00
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
union sockaddr_union {
|
|
|
|
sockaddr sa;
|
|
|
|
sockaddr_storage storage;
|
|
|
|
sockaddr_in6 in6;
|
|
|
|
sockaddr_in in;
|
|
|
|
};
|
|
|
|
|
2013-02-22 13:54:07 +01:00
|
|
|
enum shrpx_proto {
|
|
|
|
PROTO_SPDY,
|
|
|
|
PROTO_HTTP
|
|
|
|
};
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
struct Config {
|
|
|
|
bool verbose;
|
|
|
|
bool daemon;
|
2012-08-01 17:06:41 +02:00
|
|
|
char *host;
|
2012-06-04 16:48:31 +02:00
|
|
|
uint16_t port;
|
2012-08-01 17:06:41 +02:00
|
|
|
char *private_key_file;
|
2012-12-03 07:33:04 +01:00
|
|
|
char *private_key_passwd;
|
2012-08-01 17:06:41 +02:00
|
|
|
char *cert_file;
|
2013-08-30 15:07:42 +02:00
|
|
|
char *dh_param_file;
|
2013-02-06 15:27:05 +01:00
|
|
|
SSL_CTX *default_ssl_ctx;
|
|
|
|
ssl::CertLookupTree *cert_tree;
|
2012-06-04 16:48:31 +02:00
|
|
|
bool verify_client;
|
|
|
|
const char *server_name;
|
2012-08-01 17:06:41 +02:00
|
|
|
char *downstream_host;
|
2012-06-04 16:48:31 +02:00
|
|
|
uint16_t downstream_port;
|
2012-08-01 17:06:41 +02:00
|
|
|
char *downstream_hostport;
|
2012-06-04 16:48:31 +02:00
|
|
|
sockaddr_union downstream_addr;
|
|
|
|
size_t downstream_addrlen;
|
2012-07-17 17:13:11 +02:00
|
|
|
timeval spdy_upstream_read_timeout;
|
2012-06-04 16:48:31 +02:00
|
|
|
timeval upstream_read_timeout;
|
|
|
|
timeval upstream_write_timeout;
|
|
|
|
timeval downstream_read_timeout;
|
|
|
|
timeval downstream_write_timeout;
|
2012-06-12 16:02:01 +02:00
|
|
|
timeval downstream_idle_read_timeout;
|
2012-06-05 18:26:04 +02:00
|
|
|
size_t num_worker;
|
2012-06-06 16:58:19 +02:00
|
|
|
size_t spdy_max_concurrent_streams;
|
2012-07-11 09:20:16 +02:00
|
|
|
bool spdy_proxy;
|
2013-02-08 13:46:58 +01:00
|
|
|
bool spdy_bridge;
|
2012-11-21 14:10:35 +01:00
|
|
|
bool client_proxy;
|
2012-07-12 16:39:11 +02:00
|
|
|
bool add_x_forwarded_for;
|
2013-01-09 14:01:25 +01:00
|
|
|
bool no_via;
|
2012-07-17 18:08:05 +02:00
|
|
|
bool accesslog;
|
2012-07-26 16:18:37 +02:00
|
|
|
size_t spdy_upstream_window_bits;
|
2012-11-21 15:47:48 +01:00
|
|
|
size_t spdy_downstream_window_bits;
|
2013-08-03 12:01:57 +02:00
|
|
|
bool upstream_no_tls;
|
|
|
|
bool downstream_no_tls;
|
2013-03-29 14:06:33 +01:00
|
|
|
char *backend_tls_sni_name;
|
2012-08-01 17:06:41 +02:00
|
|
|
char *pid_file;
|
2012-07-31 18:51:16 +02:00
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
2012-08-01 17:06:41 +02:00
|
|
|
char *conf_path;
|
2012-08-01 18:20:18 +02:00
|
|
|
bool syslog;
|
|
|
|
int syslog_facility;
|
|
|
|
// This member finally decides syslog is used or not
|
|
|
|
bool use_syslog;
|
2012-08-01 18:28:59 +02:00
|
|
|
int backlog;
|
2012-08-20 14:50:03 +02:00
|
|
|
char *ciphers;
|
2013-04-18 20:25:48 +02:00
|
|
|
bool honor_cipher_order;
|
2012-11-21 14:10:35 +01:00
|
|
|
bool client;
|
|
|
|
// true if --client or --client-proxy are enabled.
|
2012-11-18 13:23:13 +01:00
|
|
|
bool client_mode;
|
2013-02-22 13:54:07 +01:00
|
|
|
// downstream protocol; this will be determined by given options.
|
|
|
|
shrpx_proto downstream_proto;
|
2012-11-22 13:46:15 +01:00
|
|
|
bool insecure;
|
|
|
|
char *cacert;
|
2012-11-23 13:11:01 +01:00
|
|
|
bool backend_ipv4;
|
|
|
|
bool backend_ipv6;
|
2012-12-09 13:02:48 +01:00
|
|
|
// true if stderr refers to a terminal.
|
|
|
|
bool tty;
|
2013-02-09 08:42:01 +01:00
|
|
|
// userinfo in http proxy URI, not percent-encoded form
|
|
|
|
char *downstream_http_proxy_userinfo;
|
|
|
|
// host in http proxy URI
|
|
|
|
char *downstream_http_proxy_host;
|
|
|
|
// port in http proxy URI
|
|
|
|
uint16_t downstream_http_proxy_port;
|
|
|
|
// binary form of http proxy host and port
|
|
|
|
sockaddr_union downstream_http_proxy_addr;
|
|
|
|
// actual size of downstream_http_proxy_addr
|
|
|
|
size_t downstream_http_proxy_addrlen;
|
2013-09-12 17:25:24 +02:00
|
|
|
// Rate limit configuration
|
|
|
|
ev_token_bucket_cfg *rate_limit_cfg;
|
2013-09-13 14:23:55 +02:00
|
|
|
size_t read_rate;
|
|
|
|
size_t read_burst;
|
|
|
|
size_t write_rate;
|
|
|
|
size_t write_burst;
|
2013-09-23 13:55:39 +02:00
|
|
|
// Comma delimited list of NPN protocol strings in the order of
|
|
|
|
// preference.
|
|
|
|
char **npn_list;
|
|
|
|
// The number of elements in npn_list
|
|
|
|
size_t npn_list_len;
|
2013-11-01 17:10:18 +01:00
|
|
|
// The list of (private key file, certificate file) pair
|
|
|
|
std::vector<std::pair<std::string, std::string>> subcerts;
|
2013-11-02 13:30:32 +01:00
|
|
|
// Path to file containing CA certificate solely used for client
|
|
|
|
// certificate validation
|
|
|
|
char *verify_client_cacert;
|
2012-06-04 16:48:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const Config* get_config();
|
|
|
|
Config* mod_config();
|
|
|
|
void create_config();
|
|
|
|
|
2012-08-01 17:06:41 +02:00
|
|
|
// Parses option name |opt| and value |optarg|. The results are
|
|
|
|
// stored into statically allocated Config object. This function
|
|
|
|
// returns 0 if it succeeds, or -1.
|
|
|
|
int parse_config(const char *opt, const char *optarg);
|
|
|
|
|
|
|
|
// Loads configurations from |filename| and stores them in statically
|
|
|
|
// allocated Config object. This function returns 0 if it succeeds, or
|
|
|
|
// -1.
|
|
|
|
int load_config(const char *filename);
|
|
|
|
|
2012-12-03 07:33:04 +01:00
|
|
|
// Read passwd from |filename|
|
|
|
|
std::string read_passwd_from_file(const char *filename);
|
|
|
|
|
2013-09-23 13:55:39 +02:00
|
|
|
// Parses NPN protocol strings in |s| and stores the protocols list in
|
|
|
|
// mod_config()->npn_list and assigns the number of elements in
|
|
|
|
// mod_config()->npn_list_len. The |s| must be comma delimited list of
|
|
|
|
// protocol strings. The strings must be delimited by a single command
|
|
|
|
// and any white spaces around it are treated as a part of protocol
|
|
|
|
// strings. This function always succeeds and returns 0.
|
|
|
|
int parse_config_npn_list(const char *s);
|
|
|
|
|
2012-08-01 17:06:41 +02:00
|
|
|
// Copies NULL-terminated string |val| to |*destp|. If |*destp| is not
|
|
|
|
// NULL, it is freed before copying.
|
|
|
|
void set_config_str(char **destp, const char *val);
|
|
|
|
|
2012-08-01 18:20:18 +02:00
|
|
|
// Returns string for syslog |facility|.
|
|
|
|
const char* str_syslog_facility(int facility);
|
|
|
|
|
|
|
|
// Returns integer value of syslog |facility| string.
|
|
|
|
int int_syslog_facility(const char *strfacility);
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
} // namespace shrpx
|
|
|
|
|
|
|
|
#endif // SHRPX_CONFIG_H
|