2012-04-13 12:47:30 +00:00
|
|
|
/*
|
2015-02-24 18:19:20 +00:00
|
|
|
* SSLsplit - transparent SSL/TLS interception
|
2016-03-25 11:19:23 +00:00
|
|
|
* Copyright (c) 2009-2016, Daniel Roethlisberger <daniel@roe.ch>
|
2012-04-13 12:47:30 +00:00
|
|
|
* All rights reserved.
|
|
|
|
* http://www.roe.ch/SSLsplit
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
2015-02-24 18:19:20 +00:00
|
|
|
* notice, this list of conditions, and the following disclaimer.
|
2012-04-13 12:47:30 +00:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PROXY_H
|
|
|
|
#define PROXY_H
|
|
|
|
|
|
|
|
#include "opts.h"
|
|
|
|
#include "attrib.h"
|
2017-05-29 09:22:23 +00:00
|
|
|
#include "pxythrmgr.h"
|
|
|
|
#include <pthread.h>
|
2017-06-30 21:29:39 +00:00
|
|
|
#include <uuid.h>
|
2012-04-13 12:47:30 +00:00
|
|
|
|
|
|
|
typedef struct proxy_ctx proxy_ctx_t;
|
2017-05-29 09:22:23 +00:00
|
|
|
typedef struct pxy_conn_ctx pxy_conn_ctx_t;
|
2017-07-02 14:47:26 +00:00
|
|
|
typedef struct pxy_conn_child_info pxy_conn_child_info_t;
|
2017-07-01 20:17:45 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Listener context.
|
|
|
|
*/
|
|
|
|
typedef struct proxy_listener_ctx {
|
|
|
|
pxy_thrmgr_ctx_t *thrmgr;
|
|
|
|
proxyspec_t *spec;
|
|
|
|
opts_t *opts;
|
|
|
|
struct evconnlistener *evcl;
|
|
|
|
struct proxy_listener_ctx *next;
|
|
|
|
int clisock;
|
|
|
|
} proxy_listener_ctx_t;
|
2017-05-29 09:22:23 +00:00
|
|
|
|
|
|
|
typedef struct proxy_conn_meta_ctx {
|
2017-07-03 23:12:17 +00:00
|
|
|
pxy_thr_ctx_t *thr;
|
2017-06-30 21:29:39 +00:00
|
|
|
uuid_t *uuid;
|
|
|
|
|
2017-05-29 09:22:23 +00:00
|
|
|
proxy_listener_ctx_t *lctx;
|
2017-06-29 21:38:37 +00:00
|
|
|
|
|
|
|
evutil_socket_t fd;
|
2017-05-29 09:22:23 +00:00
|
|
|
pxy_conn_ctx_t *parent_ctx;
|
|
|
|
|
2017-06-29 21:38:37 +00:00
|
|
|
evutil_socket_t src_fd;
|
|
|
|
evutil_socket_t e2src_fd;
|
|
|
|
evutil_socket_t dst_fd;
|
2017-05-29 09:22:23 +00:00
|
|
|
|
2017-06-29 21:38:37 +00:00
|
|
|
unsigned int src_eof : 1;
|
|
|
|
unsigned int e2src_eof : 1;
|
|
|
|
unsigned int dst_eof : 1;
|
2017-07-05 19:32:10 +00:00
|
|
|
|
2017-07-07 14:18:01 +00:00
|
|
|
// Fd of the listener event for the children
|
|
|
|
evutil_socket_t child_fd;
|
|
|
|
struct evconnlistener *child_evcl;
|
|
|
|
// SSL proxy return address: The IP:port address the children are listening to
|
|
|
|
char *child_addr;
|
|
|
|
|
|
|
|
// Child list of the conn
|
|
|
|
pxy_conn_ctx_t *child_list;
|
|
|
|
// Used to print child info, never deleted until the conn is freed
|
|
|
|
pxy_conn_child_info_t *child_info_list;
|
2017-06-29 21:38:37 +00:00
|
|
|
|
|
|
|
evutil_socket_t e2dst_fd;
|
|
|
|
evutil_socket_t dst2_fd;
|
|
|
|
|
|
|
|
unsigned int e2dst_eof : 1;
|
|
|
|
unsigned int dst2_eof : 1;
|
|
|
|
|
2017-07-07 14:18:01 +00:00
|
|
|
// Whether the conn has any child yet, set upon entry to child listener cb
|
2017-06-29 21:38:37 +00:00
|
|
|
unsigned int initialized : 1;
|
|
|
|
unsigned int child_count;
|
|
|
|
|
2017-06-27 14:09:01 +00:00
|
|
|
/* server name indicated by client in SNI TLS extension */
|
|
|
|
char *sni;
|
|
|
|
/* original destination address, family and certificate */
|
|
|
|
struct sockaddr_storage addr;
|
|
|
|
socklen_t addrlen;
|
|
|
|
|
2017-07-07 14:18:01 +00:00
|
|
|
// Index of the thread the conn is attached to
|
2017-06-29 21:38:37 +00:00
|
|
|
int thridx;
|
2017-07-01 20:17:45 +00:00
|
|
|
|
2017-07-07 14:18:01 +00:00
|
|
|
// Last access time, to determine expired conns
|
|
|
|
// Updated on entry to callback functions
|
2017-06-29 21:38:37 +00:00
|
|
|
time_t access_time;
|
2017-07-07 14:18:01 +00:00
|
|
|
|
|
|
|
// Per-thread conn list
|
2017-05-29 09:22:23 +00:00
|
|
|
proxy_conn_meta_ctx_t *next;
|
2017-07-07 14:18:01 +00:00
|
|
|
// Expired conns are link-listed using this pointer
|
|
|
|
proxy_conn_meta_ctx_t *next_expired;
|
2017-05-29 09:22:23 +00:00
|
|
|
} proxy_conn_meta_ctx_t;
|
|
|
|
|
2014-11-24 21:01:52 +00:00
|
|
|
proxy_ctx_t * proxy_new(opts_t *, int) NONNULL(1) MALLOC;
|
2014-01-06 13:28:33 +00:00
|
|
|
void proxy_run(proxy_ctx_t *) NONNULL(1);
|
2016-03-25 14:56:42 +00:00
|
|
|
void proxy_loopbreak(proxy_ctx_t *) NONNULL(1);
|
2014-01-06 13:28:33 +00:00
|
|
|
void proxy_free(proxy_ctx_t *) NONNULL(1);
|
2017-07-05 19:32:10 +00:00
|
|
|
void
|
|
|
|
proxy_listener_errorcb(struct evconnlistener *listener, UNUSED void *ctx);
|
2012-04-13 12:47:30 +00:00
|
|
|
|
|
|
|
#endif /* !PROXY_H */
|
|
|
|
|
|
|
|
/* vim: set noet ft=c: */
|