mirror of
https://github.com/rofl0r/proxychains-ng.git
synced 2024-10-31 17:18:47 +00:00
Add support for round robin mode.
This commit is contained in:
parent
5c4c166802
commit
f603e50cb3
57
src/core.c
57
src/core.c
@ -43,6 +43,7 @@
|
|||||||
extern int tcp_read_time_out;
|
extern int tcp_read_time_out;
|
||||||
extern int tcp_connect_time_out;
|
extern int tcp_connect_time_out;
|
||||||
extern int proxychains_quiet_mode;
|
extern int proxychains_quiet_mode;
|
||||||
|
extern unsigned int proxychains_proxy_offset;
|
||||||
extern unsigned int remote_dns_subnet;
|
extern unsigned int remote_dns_subnet;
|
||||||
|
|
||||||
static int poll_retry(struct pollfd *fds, nfds_t nfsd, int timeout) {
|
static int poll_retry(struct pollfd *fds, nfds_t nfsd, int timeout) {
|
||||||
@ -267,8 +268,10 @@ static int tunnel_to(int sock, ip_type ip, unsigned short port, proxy_type pt, c
|
|||||||
}
|
}
|
||||||
|
|
||||||
// if not ok (200) or response greather than BUFF_SIZE return BLOCKED;
|
// if not ok (200) or response greather than BUFF_SIZE return BLOCKED;
|
||||||
if(len == BUFF_SIZE || !(buff[9] == '2' && buff[10] == '0' && buff[11] == '0'))
|
if(len == BUFF_SIZE || !(buff[9] == '2' && buff[10] == '0' && buff[11] == '0')) {
|
||||||
|
PDEBUG("HTTP proxy blocked: buff=\"%s\"\n", buff);
|
||||||
return BLOCKED;
|
return BLOCKED;
|
||||||
|
}
|
||||||
|
|
||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
@ -427,6 +430,7 @@ static int tunnel_to(int sock, ip_type ip, unsigned short port, proxy_type pt, c
|
|||||||
#define DT "Dynamic chain"
|
#define DT "Dynamic chain"
|
||||||
#define ST "Strict chain"
|
#define ST "Strict chain"
|
||||||
#define RT "Random chain"
|
#define RT "Random chain"
|
||||||
|
#define RRT "Round Robin chain"
|
||||||
|
|
||||||
static int start_chain(int *fd, proxy_data * pd, char *begin_mark) {
|
static int start_chain(int *fd, proxy_data * pd, char *begin_mark) {
|
||||||
struct sockaddr_in addr;
|
struct sockaddr_in addr;
|
||||||
@ -554,15 +558,20 @@ int connect_proxy_chain(int sock, ip_type target_ip,
|
|||||||
proxy_data p4;
|
proxy_data p4;
|
||||||
proxy_data *p1, *p2, *p3;
|
proxy_data *p1, *p2, *p3;
|
||||||
int ns = -1;
|
int ns = -1;
|
||||||
|
int rc = -1;
|
||||||
unsigned int offset = 0;
|
unsigned int offset = 0;
|
||||||
unsigned int alive_count = 0;
|
unsigned int alive_count = 0;
|
||||||
unsigned int curr_len = 0;
|
unsigned int curr_len = 0;
|
||||||
|
unsigned int curr_pos = 0;
|
||||||
|
unsigned int looped = 0; // went back to start of list in RR mode
|
||||||
|
|
||||||
p3 = &p4;
|
p3 = &p4;
|
||||||
|
|
||||||
PFUNC();
|
PFUNC();
|
||||||
|
|
||||||
again:
|
again:
|
||||||
|
rc = -1;
|
||||||
|
DUMP_PROXY_CHAIN(pd, proxy_count);
|
||||||
|
|
||||||
switch (ct) {
|
switch (ct) {
|
||||||
case DYNAMIC_TYPE:
|
case DYNAMIC_TYPE:
|
||||||
@ -589,6 +598,52 @@ int connect_proxy_chain(int sock, ip_type target_ip,
|
|||||||
goto error;
|
goto error;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case ROUND_ROBIN_TYPE:
|
||||||
|
alive_count = calc_alive(pd, proxy_count);
|
||||||
|
curr_pos = offset = proxychains_proxy_offset;
|
||||||
|
if(alive_count < max_chain)
|
||||||
|
goto error_more;
|
||||||
|
PDEBUG("1:rr_offset = %d, curr_pos = %d\n", offset, curr_pos);
|
||||||
|
/* Check from current RR offset til end */
|
||||||
|
for (;rc != SUCCESS;) {
|
||||||
|
if (!(p1 = select_proxy(FIFOLY, pd, proxy_count, &offset))) {
|
||||||
|
/* We've reached the end of the list, go to the start */
|
||||||
|
offset = 0;
|
||||||
|
looped++;
|
||||||
|
continue;
|
||||||
|
} else if (looped && rc > 0 && offset >= curr_pos) {
|
||||||
|
PDEBUG("GOTO MORE PROXIES 0\n");
|
||||||
|
/* We've gone back to the start and now past our starting position */
|
||||||
|
proxychains_proxy_offset = 0;
|
||||||
|
goto error_more;
|
||||||
|
}
|
||||||
|
PDEBUG("2:rr_offset = %d\n", offset);
|
||||||
|
rc=start_chain(&ns, p1, RRT);
|
||||||
|
}
|
||||||
|
/* Create rest of chain using RR */
|
||||||
|
for(curr_len = 1; curr_len < max_chain;) {
|
||||||
|
PDEBUG("3:rr_offset = %d, curr_len = %d, max_chain = %d\n", offset, curr_len, max_chain);
|
||||||
|
p2 = select_proxy(FIFOLY, pd, proxy_count, &offset);
|
||||||
|
if(!p2) {
|
||||||
|
/* Try from the beginning to where we started */
|
||||||
|
offset = 0;
|
||||||
|
continue;
|
||||||
|
} else if(SUCCESS != chain_step(ns, p1, p2)) {
|
||||||
|
PDEBUG("GOTO AGAIN 1\n");
|
||||||
|
goto again;
|
||||||
|
} else
|
||||||
|
p1 = p2;
|
||||||
|
curr_len++;
|
||||||
|
}
|
||||||
|
//proxychains_write_log(TP);
|
||||||
|
p3->ip = target_ip;
|
||||||
|
p3->port = target_port;
|
||||||
|
proxychains_proxy_offset = offset+1;
|
||||||
|
PDEBUG("pd_offset = %d, curr_len = %d\n", proxychains_proxy_offset, curr_len);
|
||||||
|
if(SUCCESS != chain_step(ns, p1, p3))
|
||||||
|
goto error;
|
||||||
|
break;
|
||||||
|
|
||||||
case STRICT_TYPE:
|
case STRICT_TYPE:
|
||||||
alive_count = calc_alive(pd, proxy_count);
|
alive_count = calc_alive(pd, proxy_count);
|
||||||
offset = 0;
|
offset = 0;
|
||||||
|
@ -47,8 +47,9 @@ typedef enum {
|
|||||||
typedef enum {
|
typedef enum {
|
||||||
DYNAMIC_TYPE,
|
DYNAMIC_TYPE,
|
||||||
STRICT_TYPE,
|
STRICT_TYPE,
|
||||||
RANDOM_TYPE}
|
RANDOM_TYPE,
|
||||||
chain_type;
|
ROUND_ROBIN_TYPE
|
||||||
|
} chain_type;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
PLAY_STATE,
|
PLAY_STATE,
|
||||||
|
@ -58,6 +58,7 @@ int tcp_connect_time_out;
|
|||||||
chain_type proxychains_ct;
|
chain_type proxychains_ct;
|
||||||
proxy_data proxychains_pd[MAX_CHAIN];
|
proxy_data proxychains_pd[MAX_CHAIN];
|
||||||
unsigned int proxychains_proxy_count = 0;
|
unsigned int proxychains_proxy_count = 0;
|
||||||
|
unsigned int proxychains_proxy_offset = 0;
|
||||||
int proxychains_got_chain_data = 0;
|
int proxychains_got_chain_data = 0;
|
||||||
unsigned int proxychains_max_chain = 1;
|
unsigned int proxychains_max_chain = 1;
|
||||||
int proxychains_quiet_mode = 0;
|
int proxychains_quiet_mode = 0;
|
||||||
@ -105,6 +106,7 @@ static void do_init(void) {
|
|||||||
|
|
||||||
/* read the config file */
|
/* read the config file */
|
||||||
get_chain_data(proxychains_pd, &proxychains_proxy_count, &proxychains_ct);
|
get_chain_data(proxychains_pd, &proxychains_proxy_count, &proxychains_ct);
|
||||||
|
DUMP_PROXY_CHAIN(proxychains_pd, proxychains_proxy_count);
|
||||||
|
|
||||||
proxychains_write_log(LOG_PREFIX "DLL init\n");
|
proxychains_write_log(LOG_PREFIX "DLL init\n");
|
||||||
|
|
||||||
@ -220,6 +222,8 @@ static void get_chain_data(proxy_data * pd, unsigned int *proxy_count, chain_typ
|
|||||||
*ct = STRICT_TYPE;
|
*ct = STRICT_TYPE;
|
||||||
} else if(strstr(buff, "dynamic_chain")) {
|
} else if(strstr(buff, "dynamic_chain")) {
|
||||||
*ct = DYNAMIC_TYPE;
|
*ct = DYNAMIC_TYPE;
|
||||||
|
} else if(strstr(buff, "round_robin_chain")) {
|
||||||
|
*ct = ROUND_ROBIN_TYPE;
|
||||||
} else if(strstr(buff, "tcp_read_time_out")) {
|
} else if(strstr(buff, "tcp_read_time_out")) {
|
||||||
sscanf(buff, "%s %d", user, &tcp_read_time_out);
|
sscanf(buff, "%s %d", user, &tcp_read_time_out);
|
||||||
} else if(strstr(buff, "tcp_connect_time_out")) {
|
} else if(strstr(buff, "tcp_connect_time_out")) {
|
||||||
|
Loading…
Reference in New Issue
Block a user