2018-02-27 19:20:58 +00:00
|
|
|
/*-
|
2015-02-24 18:19:20 +00:00
|
|
|
* SSLsplit - transparent SSL/TLS interception
|
2018-02-27 19:20:58 +00:00
|
|
|
* https://www.roe.ch/SSLsplit
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009-2018, Daniel Roethlisberger <daniel@roe.ch>.
|
2012-04-13 12:47:30 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
2018-02-27 19:20:58 +00:00
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
2012-04-13 12:47:30 +00:00
|
|
|
*
|
2018-02-27 19:20:58 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS''
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
2012-04-13 12:47:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OPTS_H
|
|
|
|
#define OPTS_H
|
|
|
|
|
2014-11-14 15:20:07 +00:00
|
|
|
#include "proc.h"
|
2012-04-13 12:47:30 +00:00
|
|
|
#include "nat.h"
|
|
|
|
#include "ssl.h"
|
|
|
|
#include "attrib.h"
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
typedef struct proxyspec {
|
|
|
|
unsigned int ssl : 1;
|
|
|
|
unsigned int http : 1;
|
2015-04-21 14:00:55 +00:00
|
|
|
unsigned int upgrade: 1;
|
2017-08-19 22:46:57 +00:00
|
|
|
unsigned int pop3 : 1;
|
|
|
|
unsigned int smtp : 1;
|
2015-09-27 14:39:24 +00:00
|
|
|
unsigned int dns : 1; /* set if spec needs DNS lookups */
|
2012-04-13 12:47:30 +00:00
|
|
|
struct sockaddr_storage listen_addr;
|
|
|
|
socklen_t listen_addrlen;
|
|
|
|
/* connect_addr and connect_addrlen are set: static mode;
|
|
|
|
* natlookup is set: NAT mode; natsocket /may/ be set too;
|
|
|
|
* sni_port is set, in which case we use SNI lookups */
|
|
|
|
struct sockaddr_storage connect_addr;
|
|
|
|
socklen_t connect_addrlen;
|
|
|
|
unsigned short sni_port;
|
|
|
|
char *natengine;
|
|
|
|
nat_lookup_cb_t natlookup;
|
|
|
|
nat_socket_cb_t natsocket;
|
|
|
|
struct proxyspec *next;
|
2017-05-29 09:22:23 +00:00
|
|
|
|
2018-09-22 23:02:15 +00:00
|
|
|
struct sockaddr_storage conn_dst_addr;
|
|
|
|
socklen_t conn_dst_addrlen;
|
2017-05-29 09:22:23 +00:00
|
|
|
|
2017-07-12 21:45:12 +00:00
|
|
|
struct sockaddr_storage child_src_addr;
|
|
|
|
socklen_t child_src_addrlen;
|
2012-04-13 12:47:30 +00:00
|
|
|
} proxyspec_t;
|
|
|
|
|
|
|
|
typedef struct opts {
|
|
|
|
unsigned int debug : 1;
|
|
|
|
unsigned int detach : 1;
|
|
|
|
unsigned int sslcomp : 1;
|
2015-07-28 21:23:53 +00:00
|
|
|
#ifdef HAVE_SSLV2
|
2014-11-05 19:06:11 +00:00
|
|
|
unsigned int no_ssl2 : 1;
|
2015-07-28 21:23:53 +00:00
|
|
|
#endif /* HAVE_SSLV2 */
|
|
|
|
#ifdef HAVE_SSLV3
|
2014-11-05 19:06:11 +00:00
|
|
|
unsigned int no_ssl3 : 1;
|
2015-07-28 21:23:53 +00:00
|
|
|
#endif /* HAVE_SSLV3 */
|
|
|
|
#ifdef HAVE_TLSV10
|
2014-11-05 19:06:11 +00:00
|
|
|
unsigned int no_tls10 : 1;
|
2015-07-28 21:23:53 +00:00
|
|
|
#endif /* HAVE_TLSV10 */
|
|
|
|
#ifdef HAVE_TLSV11
|
2014-11-05 19:06:11 +00:00
|
|
|
unsigned int no_tls11 : 1;
|
2015-07-28 21:23:53 +00:00
|
|
|
#endif /* HAVE_TLSV11 */
|
|
|
|
#ifdef HAVE_TLSV12
|
2014-11-05 19:06:11 +00:00
|
|
|
unsigned int no_tls12 : 1;
|
2015-07-28 21:23:53 +00:00
|
|
|
#endif /* HAVE_TLSV12 */
|
2012-04-13 12:47:30 +00:00
|
|
|
unsigned int passthrough : 1;
|
2012-04-22 17:12:38 +00:00
|
|
|
unsigned int deny_ocsp : 1;
|
2014-11-21 11:03:08 +00:00
|
|
|
unsigned int contentlog_isdir : 1;
|
|
|
|
unsigned int contentlog_isspec : 1;
|
2018-11-03 15:23:31 +00:00
|
|
|
unsigned int pcaplog_isdir : 1;
|
|
|
|
unsigned int pcaplog_isspec : 1;
|
2014-11-14 15:20:07 +00:00
|
|
|
#ifdef HAVE_LOCAL_PROCINFO
|
|
|
|
unsigned int lprocinfo : 1;
|
|
|
|
#endif /* HAVE_LOCAL_PROCINFO */
|
2018-11-03 15:23:31 +00:00
|
|
|
unsigned int certgen_writeall : 1;
|
2018-09-14 23:51:26 +00:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
|
|
|
char *openssl_engine;
|
|
|
|
#endif /* !OPENSSL_NO_ENGINE */
|
2012-04-13 12:47:30 +00:00
|
|
|
char *ciphers;
|
2014-12-13 01:36:45 +00:00
|
|
|
char *certgendir;
|
2012-04-13 12:47:30 +00:00
|
|
|
char *tgcrtdir;
|
|
|
|
char *dropuser;
|
2014-10-18 06:34:51 +00:00
|
|
|
char *dropgroup;
|
2012-04-13 12:47:30 +00:00
|
|
|
char *jaildir;
|
|
|
|
char *pidfile;
|
2017-08-16 13:01:52 +00:00
|
|
|
char *conffile;
|
2012-04-13 12:47:30 +00:00
|
|
|
char *connectlog;
|
|
|
|
char *contentlog;
|
2018-11-03 15:23:31 +00:00
|
|
|
char *contentlog_basedir; /* static part of logspec for privsep srv */
|
2018-02-27 19:20:58 +00:00
|
|
|
char *masterkeylog;
|
2018-11-03 15:23:31 +00:00
|
|
|
char *pcaplog;
|
|
|
|
char *pcaplog_basedir; /* static part of pcap logspec for privsep srv */
|
|
|
|
#ifndef WITHOUT_MIRROR
|
|
|
|
char *mirrorif;
|
|
|
|
char *mirrortarget;
|
|
|
|
#endif /* !WITHOUT_MIRROR */
|
2014-11-19 21:38:21 +00:00
|
|
|
CONST_SSL_METHOD *(*sslmethod)(void);
|
2018-08-22 19:48:55 +00:00
|
|
|
#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && !defined(LIBRESSL_VERSION_NUMBER)
|
2018-03-16 09:12:48 +00:00
|
|
|
int sslversion;
|
|
|
|
#endif /* OPENSSL_VERSION_NUMBER >= 0x10100000L */
|
2012-04-13 12:47:30 +00:00
|
|
|
X509 *cacrt;
|
|
|
|
EVP_PKEY *cakey;
|
|
|
|
EVP_PKEY *key;
|
|
|
|
STACK_OF(X509) *chain;
|
2018-08-03 20:36:51 +00:00
|
|
|
X509 *clientcrt;
|
|
|
|
EVP_PKEY *clientkey;
|
2012-04-13 12:47:30 +00:00
|
|
|
#ifndef OPENSSL_NO_DH
|
|
|
|
DH *dh;
|
|
|
|
#endif /* !OPENSSL_NO_DH */
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
char *ecdhcurve;
|
|
|
|
#endif /* !OPENSSL_NO_ECDH */
|
|
|
|
proxyspec_t *spec;
|
2018-01-18 00:18:53 +00:00
|
|
|
char *crlurl;
|
2017-08-16 13:01:52 +00:00
|
|
|
unsigned int conn_idle_timeout;
|
|
|
|
unsigned int expired_conn_check_period;
|
|
|
|
unsigned int ssl_shutdown_retry_delay;
|
|
|
|
unsigned int stats_period;
|
2018-08-03 14:14:21 +00:00
|
|
|
unsigned int statslog: 1;
|
|
|
|
unsigned int log_stats: 1;
|
|
|
|
unsigned int remove_http_accept_encoding: 1;
|
|
|
|
unsigned int remove_http_referer: 1;
|
|
|
|
unsigned int verify_peer: 1;
|
|
|
|
unsigned int allow_wrong_host: 1;
|
2012-04-13 12:47:30 +00:00
|
|
|
} opts_t;
|
|
|
|
|
2018-05-09 17:05:29 +00:00
|
|
|
void NORET oom_die(const char *) NONNULL(1);
|
|
|
|
|
2012-04-13 12:47:30 +00:00
|
|
|
opts_t *opts_new(void) MALLOC;
|
2014-01-06 13:28:33 +00:00
|
|
|
void opts_free(opts_t *) NONNULL(1);
|
|
|
|
int opts_has_ssl_spec(opts_t *) NONNULL(1) WUNRES;
|
2015-09-27 14:39:24 +00:00
|
|
|
int opts_has_dns_spec(opts_t *) NONNULL(1) WUNRES;
|
2014-11-05 20:18:53 +00:00
|
|
|
void opts_proto_dbg_dump(opts_t *) NONNULL(1);
|
2012-05-13 13:24:50 +00:00
|
|
|
#define OPTS_DEBUG(opts) unlikely((opts)->debug)
|
2012-04-13 12:47:30 +00:00
|
|
|
|
2018-05-09 17:05:29 +00:00
|
|
|
void proxyspec_parse(int *, char **[], const char *, proxyspec_t **);
|
2014-01-06 13:28:33 +00:00
|
|
|
void proxyspec_free(proxyspec_t *) NONNULL(1);
|
2018-05-09 17:05:29 +00:00
|
|
|
char *proxyspec_str(proxyspec_t *) NONNULL(1) MALLOC;
|
|
|
|
|
|
|
|
void opts_set_cacrt(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_cakey(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_chain(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_key(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_crl(opts_t *, const char *) NONNULL(1,2);
|
|
|
|
void opts_set_tgcrtdir(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
2018-09-14 23:51:26 +00:00
|
|
|
void opts_set_certgendir_writeall(opts_t *, const char *, const char *)
|
|
|
|
NONNULL(1,2,3);
|
|
|
|
void opts_set_certgendir_writegencerts(opts_t *, const char *, const char *)
|
|
|
|
NONNULL(1,2,3);
|
2018-05-09 17:05:29 +00:00
|
|
|
void opts_set_deny_ocsp(opts_t *) NONNULL(1);
|
|
|
|
void opts_set_passthrough(opts_t *) NONNULL(1);
|
2018-08-03 20:36:51 +00:00
|
|
|
void opts_set_clientcrt(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_clientkey(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
2018-05-09 17:05:29 +00:00
|
|
|
#ifndef OPENSSL_NO_DH
|
|
|
|
void opts_set_dh(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
#endif /* !OPENSSL_NO_DH */
|
|
|
|
#ifndef OPENSSL_NO_ECDH
|
|
|
|
void opts_set_ecdhcurve(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
#endif /* !OPENSSL_NO_ECDH */
|
|
|
|
void opts_unset_sslcomp(opts_t *) NONNULL(1);
|
|
|
|
void opts_force_proto(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_disable_proto(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_ciphers(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
2018-09-14 23:51:26 +00:00
|
|
|
void opts_set_openssl_engine(opts_t *, const char *, const char *)
|
|
|
|
NONNULL(1,2,3);
|
2018-05-09 17:05:29 +00:00
|
|
|
void opts_set_user(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_group(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_jaildir(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_pidfile(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_connectlog(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_contentlog(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
2018-09-14 23:51:26 +00:00
|
|
|
void opts_set_contentlogdir(opts_t *, const char *, const char *)
|
|
|
|
NONNULL(1,2,3);
|
|
|
|
void opts_set_contentlogpathspec(opts_t *, const char *, const char *)
|
|
|
|
NONNULL(1,2,3);
|
2018-05-09 17:05:29 +00:00
|
|
|
#ifdef HAVE_LOCAL_PROCINFO
|
|
|
|
void opts_set_lprocinfo(opts_t *) NONNULL(1);
|
|
|
|
#endif /* HAVE_LOCAL_PROCINFO */
|
|
|
|
void opts_set_masterkeylog(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
2018-11-03 15:23:31 +00:00
|
|
|
void opts_set_pcaplog(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_pcaplogdir(opts_t *, const char *, const char *)
|
|
|
|
NONNULL(1,2,3);
|
|
|
|
void opts_set_pcaplogpathspec(opts_t *, const char *, const char *)
|
|
|
|
NONNULL(1,2,3);
|
|
|
|
#ifndef WITHOUT_MIRROR
|
|
|
|
void opts_set_mirrorif(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
void opts_set_mirrortarget(opts_t *, const char *, const char *) NONNULL(1,2,3);
|
|
|
|
#endif /* !WITHOUT_MIRROR */
|
2018-05-09 17:05:29 +00:00
|
|
|
void opts_set_daemon(opts_t *) NONNULL(1);
|
|
|
|
void opts_set_debug(opts_t *) NONNULL(1);
|
|
|
|
void opts_set_debug_level(const char *) NONNULL(1);
|
|
|
|
void opts_set_statslog(opts_t *) NONNULL(1);
|
2018-09-14 23:51:26 +00:00
|
|
|
int opts_set_option(opts_t *, const char *, const char *, char **)
|
|
|
|
NONNULL(1,2,3);
|
2012-04-13 12:47:30 +00:00
|
|
|
|
2018-11-29 23:49:37 +00:00
|
|
|
int opts_load_conffile(opts_t *, const char *, char **) NONNULL(1,2);
|
2012-04-13 12:47:30 +00:00
|
|
|
#endif /* !OPTS_H */
|
|
|
|
|
|
|
|
/* vim: set noet ft=c: */
|