@ -740,6 +740,8 @@ static bool parse_l7_list(char *opt, uint32_t *l7)
* l7 | = L7_PROTO_DHT ;
else if ( ! strcmp ( p , " discord " ) )
* l7 | = L7_PROTO_DISCORD ;
else if ( ! strcmp ( p , " stun " ) )
* l7 | = L7_PROTO_STUN ;
else if ( ! strcmp ( p , " unknown " ) )
* l7 | = L7_PROTO_UNKNOWN ;
else return false ;
@ -1383,6 +1385,7 @@ static void exithelp(void)
" --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-discord=<filename>|0xHEX \t \t ; file containing Discord protocol fake payload (Voice IP Discovery) \n "
" --dpi-desync-fake-stun=<filename>|0xHEX \t \t ; file containing STUN protocol fake payload \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 "
@ -1608,43 +1611,44 @@ int main(int argc, char **argv)
{ " dpi-desync-fake-wireguard " , required_argument , 0 , 0 } , // optidx=44
{ " dpi-desync-fake-dht " , required_argument , 0 , 0 } , // optidx=45
{ " dpi-desync-fake-discord " , required_argument , 0 , 0 } , // optidx=46
{ " dpi-desync-fake-unknown-udp " , required_argument , 0 , 0 } , // optidx=47
{ " dpi-desync-udplen-increment " , required_argument , 0 , 0 } , // optidx=48
{ " dpi-desync-udplen-pattern " , required_argument , 0 , 0 } , // optidx=49
{ " dpi-desync-cutoff " , required_argument , 0 , 0 } , // optidx=50
{ " dpi-desync-start " , required_argument , 0 , 0 } , // optidx=51
{ " hostlist " , required_argument , 0 , 0 } , // optidx=52
{ " hostlist-domains " , required_argument , 0 , 0 } , // optidx=53
{ " hostlist-exclude " , required_argument , 0 , 0 } , // optidx=54
{ " hostlist-exclude-domains " , required_argument , 0 , 0 } , // optidx=55
{ " hostlist-auto " , required_argument , 0 , 0 } , // optidx=56
{ " hostlist-auto-fail-threshold " , required_argument , 0 , 0 } , // optidx=57
{ " hostlist-auto-fail-time " , required_argument , 0 , 0 } , // optidx=58
{ " hostlist-auto-retrans-threshold " , required_argument , 0 , 0 } , // optidx=59
{ " hostlist-auto-debug " , required_argument , 0 , 0 } , // optidx=60
{ " new " , no_argument , 0 , 0 } , // optidx=61
{ " skip " , no_argument , 0 , 0 } , // optidx=62
{ " filter-l3 " , required_argument , 0 , 0 } , // optidx=63
{ " filter-tcp " , required_argument , 0 , 0 } , // optidx=64
{ " filter-udp " , required_argument , 0 , 0 } , // optidx=65
{ " filter-l7 " , required_argument , 0 , 0 } , // optidx=66
{ " ipset " , required_argument , 0 , 0 } , // optidx=67
{ " ipset-ip " , required_argument , 0 , 0 } , // optidx=68
{ " ipset-exclude " , required_argument , 0 , 0 } , // optidx=69
{ " ipset-exclude-ip " , required_argument , 0 , 0 } , // optidx=70
{ " dpi-desync-fake-stun " , required_argument , 0 , 0 } , // optidx=47
{ " dpi-desync-fake-unknown-udp " , required_argument , 0 , 0 } , // optidx=48
{ " dpi-desync-udplen-increment " , required_argument , 0 , 0 } , // optidx=49
{ " dpi-desync-udplen-pattern " , required_argument , 0 , 0 } , // optidx=50
{ " dpi-desync-cutoff " , required_argument , 0 , 0 } , // optidx=51
{ " dpi-desync-start " , required_argument , 0 , 0 } , // optidx=52
{ " hostlist " , required_argument , 0 , 0 } , // optidx=53
{ " hostlist-domains " , required_argument , 0 , 0 } , // optidx=54
{ " hostlist-exclude " , required_argument , 0 , 0 } , // optidx=55
{ " hostlist-exclude-domains " , required_argument , 0 , 0 } , // optidx=56
{ " hostlist-auto " , required_argument , 0 , 0 } , // optidx=57
{ " hostlist-auto-fail-threshold " , required_argument , 0 , 0 } , // optidx=58
{ " hostlist-auto-fail-time " , required_argument , 0 , 0 } , // optidx=59
{ " hostlist-auto-retrans-threshold " , required_argument , 0 , 0 } , // optidx=60
{ " hostlist-auto-debug " , required_argument , 0 , 0 } , // optidx=61
{ " new " , no_argument , 0 , 0 } , // optidx=62
{ " skip " , no_argument , 0 , 0 } , // optidx=63
{ " filter-l3 " , required_argument , 0 , 0 } , // optidx=64
{ " filter-tcp " , required_argument , 0 , 0 } , // optidx=65
{ " filter-udp " , required_argument , 0 , 0 } , // optidx=66
{ " filter-l7 " , required_argument , 0 , 0 } , // optidx=67
{ " ipset " , required_argument , 0 , 0 } , // optidx=68
{ " ipset-ip " , required_argument , 0 , 0 } , // optidx=69
{ " ipset-exclude " , required_argument , 0 , 0 } , // optidx=70
{ " ipset-exclude-ip " , required_argument , 0 , 0 } , // optidx=71
# ifdef __linux__
{ " bind-fix4 " , no_argument , 0 , 0 } , // optidx=71
{ " bind-fix6 " , no_argument , 0 , 0 } , // optidx=72
{ " bind-fix4 " , no_argument , 0 , 0 } , // optidx=72
{ " bind-fix6 " , no_argument , 0 , 0 } , // optidx=73
# elif defined(__CYGWIN__)
{ " wf-iface " , required_argument , 0 , 0 } , // optidx=71
{ " wf-l3 " , required_argument , 0 , 0 } , // optidx=72
{ " wf-tcp " , required_argument , 0 , 0 } , // optidx=73
{ " wf-udp " , required_argument , 0 , 0 } , // optidx=74
{ " wf-raw " , required_argument , 0 , 0 } , // optidx=75
{ " wf-save " , required_argument , 0 , 0 } , // optidx=76
{ " ssid-filter " , required_argument , 0 , 0 } , // optidx=77
{ " nlm-filter " , required_argument , 0 , 0 } , // optidx=78
{ " nlm-list " , optional_argument , 0 , 0 } , // optidx=79
{ " wf-iface " , required_argument , 0 , 0 } , // optidx=72
{ " wf-l3 " , required_argument , 0 , 0 } , // optidx=73
{ " wf-tcp " , required_argument , 0 , 0 } , // optidx=74
{ " wf-udp " , required_argument , 0 , 0 } , // optidx=75
{ " wf-raw " , required_argument , 0 , 0 } , // optidx=76
{ " wf-save " , required_argument , 0 , 0 } , // optidx=77
{ " ssid-filter " , required_argument , 0 , 0 } , // optidx=78
{ " nlm-filter " , required_argument , 0 , 0 } , // optidx=79
{ " nlm-list " , optional_argument , 0 , 0 } , // optidx=80
# endif
{ NULL , 0 , NULL , 0 }
} ;
@ -2076,17 +2080,20 @@ int main(int argc, char **argv)
case 46 : /* dpi-desync-fake-discord */
load_blob_to_collection ( optarg , & dp - > fake_discord , FAKE_MAX_UDP , 0 ) ;
break ;
case 47 : /* dpi-desync-fake-unknown-udp */
case 47 : /* dpi-desync-fake-stun */
load_blob_to_collection ( optarg , & dp - > fake_stun , FAKE_MAX_UDP , 0 ) ;
break ;
case 48 : /* dpi-desync-fake-unknown-udp */
load_blob_to_collection ( optarg , & dp - > fake_unknown_udp , FAKE_MAX_UDP , 0 ) ;
break ;
case 48 : /* dpi-desync-udplen-increment */
case 49 : /* dpi-desync-udplen-increment */
if ( sscanf ( optarg , " %d " , & dp - > udplen_increment ) < 1 | | dp - > udplen_increment > 0x7FFF | | dp - > udplen_increment < - 0x8000 )
{
DLOG_ERR ( " dpi-desync-udplen-increment must be integer within -32768..32767 range \n " ) ;
exit_clean ( 1 ) ;
}
break ;
case 49 : /* dpi-desync-udplen-pattern */
case 50 : /* dpi-desync-udplen-pattern */
{
char buf [ sizeof ( dp - > udplen_pattern ) ] ;
size_t sz = sizeof ( buf ) ;
@ -2094,21 +2101,21 @@ int main(int argc, char **argv)
fill_pattern ( dp - > udplen_pattern , sizeof ( dp - > udplen_pattern ) , buf , sz ) ;
}
break ;
case 50 : /* desync-cutoff */
case 51 : /* desync-cutoff */
if ( ! parse_cutoff ( optarg , & dp - > desync_cutoff , & dp - > desync_cutoff_mode ) )
{
DLOG_ERR ( " invalid desync-cutoff value \n " ) ;
exit_clean ( 1 ) ;
}
break ;
case 51 : /* desync-start */
case 52 : /* desync-start */
if ( ! parse_cutoff ( optarg , & dp - > desync_start , & dp - > desync_start_mode ) )
{
DLOG_ERR ( " invalid desync-start value \n " ) ;
exit_clean ( 1 ) ;
}
break ;
case 52 : /* hostlist */
case 53 : /* hostlist */
if ( bSkip ) break ;
if ( ! RegisterHostlist ( dp , false , optarg ) )
{
@ -2116,7 +2123,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 53 : /* hostlist-domains */
case 54 : /* hostlist-domains */
if ( bSkip ) break ;
if ( ! anon_hl & & ! ( anon_hl = RegisterHostlist ( dp , false , NULL ) ) )
{
@ -2129,7 +2136,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 54 : /* hostlist-exclude */
case 55 : /* hostlist-exclude */
if ( bSkip ) break ;
if ( ! RegisterHostlist ( dp , true , optarg ) )
{
@ -2137,7 +2144,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 55 : /* hostlist-exclude-domains */
case 56 : /* hostlist-exclude-domains */
if ( bSkip ) break ;
if ( ! anon_hl_exclude & & ! ( anon_hl_exclude = RegisterHostlist ( dp , true , NULL ) ) )
{
@ -2150,7 +2157,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 56 : /* hostlist-auto */
case 57 : /* hostlist-auto */
if ( bSkip ) break ;
if ( dp - > hostlist_auto )
{
@ -2178,7 +2185,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 57 : /* hostlist-auto-fail-threshold */
case 58 : /* hostlist-auto-fail-threshold */
dp - > hostlist_auto_fail_threshold = ( uint8_t ) atoi ( optarg ) ;
if ( dp - > hostlist_auto_fail_threshold < 1 | | dp - > hostlist_auto_fail_threshold > 20 )
{
@ -2186,7 +2193,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 58 : /* hostlist-auto-fail-time */
case 59 : /* hostlist-auto-fail-time */
dp - > hostlist_auto_fail_time = ( uint8_t ) atoi ( optarg ) ;
if ( dp - > hostlist_auto_fail_time < 1 )
{
@ -2194,7 +2201,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 59 : /* hostlist-auto-retrans-threshold */
case 60 : /* hostlist-auto-retrans-threshold */
dp - > hostlist_auto_retrans_threshold = ( uint8_t ) atoi ( optarg ) ;
if ( dp - > hostlist_auto_retrans_threshold < 2 | | dp - > hostlist_auto_retrans_threshold > 10 )
{
@ -2202,7 +2209,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 60 : /* hostlist-auto-debug */
case 61 : /* hostlist-auto-debug */
{
FILE * F = fopen ( optarg , " a+t " ) ;
if ( ! F )
@ -2216,7 +2223,7 @@ int main(int argc, char **argv)
}
break ;
case 61 : /* new */
case 62 : /* new */
if ( bSkip )
{
dp_clear ( dp ) ;
@ -2238,18 +2245,18 @@ int main(int argc, char **argv)
anon_hl = anon_hl_exclude = NULL ;
anon_ips = anon_ips_exclude = NULL ;
break ;
case 62 : /* skip */
case 63 : /* skip */
bSkip = true ;
break ;
case 63 : /* filter-l3 */
case 64 : /* filter-l3 */
if ( ! wf_make_l3 ( optarg , & dp - > filter_ipv4 , & dp - > filter_ipv6 ) )
{
DLOG_ERR ( " bad value for --filter-l3 \n " ) ;
exit_clean ( 1 ) ;
}
break ;
case 64 : /* filter-tcp */
case 65 : /* filter-tcp */
if ( ! parse_pf_list ( optarg , & dp - > pf_tcp ) )
{
DLOG_ERR ( " Invalid port filter : %s \n " , optarg ) ;
@ -2259,7 +2266,7 @@ int main(int argc, char **argv)
if ( ! port_filters_deny_if_empty ( & dp - > pf_udp ) )
exit_clean ( 1 ) ;
break ;
case 65 : /* filter-udp */
case 66 : /* filter-udp */
if ( ! parse_pf_list ( optarg , & dp - > pf_udp ) )
{
DLOG_ERR ( " Invalid port filter : %s \n " , optarg ) ;
@ -2269,14 +2276,14 @@ int main(int argc, char **argv)
if ( ! port_filters_deny_if_empty ( & dp - > pf_tcp ) )
exit_clean ( 1 ) ;
break ;
case 66 : /* filter-l7 */
case 67 : /* filter-l7 */
if ( ! parse_l7_list ( optarg , & dp - > filter_l7 ) )
{
DLOG_ERR ( " Invalid l7 filter : %s \n " , optarg ) ;
exit_clean ( 1 ) ;
}
break ;
case 67 : /* ipset */
case 68 : /* ipset */
if ( bSkip ) break ;
if ( ! RegisterIpset ( dp , false , optarg ) )
{
@ -2284,7 +2291,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 68 : /* ipset-ip */
case 69 : /* ipset-ip */
if ( bSkip ) break ;
if ( ! anon_ips & & ! ( anon_ips = RegisterIpset ( dp , false , NULL ) ) )
{
@ -2297,7 +2304,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 69 : /* ipset-exclude */
case 70 : /* ipset-exclude */
if ( bSkip ) break ;
if ( ! RegisterIpset ( dp , true , optarg ) )
{
@ -2305,7 +2312,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 70 : /* ipset-exclude-ip */
case 71 : /* ipset-exclude-ip */
if ( bSkip ) break ;
if ( ! anon_ips_exclude & & ! ( anon_ips_exclude = RegisterIpset ( dp , true , NULL ) ) )
{
@ -2321,28 +2328,28 @@ int main(int argc, char **argv)
# ifdef __linux__
case 71 : /* bind-fix4 */
case 72 : /* bind-fix4 */
params . bind_fix4 = true ;
break ;
case 72 : /* bind-fix6 */
case 73 : /* bind-fix6 */
params . bind_fix6 = true ;
break ;
# elif defined(__CYGWIN__)
case 71 : /* wf-iface */
case 72 : /* wf-iface */
if ( ! sscanf ( optarg , " %u.%u " , & IfIdx , & SubIfIdx ) )
{
DLOG_ERR ( " bad value for --wf-iface \n " ) ;
exit_clean ( 1 ) ;
}
break ;
case 72 : /* wf-l3 */
case 73 : /* wf-l3 */
if ( ! wf_make_l3 ( optarg , & wf_ipv4 , & wf_ipv6 ) )
{
DLOG_ERR ( " bad value for --wf-l3 \n " ) ;
exit_clean ( 1 ) ;
}
break ;
case 73 : /* wf-tcp */
case 74 : /* wf-tcp */
hash_wf_tcp = hash_jen ( optarg , strlen ( optarg ) ) ;
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 ) ) )
@ -2351,7 +2358,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 74 : /* wf-udp */
case 75 : /* wf-udp */
hash_wf_udp = hash_jen ( optarg , strlen ( optarg ) ) ;
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 ) ) )
@ -2360,7 +2367,7 @@ int main(int argc, char **argv)
exit_clean ( 1 ) ;
}
break ;
case 75 : /* wf-raw */
case 76 : /* wf-raw */
hash_wf_raw = hash_jen ( optarg , strlen ( optarg ) ) ;
if ( optarg [ 0 ] = = ' @ ' )
{
@ -2374,11 +2381,11 @@ int main(int argc, char **argv)
windivert_filter [ sizeof ( windivert_filter ) - 1 ] = ' \0 ' ;
}
break ;
case 76 : /* wf-save */
case 77 : /* wf-save */
strncpy ( wf_save_file , optarg , sizeof ( wf_save_file ) ) ;
wf_save_file [ sizeof ( wf_save_file ) - 1 ] = ' \0 ' ;
break ;
case 77 : /* ssid-filter */
case 78 : /* ssid-filter */
hash_ssid_filter = hash_jen ( optarg , strlen ( optarg ) ) ;
{
char * e , * p = optarg ;
@ -2396,7 +2403,7 @@ int main(int argc, char **argv)
}
}
break ;
case 78 : /* nlm-filter */
case 79 : /* nlm-filter */
hash_nlm_filter = hash_jen ( optarg , strlen ( optarg ) ) ;
{
char * e , * p = optarg ;
@ -2414,7 +2421,7 @@ int main(int argc, char **argv)
}
}
break ;
case 79 : /* nlm-list */
case 80 : /* nlm-list */
if ( ! nlm_list ( optarg & & ! strcmp ( optarg , " all " ) ) )
{
DLOG_ERR ( " could not get list of NLM networks \n " ) ;