-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
xkcp_util.c
367 lines (312 loc) · 9.14 KB
/
xkcp_util.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
/********************************************************************\
* 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. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License*
* along with this program; if not, contact: *
* *
* Free Software Foundation Voice: +1-617-542-5942 *
* 59 Temple Place - Suite 330 Fax: +1-617-542-2652 *
* Boston, MA 02111-1307, USA [email protected] *
* *
\********************************************************************/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <sys/time.h>
#include <sys/ioctl.h>
#include <sys/types.h> /* See NOTES */
#include <sys/socket.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <netinet/tcp.h>
#include <event2/event.h>
#include <event2/event_struct.h>
#include <event2/bufferevent_ssl.h>
#include <event2/bufferevent.h>
#include <event2/buffer.h>
#include <event2/listener.h>
#include <event2/util.h>
#include <syslog.h>
#include "ikcp.h"
#include "xkcp_util.h"
#include "xkcp_config.h"
#include "commandline.h"
#include "debug.h"
static int task_list_count = 0;
int get_task_list_count()
{
return task_list_count;
}
void itimeofday(long *sec, long *usec)
{
struct timeval time;
gettimeofday(&time, NULL);
if (sec) *sec = time.tv_sec;
if (usec) *usec = time.tv_usec;
}
/* get clock in millisecond 64 */
IINT64 iclock64(void)
{
long s, u;
IINT64 value;
itimeofday(&s, &u);
value = ((IINT64)s) * 1000 + (u / 1000);
return value;
}
IUINT32 iclock()
{
return (IUINT32)(iclock64() & 0xfffffffful);
}
char *get_iface_ip(const char *ifname)
{
struct ifreq if_data;
struct in_addr in;
char *ip_str;
int sockd;
u_int32_t ip;
/* Create a socket */
if ((sockd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
debug(LOG_ERR, "socket(): %s", strerror(errno));
return NULL;
}
/* Get IP of internal interface */
strncpy(if_data.ifr_name, ifname, 15);
if_data.ifr_name[15] = '\0';
/* Get the IP address */
if (ioctl(sockd, SIOCGIFADDR, &if_data) < 0) {
debug(LOG_ERR, "ioctl(): SIOCGIFADDR %s", strerror(errno));
close(sockd);
return NULL;
}
memcpy((void *)&ip, (void *)&if_data.ifr_addr.sa_data + 2, 4);
in.s_addr = ip;
close(sockd);
ip_str = malloc(HTTP_IP_ADDR_LEN);
memset(ip_str, 0, HTTP_IP_ADDR_LEN);
if(ip_str&&inet_ntop(AF_INET, &in, ip_str, HTTP_IP_ADDR_LEN))
return ip_str;
if (ip_str) free(ip_str);
return NULL;
}
static void
__list_add(iqueue_head *entry, iqueue_head *prev, iqueue_head *next)
{
next->prev = entry;
entry->next = next;
entry->prev = prev;
prev->next = entry;
}
static void
__list_del(iqueue_head *prev, iqueue_head *next)
{
next->prev = prev;
prev->next = next;
}
void
add_task_tail(struct xkcp_task *task, iqueue_head *head) {
iqueue_head *entry = &task->head;
__list_add(entry, head->prev, head);
}
void
del_task(struct xkcp_task *task) {
iqueue_head *entry = &task->head;
__list_del(entry->prev, entry->next);
}
static int xkcp_output(const char *buf, int len, ikcpcb *kcp, void *user)
{
struct xkcp_proxy_param *ptr = user;
int nret = sendto(ptr->xkcpfd, buf, len, 0, (struct sockaddr *)&ptr->sockaddr, sizeof(ptr->sockaddr));
if (nret > 0)
debug(LOG_DEBUG, "xkcp_output conv [%d] fd [%d] len [%d], send datagram from %d",
kcp->conv, ptr->xkcpfd, len, nret);
else
debug(LOG_INFO, "xkcp_output conv [%d] fd [%d] send datagram error: (%s)",
kcp->conv, ptr->xkcpfd, strerror(errno));
return nret;
}
void xkcp_set_config_param(ikcpcb *kcp)
{
struct xkcp_param *param = xkcp_get_param();
kcp->output = xkcp_output;
ikcp_wndsize(kcp, param->sndwnd, param->rcvwnd);
ikcp_nodelay(kcp, param->nodelay, param->interval, param->resend, param->nc);
debug(LOG_DEBUG, "sndwnd [%d] rcvwnd [%d] nodelay [%d] interval [%d] resend [%d] nc [%d]",
param->sndwnd, param->rcvwnd, param->nodelay, param->interval, param->resend, param->nc);
}
static void set_tcp_no_delay(evutil_socket_t fd)
{
int one = 1;
setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one));
}
void *xkcp_tcp_event_cb(struct bufferevent *bev, short what, struct xkcp_task *task)
{
void *puser = NULL;
if (what & (BEV_EVENT_EOF|BEV_EVENT_ERROR)) {
if (task) {
puser = task->kcp->user;
debug(LOG_INFO, "tcp_client_event_cb what is [%d] socket [%d]",
what, bufferevent_getfd(bev));
if (task->bev != bev) {
bufferevent_free(task->bev);
debug(LOG_ERR, "impossible here\n");
}
ikcp_flush(task->kcp);
ikcp_release(task->kcp);
del_task(task);
free(task);
}
bufferevent_free(bev);
} else if (what & BEV_EVENT_CONNECTED) {
set_tcp_no_delay(bufferevent_getfd(bev));
}
return puser;
}
void xkcp_tcp_read_cb(struct bufferevent *bev, ikcpcb *kcp)
{
char buf[1400] = {0};
int len, nret;
struct evbuffer *input = bufferevent_get_input(bev);
while ((len = evbuffer_remove(input, buf, sizeof(buf))) > 0) {
nret = ikcp_send(kcp, buf, len);
debug(LOG_INFO, "xkcp_tcp_read_cb : conv [%d] read data from client [%d] len [%d] ikcp_send [%d]",
kcp->conv, bufferevent_getfd(bev), len, nret);
memset(buf, 0, 1400);
}
}
static void dump_task(struct xkcp_task *task, struct bufferevent *bev, int index) {
struct evbuffer *output = bufferevent_get_output(bev);
evbuffer_add_printf(output,
"[%d]\t connection [%d]\t conv [%d]:\n --->state [%d] nrcv_buf [%d] "
"nsnd_buf [%d] nrcv_que [%d] nsnd_que [%d] rcv_nxt [%d] probe [%d] "
"peek [%d] stream [%d]\n",
index, bufferevent_getfd(task->bev), task->kcp->conv, task->kcp->state,
task->kcp->nrcv_buf, task->kcp->nsnd_buf, task->kcp->nrcv_que,
task->kcp->nsnd_que, task->kcp->rcv_nxt, task->kcp->probe,
ikcp_peeksize(task->kcp), task->kcp->stream);
}
int get_task_list_size(iqueue_head *task_list)
{
struct xkcp_task *task;
int num = 0;
iqueue_foreach(task, task_list, xkcp_task_type, head) {
if (task->kcp) {
num++;
}
}
return num;
}
void dump_task_list(iqueue_head *task_list, struct bufferevent *bev) {
struct xkcp_task *task;
task_list_count = 0;
iqueue_foreach(task, task_list, xkcp_task_type, head) {
if (task->kcp) {
dump_task(task, bev, ++task_list_count);
}
}
debug(LOG_DEBUG, "dump_task_list number [%d]", task_list_count);
}
void xkcp_forward_all_data(iqueue_head *task_list)
{
struct xkcp_task *task;
iqueue_foreach(task, task_list, xkcp_task_type, head) {
if (task->kcp) {
xkcp_forward_data(task);
}
}
}
void xkcp_forward_data(struct xkcp_task *task)
{
while(1) {
char obuf[OBUF_SIZE] = {0};
int nrecv = ikcp_recv(task->kcp, obuf, OBUF_SIZE);
if (nrecv < 0) {
if (nrecv == -3)
debug(LOG_INFO, "obuf is small, need to extend it");
break;
}
debug(LOG_INFO, "xkcp_forward_data conv [%d] client[%d] send [%d]",
task->kcp->conv, bufferevent_getfd(task->bev), nrecv);
if (task->bev)
evbuffer_add(bufferevent_get_output(task->bev), obuf, nrecv);
else
debug(LOG_INFO, "this task has finished");
}
}
struct xkcp_task *
get_task_from_conv(int conv, iqueue_head *task_list)
{
struct xkcp_task *task;
iqueue_foreach(task, task_list, xkcp_task_type, head)
if (task->kcp && task->kcp->conv == conv) {
debug(LOG_DEBUG, "get_task_from_conv [%d]", task->kcp->conv);
return task;
}
return NULL;
}
ikcpcb *
get_kcp_from_conv(int conv, iqueue_head *task_list)
{
struct xkcp_task *task;
iqueue_foreach(task, task_list, xkcp_task_type, head)
if (task->kcp && task->kcp->conv == conv) {
return task->kcp;
}
return NULL;
}
int xkcp_main(int argc, char **argv)
{
struct xkcp_config *config = xkcp_get_config();
config_init();
parse_commandline(argc, argv);
if (config->main_loop == NULL) {
debug(LOG_ERR, "should set main_loop firstly");
exit(0);
}
if (config->daemon) {
debug(LOG_INFO, "Forking into background");
switch (fork()) {
case 0: /* child */
setsid();
config->main_loop();
break;
default: /* parent */
exit(0);
break;
}
} else {
config->main_loop();
}
return (0); /* never reached */
}
void
set_timer_interval(struct event *timeout)
{
struct timeval tv;
evutil_timerclear(&tv);
tv.tv_usec = xkcp_get_param()->interval;
event_add(timeout, &tv);
}
void xkcp_update_task_list(iqueue_head *task_list)
{
struct xkcp_task *task;
iqueue_foreach(task, task_list, xkcp_task_type, head) {
if (task->kcp) {
ikcp_update(task->kcp, iclock());
}
}
}
void xkcp_timer_event_cb(struct event *timeout, iqueue_head *task_list)
{
xkcp_update_task_list(task_list);
set_timer_interval(timeout);
}