2021-03-04 16:30:38 +05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2022-01-24 01:11:11 +05:00
|
|
|
#include <sys/param.h>
|
2022-07-26 21:15:28 +05:00
|
|
|
#include <sys/queue.h>
|
2024-03-24 00:57:05 +05:00
|
|
|
#include <time.h>
|
2024-04-04 13:40:42 +05:00
|
|
|
#include "tpws.h"
|
2023-10-26 17:12:32 +05:00
|
|
|
#include "pools.h"
|
2024-04-26 19:23:03 +05:00
|
|
|
#include "helpers.h"
|
2024-06-18 19:38:13 +05:00
|
|
|
#include "protocol.h"
|
2023-10-26 17:12:32 +05:00
|
|
|
|
2024-03-24 00:57:05 +05:00
|
|
|
#define HOSTLIST_AUTO_FAIL_THRESHOLD_DEFAULT 3
|
2023-10-26 17:12:32 +05:00
|
|
|
#define HOSTLIST_AUTO_FAIL_TIME_DEFAULT 60
|
2021-03-04 16:30:38 +05:00
|
|
|
|
2021-03-09 00:33:21 +05:00
|
|
|
enum bindll { unwanted=0, no, prefer, force };
|
2021-03-04 16:30:38 +05:00
|
|
|
|
|
|
|
#define MAX_BINDS 32
|
|
|
|
struct bind_s
|
|
|
|
{
|
|
|
|
char bindaddr[64],bindiface[IF_NAMESIZE];
|
|
|
|
bool bind_if6;
|
2021-03-09 00:33:21 +05:00
|
|
|
enum bindll bindll;
|
2021-03-04 16:30:38 +05:00
|
|
|
int bind_wait_ifup,bind_wait_ip,bind_wait_ip_ll;
|
|
|
|
};
|
|
|
|
|
2024-08-23 23:15:27 +05:00
|
|
|
enum log_target { LOG_TARGET_CONSOLE=0, LOG_TARGET_FILE, LOG_TARGET_SYSLOG };
|
|
|
|
|
2024-09-19 23:06:58 +05:00
|
|
|
struct desync_profile
|
2021-03-04 16:30:38 +05:00
|
|
|
{
|
2024-09-19 23:06:58 +05:00
|
|
|
int n; // number of the profile
|
2021-03-04 16:30:38 +05:00
|
|
|
|
|
|
|
bool hostcase, hostdot, hosttab, hostnospace, methodspace, methodeol, unixeol, domcase;
|
|
|
|
int hostpad;
|
|
|
|
char hostspell[4];
|
2024-06-13 14:17:03 +05:00
|
|
|
enum httpreqpos split_http_req;
|
|
|
|
enum tlspos tlsrec;
|
2023-10-12 14:35:06 +05:00
|
|
|
int tlsrec_pos;
|
2024-06-13 14:17:03 +05:00
|
|
|
enum tlspos split_tls;
|
2021-03-04 16:30:38 +05:00
|
|
|
bool split_any_protocol;
|
|
|
|
int split_pos;
|
2024-03-26 13:38:31 +05:00
|
|
|
bool disorder, disorder_http, disorder_tls;
|
|
|
|
bool oob, oob_http, oob_tls;
|
2024-03-05 16:59:44 +05:00
|
|
|
uint8_t oob_byte;
|
2022-07-26 21:15:28 +05:00
|
|
|
|
2024-03-27 19:48:37 +05:00
|
|
|
int mss;
|
|
|
|
|
2024-09-19 23:06:58 +05:00
|
|
|
bool tamper_start_n,tamper_cutoff_n;
|
|
|
|
unsigned int tamper_start,tamper_cutoff;
|
|
|
|
|
|
|
|
bool filter_ipv4,filter_ipv6;
|
|
|
|
port_filter pf_tcp;
|
2022-07-26 21:15:28 +05:00
|
|
|
|
|
|
|
strpool *hostlist, *hostlist_exclude;
|
|
|
|
struct str_list_head hostlist_files, hostlist_exclude_files;
|
2024-09-19 23:06:58 +05:00
|
|
|
char hostlist_auto_filename[PATH_MAX];
|
2023-10-26 17:12:32 +05:00
|
|
|
int hostlist_auto_fail_threshold, hostlist_auto_fail_time;
|
2024-03-24 00:57:05 +05:00
|
|
|
time_t hostlist_auto_mod_time;
|
2023-10-26 17:12:32 +05:00
|
|
|
hostfail_pool *hostlist_auto_fail_counters;
|
2024-09-19 23:06:58 +05:00
|
|
|
};
|
2021-03-04 16:30:38 +05:00
|
|
|
|
2024-09-19 23:06:58 +05:00
|
|
|
struct desync_profile_list {
|
|
|
|
struct desync_profile dp;
|
|
|
|
LIST_ENTRY(desync_profile_list) next;
|
|
|
|
};
|
|
|
|
LIST_HEAD(desync_profile_list_head, desync_profile_list);
|
|
|
|
struct desync_profile_list *dp_list_add(struct desync_profile_list_head *head);
|
|
|
|
void dp_list_destroy(struct desync_profile_list_head *head);
|
|
|
|
bool dp_list_have_autohostlist(struct desync_profile_list_head *head);
|
2024-03-05 16:59:44 +05:00
|
|
|
|
2024-09-19 23:06:58 +05:00
|
|
|
struct params_s
|
|
|
|
{
|
|
|
|
int debug;
|
|
|
|
enum log_target debug_target;
|
|
|
|
char debug_logfile[PATH_MAX];
|
|
|
|
|
|
|
|
struct bind_s binds[MAX_BINDS];
|
|
|
|
int binds_last;
|
|
|
|
bool bind_wait_only;
|
|
|
|
uint16_t port;
|
2024-08-22 13:49:50 +05:00
|
|
|
struct sockaddr_in connect_bind4;
|
|
|
|
struct sockaddr_in6 connect_bind6;
|
2024-08-23 18:57:44 +05:00
|
|
|
char connect_bind6_ifname[IF_NAMESIZE];
|
2024-08-22 13:49:50 +05:00
|
|
|
|
2024-09-19 23:06:58 +05:00
|
|
|
uint8_t proxy_type;
|
|
|
|
bool no_resolve;
|
|
|
|
bool skip_nodelay;
|
|
|
|
bool droproot;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
|
|
|
bool daemon;
|
|
|
|
char pidfile[256];
|
|
|
|
int maxconn,resolver_threads,maxfiles,max_orphan_time;
|
|
|
|
int local_rcvbuf,local_sndbuf,remote_rcvbuf,remote_sndbuf;
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
|
|
int tcp_user_timeout_local,tcp_user_timeout_remote;
|
|
|
|
#endif
|
2022-01-24 01:11:11 +05:00
|
|
|
|
|
|
|
#if defined(BSD)
|
|
|
|
bool pf_enable;
|
|
|
|
#endif
|
2024-04-04 13:40:42 +05:00
|
|
|
#ifdef SPLICE_PRESENT
|
2024-04-04 00:21:17 +05:00
|
|
|
bool nosplice;
|
|
|
|
#endif
|
2024-09-19 23:06:58 +05:00
|
|
|
|
|
|
|
int ttl_default;
|
|
|
|
char hostlist_auto_debuglog[PATH_MAX];
|
|
|
|
|
|
|
|
bool tamper; // any tamper option is set
|
|
|
|
bool tamper_lim; // tamper-start or tamper-cutoff set in any profile
|
|
|
|
struct desync_profile_list_head desync_profiles;
|
2021-03-04 16:30:38 +05:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct params_s params;
|
|
|
|
|
2024-08-23 23:15:27 +05:00
|
|
|
int DLOG(const char *format, int level, ...);
|
|
|
|
int DLOG_CONDUP(const char *format, ...);
|
|
|
|
int DLOG_ERR(const char *format, ...);
|
|
|
|
int DLOG_PERROR(const char *s);
|
|
|
|
int HOSTLIST_DEBUGLOG_APPEND(const char *format, ...);
|
|
|
|
|
|
|
|
#define VPRINT(format, ...) DLOG(format, 1, ##__VA_ARGS__)
|
|
|
|
#define DBGPRINT(format, ...) DLOG(format, 2, ##__VA_ARGS__)
|