2020-07-30 18:10:31 +08:00
|
|
|
#include "main.h"
|
|
|
|
#include "http_proxy.h"
|
|
|
|
#include "http_request.h"
|
2021-07-20 22:17:06 +08:00
|
|
|
#include "httpdns.h"
|
2021-12-23 09:02:41 +08:00
|
|
|
#include "httpudp.h"
|
2020-01-21 19:48:05 +08:00
|
|
|
#include "conf.h"
|
|
|
|
#include "help.h"
|
|
|
|
|
2022-01-02 18:36:09 +08:00
|
|
|
#define SERVER_TYPE_STOP 1
|
|
|
|
#define SERVER_TYPE_RELOAD 2
|
|
|
|
#define SERVER_TYPE_STATUS 3
|
|
|
|
#define SERVICE_TYPE_STATUS_NOT_PRINT 4
|
2021-12-23 09:02:41 +08:00
|
|
|
|
2021-07-20 22:17:06 +08:00
|
|
|
struct global global;
|
2021-12-23 09:02:41 +08:00
|
|
|
struct tcp_mode http, https;
|
|
|
|
struct save_header *saveHdrs;
|
|
|
|
char *default_ssl_request;
|
|
|
|
int default_ssl_request_len;
|
2021-07-20 22:17:06 +08:00
|
|
|
uint16_t tcp_listen_port;
|
2021-12-23 09:02:41 +08:00
|
|
|
|
2022-02-06 19:04:04 +08:00
|
|
|
tcp *http_head_strrep;
|
|
|
|
tcp *http_head_regrep;
|
|
|
|
|
|
|
|
tcp *https_head_strrep;
|
|
|
|
tcp *https_head_regrep;
|
2022-01-02 18:36:09 +08:00
|
|
|
|
2020-01-21 19:48:05 +08:00
|
|
|
struct epoll_event ev, events[MAX_CONNECTION + 1];
|
2021-07-20 22:17:06 +08:00
|
|
|
int epollfd, server_sock, server_sock6, local_port, process;
|
2020-11-26 17:40:17 +08:00
|
|
|
conn_t cts[MAX_CONNECTION];
|
2021-05-18 14:18:56 +08:00
|
|
|
char local_host[CACHE_SIZE];
|
2020-01-21 19:48:05 +08:00
|
|
|
|
2020-06-08 20:28:15 +08:00
|
|
|
int create_server_socket(int port)
|
|
|
|
{
|
2020-01-21 19:48:05 +08:00
|
|
|
int server_sock;
|
|
|
|
int optval = 1;
|
|
|
|
struct sockaddr_in server_addr;
|
|
|
|
if ((server_sock = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
|
|
|
|
perror("socket");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (setsockopt(server_sock, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof(optval)) < 0) {
|
|
|
|
perror("setsockopt");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
memset(&server_addr, 0, sizeof(server_addr));
|
|
|
|
server_addr.sin_family = AF_INET;
|
|
|
|
server_addr.sin_port = htons(port);
|
|
|
|
server_addr.sin_addr.s_addr = INADDR_ANY;
|
2020-06-08 20:28:15 +08:00
|
|
|
if (bind(server_sock, (struct sockaddr *)&server_addr, sizeof(server_addr)) != 0) {
|
2020-01-21 19:48:05 +08:00
|
|
|
perror("bind");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (listen(server_sock, 50) < 0) {
|
|
|
|
perror("listen");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return server_sock;
|
|
|
|
}
|
|
|
|
|
2020-10-27 16:42:51 +08:00
|
|
|
int create_server_socket6(int port)
|
|
|
|
{
|
|
|
|
int server_sock;
|
|
|
|
int optval = SO_REUSEADDR;
|
|
|
|
struct sockaddr_in6 server_addr;
|
|
|
|
if ((server_sock = socket(AF_INET6, SOCK_STREAM, 0)) < 0) {
|
|
|
|
perror("socket");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setsockopt(server_sock, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof(optval)) < 0) {
|
|
|
|
perror("setsockopt");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setsockopt(server_sock, IPPROTO_IPV6, IPV6_V6ONLY, &optval, sizeof(optval)) < 0) {
|
|
|
|
perror("setsockopt");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&server_addr, 0, sizeof(server_addr));
|
|
|
|
server_addr.sin6_family = AF_INET6;
|
|
|
|
server_addr.sin6_port = htons(port);
|
|
|
|
server_addr.sin6_addr = in6addr_any;
|
|
|
|
|
|
|
|
if (bind(server_sock, (struct sockaddr *)&server_addr, sizeof(struct sockaddr_in6)) != 0) {
|
|
|
|
perror("bind");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (listen(server_sock, 20) < 0) {
|
|
|
|
perror("listen");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return server_sock;
|
|
|
|
}
|
|
|
|
|
2020-01-21 19:48:05 +08:00
|
|
|
void accept_client()
|
|
|
|
{
|
|
|
|
struct epoll_event epollEvent;
|
|
|
|
struct sockaddr_in addr;
|
2020-11-26 17:40:17 +08:00
|
|
|
conn_t *client;
|
2020-01-21 19:48:05 +08:00
|
|
|
socklen_t addr_len = sizeof(addr);
|
|
|
|
|
|
|
|
// 偶数为客户端,奇数为服务端
|
|
|
|
for (client = cts; client - cts < MAX_CONNECTION; client += 2)
|
|
|
|
if (client->fd < 0)
|
|
|
|
break;
|
|
|
|
if (client - cts >= MAX_CONNECTION)
|
|
|
|
return;
|
2020-06-08 20:28:15 +08:00
|
|
|
client->timer = (client + 1)->timer = 0;
|
2020-01-21 19:48:05 +08:00
|
|
|
client->fd = accept(server_sock, (struct sockaddr *)&addr, &addr_len);
|
|
|
|
if (client->fd < 0)
|
|
|
|
return;
|
|
|
|
fcntl(client->fd, F_SETFL, O_NONBLOCK);
|
2020-06-08 20:28:15 +08:00
|
|
|
epollEvent.events = EPOLLIN | EPOLLET;
|
2020-01-21 19:48:05 +08:00
|
|
|
epollEvent.data.ptr = client;
|
|
|
|
epoll_ctl(epollfd, EPOLL_CTL_ADD, client->fd, &epollEvent);
|
|
|
|
}
|
|
|
|
|
2020-10-27 16:42:51 +08:00
|
|
|
void accept_client6()
|
2020-01-21 19:48:05 +08:00
|
|
|
{
|
2020-10-27 16:42:51 +08:00
|
|
|
struct epoll_event epollEvent;
|
|
|
|
struct sockaddr_in6 addr;
|
2020-11-26 17:40:17 +08:00
|
|
|
conn_t *client;
|
2020-10-27 16:42:51 +08:00
|
|
|
socklen_t addr_len = sizeof(addr);
|
2020-06-20 16:59:51 +08:00
|
|
|
|
2020-10-27 16:42:51 +08:00
|
|
|
// 偶数为客户端,奇数为服务端
|
|
|
|
for (client = cts; client - cts < MAX_CONNECTION; client += 2)
|
|
|
|
if (client->fd < 0)
|
|
|
|
break;
|
|
|
|
if (client - cts >= MAX_CONNECTION)
|
|
|
|
return;
|
|
|
|
client->timer = (client + 1)->timer = 0;
|
|
|
|
client->fd = accept(server_sock6, (struct sockaddr *)&addr, &addr_len);
|
|
|
|
if (client->fd < 0)
|
|
|
|
return;
|
|
|
|
fcntl(client->fd, F_SETFL, O_NONBLOCK);
|
|
|
|
epollEvent.events = EPOLLIN | EPOLLET;
|
|
|
|
epollEvent.data.ptr = client;
|
|
|
|
epoll_ctl(epollfd, EPOLL_CTL_ADD, client->fd, &epollEvent);
|
2020-06-20 16:59:51 +08:00
|
|
|
}
|
|
|
|
|
2020-10-27 16:42:51 +08:00
|
|
|
void *http_proxy_loop(void *p)
|
2020-06-20 16:59:51 +08:00
|
|
|
{
|
2020-10-27 16:42:51 +08:00
|
|
|
conf *configure = (conf *) p;
|
2020-06-20 16:59:51 +08:00
|
|
|
int n;
|
2020-01-21 19:48:05 +08:00
|
|
|
|
2020-11-26 17:40:17 +08:00
|
|
|
ev.events = EPOLLIN;
|
|
|
|
ev.data.fd = server_sock;
|
|
|
|
if (-1 == epoll_ctl(epollfd, EPOLL_CTL_ADD, server_sock, &ev)) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
ev.events = EPOLLIN;
|
|
|
|
ev.data.fd = server_sock6;
|
|
|
|
if (-1 == epoll_ctl(epollfd, EPOLL_CTL_ADD, server_sock6, &ev)) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2020-12-15 10:43:06 +08:00
|
|
|
|
2020-01-21 19:48:05 +08:00
|
|
|
while (1) {
|
|
|
|
n = epoll_wait(epollfd, events, MAX_CONNECTION, -1);
|
|
|
|
while (n-- > 0) {
|
2020-11-26 17:40:17 +08:00
|
|
|
if (events[n].data.fd == server_sock6) {
|
2020-10-27 16:42:51 +08:00
|
|
|
accept_client6();
|
2020-12-15 10:43:06 +08:00
|
|
|
} else if (events[n].data.fd == server_sock) {
|
2020-11-26 17:40:17 +08:00
|
|
|
accept_client();
|
2020-01-21 19:48:05 +08:00
|
|
|
} else {
|
2020-06-08 20:28:15 +08:00
|
|
|
if (events[n].events & EPOLLIN) {
|
2020-11-26 17:40:17 +08:00
|
|
|
tcp_in((conn_t *) events[n].data.ptr, configure);
|
2020-01-21 19:48:05 +08:00
|
|
|
}
|
|
|
|
if (events[n].events & EPOLLOUT) {
|
2020-11-26 17:40:17 +08:00
|
|
|
tcp_out((conn_t *) events[n].data.ptr);
|
2020-01-21 19:48:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-20 22:17:06 +08:00
|
|
|
|
2020-01-21 19:48:05 +08:00
|
|
|
close(epollfd);
|
2020-10-27 16:42:51 +08:00
|
|
|
return NULL;
|
2020-01-21 19:48:05 +08:00
|
|
|
}
|
|
|
|
|
2020-11-05 21:56:08 +08:00
|
|
|
void *start_server(conf * configure)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
pthread_t thread_id;
|
2021-07-20 22:17:06 +08:00
|
|
|
|
2021-05-18 14:18:56 +08:00
|
|
|
ev.events = EPOLLIN;
|
|
|
|
ev.data.fd = server_sock;
|
|
|
|
if (-1 == epoll_ctl(epollfd, EPOLL_CTL_ADD, server_sock, &ev)) {
|
|
|
|
perror("epoll_ctl");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
ev.events = EPOLLIN;
|
|
|
|
ev.data.fd = server_sock6;
|
|
|
|
if (-1 == epoll_ctl(epollfd, EPOLL_CTL_ADD, server_sock6, &ev)) {
|
|
|
|
perror("epoll_ctl");
|
|
|
|
exit(1);
|
|
|
|
}
|
2021-07-20 22:17:06 +08:00
|
|
|
|
2020-11-05 21:56:08 +08:00
|
|
|
if (timeout_minute)
|
|
|
|
pthread_create(&thread_id, NULL, &tcp_timeout_check, NULL);
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
n = epoll_wait(epollfd, events, MAX_CONNECTION, -1);
|
|
|
|
while (n-- > 0) {
|
|
|
|
if (events[n].data.fd == server_sock) {
|
|
|
|
accept_client();
|
|
|
|
} else if (events[n].data.fd == server_sock6) {
|
|
|
|
accept_client6();
|
|
|
|
} else {
|
|
|
|
if (events[n].events & EPOLLIN) {
|
2020-11-26 17:40:17 +08:00
|
|
|
tcp_in((conn_t *) events[n].data.ptr, configure);
|
2020-11-05 21:56:08 +08:00
|
|
|
}
|
|
|
|
if (events[n].events & EPOLLOUT) {
|
2020-11-26 17:40:17 +08:00
|
|
|
tcp_out((conn_t *) events[n].data.ptr);
|
2020-11-05 21:56:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-20 22:17:06 +08:00
|
|
|
|
2020-11-05 21:56:08 +08:00
|
|
|
close(epollfd);
|
2021-05-18 14:18:56 +08:00
|
|
|
return NULL;
|
2020-11-05 21:56:08 +08:00
|
|
|
}
|
|
|
|
|
2020-06-08 20:28:15 +08:00
|
|
|
int process_signal(int signal, char *process_name)
|
2020-01-21 19:48:05 +08:00
|
|
|
{
|
2022-01-19 21:48:02 +08:00
|
|
|
char bufer[CACHE_SIZE];
|
|
|
|
char comm[CACHE_SIZE];
|
|
|
|
char proc_comm_name[CACHE_SIZE];
|
|
|
|
//int number[CACHE_SIZE] = { 0 };
|
2022-01-02 18:36:09 +08:00
|
|
|
//int n = 0;
|
2020-01-21 19:48:05 +08:00
|
|
|
FILE *fp;
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *ptr;
|
2022-01-02 18:36:09 +08:00
|
|
|
pid_t self_pid;
|
2022-03-25 15:34:07 +08:00
|
|
|
|
2022-01-02 18:36:09 +08:00
|
|
|
self_pid = getpid();
|
2020-01-21 19:48:05 +08:00
|
|
|
dir = opendir("/proc");
|
2020-08-16 07:58:53 +08:00
|
|
|
bzero(bufer, 0);
|
|
|
|
bzero(comm, 0);
|
|
|
|
bzero(proc_comm_name, 0);
|
2020-01-21 19:48:05 +08:00
|
|
|
while ((ptr = readdir(dir)) != NULL) {
|
2022-01-02 18:36:09 +08:00
|
|
|
if (ptr->d_type != DT_DIR)
|
|
|
|
continue;
|
|
|
|
if (strcmp(ptr->d_name, ".") == 0 || strcmp(ptr->d_name, "..") == 0 || atoi(ptr->d_name) == self_pid)
|
|
|
|
continue;
|
2022-03-25 15:34:07 +08:00
|
|
|
|
2022-01-02 18:36:09 +08:00
|
|
|
sprintf(comm, "/proc/%s/comm", ptr->d_name);
|
|
|
|
if (access(comm, F_OK) == 0) {
|
|
|
|
fp = fopen(comm, "r");
|
2022-01-19 21:48:02 +08:00
|
|
|
if (fgets(bufer, CACHE_SIZE - 1, fp) == NULL) {
|
2020-01-21 19:48:05 +08:00
|
|
|
fclose(fp);
|
2022-01-02 18:36:09 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
sscanf(bufer, "%s", proc_comm_name);
|
|
|
|
if (!strcmp(process_name, proc_comm_name)) {
|
|
|
|
if (signal == SERVER_TYPE_STOP)
|
|
|
|
kill(atoi(ptr->d_name), SIGTERM);
|
|
|
|
else {
|
|
|
|
closedir(dir);
|
|
|
|
if (signal != SERVICE_TYPE_STATUS_NOT_PRINT)
|
|
|
|
printf("\t%d\n", atoi(ptr->d_name));;
|
|
|
|
return 0;
|
|
|
|
}
|
2020-01-21 19:48:05 +08:00
|
|
|
}
|
2022-01-02 18:36:09 +08:00
|
|
|
fclose(fp);
|
2020-01-21 19:48:05 +08:00
|
|
|
}
|
|
|
|
}
|
2020-06-20 16:59:51 +08:00
|
|
|
closedir(dir);
|
2022-03-25 15:34:07 +08:00
|
|
|
|
|
|
|
if (signal == SERVER_TYPE_STATUS) ;
|
2022-01-02 18:36:09 +08:00
|
|
|
else if (signal == SERVICE_TYPE_STATUS_NOT_PRINT)
|
|
|
|
return 1;
|
2022-03-25 15:34:07 +08:00
|
|
|
|
2020-01-21 19:48:05 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int get_executable_path(char *processdir, char *processname, int len)
|
|
|
|
{
|
|
|
|
char *filename;
|
|
|
|
if (readlink("/proc/self/exe", processdir, len) <= 0)
|
|
|
|
return -1;
|
|
|
|
filename = strrchr(processdir, '/');
|
|
|
|
if (filename == NULL)
|
|
|
|
return -1;
|
|
|
|
++filename;
|
|
|
|
strcpy(processname, filename);
|
|
|
|
*filename = '\0';
|
|
|
|
return (int)(filename - processdir);
|
|
|
|
}
|
|
|
|
|
2020-06-20 16:59:51 +08:00
|
|
|
void server_ini()
|
|
|
|
{
|
|
|
|
signal(SIGPIPE, SIG_IGN); // 忽略PIPE信号
|
2020-11-26 17:40:17 +08:00
|
|
|
|
2020-06-20 16:59:51 +08:00
|
|
|
if (daemon(1, 1)) {
|
|
|
|
perror("daemon");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//while (process-- > 1 && fork() == 0);
|
|
|
|
}
|
|
|
|
|
2021-07-20 22:17:06 +08:00
|
|
|
// 监听一个UDP接口
|
|
|
|
int udp_listen(char *ip, int port)
|
|
|
|
{
|
|
|
|
struct sockaddr_in addr;
|
|
|
|
int fd, opt = 1;
|
|
|
|
|
|
|
|
if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
|
|
|
|
perror("udp socket");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
setsockopt(fd, SOL_IP, IP_TRANSPARENT, &opt, sizeof(opt));
|
|
|
|
setsockopt(fd, SOL_IP, IP_RECVORIGDSTADDR, &opt, sizeof(opt));
|
|
|
|
memset(&addr, 0, sizeof(addr));
|
|
|
|
addr.sin_addr.s_addr = inet_addr(ip);
|
|
|
|
addr.sin_port = htons(port);
|
|
|
|
addr.sin_family = AF_INET;
|
|
|
|
if (bind(fd, (struct sockaddr *)&addr, sizeof(addr)) != 0) {
|
|
|
|
perror("udp bind");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *timeout_check(void *nullPtr)
|
|
|
|
{
|
|
|
|
while (1) {
|
|
|
|
sleep(60);
|
2021-12-23 09:02:41 +08:00
|
|
|
if (server_sock >= 0 || server_sock6 >= 0)
|
|
|
|
tcp_timeout_check(NULL);
|
2021-07-20 22:17:06 +08:00
|
|
|
if (global.dns_listen_fd >= 0)
|
|
|
|
dns_timeout_check();
|
2021-12-23 09:02:41 +08:00
|
|
|
if (global.udp_listen_fd >= 0)
|
|
|
|
udp_timeout_check();
|
2021-07-20 22:17:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void initialize(conf * configure)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
memset(cts, 0, sizeof(cts));
|
|
|
|
for (i = MAX_CONNECTION; i--;)
|
|
|
|
cts[i].fd = -1;
|
|
|
|
// 为服务端的结构体分配内存
|
|
|
|
for (i = 1; i < MAX_CONNECTION; i += 2) {
|
|
|
|
cts[i].ready_data = (char *)malloc(BUFFER_SIZE);
|
|
|
|
if (cts[i].ready_data == NULL) {
|
|
|
|
fputs("out of memory.", stderr);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&global, 0, sizeof(global));
|
|
|
|
memset(&httpdns, 0, sizeof(httpdns));
|
2021-12-23 09:02:41 +08:00
|
|
|
memset(&https, 0, sizeof(https));
|
|
|
|
memset(&udp, 0, sizeof(udp));
|
|
|
|
saveHdrs = NULL;
|
2021-07-20 22:17:06 +08:00
|
|
|
httpdns.dst.sin_family = AF_INET;
|
2021-12-23 09:02:41 +08:00
|
|
|
udp.dst.sin_family = AF_INET;
|
2021-07-20 22:17:06 +08:00
|
|
|
global.tcp_listen_fd = global.dns_listen_fd = global.udp_listen_fd = global.uid = -1;
|
2022-01-02 18:36:09 +08:00
|
|
|
|
2021-12-23 09:02:41 +08:00
|
|
|
// httpdns module
|
2021-07-20 22:17:06 +08:00
|
|
|
global.dns_listen_fd = udp_listen((char *)"127.0.0.1", configure->dns_listen);
|
|
|
|
if ((p = strchr(configure->addr, ':')) != NULL) {
|
|
|
|
*p = '\0';
|
|
|
|
httpdns.dst.sin_port = htons(atoi(p + 1));
|
|
|
|
} else {
|
|
|
|
httpdns.dst.sin_port = htons(80);
|
|
|
|
}
|
|
|
|
httpdns.dst.sin_addr.s_addr = inet_addr(configure->addr);
|
|
|
|
httpdns.http_req_len = configure->http_req_len;
|
|
|
|
copy_new_mem(configure->http_req, httpdns.http_req_len, &httpdns.http_req);
|
|
|
|
|
2021-12-23 09:02:41 +08:00
|
|
|
// httpudp module
|
|
|
|
global.udp_listen_fd = udp_listen((char *)"0.0.0.0", configure->udp_listen);
|
|
|
|
if ((p = strchr(configure->httpudp_addr, ':')) != NULL) {
|
|
|
|
*p = '\0';
|
|
|
|
udp.dst.sin_port = htons(atoi(p + 1));
|
|
|
|
} else {
|
|
|
|
udp.dst.sin_port = htons(80);
|
|
|
|
}
|
|
|
|
udp.dst.sin_addr.s_addr = inet_addr(configure->httpudp_addr);
|
|
|
|
udp.http_request_len = configure->httpudp_http_req_len;
|
|
|
|
copy_new_mem(configure->httpudp_http_req, udp.http_request_len, &udp.http_request);
|
|
|
|
|
|
|
|
// global module
|
2021-07-20 22:17:06 +08:00
|
|
|
server_sock = create_server_socket(configure->tcp_listen); // IPV4
|
2021-12-09 19:31:51 +08:00
|
|
|
server_sock6 = create_server_socket6(configure->tcp_listen); // IPV6
|
2021-07-20 22:17:06 +08:00
|
|
|
epollfd = epoll_create(MAX_CONNECTION);
|
|
|
|
if (epollfd == -1) {
|
|
|
|
perror("epoll_create");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void thread_loop(conf * configure)
|
|
|
|
{
|
|
|
|
pthread_t thread_id = 0;
|
|
|
|
sigset_t signal_mask;
|
|
|
|
sigemptyset(&signal_mask);
|
|
|
|
sigaddset(&signal_mask, SIGPIPE); // 忽略PIPE信号
|
|
|
|
if (pthread_sigmask(SIG_BLOCK, &signal_mask, NULL) != 0) {
|
|
|
|
printf("block sigpipe error\n");
|
|
|
|
}
|
2022-03-25 15:34:07 +08:00
|
|
|
|
2021-07-20 22:17:06 +08:00
|
|
|
if (global.timeout_m)
|
|
|
|
pthread_create(&thread_id, NULL, &timeout_check, NULL);
|
2022-01-02 18:36:09 +08:00
|
|
|
|
2021-12-23 09:02:41 +08:00
|
|
|
if (pthread_create(&thread_id, NULL, &http_proxy_loop, (void *)configure) != 0)
|
|
|
|
perror("pthread_create");
|
2022-01-02 18:36:09 +08:00
|
|
|
|
2021-07-20 22:17:06 +08:00
|
|
|
if (global.dns_listen_fd >= 0) {
|
|
|
|
dns_init();
|
2021-12-23 09:02:41 +08:00
|
|
|
pthread_create(&thread_id, NULL, &dns_loop, NULL);
|
|
|
|
}
|
2022-01-02 18:36:09 +08:00
|
|
|
|
2021-12-23 09:02:41 +08:00
|
|
|
if (global.udp_listen_fd >= 0) {
|
|
|
|
udp_init();
|
|
|
|
udp_loop(NULL);
|
|
|
|
//pthread_create(&thread_id, NULL, &udp_loop, NULL);
|
2021-07-20 22:17:06 +08:00
|
|
|
}
|
2022-01-02 18:36:09 +08:00
|
|
|
|
2021-07-20 22:17:06 +08:00
|
|
|
pthread_join(thread_id, NULL);
|
|
|
|
pthread_exit(NULL);
|
|
|
|
|
|
|
|
/* 线程分离
|
|
|
|
pthread_attr_t attr;
|
|
|
|
pthread_attr_init(&attr);
|
|
|
|
pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
|
|
|
|
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
|
|
|
|
pthread_create(&thread_id, &attr, &tcp_timeout_check, NULL);
|
|
|
|
pthread_create(&thread_id, &attr, &http_proxy_loop, (void *)configure);
|
|
|
|
pthread_exit(NULL);
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2020-06-20 16:59:51 +08:00
|
|
|
void _main(int argc, char *argv[])
|
2020-01-21 19:48:05 +08:00
|
|
|
{
|
2021-07-20 22:17:06 +08:00
|
|
|
int opt;
|
2022-01-19 21:48:02 +08:00
|
|
|
char path[CACHE_SIZE] = { 0 };
|
|
|
|
char executable_filename[CACHE_SIZE] = { 0 };
|
2020-01-21 19:48:05 +08:00
|
|
|
(void)get_executable_path(path, executable_filename, sizeof(path));
|
2020-03-24 11:46:32 +08:00
|
|
|
char *inifile = "/CProxy.conf";
|
2020-09-09 21:55:48 +08:00
|
|
|
struct rlimit rt;
|
2020-01-21 19:48:05 +08:00
|
|
|
inifile = strcat(path, inifile);
|
|
|
|
conf *configure = (struct CONF *)malloc(sizeof(struct CONF));
|
2020-08-21 17:51:19 +08:00
|
|
|
memset(configure, 0, sizeof(struct CONF));
|
2020-01-21 19:48:05 +08:00
|
|
|
read_conf(inifile, configure);
|
2022-02-06 19:04:04 +08:00
|
|
|
|
2022-01-02 18:36:09 +08:00
|
|
|
|
|
|
|
sslEncodeCode = 0; // 默认SSL不转码
|
2020-06-08 20:28:15 +08:00
|
|
|
if (configure->sslencoding > 0) // 如果配置文件有sslencoding值,优先使用配置文件读取的值
|
|
|
|
sslEncodeCode = configure->sslencoding;
|
2022-01-02 18:36:09 +08:00
|
|
|
timeout_minute = 0; // 默认不超时
|
|
|
|
if (configure->timeout > 0) // 如果配置文件有值,优先使用配置文件读取的值
|
2020-07-30 18:10:31 +08:00
|
|
|
timeout_minute = configure->timeout;
|
2022-01-02 18:36:09 +08:00
|
|
|
process = 2; // 默认开启2个进程
|
|
|
|
if (configure->process > 0) // 如果配置文件有值,优先使用配置文件读取的值
|
2020-01-21 19:48:05 +08:00
|
|
|
process = configure->process;
|
|
|
|
|
2020-03-24 11:46:32 +08:00
|
|
|
int longindex = 0;
|
|
|
|
char optstring[] = ":l:f:t:p:c:e:s:h?";
|
|
|
|
static struct option longopts[] = {
|
|
|
|
{ "local_address", required_argument, 0, 'l' },
|
|
|
|
{ "remote_address", required_argument, 0, 'f' },
|
|
|
|
{ "timeout", required_argument, 0, 't' },
|
|
|
|
{ "process", required_argument, 0, 'p' },
|
|
|
|
{ "config", required_argument, 0, 'c' },
|
|
|
|
{ "coding", required_argument, 0, 'e' },
|
|
|
|
{ "signal", required_argument, 0, 's' },
|
|
|
|
{ "help", no_argument, 0, 'h' },
|
|
|
|
{ "?", no_argument, 0, '?' },
|
|
|
|
{ 0, 0, 0, 0 }
|
|
|
|
};
|
2020-01-21 19:48:05 +08:00
|
|
|
char *p = NULL;
|
2020-03-24 11:46:32 +08:00
|
|
|
while (-1 != (opt = getopt_long(argc, argv, optstring, longopts, &longindex))) {
|
2020-01-21 19:48:05 +08:00
|
|
|
switch (opt) {
|
|
|
|
case 'l':
|
|
|
|
p = strchr(optarg, ':');
|
|
|
|
if (p) {
|
|
|
|
strncpy(local_host, optarg, p - optarg);
|
|
|
|
local_port = atoi(p + 1);
|
|
|
|
} else {
|
|
|
|
strncpy(local_host, optarg, strlen(local_host));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
p = strchr(optarg, ':');
|
|
|
|
if (p) {
|
|
|
|
strncpy(remote_host, optarg, p - optarg);
|
|
|
|
remote_port = atoi(p + 1);
|
|
|
|
} else {
|
|
|
|
strncpy(remote_host, optarg, strlen(remote_host));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 't':
|
2022-01-02 18:36:09 +08:00
|
|
|
timeout_minute = (time_t) atoi(optarg); // 如果指定-t,优先使用参数提供的值(输入值 > 配置文件读取的值)
|
2020-01-21 19:48:05 +08:00
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
process = atoi(optarg);
|
|
|
|
break;
|
|
|
|
case 'c':
|
2022-02-06 19:04:04 +08:00
|
|
|
free_tcp(&http_head_strrep);
|
|
|
|
free_tcp(&http_head_regrep);
|
|
|
|
free_tcp(&https_head_strrep);
|
|
|
|
free_tcp(&https_head_regrep);
|
2020-01-21 19:48:05 +08:00
|
|
|
free_conf(configure);
|
2021-07-20 22:17:06 +08:00
|
|
|
memset(configure, 0, sizeof(struct CONF));
|
2020-10-27 16:42:51 +08:00
|
|
|
read_conf(optarg, configure);
|
2020-01-21 19:48:05 +08:00
|
|
|
break;
|
2020-03-24 11:46:32 +08:00
|
|
|
case 'e':
|
|
|
|
sslEncodeCode = atoi(optarg);
|
|
|
|
break;
|
2020-01-21 19:48:05 +08:00
|
|
|
case 's':
|
|
|
|
if (strcasecmp(optarg, "stop") == 0 || strcasecmp(optarg, "quit") == 0) {
|
|
|
|
free_conf(configure);
|
2022-01-02 18:36:09 +08:00
|
|
|
exit(process_signal(SERVER_TYPE_STOP, executable_filename));
|
2020-01-21 19:48:05 +08:00
|
|
|
}
|
2020-06-20 16:59:51 +08:00
|
|
|
if (strcasecmp(optarg, "restart") == 0 || strcasecmp(optarg, "reload") == 0) {
|
2022-01-02 18:36:09 +08:00
|
|
|
process_signal(SERVER_TYPE_STOP, executable_filename);
|
2022-03-25 15:34:07 +08:00
|
|
|
while (process_signal(SERVICE_TYPE_STATUS_NOT_PRINT, executable_filename) == 0) ;
|
2020-06-20 16:59:51 +08:00
|
|
|
}
|
2020-01-21 19:48:05 +08:00
|
|
|
if (strcasecmp(optarg, "status") == 0)
|
2022-01-02 18:36:09 +08:00
|
|
|
exit(process_signal(SERVER_TYPE_STATUS, executable_filename));
|
2020-01-21 19:48:05 +08:00
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
case '?':
|
|
|
|
help_information();
|
|
|
|
exit(0);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
;
|
|
|
|
}
|
2020-06-20 16:59:51 +08:00
|
|
|
}
|
2021-07-20 22:17:06 +08:00
|
|
|
|
2022-02-06 19:04:04 +08:00
|
|
|
server_ini(); // 守护进程
|
2022-03-25 15:34:07 +08:00
|
|
|
|
|
|
|
// 反转链表,使读取的配置正序
|
|
|
|
http_head_strrep = local_reverse(http_head_strrep);
|
|
|
|
http_head_regrep = local_reverse(http_head_regrep);
|
|
|
|
|
|
|
|
https_head_strrep = local_reverse(https_head_strrep);
|
|
|
|
https_head_regrep = local_reverse(https_head_regrep);
|
|
|
|
|
|
|
|
/*
|
|
|
|
print_tcp(https_head_strrep);
|
|
|
|
print_tcp(https_head_regrep);
|
|
|
|
free_tcp(&https_head_strrep);
|
|
|
|
free_tcp(&https_head_regrep);
|
|
|
|
|
|
|
|
print_tcp(http_head_strrep);
|
|
|
|
print_tcp(http_head_regrep);
|
|
|
|
free_tcp(&http_head_strrep);
|
|
|
|
free_tcp(&http_head_regrep);
|
|
|
|
|
|
|
|
free_conf(configure);
|
|
|
|
free(configure);
|
|
|
|
exit(0);
|
|
|
|
*/
|
2020-11-26 17:40:17 +08:00
|
|
|
|
2022-01-02 18:36:09 +08:00
|
|
|
rt.rlim_max = rt.rlim_cur = MAX_CONNECTION * 2; // 设置每个进程允许打开的最大文件数
|
|
|
|
if (setrlimit(RLIMIT_NOFILE, &rt) == -1)
|
|
|
|
perror("setrlimit");
|
2021-07-20 22:17:06 +08:00
|
|
|
initialize(configure);
|
2020-01-21 19:48:05 +08:00
|
|
|
if (setegid(configure->uid) == -1 || seteuid(configure->uid) == -1) // 设置uid
|
|
|
|
exit(1);
|
2021-07-20 22:17:06 +08:00
|
|
|
thread_loop(configure);
|
2020-06-20 16:59:51 +08:00
|
|
|
|
2020-08-21 17:51:19 +08:00
|
|
|
return;
|
2020-01-21 19:48:05 +08:00
|
|
|
}
|
|
|
|
|
2022-01-12 09:41:32 +08:00
|
|
|
int main(int argc, char *argv[], char **envp)
|
2020-01-21 19:48:05 +08:00
|
|
|
{
|
2020-06-20 16:59:51 +08:00
|
|
|
_main(argc, argv);
|
2020-09-09 21:55:48 +08:00
|
|
|
return 0;
|
2020-01-21 19:48:05 +08:00
|
|
|
}
|