2021-03-04 16:30:38 +05:00
# define _GNU_SOURCE
# include "nfqws.h"
# include "sec.h"
# include "desync.h"
# include "helpers.h"
# include "checksum.h"
# include "params.h"
# include "protocol.h"
# include "hostlist.h"
2023-10-26 17:12:32 +05:00
# include "gzip.h"
# include "pools.h"
2021-03-04 16:30:38 +05:00
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include <unistd.h>
# include <stdbool.h>
# include <stdint.h>
# include <arpa/inet.h>
# include <getopt.h>
# include <fcntl.h>
# include <pwd.h>
# include <signal.h>
# include <errno.h>
# include <time.h>
# include <sys/param.h>
# include <sys/socket.h>
2023-10-26 17:12:32 +05:00
# include <sys/stat.h>
2021-03-04 16:30:38 +05:00
# include <netinet/in.h>
2024-08-23 16:42:21 +05:00
# include <syslog.h>
2021-03-04 16:30:38 +05:00
2024-04-30 17:35:20 +05:00
# ifdef __CYGWIN__
# include "win.h"
# endif
2021-03-04 16:30:38 +05:00
# ifdef __linux__
# include <libnetfilter_queue/libnetfilter_queue.h>
# define NF_DROP 0
# define NF_ACCEPT 1
# endif
2021-03-18 19:21:25 +05:00
# define CTRACK_T_SYN 60
# define CTRACK_T_FIN 60
2021-03-21 23:55:26 +05:00
# define CTRACK_T_EST 300
2022-01-01 22:22:04 +05:00
# define CTRACK_T_UDP 60
2021-03-04 16:30:38 +05:00
struct params_s params ;
2024-04-30 17:35:20 +05:00
# ifdef __CYGWIN__
bool bQuit = false ;
# endif
2021-03-04 16:30:38 +05:00
static bool bHup = false ;
static void onhup ( int sig )
{
printf ( " HUP received ! \n " ) ;
2022-07-26 21:15:28 +05:00
if ( params . hostlist | | params . hostlist_exclude )
2021-03-04 16:30:38 +05:00
printf ( " Will reload hostlist on next request \n " ) ;
bHup = true ;
}
// should be called in normal execution
2023-10-13 22:10:46 +05:00
static void dohup ( void )
2021-03-04 16:30:38 +05:00
{
if ( bHup )
{
2024-03-24 00:57:05 +05:00
if ( ! LoadIncludeHostLists ( ) | | ! LoadExcludeHostLists ( ) )
2021-03-04 16:30:38 +05:00
{
2022-07-26 21:15:28 +05:00
// what will we do without hostlist ?? sure, gonna die
exit ( 1 ) ;
2021-03-04 16:30:38 +05:00
}
bHup = false ;
}
}
2021-03-18 19:21:25 +05:00
static void onusr1 ( int sig )
{
printf ( " \n CONNTRACK DUMP \n " ) ;
ConntrackPoolDump ( & params . conntrack ) ;
printf ( " \n " ) ;
}
2023-10-26 17:12:32 +05:00
static void onusr2 ( int sig )
{
printf ( " \n HOSTFAIL POOL DUMP \n " ) ;
HostFailPoolDump ( params . hostlist_auto_fail_counters ) ;
printf ( " \n " ) ;
}
2021-03-18 19:21:25 +05:00
2024-04-26 23:36:27 +05:00
static void pre_desync ( void )
{
signal ( SIGHUP , onhup ) ;
signal ( SIGUSR1 , onusr1 ) ;
signal ( SIGUSR2 , onusr2 ) ;
desync_init ( ) ;
}
2021-03-18 19:21:25 +05:00
2024-04-08 21:34:01 +05:00
static uint8_t processPacketData ( uint32_t * mark , const char * ifout , uint8_t * data_pkt , size_t * len_pkt )
2021-03-04 16:30:38 +05:00
{
# ifdef __linux__
if ( * mark & params . desync_fwmark )
{
2024-08-23 16:42:21 +05:00
DLOG ( " ignoring generated packet \n " ) ;
2024-04-20 22:59:45 +05:00
return VERDICT_PASS ;
2022-01-01 22:22:04 +05:00
}
# endif
2024-04-20 22:59:45 +05:00
return dpi_desync_packet ( * mark , ifout , data_pkt , len_pkt ) ;
2021-03-04 16:30:38 +05:00
}
# ifdef __linux__
2022-05-15 17:54:35 +05:00
static int nfq_cb ( struct nfq_q_handle * qh , struct nfgenmsg * nfmsg , struct nfq_data * nfa , void * cookie )
2021-03-04 16:30:38 +05:00
{
2024-04-08 21:34:01 +05:00
int id , ilen ;
size_t len ;
2021-03-04 16:30:38 +05:00
struct nfqnl_msg_packet_hdr * ph ;
uint8_t * data ;
2022-05-15 17:54:35 +05:00
uint32_t ifidx ;
char ifout [ IFNAMSIZ + 1 ] ;
2021-03-04 16:30:38 +05:00
ph = nfq_get_msg_packet_hdr ( nfa ) ;
id = ph ? ntohl ( ph - > packet_id ) : 0 ;
uint32_t mark = nfq_get_nfmark ( nfa ) ;
2024-04-08 21:34:01 +05:00
ilen = nfq_get_payload ( nfa , & data ) ;
2022-05-15 17:54:35 +05:00
* ifout = 0 ;
if ( params . bind_fix4 | | params . bind_fix6 )
{
2024-08-24 18:45:49 +05:00
char ifin [ IFNAMSIZ + 1 ] ;
uint32_t ifidx_in ;
2022-05-15 17:54:35 +05:00
ifidx = nfq_get_outdev ( nfa ) ;
if ( ifidx ) if_indextoname ( ifidx , ifout ) ;
2024-08-24 18:45:49 +05:00
* ifin = 0 ;
ifidx_in = nfq_get_indev ( nfa ) ;
if ( ifidx_in ) if_indextoname ( ifidx_in , ifin ) ;
2022-05-15 17:54:35 +05:00
2024-08-24 18:45:49 +05:00
DLOG ( " packet: id=%d len=%d mark=%08X ifin=%s(%u) ifout=%s(%u) \n " , id , ilen , mark , ifin , ifidx_in , ifout , ifidx ) ;
2022-05-15 17:54:35 +05:00
}
else
// save some syscalls
2024-08-23 16:42:21 +05:00
DLOG ( " packet: id=%d len=%d mark=%08X \n " , id , ilen , mark ) ;
2024-04-08 21:34:01 +05:00
if ( ilen > = 0 )
2021-03-04 16:30:38 +05:00
{
2024-04-08 21:34:01 +05:00
len = ilen ;
2024-04-20 22:59:45 +05:00
uint8_t verdict = processPacketData ( & mark , ifout , data , & len ) ;
switch ( verdict & VERDICT_MASK )
2021-03-04 16:30:38 +05:00
{
2024-04-08 21:34:01 +05:00
case VERDICT_MODIFY :
DLOG ( " packet: id=%d pass modified. len=%zu \n " , id , len ) ;
return nfq_set_verdict2 ( qh , id , NF_ACCEPT , mark , ( uint32_t ) len , data ) ;
case VERDICT_DROP :
2021-03-04 16:30:38 +05:00
DLOG ( " packet: id=%d drop \n " , id ) ;
return nfq_set_verdict2 ( qh , id , NF_DROP , mark , 0 , NULL ) ;
}
}
DLOG ( " packet: id=%d pass unmodified \n " , id ) ;
return nfq_set_verdict2 ( qh , id , NF_ACCEPT , mark , 0 , NULL ) ;
}
2023-10-13 22:10:46 +05:00
static int nfq_main ( void )
2021-03-04 16:30:38 +05:00
{
struct nfq_handle * h = NULL ;
struct nfq_q_handle * qh = NULL ;
int fd , rv ;
uint8_t buf [ 16384 ] __attribute__ ( ( aligned ) ) ;
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " opening library handle \n " ) ;
2021-03-04 16:30:38 +05:00
h = nfq_open ( ) ;
if ( ! h ) {
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " nfq_open() " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " unbinding existing nf_queue handler for AF_INET (if any) \n " ) ;
2021-03-04 16:30:38 +05:00
if ( nfq_unbind_pf ( h , AF_INET ) < 0 ) {
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " nfq_unbind_pf() " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " binding nfnetlink_queue as nf_queue handler for AF_INET \n " ) ;
2021-03-04 16:30:38 +05:00
if ( nfq_bind_pf ( h , AF_INET ) < 0 ) {
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " nfq_bind_pf() " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " binding this socket to queue '%u' \n " , params . qnum ) ;
2021-03-04 16:30:38 +05:00
qh = nfq_create_queue ( h , params . qnum , & nfq_cb , & params ) ;
if ( ! qh ) {
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " nfq_create_queue() " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " setting copy_packet mode \n " ) ;
2021-03-04 16:30:38 +05:00
if ( nfq_set_mode ( qh , NFQNL_COPY_PACKET , 0xffff ) < 0 ) {
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " can't set packet_copy mode " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
if ( nfq_set_queue_maxlen ( qh , Q_MAXLEN ) < 0 ) {
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " can't set queue maxlen " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
// accept packets if they cant be handled
if ( nfq_set_queue_flags ( qh , NFQA_CFG_F_FAIL_OPEN , NFQA_CFG_F_FAIL_OPEN ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " can't set queue flags. its OK on linux <3.6 \n " ) ;
2021-03-04 16:30:38 +05:00
// dot not fail. not supported on old linuxes <3.6
}
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " initializing raw sockets bind-fix4=%u bind-fix6=%u \n " , params . bind_fix4 , params . bind_fix6 ) ;
2022-05-15 17:54:35 +05:00
if ( ! rawsend_preinit ( params . bind_fix4 , params . bind_fix6 ) )
goto exiterr ;
2024-04-26 23:36:27 +05:00
# ifndef __CYGWIN__
2022-11-22 19:49:53 +05:00
sec_harden ( ) ;
2021-03-04 16:30:38 +05:00
if ( params . droproot & & ! droproot ( params . uid , params . gid ) )
goto exiterr ;
2024-04-26 23:36:27 +05:00
print_id ( ) ;
# endif
2021-03-04 16:30:38 +05:00
2024-04-26 23:36:27 +05:00
pre_desync ( ) ;
2021-03-04 16:30:38 +05:00
fd = nfq_fd ( h ) ;
// increase socket buffer size. on slow systems reloading hostlist can take a while.
// if too many unhandled packets are received its possible to get "no buffer space available" error
if ( ! set_socket_buffers ( fd , Q_RCVBUF / 2 , Q_SNDBUF / 2 ) )
goto exiterr ;
do
{
2021-05-26 11:26:39 +05:00
while ( ( rv = recv ( fd , buf , sizeof ( buf ) , 0 ) ) > 0 )
2021-03-04 16:30:38 +05:00
{
dohup ( ) ;
2024-08-03 07:32:40 +05:00
int r = nfq_handle_packet ( h , ( char * ) buf , rv ) ;
2024-08-23 16:42:21 +05:00
if ( r ) DLOG_ERR ( " nfq_handle_packet error %d \n " , r ) ;
2021-03-04 16:30:38 +05:00
}
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " recv: errno %d \n " , errno ) ;
DLOG_PERROR ( " recv " ) ;
2021-03-04 16:30:38 +05:00
// do not fail on ENOBUFS
} while ( errno = = ENOBUFS ) ;
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " unbinding from queue %u \n " , params . qnum ) ;
2021-03-04 16:30:38 +05:00
nfq_destroy_queue ( qh ) ;
# ifdef INSANE
/* normally, applications SHOULD NOT issue this command, since
* it detaches other programs / sockets from AF_INET , too ! */
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " unbinding from AF_INET \n " ) ;
2021-03-04 16:30:38 +05:00
nfq_unbind_pf ( h , AF_INET ) ;
# endif
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " closing library handle \n " ) ;
2021-03-04 16:30:38 +05:00
nfq_close ( h ) ;
return 0 ;
exiterr :
if ( qh ) nfq_destroy_queue ( qh ) ;
if ( h ) nfq_close ( h ) ;
return 1 ;
}
# elif defined(BSD)
2023-10-13 22:10:46 +05:00
static int dvt_main ( void )
2021-03-04 16:30:38 +05:00
{
uint8_t buf [ 16384 ] __attribute__ ( ( aligned ) ) ;
struct sockaddr_storage sa_from ;
int fd [ 2 ] = { - 1 , - 1 } ; // 4,6
int i , r , res = 1 , fdct = 1 , fdmax ;
unsigned int id = 0 ;
socklen_t socklen ;
ssize_t rd , wr ;
fd_set fdset ;
{
struct sockaddr_in bp4 ;
bp4 . sin_family = AF_INET ;
bp4 . sin_port = htons ( params . port ) ;
bp4 . sin_addr . s_addr = INADDR_ANY ;
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " creating divert4 socket \n " ) ;
2024-03-08 16:01:24 +05:00
fd [ 0 ] = socket_divert ( AF_INET ) ;
2021-03-04 16:30:38 +05:00
if ( fd [ 0 ] = = - 1 ) {
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " socket (DIVERT4) " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " binding divert4 socket \n " ) ;
2021-03-04 16:30:38 +05:00
if ( bind ( fd [ 0 ] , ( struct sockaddr * ) & bp4 , sizeof ( bp4 ) ) < 0 )
{
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " bind (DIVERT4) " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
if ( ! set_socket_buffers ( fd [ 0 ] , Q_RCVBUF , Q_SNDBUF ) )
goto exiterr ;
}
# ifdef __OpenBSD__
{
// in OpenBSD must use separate divert sockets for ipv4 and ipv6
struct sockaddr_in6 bp6 ;
memset ( & bp6 , 0 , sizeof ( bp6 ) ) ;
bp6 . sin6_family = AF_INET6 ;
bp6 . sin6_port = htons ( params . port ) ;
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " creating divert6 socket \n " ) ;
2024-03-08 16:01:24 +05:00
fd [ 1 ] = socket_divert ( AF_INET6 ) ;
2021-03-04 16:30:38 +05:00
if ( fd [ 1 ] = = - 1 ) {
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " socket (DIVERT6) " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " binding divert6 socket \n " ) ;
2021-03-04 16:30:38 +05:00
if ( bind ( fd [ 1 ] , ( struct sockaddr * ) & bp6 , sizeof ( bp6 ) ) < 0 )
{
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " bind (DIVERT6) " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
fdct + + ;
if ( ! set_socket_buffers ( fd [ 1 ] , Q_RCVBUF , Q_SNDBUF ) )
goto exiterr ;
}
# endif
fdmax = ( fd [ 0 ] > fd [ 1 ] ? fd [ 0 ] : fd [ 1 ] ) + 1 ;
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " initializing raw sockets \n " ) ;
2022-05-15 17:54:35 +05:00
if ( ! rawsend_preinit ( false , false ) )
2021-03-04 16:30:38 +05:00
goto exiterr ;
if ( params . droproot & & ! droproot ( params . uid , params . gid ) )
goto exiterr ;
print_id ( ) ;
2024-04-26 23:36:27 +05:00
pre_desync ( ) ;
2021-03-04 16:30:38 +05:00
for ( ; ; )
{
FD_ZERO ( & fdset ) ;
for ( i = 0 ; i < fdct ; i + + ) FD_SET ( fd [ i ] , & fdset ) ;
r = select ( fdmax , & fdset , NULL , NULL , NULL ) ;
if ( r = = - 1 )
{
if ( errno = = EINTR )
{
// a signal received
dohup ( ) ;
continue ;
}
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " select " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
for ( i = 0 ; i < fdct ; i + + )
{
if ( FD_ISSET ( fd [ i ] , & fdset ) )
{
socklen = sizeof ( sa_from ) ;
rd = recvfrom ( fd [ i ] , buf , sizeof ( buf ) , 0 , ( struct sockaddr * ) & sa_from , & socklen ) ;
if ( rd < 0 )
{
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " recvfrom " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
else if ( rd > 0 )
{
2022-05-15 17:54:35 +05:00
uint32_t mark = 0 ;
2024-04-20 22:59:45 +05:00
uint8_t verdict ;
2024-04-08 21:34:01 +05:00
size_t len = rd ;
2024-08-23 16:42:21 +05:00
DLOG ( " packet: id=%u len=%zu \n " , id , len ) ;
2024-04-20 22:59:45 +05:00
verdict = processPacketData ( & mark , NULL , buf , & len ) ;
switch ( verdict & VERDICT_MASK )
2021-03-04 16:30:38 +05:00
{
2024-04-08 21:34:01 +05:00
case VERDICT_PASS :
case VERDICT_MODIFY :
2024-04-20 22:59:45 +05:00
if ( ( verdict & VERDICT_MASK ) = = VERDICT_PASS )
2024-08-23 16:42:21 +05:00
DLOG ( " packet: id=%u reinject unmodified \n " , id ) ;
2024-04-08 21:34:01 +05:00
else
2024-08-23 16:42:21 +05:00
DLOG ( " packet: id=%u reinject modified len=%zu \n " , id , len ) ;
2024-04-08 21:34:01 +05:00
wr = sendto ( fd [ i ] , buf , len , 0 , ( struct sockaddr * ) & sa_from , socklen ) ;
2021-03-04 16:30:38 +05:00
if ( wr < 0 )
2024-08-23 16:42:21 +05:00
DLOG_PERROR ( " reinject sendto " ) ;
2024-04-08 21:34:01 +05:00
else if ( wr ! = len )
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " reinject sendto: not all data was reinjected. received %zu, sent %zd \n " , len , wr ) ;
2021-03-04 16:30:38 +05:00
break ;
default :
DLOG ( " packet: id=%u drop \n " , id ) ;
}
id + + ;
}
else
{
2024-08-23 16:42:21 +05:00
DLOG ( " unexpected zero size recvfrom \n " ) ;
2021-03-04 16:30:38 +05:00
}
}
}
}
res = 0 ;
exiterr :
if ( fd [ 0 ] ! = - 1 ) close ( fd [ 0 ] ) ;
if ( fd [ 1 ] ! = - 1 ) close ( fd [ 1 ] ) ;
return res ;
}
2024-04-26 23:36:27 +05:00
# elif defined (__CYGWIN__)
static int win_main ( const char * windivert_filter )
{
size_t len ;
unsigned int id ;
uint8_t verdict ;
bool bOutbound ;
uint8_t packet [ 16384 ] ;
uint32_t mark ;
WINDIVERT_ADDRESS wa ;
char ifout [ 22 ] ;
pre_desync ( ) ;
2024-07-12 17:13:18 +05:00
if ( ! win_dark_init ( & params . ssid_filter , & params . nlm_filter ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " win_dark_init failed. win32 error %u (0x%08X) \n " , w_win32_error , w_win32_error ) ;
2024-07-12 17:13:18 +05:00
return w_win32_error ;
}
2024-06-19 21:46:16 +05:00
for ( ; ; )
2024-04-26 23:36:27 +05:00
{
2024-07-12 17:13:18 +05:00
if ( ! logical_net_filter_match ( ) )
2024-04-26 23:36:27 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " logical network is not present. waiting it to appear. \n " ) ;
2024-06-19 21:46:16 +05:00
fflush ( stdout ) ;
do
2024-04-26 23:36:27 +05:00
{
2024-06-19 21:46:16 +05:00
if ( bQuit )
{
2024-08-23 16:42:21 +05:00
DLOG ( " QUIT requested \n " ) ;
2024-07-12 17:13:18 +05:00
win_dark_deinit ( ) ;
2024-06-19 21:46:16 +05:00
return 0 ;
}
usleep ( 500000 ) ;
2024-04-30 17:35:20 +05:00
}
2024-07-12 17:13:18 +05:00
while ( ! logical_net_filter_match ( ) ) ;
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " logical network now present \n " ) ;
2024-06-19 21:46:16 +05:00
fflush ( stdout ) ;
2024-04-26 23:36:27 +05:00
}
2024-05-11 11:50:45 +05:00
2024-07-12 17:13:18 +05:00
if ( ! windivert_init ( windivert_filter ) )
{
win_dark_deinit ( ) ;
2024-06-19 21:46:16 +05:00
return w_win32_error ;
2024-07-12 17:13:18 +05:00
}
2024-06-19 21:46:16 +05:00
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " windivert initialized. capture is started. \n " ) ;
2024-06-19 21:46:16 +05:00
2024-05-11 11:50:45 +05:00
// cygwin auto flush fails when piping
fflush ( stdout ) ;
fflush ( stderr ) ;
2024-06-19 21:46:16 +05:00
for ( id = 0 ; ; id + + )
{
len = sizeof ( packet ) ;
if ( ! windivert_recv ( packet , & len , & wa ) )
{
if ( errno = = ENOBUFS )
{
2024-08-23 16:42:21 +05:00
DLOG ( " windivert: ignoring too large packet \n " ) ;
2024-06-19 21:46:16 +05:00
continue ; // too large packet
}
else if ( errno = = ENODEV )
{
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " logical network disappeared. deinitializing windivert. \n " ) ;
2024-06-19 21:46:16 +05:00
rawsend_cleanup ( ) ;
break ;
}
else if ( errno = = EINTR )
{
2024-08-23 16:42:21 +05:00
DLOG ( " QUIT requested \n " ) ;
2024-07-12 17:13:18 +05:00
win_dark_deinit ( ) ;
2024-06-19 21:46:16 +05:00
return 0 ;
}
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " windivert: recv failed. errno %d \n " , errno ) ;
2024-07-12 17:13:18 +05:00
win_dark_deinit ( ) ;
2024-06-19 21:46:16 +05:00
return w_win32_error ;
}
* ifout = 0 ;
if ( wa . Outbound ) snprintf ( ifout , sizeof ( ifout ) , " %u.%u " , wa . Network . IfIdx , wa . Network . SubIfIdx ) ;
2024-08-23 16:42:21 +05:00
DLOG ( " packet: id=%u len=%zu %s IPv6=%u IPChecksum=%u TCPChecksum=%u UDPChecksum=%u IfIdx=%u.%u \n " , id , len , wa . Outbound ? " outbound " : " inbound " , wa . IPv6 , wa . IPChecksum , wa . TCPChecksum , wa . UDPChecksum , wa . Network . IfIdx , wa . Network . SubIfIdx ) ;
2024-06-19 21:46:16 +05:00
if ( wa . Impostor )
{
2024-08-23 16:42:21 +05:00
DLOG ( " windivert: passing impostor packet \n " ) ;
2024-06-19 21:46:16 +05:00
verdict = VERDICT_PASS ;
}
else if ( wa . Loopback )
{
2024-08-23 16:42:21 +05:00
DLOG ( " windivert: passing loopback packet \n " ) ;
2024-06-19 21:46:16 +05:00
verdict = VERDICT_PASS ;
}
else
{
mark = 0 ;
// pseudo interface id IfIdx.SubIfIdx
verdict = processPacketData ( & mark , ifout , packet , & len ) ;
}
switch ( verdict & VERDICT_MASK )
{
case VERDICT_PASS :
case VERDICT_MODIFY :
if ( ( verdict & VERDICT_MASK ) = = VERDICT_PASS )
2024-08-23 16:42:21 +05:00
DLOG ( " packet: id=%u reinject unmodified \n " , id ) ;
2024-06-19 21:46:16 +05:00
else
2024-08-23 16:42:21 +05:00
DLOG ( " packet: id=%u reinject modified len=%zu \n " , id , len ) ;
2024-06-19 21:46:16 +05:00
if ( ! windivert_send ( packet , len , & wa ) )
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " windivert: reinject of packet id=%u failed \n " , id ) ;
2024-06-19 21:46:16 +05:00
break ;
default :
DLOG ( " packet: id=%u drop \n " , id ) ;
}
// cygwin auto flush fails when piping
fflush ( stdout ) ;
fflush ( stderr ) ;
}
2024-04-26 23:36:27 +05:00
}
2024-07-12 17:13:18 +05:00
win_dark_deinit ( ) ;
2024-04-26 23:36:27 +05:00
return 0 ;
}
# endif // multiple OS divert handlers
2021-03-04 16:30:38 +05:00
2021-05-26 11:26:39 +05:00
static bool parse_ws_scale_factor ( char * s , uint16_t * wsize , uint8_t * wscale )
2021-03-12 16:33:48 +05:00
{
int v ;
char * p ;
if ( ( p = strchr ( s , ' : ' ) ) ) * p + + = 0 ;
v = atoi ( s ) ;
if ( v < 0 | | v > 65535 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " bad wsize \n " ) ;
2021-03-12 16:33:48 +05:00
return false ;
}
* wsize = ( uint16_t ) v ;
if ( p & & * p )
{
v = atoi ( p ) ;
if ( v < 0 | | v > 255 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " bad wscale \n " ) ;
2021-03-12 16:33:48 +05:00
return false ;
}
* wscale = ( uint8_t ) v ;
}
return true ;
}
2021-03-04 16:30:38 +05:00
2023-10-13 22:10:46 +05:00
static void cleanup_params ( void )
2021-03-04 16:30:38 +05:00
{
2022-07-26 21:15:28 +05:00
ConntrackPoolDestroy ( & params . conntrack ) ;
strlist_destroy ( & params . hostlist_files ) ;
strlist_destroy ( & params . hostlist_exclude_files ) ;
2023-10-26 17:12:32 +05:00
StrPoolDestroy ( & params . hostlist_exclude ) ;
StrPoolDestroy ( & params . hostlist ) ;
HostFailPoolDestroy ( & params . hostlist_auto_fail_counters ) ;
2024-06-19 21:46:16 +05:00
# ifdef __CYGWIN__
strlist_destroy ( & params . ssid_filter ) ;
2024-07-12 17:13:18 +05:00
strlist_destroy ( & params . nlm_filter ) ;
2024-06-19 21:46:16 +05:00
# endif
2021-03-04 16:30:38 +05:00
}
static void exit_clean ( int code )
{
cleanup_params ( ) ;
exit ( code ) ;
}
2021-12-27 18:51:30 +05:00
static bool parse_cutoff ( const char * opt , unsigned int * value , char * mode )
{
* mode = ( * opt = = ' n ' | | * opt = = ' d ' | | * opt = = ' s ' ) ? * opt + + : ' n ' ;
return sscanf ( opt , " %u " , value ) > 0 ;
}
static bool parse_badseq_increment ( const char * opt , uint32_t * value )
{
2024-08-02 21:16:30 +05:00
if ( ( ( opt [ 0 ] = = ' 0 ' & & opt [ 1 ] = = ' x ' ) | | ( opt [ 0 ] = = ' - ' & & opt [ 1 ] = = ' 0 ' & & opt [ 2 ] = = ' x ' ) ) & & sscanf ( opt + 2 + ( opt [ 0 ] = = ' - ' ) , " %X " , ( int32_t * ) value ) > 0 )
2021-12-27 18:51:30 +05:00
{
if ( opt [ 0 ] = = ' - ' ) params . desync_badseq_increment = - params . desync_badseq_increment ;
return true ;
}
else
{
return sscanf ( opt , " %d " , ( int32_t * ) value ) > 0 ;
}
}
2022-01-01 22:22:04 +05:00
static void load_file_or_exit ( const char * filename , void * buf , size_t * size )
{
2023-09-07 15:41:25 +05:00
if ( filename [ 0 ] = = ' 0 ' & & filename [ 1 ] = = ' x ' )
2022-01-01 22:22:04 +05:00
{
2023-09-07 15:41:25 +05:00
if ( ! parse_hex_str ( filename + 2 , buf , size ) | | ! * size )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " invalid hex string: %s \n " , filename + 2 ) ;
2023-09-07 15:41:25 +05:00
exit_clean ( 1 ) ;
}
2024-08-23 16:42:21 +05:00
DLOG ( " read %zu bytes from hex string \n " , * size ) ;
2023-09-07 15:41:25 +05:00
}
else
{
if ( ! load_file_nonempty ( filename , buf , size ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " could not read %s \n " , filename ) ;
2023-09-07 15:41:25 +05:00
exit_clean ( 1 ) ;
}
2024-08-23 16:42:21 +05:00
DLOG ( " read %zu bytes from %s \n " , * size , filename ) ;
2022-01-01 22:22:04 +05:00
}
}
2024-03-02 19:53:37 +05:00
bool parse_autottl ( const char * s , autottl * t )
{
unsigned int delta , min , max ;
AUTOTTL_SET_DEFAULT ( * t ) ;
if ( s )
{
max = t - > max ;
switch ( sscanf ( s , " %u:%u-%u " , & delta , & min , & max ) )
{
case 3 :
2024-08-02 21:16:30 +05:00
if ( ( delta & & ! max ) | | max > 255 ) return false ;
2024-03-02 19:53:37 +05:00
t - > max = ( uint8_t ) max ;
case 2 :
2024-08-02 21:16:30 +05:00
if ( ( delta & & ! min ) | | min > 255 | | min > max ) return false ;
2024-03-02 19:53:37 +05:00
t - > min = ( uint8_t ) min ;
case 1 :
if ( delta > 255 ) return false ;
t - > delta = ( uint8_t ) delta ;
break ;
default :
return false ;
}
}
return true ;
}
2022-01-01 22:22:04 +05:00
2024-04-26 23:36:27 +05:00
# ifdef __CYGWIN__
static bool wf_make_pf ( char * opt , const char * l4 , const char * portname , char * buf , size_t len )
{
char * e , * p , c , s1 [ 64 ] ;
port_filter pf ;
int n ;
if ( len < 3 ) return false ;
for ( n = 0 , p = opt , * buf = ' ( ' , buf [ 1 ] = 0 ; p ; n + + )
{
if ( ( e = strchr ( p , ' , ' ) ) )
{
c = * e ;
* e = 0 ;
}
if ( ! pf_parse ( p , & pf ) ) return false ;
if ( pf . from = = pf . to )
snprintf ( s1 , sizeof ( s1 ) , " (%s.%s %s %u) " , l4 , portname , pf . neg ? " != " : " == " , pf . from ) ;
else
snprintf ( s1 , sizeof ( s1 ) , " (%s.%s %s %u %s %s.%s %s %u) " , l4 , portname , pf . neg ? " < " : " >= " , pf . from , pf . neg ? " or " : " and " , l4 , portname , pf . neg ? " > " : " <= " , pf . to ) ;
if ( n ) strncat ( buf , " or " , len - strlen ( buf ) - 1 ) ;
strncat ( buf , s1 , len - strlen ( buf ) - 1 ) ;
if ( e )
{
* e + + = c ;
}
p = e ;
}
strncat ( buf , " ) " , len - strlen ( buf ) - 1 ) ;
return true ;
}
static bool wf_make_l3 ( char * opt , bool * ipv4 , bool * ipv6 )
{
char * e , * p , c ;
for ( p = opt , * ipv4 = * ipv6 = false ; p ; )
{
if ( ( e = strchr ( p , ' , ' ) ) )
{
c = * e ;
* e = 0 ;
}
if ( ! strcmp ( p , " ipv4 " ) )
* ipv4 = true ;
else if ( ! strcmp ( p , " ipv6 " ) )
* ipv6 = true ;
else return false ;
if ( e )
{
* e + + = c ;
}
p = e ;
}
return true ;
}
# define DIVERT_NO_LOCALNETSv4_DST "(" \
" (ip.DstAddr < 127.0.0.1 or ip.DstAddr > 127.255.255.255) and " \
" (ip.DstAddr < 10.0.0.0 or ip.DstAddr > 10.255.255.255) and " \
" (ip.DstAddr < 192.168.0.0 or ip.DstAddr > 192.168.255.255) and " \
" (ip.DstAddr < 172.16.0.0 or ip.DstAddr > 172.31.255.255) and " \
" (ip.DstAddr < 169.254.0.0 or ip.DstAddr > 169.254.255.255)) "
# define DIVERT_NO_LOCALNETSv4_SRC "(" \
" (ip.SrcAddr < 127.0.0.1 or ip.SrcAddr > 127.255.255.255) and " \
" (ip.SrcAddr < 10.0.0.0 or ip.SrcAddr > 10.255.255.255) and " \
" (ip.SrcAddr < 192.168.0.0 or ip.SrcAddr > 192.168.255.255) and " \
" (ip.SrcAddr < 172.16.0.0 or ip.SrcAddr > 172.31.255.255) and " \
" (ip.SrcAddr < 169.254.0.0 or ip.SrcAddr > 169.254.255.255)) "
# define DIVERT_NO_LOCALNETSv6_DST "(" \
" (ipv6.DstAddr > ::1) and " \
" (ipv6.DstAddr < 2001::0 or ipv6.DstAddr >= 2001:1::0) and " \
" (ipv6.DstAddr < fc00::0 or ipv6.DstAddr >= fe00::0) and " \
" (ipv6.DstAddr < fe80::0 or ipv6.DstAddr >= fec0::0) and " \
" (ipv6.DstAddr < ff00::0 or ipv6.DstAddr >= ffff::0)) "
# define DIVERT_NO_LOCALNETSv6_SRC "(" \
" (ipv6.SrcAddr > ::1) and " \
" (ipv6.SrcAddr < 2001::0 or ipv6.SrcAddr >= 2001:1::0) and " \
" (ipv6.SrcAddr < fc00::0 or ipv6.SrcAddr >= fe00::0) and " \
" (ipv6.SrcAddr < fe80::0 or ipv6.SrcAddr >= fec0::0) and " \
" (ipv6.SrcAddr < ff00::0 or ipv6.SrcAddr >= ffff::0)) "
# define DIVERT_NO_LOCALNETS_SRC "(" DIVERT_NO_LOCALNETSv4_SRC " or " DIVERT_NO_LOCALNETSv6_SRC ")"
# define DIVERT_NO_LOCALNETS_DST "(" DIVERT_NO_LOCALNETSv4_DST " or " DIVERT_NO_LOCALNETSv6_DST ")"
2024-04-27 11:35:58 +05:00
# define DIVERT_TCP_INBOUNDS "(tcp.Ack and tcp.Syn or tcp.Rst or tcp.Fin)"
2024-04-26 23:36:27 +05:00
// HTTP/1.? 30(2|7)
# define DIVERT_HTTP_REDIRECT "tcp.PayloadLength>=12 and tcp.Payload32[0]==0x48545450 and tcp.Payload16[2]==0x2F31 and tcp.Payload[6]==0x2E and tcp.Payload16[4]==0x2033 and tcp.Payload[10]==0x30 and (tcp.Payload[11]==0x32 or tcp.Payload[11]==0x37)"
# define DIVERT_PROLOG "!impostor and !loopback"
static bool wf_make_filter (
char * wf , size_t len ,
2024-04-27 11:35:58 +05:00
unsigned int IfIdx , unsigned int SubIfIdx ,
2024-04-26 23:36:27 +05:00
bool ipv4 , bool ipv6 ,
const char * pf_tcp_src , const char * pf_tcp_dst ,
const char * pf_udp_src , const char * pf_udp_dst )
{
2024-08-16 17:12:43 +05:00
char pf_dst_buf [ 512 ] , iface [ 64 ] ;
2024-04-26 23:36:27 +05:00
const char * pf_dst ;
const char * f_tcpin = * pf_tcp_src ? * params . hostlist_auto_filename ? " ( " DIVERT_TCP_INBOUNDS " or ( " DIVERT_HTTP_REDIRECT " )) " : DIVERT_TCP_INBOUNDS : " " ;
2024-04-27 11:35:58 +05:00
snprintf ( iface , sizeof ( iface ) , " ifIdx=%u and subIfIdx=%u and " , IfIdx , SubIfIdx ) ;
2024-04-26 23:36:27 +05:00
if ( ! * pf_tcp_src & & ! * pf_udp_src ) return false ;
if ( * pf_tcp_src & & * pf_udp_src )
{
snprintf ( pf_dst_buf , sizeof ( pf_dst_buf ) , " (%s or %s) " , pf_tcp_dst , pf_udp_dst ) ;
pf_dst = pf_dst_buf ;
}
else
pf_dst = * pf_tcp_dst ? pf_tcp_dst : pf_udp_dst ;
snprintf ( wf , len ,
2024-04-27 11:35:58 +05:00
DIVERT_PROLOG " and%s%s \n ((outbound and %s%s) \n or \n (inbound and tcp%s%s%s%s%s%s%s)) " ,
IfIdx ? iface : " " ,
2024-04-26 23:36:27 +05:00
ipv4 ? ipv6 ? " " : " ip and " : " ipv6 and " ,
pf_dst ,
ipv4 ? ipv6 ? " and " DIVERT_NO_LOCALNETS_DST : " and " DIVERT_NO_LOCALNETSv4_DST : " and " DIVERT_NO_LOCALNETSv6_DST ,
* pf_tcp_src ? " " : " and false " ,
* f_tcpin ? " and " : " " ,
* f_tcpin ? f_tcpin : " " ,
* pf_tcp_src ? " and " : " " ,
* pf_tcp_src ? pf_tcp_src : " " ,
* pf_tcp_src ? " and " : " " ,
* pf_tcp_src ? ipv4 ? ipv6 ? DIVERT_NO_LOCALNETS_SRC : DIVERT_NO_LOCALNETSv4_SRC : DIVERT_NO_LOCALNETSv6_SRC : " "
) ;
return true ;
}
2024-06-22 23:40:02 +05:00
static unsigned int hash_jen ( const void * data , unsigned int len )
2024-06-22 23:38:28 +05:00
{
unsigned int hash ;
HASH_JEN ( data , len , hash ) ;
return hash ;
}
2024-04-27 11:35:58 +05:00
# endif
static void exithelp ( void )
{
printf (
2024-08-23 16:42:21 +05:00
" --debug=0|1|syslog|@<filename> \n "
2024-04-27 11:35:58 +05:00
# ifdef __linux__
" --qnum=<nfqueue_number> \n "
# elif defined(BSD)
" --port=<port> \t \t \t \t \t ; divert port \n "
# endif
" --daemon \t \t \t \t \t ; daemonize \n "
" --pidfile=<filename> \t \t \t \t ; write pid to file \n "
# ifndef __CYGWIN__
" --user=<username> \t \t \t \t ; drop root privs \n "
" --uid=uid[:gid] \t \t \t \t ; drop root privs \n "
# endif
# ifdef __linux__
" --bind-fix4 \t \t \t \t \t ; apply outgoing interface selection fix for generated ipv4 packets \n "
" --bind-fix6 \t \t \t \t \t ; apply outgoing interface selection fix for generated ipv6 packets \n "
# endif
" --ctrack-timeouts=S:E:F[:U] \t \t \t ; internal conntrack timeouts for TCP SYN, ESTABLISHED, FIN stages, UDP timeout. default %u:%u:%u:%u \n "
# ifdef __CYGWIN__
" \n WINDIVERT FILTER: \n "
2024-04-27 14:51:49 +05:00
" --wf-iface=<int>[.<int>] \t \t \t ; numeric network interface and subinterface indexes \n "
2024-04-27 11:35:58 +05:00
" --wf-l3=ipv4|ipv6 \t \t \t \t ; L3 protocol filter. multiple comma separated values allowed. \n "
" --wf-tcp=[~]port1[-port2] \t \t \t ; TCP port filter. ~ means negation. multiple comma separated values allowed. \n "
" --wf-udp=[~]port1[-port2] \t \t \t ; UDP port filter. ~ means negation. multiple comma separated values allowed. \n "
" --wf-raw=<filter>|@<filename> \t \t \t ; raw windivert filter string or filename \n "
" --wf-save=<filename> \t \t \t \t ; save windivert filter string to a file and exit \n "
2024-06-19 21:46:16 +05:00
" \n LOGICAL NETWORK FILTER: \n "
" --ssid-filter=ssid1[,ssid2,ssid3,...] \t \t ; enable winws only if any of specified wifi SSIDs connected \n "
2024-07-12 17:13:18 +05:00
" --nlm-filter=net1[,net2,net3,...] \t \t ; enable winws only if any of specified NLM network is connected. names and GUIDs are accepted. \n "
" --nlm-list[=all] \t \t \t \t ; list Network List Manager (NLM) networks. connected only or all. \n "
2024-04-27 11:35:58 +05:00
# endif
" \n HOSTLIST FILTER: \n "
" --hostlist=<filename> \t \t \t \t ; apply dpi desync only to the listed hosts (one host per line, subdomains auto apply, gzip supported, multiple hostlists allowed) \n "
" --hostlist-exclude=<filename> \t \t \t ; do not apply dpi desync to the listed hosts (one host per line, subdomains auto apply, gzip supported, multiple hostlists allowed) \n "
" --hostlist-auto=<filename> \t \t \t ; detect DPI blocks and build hostlist automatically \n "
" --hostlist-auto-fail-threshold=<int> \t \t ; how many failed attempts cause hostname to be added to auto hostlist (default : %d) \n "
" --hostlist-auto-fail-time=<int> \t \t ; all failed attemps must be within these seconds (default : %d) \n "
" --hostlist-auto-retrans-threshold=<int> \t ; how many request retransmissions cause attempt to fail (default : %d) \n "
" --hostlist-auto-debug=<logfile> \t \t ; debug auto hostlist positives \n "
" \n TAMPER: \n "
" --wsize=<window_size>[:<scale_factor>] \t \t ; set window size. 0 = do not modify. OBSOLETE ! \n "
" --wssize=<window_size>[:<scale_factor>] \t ; set window size for server. 0 = do not modify. default scale_factor = 0. \n "
" --wssize-cutoff=[n|d|s]N \t \t \t ; apply server wsize only to packet numbers (n, default), data packet numbers (d), relative sequence (s) less than N \n "
" --hostcase \t \t \t \t \t ; change Host: => host: \n "
" --hostspell \t \t \t \t \t ; exact spelling of \" Host \" header. must be 4 chars. default is \" host \" \n "
" --hostnospace \t \t \t \t \t ; remove space after Host: and add it to User-Agent: to preserve packet size \n "
" --domcase \t \t \t \t \t ; mix domain case : Host: TeSt.cOm \n "
" --dpi-desync=[<mode0>,]<mode>[,<mode2>] \t ; try to desync dpi state. modes : synack syndata fake fakeknown rst rstack hopbyhop destopt ipfrag1 disorder disorder2 split split2 ipfrag2 udplen tamper \n "
# ifdef __linux__
" --dpi-desync-fwmark=<int|0xHEX> \t \t ; override fwmark for desync packet. default = 0x%08X (%u) \n "
# elif defined(SO_USER_COOKIE)
" --dpi-desync-sockarg=<int|0xHEX> \t \t ; override sockarg (SO_USER_COOKIE) for desync packet. default = 0x%08X (%u) \n "
# endif
" --dpi-desync-ttl=<int> \t \t \t \t ; set ttl for desync packet \n "
" --dpi-desync-ttl6=<int> \t \t \t ; set ipv6 hop limit for desync packet. by default ttl value is used. \n "
" --dpi-desync-autottl=[<delta>[:<min>[-<max>]]] \t ; auto ttl mode for both ipv4 and ipv6. default: %u:%u-%u \n "
" --dpi-desync-autottl6=[<delta>[:<min>[-<max>]]] ; overrides --dpi-desync-autottl for ipv6 only \n "
" --dpi-desync-fooling=<mode>[,<mode>] \t \t ; can use multiple comma separated values. modes : none md5sig ts badseq badsum datanoack hopbyhop hopbyhop2 \n "
" --dpi-desync-repeats=<N> \t \t \t ; send every desync packet N times \n "
" --dpi-desync-skip-nosni=0|1 \t \t \t ; 1(default)=do not act on ClientHello without SNI (ESNI ?) \n "
" --dpi-desync-split-pos=<1..%u> \t \t ; data payload split position \n "
2024-06-18 19:39:06 +05:00
" --dpi-desync-split-http-req=method|host \t ; split at specified logical part of plain http request \n "
" --dpi-desync-split-tls=sni|sniext \t \t ; split at specified logical part of TLS ClientHello \n "
2024-06-24 18:51:06 +05:00
" --dpi-desync-split-seqovl=<int> \t \t ; use sequence overlap before first sent original split segment \n "
" --dpi-desync-split-seqovl-pattern=<filename>|0xHEX ; pattern for the fake part of overlap \n "
2024-04-27 11:35:58 +05:00
" --dpi-desync-ipfrag-pos-tcp=<8..%u> \t \t ; ip frag position starting from the transport header. multiple of 8, default %u. \n "
" --dpi-desync-ipfrag-pos-udp=<8..%u> \t \t ; ip frag position starting from the transport header. multiple of 8, default %u. \n "
" --dpi-desync-badseq-increment=<int|0xHEX> \t ; badseq fooling seq signed increment. default %d \n "
" --dpi-desync-badack-increment=<int|0xHEX> \t ; badseq fooling ackseq signed increment. default %d \n "
2024-06-24 18:51:06 +05:00
" --dpi-desync-any-protocol=0|1 \t \t \t ; 0(default)=desync only http and tls 1=desync any nonempty data packet \n "
2024-04-27 11:35:58 +05:00
" --dpi-desync-fake-http=<filename>|0xHEX \t ; file containing fake http request \n "
" --dpi-desync-fake-tls=<filename>|0xHEX \t \t ; file containing fake TLS ClientHello (for https) \n "
" --dpi-desync-fake-unknown=<filename>|0xHEX \t ; file containing unknown protocol fake payload \n "
" --dpi-desync-fake-syndata=<filename>|0xHEX \t ; file containing SYN data payload \n "
" --dpi-desync-fake-quic=<filename>|0xHEX \t ; file containing fake QUIC Initial \n "
" --dpi-desync-fake-wireguard=<filename>|0xHEX \t ; file containing fake wireguard handshake initiation \n "
" --dpi-desync-fake-dht=<filename>|0xHEX \t \t ; file containing DHT protocol fake payload (d1...e) \n "
" --dpi-desync-fake-unknown-udp=<filename>|0xHEX \t ; file containing unknown udp protocol fake payload \n "
" --dpi-desync-udplen-increment=<int> \t \t ; increase or decrease udp packet length by N bytes (default %u). negative values decrease length. \n "
" --dpi-desync-udplen-pattern=<filename>|0xHEX \t ; udp tail fill pattern \n "
" --dpi-desync-start=[n|d|s]N \t \t \t ; apply dpi desync only to packet numbers (n, default), data packet numbers (d), relative sequence (s) greater or equal than N \n "
" --dpi-desync-cutoff=[n|d|s]N \t \t \t ; apply dpi desync only to packet numbers (n, default), data packet numbers (d), relative sequence (s) less than N \n " ,
CTRACK_T_SYN , CTRACK_T_EST , CTRACK_T_FIN , CTRACK_T_UDP ,
HOSTLIST_AUTO_FAIL_THRESHOLD_DEFAULT , HOSTLIST_AUTO_FAIL_TIME_DEFAULT , HOSTLIST_AUTO_RETRANS_THRESHOLD_DEFAULT ,
# if defined(__linux__) || defined(SO_USER_COOKIE)
DPI_DESYNC_FWMARK_DEFAULT , DPI_DESYNC_FWMARK_DEFAULT ,
# endif
AUTOTTL_DEFAULT_DELTA , AUTOTTL_DEFAULT_MIN , AUTOTTL_DEFAULT_MAX ,
DPI_DESYNC_MAX_FAKE_LEN ,
DPI_DESYNC_MAX_FAKE_LEN , IPFRAG_UDP_DEFAULT ,
DPI_DESYNC_MAX_FAKE_LEN , IPFRAG_TCP_DEFAULT ,
BADSEQ_INCREMENT_DEFAULT , BADSEQ_ACK_INCREMENT_DEFAULT ,
UDPLEN_INCREMENT_DEFAULT
) ;
exit ( 1 ) ;
}
static void exithelp_clean ( void )
{
cleanup_params ( ) ;
exithelp ( ) ;
}
2024-06-18 19:39:06 +05:00
bool parse_httpreqpos ( const char * s , enum httpreqpos * pos )
{
if ( ! strcmp ( s , " method " ) )
* pos = httpreqpos_method ;
else if ( ! strcmp ( s , " host " ) )
* pos = httpreqpos_host ;
else
return false ;
return true ;
}
bool parse_tlspos ( const char * s , enum tlspos * pos )
{
if ( ! strcmp ( s , " sni " ) )
* pos = tlspos_sni ;
else if ( ! strcmp ( s , " sniext " ) )
* pos = tlspos_sniext ;
else
return false ;
return true ;
}
2024-04-26 23:36:27 +05:00
2021-03-04 16:30:38 +05:00
int main ( int argc , char * * argv )
{
2024-04-30 17:35:20 +05:00
# ifdef __CYGWIN__
if ( service_run ( argc , argv ) )
{
// we were running as service. now exit.
return 0 ;
}
# endif
2021-03-04 16:30:38 +05:00
int result , v ;
int option_index = 0 ;
bool daemon = false ;
char pidfile [ 256 ] ;
2024-04-26 23:36:27 +05:00
# ifdef __CYGWIN__
char windivert_filter [ 8192 ] , wf_pf_tcp_src [ 256 ] , wf_pf_tcp_dst [ 256 ] , wf_pf_udp_src [ 256 ] , wf_pf_udp_dst [ 256 ] , wf_save_file [ 256 ] ;
2024-04-30 17:39:20 +05:00
bool wf_ipv4 = true , wf_ipv6 = true ;
2024-04-27 11:35:58 +05:00
unsigned int IfIdx = 0 , SubIfIdx = 0 ;
2024-07-12 17:13:18 +05:00
unsigned int hash_wf_tcp = 0 , hash_wf_udp = 0 , hash_wf_raw = 0 , hash_ssid_filter = 0 , hash_nlm_filter = 0 ;
2024-04-26 23:36:27 +05:00
* windivert_filter = * wf_pf_tcp_src = * wf_pf_tcp_dst = * wf_pf_udp_src = * wf_pf_udp_dst = * wf_save_file = 0 ;
# endif
2023-10-26 17:12:32 +05:00
2021-03-04 16:30:38 +05:00
srandom ( time ( NULL ) ) ;
memset ( & params , 0 , sizeof ( params ) ) ;
memcpy ( params . hostspell , " host " , 4 ) ; // default hostspell
* pidfile = 0 ;
2024-04-17 11:29:10 +05:00
# ifdef __linux__
params . qnum = - 1 ;
# endif
2021-03-04 16:30:38 +05:00
params . desync_fwmark = DPI_DESYNC_FWMARK_DEFAULT ;
params . desync_skip_nosni = true ;
2021-12-22 13:21:47 +05:00
params . desync_split_pos = 2 ;
2022-01-03 14:38:18 +05:00
params . desync_ipfrag_pos_udp = IPFRAG_UDP_DEFAULT ;
params . desync_ipfrag_pos_tcp = IPFRAG_TCP_DEFAULT ;
2021-03-04 16:30:38 +05:00
params . desync_repeats = 1 ;
params . fake_tls_size = sizeof ( fake_tls_clienthello_default ) ;
memcpy ( params . fake_tls , fake_tls_clienthello_default , params . fake_tls_size ) ;
params . fake_http_size = strlen ( fake_http_request_default ) ;
memcpy ( params . fake_http , fake_http_request_default , params . fake_http_size ) ;
2022-05-30 16:48:29 +05:00
params . fake_quic_size = 620 ; // must be 601+ for TSPU hack
params . fake_quic [ 0 ] = 0x40 ; // russian TSPU QUIC short header fake
2023-08-12 11:56:19 +05:00
params . fake_wg_size = 64 ;
2023-09-07 21:03:37 +05:00
params . fake_dht_size = 64 ;
2021-12-26 22:43:16 +05:00
params . fake_unknown_size = 256 ;
2024-03-19 15:50:20 +05:00
params . fake_syndata_size = 16 ;
2022-01-01 22:22:04 +05:00
params . fake_unknown_udp_size = 64 ;
2021-03-12 16:33:48 +05:00
params . wscale = - 1 ; // default - dont change scale factor (client)
2021-03-18 19:21:25 +05:00
params . ctrack_t_syn = CTRACK_T_SYN ;
params . ctrack_t_est = CTRACK_T_EST ;
params . ctrack_t_fin = CTRACK_T_FIN ;
2022-01-01 22:22:04 +05:00
params . ctrack_t_udp = CTRACK_T_UDP ;
2021-12-11 00:08:52 +05:00
params . desync_ttl6 = 0xFF ; // unused
2021-12-26 19:11:21 +05:00
params . desync_badseq_increment = BADSEQ_INCREMENT_DEFAULT ;
params . desync_badseq_ack_increment = BADSEQ_ACK_INCREMENT_DEFAULT ;
2024-04-13 13:13:11 +05:00
params . wssize_cutoff_mode = params . desync_start_mode = params . desync_cutoff_mode = ' n ' ; // packet number by default
2022-04-12 17:52:06 +05:00
params . udplen_increment = UDPLEN_INCREMENT_DEFAULT ;
2023-10-26 17:12:32 +05:00
params . hostlist_auto_fail_threshold = HOSTLIST_AUTO_FAIL_THRESHOLD_DEFAULT ;
params . hostlist_auto_fail_time = HOSTLIST_AUTO_FAIL_TIME_DEFAULT ;
params . hostlist_auto_retrans_threshold = HOSTLIST_AUTO_RETRANS_THRESHOLD_DEFAULT ;
2021-03-12 16:33:48 +05:00
2022-07-26 21:15:28 +05:00
LIST_INIT ( & params . hostlist_files ) ;
LIST_INIT ( & params . hostlist_exclude_files ) ;
2024-04-26 23:36:27 +05:00
2024-06-19 21:46:16 +05:00
# ifdef __CYGWIN__
LIST_INIT ( & params . ssid_filter ) ;
2024-07-12 17:13:18 +05:00
LIST_INIT ( & params . nlm_filter ) ;
2024-06-19 21:46:16 +05:00
# else
2021-03-04 16:30:38 +05:00
if ( can_drop_root ( ) ) // are we root ?
{
params . uid = params . gid = 0x7FFFFFFF ; // default uid:gid
params . droproot = true ;
}
2024-04-26 23:36:27 +05:00
# endif
2021-03-04 16:30:38 +05:00
const struct option long_options [ ] = {
{ " debug " , optional_argument , 0 , 0 } , // optidx=0
# ifdef __linux__
{ " qnum " , required_argument , 0 , 0 } , // optidx=1
# elif defined(BSD)
{ " port " , required_argument , 0 , 0 } , // optidx=1
# else
{ " disabled_argument_1 " , no_argument , 0 , 0 } , // optidx=1
# endif
{ " daemon " , no_argument , 0 , 0 } , // optidx=2
{ " pidfile " , required_argument , 0 , 0 } , // optidx=3
2024-04-26 23:36:27 +05:00
# ifndef __CYGWIN__
2021-03-04 16:30:38 +05:00
{ " user " , required_argument , 0 , 0 } , // optidx=4
{ " uid " , required_argument , 0 , 0 } , // optidx=5
2024-04-26 23:36:27 +05:00
# else
{ " disabled_argument_2 " , no_argument , 0 , 0 } , // optidx=4
{ " disabled_argument_3 " , no_argument , 0 , 0 } , // optidx=5
# endif
2021-03-04 16:30:38 +05:00
{ " wsize " , required_argument , 0 , 0 } , // optidx=6
2021-03-12 16:33:48 +05:00
{ " wssize " , required_argument , 0 , 0 } , // optidx=7
2021-03-18 19:21:25 +05:00
{ " wssize-cutoff " , required_argument , 0 , 0 } , // optidx=8
{ " ctrack-timeouts " , required_argument , 0 , 0 } , // optidx=9
{ " hostcase " , no_argument , 0 , 0 } , // optidx=10
{ " hostspell " , required_argument , 0 , 0 } , // optidx=11
{ " hostnospace " , no_argument , 0 , 0 } , // optidx=12
{ " domcase " , no_argument , 0 , 0 } , // optidx=13
{ " dpi-desync " , required_argument , 0 , 0 } , // optidx=14
2021-03-04 16:30:38 +05:00
# ifdef __linux__
2021-03-18 19:21:25 +05:00
{ " dpi-desync-fwmark " , required_argument , 0 , 0 } , // optidx=15
2021-03-04 16:30:38 +05:00
# elif defined(SO_USER_COOKIE)
2021-03-18 19:21:25 +05:00
{ " dpi-desync-sockarg " , required_argument , 0 , 0 } , // optidx=15
2021-03-04 16:30:38 +05:00
# else
2024-04-26 23:36:27 +05:00
{ " disabled_argument_4 " , no_argument , 0 , 0 } , // optidx=15
2021-03-04 16:30:38 +05:00
# endif
2021-03-18 19:21:25 +05:00
{ " dpi-desync-ttl " , required_argument , 0 , 0 } , // optidx=16
2021-12-11 00:08:52 +05:00
{ " dpi-desync-ttl6 " , required_argument , 0 , 0 } , // optidx=17
2024-03-02 19:53:37 +05:00
{ " dpi-desync-autottl " , optional_argument , 0 , 0 } , // optidx=18
{ " dpi-desync-autottl6 " , optional_argument , 0 , 0 } , // optidx=19
{ " dpi-desync-fooling " , required_argument , 0 , 0 } , // optidx=20
2024-04-20 22:59:45 +05:00
{ " dpi-desync-repeats " , required_argument , 0 , 0 } , // optidx=21
{ " dpi-desync-skip-nosni " , optional_argument , 0 , 0 } , // optidx=22
{ " dpi-desync-split-pos " , required_argument , 0 , 0 } , // optidx=23
2024-06-18 19:39:06 +05:00
{ " dpi-desync-split-http-req " , required_argument , 0 , 0 } , // optidx=24
{ " dpi-desync-split-tls " , required_argument , 0 , 0 } , // optidx=25
2024-06-24 18:51:06 +05:00
{ " dpi-desync-split-seqovl " , required_argument , 0 , 0 } , // optidx=26
{ " dpi-desync-split-seqovl-pattern " , required_argument , 0 , 0 } , // optidx=27
{ " dpi-desync-ipfrag-pos-tcp " , required_argument , 0 , 0 } , // optidx=28
{ " dpi-desync-ipfrag-pos-udp " , required_argument , 0 , 0 } , // optidx=29
{ " dpi-desync-badseq-increment " , required_argument , 0 , 0 } , // optidx=30
{ " dpi-desync-badack-increment " , required_argument , 0 , 0 } , // optidx=31
{ " dpi-desync-any-protocol " , optional_argument , 0 , 0 } , // optidx=32
{ " dpi-desync-fake-http " , required_argument , 0 , 0 } , // optidx=33
{ " dpi-desync-fake-tls " , required_argument , 0 , 0 } , // optidx=34
{ " dpi-desync-fake-unknown " , required_argument , 0 , 0 } , // optidx=35
{ " dpi-desync-fake-syndata " , required_argument , 0 , 0 } , // optidx=36
{ " dpi-desync-fake-quic " , required_argument , 0 , 0 } , // optidx=37
{ " dpi-desync-fake-wireguard " , required_argument , 0 , 0 } , // optidx=38
{ " dpi-desync-fake-dht " , required_argument , 0 , 0 } , // optidx=39
{ " dpi-desync-fake-unknown-udp " , required_argument , 0 , 0 } , // optidx=40
{ " dpi-desync-udplen-increment " , required_argument , 0 , 0 } , // optidx=41
{ " dpi-desync-udplen-pattern " , required_argument , 0 , 0 } , // optidx=42
{ " dpi-desync-cutoff " , required_argument , 0 , 0 } , // optidx=43
{ " dpi-desync-start " , required_argument , 0 , 0 } , // optidx=43
{ " hostlist " , required_argument , 0 , 0 } , // optidx=44
{ " hostlist-exclude " , required_argument , 0 , 0 } , // optidx=45
{ " hostlist-auto " , required_argument , 0 , 0 } , // optidx=46
{ " hostlist-auto-fail-threshold " , required_argument , 0 , 0 } , // optidx=48
{ " hostlist-auto-fail-time " , required_argument , 0 , 0 } , // optidx=49
{ " hostlist-auto-retrans-threshold " , required_argument , 0 , 0 } , // optidx=50
{ " hostlist-auto-debug " , required_argument , 0 , 0 } , // optidx=51
2023-10-26 17:12:32 +05:00
2022-05-15 17:54:35 +05:00
# ifdef __linux__
2024-06-24 18:51:06 +05:00
{ " bind-fix4 " , no_argument , 0 , 0 } , // optidx=52
{ " bind-fix6 " , no_argument , 0 , 0 } , // optidx=53
2024-04-26 23:36:27 +05:00
# elif defined(__CYGWIN__)
2024-06-24 18:51:06 +05:00
{ " wf-iface " , required_argument , 0 , 0 } , // optidx=52
{ " wf-l3 " , required_argument , 0 , 0 } , // optidx=53
{ " wf-tcp " , required_argument , 0 , 0 } , // optidx=54
{ " wf-udp " , required_argument , 0 , 0 } , // optidx=55
{ " wf-raw " , required_argument , 0 , 0 } , // optidx=56
{ " wf-save " , required_argument , 0 , 0 } , // optidx=57
{ " ssid-filter " , required_argument , 0 , 0 } , // optidx=58
2024-07-12 17:13:18 +05:00
{ " nlm-filter " , required_argument , 0 , 0 } , // optidx=59
{ " nlm-list " , optional_argument , 0 , 0 } , // optidx=60
2022-05-15 17:54:35 +05:00
# endif
2021-03-04 16:30:38 +05:00
{ NULL , 0 , NULL , 0 }
} ;
if ( argc < 2 ) exithelp ( ) ;
while ( ( v = getopt_long_only ( argc , argv , " " , long_options , & option_index ) ) ! = - 1 )
{
if ( v ) exithelp ( ) ;
switch ( option_index )
{
case 0 : /* debug */
2024-08-23 16:42:21 +05:00
if ( optarg )
{
if ( * optarg = = ' @ ' )
{
strncpy ( params . debug_logfile , optarg + 1 , sizeof ( params . debug_logfile ) ) ;
params . debug_logfile [ sizeof ( params . debug_logfile ) - 1 ] = 0 ;
FILE * F = fopen ( params . debug_logfile , " wt " ) ;
if ( ! F )
{
fprintf ( stderr , " cannot create %s \n " , params . debug_logfile ) ;
exit_clean ( 1 ) ;
}
# ifndef __CYGWIN__
if ( params . droproot & & chown ( params . debug_logfile , params . uid , - 1 ) )
fprintf ( stderr , " could not chown %s. log file may not be writable after privilege drop \n " , params . debug_logfile ) ;
# endif
params . debug = true ;
params . debug_target = LOG_TARGET_FILE ;
}
else if ( ! strcmp ( optarg , " syslog " ) )
{
params . debug = true ;
params . debug_target = LOG_TARGET_SYSLOG ;
2024-08-23 17:31:07 +05:00
openlog ( progname , LOG_PID , LOG_USER ) ;
2024-08-23 16:42:21 +05:00
}
else
{
params . debug = ! ! atoi ( optarg ) ;
params . debug_target = LOG_TARGET_CONSOLE ;
}
}
else
{
params . debug = true ;
params . debug_target = LOG_TARGET_CONSOLE ;
}
2021-03-04 16:30:38 +05:00
break ;
2024-04-26 23:36:27 +05:00
# ifndef __CYGWIN__
2021-03-04 16:30:38 +05:00
case 1 : /* qnum or port */
# ifdef __linux__
params . qnum = atoi ( optarg ) ;
if ( params . qnum < 0 | | params . qnum > 65535 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " bad qnum \n " ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
}
# elif defined(BSD)
{
int i = atoi ( optarg ) ;
if ( i < = 0 | | i > 65535 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " bad port number \n " ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
}
params . port = ( uint16_t ) i ;
}
# endif
break ;
2024-04-26 23:36:27 +05:00
# endif
2021-03-04 16:30:38 +05:00
case 2 : /* daemon */
daemon = true ;
break ;
case 3 : /* pidfile */
strncpy ( pidfile , optarg , sizeof ( pidfile ) ) ;
pidfile [ sizeof ( pidfile ) - 1 ] = ' \0 ' ;
break ;
2024-04-26 23:36:27 +05:00
# ifndef __CYGWIN__
2021-03-04 16:30:38 +05:00
case 4 : /* user */
{
struct passwd * pwd = getpwnam ( optarg ) ;
if ( ! pwd )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " non-existent username supplied \n " ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
}
params . uid = pwd - > pw_uid ;
params . gid = pwd - > pw_gid ;
params . droproot = true ;
break ;
}
case 5 : /* uid */
params . gid = 0x7FFFFFFF ; // default gid. drop gid=0
params . droproot = true ;
2021-12-27 18:51:30 +05:00
if ( sscanf ( optarg , " %u:%u " , & params . uid , & params . gid ) < 1 )
2021-03-04 16:30:38 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " --uid should be : uid[:gid] \n " ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-04-26 23:36:27 +05:00
# endif
2021-03-04 16:30:38 +05:00
case 6 : /* wsize */
2021-05-26 11:26:39 +05:00
if ( ! parse_ws_scale_factor ( optarg , & params . wsize , & params . wscale ) )
2021-03-12 16:33:48 +05:00
exit_clean ( 1 ) ;
break ;
case 7 : /* wssize */
2021-05-26 11:26:39 +05:00
if ( ! parse_ws_scale_factor ( optarg , & params . wssize , & params . wsscale ) )
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
break ;
2021-03-18 19:21:25 +05:00
case 8 : /* wssize-cutoff */
2021-12-27 18:51:30 +05:00
if ( ! parse_cutoff ( optarg , & params . wssize_cutoff , & params . wssize_cutoff_mode ) )
2021-03-18 19:21:25 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " invalid wssize-cutoff value \n " ) ;
2021-03-18 19:21:25 +05:00
exit_clean ( 1 ) ;
}
break ;
case 9 : /* ctrack-timeouts */
2022-01-01 22:22:04 +05:00
if ( sscanf ( optarg , " %u:%u:%u:%u " , & params . ctrack_t_syn , & params . ctrack_t_est , & params . ctrack_t_fin , & params . ctrack_t_udp ) < 3 )
2021-03-18 19:21:25 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " invalid ctrack-timeouts value \n " ) ;
2021-03-18 19:21:25 +05:00
exit_clean ( 1 ) ;
}
break ;
case 10 : /* hostcase */
2021-03-04 16:30:38 +05:00
params . hostcase = true ;
break ;
2021-03-18 19:21:25 +05:00
case 11 : /* hostspell */
2021-03-04 16:30:38 +05:00
if ( strlen ( optarg ) ! = 4 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " hostspell must be exactly 4 chars long \n " ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
}
params . hostcase = true ;
memcpy ( params . hostspell , optarg , 4 ) ;
break ;
2021-03-18 19:21:25 +05:00
case 12 : /* hostnospace */
2021-03-04 16:30:38 +05:00
params . hostnospace = true ;
break ;
2021-03-18 19:21:25 +05:00
case 13 : /* domcase */
2021-03-04 16:30:38 +05:00
params . domcase = true ;
break ;
2021-03-18 19:21:25 +05:00
case 14 : /* dpi-desync */
2021-03-04 16:30:38 +05:00
{
2021-04-07 14:13:46 +05:00
char * mode = optarg , * mode2 , * mode3 ;
mode2 = mode ? strchr ( mode , ' , ' ) : NULL ;
2021-03-04 16:30:38 +05:00
if ( mode2 ) * mode2 + + = 0 ;
2021-04-07 14:13:46 +05:00
mode3 = mode2 ? strchr ( mode2 , ' , ' ) : NULL ;
if ( mode3 ) * mode3 + + = 0 ;
2021-03-04 16:30:38 +05:00
2021-04-07 14:13:46 +05:00
params . desync_mode0 = desync_mode_from_string ( mode ) ;
if ( desync_valid_zero_stage ( params . desync_mode0 ) )
{
mode = mode2 ;
mode2 = mode3 ;
2021-04-11 20:53:47 +05:00
mode3 = NULL ;
2021-04-07 14:13:46 +05:00
}
else
2021-04-11 20:53:47 +05:00
{
2021-04-07 14:13:46 +05:00
params . desync_mode0 = DESYNC_NONE ;
2021-04-11 20:53:47 +05:00
}
2021-04-07 14:13:46 +05:00
params . desync_mode = desync_mode_from_string ( mode ) ;
2021-03-04 16:30:38 +05:00
params . desync_mode2 = desync_mode_from_string ( mode2 ) ;
2021-04-07 14:13:46 +05:00
if ( params . desync_mode0 = = DESYNC_INVALID | | params . desync_mode = = DESYNC_INVALID | | params . desync_mode2 = = DESYNC_INVALID )
2021-03-04 16:30:38 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " invalid dpi-desync mode \n " ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
}
2021-04-11 20:53:47 +05:00
if ( mode3 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " invalid desync combo : %s+%s+%s \n " , mode , mode2 , mode3 ) ;
2021-04-11 20:53:47 +05:00
exit_clean ( 1 ) ;
}
2022-02-01 22:35:52 +05:00
if ( params . desync_mode2 & & ( desync_only_first_stage ( params . desync_mode ) | | ! ( desync_valid_first_stage ( params . desync_mode ) & & desync_valid_second_stage ( params . desync_mode2 ) ) ) )
2021-03-04 16:30:38 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " invalid desync combo : %s+%s \n " , mode , mode2 ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
}
2022-01-03 14:38:18 +05:00
# if defined(__OpenBSD__)
if ( params . desync_mode = = DESYNC_IPFRAG2 | | params . desync_mode2 = = DESYNC_IPFRAG2 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " OpenBSD has checksum issues with fragmented packets. ipfrag disabled. \n " ) ;
2022-01-03 14:38:18 +05:00
exit_clean ( 1 ) ;
}
# endif
2021-03-04 16:30:38 +05:00
}
break ;
2024-04-26 23:36:27 +05:00
# ifndef __CYGWIN__
2021-03-18 19:21:25 +05:00
case 15 : /* dpi-desync-fwmark/dpi-desync-sockarg */
2021-03-04 16:30:38 +05:00
# if defined(__linux__) || defined(SO_USER_COOKIE)
params . desync_fwmark = 0 ;
2021-12-27 18:51:30 +05:00
if ( sscanf ( optarg , " 0x%X " , & params . desync_fwmark ) < = 0 ) sscanf ( optarg , " %u " , & params . desync_fwmark ) ;
2021-03-04 16:30:38 +05:00
if ( ! params . desync_fwmark )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " fwmark/sockarg should be decimal or 0xHEX and should not be zero \n " ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
}
# else
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " fmwark/sockarg not supported in this OS \n " ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
# endif
break ;
2024-04-26 23:36:27 +05:00
# endif
2021-03-18 19:21:25 +05:00
case 16 : /* dpi-desync-ttl */
2021-03-04 16:30:38 +05:00
params . desync_ttl = ( uint8_t ) atoi ( optarg ) ;
break ;
2021-12-11 00:08:52 +05:00
case 17 : /* dpi-desync-ttl6 */
params . desync_ttl6 = ( uint8_t ) atoi ( optarg ) ;
break ;
2024-03-02 19:53:37 +05:00
case 18 : /* dpi-desync-autottl */
if ( ! parse_autottl ( optarg , & params . desync_autottl ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-autottl value error \n " ) ;
2024-03-02 19:53:37 +05:00
exit_clean ( 1 ) ;
}
break ;
case 19 : /* dpi-desync-autottl6 */
if ( ! parse_autottl ( optarg , & params . desync_autottl6 ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-autottl6 value error \n " ) ;
2024-03-02 19:53:37 +05:00
exit_clean ( 1 ) ;
}
break ;
case 20 : /* dpi-desync-fooling */
2021-03-04 16:30:38 +05:00
{
char * e , * p = optarg ;
while ( p )
{
e = strchr ( p , ' , ' ) ;
if ( e ) * e + + = 0 ;
if ( ! strcmp ( p , " md5sig " ) )
2022-01-01 22:22:04 +05:00
params . desync_fooling_mode | = FOOL_MD5SIG ;
2021-03-04 16:30:38 +05:00
else if ( ! strcmp ( p , " ts " ) )
2022-01-01 22:22:04 +05:00
params . desync_fooling_mode | = FOOL_TS ;
2021-03-04 16:30:38 +05:00
else if ( ! strcmp ( p , " badsum " ) )
{
# ifdef __OpenBSD__
2024-08-23 16:42:21 +05:00
DLOG_CONDUP ( " \n WARNING !!! OpenBSD may forcibly recompute tcp/udp checksums !!! In this case badsum fooling will not work. \n You should check tcp checksum correctness in tcpdump manually before using badsum. \n \n " ) ;
2021-03-04 16:30:38 +05:00
# endif
2022-01-01 22:22:04 +05:00
params . desync_fooling_mode | = FOOL_BADSUM ;
2021-03-04 16:30:38 +05:00
}
else if ( ! strcmp ( p , " badseq " ) )
2022-01-01 22:22:04 +05:00
params . desync_fooling_mode | = FOOL_BADSEQ ;
2024-03-02 19:53:37 +05:00
else if ( ! strcmp ( p , " datanoack " ) )
params . desync_fooling_mode | = FOOL_DATANOACK ;
2022-02-01 22:35:52 +05:00
else if ( ! strcmp ( p , " hopbyhop " ) )
params . desync_fooling_mode | = FOOL_HOPBYHOP ;
else if ( ! strcmp ( p , " hopbyhop2 " ) )
params . desync_fooling_mode | = FOOL_HOPBYHOP2 ;
2021-03-04 16:30:38 +05:00
else if ( strcmp ( p , " none " ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-fooling allowed values : none,md5sig,ts,badseq,badsum,datanoack,hopbyhop,hopbyhop2 \n " ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
}
p = e ;
}
}
break ;
2024-04-20 22:59:45 +05:00
case 21 : /* dpi-desync-repeats */
2022-03-27 12:40:09 +05:00
if ( sscanf ( optarg , " %u " , & params . desync_repeats ) < 1 | | ! params . desync_repeats | | params . desync_repeats > 20 )
2021-03-04 16:30:38 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-repeats must be within 1..20 \n " ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-04-20 22:59:45 +05:00
case 22 : /* dpi-desync-skip-nosni */
2021-03-04 16:30:38 +05:00
params . desync_skip_nosni = ! optarg | | atoi ( optarg ) ;
break ;
2024-04-20 22:59:45 +05:00
case 23 : /* dpi-desync-split-pos */
2024-06-18 19:39:06 +05:00
if ( sscanf ( optarg , " %u " , & params . desync_split_pos ) < 1 | | params . desync_split_pos < 1 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-split-pos is not valid \n " ) ;
2024-06-18 19:39:06 +05:00
exit_clean ( 1 ) ;
}
break ;
case 24 : /* dpi-desync-split-http-req */
if ( ! parse_httpreqpos ( optarg , & params . desync_split_http_req ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " Invalid argument for dpi-desync-split-http-req \n " ) ;
2024-06-18 19:39:06 +05:00
exit_clean ( 1 ) ;
}
break ;
case 25 : /* dpi-desync-split-tls */
if ( ! parse_tlspos ( optarg , & params . desync_split_tls ) )
2021-03-04 16:30:38 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " Invalid argument for dpi-desync-split-tls \n " ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 26 : /* dpi-desync-split-seqovl */
if ( sscanf ( optarg , " %u " , & params . desync_seqovl ) < 1 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-split-seqovl is not valid \n " ) ;
2024-06-24 18:51:06 +05:00
exit_clean ( 1 ) ;
}
break ;
case 27 : /* dpi-desync-split-seqovl-pattern */
{
char buf [ sizeof ( params . seqovl_pattern ) ] ;
size_t sz = sizeof ( buf ) ;
load_file_or_exit ( optarg , buf , & sz ) ;
fill_pattern ( params . seqovl_pattern , sizeof ( params . seqovl_pattern ) , buf , sz ) ;
}
break ;
case 28 : /* dpi-desync-ipfrag-pos-tcp */
2022-01-03 14:38:18 +05:00
if ( sscanf ( optarg , " %u " , & params . desync_ipfrag_pos_tcp ) < 1 | | params . desync_ipfrag_pos_tcp < 1 | | params . desync_ipfrag_pos_tcp > DPI_DESYNC_MAX_FAKE_LEN )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-ipfrag-pos-tcp must be within 1..%u range \n " , DPI_DESYNC_MAX_FAKE_LEN ) ;
2022-01-03 14:38:18 +05:00
exit_clean ( 1 ) ;
}
if ( params . desync_ipfrag_pos_tcp & 7 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-ipfrag-pos-tcp must be multiple of 8 \n " ) ;
2022-01-03 14:38:18 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 29 : /* dpi-desync-ipfrag-pos-udp */
2022-01-03 14:38:18 +05:00
if ( sscanf ( optarg , " %u " , & params . desync_ipfrag_pos_udp ) < 1 | | params . desync_ipfrag_pos_udp < 1 | | params . desync_ipfrag_pos_udp > DPI_DESYNC_MAX_FAKE_LEN )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-ipfrag-pos-udp must be within 1..%u range \n " , DPI_DESYNC_MAX_FAKE_LEN ) ;
2022-01-03 14:38:18 +05:00
exit_clean ( 1 ) ;
}
if ( params . desync_ipfrag_pos_udp & 7 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-ipfrag-pos-udp must be multiple of 8 \n " ) ;
2022-01-03 14:38:18 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 30 : /* dpi-desync-badseq-increments */
2021-12-27 18:51:30 +05:00
if ( ! parse_badseq_increment ( optarg , & params . desync_badseq_increment ) )
2021-12-26 19:11:21 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-badseq-increment should be signed decimal or signed 0xHEX \n " ) ;
2021-12-26 19:11:21 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 31 : /* dpi-desync-badack-increment */
2021-12-27 18:51:30 +05:00
if ( ! parse_badseq_increment ( optarg , & params . desync_badseq_ack_increment ) )
2021-12-26 19:11:21 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-badack-increment should be signed decimal or signed 0xHEX \n " ) ;
2021-12-26 19:11:21 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 32 : /* dpi-desync-any-protocol */
2021-03-04 16:30:38 +05:00
params . desync_any_proto = ! optarg | | atoi ( optarg ) ;
break ;
2024-06-24 18:51:06 +05:00
case 33 : /* dpi-desync-fake-http */
2021-03-04 16:30:38 +05:00
params . fake_http_size = sizeof ( params . fake_http ) ;
2022-01-01 22:22:04 +05:00
load_file_or_exit ( optarg , params . fake_http , & params . fake_http_size ) ;
2021-03-04 16:30:38 +05:00
break ;
2024-06-24 18:51:06 +05:00
case 34 : /* dpi-desync-fake-tls */
2021-03-04 16:30:38 +05:00
params . fake_tls_size = sizeof ( params . fake_tls ) ;
2022-01-01 22:22:04 +05:00
load_file_or_exit ( optarg , params . fake_tls , & params . fake_tls_size ) ;
2021-03-04 16:30:38 +05:00
break ;
2024-06-24 18:51:06 +05:00
case 35 : /* dpi-desync-fake-unknown */
2021-12-26 22:43:16 +05:00
params . fake_unknown_size = sizeof ( params . fake_unknown ) ;
2022-01-01 22:22:04 +05:00
load_file_or_exit ( optarg , params . fake_unknown , & params . fake_unknown_size ) ;
break ;
2024-06-24 18:51:06 +05:00
case 36 : /* dpi-desync-fake-syndata */
2024-03-19 15:50:20 +05:00
params . fake_syndata_size = sizeof ( params . fake_syndata ) ;
load_file_or_exit ( optarg , params . fake_syndata , & params . fake_syndata_size ) ;
break ;
2024-06-24 18:51:06 +05:00
case 37 : /* dpi-desync-fake-quic */
2022-03-20 22:46:39 +05:00
params . fake_quic_size = sizeof ( params . fake_quic ) ;
load_file_or_exit ( optarg , params . fake_quic , & params . fake_quic_size ) ;
break ;
2024-06-24 18:51:06 +05:00
case 38 : /* dpi-desync-fake-wireguard */
2023-08-12 11:56:19 +05:00
params . fake_wg_size = sizeof ( params . fake_wg ) ;
load_file_or_exit ( optarg , params . fake_wg , & params . fake_wg_size ) ;
break ;
2024-06-24 18:51:06 +05:00
case 39 : /* dpi-desync-fake-dht */
2023-09-07 21:03:37 +05:00
params . fake_dht_size = sizeof ( params . fake_dht ) ;
load_file_or_exit ( optarg , params . fake_dht , & params . fake_dht_size ) ;
break ;
2024-06-24 18:51:06 +05:00
case 40 : /* dpi-desync-fake-unknown-udp */
2022-01-01 22:22:04 +05:00
params . fake_unknown_udp_size = sizeof ( params . fake_unknown_udp ) ;
load_file_or_exit ( optarg , params . fake_unknown_udp , & params . fake_unknown_udp_size ) ;
2021-12-26 22:43:16 +05:00
break ;
2024-06-24 18:51:06 +05:00
case 41 : /* dpi-desync-udplen-increment */
2022-07-27 14:00:36 +05:00
if ( sscanf ( optarg , " %d " , & params . udplen_increment ) < 1 | | params . udplen_increment > 0x7FFF | | params . udplen_increment < - 0x8000 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " dpi-desync-udplen-increment must be integer within -32768..32767 range \n " ) ;
2022-07-27 14:00:36 +05:00
exit_clean ( 1 ) ;
}
2022-04-12 17:52:06 +05:00
break ;
2024-06-24 18:51:06 +05:00
case 42 : /* dpi-desync-udplen-pattern */
2023-09-07 15:41:25 +05:00
{
char buf [ sizeof ( params . udplen_pattern ) ] ;
size_t sz = sizeof ( buf ) ;
load_file_or_exit ( optarg , buf , & sz ) ;
fill_pattern ( params . udplen_pattern , sizeof ( params . udplen_pattern ) , buf , sz ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 43 : /* desync-cutoff */
2021-12-27 18:51:30 +05:00
if ( ! parse_cutoff ( optarg , & params . desync_cutoff , & params . desync_cutoff_mode ) )
2021-03-21 23:55:26 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " invalid desync-cutoff value \n " ) ;
2021-03-21 23:55:26 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 44 : /* desync-start */
2024-04-13 13:13:11 +05:00
if ( ! parse_cutoff ( optarg , & params . desync_start , & params . desync_start_mode ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " invalid desync-start value \n " ) ;
2024-04-13 13:13:11 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 45 : /* hostlist */
2022-07-26 21:15:28 +05:00
if ( ! strlist_add ( & params . hostlist_files , optarg ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " strlist_add failed \n " ) ;
2022-07-26 21:15:28 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 46 : /* hostlist-exclude */
2022-07-26 21:15:28 +05:00
if ( ! strlist_add ( & params . hostlist_exclude_files , optarg ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " strlist_add failed \n " ) ;
2021-03-04 16:30:38 +05:00
exit_clean ( 1 ) ;
2022-07-26 21:15:28 +05:00
}
2021-03-04 16:30:38 +05:00
break ;
2024-06-24 18:51:06 +05:00
case 47 : /* hostlist-auto */
2023-10-26 17:12:32 +05:00
if ( * params . hostlist_auto_filename )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " only one auto hostlist is supported \n " ) ;
2023-10-26 17:12:32 +05:00
exit_clean ( 1 ) ;
}
{
2024-08-23 16:42:21 +05:00
FILE * F = fopen ( optarg , " at " ) ;
2023-10-26 17:12:32 +05:00
if ( ! F )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " cannot create %s \n " , optarg ) ;
2023-10-26 17:12:32 +05:00
exit_clean ( 1 ) ;
}
bool bGzip = is_gzip ( F ) ;
fclose ( F ) ;
if ( bGzip )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " gzipped auto hostlists are not supported \n " ) ;
2023-10-26 17:12:32 +05:00
exit_clean ( 1 ) ;
}
2024-04-26 23:36:27 +05:00
# ifndef __CYGWIN__
2023-10-26 17:12:32 +05:00
if ( params . droproot & & chown ( optarg , params . uid , - 1 ) )
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " could not chown %s. auto hostlist file may not be writable after privilege drop \n " , optarg ) ;
2024-04-26 23:36:27 +05:00
# endif
2023-10-26 17:12:32 +05:00
}
if ( ! strlist_add ( & params . hostlist_files , optarg ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " strlist_add failed \n " ) ;
2023-10-26 17:12:32 +05:00
exit_clean ( 1 ) ;
}
strncpy ( params . hostlist_auto_filename , optarg , sizeof ( params . hostlist_auto_filename ) ) ;
params . hostlist_auto_filename [ sizeof ( params . hostlist_auto_filename ) - 1 ] = ' \0 ' ;
break ;
2024-06-24 18:51:06 +05:00
case 48 : /* hostlist-auto-fail-threshold */
2023-10-26 17:12:32 +05:00
params . hostlist_auto_fail_threshold = ( uint8_t ) atoi ( optarg ) ;
if ( params . hostlist_auto_fail_threshold < 1 | | params . hostlist_auto_fail_threshold > 20 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " auto hostlist fail threshold must be within 1..20 \n " ) ;
2023-10-26 17:12:32 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 49 : /* hostlist-auto-fail-time */
2023-10-26 17:12:32 +05:00
params . hostlist_auto_fail_time = ( uint8_t ) atoi ( optarg ) ;
if ( params . hostlist_auto_fail_time < 1 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " auto hostlist fail time is not valid \n " ) ;
2023-10-26 17:12:32 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 50 : /* hostlist-auto-retrans-threshold */
2023-10-26 17:12:32 +05:00
params . hostlist_auto_retrans_threshold = ( uint8_t ) atoi ( optarg ) ;
if ( params . hostlist_auto_retrans_threshold < 2 | | params . hostlist_auto_retrans_threshold > 10 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " auto hostlist fail threshold must be within 2..10 \n " ) ;
2023-10-26 17:12:32 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 51 : /* hostlist-auto-debug */
2023-11-09 14:08:09 +05:00
{
FILE * F = fopen ( optarg , " a+t " ) ;
if ( ! F )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " cannot create %s \n " , optarg ) ;
2023-11-09 14:08:09 +05:00
exit_clean ( 1 ) ;
}
fclose ( F ) ;
2024-04-26 23:36:27 +05:00
# ifndef __CYGWIN__
2023-11-09 14:08:09 +05:00
if ( params . droproot & & chown ( optarg , params . uid , - 1 ) )
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " could not chown %s. auto hostlist debug log may not be writable after privilege drop \n " , optarg ) ;
2024-04-26 23:36:27 +05:00
# endif
2023-11-09 14:08:09 +05:00
strncpy ( params . hostlist_auto_debuglog , optarg , sizeof ( params . hostlist_auto_debuglog ) ) ;
params . hostlist_auto_debuglog [ sizeof ( params . hostlist_auto_debuglog ) - 1 ] = ' \0 ' ;
}
break ;
2022-05-15 17:54:35 +05:00
# ifdef __linux__
2024-06-24 18:51:06 +05:00
case 52 : /* bind-fix4 */
2022-05-15 17:54:35 +05:00
params . bind_fix4 = true ;
break ;
2024-06-24 18:51:06 +05:00
case 53 : /* bind-fix6 */
2022-05-15 17:54:35 +05:00
params . bind_fix6 = true ;
break ;
2024-04-26 23:36:27 +05:00
# elif defined(__CYGWIN__)
2024-06-24 18:51:06 +05:00
case 52 : /* wf-iface */
2024-04-27 14:51:49 +05:00
if ( ! sscanf ( optarg , " %u.%u " , & IfIdx , & SubIfIdx ) )
2024-04-27 11:35:58 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " bad value for --wf-iface \n " ) ;
2024-04-27 11:35:58 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 53 : /* wf-l3 */
2024-04-26 23:36:27 +05:00
if ( ! wf_make_l3 ( optarg , & wf_ipv4 , & wf_ipv6 ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " bad value for --wf-l3 \n " ) ;
2024-04-26 23:36:27 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 54 : /* wf-tcp */
2024-06-22 23:38:28 +05:00
hash_wf_tcp = hash_jen ( optarg , strlen ( optarg ) ) ;
2024-04-26 23:36:27 +05:00
if ( ! wf_make_pf ( optarg , " tcp " , " SrcPort " , wf_pf_tcp_src , sizeof ( wf_pf_tcp_src ) ) | |
! wf_make_pf ( optarg , " tcp " , " DstPort " , wf_pf_tcp_dst , sizeof ( wf_pf_tcp_dst ) ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " bad value for --wf-tcp \n " ) ;
2024-04-26 23:36:27 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 55 : /* wf-udp */
2024-06-22 23:38:28 +05:00
hash_wf_udp = hash_jen ( optarg , strlen ( optarg ) ) ;
2024-04-26 23:36:27 +05:00
if ( ! wf_make_pf ( optarg , " udp " , " SrcPort " , wf_pf_udp_src , sizeof ( wf_pf_udp_src ) ) | |
! wf_make_pf ( optarg , " udp " , " DstPort " , wf_pf_udp_dst , sizeof ( wf_pf_udp_dst ) ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " bad value for --wf-udp \n " ) ;
2024-04-26 23:36:27 +05:00
exit_clean ( 1 ) ;
}
break ;
2024-06-24 18:51:06 +05:00
case 56 : /* wf-raw */
2024-06-22 23:38:28 +05:00
hash_wf_raw = hash_jen ( optarg , strlen ( optarg ) ) ;
2024-04-26 23:36:27 +05:00
if ( optarg [ 0 ] = = ' @ ' )
{
size_t sz = sizeof ( windivert_filter ) - 1 ;
load_file_or_exit ( optarg + 1 , windivert_filter , & sz ) ;
windivert_filter [ sz ] = 0 ;
}
else
{
strncpy ( windivert_filter , optarg , sizeof ( windivert_filter ) ) ;
windivert_filter [ sizeof ( windivert_filter ) - 1 ] = ' \0 ' ;
}
break ;
2024-06-24 18:51:06 +05:00
case 57 : /* wf-save */
2024-04-26 23:36:27 +05:00
strncpy ( wf_save_file , optarg , sizeof ( wf_save_file ) ) ;
wf_save_file [ sizeof ( wf_save_file ) - 1 ] = ' \0 ' ;
break ;
2024-06-24 18:51:06 +05:00
case 58 : /* ssid-filter */
2024-06-22 23:38:28 +05:00
hash_ssid_filter = hash_jen ( optarg , strlen ( optarg ) ) ;
2024-06-19 21:46:16 +05:00
{
char * e , * p = optarg ;
while ( p )
{
e = strchr ( p , ' , ' ) ;
if ( e ) * e + + = 0 ;
if ( * p & & ! strlist_add ( & params . ssid_filter , p ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " strlist_add failed \n " ) ;
2024-06-19 21:46:16 +05:00
exit_clean ( 1 ) ;
}
p = e ;
}
}
break ;
2024-07-12 17:13:18 +05:00
case 59 : /* nlm-filter */
hash_nlm_filter = hash_jen ( optarg , strlen ( optarg ) ) ;
{
char * e , * p = optarg ;
while ( p )
{
e = strchr ( p , ' , ' ) ;
if ( e ) * e + + = 0 ;
if ( * p & & ! strlist_add ( & params . nlm_filter , p ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " strlist_add failed \n " ) ;
2024-07-12 17:13:18 +05:00
exit_clean ( 1 ) ;
}
p = e ;
}
}
break ;
case 60 : /* nlm-list */
if ( ! nlm_list ( optarg & & ! strcmp ( optarg , " all " ) ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " could not get list of NLM networks \n " ) ;
2024-07-12 17:13:18 +05:00
exit_clean ( 1 ) ;
}
exit_clean ( 0 ) ;
2024-06-19 21:46:16 +05:00
2022-05-15 17:54:35 +05:00
# endif
2021-03-04 16:30:38 +05:00
}
}
2024-04-17 11:29:10 +05:00
# ifdef __linux__
if ( params . qnum < 0 )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " Need queue number (--qnum) \n " ) ;
2024-04-17 11:29:10 +05:00
exit_clean ( 1 ) ;
}
# elif defined(BSD)
if ( ! params . port )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " Need divert port (--port) \n " ) ;
2024-04-17 11:29:10 +05:00
exit_clean ( 1 ) ;
}
2024-04-26 23:36:27 +05:00
# elif defined(__CYGWIN__)
if ( ! * windivert_filter )
{
if ( ! * wf_pf_tcp_src & & ! * wf_pf_udp_src )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " windivert filter : must specify port filter \n " ) ;
2024-04-26 23:36:27 +05:00
exit_clean ( 1 ) ;
}
2024-04-27 11:35:58 +05:00
if ( ! wf_make_filter ( windivert_filter , sizeof ( windivert_filter ) , IfIdx , SubIfIdx , wf_ipv4 , wf_ipv6 , wf_pf_tcp_src , wf_pf_tcp_dst , wf_pf_udp_src , wf_pf_udp_dst ) )
2024-04-26 23:36:27 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " windivert filter : could not make filter \n " ) ;
2024-04-26 23:36:27 +05:00
exit_clean ( 1 ) ;
}
}
2024-08-23 16:42:21 +05:00
DLOG ( " windivert filter size: %zu \n windivert filter: \n %s \n " , strlen ( windivert_filter ) , windivert_filter ) ;
2024-04-26 23:36:27 +05:00
if ( * wf_save_file )
{
if ( save_file ( wf_save_file , windivert_filter , strlen ( windivert_filter ) ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " windivert filter: raw filter saved to %s \n " , wf_save_file ) ;
2024-04-26 23:36:27 +05:00
exit_clean ( 0 ) ;
}
else
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " windivert filter: could not save raw filter to %s \n " , wf_save_file ) ;
2024-04-30 17:35:20 +05:00
exit_clean ( 1 ) ;
2024-04-26 23:36:27 +05:00
}
}
2024-06-22 22:59:26 +05:00
HANDLE hMutexArg ;
{
char mutex_name [ 128 ] ;
2024-07-12 17:13:18 +05:00
snprintf ( mutex_name , sizeof ( mutex_name ) , " Global \\ winws_arg_%u_%u_%u_%u_%u_%u_%u_%u_%u " , hash_wf_tcp , hash_wf_udp , hash_wf_raw , hash_ssid_filter , hash_nlm_filter , IfIdx , SubIfIdx , wf_ipv4 , wf_ipv6 ) ;
2024-06-22 22:59:26 +05:00
hMutexArg = CreateMutexA ( NULL , TRUE , mutex_name ) ;
if ( hMutexArg & & GetLastError ( ) = = ERROR_ALREADY_EXISTS )
{
2024-06-22 23:12:55 +05:00
CloseHandle ( hMutexArg ) ; hMutexArg = NULL ;
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " A copy of winws is already running with the same filter \n " ) ;
2024-06-22 22:59:26 +05:00
goto exiterr ;
}
}
2024-04-17 11:29:10 +05:00
# endif
2021-12-11 00:08:52 +05:00
// not specified - use desync_ttl value instead
if ( params . desync_ttl6 = = 0xFF ) params . desync_ttl6 = params . desync_ttl ;
2024-03-02 19:53:37 +05:00
if ( ! AUTOTTL_ENABLED ( params . desync_autottl6 ) ) params . desync_autottl6 = params . desync_autottl ;
if ( AUTOTTL_ENABLED ( params . desync_autottl ) )
2024-08-23 16:42:21 +05:00
DLOG ( " autottl ipv4 %u:%u-%u \n " , params . desync_autottl . delta , params . desync_autottl . min , params . desync_autottl . max ) ;
2024-03-02 19:53:37 +05:00
if ( AUTOTTL_ENABLED ( params . desync_autottl6 ) )
2024-08-23 16:42:21 +05:00
DLOG ( " autottl ipv6 %u:%u-%u \n " , params . desync_autottl6 . delta , params . desync_autottl6 . min , params . desync_autottl6 . max ) ;
2024-06-18 19:39:06 +05:00
if ( params . desync_split_tls = = tlspos_none & & params . desync_split_pos ) params . desync_split_tls = tlspos_pos ;
if ( params . desync_split_http_req = = httpreqpos_none & & params . desync_split_pos ) params . desync_split_http_req = httpreqpos_pos ;
2024-03-02 19:53:37 +05:00
2024-03-24 00:57:05 +05:00
if ( ! LoadIncludeHostLists ( ) )
2022-07-26 21:15:28 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " Include hostlist load failed \n " ) ;
2022-07-26 21:15:28 +05:00
exit_clean ( 1 ) ;
}
2024-04-26 23:36:27 +05:00
if ( * params . hostlist_auto_filename )
NonEmptyHostlist ( & params . hostlist ) ;
2024-03-24 00:57:05 +05:00
if ( ! LoadExcludeHostLists ( ) )
2022-07-26 21:15:28 +05:00
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " Exclude hostlist load failed \n " ) ;
2022-07-26 21:15:28 +05:00
exit_clean ( 1 ) ;
}
2021-03-04 16:30:38 +05:00
if ( daemon ) daemonize ( ) ;
if ( * pidfile & & ! writepid ( pidfile ) )
{
2024-08-23 16:42:21 +05:00
DLOG_ERR ( " could not write pidfile \n " ) ;
2021-03-04 16:30:38 +05:00
goto exiterr ;
}
2024-08-23 16:42:21 +05:00
DLOG ( " initializing conntrack with timeouts tcp=%u:%u:%u udp=%u \n " , params . ctrack_t_syn , params . ctrack_t_est , params . ctrack_t_fin , params . ctrack_t_udp ) ;
2022-01-01 22:22:04 +05:00
ConntrackPoolInit ( & params . conntrack , 10 , params . ctrack_t_syn , params . ctrack_t_est , params . ctrack_t_fin , params . ctrack_t_udp ) ;
2021-03-18 19:21:25 +05:00
2021-03-04 16:30:38 +05:00
# ifdef __linux__
result = nfq_main ( ) ;
# elif defined(BSD)
result = dvt_main ( ) ;
2024-04-26 23:36:27 +05:00
# elif defined(__CYGWIN__)
result = win_main ( windivert_filter ) ;
2021-03-04 16:30:38 +05:00
# else
# error unsupported OS
# endif
ex :
rawsend_cleanup ( ) ;
cleanup_params ( ) ;
2024-06-22 22:59:26 +05:00
# ifdef __CYGWIN__
if ( hMutexArg )
{
ReleaseMutex ( hMutexArg ) ;
CloseHandle ( hMutexArg ) ;
}
# endif
2021-03-04 16:30:38 +05:00
return result ;
exiterr :
result = 1 ;
goto ex ;
}