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>
|
2023-10-26 17:12:32 +05:00
|
|
|
#include "pools.h"
|
|
|
|
|
|
|
|
#define HOSTLIST_AUTO_FAIL_THRESHOLD_DEFAULT 2
|
|
|
|
#define HOSTLIST_AUTO_FAIL_TIME_DEFAULT 60
|
2021-03-04 16:30:38 +05:00
|
|
|
|
|
|
|
enum splithttpreq { split_none = 0, split_method, split_host };
|
2023-10-12 14:35:06 +05:00
|
|
|
enum tlsrec { tlsrec_none = 0, tlsrec_sni, tlsrec_pos };
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct params_s
|
|
|
|
{
|
|
|
|
struct bind_s binds[MAX_BINDS];
|
|
|
|
int binds_last;
|
|
|
|
bool bind_wait_only;
|
|
|
|
uint16_t port;
|
|
|
|
|
|
|
|
uint8_t proxy_type;
|
|
|
|
bool no_resolve;
|
|
|
|
bool skip_nodelay;
|
|
|
|
bool droproot;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
|
|
|
bool daemon;
|
|
|
|
int maxconn,maxfiles,max_orphan_time;
|
|
|
|
int local_rcvbuf,local_sndbuf,remote_rcvbuf,remote_sndbuf;
|
|
|
|
|
|
|
|
bool tamper; // any tamper option is set
|
|
|
|
bool hostcase, hostdot, hosttab, hostnospace, methodspace, methodeol, unixeol, domcase;
|
|
|
|
int hostpad;
|
|
|
|
char hostspell[4];
|
|
|
|
enum splithttpreq split_http_req;
|
2023-10-12 14:35:06 +05:00
|
|
|
enum tlsrec tlsrec;
|
|
|
|
int tlsrec_pos;
|
2021-03-04 16:30:38 +05:00
|
|
|
bool split_any_protocol;
|
|
|
|
int split_pos;
|
2024-03-02 19:53:37 +05:00
|
|
|
bool disorder, oob;
|
2024-03-05 16:59:44 +05:00
|
|
|
uint8_t oob_byte;
|
2023-07-03 17:28:42 +05:00
|
|
|
int ttl_default;
|
2022-07-26 21:15:28 +05:00
|
|
|
|
2021-03-04 16:30:38 +05:00
|
|
|
char pidfile[256];
|
2022-07-26 21:15:28 +05:00
|
|
|
|
|
|
|
strpool *hostlist, *hostlist_exclude;
|
|
|
|
struct str_list_head hostlist_files, hostlist_exclude_files;
|
2023-11-09 14:08:09 +05:00
|
|
|
char hostlist_auto_filename[PATH_MAX], hostlist_auto_debuglog[PATH_MAX];
|
2023-10-26 17:12:32 +05:00
|
|
|
int hostlist_auto_fail_threshold, hostlist_auto_fail_time;
|
|
|
|
hostfail_pool *hostlist_auto_fail_counters;
|
2021-03-04 16:30:38 +05:00
|
|
|
|
2024-03-05 16:59:44 +05:00
|
|
|
unsigned int tamper_start,tamper_cutoff;
|
|
|
|
|
2021-03-04 16:30:38 +05:00
|
|
|
int debug;
|
2022-01-24 01:11:11 +05:00
|
|
|
|
|
|
|
#if defined(BSD)
|
|
|
|
bool pf_enable;
|
|
|
|
#endif
|
2021-03-04 16:30:38 +05:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct params_s params;
|
|
|
|
|
|
|
|
#define _DBGPRINT(format, level, ...) { if (params.debug>=level) printf(format "\n", ##__VA_ARGS__); }
|
|
|
|
#define VPRINT(format, ...) _DBGPRINT(format,1,##__VA_ARGS__)
|
|
|
|
#define DBGPRINT(format, ...) _DBGPRINT(format,2,##__VA_ARGS__)
|
2023-11-09 14:08:09 +05:00
|
|
|
|
|
|
|
#define LOG_APPEND(filename, format, ...) \
|
|
|
|
{ \
|
|
|
|
FILE *F = fopen(filename,"at"); \
|
|
|
|
if (F) \
|
|
|
|
{ \
|
|
|
|
fprint_localtime(F); \
|
|
|
|
fprintf(F, " : " format "\n", ##__VA_ARGS__); \
|
|
|
|
fclose(F); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
#define HOSTLIST_DEBUGLOG_APPEND(format, ...) if (*params.hostlist_auto_debuglog) LOG_APPEND(params.hostlist_auto_debuglog, format, ##__VA_ARGS__)
|