blob: 67bf1f6bd0c1b17813ce8cf63364818897f8b54e (
plain)
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
|
# $OpenBSD: Makefile,v 1.16 2015/08/24 22:14:01 bluhm Exp $
# The following ports must be installed:
#
# python-2.7 interpreted object-oriented programming language
# py-libdnet python interface to libdnet
# scapy powerful interactive packet manipulation in python
# Check wether all required python packages are installed. If some
# are missing print a warning and skip the tests, but do not fail.
PYTHON_IMPORT != python2.7 -c 'from scapy.all import *' 2>&1 || true
.if ! empty(PYTHON_IMPORT)
regress:
@echo '${PYTHON_IMPORT}'
@echo install python and the scapy module for additional tests
.endif
# This test needs a manual setup of four machines
# The setup is the same as for regress/sys/net/pf_forward
# Set up machines: SRC PF RT ECO
# SRC is the machine where this makefile is running.
# PF is running OpenBSD forwarding through pf, it is the test target.
# RT is a router forwarding packets, maximum MTU is 1300.
# ECO is reflecting the ping and UDP echo packets.
# RDR does not exist, PF redirects the traffic to ECO.
# RTT addresses exist on ECO, PF has no route and must use route-to RT
#
# +---+ 0 +--+ 1 +--+ 2 +---+ 7 4 +---+ 7 +---+
# |SRC| ----> |PF| ----> |RT| ----> |ECO| |RDR| |RTT|
# +---+ +--+ +--+ +---+ +---+ +---+
# out in out in out in rtt in in
# 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.
# You must have an anchor "regress" for the divert rules in the pf.conf
# of the PF machine. The kernel of the PF machine gets testet.
#
# Run make check-setup to see if you got the setup correct.
SRC_IF ?= tun0
SRC_MAC ?= fe:e1:ba:d1:0a:dc
PF_IF ?= vio0
PF_MAC ?= 52:54:00:12:34:50
PF_SSH ?=
RT_SSH ?=
ECO_SSH ?=
SRC_OUT ?= 10.188.210.10
PF_IN ?= 10.188.210.50
PF_OUT ?= 10.188.211.50
RT_IN ?= 10.188.211.51
RT_OUT ?= 10.188.212.51
ECO_IN ?= 10.188.212.52
RDR_IN ?= 10.188.214.188
RTT_IN ?= 10.188.217.52
SRC_OUT6 ?= fdd7:e83e:66bc:210:fce1:baff:fed1:561f
PF_IN6 ?= fdd7:e83e:66bc:210:5054:ff:fe12:3450
PF_OUT6 ?= fdd7:e83e:66bc:211:5054:ff:fe12:3450
RT_IN6 ?= fdd7:e83e:66bc:211:5054:ff:fe12:3451
RT_OUT6 ?= fdd7:e83e:66bc:212:5054:ff:fe12:3451
ECO_IN6 ?= fdd7:e83e:66bc:212:5054:ff:fe12:3452
RDR_IN6 ?= fdd7:e83e:66bc:214::188
RTT_IN6 ?= fdd7:e83e:66bc:217:5054:ff:fe12:3452
.if empty (PF_SSH) || empty (RT_SSH) || empty (ECO_SSH)
regress:
@echo this tests needs three remote machines to operate on
@echo PF_SSH RT_SSH ECO_SSH are empty
@echo fill out these variables for additional tests, then
@echo check wether your test machines are set up properly
.endif
.MAIN: all
.if ! empty (PF_SSH)
.if make (regress) || make (all)
.BEGIN: pf.conf addr.py
@echo
${SUDO} true
ssh -t ${PF_SSH} ${SUDO} true
rm -f stamp-pfctl
.endif
.endif
depend: addr.py
# Create python include file containing the addresses.
addr.py: Makefile
rm -f $@ $@.tmp
echo 'SRC_IF="${SRC_IF}"' >>$@.tmp
echo 'SRC_MAC="${SRC_MAC}"' >>$@.tmp
echo 'PF_IF="${PF_IF}"' >>$@.tmp
echo 'PF_MAC="${PF_MAC}"' >>$@.tmp
.for var in SRC_OUT PF_IN PF_OUT RT_IN RT_OUT ECO_IN RDR_IN RTT_IN
echo '${var}="${${var}}"' >>$@.tmp
echo '${var}6="${${var}6}"' >>$@.tmp
.endfor
mv $@.tmp $@
# load the pf rules into the kernel of the PF machine
# XXX pfctl does not replace variables after @
stamp-pfctl: addr.py pf.conf
cat addr.py ${.CURDIR}/pf.conf | pfctl -n -f -
cat addr.py ${.CURDIR}/pf.conf | \
sed 's/@$$PF_IF /@${PF_IF} /g' | \
ssh ${PF_SSH} ${SUDO} pfctl -a regress -f -
@date >$@
# Set variables so that make runs with and without obj directory.
# Only do that if necessary to keep visible output short.
.if ${.CURDIR} == ${.OBJDIR}
PYTHON = python2.7 ./
.else
PYTHON = PYTHONPATH=${.OBJDIR} python2.7 ${.CURDIR}/
.endif
# Ping all addresses. This ensures that the IP addresses are configured
# and all routing table are set up to allow bidirectional packet flow.
# Note that RDR does not exist physically. So this traffic is rewritten
# by PF and handled by ECO.
TARGETS += ping ping6
run-regress-ping: stamp-pfctl
@echo '\n======== $@ ========'
.for ip in SRC_OUT PF_IN PF_OUT RT_IN RT_OUT ECO_IN RDR_IN RTT_IN
@echo Check ping ${ip}:
ping -n -c 1 ${${ip}}
.endfor
run-regress-ping6: stamp-pfctl
@echo '\n======== $@ ========'
.for ip in SRC_OUT PF_IN PF_OUT RT_IN RT_OUT ECO_IN RDR_IN RTT_IN
@echo Check ping ${ip}6:
ping6 -n -c 1 ${${ip}6}
.endfor
# Ping all addresses again but with 5000 bytes payload. These large
# packets get fragmented by SRC and must be handled by PF.
# Send 1 packet in advance for Path-MTU discovery.
TARGETS += fragping fragping6
run-regress-fragping: stamp-pfctl
@echo '\n======== $@ ========'
.for ip in PF_IN PF_OUT RT_IN RT_OUT ECO_IN RDR_IN RTT_IN
@echo Check ping ${ip}:
-ping -n -c 1 -s 1400 -D ${${ip}}
ping -n -c 1 -s 5000 ${${ip}}
.endfor
run-regress-fragping6: stamp-pfctl
@echo '\n======== $@ ========'
.for ip in PF_IN PF_OUT RT_IN RT_OUT ECO_IN RDR_IN RTT_IN
@echo Check ping ${ip}6:
-ping6 -n -c 1 -s 1400 -m ${${ip}6}
ping6 -n -c 1 -s 5000 -m ${${ip}6}
.endfor
# Send a large IPv4/ICMP-Echo-Request packet with enabled DF bit and
# parse response packet to determine MTU of the router. The MTU has
# to be 1300 octets. The MTU has to be defined at out interface of
# the router RT before.
TARGETS += ping-mtu ping6-mtu
run-regress-ping-mtu: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check path MTU to ${ip}
${SUDO} ${PYTHON}ping_mtu_1300.py ${${ip}}
.endfor
run-regress-ping6-mtu: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check path MTU to ${ip}6
${SUDO} ${PYTHON}ping6_mtu_1300.py ${${ip}6}
.endfor
# Send packet to big to get to destination.
# Check that checksum of the quoted original packet in ICMP is correct.
# Currently these test fail as pf does not fix the checksum of
# NATed packets inside of ICMP packets.
# XXX TARGETS += ping-cksum ping6-cksum udp-cksum udp6-cksum
run-regress-ping-cksum: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ICMP chksum in fragmentation needed to ${ip}
${SUDO} ${PYTHON}ping_cksum.py ${${ip}}
.endfor
run-regress-ping6-cksum: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ICMP6 chksum in packet too big to ${ip}6
${SUDO} ${PYTHON}ping6_cksum.py ${${ip}6}
.endfor
run-regress-udp-cksum: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check UDP chksum in packet too big to ${ip}
${SUDO} ${PYTHON}udp_cksum.py ${${ip}}
.endfor
run-regress-udp6-cksum: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check UDP6 chksum in packet too big to ${ip}6
${SUDO} ${PYTHON}udp6_cksum.py ${${ip}6}
.endfor
# Send handcrafted fragmented packets with overlaps
TARGETS += frag frag6
run-regress-frag: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ping reassembly ${ip}
${SUDO} ${PYTHON}frag.py ${${ip}}
.endfor
run-regress-frag6: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ping6 reassembly ${ip}6
${SUDO} ${PYTHON}frag6.py ${${ip}6}
.endfor
TARGETS += frag6-ext
run-regress-frag6-ext: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ping6 extension header reassembly ${ip}6
${SUDO} ${PYTHON}frag6_ext.py ${${ip}6}
.endfor
TARGETS += frag-cutnew frag6-cutnew
run-regress-frag-cutnew: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ping head overlap reassembly ${ip}
${SUDO} ${PYTHON}frag_cutnew.py ${${ip}}
.endfor
run-regress-frag6-cutnew: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ping6 head overlap reassembly ${ip}6
${SUDO} ${PYTHON}frag6_cutnew.py ${${ip}6}
.endfor
TARGETS += frag-cutold frag6-cutold
run-regress-frag-cutold: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ping tail overlap reassembly ${ip}
${SUDO} ${PYTHON}frag_cutold.py ${${ip}}
.endfor
run-regress-frag6-cutold: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ping6 tail overlap reassembly ${ip}6
${SUDO} ${PYTHON}frag6_cutold.py ${${ip}6}
.endfor
TARGETS += frag-dropold frag6-dropold
run-regress-frag-dropold: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ping total overlapping reassembly ${ip}
${SUDO} ${PYTHON}frag_dropold.py ${${ip}}
.endfor
run-regress-frag6-dropold: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ping6 total overlapping reassembly ${ip}6
${SUDO} ${PYTHON}frag6_dropold.py ${${ip}6}
.endfor
TARGETS += frag-dropnew frag6-dropnew
run-regress-frag-dropnew: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ping total overlaped reassembly ${ip}
${SUDO} ${PYTHON}frag_dropnew.py ${${ip}}
.endfor
run-regress-frag6-dropnew: addr.py stamp-pfctl
@echo '\n======== $@ ========'
.for ip in ECO_IN RDR_IN RTT_IN
@echo Check ping6 total overlaped reassembly ${ip}6
${SUDO} ${PYTHON}frag6_dropnew.py ${${ip}6}
.endfor
REGRESS_TARGETS = ${TARGETS:S/^/run-regress-/}
CLEANFILES += addr.py *.pyc *.log stamp-*
.PHONY: check-setup
# Check wether the address, route and remote setup is correct
check-setup:
@echo '\n======== $@ SRC ========'
.for ip in SRC_OUT
ping -n -c 1 ${${ip}} # ${ip}
route -n get -inet ${${ip}} | fgrep -q 'interface: lo0' # ${ip}
.endfor
ping -n -c 1 ${PF_IN} # PF_IN
route -n get -inet ${PF_IN} | fgrep -q 'interface: ${SRC_IF}' # PF_IN SRC_IF
.for ip in PF_OUT RT_IN RT_OUT ECO_IN RDR_IN RTT_IN
route -n get -inet ${${ip}} | fgrep -q 'gateway: ${PF_IN}' # ${ip} PF_IN
.endfor
.for ip in SRC_OUT
ping6 -n -c 1 ${${ip}6} # ${ip}6
route -n get -inet6 ${${ip}6} | fgrep -q 'interface: lo0' # ${ip}6
.endfor
ping6 -n -c 1 ${PF_IN6} # PF_IN6
route -n get -inet6 ${PF_IN6} | fgrep -q 'interface: ${SRC_IF}' # PF_IN6 SRC_IF
.for ip in PF_OUT RT_IN RT_OUT ECO_IN RDR_IN RTT_IN
route -n get -inet6 ${${ip}6} | fgrep -q 'gateway: ${PF_IN6}' # ${ip}6 PF_IN6
.endfor
@echo '\n======== $@ PF ========'
ssh ${PF_SSH} ping -n -c 1 ${PF_IN} # PF_IN
ssh ${PF_SSH} route -n get -inet ${PF_IN} | fgrep -q 'interface: lo0' # PF_IN
ssh ${PF_SSH} ping -n -c 1 ${SRC_OUT} # SRC_OUT
ssh ${PF_SSH} ping -n -c 1 ${PF_OUT} # PF_OUT
ssh ${PF_SSH} route -n get -inet ${PF_OUT} | fgrep -q 'interface: lo0' # PF_OUT
ssh ${PF_SSH} ping -n -c 1 ${RT_IN} # RT_IN
.for ip in RT_OUT ECO_IN
ssh ${PF_SSH} route -n get -inet ${${ip}} | fgrep -q 'gateway: ${RT_IN}' # ${ip} RT_IN
.endfor
.for ip in RTT_IN
ssh ${PF_SSH} route -n get -inet ${${ip}} | grep -q 'flags: .*REJECT' # ${ip} reject
.endfor
ssh ${PF_SSH} ping6 -n -c 1 ${PF_IN6} # PF_IN6
ssh ${PF_SSH} route -n get -inet6 ${PF_IN6} | fgrep -q 'interface: lo0' # PF_IN6
ssh ${PF_SSH} ping6 -n -c 1 ${SRC_OUT6} # SRC_OUT6
ssh ${PF_SSH} ping6 -n -c 1 ${PF_OUT6} # PF_OUT6
ssh ${PF_SSH} route -n get -inet6 ${PF_OUT6} | fgrep -q 'interface: lo0' # PF_OUT6
ssh ${PF_SSH} ping6 -n -c 1 ${RT_IN6} # RT_IN6
.for ip in RT_OUT ECO_IN
ssh ${PF_SSH} route -n get -inet6 ${${ip}6} | fgrep -q 'gateway: ${RT_IN6}' # ${ip}6 RT_IN6
.endfor
.for ip in RTT_IN
ssh ${PF_SSH} route -n get -inet6 ${${ip}6} | grep -q 'flags: .*REJECT' # ${ip}6 reject
.endfor
ssh ${PF_SSH} ${SUDO} pfctl -sr | grep '^anchor "regress" all$$'
ssh ${PF_SSH} ${SUDO} pfctl -si | grep '^Status: Enabled '
ssh ${PF_SSH} sysctl net.inet.ip.forwarding | fgrep =1
ssh ${PF_SSH} sysctl net.inet6.ip6.forwarding | fgrep =1
@echo '\n======== $@ RT ========'
ssh ${RT_SSH} ping -n -c 1 ${RT_IN} # RT_IN
ssh ${RT_SSH} route -n get -inet ${RT_IN} | fgrep -q 'interface: lo0' # RT_IN
ssh ${RT_SSH} ping -n -c 1 ${PF_OUT} # PF_OUT
.for ip in PF_IN SRC_OUT
ssh ${RT_SSH} route -n get -inet ${${ip}} | fgrep -q 'gateway: ${PF_OUT}' # ${ip} PF_OUT
.endfor
ssh ${RT_SSH} ping -n -c 1 ${RT_OUT} # RT_OUT
ssh ${RT_SSH} route -n get -inet ${RT_OUT} | fgrep -q 'interface: lo0' # RT_OUT
ssh ${RT_SSH} ping -n -c 1 ${ECO_IN} # ECO_IN
.for ip in RTT_IN
ssh ${RT_SSH} route -n get -inet ${${ip}} | fgrep -q 'gateway: ${ECO_IN}' # ${ip} ECO_IN
.endfor
ssh ${RT_SSH} ping6 -n -c 1 ${RT_IN6} # RT_IN6
ssh ${RT_SSH} route -n get -inet6 ${RT_IN6} | fgrep -q 'interface: lo0' # RT_IN6
ssh ${RT_SSH} ping6 -n -c 1 ${PF_OUT6} # PF_OUT6
.for ip in PF_IN SRC_OUT
ssh ${RT_SSH} route -n get -inet6 ${${ip}6} | fgrep -q 'gateway: ${PF_OUT6}' # ${ip}6 PF_OUT6
.endfor
ssh ${RT_SSH} ping6 -n -c 1 ${RT_OUT6} # RT_OUT6
ssh ${RT_SSH} route -n get -inet6 ${RT_OUT6} | fgrep -q 'interface: lo0' # RT_OUT6
ssh ${RT_SSH} ping6 -n -c 1 ${ECO_IN6} # ECO_IN6
.for ip in RTT_IN
ssh ${RT_SSH} route -n get -inet6 ${${ip}6} | fgrep -q 'gateway: ${ECO_IN6}' # ${ip}6 ECO_IN6
.endfor
ssh ${RT_SSH} sysctl net.inet.ip.forwarding | fgrep =1
ssh ${RT_SSH} sysctl net.inet6.ip6.forwarding | fgrep =1
ssh ${RT_SSH} ifconfig | fgrep 'mtu 1300'
@echo '\n======== $@ ECO ========'
.for ip in ECO_IN RTT_IN
ssh ${ECO_SSH} ping -n -c 1 ${${ip}} # ${ip}
ssh ${ECO_SSH} route -n get -inet ${${ip}} | fgrep -q 'interface: lo0' # ${ip}
.endfor
ssh ${ECO_SSH} ping -n -c 1 ${RT_OUT} # RT_OUT
.for ip in RT_IN PF_OUT PF_IN SRC_OUT
ssh ${ECO_SSH} route -n get -inet ${${ip}} | fgrep -q 'gateway: ${RT_OUT}' # ${ip} RT_OUT
.endfor
.for ip in ECO_IN RTT_IN
ssh ${ECO_SSH} ping6 -n -c 1 ${${ip}6} # ${ip}6
ssh ${ECO_SSH} route -n get -inet6 ${${ip}6} | fgrep -q 'interface: lo0' # ${ip}6
.endfor
ssh ${ECO_SSH} ping6 -n -c 1 ${RT_OUT6} # RT_OUT6
.for ip in RT_IN PF_OUT PF_IN SRC_OUT
ssh ${ECO_SSH} route -n get -inet6 ${${ip}6} | fgrep -q 'gateway: ${RT_OUT6}' # ${ip}6 RT_OUT6
.endfor
.include <bsd.regress.mk>
|