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
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
|
# $OpenBSD: Makefile,v 1.23 2018/05/28 20:59:28 bluhm Exp $
# This test needs a manual setup of four machines, the make
# target create-setup can be used to distribute the configuration.
# The setup is the same as for regress/sys/net/pf_forward.
# Set up machines: SRC IPS RT ECO
# SRC is the machine where this makefile is running.
# IPS is running IPsec, it is reflecting or forwarding packets.
# RT is a router forwarding packets, maximum MTU is 1300.
# ECO is reflecting the ping and UDP and TCP echo packets.
#
# By choosing the net prefix of the outgoing packet the mode is selected
# 5 -> 5 : transport v4
# 4 -> 5 : transport v6
# 8 -> c : tunnel v4 stack v4
# 8 -> c : tunnel v4 stack v6
# 8 -> d : tunnel v6 stack v4
# 8 -> d : tunnel v6 stack v6
# 8 -> e : tunnel v4 forward v4
# 8 -> e : tunnel v4 forward v6
# 8 -> f : tunnel v6 forward v4
# 8 -> f : tunnel v6 forward v6
#
# 1400 1300
# +---+ 06 +---+ 1 +---+ 2 +---+
# |SRC| ----> |IPS| ----> |RT | ----> |ECO|
# +---+ 458 5 +---+ cd +---+ ef +---+
# out in out in out in
#
# The encapsulation is chosen by the digit before
# 0,1 ESP
# 2,3 AH
# 4,5 IPIP
# 6,7 IPCOMP
# 8,9 BUNDLE
PREFIX_IPV4 ?= 10.188.1
PREFIX_IPV6 ?= fdd7:e83e:66bc:1
# IPv4 outgoing address is selected by route if address of cloning route,
# so SRC_TRANSP_IPV4 and IPS_TRANSP_IPV4 must be in same net
# IPv6 outgoing address is selected common prefix, 4 and 5 are close together
# SRC_TRANSP_IPV6 and IPS_TRANSP_IPV6 should be in different network
# to avoid encryption of neighbor discovery packets
SRC_OUT_IPV4 ?= ${PREFIX_IPV4}00.17
SRC_OUT_IPV6 ?= ${PREFIX_IPV6}00::17
SRC_BUNDLE_IPV4 ?= ${PREFIX_IPV4}06.17
SRC_BUNDLE_IPV6 ?= ${PREFIX_IPV6}06::17
SRC_ESP_TRANSP_IPV4 ?= ${PREFIX_IPV4}05.17
SRC_ESP_TRANSP_IPV6 ?= ${PREFIX_IPV6}04::17
SRC_ESP_TUNNEL_IPV4 ?= ${PREFIX_IPV4}08.17
SRC_ESP_TUNNEL_IPV6 ?= ${PREFIX_IPV6}08::17
SRC_AH_TRANSP_IPV4 ?= ${PREFIX_IPV4}25.17
SRC_AH_TRANSP_IPV6 ?= ${PREFIX_IPV6}24::17
SRC_AH_TUNNEL_IPV4 ?= ${PREFIX_IPV4}28.17
SRC_AH_TUNNEL_IPV6 ?= ${PREFIX_IPV6}28::17
SRC_IPIP_TRANSP_IPV4 ?= ${PREFIX_IPV4}45.17
SRC_IPIP_TRANSP_IPV6 ?= ${PREFIX_IPV6}44::17
SRC_IPIP_TUNNEL_IPV4 ?= ${PREFIX_IPV4}48.17
SRC_IPIP_TUNNEL_IPV6 ?= ${PREFIX_IPV6}48::17
SRC_IPCOMP_TRANSP_IPV4 ?= ${PREFIX_IPV4}65.17
SRC_IPCOMP_TRANSP_IPV6 ?= ${PREFIX_IPV6}64::17
SRC_IPCOMP_TUNNEL_IPV4 ?= ${PREFIX_IPV4}68.17
SRC_IPCOMP_TUNNEL_IPV6 ?= ${PREFIX_IPV6}68::17
SRC_BUNDLE_TRANSP_IPV4 ?= ${PREFIX_IPV4}85.17
SRC_BUNDLE_TRANSP_IPV6 ?= ${PREFIX_IPV6}84::17
SRC_BUNDLE_TUNNEL_IPV4 ?= ${PREFIX_IPV4}88.17
SRC_BUNDLE_TUNNEL_IPV6 ?= ${PREFIX_IPV6}88::17
IPS_IN_IPV4 ?= ${PREFIX_IPV4}00.70
IPS_IN_IPV6 ?= ${PREFIX_IPV6}00::70
IPS_OUT_IPV4 ?= ${PREFIX_IPV4}01.70
IPS_OUT_IPV6 ?= ${PREFIX_IPV6}01::70
IPS_BUNDLE_IPV4 ?= ${PREFIX_IPV4}06.70
IPS_BUNDLE_IPV6 ?= ${PREFIX_IPV6}06::70
IPS_ESP_TRANSP_IPV4 ?= ${PREFIX_IPV4}05.70
IPS_ESP_TRANSP_IPV6 ?= ${PREFIX_IPV6}05::70
IPS_ESP_TUNNEL4_IPV4 ?= ${PREFIX_IPV4}12.70
IPS_ESP_TUNNEL4_IPV6 ?= ${PREFIX_IPV6}0c::70
IPS_ESP_TUNNEL6_IPV4 ?= ${PREFIX_IPV4}13.70
IPS_ESP_TUNNEL6_IPV6 ?= ${PREFIX_IPV6}0d::70
IPS_AH_TRANSP_IPV4 ?= ${PREFIX_IPV4}25.70
IPS_AH_TRANSP_IPV6 ?= ${PREFIX_IPV6}25::70
IPS_AH_TUNNEL4_IPV4 ?= ${PREFIX_IPV4}32.70
IPS_AH_TUNNEL4_IPV6 ?= ${PREFIX_IPV6}2c::70
IPS_AH_TUNNEL6_IPV4 ?= ${PREFIX_IPV4}33.70
IPS_AH_TUNNEL6_IPV6 ?= ${PREFIX_IPV6}2d::70
IPS_IPIP_TRANSP_IPV4 ?= ${PREFIX_IPV4}45.70
IPS_IPIP_TRANSP_IPV6 ?= ${PREFIX_IPV6}45::70
IPS_IPIP_TUNNEL4_IPV4 ?= ${PREFIX_IPV4}52.70
IPS_IPIP_TUNNEL4_IPV6 ?= ${PREFIX_IPV6}4c::70
IPS_IPIP_TUNNEL6_IPV4 ?= ${PREFIX_IPV4}53.70
IPS_IPIP_TUNNEL6_IPV6 ?= ${PREFIX_IPV6}4d::70
IPS_IPCOMP_TRANSP_IPV4 ?= ${PREFIX_IPV4}65.70
IPS_IPCOMP_TRANSP_IPV6 ?= ${PREFIX_IPV6}65::70
IPS_IPCOMP_TUNNEL4_IPV4 ?= ${PREFIX_IPV4}72.70
IPS_IPCOMP_TUNNEL4_IPV6 ?= ${PREFIX_IPV6}6c::70
IPS_IPCOMP_TUNNEL6_IPV4 ?= ${PREFIX_IPV4}73.70
IPS_IPCOMP_TUNNEL6_IPV6 ?= ${PREFIX_IPV6}6d::70
IPS_BUNDLE_TRANSP_IPV4 ?= ${PREFIX_IPV4}85.70
IPS_BUNDLE_TRANSP_IPV6 ?= ${PREFIX_IPV6}85::70
IPS_BUNDLE_TUNNEL4_IPV4 ?= ${PREFIX_IPV4}92.70
IPS_BUNDLE_TUNNEL4_IPV6 ?= ${PREFIX_IPV6}8c::70
IPS_BUNDLE_TUNNEL6_IPV4 ?= ${PREFIX_IPV4}93.70
IPS_BUNDLE_TUNNEL6_IPV6 ?= ${PREFIX_IPV6}8d::70
RT_IN_IPV4 ?= ${PREFIX_IPV4}01.71
RT_IN_IPV6 ?= ${PREFIX_IPV6}01::71
RT_OUT_IPV4 ?= ${PREFIX_IPV4}02.71
RT_OUT_IPV6 ?= ${PREFIX_IPV6}02::71
ECO_IN_IPV4 ?= ${PREFIX_IPV4}02.72
ECO_IN_IPV6 ?= ${PREFIX_IPV6}02::72
ECO_ESP_TUNNEL4_IPV4 ?= ${PREFIX_IPV4}14.72
ECO_ESP_TUNNEL4_IPV6 ?= ${PREFIX_IPV6}0e::72
ECO_ESP_TUNNEL6_IPV4 ?= ${PREFIX_IPV4}15.72
ECO_ESP_TUNNEL6_IPV6 ?= ${PREFIX_IPV6}0f::72
ECO_AH_TUNNEL4_IPV4 ?= ${PREFIX_IPV4}34.72
ECO_AH_TUNNEL4_IPV6 ?= ${PREFIX_IPV6}2e::72
ECO_AH_TUNNEL6_IPV4 ?= ${PREFIX_IPV4}35.72
ECO_AH_TUNNEL6_IPV6 ?= ${PREFIX_IPV6}2f::72
ECO_IPIP_TUNNEL4_IPV4 ?= ${PREFIX_IPV4}54.72
ECO_IPIP_TUNNEL4_IPV6 ?= ${PREFIX_IPV6}4e::72
ECO_IPIP_TUNNEL6_IPV4 ?= ${PREFIX_IPV4}55.72
ECO_IPIP_TUNNEL6_IPV6 ?= ${PREFIX_IPV6}4f::72
ECO_IPCOMP_TUNNEL4_IPV4 ?= ${PREFIX_IPV4}74.72
ECO_IPCOMP_TUNNEL4_IPV6 ?= ${PREFIX_IPV6}6e::72
ECO_IPCOMP_TUNNEL6_IPV4 ?= ${PREFIX_IPV4}75.72
ECO_IPCOMP_TUNNEL6_IPV6 ?= ${PREFIX_IPV6}6f::72
ECO_BUNDLE_TUNNEL4_IPV4 ?= ${PREFIX_IPV4}94.72
ECO_BUNDLE_TUNNEL4_IPV6 ?= ${PREFIX_IPV6}8e::72
ECO_BUNDLE_TUNNEL6_IPV4 ?= ${PREFIX_IPV4}95.72
ECO_BUNDLE_TUNNEL6_IPV6 ?= ${PREFIX_IPV6}8f::72
# Configure Addresses on the machines, there must be routes for the
# networks. Adapt interface and addresse variables to your local
# setup. To control the remote machine you need a hostname for
# ssh to log in.
#
# IPS and ECO need inetd echo service on TRANSP and TUNNEL addresses.
# Run make create-setup to copy hostname.if files to the machines.
# Run make check-setup to see if you got the setup correct.
SRC_OUT_IF ?= tap4
IPS_IN_IF ?= vio1
IPS_OUT_IF ?= vio2
RT_IN_IF ?= vio1
RT_OUT_IF ?= vio2
ECO_IN_IF ?= vio1
PROGS = nonxt-sendrecv nonxt-reflect
.MAIN: all
.if empty (IPS_SSH) || empty (RT_SSH) || empty (ECO_SSH)
regress:
@echo this tests needs three remote machines to operate on
@echo IPS_SSH RT_SSH ECO_SSH are empty
@echo fill out these variables for additional tests, then
@echo check whether your test machines are set up properly
@echo SKIPPED
.elif make (regress) || make (all)
.BEGIN: ipsec.conf addr.py
@echo
${SUDO} true
ssh -t ${IPS_SSH} ${SUDO} true
rm -f stamp-*
.endif
# Create python include file containing the addresses.
addr.py: Makefile
@echo '\n======== $@ ========'
rm -f $@ $@.tmp
.for host in SRC IPS RT ECO
.for dir in IN OUT BUNDLE
.for ipv in IF IPV4 IPV6
echo '${host}_${dir}_${ipv}="${${host}_${dir}_${ipv}}"' >>$@.tmp
.endfor
.endfor
.endfor
.for sec in ESP AH IPIP IPCOMP BUNDLE
.for host mode in SRC TRANSP SRC TUNNEL \
IPS TRANSP IPS TUNNEL4 IPS TUNNEL6 \
ECO TUNNEL4 ECO TUNNEL6
.for ipv in IPV4 IPV6
echo '${host}_${sec}_${mode}_${ipv}="${${host}_${sec}_${mode}_${ipv}}"'\
>>$@.tmp
.endfor
.endfor
.endfor
mv $@.tmp $@
# Load the ipsec sa and flow into the kernel of the SRC and IPS machine.
stamp-ipsec: addr.py ipsec.conf
@echo '\n======== $@ ========'
cat addr.py ${.CURDIR}/ipsec.conf | ipsecctl -n -f -
${SUDO} ipsecctl -F
cat addr.py ${.CURDIR}/ipsec.conf | ${SUDO} ipsecctl -f -
ssh ${IPS_SSH} ${SUDO} ipsecctl -F
cat addr.py ${.CURDIR}/ipsec.conf | ssh ${IPS_SSH} ${SUDO} ipsecctl\
-f - -D FROM=to -D TO=from -D LOCAL=peer -D PEER=local
@date >$@
# Load a pf log enc0 pass any rule into the kernel of the IPS machine.
stamp-pfctl: addr.py pf.conf
@echo '\n======== $@ ========'
cat addr.py ${.CURDIR}/pf.conf | pfctl -n -f -
cat addr.py ${.CURDIR}/pf.conf | \
ssh ${IPS_SSH} ${SUDO} pfctl -a regress -f -
@date >$@
stamp-reflect: nonxt-reflect
@echo '\n======== $@ ========'
ssh ${IPS_SSH} make -C ${.CURDIR} nonxt-reflect
ssh ${IPS_SSH} ${SUDO} rcctl start inetd nonxt_reflect
ssh ${ECO_SSH} ${SUDO} rcctl start inetd nonxt_reflect
@date >$@
DUMPCMD= tcpdump -l -e -vvv -s 2048 -ni
# Run tcpdump on enc device of IPS machine.
stamp-bpf: Makefile stamp-drop
@echo '\n======== $@ ========'
rm -f enc0.tcpdump
-ssh ${IPS_SSH} ${SUDO} pkill -f "'^${DUMPCMD} enc0'" || true
ssh ${IPS_SSH} ${SUDO} ${DUMPCMD} enc0 >enc0.tcpdump &
sleep 5 # XXX
rm -f stamp-stop
@date >$@
# Run tcpdump on pflog device of IPS machine.
stamp-pflog: stamp-pfctl stamp-drop
@echo '\n======== $@ ========'
rm -f pflog0.tcpdump
-ssh ${IPS_SSH} ${SUDO} pkill -f "'^${DUMPCMD} pflog0'" || true
ssh ${IPS_SSH} ${SUDO} ${DUMPCMD} pflog0 >pflog0.tcpdump &
sleep 5 # XXX
rm -f stamp-stop
@date >$@
stamp-stop:
@echo '\n======== $@ ========'
sleep 5 # XXX
-ssh ${IPS_SSH} ${SUDO} pkill -f "'^${DUMPCMD}'"
@date >$@
# Old TCP connections send packets from time to time. These confuse
# the checks that count the IPsec packets with netstat -ss.
stamp-drop:
@echo '\n======== $@ ========'
netstat -nv -p tcp |\
perl -ne '\
/ ${PREFIX_IPV6}.* ${PREFIX_IPV6}/ ||\
/ ${PREFIX_IPV4}.* ${PREFIX_IPV4}/ or next;\
my ($$laddr,$$faddr) = (split)[3,4];\
my ($$lip,$$lport) = $$laddr =~ /(.*)\.(\d+)/;\
my ($$fip,$$fport) = $$faddr =~ /(.*)\.(\d+)/;\
print join(" ",$$lip,$$lport,$$fip,$$fport),"\n"' |\
xargs -r -L1 ${SUDO} tcpdrop
@date >$@
# Disable tests that do not pass.
run-regress-pflog-ping-IPS_AH_TRANSP_IPV4 \
run-regress-pflog-udp-IPS_AH_TRANSP_IPV4 \
run-regress-pflog-tcp-IPS_AH_TRANSP_IPV4 \
run-regress-pflog-nonxt-IPS_AH_TRANSP_IPV4 \
run-regress-pflog-ping-IPS_AH_TRANSP_IPV6 \
run-regress-pflog-udp-IPS_AH_TRANSP_IPV6 \
run-regress-pflog-tcp-IPS_AH_TRANSP_IPV6 \
run-regress-pflog-nonxt-IPS_AH_TRANSP_IPV6:
@echo '\n======== $@ ========'
@echo IPv6 AH packets are treated as their payload protocol by pf.
@echo So they match the floating state on the physical interface
@echo and are not logged by the enc0 pf rule.
@echo DISABLED
# Ping all addresses. This ensures that the IP addresses are configured
# and all routing table are set up to allow bidirectional packet flow.
.for host dir in SRC OUT IPS IN IPS OUT RT IN RT OUT ECO IN
.for ping ipv in ping IPV4 ping6 IPV6
TARGETS += ping-${host}_${dir}_${ipv}
run-regress-send-ping-${host}_${dir}_${ipv}:
@echo '\n======== $@ ========'
${ping} -n -c 1 -w 2 ${${host}_${dir}_${ipv}}
.endfor
.endfor
# Send IPsec packets from SRC to IPS and expect response.
.for sec in ESP AH IPIP IPCOMP BUNDLE
.for host mode in SRC TRANSP SRC TUNNEL \
IPS TRANSP IPS TUNNEL4 IPS TUNNEL6 \
ECO TUNNEL4 ECO TUNNEL6
.for ping ipv in ping IPV4 ping6 IPV6
.for len size in small -s24 big -s1000
TARGETS += ping-${len}-${host}_${sec}_${mode}_${ipv}
ping ${host:L} ${sec:L} ${mode:L} ${ipv:L}:\
run-regress-send-ping-${len}-${host}_${sec}_${mode}_${ipv}
run-regress-send-ping-${len}-${host}_${sec}_${mode}_${ipv}:
@echo '\n======== $@ ========'
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/input ${sec:S/BUNDLE/ESP/} /{print $$1}' >pkt.in
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/output ${sec:S/BUNDLE/ESP/} /{print $$1}' >pkt.out
${ping} ${size} -n -c 1 -w 2 ${${host}_${sec}_${mode}_${ipv}}
.if "${host}" == SRC || ( "${len}" == small && "${sec}" == IPCOMP )
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/input ${sec:S/BUNDLE/ESP/} /{print $$1}' |\
diff pkt.in -
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/output ${sec:S/BUNDLE/ESP/} /{print $$1}' |\
diff pkt.out -
.else
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/input ${sec:S/BUNDLE/ESP/} /{print $$1-1}' |\
diff pkt.in -
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/output ${sec:S/BUNDLE/ESP/} /{print $$1-1}' |\
diff pkt.out -
.endif
.endfor
.endfor
.endfor
.for host mode in IPS TRANSP IPS TUNNEL4 IPS TUNNEL6 \
ECO TUNNEL4 ECO TUNNEL6
.for ipv in IPV4 IPV6
TARGETS += udp-${host}_${sec}_${mode}_${ipv}
udp ${host:L} ${sec:L} ${mode:L} ${ipv:L}:\
run-regress-send-udp-${host}_${sec}_${mode}_${ipv}
run-regress-send-udp-${host}_${sec}_${mode}_${ipv}:
@echo '\n======== $@ ========'
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/input ${sec:S/BUNDLE/ESP/} /{print $$1}' >pkt.in
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/output ${sec:S/BUNDLE/ESP/} /{print $$1}' >pkt.out
echo $$$$ | nc -n -u -W 1 -w 3 ${${host}_${sec}_${mode}_${ipv}} 7 |\
fgrep $$$$
.if "${sec}" == IPCOMP
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/input ${sec:S/BUNDLE/ESP/} /{print $$1}' |\
diff pkt.in -
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/output ${sec:S/BUNDLE/ESP/} /{print $$1}' |\
diff pkt.out -
.else
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/input ${sec:S/BUNDLE/ESP/} /{print $$1-1}' |\
diff pkt.in -
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/output ${sec:S/BUNDLE/ESP/} /{print $$1-1}' |\
diff pkt.out -
.endif
TARGETS += tcp-${host}_${sec}_${mode}_${ipv}
tcp ${host:L} ${sec:L} ${mode:L} ${ipv:L}:\
run-regress-send-tcp-${host}_${sec}_${mode}_${ipv}
run-regress-send-tcp-${host}_${sec}_${mode}_${ipv}:
@echo '\n======== $@ ========'
echo $$$$ | nc -n -N -w 3 ${${host}_${sec}_${mode}_${ipv}} 7 |\
fgrep $$$$
# Send no next header protocol 59 packets through the IPsec test.
# They consist solely of an IPv6 header chain and trigger edge cases.
TARGETS += nonxt-${host}_${sec}_${mode}_${ipv}
nonxt ${host:L} ${sec:L} ${mode:L} ${ipv:L}:\
run-regress-send-nonxt-${host}_${sec}_${mode}_${ipv}
run-regress-send-nonxt-${host}_${sec}_${mode}_${ipv}: nonxt-sendrecv
@echo '\n======== $@ ========'
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/input ${sec:S/BUNDLE/ESP/} /{print $$1}' >pkt.in
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/output ${sec:S/BUNDLE/ESP/} /{print $$1}' >pkt.out
${SUDO} ./nonxt-sendrecv ${${host}_${sec}_${mode}_${ipv}}
.if "${sec}" == IPCOMP
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/input ${sec:S/BUNDLE/ESP/} /{print $$1}' |\
diff pkt.in -
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/output ${sec:S/BUNDLE/ESP/} /{print $$1}' |\
diff pkt.out -
.else
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/input ${sec:S/BUNDLE/ESP/} /{print $$1-1}' |\
diff pkt.in -
netstat -s -p ${sec:L:S/ipip/ipencap/:S/bundle/esp/} |\
awk '/output ${sec:S/BUNDLE/ESP/} /{print $$1-1}' |\
diff pkt.out -
.endif
.endfor
.endfor
.endfor
# Check bpf has dumped all IPsec packets to enc0 on IPS.
REGEX_ESP= \(authentic,confidential\): SPI 0x[0-9a-f]*:
REGEX_AH= \(authentic\): SPI 0x[0-9a-f]*:
REGEX_IPCOMP= \(unprotected\): SPI 0x[0-9a-f]*:
REGEX_REQ_TRANSP= *
REGEX_REQ_TUNNEL4= ${SRC_OUT_IPV4} > ${IPS_IN_IPV4}:
REGEX_REQ_TUNNEL6= ${SRC_OUT_IPV6} > ${IPS_IN_IPV6}:
REGEX_RPL_TRANSP= *
REGEX_RPL_TUNNEL4= ${IPS_IN_IPV4} > ${SRC_OUT_IPV4}:
REGEX_RPL_TUNNEL6= ${IPS_IN_IPV6} > ${SRC_OUT_IPV6}:
REGEX_REQ_PING= icmp6?: echo request
REGEX_REQ_UDP= .* udp
REGEX_REQ_TCP= S
REGEX_REQ_NONXT=(ip-proto-59|no next header)
REGEX_RPL_PING= icmp6*: echo reply
REGEX_RPL_UDP= .* udp
REGEX_RPL_TCP= S .* ack
REGEX_RPL_NONXT=(ip-proto-59|no next header)
.for host in IPS ECO
.for sec in ESP AH IPIP IPCOMP BUNDLE
.for mode in TRANSP TUNNEL4 TUNNEL6
.for ipv in IPV4 IPV6
REGEX_REQ_${host}_${sec}_${mode}_${ipv}_PING=\
${SRC_${sec}_${mode:C/[46]$//}_${ipv}} >\
${${host}_${sec}_${mode}_${ipv}}:
REGEX_REQ_${host}_${sec}_${mode}_${ipv}_UDP=\
${SRC_${sec}_${mode:C/[46]$//}_${ipv}}\.[0-9][0-9]* >\
${${host}_${sec}_${mode}_${ipv}}\.7:
REGEX_REQ_${host}_${sec}_${mode}_${ipv}_TCP=\
${REGEX_REQ_${host}_${sec}_${mode}_${ipv}_UDP}
REGEX_REQ_${host}_${sec}_${mode}_${ipv}_NONXT=\
${REGEX_REQ_${host}_${sec}_${mode}_${ipv}_PING}
REGEX_RPL_${host}_${sec}_${mode}_${ipv}_PING=\
${${host}_${sec}_${mode}_${ipv}} >\
${SRC_${sec}_${mode:C/[46]$//}_${ipv}}:
REGEX_RPL_${host}_${sec}_${mode}_${ipv}_UDP=\
${${host}_${sec}_${mode}_${ipv}}\.7 >\
${SRC_${sec}_${mode:C/[46]$//}_${ipv}}\.[0-9][0-9]*:
REGEX_RPL_${host}_${sec}_${mode}_${ipv}_TCP=\
${REGEX_RPL_${host}_${sec}_${mode}_${ipv}_UDP}
REGEX_RPL_${host}_${sec}_${mode}_${ipv}_NONXT=\
${REGEX_RPL_${host}_${sec}_${mode}_${ipv}_PING}
.for proto in PING UDP TCP NONXT
run-regress-bpf-${proto:L}-${host}_${sec}_${mode}_${ipv}: stamp-stop
@echo '\n======== $@ ========'
egrep -q '\
${REGEX_${sec}}\
${REGEX_REQ_${mode}}\
${REGEX_REQ_${host}_${sec}_${mode}_${ipv}_${proto}}\
${REGEX_REQ_${proto}} ' enc0.tcpdump
egrep -q '\
${REGEX_${sec}}\
${REGEX_RPL_${mode}}\
${REGEX_RPL_${host}_${sec}_${mode}_${ipv}_${proto}}\
${REGEX_RPL_${proto}} ' enc0.tcpdump
run-regress-pflog-${proto:L}-${host}_${sec}_${mode}_${ipv}: stamp-stop
@echo '\n======== $@ ========'
egrep -q '\
rule .*regress.0/\(match\) .*\
pass in on enc0:.*\
${REGEX_REQ_${host}_${sec}_${mode}_${ipv}_${proto}}\
${REGEX_REQ_${proto}} ' pflog0.tcpdump
egrep -q '\
rule .*/\(match\) .*\
pass out on enc0:.*\
${REGEX_RPL_${host}_${sec}_${mode}_${ipv}_${proto}}\
${REGEX_RPL_${proto}} ' pflog0.tcpdump
.endfor
.endfor
.endfor
.endfor
.endfor
REGRESS_TARGETS = ${TARGETS:S/^/run-regress-send-/} \
${TARGETS:N*_IPIP_*:N*_BUNDLE_*:N*_IN_*:N*_OUT_*:N*-SRC_*:Nudp-*_IPCOMP_*:Ntcp-*_IPCOMP_*:N*-small-*:Nnonxt-*_IPCOMP_*:S/-big-/-/:S/^/run-regress-bpf-/} \
${TARGETS:N*_IPIP_*:N*_IPCOMP_*:N*_IN_*:N*_OUT_*:N*-SRC_*:N*-small-*:S/-big-/-/:S/^/run-regress-pflog-/}
${REGRESS_TARGETS:Mrun-regress-send-*}: \
stamp-ipsec stamp-reflect stamp-bpf stamp-pflog stamp-drop
CLEANFILES += addr.py *.pyc *.log stamp-* */hostname.* *.{in,out} *.tcpdump
# Run make create-setup to configure remote machines for test.
.PHONY: create-setup
create-setup: stamp-hostname stamp-inetd stamp-nonxt-reflect
# Create hostname.if files, copy them to the machines and install addresses.
etc/hostname.${SRC_OUT_IF}: Makefile
@echo '\n======== $@ ========'
mkdir -p ${@:H}
rm -f $@ $@.tmp
echo '### regress ipsec $@' >$@.tmp
.for dir in OUT BUNDLE
echo '# SRC_${dir}' >>$@.tmp
.for inet ipv masklen in inet IPV4 255.255.255.0 inet6 IPV6 64
echo '${inet} alias ${SRC_${dir}_${ipv}} ${masklen}' >>$@.tmp
.endfor
.endfor
.for sec in ESP AH IPIP IPCOMP BUNDLE
echo '## SRC_${sec}' >>$@.tmp
.for mode in TRANSP TUNNEL
echo '# SRC_${sec}_${mode}' >>$@.tmp
.for inet ipv masklen in inet IPV4 255.255.255.0 inet6 IPV6 64
echo '${inet} alias ${SRC_${sec}_${mode}_${ipv}} ${masklen}' >>$@.tmp
.endfor
.endfor
echo '# IPS_${sec}_TRANSP_IPV6/64 IPS_IN_IPV6' >>$@.tmp
echo '!route -q delete -inet6 ${IPS_${sec}_TRANSP_IPV6}/64' >>$@.tmp
echo '!route add -inet6 ${IPS_${sec}_TRANSP_IPV6}/64 ${IPS_IN_IPV6}'\
>>$@.tmp
.for host dir in RT IN ECO IN
echo '# ${host}_${dir}/pfxlen IPS_IN' >>$@.tmp
.for inet ipv pfxlen in inet IPV4 24 inet6 IPV6 64
echo '!route -q delete -${inet} ${${host}_${dir}_${ipv}}/${pfxlen}'\
>>$@.tmp
echo '!route add -${inet} ${${host}_${dir}_${ipv}}/${pfxlen}\
${IPS_IN_${ipv}}' >>$@.tmp
.endfor
.endfor
.for host in IPS ECO
.for mode in TUNNEL4 TUNNEL6
echo '# ${host}_${sec}_${mode}/pfxlen\
${SRC_${sec}_TUNNEL_${ipv}}' >>$@.tmp
.for inet ipv pfxlen in inet IPV4 24 inet6 IPV6 64
echo '!route -q delete -${inet}\
${${host}_${sec}_${mode}_${ipv}}/${pfxlen}' >>$@.tmp
echo '!route add -${inet} ${${host}_${sec}_${mode}_${ipv}}/${pfxlen}\
${SRC_${sec}_TUNNEL_${ipv}}' >>$@.tmp
.endfor
.endfor
.endfor
.endfor
mv $@.tmp $@
${IPS_SSH}/hostname.${IPS_IN_IF}: Makefile
mkdir -p ${@:H}
rm -f $@ $@.tmp
echo '### regress ipsec $@' >$@.tmp
.for dir in IN BUNDLE
echo '# IPS_${dir}' >>$@.tmp
.for inet ipv masklen in inet IPV4 255.255.255.0 inet6 IPV6 64
echo '${inet} alias ${IPS_${dir}_${ipv}} ${masklen}' >>$@.tmp
.endfor
.endfor
.for sec in ESP AH IPIP IPCOMP BUNDLE
echo '## IPS_${sec}' >>$@.tmp
echo '# IPS_${sec}_TRANSP' >>$@.tmp
.for inet ipv masklen in inet IPV4 255.255.255.0 inet6 IPV6 64
echo '${inet} alias ${IPS_${sec}_TRANSP_${ipv}} ${masklen}' >>$@.tmp
.endfor
echo '# SRC_${sec}_TRANSP_IPV6/64 SRC_OUT_IPV6' >>$@.tmp
echo '!route -q delete -inet6 ${SRC_${sec}_TRANSP_IPV6}/64' >>$@.tmp
echo '!route add -inet6 ${SRC_${sec}_TRANSP_IPV6}/64 ${SRC_OUT_IPV6}'\
>>$@.tmp
.for mode in TUNNEL
echo '# SRC_${sec}_${mode}/pfxlen ${IPS_IN_${ipv}}' >>$@.tmp
.for inet ipv pfxlen in inet IPV4 24 inet6 IPV6 64
echo '!route -q delete -${inet}\
${SRC_${sec}_${mode}_${ipv}}/${pfxlen}' >>$@.tmp
echo '!route add -${inet} ${SRC_${sec}_${mode}_${ipv}}/${pfxlen}\
${IPS_IN_${ipv}}' >>$@.tmp
.endfor
.endfor
.endfor
mv $@.tmp $@
${IPS_SSH}/hostname.${IPS_OUT_IF}: Makefile
@echo '\n======== $@ ========'
mkdir -p ${@:H}
rm -f $@ $@.tmp
echo '### regress ipsec $@' >$@.tmp
echo '# IPS_OUT' >>$@.tmp
.for inet ipv masklen in inet IPV4 255.255.255.0 inet6 IPV6 64
echo '${inet} alias ${IPS_OUT_${ipv}} ${masklen}' >>$@.tmp
.endfor
echo '# ECO_IN/pfxlen RT_IN' >>$@.tmp
.for inet ipv pfxlen in inet IPV4 24 inet6 IPV6 64
echo '!route -q delete -${inet} ${ECO_IN_${ipv}}/${pfxlen}'\
>>$@.tmp
echo '!route add -${inet} ${ECO_IN_${ipv}}/${pfxlen} ${RT_IN_${ipv}}'\
>>$@.tmp
.endfor
.for sec in ESP AH IPIP IPCOMP BUNDLE
echo '## IPS_${sec}' >>$@.tmp
.for mode in TUNNEL4 TUNNEL6
echo '# IPS_${sec}_${mode}' >>$@.tmp
.for inet ipv masklen in inet IPV4 255.255.255.0 inet6 IPV6 64
echo '${inet} alias ${IPS_${sec}_${mode}_${ipv}} ${masklen}' >>$@.tmp
.endfor
.endfor
.for mode in TUNNEL4 TUNNEL6
echo '# ECO_${sec}_${mode}/pfxlen RT_IN' >>$@.tmp
.for inet ipv pfxlen in inet IPV4 24 inet6 IPV6 64
echo '!route -q delete -${inet}\
${ECO_${sec}_${mode}_${ipv}}/${pfxlen}' >>$@.tmp
echo '!route add -${inet} ${ECO_${sec}_${mode}_${ipv}}/${pfxlen}\
${RT_IN_${ipv}}' >>$@.tmp
.endfor
.endfor
.endfor
mv $@.tmp $@
${RT_SSH}/hostname.${RT_IN_IF}: Makefile
@echo '\n======== $@ ========'
mkdir -p ${@:H}
rm -f $@ $@.tmp
echo '### regress ipsec $@' >$@.tmp
echo '# RT_IN' >>$@.tmp
.for inet ipv masklen in inet IPV4 255.255.255.0 inet6 IPV6 64
echo '${inet} alias ${RT_IN_${ipv}} ${masklen}' >>$@.tmp
.endfor
echo '# SRC_OUT/pfxlen IPS_OUT' >>$@.tmp
.for inet ipv pfxlen in inet IPV4 24 inet6 IPV6 64
echo '!route -q delete -${inet} ${SRC_OUT_${ipv}}/${pfxlen}'\
>>$@.tmp
echo '!route add -${inet} ${SRC_OUT_${ipv}}/${pfxlen}'\
${IPS_OUT_${ipv}} >>$@.tmp
.endfor
.for sec in ESP AH IPIP IPCOMP BUNDLE
echo '## IPS_${sec}' >>$@.tmp
.for mode in TUNNEL
echo '# SRC_${mode}/pfxlen IPS_OUT' >>$@.tmp
.for inet ipv pfxlen in inet IPV4 24 inet6 IPV6 64
echo '!route -q delete -${inet} ${SRC_${sec}_${mode}_${ipv}}/${pfxlen}'\
>>$@.tmp
echo '!route add -${inet} ${SRC_${sec}_${mode}_${ipv}}/${pfxlen}\
${IPS_OUT_${ipv}}' >>$@.tmp
.endfor
.endfor
.endfor
mv $@.tmp $@
${RT_SSH}/hostname.${RT_OUT_IF}: Makefile
@echo '\n======== $@ ========'
mkdir -p ${@:H}
rm -f $@ $@.tmp
echo '### regress ipsec $@' >$@.tmp
echo '# RT_OUT' >>$@.tmp
.for inet ipv masklen in inet IPV4 255.255.255.0 inet6 IPV6 64
echo '${inet} alias ${RT_OUT_${ipv}} ${masklen}' >>$@.tmp
.endfor
.for sec in ESP AH IPIP IPCOMP BUNDLE
echo '## IPS_${sec}' >>$@.tmp
.for mode in TUNNEL4 TUNNEL6
echo '# ECO_${sec}_${mode}/pfxlen ECO_IN' >>$@.tmp
.for inet ipv pfxlen in inet IPV4 24 inet6 IPV6 64
echo '!route -q delete -${inet}\
${ECO_${sec}_${mode}_${ipv}}/${pfxlen}' >>$@.tmp
echo '!route add -${inet} ${ECO_${sec}_${mode}_${ipv}}/${pfxlen}\
${ECO_IN_${ipv}}' >>$@.tmp
.endfor
.endfor
.endfor
mv $@.tmp $@
${ECO_SSH}/hostname.${ECO_IN_IF}: Makefile
@echo '\n======== $@ ========'
mkdir -p ${@:H}
rm -f $@ $@.tmp
echo '### regress ipsec $@' >$@.tmp
echo '# ECO_IN' >>$@.tmp
.for inet ipv masklen in inet IPV4 255.255.255.0 inet6 IPV6 64
echo '${inet} alias ${ECO_IN_${ipv}} ${masklen}' >>$@.tmp
.endfor
.for host in IPS SRC
echo '# ${host}_OUT/pfxlen RT_OUT' >>$@.tmp
.for inet ipv pfxlen in inet IPV4 24 inet6 IPV6 64
echo '!route -q delete -${inet} ${${host}_OUT_${ipv}}/${pfxlen}'\
>>$@.tmp
echo '!route add -${inet} ${${host}_OUT_${ipv}}/${pfxlen}\
${RT_OUT_${ipv}}' >>$@.tmp
.endfor
.endfor
.for sec in ESP AH IPIP IPCOMP BUNDLE
echo '## IPS_${sec}' >>$@.tmp
.for mode in TUNNEL4 TUNNEL6
echo '# ECO_${sec}_${mode}' >>$@.tmp
.for inet ipv masklen in inet IPV4 255.255.255.0 inet6 IPV6 64
echo '${inet} alias ${ECO_${sec}_${mode}_${ipv}} ${masklen}' >>$@.tmp
.endfor
.endfor
.for mode in TUNNEL
echo '# SRC_${sec}_${mode}/pfxlen RT_OUT' >>$@.tmp
.for inet ipv pfxlen in inet IPV4 24 inet6 IPV6 64
echo '!route -q delete -${inet}\
${SRC_${sec}_${mode}_${ipv}}/${pfxlen}' >>$@.tmp
echo '!route add -${inet} ${SRC_${sec}_${mode}_${ipv}}/${pfxlen}\
${RT_OUT_${ipv}}' >>$@.tmp
.endfor
.endfor
.endfor
mv $@.tmp $@
stamp-hostname: etc/hostname.${SRC_OUT_IF} \
${IPS_SSH}/hostname.${IPS_IN_IF} ${IPS_SSH}/hostname.${IPS_OUT_IF} \
${RT_SSH}/hostname.${RT_IN_IF} ${RT_SSH}/hostname.${RT_OUT_IF} \
${ECO_SSH}/hostname.${ECO_IN_IF}
@echo '\n======== $@ ========'
${SUDO} sh -c "umask 027;\
{ sed '/^### regress/,\$$d' /etc/hostname.${SRC_OUT_IF} &&\
cat; } >/etc/hostname.${SRC_OUT_IF}.tmp"\
<etc/hostname.${SRC_OUT_IF}
${SUDO} sh -c "mv /etc/hostname.${SRC_OUT_IF}.tmp\
/etc/hostname.${SRC_OUT_IF} &&\
sh /etc/netstart ${SRC_OUT_IF}"
.for host dir in IPS IN IPS OUT RT IN RT OUT ECO IN
ssh root@${${host}_SSH} "umask 027;\
{ sed '/^### regress/,\$$d' /etc/hostname.${${host}_${dir}_IF} &&\
cat; } >/etc/hostname.${${host}_${dir}_IF}.tmp"\
<${${host}_SSH}/hostname.${${host}_${dir}_IF}
ssh root@${${host}_SSH} "mv /etc/hostname.${${host}_${dir}_IF}.tmp\
/etc/hostname.${${host}_${dir}_IF} &&\
sh /etc/netstart ${${host}_${dir}_IF}"
.endfor
date >$@
# Create inetd.conf files, copy them to the machines and start inetd.
.for host in IPS ECO
${${host}_SSH}/inetd.conf: Makefile
@echo '\n======== $@ ========'
mkdir -p ${@:H}
rm -f $@ $@.tmp
echo '### regress ipsec $@' >$@.tmp
echo echo stream tcp nowait root internal >>$@.tmp
echo echo stream tcp6 nowait root internal >>$@.tmp
.for sec in ESP AH IPIP IPCOMP BUNDLE
.for mode in TRANSP TUNNEL4 TUNNEL6
.if ! empty(${host}_${sec}_${mode}_IPV4)
echo '${${host}_${sec}_${mode}_IPV4}:echo'\
dgram udp wait root internal >>$@.tmp
echo '[${${host}_${sec}_${mode}_IPV6}]:echo'\
dgram udp6 wait root internal >>$@.tmp
.endif
.endfor
.endfor
mv $@.tmp $@
.endfor
stamp-inetd: ${IPS_SSH}/inetd.conf ${ECO_SSH}/inetd.conf
@echo '\n======== $@ ========'
.for host in IPS ECO
ssh root@${${host}_SSH} "umask 022;\
{ sed '/^### regress/,\$$d' /etc/inetd.conf && cat; }\
>/etc/inetd.conf.tmp" <${${host}_SSH}/inetd.conf
ssh root@${${host}_SSH} "mv /etc/inetd.conf.tmp /etc/inetd.conf &&\
rcctl enable inetd && rcctl restart inetd"
.endfor
date >$@
# Create rc.d/nonxt_reflect startup scripts,
# copy them to the remote machines,
# build remote nonxt-reflect binary,
# and start nonext protocol 59 reflector daemons.
.for host in IPS ECO
${${host}_SSH}/nonxt_reflect: nonxt_reflect.sh Makefile
@echo '\n======== $@ ========'
mkdir -p ${@:H}
rm -f $@ $@.tmp
echo '#!/bin/ksh' >$@.tmp
echo '### regress ipsec $@' >>$@.tmp
echo 'local_addresses="' >>$@.tmp
.for sec in ESP AH IPIP IPCOMP BUNDLE
.for mode in TRANSP TUNNEL4 TUNNEL6
.for ipv in IPV4 IPV6
.if ! empty(${host}_${sec}_${mode}_${ipv})
echo '${${host}_${sec}_${mode}_${ipv}}' >>$@.tmp
.endif
.endfor
.endfor
.endfor
echo '"' >>$@.tmp
cat ${.CURDIR}/nonxt_reflect.sh >>$@.tmp
sh -n $@.tmp
chmod 755 $@.tmp
mv $@.tmp $@
.endfor
stamp-nonxt-reflect: ${IPS_SSH}/nonxt_reflect ${ECO_SSH}/nonxt_reflect \
nonxt-reflect
@echo '\n======== $@ ========'
.for host in IPS ECO
ssh ${${host}_SSH} make -C ${.CURDIR} nonxt-reflect
scp ${${host}_SSH}/nonxt_reflect root@${${host}_SSH}:/etc/rc.d/
ssh root@${${host}_SSH}\
"rcctl enable nonxt_reflect && rcctl restart nonxt_reflect"
.endfor
date >$@
# Check whether the address, route and remote setup is correct.
.PHONY: check-setup
check-setup: check-setup-src check-setup-ips check-setup-rt check-setup-eco
check-setup-src:
@echo '\n======== $@ ========'
.for ping inet ipv in ping inet IPV4 ping6 inet6 IPV6
.for host dir in SRC OUT SRC BUNDLE
${ping} -n -c 1 ${${host}_${dir}_${ipv}} # ${host}_${dir}_${ipv}
route -n get -${inet} ${${host}_${dir}_${ipv}} |\
grep -q 'flags: .*LOCAL' # ${host}_${dir}_${ipv}
.endfor
${ping} -n -c 1 ${IPS_IN_${ipv}} # IPS_IN_${ipv}
${ping} -n -c 1 ${IPS_BUNDLE_${ipv}} # IPS_BUNDLE_${ipv}
.for host dir in IPS OUT RT IN RT OUT ECO IN
route -n get -${inet} ${${host}_${dir}_${ipv}} |\
fgrep -q 'gateway: ${IPS_IN_${ipv}}' \
# ${host}_${dir}_${ipv} IPS_IN_${ipv}
.endfor
.for sec in ESP AH IPIP IPCOMP BUNDLE
.for host mode in SRC TRANSP SRC TUNNEL
${ping} -n -c 1 ${${host}_${sec}_${mode}_${ipv}} \
# ${host}_${sec}_${mode}_${ipv}
route -n get -${inet} ${${host}_${sec}_${mode}_${ipv}} |\
grep -q 'flags: .*LOCAL' # ${host}_${sec}_${mode}_${ipv}
.endfor
.for host mode in IPS TUNNEL4 IPS TUNNEL6 ECO TUNNEL4 ECO TUNNEL6
route -n get -${inet} ${${host}_${sec}_${mode}_${ipv}} |\
grep -q 'flags: .*STATIC' # ${host}_${sec}_${mode}_${ipv}
.endfor
.endfor
.endfor
.for sec in ESP AH IPIP IPCOMP BUNDLE
route -n get -inet ${IPS_${sec}_TRANSP_IPV4} |\
egrep -q 'flags: .*(CLONING|CLONED)' # IPS_${sec}_TRANSP_IPV4
route -n get -inet6 ${IPS_${sec}_TRANSP_IPV6} |\
fgrep -q 'gateway: ${IPS_IN_IPV6}' \
# IPS_${sec}_TRANSP_IPV6 IPS_IN_IPV6
.endfor
sysctl net.inet.esp.enable | fgrep =1
sysctl net.inet.ah.enable | fgrep =1
sysctl net.inet.ipip.allow | fgrep =1
sysctl net.inet.ipcomp.enable | fgrep =1
check-setup-ips:
@echo '\n======== $@ ========'
.for ping inet ip ipv in ping inet ip IPV4 ping6 inet6 ip6 IPV6
.for host dir in IPS IN IPS OUT IPS BUNDLE
ssh ${IPS_SSH} ${ping} -n -c 1 ${${host}_${dir}_${ipv}} \
# ${host}_${dir}_${ipv}
ssh ${IPS_SSH} route -n get -${inet} ${${host}_${dir}_${ipv}} |\
grep -q 'flags: .*LOCAL' # ${host}_${dir}_${ipv}
.endfor
ssh ${IPS_SSH} ${ping} -n -c 1 ${SRC_OUT_${ipv}} # SRC_OUT_${ipv}
ssh ${IPS_SSH} ${ping} -n -c 1 ${SRC_BUNDLE_${ipv}} # SRC_BUNDLE_${ipv}
ssh ${IPS_SSH} ${ping} -n -c 1 ${RT_IN_${ipv}} # RT_IN_${ipv}
.for host dir in RT OUT ECO IN
ssh ${IPS_SSH} route -n get -${inet} ${${host}_${dir}_${ipv}} |\
fgrep -q 'gateway: ${RT_IN_${ipv}}' \
# ${host}_${dir}_${ipv} RT_IN_${ipv}
.endfor
.for sec in ESP AH IPIP IPCOMP BUNDLE
.for host mode in IPS TRANSP IPS TUNNEL4 IPS TUNNEL6
ssh ${IPS_SSH} ${ping} -n -c 1 ${${host}_${sec}_${mode}_${ipv}} \
# ${host}_${sec}_${mode}_${ipv}
ssh ${IPS_SSH} route -n get -${inet} ${${host}_${sec}_${mode}_${ipv}} |\
grep -q 'flags: .*LOCAL' # ${host}_${sec}_${mode}_${ipv}
.endfor
.for host mode in ECO TUNNEL4 ECO TUNNEL6
ssh ${IPS_SSH} route -n get -${inet} ${${host}_${sec}_${mode}_${ipv}} |\
fgrep -q 'gateway: ${RT_IN_${ipv}}' \
# ${host}_${sec}_${mode}_${ipv} RT_IN_${ipv}
.endfor
.for host mode in SRC TUNNEL
ssh ${IPS_SSH} route -n get -${inet} ${${host}_${sec}_${mode}_${ipv}} |\
grep -q 'flags: .*STATIC' # ${host}_${sec}_${mode}_${ipv}
.endfor
.for host mode in IPS TRANSP IPS TUNNEL4 IPS TUNNEL6
ssh ${IPS_SSH} netstat -nav -f ${inet} -p udp |\
fgrep ' ${${host}_${sec}_${mode}_${ipv}}.7 ' \
# ${host}_${sec}_${mode}_${ipv}
ssh ${IPS_SSH} netstat -nav -f ${inet} -p ${ip} |\
grep ' ${${host}_${sec}_${mode}_${ipv}}\.\* .* *59$$' \
# ${host}_${sec}_${mode}_${ipv}
.endfor
.endfor
ssh ${ECO_SSH} netstat -na -f ${inet} -p tcp | fgrep ' *.7 '
.endfor
.for sec in ESP AH IPIP IPCOMP BUNDLE
ssh ${IPS_SSH} route -n get -inet ${SRC_${sec}_TRANSP_IPV4} |\
egrep -q 'flags: .*(CLONING|CLONED)' # SRC_${sec}_TRANSP_IPV4
ssh ${IPS_SSH} route -n get -inet6 ${SRC_${sec}_TRANSP_IPV6} |\
fgrep -q 'gateway: ${SRC_OUT_IPV6}' \
# SRC_${sec}_TRANSP_IPV6 SRC_OUT_IPV6
.endfor
ssh ${IPS_SSH} sysctl net.inet.esp.enable | fgrep =1
ssh ${IPS_SSH} sysctl net.inet.ah.enable | fgrep =1
ssh ${IPS_SSH} sysctl net.inet.ipip.allow | fgrep =1
ssh ${IPS_SSH} sysctl net.inet.ipcomp.enable | fgrep =1
ssh ${IPS_SSH} ${SUDO} pfctl -sr | grep '^anchor "regress" all$$'
ssh ${IPS_SSH} ${SUDO} pfctl -si | grep '^Status: Enabled '
check-setup-rt:
@echo '\n======== $@ ========'
.for ping inet ipv in ping inet IPV4 ping6 inet6 IPV6
.for host dir in RT IN RT OUT
ssh ${RT_SSH} ${ping} -n -c 1 ${${host}_${dir}_${ipv}} \
# ${host}_${dir}_${ipv}
ssh ${RT_SSH} route -n get -${inet} ${${host}_${dir}_${ipv}} |\
grep -q 'flags: .*LOCAL' # ${host}_${dir}_${ipv}
.endfor
ssh ${RT_SSH} ${ping} -n -c 1 ${IPS_OUT_${ipv}} # IPS_OUT_${ipv}
.for host dir in IPS IN SRC OUT
ssh ${RT_SSH} route -n get -${inet} ${${host}_${dir}_${ipv}} |\
fgrep -q 'gateway: ${IPS_OUT_${ipv}}' \
# ${host}_${dir}_${ipv} IPS_OUT_${ipv}
.endfor
ssh ${RT_SSH} ${ping} -n -c 1 ${ECO_IN_${ipv}} # ECO_IN_${ipv}
.for sec in ESP AH IPIP IPCOMP BUNDLE
.for host mode in SRC TUNNEL
ssh ${RT_SSH} route -n get -${inet} ${${host}_${sec}_${mode}_${ipv}} |\
fgrep -q 'gateway: ${IPS_OUT_${ipv}}' \
# ${host}_${sec}_${mode}_${ipv} IPS_OUT_${ipv}
.endfor
.for host mode in ECO TUNNEL4 ECO TUNNEL6
ssh ${RT_SSH} route -n get -${inet} ${${host}_${sec}_${mode}_${ipv}} |\
fgrep -q 'gateway: ${ECO_IN_${ipv}}' \
# ${host}_${sec}_${mode}_${ipv} ECO_IN_${ipv}
.endfor
.endfor
.endfor
check-setup-eco:
@echo '\n======== $@ ========'
.for ping inet ip ipv in ping inet ip IPV4 ping6 inet6 ip6 IPV6
.for host dir in ECO IN
ssh ${ECO_SSH} ${ping} -n -c 1 ${${host}_${dir}_${ipv}} \
# ${host}_${dir}_${ipv}
ssh ${ECO_SSH} route -n get -${inet} ${${host}_${dir}_${ipv}} |\
grep -q 'flags: .*LOCAL' # ${host}_${dir}_${ipv}
.endfor
ssh ${ECO_SSH} ${ping} -n -c 1 ${RT_OUT_${ipv}} # RT_OUT_${ipv}
.for host dir in RT IN IPS OUT IPS IN SRC OUT
ssh ${ECO_SSH} route -n get -${inet} ${${host}_${dir}_${ipv}} |\
fgrep -q 'gateway: ${RT_OUT_${ipv}}' \
# ${host}_${dir}_${ipv} RT_OUT_${ipv}
.endfor
.for sec in ESP AH IPIP IPCOMP BUNDLE
.for host mode in ECO TUNNEL4 ECO TUNNEL6
ssh ${ECO_SSH} ${ping} -n -c 1 ${${host}_${sec}_${mode}_${ipv}} \
# ${host}_${sec}_${mode}_${ipv}
ssh ${ECO_SSH} route -n get -${inet} ${${host}_${sec}_${mode}_${ipv}} |\
grep -q 'flags: .*LOCAL' # ${host}_${sec}_${mode}_${ipv}
.endfor
.for host mode in SRC TUNNEL
ssh ${ECO_SSH} route -n get -${inet} ${${host}_${sec}_${mode}_${ipv}} |\
fgrep -q 'gateway: ${RT_OUT_${ipv}}' \
# ${host}_${sec}_${mode}_${ipv} RT_OUT_${ipv}
.endfor
.for host mode in ECO TUNNEL4 ECO TUNNEL6
ssh ${ECO_SSH} netstat -nav -f ${inet} -p udp |\
fgrep ' ${${host}_${sec}_${mode}_${ipv}}.7 ' \
# ${host}_${sec}_${mode}_${ipv}
ssh ${ECO_SSH} netstat -nav -f ${inet} -p ${ip} |\
grep ' ${${host}_${sec}_${mode}_${ipv}}\.\* .* *59$$' \
# ${host}_${sec}_${mode}_${ipv}
.endfor
.endfor
ssh ${ECO_SSH} netstat -na -f ${inet} -p tcp | fgrep ' *.7 '
.endfor
.include <bsd.regress.mk>
|