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
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
|
/* $OpenBSD: l2tpd.c,v 1.8 2012/05/08 13:15:11 yasuoka Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/**@file L2TP(Layer Two Tunneling Protocol "L2TP") / RFC2661 */
/* $Id: l2tpd.c,v 1.8 2012/05/08 13:15:11 yasuoka Exp $ */
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <netinet/in.h>
#include <netinet/udp.h>
#if 0
#include <netinet6/ipsec.h>
#endif
#include <stdlib.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <unistd.h>
#include <netdb.h>
#include <syslog.h>
#include <signal.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include <stdarg.h>
#include <event.h>
#ifdef USE_LIBSOCKUTIL
#include <seil/sockfromto.h>
#else
#include "recvfromto.h"
#endif
#include "bytebuf.h"
#include "hash.h"
#include "slist.h"
#include "debugutil.h"
#include "l2tp.h"
#include "l2tp_subr.h"
#include "l2tp_local.h"
#include "addr_range.h"
#include "properties.h"
#include "config_helper.h"
#include "net_utils.h"
#ifdef L2TPD_DEBUG
#define L2TPD_ASSERT(x) ASSERT(x)
#define L2TPD_DBG(x) l2tpd_log x
#else
#define L2TPD_ASSERT(x)
#endif
#define L2TPD_IPSEC_POLICY_IN "in ipsec esp/transport//require"
#define L2TPD_IPSEC_POLICY_OUT "out ipsec esp/transport//require"
static void l2tpd_io_event (int, short, void *);
static inline int short_cmp (const void *, const void *);
static inline uint32_t short_hash (const void *, int);
/* sequence # of l2tpd ID */
static u_int l2tpd_id_seq = 0;
#ifndef USE_LIBSOCKUTIL
struct in_ipsec_sa_cookie { };
#endif
/* L2TP daemon instance */
/**
* initialize L2TP daemon instance
* <p>
* {@link _l2tpd#bind_sin} will return with .sin_family = AF_INET,
* .sin_port = 1701 and .sin_len = "appropriate value"
* </p>
*/
int
l2tpd_init(l2tpd *_this)
{
int i, off;
u_int id;
struct sockaddr_in sin4;
struct sockaddr_in6 sin6;
L2TPD_ASSERT(_this != NULL);
memset(_this, 0, sizeof(l2tpd));
slist_init(&_this->listener);
slist_init(&_this->free_session_id_list);
memset(&sin4, 0, sizeof(sin4));
sin4.sin_len = sizeof(sin4);
sin4.sin_family = AF_INET;
if (l2tpd_add_listener(_this, 0, L2TPD_DEFAULT_LAYER2_LABEL,
(struct sockaddr *)&sin4) != 0) {
return 1;
}
memset(&sin6, 0, sizeof(sin6));
sin6.sin6_len = sizeof(sin6);
sin6.sin6_family = AF_INET6;
if (l2tpd_add_listener(_this, 1, L2TPD_DEFAULT_LAYER2_LABEL,
(struct sockaddr *)&sin6) != 0) {
return 1;
}
_this->id = l2tpd_id_seq++;
if ((_this->ctrl_map = hash_create(short_cmp, short_hash,
L2TPD_TUNNEL_HASH_SIZ)) == NULL) {
log_printf(LOG_ERR, "hash_create() failed in %s(): %m",
__func__);
return 1;
}
if (slist_add(&_this->free_session_id_list,
(void *)L2TP_SESSION_ID_SHUFFLE_MARK) == NULL) {
l2tpd_log(_this, LOG_ERR, "slist_add() failed on %s(): %m",
__func__);
return 1;
}
off = random() % L2TP_SESSION_ID_MASK;
for (i = 0; i < L2TP_NCALL; i++) {
id = (i + off) % L2TP_SESSION_ID_MASK;
if (id == 0)
id = (off - 1) % L2TP_SESSION_ID_MASK;
if (slist_add(&_this->free_session_id_list,
(void *)(uintptr_t)id) == NULL) {
l2tpd_log(_this, LOG_ERR,
"slist_add() failed on %s(): %m", __func__);
return 1;
}
}
_this->ip4_allow = NULL;
_this->require_ipsec = 1;
_this->purge_ipsec_sa = 1;
_this->state = L2TPD_STATE_INIT;
return 0;
}
/*
* Add a {@link :l2tpd_listener} to the {@link ::l2tpd L2TP daemon}
* @param _this {@link ::l2tpd L2TP daemon}
* @param idx index of the lisnter
* @param label physical layer label (ex. "L2TP")
* @param bindaddr bind address
*/
int
l2tpd_add_listener(l2tpd *_this, int idx, const char *label,
struct sockaddr *bindaddr)
{
l2tpd_listener *plistener, *plsnr;
plistener = NULL;
if (idx == 0 && slist_length(&_this->listener) > 0) {
slist_itr_first(&_this->listener);
while (slist_itr_has_next(&_this->listener)) {
slist_itr_next(&_this->listener);
plsnr = slist_itr_remove(&_this->listener);
L2TPD_ASSERT(plsnr != NULL);
L2TPD_ASSERT(plsnr->sock == -1);
free(plsnr);
}
}
L2TPD_ASSERT(slist_length(&_this->listener) == idx);
if (slist_length(&_this->listener) != idx) {
l2tpd_log(_this, LOG_ERR,
"Invalid argument error on %s(): idx must be %d but %d",
__func__, slist_length(&_this->listener), idx);
goto fail;
}
if ((plistener = malloc(sizeof(l2tpd_listener))) == NULL) {
l2tpd_log(_this, LOG_ERR, "malloc() failed in %s: %m",
__func__);
goto fail;
}
memset(plistener, 0, sizeof(l2tpd_listener));
L2TPD_ASSERT(sizeof(plistener->bind) >= bindaddr->sa_len);
memcpy(&plistener->bind, bindaddr, bindaddr->sa_len);
if (plistener->bind.sin6.sin6_port == 0)
plistener->bind.sin6.sin6_port = htons(L2TPD_DEFAULT_UDP_PORT);
plistener->sock = -1;
plistener->self = _this;
plistener->index = idx;
strlcpy(plistener->phy_label, label, sizeof(plistener->phy_label));
if (slist_add(&_this->listener, plistener) == NULL) {
l2tpd_log(_this, LOG_ERR, "slist_add() failed in %s: %m",
__func__);
goto fail;
}
return 0;
fail:
if (plistener != NULL)
free(plistener);
return 1;
}
/* finalize L2TP daemon instance */
void
l2tpd_uninit(l2tpd *_this)
{
l2tpd_listener *plsnr;
L2TPD_ASSERT(_this != NULL);
slist_fini(&_this->free_session_id_list);
if (_this->ctrl_map != NULL) {
hash_free(_this->ctrl_map);
_this->ctrl_map = NULL;
}
if (_this->ip4_allow != NULL)
in_addr_range_list_remove_all(&_this->ip4_allow);
slist_itr_first(&_this->listener);
while (slist_itr_has_next(&_this->listener)) {
plsnr = slist_itr_next(&_this->listener);
L2TPD_ASSERT(plsnr != NULL);
L2TPD_ASSERT(plsnr->sock == -1);
free(plsnr);
}
slist_fini(&_this->listener);
event_del(&_this->ev_timeout); /* just in case */
_this->state = L2TPD_STATE_STOPPED;
_this->config = NULL;
}
/** assign the call to the l2tpd */
int
l2tpd_assign_call(l2tpd *_this, l2tp_call *call)
{
int shuffle_cnt;
u_int session_id;
shuffle_cnt = 0;
do {
session_id = (uintptr_t)slist_remove_first(
&_this->free_session_id_list);
if (session_id != L2TP_SESSION_ID_SHUFFLE_MARK)
break;
L2TPD_ASSERT(shuffle_cnt == 0);
if (shuffle_cnt++ > 0) {
l2tpd_log(_this, LOG_ERR,
"unexpected errror in %s(): free_session_id_list "
"full", __func__);
slist_add(&_this->free_session_id_list,
(void *)L2TP_SESSION_ID_SHUFFLE_MARK);
return 1;
}
slist_shuffle(&_this->free_session_id_list);
slist_add(&_this->free_session_id_list,
(void *)L2TP_SESSION_ID_SHUFFLE_MARK);
} while (1);
call->id = session_id;
return 0;
}
/* this function will be called when the call is released */
void
l2tpd_release_call(l2tpd *_this, l2tp_call *call)
{
slist_add(&_this->free_session_id_list, (void *)(uintptr_t)call->id);
}
/* start l2tpd listner */
static int
l2tpd_listener_start(l2tpd_listener *_this, char *ipsec_policy_in,
char *ipsec_policy_out)
{
int sock, ival;
l2tpd *_l2tpd;
char hbuf[NI_MAXHOST + NI_MAXSERV + 16];
sock = -1;
_l2tpd = _this->self;
if (_this->phy_label[0] == '\0')
strlcpy(_this->phy_label, L2TPD_DEFAULT_LAYER2_LABEL,
sizeof(_this->phy_label));
if ((sock = socket(_this->bind.sin6.sin6_family,
SOCK_DGRAM, IPPROTO_UDP)) < 0) {
l2tpd_log(_l2tpd, LOG_ERR,
"socket() failed in %s(): %m", __func__);
goto fail;
}
#if defined(IP_STRICT_RCVIF) && defined(USE_STRICT_RCVIF)
ival = 1;
if (setsockopt(sock, IPPROTO_IP, IP_STRICT_RCVIF, &ival, sizeof(ival))
!= 0)
l2tpd_log(_l2tpd, LOG_WARNING,
"%s(): setsockopt(IP_STRICT_RCVIF) failed: %m", __func__);
#endif
if ((ival = fcntl(sock, F_GETFL, 0)) < 0) {
l2tpd_log(_l2tpd, LOG_ERR,
"fcntl(,F_GETFL) failed in %s(): %m", __func__);
goto fail;
} else if (fcntl(sock, F_SETFL, ival | O_NONBLOCK) < 0) {
l2tpd_log(_l2tpd, LOG_ERR, "fcntl(,F_SETFL,O_NONBLOCK) failed "
"in %s(): %m", __func__);
goto fail;
}
ival = 1;
if (setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, &ival, sizeof(ival))
!= 0) {
l2tpd_log(_l2tpd, LOG_ERR,
"setsockopt(,,SO_REUSEPORT) failed in %s(): %m", __func__);
goto fail;
}
if (bind(sock, (struct sockaddr *)&_this->bind,
_this->bind.sin6.sin6_len) != 0) {
l2tpd_log(_l2tpd, LOG_ERR, "Binding %s/udp: %m",
addrport_tostring((struct sockaddr *)&_this->bind,
_this->bind.sin6.sin6_len, hbuf, sizeof(hbuf)));
goto fail;
}
#ifdef USE_LIBSOCKUTIL
if (setsockoptfromto(sock) != 0) {
l2tpd_log(_l2tpd, LOG_ERR,
"setsockoptfromto() failed in %s(): %m", __func__);
goto fail;
}
#else
if (_this->bind.sin6.sin6_family == AF_INET) {
ival = 1;
if (setsockopt(sock, IPPROTO_IP, IP_RECVDSTADDR, &ival,
sizeof(ival)) != 0) {
l2tpd_log(_l2tpd, LOG_ERR,
"setsockopt(,,IP_RECVDSTADDR) failed in %s(): %m",
__func__);
goto fail;
}
} else {
ival = 1;
if (setsockopt(sock, IPPROTO_IPV6, IPV6_RECVPKTINFO, &ival,
sizeof(ival)) != 0) {
l2tpd_log(_l2tpd, LOG_ERR,
"setsockopt(,,IPV6_PKTINFO) failed in %s(): %m",
__func__);
goto fail;
}
}
#endif
#ifdef IP_PIPEX
if (_this->bind.sin6.sin6_family == AF_INET) {
ival = 1;
if (setsockopt(sock, IPPROTO_IP, IP_PIPEX, &ival,
sizeof(ival)) != 0)
l2tpd_log(_l2tpd, LOG_WARNING,
"%s(): setsockopt(IP_PIPEX) failed: %m", __func__);
} else {
ival = 1;
if (setsockopt(sock, IPPROTO_IPV6, IPV6_PIPEX, &ival,
sizeof(ival)) != 0)
l2tpd_log(_l2tpd, LOG_WARNING,
"%s(): setsockopt(IPV6_PIPEX) failed: %m",
__func__);
}
#endif
#ifdef IP_IPSEC_POLICY
/*XXX */
if (ipsec_policy_in != NULL &&
setsockopt(sock, IPPROTO_IP, IP_IPSEC_POLICY,
ipsec_policy_in, ipsec_get_policylen(ipsec_policy_in)) < 0) {
l2tpd_log(_l2tpd, LOG_WARNING,
"setsockopt(,,IP_IPSEC_POLICY(in)) failed in %s(): %m",
__func__);
}
if (ipsec_policy_out != NULL &&
setsockopt(sock, IPPROTO_IP, IP_IPSEC_POLICY,
ipsec_policy_out, ipsec_get_policylen(ipsec_policy_out)) < 0) {
l2tpd_log(_l2tpd, LOG_WARNING,
"setsockopt(,,IP_IPSEC_POLICY(out)) failed in %s(): %m",
__func__);
}
#endif
_this->sock = sock;
event_set(&_this->ev_sock, _this->sock, EV_READ | EV_PERSIST,
l2tpd_io_event, _this);
event_add(&_this->ev_sock, NULL);
l2tpd_log(_l2tpd, LOG_INFO, "Listening %s/udp (L2TP LNS) [%s]",
addrport_tostring((struct sockaddr *)&_this->bind,
_this->bind.sin6.sin6_len, hbuf, sizeof(hbuf)), _this->phy_label);
return 0;
fail:
if (sock >= 0)
close(sock);
return 1;
}
/* start L2TP daemon */
int
l2tpd_start(l2tpd *_this)
{
int rval;
caddr_t ipsec_policy_in, ipsec_policy_out;
l2tpd_listener *plsnr;
rval = 0;
ipsec_policy_in = NULL;
ipsec_policy_out = NULL;
L2TPD_ASSERT(_this->state == L2TPD_STATE_INIT);
if (_this->state != L2TPD_STATE_INIT) {
l2tpd_log(_this, LOG_ERR, "Failed to start l2tpd: illegal "
"state.");
return -1;
}
if (_this->require_ipsec != 0) {
#if 0
/*
* Note: ipsec_set_policy() will assign the buffer for
* yacc parser stack, however it never free.
* it cause memory leak (-2000byte).
*/
if ((ipsec_policy_in = ipsec_set_policy(L2TPD_IPSEC_POLICY_IN,
strlen(L2TPD_IPSEC_POLICY_IN))) == NULL) {
l2tpd_log(_this, LOG_ERR,
"ipsec_set_policy(L2TPD_IPSEC_POLICY_IN) failed "
"at %s(): %s: %m", __func__, ipsec_strerror());
goto fail;
}
if ((ipsec_policy_out = ipsec_set_policy(L2TPD_IPSEC_POLICY_OUT,
strlen(L2TPD_IPSEC_POLICY_OUT))) == NULL) {
l2tpd_log(_this, LOG_ERR,
"ipsec_set_policy(L2TPD_IPSEC_POLICY_OUT) failed "
"at %s(): %s: %m", __func__, ipsec_strerror());
goto fail;
}
#endif
}
slist_itr_first(&_this->listener);
while (slist_itr_has_next(&_this->listener)) {
plsnr = slist_itr_next(&_this->listener);
rval |= l2tpd_listener_start(plsnr, ipsec_policy_in,
ipsec_policy_out);
}
if (ipsec_policy_in != NULL)
free(ipsec_policy_in);
if (ipsec_policy_out != NULL)
free(ipsec_policy_out);
if (rval == 0)
_this->state = L2TPD_STATE_RUNNING;
return rval;
#if 0
fail:
#endif
if (ipsec_policy_in != NULL)
free(ipsec_policy_in);
if (ipsec_policy_out != NULL)
free(ipsec_policy_out);
return 1;
}
/* stop l2tp lisnter */
static void
l2tpd_listener_stop(l2tpd_listener *_this)
{
char hbuf[NI_MAXHOST + NI_MAXSERV + 16];
if (_this->sock >= 0) {
event_del(&_this->ev_sock);
close(_this->sock);
l2tpd_log(_this->self, LOG_INFO,
"Shutdown %s/udp (L2TP LNS)",
addrport_tostring((struct sockaddr *)&_this->bind,
_this->bind.sin6.sin6_len, hbuf, sizeof(hbuf)));
_this->sock = -1;
}
}
/* stop immediattly without disconnect operation */
void
l2tpd_stop_immediatly(l2tpd *_this)
{
l2tpd_listener *plsnr;
slist_itr_first(&_this->listener);
while (slist_itr_has_next(&_this->listener)) {
plsnr = slist_itr_next(&_this->listener);
l2tpd_listener_stop(plsnr);
}
event_del(&_this->ev_timeout); /* XXX */
_this->state = L2TPD_STATE_STOPPED;
}
/*
* this function will be called when {@link ::_l2tp_ctrl control}
* is terminated.
*/
void
l2tpd_ctrl_finished_notify(l2tpd *_this)
{
if (_this->state != L2TPD_STATE_SHUTTING_DOWN)
return;
if (hash_first(_this->ctrl_map) != NULL)
return;
l2tpd_stop_immediatly(_this);
}
static void
l2tpd_stop_timeout(int fd, short evtype, void *ctx)
{
hash_link *hl;
l2tp_ctrl *ctrl;
l2tpd *_this;
_this = ctx;
l2tpd_log(_this, LOG_INFO, "Shutdown timeout");
for (hl = hash_first(_this->ctrl_map); hl != NULL;
hl = hash_next(_this->ctrl_map)) {
ctrl = hl->item;
l2tp_ctrl_stop(ctrl, 0);
}
l2tpd_stop_immediatly(_this);
}
/* stop L2TP daemon */
void
l2tpd_stop(l2tpd *_this)
{
int nctrls = 0;
hash_link *hl;
l2tp_ctrl *ctrl;
nctrls = 0;
event_del(&_this->ev_timeout);
if (l2tpd_is_stopped(_this))
return;
if (l2tpd_is_shutting_down(_this)) {
/* terminate immediately, when 2nd call */
l2tpd_stop_immediatly(_this);
return;
}
for (hl = hash_first(_this->ctrl_map); hl != NULL;
hl = hash_next(_this->ctrl_map)) {
ctrl = hl->item;
l2tp_ctrl_stop(ctrl, L2TP_STOP_CCN_RCODE_SHUTTING_DOWN);
nctrls++;
}
_this->state = L2TPD_STATE_SHUTTING_DOWN;
if (nctrls > 0) {
struct timeval tv0;
tv0.tv_usec = 0;
tv0.tv_sec = L2TPD_SHUTDOWN_TIMEOUT;
evtimer_set(&_this->ev_timeout, l2tpd_stop_timeout, _this);
evtimer_add(&_this->ev_timeout, &tv0);
return;
}
l2tpd_stop_immediatly(_this);
}
/*
* Configuration
*/
#define CFG_KEY(p, s) config_key_prefix((p), (s))
#define VAL_SEP " \t\r\n"
CONFIG_FUNCTIONS(l2tpd_config, l2tpd, config);
PREFIXED_CONFIG_FUNCTIONS(l2tp_ctrl_config, l2tp_ctrl, l2tpd->config,
phy_label);
int
l2tpd_reload(l2tpd *_this, struct properties *config, const char *name,
int default_enabled)
{
int i, do_start, aierr;
const char *val;
char *tok, *cp, buf[L2TPD_CONFIG_BUFSIZ], *label;
struct addrinfo *ai;
_this->config = config;
do_start = 0;
if (l2tpd_config_str_equal(_this, CFG_KEY(name, "enabled"), "true",
default_enabled)) {
/* care the case false-true flapping */
if (l2tpd_is_shutting_down(_this))
l2tpd_stop_immediatly(_this);
if (l2tpd_is_stopped(_this))
do_start = 1;
} else {
if (!l2tpd_is_stopped(_this))
l2tpd_stop(_this);
return 0;
}
if (do_start && l2tpd_init(_this) != 0)
return 1;
_this->config = config;
/* default value */
gethostname(_this->default_hostname, sizeof(_this->default_hostname));
_this->ctrl_in_pktdump = l2tpd_config_str_equal(_this,
"log.l2tp.ctrl.in.pktdump", "true", 0);
_this->data_in_pktdump = l2tpd_config_str_equal(_this,
"log.l2tp.data.in.pktdump", "true", 0);
_this->ctrl_out_pktdump = l2tpd_config_str_equal(_this,
"log.l2tp.ctrl.out.pktdump", "true", 0);
_this->data_out_pktdump = l2tpd_config_str_equal(_this,
"log.l2tp.data.out.pktdump", "true", 0);
_this->phy_label_with_ifname = l2tpd_config_str_equal(_this,
CFG_KEY(name, "label_with_ifname"), "true", 0);
/* parse ip4_allow */
in_addr_range_list_remove_all(&_this->ip4_allow);
val = l2tpd_config_str(_this, CFG_KEY(name, "ip4_allow"));
if (val != NULL) {
if (strlen(val) >= sizeof(buf)) {
l2tpd_log(_this, LOG_ERR, "configuration error at "
"l2tpd.ip4_allow: too long");
return 1;
}
strlcpy(buf, val, sizeof(buf));
for (cp = buf; (tok = strsep(&cp, VAL_SEP)) != NULL;) {
if (*tok == '\0')
continue;
if (in_addr_range_list_add(&_this->ip4_allow, tok)
!= 0) {
l2tpd_log(_this, LOG_ERR,
"configuration error at "
"l2tpd.ip4_allow: %s", tok);
return 1;
}
}
}
if (do_start) {
/*
* in the case of 1) cold-booted and 2) pptpd.enable
* toggled "false" to "true" do this, because we can
* assume that all pptpd listner are initialized.
*/
val = l2tpd_config_str(_this, CFG_KEY(name, "listener"));
if (val != NULL) {
if (strlen(val) >= sizeof(buf)) {
l2tpd_log(_this, LOG_ERR,
"configuration error at %s: too long",
CFG_KEY(name, "listener"));
return 1;
}
strlcpy(buf, val, sizeof(buf));
label = NULL;
/* it can accept multiple values with tab/space
* separation */
for (i = 0, cp = buf;
(tok = strsep(&cp, VAL_SEP)) != NULL;) {
if (*tok == '\0')
continue;
if (label == NULL) {
label = tok;
continue;
}
if ((aierr = addrport_parse(tok, IPPROTO_UDP,
&ai)) != 0) {
l2tpd_log(_this, LOG_ERR,
"configuration error at "
"l2tpd.listener: %s: %s", label,
gai_strerror(aierr));
label = NULL;
return 1;
}
if (l2tpd_add_listener(_this, i, label,
ai->ai_addr) != 0) {
freeaddrinfo(ai);
label = NULL;
break;
}
freeaddrinfo(ai);
label = NULL;
i++;
}
if (label != NULL) {
l2tpd_log(_this, LOG_ERR, "configuration "
"error at l2tpd.listener: %s", label);
return 1;
}
}
_this->purge_ipsec_sa = l2tpd_config_str_equal(_this,
CFG_KEY(name, "purge_ipsec_sa"), "true", 1);
_this->require_ipsec = l2tpd_config_str_equal(_this,
CFG_KEY(name, "require_ipsec"), "true", 1);
if (l2tpd_start(_this) != 0)
return 1;
}
return 0;
}
/*
* I/O functions
*/
/* logging when deny an access */
void
l2tpd_log_access_deny(l2tpd *_this, const char *reason, struct sockaddr *peer)
{
char hostbuf[NI_MAXHOST], servbuf[NI_MAXSERV];
if (getnameinfo(peer, peer->sa_len, hostbuf, sizeof(hostbuf),
servbuf, sizeof(servbuf), NI_NUMERICHOST | NI_NUMERICSERV) != 0) {
l2tpd_log(_this, LOG_ERR, "getnameinfo() failed at %s(): %m",
__func__);
return;
}
l2tpd_log(_this, LOG_ALERT, "Received packet from %s:%s/udp: "
"%s", hostbuf, servbuf, reason);
}
/* I/O event handler */
static void
l2tpd_io_event(int fd, short evtype, void *ctx)
{
int sz;
l2tpd *_l2tpd;
l2tpd_listener *_this;
socklen_t peerlen, socklen;
struct sockaddr_storage peer, sock;
u_char buf[8192];
void *nat_t;
_this = ctx;
_l2tpd = _this->self;
if ((evtype & EV_READ) != 0) {
peerlen = sizeof(peer);
socklen = sizeof(sock);
while (!l2tpd_is_stopped(_l2tpd)) {
#ifdef USE_LIBSOCKUTIL
int sa_cookie_len;
struct in_ipsec_sa_cookie sa_cookie;
sa_cookie_len = sizeof(sa_cookie);
if ((sz = recvfromto_nat_t(_this->sock, buf,
sizeof(buf), 0,
(struct sockaddr *)&peer, &peerlen,
(struct sockaddr *)&sock, &socklen,
&sa_cookie, &sa_cookie_len)) <= 0) {
#else
if ((sz = recvfromto(_this->sock, buf,
sizeof(buf), 0,
(struct sockaddr *)&peer, &peerlen,
(struct sockaddr *)&sock, &socklen)) <= 0) {
#endif
if (errno == EAGAIN || errno == EINTR)
break;
l2tpd_log(_l2tpd, LOG_ERR,
"recvfrom() failed in %s(): %m",
__func__);
l2tpd_stop(_l2tpd);
return;
}
/* source address check (allows.in) */
switch (peer.ss_family) {
case AF_INET:
#ifdef USE_LIBSOCKUTIL
if (sa_cookie_len > 0)
nat_t = &sa_cookie;
else
nat_t = NULL;
#else
nat_t = NULL;
#endif
/*
* XXX check source address when NAT-T
*/
if (in_addr_range_list_includes(
&_l2tpd->ip4_allow,
&((struct sockaddr_in *)&peer)->sin_addr))
l2tp_ctrl_input(_l2tpd, _this->index,
(struct sockaddr *)&peer,
(struct sockaddr *)&sock, nat_t,
buf, sz);
else
l2tpd_log_access_deny(_l2tpd,
"not allowed by acl.",
(struct sockaddr *)&peer);
break;
case AF_INET6:
/* XXX source address restriction in IPv6? */
l2tp_ctrl_input(_l2tpd, _this->index,
(struct sockaddr *)&peer,
(struct sockaddr *)&sock, NULL,
buf, sz);
break;
default:
l2tpd_log(_l2tpd, LOG_ERR,
"received from unknown address family = %d",
peer.ss_family);
break;
}
}
}
}
/*
* L2TP control
*/
l2tp_ctrl *
l2tpd_get_ctrl(l2tpd *_this, unsigned tunid)
{
hash_link *hl;
hl = hash_lookup(_this->ctrl_map, (void *)(uintptr_t)tunid);
if (hl == NULL)
return NULL;
return hl->item;
}
void
l2tpd_add_ctrl(l2tpd *_this, l2tp_ctrl *ctrl)
{
hash_insert(_this->ctrl_map, (void *)(uintptr_t)ctrl->tunnel_id, ctrl);
}
void
l2tpd_remove_ctrl(l2tpd *_this, unsigned tunid)
{
hash_delete(_this->ctrl_map, (void *)(uintptr_t)tunid, 0);
}
/*
* misc
*/
void
l2tpd_log(l2tpd *_this, int prio, const char *fmt, ...)
{
char logbuf[BUFSIZ];
va_list ap;
va_start(ap, fmt);
#ifdef L2TPD_MULTIPLE
snprintf(logbuf, sizeof(logbuf), "l2tpd id=%u %s", _this->id, fmt);
#else
snprintf(logbuf, sizeof(logbuf), "l2tpd %s", fmt);
#endif
vlog_printf(prio, logbuf, ap);
va_end(ap);
}
|