2011-02-25 09:40:11 +00:00
|
|
|
/***************************************************************************
|
|
|
|
libproxychains.c - description
|
|
|
|
-------------------
|
|
|
|
begin : Tue May 14 2002
|
|
|
|
copyright : netcreature (C) 2002
|
|
|
|
email : netcreature@users.sourceforge.net
|
|
|
|
***************************************************************************/
|
|
|
|
/* GPL */
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
2011-09-03 23:45:16 +00:00
|
|
|
|
|
|
|
#undef _GNU_SOURCE
|
2011-02-25 09:40:11 +00:00
|
|
|
#define _GNU_SOURCE
|
2011-09-03 23:45:16 +00:00
|
|
|
|
2011-02-25 09:40:11 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2011-09-02 17:55:50 +00:00
|
|
|
#include <string.h>
|
2011-02-25 09:40:11 +00:00
|
|
|
#include <errno.h>
|
2012-11-07 15:49:14 +00:00
|
|
|
#include <assert.h>
|
2011-02-25 09:40:11 +00:00
|
|
|
#include <netdb.h>
|
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
2011-09-02 17:55:50 +00:00
|
|
|
#include <fcntl.h>
|
2011-02-25 09:40:11 +00:00
|
|
|
#include <dlfcn.h>
|
2012-11-07 20:28:09 +00:00
|
|
|
#include <pthread.h>
|
2011-02-25 09:40:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "core.h"
|
2011-09-10 20:32:27 +00:00
|
|
|
#include "common.h"
|
2011-02-25 09:40:11 +00:00
|
|
|
|
|
|
|
#define satosin(x) ((struct sockaddr_in *) &(x))
|
|
|
|
#define SOCKADDR(x) (satosin(x)->sin_addr.s_addr)
|
|
|
|
#define SOCKADDR_2(x) (satosin(x)->sin_addr)
|
|
|
|
#define SOCKPORT(x) (satosin(x)->sin_port)
|
|
|
|
#define SOCKFAMILY(x) (satosin(x)->sin_family)
|
2012-04-23 23:48:17 +00:00
|
|
|
#define MAX_CHAIN 512
|
2011-02-25 09:40:11 +00:00
|
|
|
|
2013-01-21 00:54:45 +00:00
|
|
|
close_t true_close;
|
2012-07-07 22:16:00 +00:00
|
|
|
connect_t true_connect;
|
|
|
|
gethostbyname_t true_gethostbyname;
|
|
|
|
getaddrinfo_t true_getaddrinfo;
|
|
|
|
freeaddrinfo_t true_freeaddrinfo;
|
|
|
|
getnameinfo_t true_getnameinfo;
|
|
|
|
gethostbyaddr_t true_gethostbyaddr;
|
|
|
|
|
2011-02-25 09:40:11 +00:00
|
|
|
int tcp_read_time_out;
|
|
|
|
int tcp_connect_time_out;
|
|
|
|
chain_type proxychains_ct;
|
|
|
|
proxy_data proxychains_pd[MAX_CHAIN];
|
2011-09-03 23:45:16 +00:00
|
|
|
unsigned int proxychains_proxy_count = 0;
|
2013-06-23 05:13:40 +00:00
|
|
|
unsigned int proxychains_proxy_offset = 0;
|
2011-02-25 09:40:11 +00:00
|
|
|
int proxychains_got_chain_data = 0;
|
2011-09-03 23:45:16 +00:00
|
|
|
unsigned int proxychains_max_chain = 1;
|
2011-02-25 09:40:11 +00:00
|
|
|
int proxychains_quiet_mode = 0;
|
|
|
|
int proxychains_resolver = 0;
|
2011-02-25 15:16:58 +00:00
|
|
|
localaddr_arg localnet_addr[MAX_LOCALNET];
|
|
|
|
size_t num_localnet_addr = 0;
|
2012-01-26 11:44:42 +00:00
|
|
|
unsigned int remote_dns_subnet = 224;
|
2011-02-25 15:16:58 +00:00
|
|
|
|
2012-04-23 20:14:04 +00:00
|
|
|
pthread_once_t init_once = PTHREAD_ONCE_INIT;
|
2012-11-07 20:28:09 +00:00
|
|
|
|
2012-04-23 20:14:04 +00:00
|
|
|
static int init_l = 0;
|
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
static inline void get_chain_data(proxy_data * pd, unsigned int *proxy_count, chain_type * ct);
|
2011-02-25 09:40:11 +00:00
|
|
|
|
2012-07-07 22:27:46 +00:00
|
|
|
static void* load_sym(char* symname, void* proxyfunc) {
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-07-07 22:27:46 +00:00
|
|
|
void *funcptr = dlsym(RTLD_NEXT, symname);
|
2012-04-23 17:51:14 +00:00
|
|
|
|
2012-07-07 22:27:46 +00:00
|
|
|
if(!funcptr) {
|
2012-04-23 17:51:14 +00:00
|
|
|
fprintf(stderr, "Cannot load symbol '%s' %s\n", symname, dlerror());
|
2011-02-25 09:40:11 +00:00
|
|
|
exit(1);
|
|
|
|
} else {
|
2012-07-08 02:09:50 +00:00
|
|
|
PDEBUG("loaded symbol '%s'" " real addr %p wrapped addr %p\n", symname, funcptr, proxyfunc);
|
2011-02-25 09:40:11 +00:00
|
|
|
}
|
2012-07-07 22:27:46 +00:00
|
|
|
if(funcptr == proxyfunc) {
|
2011-09-03 23:45:16 +00:00
|
|
|
PDEBUG("circular reference detected, aborting!\n");
|
|
|
|
abort();
|
|
|
|
}
|
2012-07-07 22:27:46 +00:00
|
|
|
return funcptr;
|
2012-04-23 17:51:14 +00:00
|
|
|
}
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-04-23 20:14:04 +00:00
|
|
|
#define INIT() init_lib_wrapper(__FUNCTION__)
|
|
|
|
|
2012-07-07 22:27:46 +00:00
|
|
|
#define SETUP_SYM(X) do { true_ ## X = load_sym( # X, X ); } while(0)
|
|
|
|
|
2012-11-07 15:49:14 +00:00
|
|
|
#include "shm.h"
|
|
|
|
#include "allocator_thread.h"
|
2012-11-08 00:18:19 +00:00
|
|
|
#include "stringdump.h"
|
2012-11-07 15:49:14 +00:00
|
|
|
|
2012-04-23 20:14:04 +00:00
|
|
|
static void do_init(void) {
|
2012-11-07 19:11:14 +00:00
|
|
|
srand(time(NULL));
|
2012-11-08 00:18:19 +00:00
|
|
|
dumpstring_init(); // global string garbage can
|
2012-11-07 20:28:09 +00:00
|
|
|
core_initialize();
|
2012-11-07 19:11:14 +00:00
|
|
|
at_init();
|
2012-11-07 15:49:14 +00:00
|
|
|
|
2012-04-23 17:51:14 +00:00
|
|
|
/* read the config file */
|
|
|
|
get_chain_data(proxychains_pd, &proxychains_proxy_count, &proxychains_ct);
|
2013-06-23 05:13:40 +00:00
|
|
|
DUMP_PROXY_CHAIN(proxychains_pd, proxychains_proxy_count);
|
2011-02-25 09:40:11 +00:00
|
|
|
|
2012-04-23 17:51:14 +00:00
|
|
|
proxychains_write_log(LOG_PREFIX "DLL init\n");
|
2012-07-07 22:27:46 +00:00
|
|
|
|
|
|
|
SETUP_SYM(connect);
|
|
|
|
SETUP_SYM(gethostbyname);
|
|
|
|
SETUP_SYM(getaddrinfo);
|
|
|
|
SETUP_SYM(freeaddrinfo);
|
|
|
|
SETUP_SYM(gethostbyaddr);
|
|
|
|
SETUP_SYM(getnameinfo);
|
2013-01-21 00:54:45 +00:00
|
|
|
SETUP_SYM(close);
|
2012-07-07 22:27:46 +00:00
|
|
|
|
2011-02-25 09:40:11 +00:00
|
|
|
init_l = 1;
|
|
|
|
}
|
|
|
|
|
2012-11-07 20:28:09 +00:00
|
|
|
#if 0
|
|
|
|
/* FIXME this is currently unused.
|
|
|
|
* it is not strictly needed.
|
|
|
|
* maybe let it be called by a gcc destructor, if that doesnt
|
|
|
|
* have negative consequences (e.g. when a child calles exit) */
|
|
|
|
static void unload(void) {
|
|
|
|
at_close();
|
|
|
|
core_unload();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-04-23 20:14:04 +00:00
|
|
|
static void init_lib_wrapper(const char* caller) {
|
|
|
|
#ifndef DEBUG
|
|
|
|
(void) caller;
|
|
|
|
#endif
|
|
|
|
if(!init_l) PDEBUG("%s called from %s\n", __FUNCTION__, caller);
|
|
|
|
pthread_once(&init_once, do_init);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we use gcc >= 3, we can instruct the dynamic loader
|
|
|
|
* to call init_lib at link time. otherwise it gets loaded
|
|
|
|
* lazily, which has the disadvantage that there's a potential
|
|
|
|
* race condition if 2 threads call it before init_l is set
|
|
|
|
* and PTHREAD support was disabled */
|
|
|
|
#if __GNUC__ > 2
|
|
|
|
__attribute__((constructor))
|
|
|
|
static void gcc_init(void) {
|
|
|
|
INIT();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* get configuration from config file */
|
|
|
|
static void get_chain_data(proxy_data * pd, unsigned int *proxy_count, chain_type * ct) {
|
2012-01-27 17:59:44 +00:00
|
|
|
int count = 0, port_n = 0, list = 0;
|
|
|
|
char buff[1024], type[1024], host[1024], user[1024];
|
2011-02-25 12:21:34 +00:00
|
|
|
char *env;
|
2011-03-22 14:04:52 +00:00
|
|
|
char local_in_addr_port[32];
|
|
|
|
char local_in_addr[32], local_in_port[32], local_netmask[32];
|
2012-07-08 21:32:50 +00:00
|
|
|
FILE *file = NULL;
|
2011-02-25 09:40:11 +00:00
|
|
|
|
|
|
|
if(proxychains_got_chain_data)
|
2012-01-27 17:59:44 +00:00
|
|
|
return;
|
2011-02-25 09:40:11 +00:00
|
|
|
|
|
|
|
//Some defaults
|
2012-01-27 17:59:44 +00:00
|
|
|
tcp_read_time_out = 4 * 1000;
|
|
|
|
tcp_connect_time_out = 10 * 1000;
|
2011-09-03 23:45:16 +00:00
|
|
|
*ct = DYNAMIC_TYPE;
|
2012-07-08 21:32:50 +00:00
|
|
|
|
2012-07-08 21:47:56 +00:00
|
|
|
env = get_config_path(getenv(PROXYCHAINS_CONF_FILE_ENV_VAR), buff, sizeof(buff));
|
2013-04-30 08:06:36 +00:00
|
|
|
if( ( file = fopen(env, "r") ) == NULL )
|
|
|
|
{
|
|
|
|
perror("couldnt read configuration file");
|
|
|
|
exit(1);
|
|
|
|
}
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-01-24 07:26:37 +00:00
|
|
|
env = getenv(PROXYCHAINS_QUIET_MODE_ENV_VAR);
|
2012-01-27 17:59:44 +00:00
|
|
|
if(env && *env == '1')
|
|
|
|
proxychains_quiet_mode = 1;
|
2011-02-25 09:40:11 +00:00
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
while(fgets(buff, sizeof(buff), file)) {
|
|
|
|
if(buff[0] != '\n' && buff[strspn(buff, " ")] != '#') {
|
2012-04-24 00:04:02 +00:00
|
|
|
/* proxylist has to come last */
|
2011-02-25 09:40:11 +00:00
|
|
|
if(list) {
|
2012-04-24 00:04:02 +00:00
|
|
|
if(count >= MAX_CHAIN)
|
|
|
|
break;
|
|
|
|
|
2011-09-02 17:55:50 +00:00
|
|
|
memset(&pd[count], 0, sizeof(proxy_data));
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2011-11-06 13:12:50 +00:00
|
|
|
pd[count].ps = PLAY_STATE;
|
|
|
|
port_n = 0;
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
sscanf(buff, "%s %s %d %s %s", type, host, &port_n, pd[count].user, pd[count].pass);
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2013-05-02 11:40:56 +00:00
|
|
|
in_addr_t host_ip = inet_addr(host);
|
|
|
|
if(host_ip == INADDR_NONE) {
|
|
|
|
fprintf(stderr, "proxy %s has invalid value or is not numeric\n", host);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
pd[count].ip.as_int = (uint32_t) host_ip;
|
2012-01-27 17:59:44 +00:00
|
|
|
pd[count].port = htons((unsigned short) port_n);
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
if(!strcmp(type, "http")) {
|
2011-11-06 13:12:50 +00:00
|
|
|
pd[count].pt = HTTP_TYPE;
|
2012-01-27 17:59:44 +00:00
|
|
|
} else if(!strcmp(type, "socks4")) {
|
2011-11-06 13:12:50 +00:00
|
|
|
pd[count].pt = SOCKS4_TYPE;
|
2012-01-27 17:59:44 +00:00
|
|
|
} else if(!strcmp(type, "socks5")) {
|
2011-11-06 13:12:50 +00:00
|
|
|
pd[count].pt = SOCKS5_TYPE;
|
2012-01-27 16:55:37 +00:00
|
|
|
} else
|
2011-11-06 13:12:50 +00:00
|
|
|
continue;
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
if(pd[count].ip.as_int && port_n && pd[count].ip.as_int != (uint32_t) - 1)
|
2012-04-24 00:04:02 +00:00
|
|
|
count++;
|
2012-01-27 17:59:44 +00:00
|
|
|
} else {
|
|
|
|
if(strstr(buff, "[ProxyList]")) {
|
|
|
|
list = 1;
|
2012-01-26 11:44:42 +00:00
|
|
|
} else if(strstr(buff, "random_chain")) {
|
2012-01-27 17:59:44 +00:00
|
|
|
*ct = RANDOM_TYPE;
|
2012-01-26 11:44:42 +00:00
|
|
|
} else if(strstr(buff, "strict_chain")) {
|
2012-01-27 17:59:44 +00:00
|
|
|
*ct = STRICT_TYPE;
|
2012-01-26 11:44:42 +00:00
|
|
|
} else if(strstr(buff, "dynamic_chain")) {
|
2012-01-27 17:59:44 +00:00
|
|
|
*ct = DYNAMIC_TYPE;
|
2013-06-23 05:13:40 +00:00
|
|
|
} else if(strstr(buff, "round_robin_chain")) {
|
|
|
|
*ct = ROUND_ROBIN_TYPE;
|
2012-01-27 17:59:44 +00:00
|
|
|
} else if(strstr(buff, "tcp_read_time_out")) {
|
2012-01-26 11:44:42 +00:00
|
|
|
sscanf(buff, "%s %d", user, &tcp_read_time_out);
|
2012-01-27 17:59:44 +00:00
|
|
|
} else if(strstr(buff, "tcp_connect_time_out")) {
|
2012-01-26 11:44:42 +00:00
|
|
|
sscanf(buff, "%s %d", user, &tcp_connect_time_out);
|
2012-01-27 17:59:44 +00:00
|
|
|
} else if(strstr(buff, "remote_dns_subnet")) {
|
2012-01-26 11:44:42 +00:00
|
|
|
sscanf(buff, "%s %d", user, &remote_dns_subnet);
|
|
|
|
if(remote_dns_subnet >= 256) {
|
2012-01-27 17:59:44 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"remote_dns_subnet: invalid value. requires a number between 0 and 255.\n");
|
2012-01-26 11:44:42 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} else if(strstr(buff, "localnet")) {
|
2012-01-27 17:59:44 +00:00
|
|
|
if(sscanf(buff, "%s %21[^/]/%15s", user, local_in_addr_port, local_netmask) < 3) {
|
2011-03-22 14:04:52 +00:00
|
|
|
fprintf(stderr, "localnet format error");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
/* clean previously used buffer */
|
2012-01-27 17:59:44 +00:00
|
|
|
memset(local_in_port, 0, sizeof(local_in_port) / sizeof(local_in_port[0]));
|
2011-03-22 14:04:52 +00:00
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
if(sscanf(local_in_addr_port, "%15[^:]:%5s", local_in_addr, local_in_port) < 2) {
|
2012-05-22 12:25:53 +00:00
|
|
|
PDEBUG("added localnet: netaddr=%s, netmask=%s\n",
|
2012-01-27 17:59:44 +00:00
|
|
|
local_in_addr, local_netmask);
|
2011-03-22 14:04:52 +00:00
|
|
|
} else {
|
2012-01-27 17:59:44 +00:00
|
|
|
PDEBUG("added localnet: netaddr=%s, port=%s, netmask=%s\n",
|
|
|
|
local_in_addr, local_in_port, local_netmask);
|
2011-03-22 14:04:52 +00:00
|
|
|
}
|
2012-01-27 17:59:44 +00:00
|
|
|
if(num_localnet_addr < MAX_LOCALNET) {
|
2011-02-25 15:16:58 +00:00
|
|
|
int error;
|
2012-01-27 17:59:44 +00:00
|
|
|
error =
|
|
|
|
inet_pton(AF_INET, local_in_addr,
|
|
|
|
&localnet_addr[num_localnet_addr].in_addr);
|
|
|
|
if(error <= 0) {
|
2011-02-25 15:16:58 +00:00
|
|
|
fprintf(stderr, "localnet address error\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2012-01-27 17:59:44 +00:00
|
|
|
error =
|
|
|
|
inet_pton(AF_INET, local_netmask,
|
|
|
|
&localnet_addr[num_localnet_addr].netmask);
|
|
|
|
if(error <= 0) {
|
2011-03-22 14:04:52 +00:00
|
|
|
fprintf(stderr, "localnet netmask error\n");
|
2011-02-25 15:16:58 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2012-01-27 17:59:44 +00:00
|
|
|
if(local_in_port[0]) {
|
|
|
|
localnet_addr[num_localnet_addr].port =
|
|
|
|
(short) atoi(local_in_port);
|
2011-03-22 14:04:52 +00:00
|
|
|
} else {
|
|
|
|
localnet_addr[num_localnet_addr].port = 0;
|
|
|
|
}
|
2011-02-25 15:16:58 +00:00
|
|
|
++num_localnet_addr;
|
2012-01-27 17:59:44 +00:00
|
|
|
} else {
|
2011-02-25 15:16:58 +00:00
|
|
|
fprintf(stderr, "# of localnet exceed %d.\n", MAX_LOCALNET);
|
|
|
|
}
|
2012-01-27 17:59:44 +00:00
|
|
|
} else if(strstr(buff, "chain_len")) {
|
|
|
|
char *pc;
|
|
|
|
int len;
|
|
|
|
pc = strchr(buff, '=');
|
|
|
|
len = atoi(++pc);
|
|
|
|
proxychains_max_chain = (len ? len : 1);
|
|
|
|
} else if(strstr(buff, "quiet_mode")) {
|
|
|
|
proxychains_quiet_mode = 1;
|
|
|
|
} else if(strstr(buff, "proxy_dns")) {
|
|
|
|
proxychains_resolver = 1;
|
2011-02-25 09:40:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(file);
|
2011-09-03 23:45:16 +00:00
|
|
|
*proxy_count = count;
|
|
|
|
proxychains_got_chain_data = 1;
|
2011-02-25 09:40:11 +00:00
|
|
|
}
|
|
|
|
|
2012-04-23 20:14:04 +00:00
|
|
|
/******* HOOK FUNCTIONS *******/
|
2011-02-25 09:40:11 +00:00
|
|
|
|
2013-01-21 00:54:45 +00:00
|
|
|
int close(int fd) {
|
2013-08-30 21:44:23 +00:00
|
|
|
INIT();
|
2013-01-21 00:54:45 +00:00
|
|
|
/* prevent rude programs (like ssh) from closing our pipes */
|
|
|
|
if(fd != req_pipefd[0] && fd != req_pipefd[1] &&
|
|
|
|
fd != resp_pipefd[0] && fd != resp_pipefd[1]) {
|
|
|
|
return true_close(fd);
|
|
|
|
}
|
2014-01-08 05:38:59 +00:00
|
|
|
errno = EBADF;
|
2013-01-21 00:54:45 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
int connect(int sock, const struct sockaddr *addr, unsigned int len) {
|
2012-11-07 15:49:14 +00:00
|
|
|
PFUNC();
|
2012-01-27 17:59:44 +00:00
|
|
|
int socktype = 0, flags = 0, ret = 0;
|
2011-09-03 23:45:16 +00:00
|
|
|
socklen_t optlen = 0;
|
2011-11-06 13:12:50 +00:00
|
|
|
ip_type dest_ip;
|
2011-09-03 23:45:16 +00:00
|
|
|
#ifdef DEBUG
|
2011-02-25 15:16:58 +00:00
|
|
|
char str[256];
|
2011-09-03 23:45:16 +00:00
|
|
|
#endif
|
2011-02-25 15:16:58 +00:00
|
|
|
struct in_addr *p_addr_in;
|
2011-03-22 14:04:52 +00:00
|
|
|
unsigned short port;
|
2011-02-25 15:16:58 +00:00
|
|
|
size_t i;
|
2012-03-03 06:24:05 +00:00
|
|
|
int remote_dns_connect = 0;
|
2012-04-23 20:14:04 +00:00
|
|
|
INIT();
|
2012-01-27 17:59:44 +00:00
|
|
|
optlen = sizeof(socktype);
|
|
|
|
getsockopt(sock, SOL_SOCKET, SO_TYPE, &socktype, &optlen);
|
|
|
|
if(!(SOCKFAMILY(*addr) == AF_INET && socktype == SOCK_STREAM))
|
|
|
|
return true_connect(sock, addr, len);
|
2011-02-25 15:16:58 +00:00
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
p_addr_in = &((struct sockaddr_in *) addr)->sin_addr;
|
|
|
|
port = ntohs(((struct sockaddr_in *) addr)->sin_port);
|
2011-02-25 15:16:58 +00:00
|
|
|
|
2011-09-03 23:45:16 +00:00
|
|
|
#ifdef DEBUG
|
2012-01-27 17:59:44 +00:00
|
|
|
// PDEBUG("localnet: %s; ", inet_ntop(AF_INET,&in_addr_localnet, str, sizeof(str)));
|
|
|
|
// PDEBUG("netmask: %s; " , inet_ntop(AF_INET, &in_addr_netmask, str, sizeof(str)));
|
2011-09-03 23:45:16 +00:00
|
|
|
PDEBUG("target: %s\n", inet_ntop(AF_INET, p_addr_in, str, sizeof(str)));
|
|
|
|
PDEBUG("port: %d\n", port);
|
|
|
|
#endif
|
2012-03-03 06:24:05 +00:00
|
|
|
|
|
|
|
// check if connect called from proxydns
|
|
|
|
remote_dns_connect = (ntohl(p_addr_in->s_addr) >> 24 == remote_dns_subnet);
|
|
|
|
|
|
|
|
for(i = 0; i < num_localnet_addr && !remote_dns_connect; i++) {
|
2012-01-27 17:59:44 +00:00
|
|
|
if((localnet_addr[i].in_addr.s_addr & localnet_addr[i].netmask.s_addr)
|
|
|
|
== (p_addr_in->s_addr & localnet_addr[i].netmask.s_addr)) {
|
2012-05-22 12:25:53 +00:00
|
|
|
if(!localnet_addr[i].port || localnet_addr[i].port == port) {
|
2011-03-22 14:04:52 +00:00
|
|
|
PDEBUG("accessing localnet using true_connect\n");
|
2012-01-27 17:59:44 +00:00
|
|
|
return true_connect(sock, addr, len);
|
2011-03-22 14:04:52 +00:00
|
|
|
}
|
2011-02-25 15:16:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-06 13:12:50 +00:00
|
|
|
flags = fcntl(sock, F_GETFL, 0);
|
2011-02-25 09:40:11 +00:00
|
|
|
if(flags & O_NONBLOCK)
|
2012-01-27 17:59:44 +00:00
|
|
|
fcntl(sock, F_SETFL, !O_NONBLOCK);
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2011-11-06 13:12:50 +00:00
|
|
|
dest_ip.as_int = SOCKADDR(*addr);
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
ret = connect_proxy_chain(sock,
|
|
|
|
dest_ip,
|
|
|
|
SOCKPORT(*addr),
|
|
|
|
proxychains_pd, proxychains_proxy_count, proxychains_ct, proxychains_max_chain);
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2011-02-25 09:40:11 +00:00
|
|
|
fcntl(sock, F_SETFL, flags);
|
2011-11-06 13:12:50 +00:00
|
|
|
if(ret != SUCCESS)
|
2012-01-27 17:59:44 +00:00
|
|
|
errno = ECONNREFUSED;
|
2011-02-25 09:40:11 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-07-15 23:05:28 +00:00
|
|
|
static struct gethostbyname_data ghbndata;
|
2012-01-27 17:59:44 +00:00
|
|
|
struct hostent *gethostbyname(const char *name) {
|
2012-04-23 20:14:04 +00:00
|
|
|
INIT();
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
PDEBUG("gethostbyname: %s\n", name);
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2011-02-25 09:40:11 +00:00
|
|
|
if(proxychains_resolver)
|
2012-07-15 23:05:28 +00:00
|
|
|
return proxy_gethostbyname(name, &ghbndata);
|
2011-02-25 09:40:11 +00:00
|
|
|
else
|
|
|
|
return true_gethostbyname(name);
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2011-02-25 09:40:11 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2011-09-03 23:45:16 +00:00
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
int getaddrinfo(const char *node, const char *service, const struct addrinfo *hints, struct addrinfo **res) {
|
2011-02-25 09:40:11 +00:00
|
|
|
int ret = 0;
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-04-23 20:14:04 +00:00
|
|
|
INIT();
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-11-08 00:18:19 +00:00
|
|
|
PDEBUG("getaddrinfo: %s %s\n", node ? node : "null", service ? service : "null");
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2011-02-25 09:40:11 +00:00
|
|
|
if(proxychains_resolver)
|
|
|
|
ret = proxy_getaddrinfo(node, service, hints, res);
|
|
|
|
else
|
|
|
|
ret = true_getaddrinfo(node, service, hints, res);
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2011-02-25 09:40:11 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2011-09-03 23:45:16 +00:00
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
void freeaddrinfo(struct addrinfo *res) {
|
2012-04-23 20:14:04 +00:00
|
|
|
INIT();
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
PDEBUG("freeaddrinfo %p \n", res);
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2011-02-25 09:40:11 +00:00
|
|
|
if(!proxychains_resolver)
|
|
|
|
true_freeaddrinfo(res);
|
2012-07-15 23:05:28 +00:00
|
|
|
else
|
|
|
|
proxy_freeaddrinfo(res);
|
2011-02-25 09:40:11 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-01-27 17:59:44 +00:00
|
|
|
|
2012-12-17 21:17:00 +00:00
|
|
|
int pc_getnameinfo(const struct sockaddr *sa, socklen_t salen,
|
|
|
|
char *host, socklen_t hostlen, char *serv,
|
|
|
|
socklen_t servlen, int flags)
|
2011-02-25 09:40:11 +00:00
|
|
|
{
|
2012-01-27 19:00:22 +00:00
|
|
|
char ip_buf[16];
|
2011-02-25 09:40:11 +00:00
|
|
|
int ret = 0;
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-04-23 20:14:04 +00:00
|
|
|
INIT();
|
|
|
|
|
2012-12-17 21:17:00 +00:00
|
|
|
PFUNC();
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2011-02-25 09:40:11 +00:00
|
|
|
if(!proxychains_resolver) {
|
2012-01-27 17:59:44 +00:00
|
|
|
ret = true_getnameinfo(sa, salen, host, hostlen, serv, servlen, flags);
|
2011-02-25 09:40:11 +00:00
|
|
|
} else {
|
2012-12-17 22:21:58 +00:00
|
|
|
if(salen < sizeof(struct sockaddr_in) || SOCKFAMILY(*sa) != AF_INET)
|
|
|
|
return EAI_FAMILY;
|
2012-01-27 19:00:22 +00:00
|
|
|
if(hostlen) {
|
|
|
|
pc_stringfromipv4((unsigned char*) &(SOCKADDR_2(*sa)), ip_buf);
|
2012-12-17 21:41:51 +00:00
|
|
|
if(snprintf(host, hostlen, "%s", ip_buf) >= hostlen)
|
|
|
|
return EAI_OVERFLOW;
|
|
|
|
}
|
|
|
|
if(servlen) {
|
|
|
|
if(snprintf(serv, servlen, "%d", ntohs(SOCKPORT(*sa))) >= servlen)
|
|
|
|
return EAI_OVERFLOW;
|
2012-01-27 19:00:22 +00:00
|
|
|
}
|
2011-02-25 09:40:11 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2011-02-25 15:16:58 +00:00
|
|
|
|
2012-01-27 17:59:44 +00:00
|
|
|
struct hostent *gethostbyaddr(const void *addr, socklen_t len, int type) {
|
2011-09-03 23:45:16 +00:00
|
|
|
static char buf[16];
|
|
|
|
static char ipv4[4];
|
2012-01-27 17:59:44 +00:00
|
|
|
static char *list[2];
|
2012-11-04 03:58:48 +00:00
|
|
|
static char *aliases[1];
|
2011-09-03 23:45:16 +00:00
|
|
|
static struct hostent he;
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2012-04-23 20:14:04 +00:00
|
|
|
INIT();
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2011-09-04 00:03:47 +00:00
|
|
|
PDEBUG("TODO: proper gethostbyaddr hook\n");
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2011-02-25 09:40:11 +00:00
|
|
|
if(!proxychains_resolver)
|
2012-01-27 17:59:44 +00:00
|
|
|
return true_gethostbyaddr(addr, len, type);
|
2011-09-03 23:45:16 +00:00
|
|
|
else {
|
2012-01-27 16:55:37 +00:00
|
|
|
|
2011-09-04 00:03:47 +00:00
|
|
|
PDEBUG("len %u\n", len);
|
2012-01-27 17:59:44 +00:00
|
|
|
if(len != 4)
|
|
|
|
return NULL;
|
2011-09-03 23:45:16 +00:00
|
|
|
he.h_name = buf;
|
|
|
|
memcpy(ipv4, addr, 4);
|
|
|
|
list[0] = ipv4;
|
|
|
|
list[1] = NULL;
|
|
|
|
he.h_addr_list = list;
|
|
|
|
he.h_addrtype = AF_INET;
|
2012-11-04 03:58:48 +00:00
|
|
|
aliases[0] = NULL;
|
|
|
|
he.h_aliases = aliases;
|
2011-09-03 23:45:16 +00:00
|
|
|
he.h_length = 4;
|
2012-01-27 17:59:44 +00:00
|
|
|
pc_stringfromipv4((unsigned char *) addr, buf);
|
2011-09-03 23:45:16 +00:00
|
|
|
return &he;
|
|
|
|
}
|
2011-02-25 09:40:11 +00:00
|
|
|
return NULL;
|
|
|
|
}
|