mirror of
https://github.com/sonertari/SSLproxy
synced 2024-11-18 03:25:31 +00:00
209 lines
5.5 KiB
C
209 lines
5.5 KiB
C
/*-
|
|
* SSLsplit - transparent SSL/TLS interception
|
|
* https://www.roe.ch/SSLsplit
|
|
*
|
|
* Copyright (c) 2009-2019, Daniel Roethlisberger <daniel@roe.ch>.
|
|
* Copyright (c) 2017-2021, Soner Tari <sonertari@gmail.com>.
|
|
* All rights reserved.
|
|
*
|
|
* 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 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.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include "pxythrmgr.h"
|
|
|
|
#include "sys.h"
|
|
#include "log.h"
|
|
#include "pxyconn.h"
|
|
|
|
#include <string.h>
|
|
#include <event2/bufferevent.h>
|
|
|
|
/*
|
|
* Proxy thread manager: manages the connection handling worker threads
|
|
* and the per-thread resources (i.e. event bases). The load is shared
|
|
* across num_cpu * 2 connection handling threads, using the number of
|
|
* currently assigned connections as the sole metric.
|
|
*/
|
|
|
|
/*
|
|
* Create new thread manager but do not start any threads yet.
|
|
* This gets called before forking to background.
|
|
*/
|
|
pxy_thrmgr_ctx_t *
|
|
pxy_thrmgr_new(opts_t *opts)
|
|
{
|
|
pxy_thrmgr_ctx_t *ctx;
|
|
|
|
if (!(ctx = malloc(sizeof(pxy_thrmgr_ctx_t))))
|
|
return NULL;
|
|
memset(ctx, 0, sizeof(pxy_thrmgr_ctx_t));
|
|
|
|
ctx->opts = opts;
|
|
ctx->num_thr = 2 * sys_get_cpu_cores();
|
|
return ctx;
|
|
}
|
|
|
|
/*
|
|
* Start the thread manager and associated threads.
|
|
* This must be called after forking.
|
|
*
|
|
* Returns -1 on failure, 0 on success.
|
|
*/
|
|
int
|
|
pxy_thrmgr_run(pxy_thrmgr_ctx_t *ctx)
|
|
{
|
|
int i = -1;
|
|
|
|
if (!(ctx->thr = malloc(ctx->num_thr * sizeof(pxy_thr_ctx_t*)))) {
|
|
log_dbg_printf("Failed to allocate memory\n");
|
|
goto leave;
|
|
}
|
|
memset(ctx->thr, 0, ctx->num_thr * sizeof(pxy_thr_ctx_t*));
|
|
|
|
for (i = 0; i < ctx->num_thr; i++) {
|
|
if (!(ctx->thr[i] = malloc(sizeof(pxy_thr_ctx_t)))) {
|
|
log_dbg_printf("Failed to allocate memory\n");
|
|
goto leave;
|
|
}
|
|
memset(ctx->thr[i], 0, sizeof(pxy_thr_ctx_t));
|
|
ctx->thr[i]->evbase = event_base_new();
|
|
if (!ctx->thr[i]->evbase) {
|
|
log_dbg_printf("Failed to create evbase %d\n", i);
|
|
goto leave;
|
|
}
|
|
ctx->thr[i]->load = 0;
|
|
ctx->thr[i]->running = 0;
|
|
ctx->thr[i]->conns = NULL;
|
|
ctx->thr[i]->id = i;
|
|
ctx->thr[i]->timeout_count = 0;
|
|
ctx->thr[i]->thrmgr = ctx;
|
|
}
|
|
|
|
log_dbg_printf("Initialized %d connection handling threads\n",
|
|
ctx->num_thr);
|
|
|
|
for (i = 0; i < ctx->num_thr; i++) {
|
|
if (pthread_create(&ctx->thr[i]->thr, NULL,
|
|
pxy_thr, ctx->thr[i]))
|
|
goto leave_thr;
|
|
while (!ctx->thr[i]->running) {
|
|
sched_yield();
|
|
}
|
|
}
|
|
|
|
log_dbg_printf("Started %d connection handling threads\n",
|
|
ctx->num_thr);
|
|
|
|
return 0;
|
|
|
|
leave_thr:
|
|
i--;
|
|
while (i >= 0) {
|
|
pthread_cancel(ctx->thr[i]->thr);
|
|
pthread_join(ctx->thr[i]->thr, NULL);
|
|
i--;
|
|
}
|
|
i = ctx->num_thr - 1;
|
|
|
|
leave:
|
|
while (i >= 0) {
|
|
if (ctx->thr[i]) {
|
|
if (ctx->thr[i]->evbase) {
|
|
event_base_free(ctx->thr[i]->evbase);
|
|
}
|
|
free(ctx->thr[i]);
|
|
}
|
|
i--;
|
|
}
|
|
if (ctx->thr) {
|
|
free(ctx->thr);
|
|
ctx->thr = NULL;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
/*
|
|
* Destroy the event manager and stop all threads.
|
|
*/
|
|
void
|
|
pxy_thrmgr_free(pxy_thrmgr_ctx_t *ctx)
|
|
{
|
|
if (ctx->thr) {
|
|
for (int i = 0; i < ctx->num_thr; i++) {
|
|
event_base_loopbreak(ctx->thr[i]->evbase);
|
|
sched_yield();
|
|
}
|
|
for (int i = 0; i < ctx->num_thr; i++) {
|
|
pthread_join(ctx->thr[i]->thr, NULL);
|
|
}
|
|
for (int i = 0; i < ctx->num_thr; i++) {
|
|
if (ctx->thr[i]->evbase) {
|
|
event_base_free(ctx->thr[i]->evbase);
|
|
}
|
|
free(ctx->thr[i]);
|
|
}
|
|
free(ctx->thr);
|
|
}
|
|
free(ctx);
|
|
}
|
|
|
|
/*
|
|
* Assign a new connection to a thread. Chooses the thread with the fewest
|
|
* currently active connections, returns the appropriate event bases.
|
|
* No need to be so accurate about balancing thread loads,
|
|
* so does not use mutexes, thread or thrmgr level.
|
|
* Returns the index of the chosen thread (for passing to _detach later).
|
|
* This function cannot fail.
|
|
*/
|
|
void
|
|
pxy_thrmgr_assign_thr(pxy_conn_ctx_t *ctx)
|
|
{
|
|
log_finest("ENTER");
|
|
|
|
pxy_thrmgr_ctx_t *tmctx = ctx->thrmgr;
|
|
size_t minload = tmctx->thr[0]->load;
|
|
|
|
#ifdef DEBUG_THREAD
|
|
log_dbg_printf("===> Proxy connection handler thread status:\nthr[0]: %zu\n", minload);
|
|
#endif /* DEBUG_THREAD */
|
|
|
|
int thrid = 0;
|
|
for (int i = 1; i < tmctx->num_thr; i++) {
|
|
size_t thrload = tmctx->thr[i]->load;
|
|
if (minload > thrload) {
|
|
minload = thrload;
|
|
thrid = i;
|
|
}
|
|
|
|
#ifdef DEBUG_THREAD
|
|
log_dbg_printf("thr[%d]: %zu\n", i, thrload);
|
|
#endif /* DEBUG_THREAD */
|
|
}
|
|
|
|
ctx->thr = tmctx->thr[thrid];
|
|
|
|
#ifdef DEBUG_THREAD
|
|
log_dbg_printf("thrid: %d\n", thrid);
|
|
#endif /* DEBUG_THREAD */
|
|
}
|
|
|
|
/* vim: set noet ft=c: */
|