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
|
#include <asm-generic/socket.h>
#include <signal.h>
#include <stdio.h>
#include <string.h>
#include <getopt.h>
#include "submodule/log.c-patched/src/log.h"
#include <stdint.h>
#include <stdlib.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/mman.h>
#include <sys/poll.h>
#include <sys/socket.h>
#include <time.h>
#include <unistd.h>
#include <signal.h>
#include <sys/epoll.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <pthread.h>
#include "config.h"
#define dbgchr(x) log_info("%c", x)
#define MAX_CLIENTS 10;
#define FD_SOCKADDR_DBG(x) log_info( \
"fd: %d; state: %d", x.fd, x.is_active \
);
enum tcpf_mode {
TCPF_SERVER,
TCPF_CLIENT
};
struct poll_queue {
pthread_mutex_t lock;
uint32_t ids;
};
struct runtime_opts {
// enum tcpf_mode mode;
// uint16_t srcport;
uint16_t listenport;
char* addr;
};
struct epoll_fd_queue {
struct epoll_event *events_arrive;
int i;
};
struct posix_thread_poll_thread {
pthread_t pthread;
int state;
};
struct posix_thread_handler
{
struct posix_thread_poll_thread poll_thread;
struct posix_thread_poll_thread poll_recv_thread;
struct posix_thread_poll_thread gc_eventloop; /* currenly unused */
};
struct _fd_sockaddr_list {
struct sockaddr_in *sockaddr;
int fd;
int is_active; /* gate, allow rewrite or not */
};
struct fd_sockaddr_list {
pthread_mutex_t fd_sockaddr_lock;
struct _fd_sockaddr_list *list;
};
/* thread pool section */
struct _th_pool {
int handled_fd;
short is_active;
short need_join;
pthread_t th;
};
struct th_pool {
pthread_mutex_t th_pool_mutex;
struct _th_pool *th_pool;
int size;
};
struct server_ctx {
/* our tcp-fd */
int tcpfd;
/* handle tcp poll */
int epoll_fd;
/* monitor client accept */
int epoll_recv_fd;
/* handle accept fd appended by epoll_ctl */
struct epoll_event *acceptfd_watchlist_event;
/* hold stack ptr from enter_eventloop func */
struct fd_sockaddr_list *fd_sockaddr_list;
struct th_pool *th_pool;
struct epoll_fd_queue *epoll_fd_queue; /* probably unused */
volatile int *need_exit_ptr;
};
struct start_private_conn_details {
struct server_ctx *srv_ctx;
int acceptfd;
};
volatile int g_need_exit = 0;
static void review_config(struct runtime_opts *r_opts)
{
printf("socks5 server listen at %u\n", r_opts->listenport);
}
static void r_opts_clean(struct runtime_opts *r_opts)
{
free(r_opts->addr);
}
static int setup_addr_storage(struct sockaddr_storage *ss_addr,
struct runtime_opts *r_opts)
{
int ret = 0;
struct sockaddr_in *sockaddr_v4 = (struct sockaddr_in*)ss_addr;
memset(sockaddr_v4, 0, sizeof(*sockaddr_v4));
ret = inet_pton(AF_INET, r_opts->addr, &sockaddr_v4->sin_addr);
if (ret == 1) {
sockaddr_v4->sin_family = AF_INET;
sockaddr_v4->sin_port = htons(r_opts->listenport);
return 0;
}
return -1;
}
static int create_sock_ret_fd(struct sockaddr_storage *ss_addr)
{
socklen_t len = sizeof(struct sockaddr_in);
int ret = 0;
int fd;
fd = socket(AF_INET, SOCK_STREAM | SOCK_NONBLOCK, 0);
if (fd < 0) {
perror("socket()");
return -1;
}
int value = 1;
setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &value, sizeof(len));
ret = bind(fd, (struct sockaddr*)ss_addr, len);
if (ret < 0) {
perror("bind()");
close(fd);
return -1;
}
ret = listen(fd, 256);
if (ret < 0) {
perror("listen()");
close(fd);
return -1;
}
return fd;
}
static void signal_cb(int signum)
{
printf("signal detected, exiting...\n");
g_need_exit = 1;
}
static int server_reg_sigaction(void)
{
struct sigaction sa;
int ret;
memset(&sa, 0, sizeof(struct sigaction));
sa.sa_handler = signal_cb;
ret = sigaction(SIGINT, &sa, NULL);
if (ret < 0) {
return -1;
}
return 0;
}
static void setup_epoll(struct server_ctx *srv_ctx)
{
srv_ctx->epoll_fd = epoll_create1(EPOLL_CLOEXEC);
srv_ctx->epoll_recv_fd = epoll_create(EPOLL_CLOEXEC);
}
static void free_fd_sockaddr(struct fd_sockaddr_list *fdsocklist)
{
free(fdsocklist->list);
}
static int install_acceptfd_to_epoll(struct server_ctx *srv_ctx, int acceptfd)
{
struct epoll_event ev;
ev.data.fd = acceptfd;
ev.events = EPOLLIN;
epoll_ctl(srv_ctx->epoll_recv_fd, EPOLL_CTL_ADD, acceptfd, &ev);
/* start long poll, append accept fd into */
return 0;
}
static int uninstall_acceptfd_from_epoll(struct server_ctx *srv_ctx, int acceptfd)
{
struct epoll_event ev;
ev.data.fd = acceptfd;
ev.events = EPOLLIN;
epoll_ctl(srv_ctx->epoll_recv_fd, EPOLL_CTL_DEL, acceptfd, &ev);
/* start long poll, append accept fd into */
return 0;
}
static void uninst_th_for_fd(struct th_pool *thpool, int fd)
{
pthread_mutex_lock(&thpool->th_pool_mutex);
for(int i = 0; i < FREE_THREAD_ALLOC; i++) {
if (thpool->th_pool[i].handled_fd == fd) {
thpool->th_pool[i].is_active = 0;
thpool->th_pool[i].need_join = 1;
thpool->size = thpool->size - 1;
}
}
pthread_mutex_unlock(&thpool->th_pool_mutex);
}
/* init fd2sockaddr function */
static void* start_long_poll(void *srv_ctx_voidptr) {
struct server_ctx *srv_ctx = (struct server_ctx*)srv_ctx_voidptr;
int ret = 0;
int n_ready_conn = 0;
char ip_str[INET_ADDRSTRLEN];
struct epoll_event tcpfd_event_list[MAX_ACCEPT_WORKER]; /* monitor tcpfd for accept request */
struct epoll_event ev;
ev.data.fd = srv_ctx->tcpfd;
ev.events = EPOLLIN;
struct sockaddr_in sockaddr;
socklen_t socksize = sizeof(struct sockaddr_in);
epoll_ctl(srv_ctx->epoll_fd, EPOLL_CTL_ADD, srv_ctx->tcpfd, &ev);
while(!g_need_exit) {
n_ready_conn = epoll_wait(srv_ctx->epoll_fd, tcpfd_event_list,
MAX_ACCEPT_WORKER, 20);
if (n_ready_conn > 0) {
for(int i = 0; i < n_ready_conn; i++) {
/* need call func*/
ret = accept(tcpfd_event_list[i].data.fd,
(struct sockaddr*)&sockaddr, &socksize);
/* start adding accept fd into watchlist */
install_acceptfd_to_epoll(srv_ctx, ret);
inet_ntop(AF_INET, &sockaddr.sin_addr, ip_str, INET_ADDRSTRLEN);
log_info("accepted [%d] %s", ret, ip_str);
}
}
// server_accept_to_epoll(srv_ctx, tcpfd_event_list, &ev);
}
}
static void* start_long_poll_receiver(void *srv_ctx_voidptr)
{
struct server_ctx *srv_ctx = (struct server_ctx*)srv_ctx_voidptr;
struct start_private_conn_details start_private_conn2thread;
struct _th_pool _th_pool[FREE_THREAD_ALLOC];
memset(_th_pool, 0, sizeof(struct _th_pool) * FREE_THREAD_ALLOC);
struct th_pool th_pool = {
.th_pool = _th_pool,
.size = 0,
};
pthread_mutex_init(&th_pool.th_pool_mutex, NULL);
srv_ctx->th_pool = &th_pool;
start_private_conn2thread.srv_ctx = srv_ctx;
int n_ready_read = 0;
while(!g_need_exit) {
n_ready_read = epoll_wait(srv_ctx->epoll_recv_fd,
srv_ctx->acceptfd_watchlist_event,
EPOLL_ACCEPTFD_WATCHLIST_LEN,
20);
if (n_ready_read < 0) {
perror("epoll_wait");
}
if (n_ready_read > 0) {
for (int i = 0; i < n_ready_read; i++) {
close(srv_ctx->acceptfd_watchlist_event[i].data.fd);
}
printf("event available to read %d\n", n_ready_read);
}
/* todo: run cleaner here */
}
}
static int enter_eventloop(struct server_ctx *srv_ctx)
{
struct posix_thread_handler posix_thread_handler;
struct fd_sockaddr_list fd_sockaddr_list;
/* assign the pointer */
srv_ctx->fd_sockaddr_list = &fd_sockaddr_list;
/* appended from srv_ctx->epoll_recv_fd
* warn: located on stack
*/
struct epoll_event acceptfd_watchlist_event[EPOLL_ACCEPTFD_WATCHLIST_LEN];
srv_ctx->acceptfd_watchlist_event = acceptfd_watchlist_event;
setup_epoll(srv_ctx);
pthread_create(&posix_thread_handler.poll_thread.pthread,
NULL, start_long_poll, (void*)srv_ctx);
/* set state to 1 */
posix_thread_handler.poll_thread.state = 1;
/* start our second receiver */
pthread_create(&posix_thread_handler.poll_recv_thread.pthread,
NULL, start_long_poll_receiver, (void*)srv_ctx);
/* set state to 1 */
posix_thread_handler.poll_recv_thread.state = 1;
/* start busy wait */
while(!g_need_exit) {
usleep(200);
}
close(srv_ctx->epoll_fd);
close(srv_ctx->epoll_recv_fd);
free_fd_sockaddr(&fd_sockaddr_list);
return 0;
}
static int main_server(struct runtime_opts *r_opts)
{
int ret = 0;
struct server_ctx *srv_ctx = (struct server_ctx*)malloc(sizeof(struct server_ctx));
memset(srv_ctx, 0, sizeof(struct server_ctx));
struct sockaddr_storage ss_addr;
/* link our ptr */
srv_ctx->need_exit_ptr = &g_need_exit;
review_config(r_opts);
if (setup_addr_storage(&ss_addr, r_opts) == -1) {
fprintf(stderr, "Invalid ip format\n");
}
if ((ret = create_sock_ret_fd(&ss_addr)) == -1) {
fprintf(stderr, "socket failed\n");
}
srv_ctx->tcpfd = ret;
if ((ret = server_reg_sigaction()) == -1) {
fprintf(stderr, "signal handler failed\n");
}
printf("server listening on %s:%d\n", r_opts->addr, r_opts->listenport);
if ((ret = enter_eventloop(srv_ctx) == -1)) {
fprintf(stderr, "error eventloop\n");
}
r_opts_clean(r_opts);
close(ret);
free(srv_ctx);
return 0;
}
static int parseopt(int argc, char **argv, struct runtime_opts *r_opts)
{
int optcounter = 0;
int c = 0;
static struct option opt_table[] = {
{"listen", required_argument, 0, 'l'},
{"addr", required_argument, 0, 'a'},
{0, 0, 0, 0}
};
while(1) {
c = getopt_long(argc, argv, "l:a:", opt_table, &optcounter);
if (c == -1)
break;
switch (c) {
case 'l':
r_opts->listenport = atoi(optarg);
break;
case 'a':
// strcpy(, optarg);
r_opts->addr = strdup(optarg);
break;
}
}
}
int main(int argc, char **argv)
{
short ret = 0;
struct runtime_opts runtime_opts;
parseopt(argc, argv, &runtime_opts);
// if (runtime_opts.mode == TCPF_SERVER) {
ret = main_server(&runtime_opts);
// }
return ret;
}
|