summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/packetpath/tcp_options
blob: 88552226ee3ad6d749f7fec4c28a32e41843af7a (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
#!/bin/bash

have_socat="no"
socat -h > /dev/null && have_socat="yes"

ip link set lo up

$NFT -f /dev/stdin <<EOF
table inet t {
	counter nomatchc {}
	counter sackpermc {}
	counter maxsegc {}
	counter nopc {}

	chain c {
		type filter hook output priority 0;
		tcp dport != 22345 accept
		tcp flags & (fin | syn | rst | ack ) == syn tcp option 254  length ge 4 counter name nomatchc drop
		tcp flags & (fin | syn | rst | ack ) == syn tcp option fastopen length ge 2 reset tcp option fastopen counter name nomatchc
		tcp flags & (fin | syn | rst | ack ) == syn tcp option sack-perm missing counter name nomatchc
		tcp flags & (fin | syn | rst | ack) == syn tcp option sack-perm exists counter name sackpermc
		tcp flags & (fin | syn | rst | ack) == syn tcp option maxseg size gt 1400 counter name maxsegc
		tcp flags & (fin | syn | rst | ack) == syn tcp option nop missing counter name nomatchc
		tcp flags & (fin | syn | rst | ack) == syn tcp option nop exists counter name nopc
		tcp flags & (fin | syn | rst | ack) == syn drop
	}
}
EOF

if [ $? -ne 0 ]; then
	exit 1
fi

if [ $have_socat != "yes" ]; then
	echo "Ran partial test, socat not available (skipped)"
	exit 77
fi

# This will fail (drop in output -> connect fails with eperm)
socat -u STDIN TCP:127.0.0.1:22345,connect-timeout=1 < /dev/null > /dev/null

# can't validate via dump file, syn rexmit can cause counters to be > 1 in rare cases.

$NFT list counter inet t nomatchc

# nomatchc must be 0.
$NFT list counter inet t nomatchc | grep -q "packets 0" || exit 1

# these counters must not be 0.
for nz in sackpermc maxsegc nopc; do
	$NFT list counter inet t $nz
	$NFT list counter inet t $nz | grep -q "packets 0" && exit 1
done

exit 0