forked from liudf0716/xkcptun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xkcp_server.c
257 lines (217 loc) · 7.52 KB
/
xkcp_server.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
/********************************************************************\
* 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 gnu@gnu.org *
* *
\********************************************************************/
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <netdb.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <syslog.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 "ikcp.h"
#include "debug.h"
#include "jwHash.h"
#include "xkcp_server.h"
#include "xkcp_config.h"
#include "xkcp_util.h"
#include "xkcp_mon.h"
#include "tcp_client.h"
#ifndef NI_MAXHOST
#define NI_MAXHOST 1025
#endif
#ifndef NI_MAXSERV
#define NI_MAXSERV 32
#endif
static short mport = 9087;
static jwHashTable *xkcp_hash = NULL;
jwHashTable * get_xkcp_hash()
{
return xkcp_hash;
}
static void timer_event_cb(evutil_socket_t fd, short event, void *arg)
{
hash_iterator(xkcp_hash, xkcp_update_task_list, HASHPTR);
set_timer_interval(arg);
}
static struct xkcp_task *create_new_tcp_connection(const int xkcpfd, struct event_base *base,
struct sockaddr_in *from, int from_len, int conv, iqueue_head *task_list)
{
struct xkcp_proxy_param *param = malloc(sizeof(struct xkcp_proxy_param));
memset(param, 0, sizeof(struct xkcp_proxy_param));
memcpy(¶m->sockaddr, from, from_len);
param->xkcpfd = xkcpfd;
param->addr_len = from_len;
ikcpcb *kcp_server = ikcp_create(conv, param);
xkcp_set_config_param(kcp_server);
struct xkcp_task *task = malloc(sizeof(struct xkcp_task));
assert(task);
task->kcp = kcp_server;
task->sockaddr = ¶m->sockaddr;
struct bufferevent *bev = bufferevent_socket_new(base, -1, BEV_OPT_CLOSE_ON_FREE);
if (!bev) {
debug(LOG_ERR, "bufferevent_socket_new failed [%s]", strerror(errno));
goto err;
}
task->bev = bev;
bufferevent_setcb(bev, tcp_client_read_cb, NULL, tcp_client_event_cb, task);
bufferevent_enable(bev, EV_READ);
if (bufferevent_socket_connect_hostname(bev, NULL, AF_INET,
xkcp_get_param()->remote_addr,
xkcp_get_param()->remote_port) < 0) {
bufferevent_free(bev);
debug(LOG_ERR, "bufferevent_socket_connect failed [%s]", strerror(errno));
goto err;
}
add_task_tail(task, task_list);
debug(LOG_INFO, "tcp client [%d] connect to [%s]:[%d] success", bufferevent_getfd(bev),
xkcp_get_param()->remote_addr, xkcp_get_param()->remote_port);
return task;
err:
free(param);
free(task);
return NULL;
}
static void accept_client_data(const int xkcpfd, struct event_base *base,
struct sockaddr_in *from, int from_len, char *data, int len)
{
char host[NI_MAXHOST] = {0};
char serv[NI_MAXSERV] = {0};
char key[NI_MAXHOST+NI_MAXSERV+1] = {0};
int nret = getnameinfo((struct sockaddr *) from, from_len,
host, sizeof(host), serv, sizeof(serv),
NI_NUMERICHOST | NI_DGRAM);
if (nret) {
debug(LOG_INFO, "accept_new_client: getnameinfo error %s", strerror(errno));
return ;
}
iqueue_head *task_list = NULL;
snprintf(key, NI_MAXHOST+NI_MAXSERV+1, "%s:%s", host, serv);
struct xkcp_task *task = NULL;
int conv = ikcp_getconv(data);
debug(LOG_DEBUG, "accept_new_client: [%s:%s] conv [%d] len [%d]", host, serv, conv, len);
if (get_ptr_by_str(xkcp_hash, key, &task_list) == HASHOK) {
//old client
task = get_task_from_conv(conv, task_list);
debug(LOG_DEBUG, "old client, task is %d", task!=NULL?1:0);
if (!task) {
// new tcp connection
task = create_new_tcp_connection(xkcpfd, base, from, from_len, conv, task_list);
}
} else {
// new client
if (!task_list) {
debug(LOG_DEBUG, "new client");
task_list = malloc(sizeof(iqueue_head));
iqueue_init(task_list);
}
add_ptr_by_str(xkcp_hash, key, task_list);
task = create_new_tcp_connection(xkcpfd, base, from, from_len, conv, task_list);
}
if (task && task->kcp) {
int nret = ikcp_input(task->kcp, data, len);
if (nret < 0) {
debug(LOG_INFO, "[%d] ikcp_input failed [%d]", task->kcp->conv, nret);
}
}
if (task_list) {
debug(LOG_DEBUG, "accept_client_data: xkcp_forward_all_data ...");
xkcp_forward_all_data(task_list);
}
}
static void xkcp_rcv_cb(const int sock, short int which, void *arg)
{
struct event_base *base = arg;
struct sockaddr_in clientaddr;
int clientlen = sizeof(clientaddr);
memset(&clientaddr, 0, clientlen);
char buf[BUF_RECV_LEN] = {0};
int len = recvfrom(sock, buf, sizeof(buf) - 1, 0, (struct sockaddr *) &clientaddr, &clientlen);
if (len > 0) {
accept_client_data(sock, base, &clientaddr, clientlen, buf, len);
}
}
static int set_xkcp_listener()
{
short lport = xkcp_get_param()->local_port;
struct sockaddr_in sin;
char *addr = get_iface_ip(xkcp_get_param()->local_interface);
if (!addr) {
debug(LOG_ERR, "get_iface_ip [%s] failed", xkcp_get_param()->local_interface);
exit(0);
}
memset(&sin, 0, sizeof(sin));
sin.sin_family = AF_INET;
sin.sin_addr.s_addr = inet_addr(addr);
sin.sin_port = htons(lport);
int xkcp_fd = socket(AF_INET, SOCK_DGRAM, 0);
if (bind(xkcp_fd, (struct sockaddr *) &sin, sizeof(sin))) {
debug(LOG_ERR, "xkcp_fd bind() failed %s ", strerror(errno));
exit(EXIT_FAILURE);
}
return xkcp_fd;
}
static void task_list_free(iqueue_head *task_list)
{
// delete task_list
}
int server_main_loop()
{
struct event timer_event,
*xkcp_event = NULL;
struct event_base *base = NULL;
struct evconnlistener *mon_listener = NULL;
base = event_base_new();
if (!base) {
debug(LOG_ERR, "event_base_new()");
exit(0);
}
xkcp_hash = create_hash(100);
int xkcp_fd = set_xkcp_listener();
mon_listener = set_xkcp_mon_listener(base, mport, xkcp_hash);
set_xkcp_server_flag(1); // set it's xkcp server
xkcp_event = event_new(base, xkcp_fd, EV_READ|EV_PERSIST, xkcp_rcv_cb, base);
event_add(xkcp_event, NULL);
event_assign(&timer_event, base, -1, EV_PERSIST, timer_event_cb, &timer_event);
set_timer_interval(&timer_event);
event_base_dispatch(base);
evconnlistener_free(mon_listener);
close(xkcp_fd);
event_base_free(base);
delete_hash(xkcp_hash, task_list_free, HASHPTR/*value*/, HASHSTRING/*key*/);
return 0;
}
int main(int argc, char **argv)
{
struct xkcp_config *config = xkcp_get_config();
config->main_loop = server_main_loop;
return xkcp_main(argc, argv);
}