Skip to content

Commit a6e1e8b

Browse files
committed
gh/workflows: Set up traffic before running pwru
Needed when running upcoming BPF/XDP tracing tests. Signed-off-by: Martynas Pumputis <[email protected]>
1 parent 619e931 commit a6e1e8b

File tree

2 files changed

+23
-12
lines changed

2 files changed

+23
-12
lines changed

.github/actions/pwru-test/action.yaml

+7-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ inputs:
1010
pwru-pcap-filter:
1111
required: false
1212
type: string
13-
traffic-setup:
13+
setup:
14+
required: false
15+
type: string
16+
gen-traffic:
1417
required: false
1518
type: string
1619
expected-output-pattern:
@@ -27,6 +30,8 @@ runs:
2730
cmd: |
2831
set -x
2932
33+
${{ inputs.setup }}
34+
3035
/host/pwru/pwru \
3136
--output-tuple \
3237
--output-file=/tmp/pwru-${{ inputs.test-name }}.log \
@@ -38,7 +43,7 @@ runs:
3843
3944
while [ ! -f /tmp/pwru-${{ inputs.test-name }}.ready ]; do sleep 1; done
4045
41-
${{ inputs.traffic-setup }}
46+
${{ inputs.gen-traffic }}
4247
4348
kill \$PWRU_PID
4449
wait \$PWRU_PID

.github/workflows/test.yml

+16-10
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,9 @@ jobs:
8686
with:
8787
test-name: ${{ matrix.kernel }}-basic-ipv4
8888
pwru-pcap-filter: 'dst host 1.0.0.1 and port 8080'
89-
traffic-setup: |
89+
setup: |
9090
iptables -w 10 -I OUTPUT 1 -m tcp --proto tcp --dst 1.0.0.1/32 --dport 8080 -j DROP
91+
gen-traffic: |
9192
curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://1.0.0.1:8080 || true
9293
expected-output-pattern: '1.0.0.1:8080.*(kfree_skb_reason|kfree_skb|sk_skb_reason_drop\b)'
9394

@@ -96,8 +97,9 @@ jobs:
9697
with:
9798
test-name: ${{ matrix.kernel }}-basic-ipv6
9899
pwru-pcap-filter: 'dst host 2606:4700:4700::1001 and port 8080'
99-
traffic-setup: |
100+
setup: |
100101
ip6tables -I OUTPUT 1 -m tcp --proto tcp --dst 2606:4700:4700::1001 --dport 8080 -j DROP
102+
gen-traffic: |
101103
curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://[2606:4700:4700::1001]:8080 || true
102104
expected-output-pattern: '\[2606:4700:4700::1001\]:8080.*(kfree_skb_reason|kfree_skb|sk_skb_reason_drop\b)'
103105

@@ -106,8 +108,9 @@ jobs:
106108
with:
107109
test-name: ${{ matrix.kernel }}-advanced-ipv4
108110
pwru-pcap-filter: 'tcp[tcpflags] = tcp-syn'
109-
traffic-setup: |
111+
setup: |
110112
iptables -w 10 -I OUTPUT 1 -m tcp --proto tcp --dst 1.0.0.2/32 --dport 8080 -j DROP
113+
gen-traffic: |
111114
curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://1.0.0.2:8080 || true
112115
expected-output-pattern: '1.0.0.2:8080.*(kfree_skb_reason|kfree_skb|sk_skb_reason_drop\b)'
113116

@@ -116,8 +119,9 @@ jobs:
116119
with:
117120
test-name: ${{ matrix.kernel }}-advanced-ipv6
118121
pwru-pcap-filter: 'ip6[53] & 0x3f = 0x2'
119-
traffic-setup: |
122+
setup: |
120123
ip6tables -I OUTPUT 1 -m tcp --proto tcp --dst 2606:4700:4700::1002 --dport 8080 -j DROP
124+
gen-traffic: |
121125
curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://[2606:4700:4700::1002]:8080 || true
122126
expected-output-pattern: '\[2606:4700:4700::1002\]:8080.*(kfree_skb_reason|kfree_skb|sk_skb_reason_drop\b)'
123127

@@ -126,7 +130,7 @@ jobs:
126130
with:
127131
test-name: ${{ matrix.kernel }}-pcap-filter-stack
128132
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
130134
expected-output-pattern: '1.1.1.1:80'
131135

132136
- name: Test --filter-track-skb
@@ -135,8 +139,9 @@ jobs:
135139
test-name: ${{ matrix.kernel }}-filter-track-skb
136140
pwru-flags: --filter-track-skb
137141
pwru-pcap-filter: dst host 10.10.20.99
138-
traffic-setup: |
142+
setup: |
139143
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: |
140145
curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://10.10.20.99:80 || true
141146
expected-output-pattern: '10.10.14.2:80'
142147

@@ -145,7 +150,7 @@ jobs:
145150
with:
146151
test-name: ${{ matrix.kernel }}-filter-arp
147152
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: |
149154
ip net a pwru
150155
ip l a pwru-veth type veth peer name pwru-veth-peer
151156
ip l s pwru-veth-peer up
@@ -155,7 +160,7 @@ jobs:
155160
ip net e pwru ip a a 10.0.0.1 dev pwru-veth
156161
ip net e pwru ip r a 169.254.0.1 dev pwru-veth
157162
ip net e pwru ip r a default via 169.254.0.1 dev pwru-veth
158-
163+
gen-traffic: |
159164
ping -W1 -c1 10.0.0.1 || true
160165
expected-output-pattern: 'arp_rcv'
161166

@@ -165,7 +170,7 @@ jobs:
165170
test-name: ${{ matrix.kernel }}-filter-ifname
166171
pwru-flags: --filter-ifname lo
167172
pwru-pcap-filter: icmp
168-
traffic-setup: |
173+
gen-traffic: |
169174
ping -W1 -c1 127.0.0.1 || true
170175
expected-output-pattern: 'icmp'
171176

@@ -176,8 +181,9 @@ jobs:
176181
test-name: ${{ matrix.kernel }}-kprobe-multi-basic
177182
pwru-flags: --backend=kprobe-multi
178183
pwru-pcap-filter: 'dst host 1.0.0.1 and port 8080'
179-
traffic-setup: |
184+
setup: |
180185
iptables -w 10 -I OUTPUT 1 -m tcp --proto tcp --dst 1.0.0.1/32 --dport 8080 -j DROP
186+
gen-traffic: |
181187
curl -vvv -sS --fail --connect-timeout "1" -o /dev/null http://1.0.0.1:8080 || true
182188
expected-output-pattern: '1.0.0.1:8080.*(kfree_skb_reason|kfree_skb|sk_skb_reason_drop\b)'
183189

0 commit comments

Comments
 (0)