forked from semigodking/redsocks
-
Notifications
You must be signed in to change notification settings - Fork 5
/
redudp.c
710 lines (604 loc) · 21.6 KB
/
redudp.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
/* redsocks2 - transparent TCP/UDP-to-proxy redirector
* Copyright (C) 2013-2017 Zhuofei Wang <semigodking@gmail.com>
*
* This code is based on redsocks project developed by Leonid Evdokimov.
* Licensed under the Apache License, Version 2.0 (the "License").
*
*
* redsocks - transparent TCP-to-proxy redirector
* Copyright (C) 2007-2011 Leonid Evdokimov <leon@darkk.net.ru>
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
#include <stdlib.h>
#include <search.h>
#include <string.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <assert.h>
#include "base.h"
#include "list.h"
#include "log.h"
#include "socks5.h"
#include "parser.h"
#include "main.h"
#include "redsocks.h"
#include "redudp.h"
#include "libc-compat.h"
#define DEFAULT_MAX_PKTQUEUE 5
#define DEFAULT_UDP_TIMEOUT 30
#define REDUDP_AUDIT_INTERVAL 10
// Multiple instances share the same buffer for message receiving
static char shared_buff[MAX_UDP_PACKET_SIZE];// max size of UDP packet is less than 64K
static void redudp_fini_instance(redudp_instance *instance);
static int redudp_fini();
struct bound_udp4_key {
struct in_addr sin_addr;
uint16_t sin_port;
};
struct bound_udp4 {
struct bound_udp4_key key;
int ref;
int fd;
time_t t_last_rx;
};
extern udprelay_subsys socks5_udp_subsys;
extern udprelay_subsys shadowsocks_udp_subsys;
static udprelay_subsys *relay_subsystems[] =
{
&socks5_udp_subsys,
&shadowsocks_udp_subsys,
};
/***********************************************************************
* Helpers
*/
// TODO: separate binding to privileged process (this operation requires uid-0)
static void* root_bound_udp4 = NULL; // to avoid two binds to same IP:port
static int bound_udp4_cmp(const void *a, const void *b)
{
return memcmp(a, b, sizeof(struct bound_udp4_key));
}
static void bound_udp4_mkkey(struct bound_udp4_key *key, const struct sockaddr_in *addr)
{
memset(key, 0, sizeof(*key));
key->sin_addr = addr->sin_addr;
key->sin_port = addr->sin_port;
}
static int bound_udp4_get(const struct sockaddr_in *addr)
{
struct bound_udp4_key key;
struct bound_udp4 *node, **pnode;
bound_udp4_mkkey(&key, addr);
// I assume, that memory allocation for lookup is awful, so I use
// tfind/tsearch pair instead of tsearch/check-result.
pnode = tfind(&key, &root_bound_udp4, bound_udp4_cmp);
if (pnode) {
assert((*pnode)->ref > 0);
(*pnode)->ref++;
(*pnode)->t_last_rx = redsocks_time(NULL);
return (*pnode)->fd;
}
node = calloc(1, sizeof(*node));
if (!node) {
log_errno(LOG_ERR, "calloc");
goto fail;
}
node->key = key;
node->ref = 1;
node->fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
node->t_last_rx = redsocks_time(NULL);
if (node->fd == -1) {
log_errno(LOG_ERR, "socket");
goto fail;
}
if (0 != make_socket_transparent(node->fd))
goto fail;
if (evutil_make_listen_socket_reuseable(node->fd)) {
log_errno(LOG_ERR, "evutil_make_listen_socket_reuseable");
goto fail;
}
if (0 != bind(node->fd, (struct sockaddr*)addr, sizeof(*addr))) {
log_errno(LOG_ERR, "bind");
goto fail;
}
if (0 != evutil_make_socket_nonblocking(node->fd)) {
log_errno(LOG_ERR, "evutil_make_socket_nonblocking");
goto fail;
}
pnode = tsearch(node, &root_bound_udp4, bound_udp4_cmp);
if (!pnode) {
log_errno(LOG_ERR, "tsearch(%p) == %p", node, pnode);
goto fail;
}
assert(node == *pnode);
return node->fd;
fail:
if (node) {
if (node->fd != -1)
close(node->fd);
free(node);
}
return -1;
}
static void bound_udp4_put(const struct sockaddr_in *addr)
{
struct bound_udp4_key key;
struct bound_udp4 **pnode, *node;
void *parent;
bound_udp4_mkkey(&key, addr);
pnode = tfind(&key, &root_bound_udp4, bound_udp4_cmp);
assert(pnode && (*pnode)->ref > 0);
node = *pnode;
node->ref--;
if (node->ref)
return;
parent = tdelete(node, &root_bound_udp4, bound_udp4_cmp);
assert(parent);
close(node->fd); // expanding `pnode` to avoid use after free
free(node);
}
/*
* This procedure is ued to audit tree items for destination addresses.
* For each destination address, if no packet received from it for a certain period,
* it is removed and the corresponding FD is closed.
*/
static void bound_udp4_action(const void *nodep, const VISIT which, const int depth)
{
time_t now;
struct bound_udp4 *datap;
void *parent;
char buf[RED_INET_ADDRSTRLEN];
switch (which) {
case preorder:
case postorder:
break;
case endorder:
case leaf:
now = redsocks_time(NULL);
datap = *(struct bound_udp4 **) nodep;
// TODO: find a proper way to make timeout configurable for each instance.
if (datap->t_last_rx + 20 < now) {
parent = tdelete(datap, &root_bound_udp4, bound_udp4_cmp);
assert(parent);
inet_ntop(AF_INET, &datap->key.sin_addr, &buf[0], sizeof(buf));
log_error(LOG_DEBUG, "Close UDP socket %d to %s:%u", datap->fd,
&buf[0], datap->key.sin_port);
close(datap->fd);
free(datap);
}
break;
}
}
static int do_tproxy(redudp_instance* instance)
{
return instance->config.destaddr.sin_addr.s_addr == 0;
}
struct sockaddr_in* get_destaddr(redudp_client *client)
{
if (do_tproxy(client->instance))
return &client->destaddr;
else
return &client->instance->config.destaddr;
}
/***********************************************************************
* Logic
*/
void redudp_drop_client(redudp_client *client)
{
redudp_log_error(client, LOG_DEBUG, "Dropping client @ state: %d", client->state);
enqueued_packet *q, *tmp;
if (client->instance->relay_ss->fini)
client->instance->relay_ss->fini(client);
if (client->timeoutev) {
if (evtimer_del(client->timeoutev) == -1)
redudp_log_errno(client, LOG_ERR, "event_del");
event_free(client->timeoutev);
}
list_for_each_entry_safe(q, tmp, &client->queue, list) {
list_del(&q->list);
free(q);
}
list_del(&client->list);
free(client);
}
void redudp_bump_timeout(redudp_client *client)
{
struct timeval tv;
tv.tv_sec = client->instance->config.udp_timeout;
tv.tv_usec = 0;
// TODO: implement udp_timeout_stream
if (event_add(client->timeoutev, &tv) != 0) {
redudp_log_error(client, LOG_WARNING, "event_add(&client->timeoutev, ...)");
redudp_drop_client(client);
}
}
void redudp_fwd_pkt_to_sender(redudp_client *client, void *buf, size_t len,
struct sockaddr_in * srcaddr)
{
size_t sent;
int fd;
redsocks_time(&client->last_relay_event);
redudp_bump_timeout(client);
// When working with TPROXY, we have to get sender FD from tree on
// receipt of each packet from relay.
fd = do_tproxy(client->instance) ? bound_udp4_get(srcaddr)
: event_get_fd(client->instance->listener);
if (fd == -1) {
redudp_log_error(client, LOG_WARNING, "bound_udp4_get failure");
return;
}
// TODO: record remote address in client
sent = sendto(fd, buf, len, 0,
(struct sockaddr*)&client->clientaddr, sizeof(client->clientaddr));
if (sent != len) {
redudp_log_error(client, LOG_WARNING, "sendto: I was sending %zd bytes, but only %zd were sent.",
len, sent);
return;
}
}
static int redudp_enqeue_pkt(redudp_client *client, struct sockaddr_in * destaddr, char *buf, size_t pktlen)
{
enqueued_packet *q = NULL;
if (client->queue_len >= client->instance->config.max_pktqueue) {
redudp_log_error(client, LOG_WARNING, "There are already %u packets in queue. Dropping.",
client->queue_len);
return -1;
}
q = malloc(sizeof(enqueued_packet) + pktlen);
if (!q) {
redudp_log_errno(client, LOG_ERR, "Can't enqueue packet: malloc");
return -1;
}
INIT_LIST_HEAD(&q->list);
memcpy(&q->destaddr, destaddr, sizeof(*destaddr));
q->len = pktlen;
memcpy(q->data, buf, pktlen);
client->queue_len += 1;
list_add_tail(&q->list, &client->queue);
return 0;
}
void redudp_flush_queue(redudp_client *client)
{
enqueued_packet *q, *tmp;
assert(client->instance->relay_ss->ready_to_fwd(client));
redudp_log_error(client, LOG_DEBUG, "Starting UDP relay");
list_for_each_entry_safe(q, tmp, &client->queue, list) {
client->instance->relay_ss->forward_pkt(client, (struct sockaddr *)&q->destaddr, q->data, q->len);
list_del(&q->list);
free(q);
}
client->queue_len = 0;
assert(list_empty(&client->queue));
}
static void redudp_timeout(int fd, short what, void *_arg)
{
redudp_client *client = _arg;
redudp_log_error(client, LOG_DEBUG, "Client timeout. First: %li, last_client: %li, last_relay: %li.",
client->first_event, client->last_client_event, client->last_relay_event);
redudp_drop_client(client);
}
static void redudp_first_pkt_from_client(redudp_instance *self, struct sockaddr_in *clientaddr, struct sockaddr_in *destaddr, char *buf, size_t pktlen)
{
redudp_client *client = calloc(1, sizeof(*client)+self->relay_ss->payload_len);
if (!client) {
log_errno(LOG_WARNING, "calloc");
return;
}
INIT_LIST_HEAD(&client->list);
INIT_LIST_HEAD(&client->queue);
client->instance = self;
memcpy(&client->clientaddr, clientaddr, sizeof(*clientaddr));
// TODO: remove client->destaddr
if (destaddr)
memcpy(&client->destaddr, destaddr, sizeof(client->destaddr));
client->timeoutev = evtimer_new(get_event_base(), redudp_timeout, client);
self->relay_ss->init(client);
redsocks_time(&client->first_event);
client->last_client_event = client->first_event;
redudp_bump_timeout(client);
list_add(&client->list, &self->clients);
redudp_log_error(client, LOG_DEBUG, "got 1st packet from client");
if (redudp_enqeue_pkt(client, destaddr, buf, pktlen) == -1)
goto fail;
if (self->relay_ss->connect_relay)
self->relay_ss->connect_relay(client);
return;
fail:
redudp_drop_client(client);
}
static void redudp_pkt_from_client(int fd, short what, void *_arg)
{
redudp_instance *self = _arg;
struct sockaddr_in clientaddr, destaddr, *pdestaddr;
ssize_t pktlen;
redudp_client *tmp, *client = NULL;
pdestaddr = do_tproxy(self) ? &destaddr : NULL;
assert(fd == event_get_fd(self->listener));
// destaddr will be filled with true destination if it is available
pktlen = red_recv_udp_pkt(fd, self->shared_buff, MAX_UDP_PACKET_SIZE, &clientaddr, pdestaddr);
if (pktlen == -1)
return;
if (!pdestaddr)
// In case tproxy is not used, use configured destination address instead.
pdestaddr = &self->config.destaddr;
// TODO: this lookup may be SLOOOOOW.
list_for_each_entry(tmp, &self->clients, list) {
if (0 == memcmp(&clientaddr, &tmp->clientaddr, sizeof(clientaddr))) {
client = tmp;
break;
}
}
if (client) {
redsocks_time(&client->last_client_event);
redudp_bump_timeout(client);
if (self->relay_ss->ready_to_fwd(client)) {
self->relay_ss->forward_pkt(client, (struct sockaddr *)pdestaddr, self->shared_buff, pktlen);
}
else {
redudp_enqeue_pkt(client, pdestaddr, self->shared_buff, pktlen);
}
}
else {
redudp_first_pkt_from_client(self, &clientaddr, pdestaddr, self->shared_buff, pktlen);
}
}
/***********************************************************************
* Init / shutdown
*/
static parser_entry redudp_entries[] =
{
{ .key = "local_ip", .type = pt_in_addr },
{ .key = "local_port", .type = pt_uint16 },
{ .key = "ip", .type = pt_in_addr },
{ .key = "port", .type = pt_uint16 },
{ .key = "type", .type = pt_pchar },
{ .key = "login", .type = pt_pchar },
{ .key = "password", .type = pt_pchar },
{ .key = "dest_ip", .type = pt_in_addr },
{ .key = "dest_port", .type = pt_uint16 },
{ .key = "udp_timeout", .type = pt_uint16 },
{ .key = "udp_timeout_stream", .type = pt_uint16 },
{ .key = "max_pktqueue", .type = pt_uint16 },
{ }
};
static list_head instances = LIST_HEAD_INIT(instances);
static int redudp_onenter(parser_section *section)
{
// FIXME: find proper way to calulate instance_payload_len
int instance_payload_len = 0;
udprelay_subsys **ss;
FOREACH(ss, relay_subsystems)
if (instance_payload_len < (*ss)->instance_payload_len)
instance_payload_len = (*ss)->instance_payload_len;
redudp_instance *instance = calloc(1, sizeof(*instance) + instance_payload_len);
if (!instance) {
parser_error(section->context, "Not enough memory");
return -1;
}
INIT_LIST_HEAD(&instance->list);
INIT_LIST_HEAD(&instance->clients);
instance->config.bindaddr.sin_family = AF_INET;
instance->config.bindaddr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
instance->config.relayaddr.sin_family = AF_INET;
instance->config.relayaddr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
instance->config.destaddr.sin_family = AF_INET;
instance->config.max_pktqueue = DEFAULT_MAX_PKTQUEUE;
instance->config.udp_timeout = DEFAULT_UDP_TIMEOUT;
instance->config.udp_timeout_stream = 180;
for (parser_entry *entry = §ion->entries[0]; entry->key; entry++)
entry->addr =
(strcmp(entry->key, "local_ip") == 0) ? (void*)&instance->config.bindaddr.sin_addr :
(strcmp(entry->key, "local_port") == 0) ? (void*)&instance->config.bindaddr.sin_port :
(strcmp(entry->key, "ip") == 0) ? (void*)&instance->config.relayaddr.sin_addr :
(strcmp(entry->key, "port") == 0) ? (void*)&instance->config.relayaddr.sin_port :
(strcmp(entry->key, "type") == 0) ? (void*)&instance->config.type :
(strcmp(entry->key, "login") == 0) ? (void*)&instance->config.login :
(strcmp(entry->key, "password") == 0) ? (void*)&instance->config.password :
(strcmp(entry->key, "dest_ip") == 0) ? (void*)&instance->config.destaddr.sin_addr :
(strcmp(entry->key, "dest_port") == 0) ? (void*)&instance->config.destaddr.sin_port :
(strcmp(entry->key, "max_pktqueue") == 0) ? (void*)&instance->config.max_pktqueue :
(strcmp(entry->key, "udp_timeout") == 0) ? (void*)&instance->config.udp_timeout:
(strcmp(entry->key, "udp_timeout_stream") == 0) ? (void*)&instance->config.udp_timeout_stream :
NULL;
section->data = instance;
return 0;
}
static int redudp_onexit(parser_section *section)
{
redudp_instance *instance = section->data;
char * err = NULL;
section->data = NULL;
for (parser_entry *entry = §ion->entries[0]; entry->key; entry++)
entry->addr = NULL;
instance->config.bindaddr.sin_port = htons(instance->config.bindaddr.sin_port);
instance->config.relayaddr.sin_port = htons(instance->config.relayaddr.sin_port);
instance->config.destaddr.sin_port = htons(instance->config.destaddr.sin_port);
if (instance->config.type) {
udprelay_subsys **ss;
FOREACH(ss, relay_subsystems) {
if (!strcmp((*ss)->name, instance->config.type)) {
instance->relay_ss = *ss;
list_add(&instance->list, &instances);
break;
}
}
if (!instance->relay_ss)
err = "invalid `type` for redudp";
}
else {
err = "no `type` for redudp";
}
if (instance->config.max_pktqueue == 0) {
parser_error(section->context, "max_pktqueue must be greater than 0.");
return -1;
}
if (instance->config.udp_timeout == 0) {
parser_error(section->context, "udp_timeout must be greater than 0.");
return -1;
}
if (instance->config.udp_timeout_stream < instance->config.udp_timeout) {
parser_error(section->context, "udp_timeout_stream should be not less than udp_timeout");
return -1;
}
return err?-1:0;
}
static int redudp_init_instance(redudp_instance *instance)
{
/* FIXME: redudp_fini_instance is called in case of failure, this
* function will remove instance from instances list - result
* looks ugly.
*/
int error;
int fd = -1;
char buf1[RED_INET_ADDRSTRLEN], buf2[RED_INET_ADDRSTRLEN];
instance->shared_buff = &shared_buff[0];
if (instance->relay_ss->instance_init
&& instance->relay_ss->instance_init(instance)) {
log_errno(LOG_ERR, "Failed to init UDP relay subsystem.");
goto fail;
}
fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
if (fd == -1) {
log_errno(LOG_ERR, "socket");
goto fail;
}
if (do_tproxy(instance)) {
int on = 1;
// iptables TPROXY target does not send packets to non-transparent sockets
if (0 != make_socket_transparent(fd))
goto fail;
error = setsockopt(fd, SOL_IP, IP_RECVORIGDSTADDR, &on, sizeof(on));
if (error) {
log_errno(LOG_ERR, "setsockopt(listener, SOL_IP, IP_RECVORIGDSTADDR)");
goto fail;
}
log_error(LOG_INFO, "redudp @ %s: TPROXY", red_inet_ntop(&instance->config.bindaddr, buf1, sizeof(buf1)));
}
else {
log_error(LOG_INFO, "redudp @ %s: destaddr=%s",
red_inet_ntop(&instance->config.bindaddr, buf1, sizeof(buf1)),
red_inet_ntop(&instance->config.destaddr, buf2, sizeof(buf2)));
}
if (apply_reuseport(fd))
log_error(LOG_WARNING, "Continue without SO_REUSEPORT enabled");
error = bind(fd, (struct sockaddr*)&instance->config.bindaddr, sizeof(instance->config.bindaddr));
if (error) {
log_errno(LOG_ERR, "bind");
goto fail;
}
error = evutil_make_socket_nonblocking(fd);
if (error) {
log_errno(LOG_ERR, "set nonblocking");
goto fail;
}
instance->listener = event_new(get_event_base(), fd, EV_READ | EV_PERSIST, redudp_pkt_from_client, instance);
if (!instance->listener) {
log_errno(LOG_ERR, "event_new");
goto fail;
}
error = event_add(instance->listener, NULL);
if (error) {
log_errno(LOG_ERR, "event_add");
goto fail;
}
return 0;
fail:
redudp_fini_instance(instance);
if (fd != -1) {
close(fd);
}
return -1;
}
/* Drops instance completely, freeing its memory and removing from
* instances list.
*/
static void redudp_fini_instance(redudp_instance *instance)
{
if (!list_empty(&instance->clients)) {
redudp_client *tmp, *client = NULL;
log_error(LOG_WARNING, "There are connected clients during shutdown! Disconnecting them.");
list_for_each_entry_safe(client, tmp, &instance->clients, list) {
redudp_drop_client(client);
}
}
if (instance->listener) {
if (event_del(instance->listener) != 0)
log_errno(LOG_WARNING, "event_del");
close(event_get_fd(instance->listener));
memset(&instance->listener, 0, sizeof(instance->listener));
}
if (instance->relay_ss->instance_fini)
instance->relay_ss->instance_fini(instance);
list_del(&instance->list);
free(instance->config.type);
free(instance->config.login);
free(instance->config.password);
memset(instance, 0, sizeof(*instance));
free(instance);
}
static struct event * audit_event = NULL;
static void redudp_audit(int sig, short what, void *_arg)
{
twalk(root_bound_udp4, bound_udp4_action);
}
static int redudp_init()
{
redudp_instance *tmp, *instance = NULL;
struct timeval audit_time;
struct event_base * base = get_event_base();
list_for_each_entry_safe(instance, tmp, &instances, list) {
if (redudp_init_instance(instance) != 0)
goto fail;
}
/* Start audit */
audit_time.tv_sec = REDUDP_AUDIT_INTERVAL;
audit_time.tv_usec = 0;
audit_event = event_new(base, -1, EV_TIMEOUT|EV_PERSIST, redudp_audit, NULL);
evtimer_add(audit_event, &audit_time);
return 0;
fail:
redudp_fini();
return -1;
}
static int redudp_fini()
{
redudp_instance *tmp, *instance = NULL;
/* stop audit */
if (audit_event) {
evtimer_del(audit_event);
event_free(audit_event);
audit_event = NULL;
}
list_for_each_entry_safe(instance, tmp, &instances, list)
redudp_fini_instance(instance);
return 0;
}
static parser_section redudp_conf_section =
{
.name = "redudp",
.entries = redudp_entries,
.onenter = redudp_onenter,
.onexit = redudp_onexit
};
app_subsys redudp_subsys =
{
.init = redudp_init,
.fini = redudp_fini,
.conf_section = &redudp_conf_section,
};
/* vim:set tabstop=4 softtabstop=4 shiftwidth=4: */
/* vim:set foldmethod=marker foldlevel=32 foldmarker={,}: */