2021-03-04 16:30:38 +05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "params.h"
|
|
|
|
#include "strpool.h"
|
2021-03-18 19:21:25 +05:00
|
|
|
#include "conntrack.h"
|
2021-03-04 16:30:38 +05:00
|
|
|
#include "desync.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/types.h>
|
2022-05-15 17:54:35 +05:00
|
|
|
#include <net/if.h>
|
2021-03-04 16:30:38 +05:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#define Q_RCVBUF (128*1024) // in bytes
|
|
|
|
#define Q_SNDBUF (64*1024) // in bytes
|
|
|
|
#define RAW_SNDBUF (64*1024) // in bytes
|
|
|
|
|
|
|
|
#define Q_MAXLEN 1024 // in packets
|
|
|
|
|
2021-12-26 19:11:21 +05:00
|
|
|
#define BADSEQ_INCREMENT_DEFAULT -10000
|
2021-12-28 14:50:04 +05:00
|
|
|
#define BADSEQ_ACK_INCREMENT_DEFAULT -66000
|
2021-12-26 19:11:21 +05:00
|
|
|
|
2022-01-03 14:38:18 +05:00
|
|
|
#define IPFRAG_UDP_DEFAULT 8
|
|
|
|
#define IPFRAG_TCP_DEFAULT 32
|
|
|
|
|
2022-04-12 17:52:06 +05:00
|
|
|
#define UDPLEN_INCREMENT_DEFAULT 2
|
|
|
|
|
2021-03-04 16:30:38 +05:00
|
|
|
struct params_s
|
|
|
|
{
|
|
|
|
bool debug;
|
2021-03-12 16:33:48 +05:00
|
|
|
uint16_t wsize,wssize;
|
|
|
|
uint8_t wscale,wsscale;
|
2021-12-27 18:51:30 +05:00
|
|
|
char wssize_cutoff_mode; // n - packets, d - data packets, s - relative sequence
|
2021-03-18 19:21:25 +05:00
|
|
|
unsigned int wssize_cutoff;
|
2021-03-04 16:30:38 +05:00
|
|
|
#ifdef __linux__
|
|
|
|
int qnum;
|
|
|
|
#elif defined(BSD)
|
|
|
|
uint16_t port; // divert port
|
|
|
|
#endif
|
2022-05-15 17:54:35 +05:00
|
|
|
char bind_fix4,bind_fix6;
|
2021-03-04 16:30:38 +05:00
|
|
|
bool hostcase, hostnospace, domcase;
|
|
|
|
char hostspell[4];
|
2021-04-07 14:13:46 +05:00
|
|
|
enum dpi_desync_mode desync_mode0,desync_mode,desync_mode2;
|
2021-03-04 16:30:38 +05:00
|
|
|
bool desync_retrans,desync_skip_nosni,desync_any_proto;
|
2022-01-03 14:38:18 +05:00
|
|
|
unsigned int desync_repeats,desync_split_pos,desync_ipfrag_pos_tcp,desync_ipfrag_pos_udp;
|
2021-12-27 18:51:30 +05:00
|
|
|
char desync_cutoff_mode; // n - packets, d - data packets, s - relative sequence
|
2021-03-22 14:02:55 +05:00
|
|
|
unsigned int desync_cutoff;
|
2021-12-11 00:08:52 +05:00
|
|
|
uint8_t desync_ttl, desync_ttl6;
|
2022-01-01 22:22:04 +05:00
|
|
|
uint8_t desync_fooling_mode;
|
2021-03-04 16:30:38 +05:00
|
|
|
uint32_t desync_fwmark; // unused in BSD
|
2021-12-26 19:11:21 +05:00
|
|
|
uint32_t desync_badseq_increment, desync_badseq_ack_increment;
|
2023-09-07 15:41:25 +05:00
|
|
|
uint8_t fake_http[1432],fake_tls[1432],fake_quic[1472],fake_wg[1472],fake_unknown[1432],fake_unknown_udp[1472], udplen_pattern[1472];
|
2023-08-12 11:56:19 +05:00
|
|
|
size_t fake_http_size,fake_tls_size,fake_quic_size,fake_wg_size,fake_unknown_size,fake_unknown_udp_size;
|
2022-07-27 14:00:36 +05:00
|
|
|
int udplen_increment;
|
2021-03-04 16:30:38 +05:00
|
|
|
bool droproot;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
2021-03-18 19:21:25 +05:00
|
|
|
|
2022-07-26 21:15:28 +05:00
|
|
|
strpool *hostlist, *hostlist_exclude;
|
|
|
|
struct str_list_head hostlist_files, hostlist_exclude_files;
|
|
|
|
|
2022-01-01 22:22:04 +05:00
|
|
|
unsigned int ctrack_t_syn, ctrack_t_est, ctrack_t_fin, ctrack_t_udp;
|
2021-03-18 19:21:25 +05:00
|
|
|
t_conntrack conntrack;
|
2021-03-04 16:30:38 +05:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct params_s params;
|
|
|
|
|
|
|
|
#define DLOG(format, ...) {if (params.debug) printf(format, ##__VA_ARGS__);}
|