byedpi/main.c

713 lines
18 KiB
C
Raw Normal View History

#define _GNU_SOURCE
2023-06-03 19:52:10 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
2023-06-12 04:00:33 +00:00
#include <limits.h>
2023-06-03 19:52:10 +00:00
#include <params.h>
#include <proxy.h>
#include <packets.h>
2024-02-18 20:20:52 +00:00
#include <error.h>
2023-06-03 19:52:10 +00:00
2024-02-18 20:20:52 +00:00
#ifndef _WIN32
#include <arpa/inet.h>
#include <unistd.h>
#include <netdb.h>
#include <fcntl.h>
2024-03-19 23:23:56 +00:00
#include <netinet/tcp.h>
2024-02-18 20:20:52 +00:00
#else
#include <ws2tcpip.h>
#define close(fd) closesocket(fd)
#endif
#define VERSION 7
2024-03-08 00:37:02 +00:00
#define MPOOL_INC 16
2023-06-03 19:52:10 +00:00
char oob_char[1] = "a";
char ip_option[1] = "\0";
2023-06-03 19:52:10 +00:00
struct packet fake_tls = {
sizeof(tls_data), tls_data
},
fake_http = {
sizeof(http_data), http_data
2024-02-29 17:07:59 +00:00
},
oob_data = {
sizeof(oob_char), oob_char
2023-06-03 19:52:10 +00:00
};
struct params params = {
.sfdelay = 3,
2024-03-20 22:01:36 +00:00
.wait_send = 1,
2023-06-03 19:52:10 +00:00
2024-03-13 19:18:16 +00:00
.cache_ttl = 100800,
2023-06-03 19:52:10 +00:00
.ipv6 = 1,
.resolve = 1,
.max_open = 512,
.bfsize = 16384,
.baddr = {
.sin6_family = AF_INET6
},
2023-06-03 19:52:10 +00:00
.debug = 0
};
const char help_text[] = {
" -i, --ip, <ip> Listening IP, default 0.0.0.0\n"
" -p, --port <num> Listening port, default 1080\n"
" -c, --max-conn <count> Connection count limit, default 512\n"
" -N, --no-domain Deny domain resolving\n"
" -I --conn-ip <ip> Connection binded IP, default ::\n"
2023-10-16 12:44:24 +00:00
" -b, --buf-size <size> Buffer size, default 16384\n"
" -x, --debug <level> Print logs, 0, 1 or 2\n"
2023-10-16 12:44:24 +00:00
" -g, --def-ttl <num> TTL for all outgoing connections\n"
// desync options
" -K, --desync-known Desync only HTTP and TLS with SNI\n"
2024-03-19 23:23:56 +00:00
#ifdef TCP_FASTOPEN_CONNECT
" -F, --tfo Enable TCP Fast Open\n"
#endif
2024-03-08 00:37:02 +00:00
" -A, --auto Try desync params after this option\n"
2024-03-08 18:33:25 +00:00
" -u, --cache-ttl <sec> Lifetime of cached desync params for IP\n"
2024-03-13 19:18:16 +00:00
#ifdef TIMEOUT_SUPPORT
2024-03-16 21:19:14 +00:00
" -T, --timeout <sec> Timeout waiting for response, after which trigger auto\n"
2024-03-13 19:18:16 +00:00
#endif
2024-03-16 21:19:14 +00:00
" -P, --tr <s:e:f|:str> Auto trigger data in first response\n"
2024-03-06 17:37:59 +00:00
" -s, --split <n[+s]> Split packet at n\n"
" +s - add SNI offset\n"
" +h - add HTTP Host offset\n"
2024-03-26 14:15:34 +00:00
" -d, --disorder <n[+s]> Split and send reverse order\n"
" -o, --oob <n[+s]> Split and send as OOB data\n"
#ifdef FAKE_SUPPORT
" -f, --fake <n[+s]> Split and send fake packet\n"
" -t, --ttl <num> TTL of fake packets, default 8\n"
" -k, --ip-opt [f|:str] IP options of fake packets\n"
2024-03-26 14:15:34 +00:00
#ifdef __linux__
" -S, --md5sig Add MD5 Signature option for fake packets\n"
#endif
2024-03-16 21:19:14 +00:00
" -l, --fake-tls <f|:str>\n"
" -j, --fake-http <f|:str> Set custom fake packet\n"
2024-03-06 17:37:59 +00:00
" -n, --tls-sni <str> Change SNI in fake ClientHello\n"
#endif
2024-03-16 21:19:14 +00:00
" -e, --oob-data <f|:str> Set custom OOB data, filename or :string\n"
2024-03-06 17:37:59 +00:00
" -M, --mod-http <h,d,r> Modify HTTP: hcsmix,dcsmix,rmspace\n"
2024-03-16 21:19:14 +00:00
" -r, --tlsrec <n[+s]> Make TLS record at position\n"
2024-03-28 17:42:43 +00:00
#ifdef __linux__
" -m, --mss <size> Set MSS for outgoing connections\n"
#endif
};
const struct option options[] = {
{"no-domain", 0, 0, 'N'},
{"no-ipv6", 0, 0, 'X'},
{"help", 0, 0, 'h'},
{"version", 0, 0, 'v'},
{"ip", 1, 0, 'i'},
{"port", 1, 0, 'p'},
{"conn-ip", 1, 0, 'I'},
2023-10-16 12:44:24 +00:00
{"buf-size", 1, 0, 'b'},
{"max-conn", 1, 0, 'c'},
{"debug", 1, 0, 'x'},
{"desync-known ", 0, 0, 'K'},
2024-03-19 23:23:56 +00:00
#ifdef TCP_FASTOPEN_CONNECT
{"tfo ", 0, 0, 'F'},
#endif
2024-03-08 00:37:02 +00:00
{"auto", 0, 0, 'A'},
2024-03-08 18:33:25 +00:00
{"cache-ttl", 1, 0, 'u'},
2024-03-13 19:18:16 +00:00
#ifdef TIMEOUT_SUPPORT
{"timeout", 1, 0, 'T'},
#endif
2024-03-16 21:19:14 +00:00
{"tr", 1, 0, 'P'},
{"split", 1, 0, 's'},
{"disorder", 1, 0, 'd'},
{"oob", 1, 0, 'o'},
#ifdef FAKE_SUPPORT
{"fake", 1, 0, 'f'},
{"ttl", 1, 0, 't'},
{"ip-opt", 2, 0, 'k'},
2024-03-26 14:15:34 +00:00
#ifdef __linux__
{"md5sig", 0, 0, 'S'},
#endif
{"fake-tls", 1, 0, 'l'},
{"fake-http", 1, 0, 'j'},
{"tls-sni", 1, 0, 'n'},
#endif
2024-02-29 17:07:59 +00:00
{"oob-data", 1, 0, 'e'},
{"mod-http", 1, 0, 'M'},
2024-02-18 14:19:11 +00:00
{"tlsrec", 1, 0, 'r'},
2023-10-16 12:44:24 +00:00
{"def-ttl", 1, 0, 'g'},
2024-03-28 17:42:43 +00:00
#ifdef __linux__
{"mss", 1, 0, 'm'},
#endif
{"delay", 1, 0, 'w'}, //
2024-03-26 14:15:34 +00:00
{"not-wait-send", 0, 0, 'W'}, //
{0}
};
2024-03-16 21:19:14 +00:00
char *parse_cform(const char *str, ssize_t *size)
2023-06-03 19:52:10 +00:00
{
2024-03-16 21:19:14 +00:00
ssize_t len = strlen(str);
char *d = malloc(len);
if (!d) {
return 0;
}
static char esca[] = {
'r','\r','n','\n','t','\t','\\','\\',
'f','\f','b','\b','v','\v','a','\a', 0
};
ssize_t i = 0, p = 0;
for (; p < len; ++p && ++i) {
if (str[p] != '\\') {
d[i] = str[p];
continue;
}
p++;
char *e = esca;
for (; *e; e += 2) {
if (*e == str[p]) {
d[i] = *(e + 1);
break;
}
}
if (*e) {
continue;
}
int n = 0;
if (sscanf(&str[p], "x%2hhx%n", &d[i], &n) == 1
|| sscanf(&str[p], "%3hho%n", &d[i], &n) == 1) {
p += (n - 1);
continue;
}
i--; p--;
}
*size = i;
char *m = realloc(d, i);
return m ? m : d;
}
char *ftob(const char *str, ssize_t *sl)
{
if (*str == ':') {
return parse_cform(str + 1, sl);
}
2023-06-03 19:52:10 +00:00
char *buffer = 0;
2023-07-07 20:07:27 +00:00
long size;
2023-06-03 19:52:10 +00:00
2024-03-16 21:19:14 +00:00
FILE *file = fopen(str, "rb");
2023-06-03 19:52:10 +00:00
if (!file)
return 0;
do {
if (fseek(file, 0, SEEK_END)) {
break;
}
2023-07-07 20:07:27 +00:00
size = ftell(file);
2023-06-03 19:52:10 +00:00
if (!size || fseek(file, 0, SEEK_SET)) {
break;
}
if (!(buffer = malloc(size))) {
break;
}
if (fread(buffer, 1, size, file) != size) {
free(buffer);
buffer = 0;
}
} while (0);
2023-07-07 20:07:27 +00:00
if (buffer) {
*sl = size;
}
2023-06-03 19:52:10 +00:00
fclose(file);
return buffer;
}
2023-10-16 12:44:24 +00:00
2024-03-16 21:19:14 +00:00
int get_addr(const char *str, struct sockaddr_ina *addr)
{
struct addrinfo hints = {0}, *res = 0;
hints.ai_socktype = SOCK_STREAM;
hints.ai_family = AF_UNSPEC;
hints.ai_flags = AI_NUMERICHOST;
2024-03-13 19:18:16 +00:00
if (getaddrinfo(str, 0, &hints, &res) || !res) {
return -1;
}
if (res->ai_addr->sa_family == AF_INET6)
addr->in6 = *(struct sockaddr_in6 *)res->ai_addr;
else
addr->in = *(struct sockaddr_in *)res->ai_addr;
freeaddrinfo(res);
2024-03-11 15:38:39 +00:00
return 0;
}
2023-06-03 19:52:10 +00:00
2023-10-16 12:44:24 +00:00
int get_default_ttl()
{
int orig_ttl = -1, fd;
socklen_t tsize = sizeof(orig_ttl);
if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
2024-02-18 20:20:52 +00:00
uniperror("socket");
2023-10-16 12:44:24 +00:00
return -1;
}
if (getsockopt(fd, IPPROTO_IP, IP_TTL,
(char *)&orig_ttl, &tsize) < 0) {
2024-02-18 20:20:52 +00:00
uniperror("getsockopt IP_TTL");
2023-10-16 12:44:24 +00:00
}
close(fd);
return orig_ttl;
}
int parse_offset(struct part *part, const char *str)
{
char *end = 0;
long val = strtol(str, &end, 0);
if (*end == '+') switch (*(end + 1)) {
case 's':
part->flag = OFFSET_SNI;
2024-03-04 12:30:23 +00:00
break;
case 'h':
part->flag = OFFSET_HOST;
2024-03-04 12:30:23 +00:00
break;
default:
return -1;
2024-03-04 12:30:23 +00:00
}
else if (*end) {
return -1;
}
part->pos = val;
return 0;
2024-03-04 12:30:23 +00:00
}
2024-03-16 21:19:14 +00:00
void *add(void **root, int *n, size_t ss)
2024-03-08 00:37:02 +00:00
{
2024-03-16 21:19:14 +00:00
void *p = realloc(*root, ss * (*n + 1));
2024-03-08 00:37:02 +00:00
if (!p) {
uniperror("realloc");
return 0;
}
*root = p;
2024-03-16 21:19:14 +00:00
p = ((*root) + ((*n) * ss));
memset(p, 0, ss);
2024-03-08 00:37:02 +00:00
*n = *n + 1;
return p;
}
void clear_params(void)
{
#ifdef _WIN32
WSACleanup();
#endif
if (params.mempool) {
mem_destroy(params.mempool);
params.mempool = 0;
}
if (params.dp) {
for (int i = 0; i < params.dp_count; i++) {
struct desync_params s = params.dp[i];
if (s.ip_options != ip_option) {
free(s.ip_options);
s.ip_options = ip_option;
}
2024-03-26 20:47:01 +00:00
if (s.parts != 0) {
free(s.parts);
s.parts = 0;
}
2024-03-27 22:52:52 +00:00
if (s.spos) {
for (int x = 0; x < s.spos_n; x++) {
struct spos p = s.spos[x];
if (p.data != 0) {
free(p.data);
p.data = 0;;
}
}
free(s.spos);
s.spos = 0;
}
}
free(params.dp);
params.dp = 0;
}
if (fake_tls.data != tls_data) {
free(fake_tls.data);
fake_tls.data = tls_data;
}
if (fake_http.data != http_data) {
free(fake_http.data);
fake_http.data = http_data;
}
if (oob_data.data != oob_char) {
free(oob_data.data);
oob_data.data = oob_char;
}
}
2023-06-03 19:52:10 +00:00
int main(int argc, char **argv)
{
2024-02-18 20:20:52 +00:00
#ifdef _WIN32
WSADATA wsa;
if (WSAStartup(MAKEWORD(2, 2), &wsa)) {
uniperror("WSAStartup");
return -1;
}
#endif
2023-06-03 19:52:10 +00:00
struct sockaddr_ina s = {
.in = {
.sin_family = AF_INET,
.sin_port = htons(1080)
}},
b = { .in6 = params.baddr };
int optc = sizeof(options)/sizeof(*options);
for (int i = 0, e = optc; i < e; i++)
optc += options[i].has_arg;
char opt[optc + 1];
opt[optc] = 0;
for (int i = 0, o = 0; o < optc; i++, o++) {
opt[o] = options[i].val;
for (int c = options[i].has_arg; c; c--) {
o++;
opt[o] = ':';
}
}
2023-06-03 19:52:10 +00:00
int rez;
int invalid = 0;
long val = 0;
char *end = 0;
2024-03-11 15:38:39 +00:00
uint16_t port = htons(1080);
2023-06-03 19:52:10 +00:00
2024-03-16 21:19:14 +00:00
struct desync_params *dp = add((void *)&params.dp,
&params.dp_count, sizeof(struct desync_params));
2024-03-08 00:37:02 +00:00
if (!dp) {
clear_params();
2024-03-08 00:37:02 +00:00
return -1;
}
while (!invalid && (rez = getopt_long_only(
argc, argv, opt, options, 0)) != -1) {
2023-06-03 19:52:10 +00:00
switch (rez) {
case 'N':
params.resolve = 0;
break;
case 'X':
params.ipv6 = 0;
break;
case 'h':
printf(help_text);
clear_params();
2023-06-03 19:52:10 +00:00
return 0;
case 'v':
printf("%d\n", VERSION);
clear_params();
2023-06-03 19:52:10 +00:00
return 0;
case 'i':
if (get_addr(optarg, &s) < 0)
invalid = 1;
break;
2023-06-03 19:52:10 +00:00
case 'p':
val = strtol(optarg, &end, 0);
if (val <= 0 || val > 0xffff || *end)
invalid = 1;
else
port = htons(val);
break;
case 'I':
if (get_addr(optarg, &b) < 0)
invalid = 1;
else
params.baddr = b.in6;
break;
case 'b':
2023-06-03 19:52:10 +00:00
val = strtol(optarg, &end, 0);
if (val <= 0 || val > INT_MAX/4 || *end)
invalid = 1;
else
params.bfsize = val;
break;
case 'c':
val = strtol(optarg, &end, 0);
if (val <= 0 || val >= (0xffff/2) || *end)
invalid = 1;
else
params.max_open = val;
break;
case 'x': //
params.debug = strtol(optarg, 0, 0);
if (params.debug < 0)
invalid = 1;
break;
// desync options
case 'K':
params.de_known = 1;
break;
2024-03-19 23:23:56 +00:00
case 'F':
params.tfo = 1;
break;
2024-03-08 00:37:02 +00:00
case 'A':
2024-03-16 21:19:14 +00:00
dp = add((void *)&params.dp, &params.dp_count,
sizeof(struct desync_params));
2024-03-08 00:37:02 +00:00
if (!dp) {
clear_params();
2024-03-08 00:37:02 +00:00
return -1;
}
break;
2024-03-08 18:33:25 +00:00
case 'u':
val = strtol(optarg, &end, 0);
if (val <= 0 || *end)
invalid = 1;
else
params.cache_ttl = val;
break;
2024-03-13 19:18:16 +00:00
case 'T':;
#ifdef __linux__
float f = strtof(optarg, &end);
val = (long)(f * 1000);
#else
val = strtol(optarg, &end, 0);
#endif
if (val <= 0 || val > UINT_MAX || *end)
invalid = 1;
else
params.timeout = val;
break;
2024-03-08 18:33:25 +00:00
2024-03-16 21:19:14 +00:00
case 'P':;
2024-03-27 22:52:52 +00:00
struct spos *spos = add((void *)&dp->spos,
&dp->spos_n, sizeof(struct spos));
2024-03-16 21:19:14 +00:00
if (!spos) {
clear_params();
2024-03-16 21:19:14 +00:00
return -1;
}
sscanf(optarg, "%zi:%zi:%zn", &spos->start, &spos->end, &val);
if (val == 0 || !optarg[val]) {
invalid = 1;
}
else {
spos->data = ftob(&optarg[val], &spos->size);
if (!spos->data) {
uniperror("read/parse");
invalid = 1;
2024-03-16 21:19:14 +00:00
}
}
break;
case 's':
case 'd':
case 'o':
case 'f':
;
2024-03-16 21:19:14 +00:00
struct part *part = add((void *)&dp->parts,
&dp->parts_n, sizeof(struct part));
if (!part) {
clear_params();
return -1;
}
if (parse_offset(part, optarg)) {
invalid = 1;
break;
}
switch (rez) {
case 's': part->m = DESYNC_SPLIT;
2023-06-03 19:52:10 +00:00
break;
case 'd': part->m = DESYNC_DISORDER;
2024-02-29 17:07:59 +00:00
break;
case 'o': part->m = DESYNC_OOB;
2023-06-03 19:52:10 +00:00
break;
case 'f': part->m = DESYNC_FAKE;
}
2023-06-03 19:52:10 +00:00
break;
case 't':
val = strtol(optarg, &end, 0);
if (val <= 0 || val > 255 || *end)
invalid = 1;
else
2024-03-08 00:37:02 +00:00
dp->ttl = val;
2023-06-03 19:52:10 +00:00
break;
2024-03-20 22:01:36 +00:00
case 'k':
if (optarg)
dp->ip_options = ftob(optarg, &dp->ip_options_len);
else {
dp->ip_options = ip_option;
dp->ip_options_len = sizeof(ip_option);
}
2024-03-20 22:01:36 +00:00
if (!dp->ip_options) {
uniperror("read/parse");
invalid = 1;
2024-03-20 22:01:36 +00:00
}
break;
2024-03-26 14:15:34 +00:00
case 'S':
dp->md5sig = 1;
break;
2023-06-03 19:52:10 +00:00
case 'n':
if (change_tls_sni(optarg, fake_tls.data, fake_tls.size)) {
fprintf(stderr, "error chsni\n");
clear_params();
2023-06-03 19:52:10 +00:00
return -1;
}
printf("sni: %s\n", optarg);
break;
case 'l':
2023-07-07 20:07:27 +00:00
fake_tls.data = ftob(optarg, &fake_tls.size);
2023-06-03 19:52:10 +00:00
if (!fake_tls.data) {
2024-03-16 21:19:14 +00:00
uniperror("read/parse");
invalid = 1;
2023-06-03 19:52:10 +00:00
}
break;
case 'j':
2023-07-07 20:07:27 +00:00
fake_http.data = ftob(optarg, &fake_http.size);
2023-06-03 19:52:10 +00:00
if (!fake_http.data) {
2024-03-16 21:19:14 +00:00
uniperror("read/parse");
invalid = 1;
2023-06-03 19:52:10 +00:00
}
break;
2024-02-29 17:07:59 +00:00
case 'e':
oob_data.data = ftob(optarg, &oob_data.size);
if (!oob_data.data) {
2024-03-16 21:19:14 +00:00
uniperror("read/parse");
invalid = 1;
2024-02-29 17:07:59 +00:00
}
break;
2023-06-03 19:52:10 +00:00
case 'M':
end = optarg;
while (end && !invalid) {
switch (*end) {
case 'r':
2024-03-08 00:37:02 +00:00
dp->mod_http |= MH_SPACE;
2023-06-03 19:52:10 +00:00
break;
case 'h':
2024-03-08 00:37:02 +00:00
dp->mod_http |= MH_HMIX;
2023-06-03 19:52:10 +00:00
break;
case 'd':
2024-03-08 00:37:02 +00:00
dp->mod_http |= MH_DMIX;
2023-06-03 19:52:10 +00:00
break;
default:
invalid = 1;
continue;
}
end = strchr(end, ',');
if (end) end++;
}
break;
2024-02-18 14:19:11 +00:00
case 'r':
2024-03-16 21:19:14 +00:00
part = add((void *)&dp->tlsrec,
&dp->tlsrec_n, sizeof(struct part));
2024-03-04 12:30:23 +00:00
if (!part) {
clear_params();
2024-03-04 12:30:23 +00:00
return -1;
2024-02-18 14:19:11 +00:00
}
if (parse_offset(part, optarg)
|| part->pos > 0xffff) {
invalid = 1;
break;
}
2024-02-18 14:19:11 +00:00
break;
2024-03-28 17:42:43 +00:00
case 'm':
val = strtol(optarg, &end, 0);
if (val < 88 || val > 32767 || *end)
invalid = 1;
else {
dp->mss = val;
}
break;
2023-10-16 12:44:24 +00:00
case 'g':
2023-06-03 19:52:10 +00:00
val = strtol(optarg, &end, 0);
if (val <= 0 || val > 255 || *end)
invalid = 1;
2023-10-16 12:44:24 +00:00
else {
2023-06-03 19:52:10 +00:00
params.def_ttl = val;
2023-10-16 12:44:24 +00:00
params.custom_ttl = 1;
}
2023-06-03 19:52:10 +00:00
break;
2024-03-26 14:15:34 +00:00
case 'w': //
2024-03-01 15:00:25 +00:00
params.sfdelay = strtol(optarg, &end, 0);
if (params.sfdelay < 0 || optarg == end
|| params.sfdelay >= 1000 || *end)
2023-06-03 19:52:10 +00:00
invalid = 1;
break;
2024-03-20 22:01:36 +00:00
case 'W':
params.wait_send = 0;
break;
2023-06-03 19:52:10 +00:00
case 0:
break;
case '?':
clear_params();
2023-06-03 19:52:10 +00:00
return -1;
default:
printf("?: %c\n", rez);
clear_params();
2023-06-03 19:52:10 +00:00
return -1;
}
}
if (invalid) {
fprintf(stderr, "invalid value: -%c %s\n", rez, optarg);
clear_params();
2023-06-03 19:52:10 +00:00
return -1;
}
s.in.sin_port = port;
b.in.sin_port = 0;
if (b.sa.sa_family != AF_INET6) {
params.ipv6 = 0;
}
if (!params.def_ttl) {
2023-10-16 12:44:24 +00:00
if ((params.def_ttl = get_default_ttl()) < 1) {
clear_params();
2023-06-03 19:52:10 +00:00
return -1;
}
}
2024-03-08 00:37:02 +00:00
params.mempool = mem_pool(MPOOL_INC);
if (!params.mempool) {
uniperror("mem_pool");
clear_params();
2024-03-08 00:37:02 +00:00
return -1;
}
2024-02-27 15:34:02 +00:00
int status = run(&s);
clear_params();
2024-02-18 20:20:52 +00:00
return status;
}