-
Notifications
You must be signed in to change notification settings - Fork 4
/
mproxy.c
745 lines (616 loc) · 19 KB
/
mproxy.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
#include <arpa/inet.h>
#include <errno.h>
#include <libgen.h>
#include <netdb.h>
#include <resolv.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>
#include <sys/wait.h>
#include <netinet/in.h>
#include <string.h>
#define BUF_SIZE 8192
#define READ 0
#define WRITE 1
#define DEFAULT_LOCAL_PORT 8080
#define DEFAULT_REMOTE_PORT 8081
#define SERVER_SOCKET_ERROR -1
#define SERVER_SETSOCKOPT_ERROR -2
#define SERVER_BIND_ERROR -3
#define SERVER_LISTEN_ERROR -4
#define CLIENT_SOCKET_ERROR -5
#define CLIENT_RESOLVE_ERROR -6
#define CLIENT_CONNECT_ERROR -7
#define CREATE_PIPE_ERROR -8
#define BROKEN_PIPE_ERROR -9
#define HEADER_BUFFER_FULL -10
#define BAD_HTTP_PROTOCOL -11
#define MAX_HEADER_SIZE 8192
#if defined(OS_ANDROID)
#include <android/log.h>
#define LOG(fmt...) __android_log_print(ANDROID_LOG_DEBUG,__FILE__,##fmt)
#else
#include <syslog.h>
//#define LOG(fmt...) do { fprintf(stderr,"%s %s ",__DATE__,__TIME__); fprintf(stderr, ##fmt); } while(0)
#define LOG(fmt...) do { syslog(LOG_INFO, ##fmt); } while(0)
#endif
char remote_host[128];
int remote_port;
int local_port;
int server_sock;
int client_sock;
int remote_sock;
int http_tunnel;
int passwd_check;
char * header_buffer ;
enum
{
FLG_NONE = 0, /* 正常数据流不进行编解码 */
R_C_DEC = 1, /* 读取客户端数据仅进行解码 */
W_S_ENC = 2 /* 发送到服务端进行编码 */
};
static int io_flag; /* 网络io的一些标志位 */
static int m_pid; /* 保存主进程id */
void server_loop();
void stop_server();
void handle_client(int client_sock, struct sockaddr_in client_addr);
void forward_header(int destination_sock);
void forward_data(int source_sock, int destination_sock);
void rewrite_header();
int send_data(int socket,char * buffer,int len );
int receive_data(int socket, char * buffer, int len);
void hand_mproxy_info_req(int sock,char * header_buffer) ;
void get_info(char * output);
const char *get_work_mode() ;
int create_connection() ;
int _main(int argc, char *argv[]) ;
ssize_t readLine(int fd, void *buffer, size_t n)
{
ssize_t numRead;
size_t totRead;
char *buf;
char ch;
if (n <= 0 || buffer == NULL) {
errno = EINVAL;
return -1;
}
buf = buffer;
totRead = 0;
for (;;) {
numRead = receive_data(fd, &ch, 1);
if (numRead == -1) {
if (errno == EINTR)
continue;
else
return -1; /* 未知错误 */
} else if (numRead == 0) { /* EOF */
if (totRead == 0) /* No bytes read; return 0 */
return 0;
else /* Some bytes read; add '\0' */
break;
} else {
if (totRead < n - 1) { /* Discard > (n - 1) bytes */
totRead++;
*buf++ = ch;
}
if (ch == '\n')
break;
}
}
*buf = '\0';
return totRead;
}
int read_header(int fd, void * buffer)
{
// bzero(header_buffer,sizeof(MAX_HEADER_SIZE));
memset(header_buffer,0,MAX_HEADER_SIZE);
char line_buffer[2048];
char * base_ptr = header_buffer;
for (;;) {
memset(line_buffer,0,2048);
int total_read = readLine(fd,line_buffer,2048);
if (total_read <= 0) {
return CLIENT_SOCKET_ERROR;
}
//防止header缓冲区蛮越界
if (base_ptr + total_read - header_buffer <= MAX_HEADER_SIZE) {
strncpy(base_ptr,line_buffer,total_read);
base_ptr += total_read;
} else {
return HEADER_BUFFER_FULL;
}
//读到了空行,http头结束
if (strcmp(line_buffer,"\r\n") == 0 || strcmp(line_buffer,"\n") == 0) {
break;
}
}
return 0;
}
void extract_server_path(const char * header,char * output)
{
char * p = strstr(header,"GET /");
if (p) {
char * p1 = strchr(p+4,' ');
strncpy(output,p+4,(int)(p1 - p - 4) );
}
}
int extract_host(const char * header)
{
char * _p = strstr(header,"VPN"); /* 在 CONNECT 方法中解析 隧道主机名称及端口号 */
if (_p) {
char * _p1 = strchr(_p,' ');
char * _p2 = strchr(_p1 + 1,':');
char * _p3 = strchr(_p1 + 1,' ');
if (_p2) {
char s_port[10];
bzero(s_port,10);
strncpy(remote_host,_p1+1,(int)(_p2 - _p1) - 1);
strncpy(s_port,_p2+1,(int) (_p3 - _p2) -1);
remote_port = atoi(s_port);
} else {
strncpy(remote_host,_p1+1,(int)(_p3 - _p1) -1);
remote_port = 80;
}
return 0;
}
char * p = strstr(header,"Host:");
if (!p) {
return BAD_HTTP_PROTOCOL;
}
char * p1 = strchr(p,'\n');
if (!p1) {
return BAD_HTTP_PROTOCOL;
}
char * p2 = strchr(p + 5,':'); /* 5是指'Host:'的长度 */
if (p2 && p2 < p1) {
int p_len = (int)(p1 - p2 -1);
char s_port[p_len];
strncpy(s_port,p2+1,p_len);
s_port[p_len] = '\0';
remote_port = atoi(s_port);
int h_len = (int)(p2 - p -5 -1 );
strncpy(remote_host,p + 5 + 1 ,h_len); //Host:
//assert h_len < 128;
remote_host[h_len] = '\0';
} else {
int h_len = (int)(p1 - p - 5 -1 -1);
strncpy(remote_host,p + 5 + 1,h_len);
//assert h_len < 128;
remote_host[h_len] = '\0';
remote_port = 80;
}
return 0;
}
/* 响应隧道连接请求 */
int send_tunnel_ok(int client_sock)
{
char * resp = "HTTP/1.1 200 Connection Established\r\n\r\n";
int len = strlen(resp);
char buffer[len+1];
strcpy(buffer,resp);
if (send_data(client_sock,buffer,len) < 0) {
perror("Send http tunnel response failed\n");
return -1;
}
return 0;
}
//返回mproxy的运行基本信息
void hand_mproxy_info_req(int sock, char * header)
{
char server_path[255] ;
char response[8192];
extract_server_path(header,server_path);
LOG("server path:%s\n",server_path);
char info_buf[1024];
get_info(info_buf);
sprintf(response,"HTTP/1.0 200 OK\nServer: MProxy/0.1\n\
Content-type: text/html; charset=utf-8\n\n\
<html><body>\
<pre>%s</pre>\
</body></html>\n",info_buf);
write(sock,response,strlen(response));
}
/* 获取运行的基本信息输出到指定的缓冲区 */
void get_info(char * output)
{
int pos = 0;
char line_buffer[512];
sprintf(line_buffer,"======= mproxy (v0.1) ========\n");
int len = strlen(line_buffer);
memcpy(output,line_buffer,len);
pos += len ;
sprintf(line_buffer,"%s\n",get_work_mode());
len = strlen(line_buffer);
memcpy(output + pos,line_buffer,len);
pos += len;
if (strlen(remote_host) > 0) {
sprintf(line_buffer,"start server on %d and next hop is %s:%d\n",local_port,remote_host,remote_port);
} else {
sprintf(line_buffer,"start server on %d\n",local_port);
}
len = strlen(line_buffer);
memcpy(output+ pos,line_buffer,len);
pos += len ;
output[pos] = '\0';
}
const char *get_work_mode(void)
{
if (strlen(remote_host) == 0) {
if(io_flag == FLG_NONE) {
return "start as normal http proxy";
} else if (io_flag == R_C_DEC) {
return "start as remote forward proxy and do decode data when recevie data" ;
}
} else {
if (io_flag == FLG_NONE) {
return "start as remote forward proxy";
} else if(io_flag == W_S_ENC) {
return "start as forward proxy and do encode data when send data";
}
}
return "unknow";
}
/* 处理客户端的连接 */
void handle_client(int client_sock, struct sockaddr_in client_addr)
{
int is_http_tunnel = 0;
if (strlen(remote_host) == 0) {/* 未指定远端主机名称从http 请求 HOST 字段中获取 */
#ifdef DEBUG
LOG(" ============ handle new client ============\n");
#endif
if (read_header(client_sock,header_buffer) < 0) {
LOG("Read Http header failed\n");
return;
} else {
#ifdef DEBUG
LOG(">>>Header:%s\n",header_buffer);
#endif
char * p = strstr(header_buffer,"CONNECT"); /* 判断是否是http 隧道请求 */
if (p) {
LOG("receive CONNECT request\n");
is_http_tunnel = 1;
}
if (passwd_check && (strstr(header_buffer,"USER: xxxxxxxx") == NULL)) {
LOG("Check user pass failed\n");
return;
}
if (strstr(header_buffer,"GET /mproxy") >0) {
LOG("====== hand mproxy info request ====");
//返回mproxy的运行基本信息
hand_mproxy_info_req(client_sock,header_buffer);
return;
}
if (extract_host(header_buffer) < 0) {
LOG("Cannot extract host field,bad http protrotol");
return;
}
LOG("Host:%s port: %d io_flag:%d\n",remote_host,remote_port,io_flag);
}
}
if (http_tunnel == 1) {
#ifdef DEBUG
LOG(" ============ handle new client ============\n");
#endif
if (read_header(client_sock,header_buffer) < 0) {
LOG("Read Http header failed\n");
return;
}
#ifdef DEBUG
LOG(">>>Header:%s\n",header_buffer);
#endif
if (passwd_check && (strstr(header_buffer,"USER: 12345678$$&&") == NULL)) {
LOG("Check user pass failed\n");
return;
}
is_http_tunnel = 1;
}
if ((remote_sock = create_connection()) < 0) {
LOG("Cannot connect to host [%s:%d]\n",remote_host,remote_port);
return;
}
if (fork() == 0) { // 创建子进程用于从客户端转发数据到远端socket接口
if (strlen(header_buffer) > 0 && !is_http_tunnel) {
forward_header(remote_sock); //普通的http请求先转发header
}
forward_data(client_sock, remote_sock);
exit(0);
}
if (fork() == 0) { // 创建子进程用于转发从远端socket接口过来的数据到客户端
if (io_flag == W_S_ENC) {
io_flag = R_C_DEC; //发送请求给服务端进行编码,读取服务端的响应则进行解码
} else if (io_flag == R_C_DEC) {
io_flag = W_S_ENC; //接收客户端请求进行解码,那么响应客户端请求需要编码
}
if (is_http_tunnel) {
send_tunnel_ok(client_sock);
}
forward_data(remote_sock, client_sock);
exit(0);
}
close(remote_sock);
close(client_sock);
}
void forward_header(int destination_sock)
{
int len;
rewrite_header();
#ifdef DEBUG
LOG("================ The Forward HEAD =================");
LOG("%s\n",header_buffer);
#endif
len = strlen(header_buffer);
send_data(destination_sock,header_buffer,len) ;
}
int send_data(int socket,char * buffer,int len)
{
if (io_flag == W_S_ENC) {
int i;
for (i = 0; i < len ; i++) {
buffer[i] ^= 1;
}
}
return send(socket,buffer,len,0);
}
int receive_data(int socket, char * buffer, int len)
{
int n = recv(socket, buffer, len, 0);
if (io_flag == R_C_DEC && n > 0) {
int i;
for (i = 0; i< n; i++) {
buffer[i] ^= 1;
// printf("%d => %d\n",c,buffer[i]);
}
}
return n;
}
/* 代理中的完整URL转发前需改成 path 的形式 */
void rewrite_header(void)
{
char * p = strstr(header_buffer,"http://");
char * p0 = strchr(p,'\0');
char * p5 = strstr(header_buffer,"HTTP/"); /* "HTTP/" 是协议标识 如 "HTTP/1.1" */
int len = strlen(header_buffer);
if (p) {
char * p1 = strchr(p + 7,'/');
if (p1 && (p5 > p1)) {
//转换url到 path
memcpy(p,p1,(int)(p0 -p1));
int l = len - (p1 - p) ;
header_buffer[l] = '\0';
} else {
char * p2 = strchr(p,' '); //GET http://3g.sina.com.cn HTTP/1.1
// printf("%s\n",p2);
memcpy(p + 1,p2,(int)(p0-p2));
*p = '/'; //url 没有路径使用根
int l = len - (p2 - p ) + 1;
header_buffer[l] = '\0';
}
}
}
void forward_data(int source_sock, int destination_sock)
{
char buffer[BUF_SIZE];
int n;
while ((n = receive_data(source_sock, buffer, BUF_SIZE)) > 0) {
send_data(destination_sock, buffer, n);
}
shutdown(destination_sock, SHUT_RDWR);
shutdown(source_sock, SHUT_RDWR);
}
int create_connection(void)
{
int sock;
int optval = 10;
#ifdef OLD_API
struct sockaddr_in server_addr;
struct hostent *server;
#else
int status;
struct addrinfo hints, *server, *p;
char port[6];
#endif
#ifdef OLD_API
if ((sock = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
return CLIENT_SOCKET_ERROR;
}
if (setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, &optval, sizeof(optval)) < 0) {
return SERVER_SETSOCKOPT_ERROR;
}
if ((server = gethostbyname(remote_host)) == NULL) {
errno = EFAULT;
return CLIENT_RESOLVE_ERROR;
}
#else
memset(&hints, 0, sizeof hints);
hints.ai_family = PF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
hints.ai_flags |= AI_CANONNAME;
memset(port, 0, sizeof(port)/sizeof(char));
snprintf(port, sizeof(port)/sizeof(char), "%d", remote_port);
if ((status = getaddrinfo(remote_host, port, &hints, &server)) != 0) {
errno = EFAULT;
return CLIENT_RESOLVE_ERROR;
}
#endif
LOG("======= forward request to remote host:%s port:%d ======= \n",remote_host,remote_port);
#ifdef OLD_API
memset(&server_addr, 0, sizeof(server_addr));
server_addr.sin_family = AF_INET;
memcpy(&server_addr.sin_addr.s_addr, server->h_addr, server->h_length);
server_addr.sin_port = htons(remote_port);
if (connect(sock, (struct sockaddr *) &server_addr, sizeof(server_addr)) < 0) {
close(sock);
return CLIENT_CONNECT_ERROR;
}
#else
for (p = server; p != NULL; p = p->ai_next) {
if ((sock = socket(p->ai_family, p->ai_socktype, p->ai_protocol)) == -1) {
continue;
}
if (setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, &optval, sizeof(optval)) < 0) {
return SERVER_SETSOCKOPT_ERROR;
}
if (connect(sock, p->ai_addr, p->ai_addrlen) == -1) {
close(sock);
continue;
}
break;
}
if (p == NULL) {
return CLIENT_CONNECT_ERROR;
}
freeaddrinfo(server);
#endif
return sock;
}
int create_server_socket(int port)
{
int server_sock, optval;
struct sockaddr_in server_addr;
if ((server_sock = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
return SERVER_SOCKET_ERROR;
}
if (setsockopt(server_sock, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof(optval)) < 0) {
return SERVER_SETSOCKOPT_ERROR;
}
optval = 10;
if (setsockopt(server_sock, SOL_SOCKET, SO_KEEPALIVE, &optval, sizeof(optval)) < 0) {
return SERVER_SETSOCKOPT_ERROR;
}
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;
if (bind(server_sock, (struct sockaddr*)&server_addr, sizeof(server_addr)) != 0) {
return SERVER_BIND_ERROR;
}
if (listen(server_sock, 20) < 0) {
return SERVER_LISTEN_ERROR;
}
return server_sock;
}
/* 处理僵尸进程 */
void sigchld_handler(int signal)
{
while (waitpid(-1, NULL, WNOHANG) > 0);
}
void server_loop(void)
{
struct sockaddr_in client_addr;
socklen_t addrlen = sizeof(client_addr);
while (1) {
client_sock = accept(server_sock, (struct sockaddr*)&client_addr, &addrlen);
LOG("New Connection In <<<--- %s:%d\n", inet_ntoa(client_addr.sin_addr), client_addr.sin_port);
if (fork() == 0) { // 创建子进程处理客户端连接请求
close(server_sock);
handle_client(client_sock, client_addr);
exit(0);
}
close(client_sock);
}
}
void stop_server(void)
{
closelog();
kill(m_pid, SIGKILL);
}
void usage(void)
{
printf("Usage:\n");
printf(" -l <port number> specifyed local listen port \n");
printf(" -h <remote server and port> specifyed next hop server name\n");
printf(" -d <remote server and port> run as daemon\n");
printf ("-T tunnel the stream to openvpn\n");
printf ("-P check the user password\n");
printf("-E encode data when forwarding data\n");
printf ("-D decode data when receiving data\n");
exit (8);
}
void start_server(int daemon)
{
//初始化全局变量
header_buffer = (char *) malloc(MAX_HEADER_SIZE);
signal(SIGCHLD, sigchld_handler); // 防止子进程变成僵尸进程
if ((server_sock = create_server_socket(local_port)) < 0) {
// start server
LOG("Cannot run server on %d\n",local_port);
exit(server_sock);
}
if (daemon) {
pid_t pid;
if ((pid = fork()) == 0) {
server_loop();
} else if (pid > 0 ) {
m_pid = pid;
LOG("mporxy pid is: [%d]\n",pid);
close(server_sock);
} else {
LOG("Cannot daemonize\n");
exit(pid);
}
} else {
server_loop();
}
}
int main(int argc, char *argv[])
{
return _main(argc,argv);
}
int _main(int argc, char *argv[])
{
local_port = DEFAULT_LOCAL_PORT;
io_flag = FLG_NONE;
http_tunnel = 0;
passwd_check = 0;
int daemon = 0;
char info_buf[2048];
int opt;
char optstrs[] = ":l:h:dPTED";
char *p = NULL;
while (-1 != (opt = getopt(argc, argv, optstrs))) {
switch (opt) {
case 'l':
local_port = atoi(optarg);
break;
case 'h':
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 'd':
daemon = 1;
break;
case 'T':
http_tunnel = 1;
break;
case 'P':
passwd_check = 1;
break;
case 'E':
io_flag = W_S_ENC;
break;
case 'D':
io_flag = R_C_DEC;
break;
case ':':
printf("\nMissing argument after: -%c\n", optopt);
usage();
case '?':
printf("\nInvalid argument: %c\n", optopt);
default:
usage();
}
}
openlog("mproxy", LOG_CONS | LOG_PID | LOG_NDELAY, LOG_USER);
get_info(info_buf);
LOG("%s\n",info_buf);
start_server(daemon);
return 0;
}