86
86
with :
87
87
test-name : ${{ matrix.kernel }}-basic-ipv4
88
88
pwru-pcap-filter : ' dst host 1.0.0.1 and port 8080'
89
- traffic- setup : |
89
+ setup : |
90
90
iptables -w 10 -I OUTPUT 1 -m tcp --proto tcp --dst 1.0.0.1/32 --dport 8080 -j DROP
91
+ gen-traffic : |
91
92
curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://1.0.0.1:8080 || true
92
93
expected-output-pattern : ' 1.0.0.1:8080.*(kfree_skb_reason|kfree_skb|sk_skb_reason_drop\b)'
93
94
96
97
with :
97
98
test-name : ${{ matrix.kernel }}-basic-ipv6
98
99
pwru-pcap-filter : ' dst host 2606:4700:4700::1001 and port 8080'
99
- traffic- setup : |
100
+ setup : |
100
101
ip6tables -I OUTPUT 1 -m tcp --proto tcp --dst 2606:4700:4700::1001 --dport 8080 -j DROP
102
+ gen-traffic : |
101
103
curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://[2606:4700:4700::1001]:8080 || true
102
104
expected-output-pattern : ' \[2606:4700:4700::1001\]:8080.*(kfree_skb_reason|kfree_skb|sk_skb_reason_drop\b)'
103
105
@@ -106,8 +108,9 @@ jobs:
106
108
with :
107
109
test-name : ${{ matrix.kernel }}-advanced-ipv4
108
110
pwru-pcap-filter : ' tcp[tcpflags] = tcp-syn'
109
- traffic- setup : |
111
+ setup : |
110
112
iptables -w 10 -I OUTPUT 1 -m tcp --proto tcp --dst 1.0.0.2/32 --dport 8080 -j DROP
113
+ gen-traffic : |
111
114
curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://1.0.0.2:8080 || true
112
115
expected-output-pattern : ' 1.0.0.2:8080.*(kfree_skb_reason|kfree_skb|sk_skb_reason_drop\b)'
113
116
@@ -116,8 +119,9 @@ jobs:
116
119
with :
117
120
test-name : ${{ matrix.kernel }}-advanced-ipv6
118
121
pwru-pcap-filter : ' ip6[53] & 0x3f = 0x2'
119
- traffic- setup : |
122
+ setup : |
120
123
ip6tables -I OUTPUT 1 -m tcp --proto tcp --dst 2606:4700:4700::1002 --dport 8080 -j DROP
124
+ gen-traffic : |
121
125
curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://[2606:4700:4700::1002]:8080 || true
122
126
expected-output-pattern : ' \[2606:4700:4700::1002\]:8080.*(kfree_skb_reason|kfree_skb|sk_skb_reason_drop\b)'
123
127
@@ -126,7 +130,7 @@ jobs:
126
130
with :
127
131
test-name : ${{ matrix.kernel }}-pcap-filter-stack
128
132
pwru-pcap-filter : ' (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)'
129
- traffic-setup : curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://1.1.1.1 || true; sleep 5
133
+ gen-traffic : curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://1.1.1.1 || true; sleep 5
130
134
expected-output-pattern : ' 1.1.1.1:80'
131
135
132
136
- name : Test --filter-track-skb
@@ -135,8 +139,9 @@ jobs:
135
139
test-name : ${{ matrix.kernel }}-filter-track-skb
136
140
pwru-flags : --filter-track-skb
137
141
pwru-pcap-filter : dst host 10.10.20.99
138
- traffic- setup : |
142
+ setup : |
139
143
iptables -w 10 -t nat -I OUTPUT 1 -d 10.10.20.99/32 -j DNAT --to-destination 10.10.14.2
144
+ gen-traffic : |
140
145
curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://10.10.20.99:80 || true
141
146
expected-output-pattern : ' 10.10.14.2:80'
142
147
@@ -145,7 +150,7 @@ jobs:
145
150
with :
146
151
test-name : ${{ matrix.kernel }}-filter-arp
147
152
pwru-pcap-filter : ' arp and arp[7] = 1 and arp[24]= 169 and arp[25] = 254 and arp[26] = 0 and arp[27] = 1'
148
- traffic- setup : |
153
+ setup : |
149
154
ip net a pwru
150
155
ip l a pwru-veth type veth peer name pwru-veth-peer
151
156
ip l s pwru-veth-peer up
@@ -155,7 +160,7 @@ jobs:
155
160
ip net e pwru ip a a 10.0.0.1 dev pwru-veth
156
161
ip net e pwru ip r a 169.254.0.1 dev pwru-veth
157
162
ip net e pwru ip r a default via 169.254.0.1 dev pwru-veth
158
-
163
+ gen-traffic : |
159
164
ping -W1 -c1 10.0.0.1 || true
160
165
expected-output-pattern : ' arp_rcv'
161
166
@@ -165,7 +170,7 @@ jobs:
165
170
test-name : ${{ matrix.kernel }}-filter-ifname
166
171
pwru-flags : --filter-ifname lo
167
172
pwru-pcap-filter : icmp
168
- traffic-setup : |
173
+ gen-traffic : |
169
174
ping -W1 -c1 127.0.0.1 || true
170
175
expected-output-pattern : ' icmp'
171
176
@@ -176,8 +181,9 @@ jobs:
176
181
test-name : ${{ matrix.kernel }}-kprobe-multi-basic
177
182
pwru-flags : --backend=kprobe-multi
178
183
pwru-pcap-filter : ' dst host 1.0.0.1 and port 8080'
179
- traffic- setup : |
184
+ setup : |
180
185
iptables -w 10 -I OUTPUT 1 -m tcp --proto tcp --dst 1.0.0.1/32 --dport 8080 -j DROP
186
+ gen-traffic : |
181
187
curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://1.0.0.1:8080 || true
182
188
expected-output-pattern : ' 1.0.0.1:8080.*(kfree_skb_reason|kfree_skb|sk_skb_reason_drop\b)'
183
189
0 commit comments