]> git.proxmox.com Git - mirror_ovs.git/blob - tests/tunnel.at
erspan: add kernel datapath support
[mirror_ovs.git] / tests / tunnel.at
1 AT_BANNER([tunnel])
2
3 AT_SETUP([tunnel - input])
4 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=gre \
5 options:remote_ip=1.1.1.1 ofport_request=1\
6 -- add-port br0 p2 -- set Interface p2 type=gre \
7 options:local_ip=2.2.2.2 options:remote_ip=1.1.1.1 \
8 ofport_request=2 \
9 -- add-port br0 p3 -- set Interface p3 type=gre \
10 options:remote_ip=2.2.2.2 ofport_request=3])
11 AT_DATA([flows.txt], [dnl
12 actions=IN_PORT
13 ])
14 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
15
16 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
17
18 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
19 br0 65534/100: (dummy-internal)
20 p1 1/1: (gre: remote_ip=1.1.1.1)
21 p2 2/1: (gre: local_ip=2.2.2.2, remote_ip=1.1.1.1)
22 p3 3/1: (gre: remote_ip=2.2.2.2)
23 ])
24
25 dnl remote_ip
26 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(src=1.1.1.1,dst=1.2.3.4,ttl=64,flags()),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
27 AT_CHECK([tail -1 stdout], [0],
28 [Datapath actions: set(tunnel(dst=1.1.1.1,ttl=64,flags(df))),1
29 ])
30
31 dnl local_ip, remote_ip
32 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(src=1.1.1.1,dst=2.2.2.2,ttl=64,flags()),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
33 AT_CHECK([tail -1 stdout], [0],
34 [Datapath actions: set(tunnel(src=2.2.2.2,dst=1.1.1.1,ttl=64,flags(df))),1
35 ])
36
37 dnl reconfigure, local_ip, remote_ip
38 AT_CHECK([ovs-vsctl set Interface p2 type=gre options:local_ip=2.2.2.3 \
39 options:df_default=false options:ttl=1 options:csum=true \
40 -- set Interface p3 type=vxlan])
41 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
42 br0 65534/100: (dummy-internal)
43 p1 1/1: (gre: remote_ip=1.1.1.1)
44 p2 2/1: (gre: csum=true, df_default=false, local_ip=2.2.2.3, remote_ip=1.1.1.1, ttl=1)
45 p3 3/4789: (vxlan: remote_ip=2.2.2.2)
46 ])
47 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(src=1.1.1.1,dst=2.2.2.2,ttl=64,flags()),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
48 AT_CHECK([tail -1 stdout], [0],
49 [Datapath actions: set(tunnel(dst=1.1.1.1,ttl=64,flags(df))),1
50 ])
51 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(src=1.1.1.1,dst=2.2.2.3,ttl=64,flags()),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
52 AT_CHECK([tail -1 stdout], [0],
53 [Datapath actions: set(tunnel(src=2.2.2.3,dst=1.1.1.1,ttl=1,flags(csum))),1
54 ])
55
56 dnl nonexistent tunnel
57 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(src=5.5.5.5,dst=6.6.6.6,ttl=64,flags()),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [2], [ignore], [dnl
58 Invalid datapath flow
59 ovs-appctl: ovs-vswitchd: server returned an error
60 ])
61
62 OVS_VSWITCHD_STOP(["/receive tunnel port not found/d"])
63 AT_CLEANUP
64
65 AT_SETUP([tunnel - ECN decapsulation])
66 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=gre \
67 options:remote_ip=1.1.1.1 ofport_request=1 \
68 -- add-port br0 p2 -- set Interface p2 type=dummy \
69 ofport_request=2])
70 AT_DATA([flows.txt], [dnl
71 actions=2
72 ])
73
74 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
75
76 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
77 br0 65534/100: (dummy-internal)
78 p1 1/1: (gre: remote_ip=1.1.1.1)
79 p2 2/2: (dummy)
80 ])
81
82 dnl Tunnel CE and encapsulated packet CE
83 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(src=1.1.1.1,dst=2.2.2.2,tos=0x3,ttl=64,flags()),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=3,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
84 AT_CHECK([tail -2 stdout], [0],
85 [Megaflow: recirc_id=0,eth,ip,tun_id=0,tun_src=1.1.1.1,tun_dst=2.2.2.2,tun_tos=3,tun_flags=-df-csum-key,in_port=1,nw_ecn=3,nw_frag=no
86 Datapath actions: 2
87 ])
88
89 dnl Tunnel CE and encapsulated packet ECT(1)
90 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(src=1.1.1.1,dst=2.2.2.2,tos=0x3,ttl=64,flags()),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=1,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
91 AT_CHECK([tail -2 stdout], [0],
92 [Megaflow: recirc_id=0,eth,ip,tun_id=0,tun_src=1.1.1.1,tun_dst=2.2.2.2,tun_tos=3,tun_flags=-df-csum-key,in_port=1,nw_ecn=1,nw_frag=no
93 Datapath actions: set(ipv4(tos=0x3/0x3)),2
94 ])
95
96 dnl Tunnel CE and encapsulated packet ECT(2)
97 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(src=1.1.1.1,dst=2.2.2.2,tos=0x3,ttl=64,flags()),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=2,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
98 AT_CHECK([tail -2 stdout], [0],
99 [Megaflow: recirc_id=0,eth,ip,tun_id=0,tun_src=1.1.1.1,tun_dst=2.2.2.2,tun_tos=3,tun_flags=-df-csum-key,in_port=1,nw_ecn=2,nw_frag=no
100 Datapath actions: set(ipv4(tos=0x3/0x3)),2
101 ])
102
103 dnl Tunnel CE and encapsulated packet Non-ECT
104 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(src=1.1.1.1,dst=2.2.2.2,tos=0x3,ttl=64,flags()),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
105 AT_CHECK([tail -2 stdout], [0],
106 [Megaflow: recirc_id=0,eth,ip,tun_id=0,tun_src=1.1.1.1,tun_dst=2.2.2.2,tun_tos=3,tun_flags=-df-csum-key,in_port=1,nw_ecn=0,nw_frag=no
107 Datapath actions: drop
108 ])
109 OVS_VSWITCHD_STOP(["/dropping tunnel packet marked ECN CE but is not ECN capable/d"])
110 AT_CLEANUP
111
112 AT_SETUP([tunnel - output])
113 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=gre \
114 options:remote_ip=1.1.1.1 options:local_ip=2.2.2.2 \
115 options:key=5 ofport_request=1\
116 -- add-port br0 p2 -- set Interface p2 type=dummy \
117 ofport_request=2])
118 AT_DATA([flows.txt], [dnl
119 actions=output:1
120 ])
121
122 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
123 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
124
125 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
126 br0 65534/100: (dummy-internal)
127 p1 1/1: (gre: key=5, local_ip=2.2.2.2, remote_ip=1.1.1.1)
128 p2 2/2: (dummy)
129 ])
130
131 dnl Basic
132 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=4,ttl=128,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
133 AT_CHECK([tail -1 stdout], [0],
134 [Datapath actions: set(tunnel(tun_id=0x5,src=2.2.2.2,dst=1.1.1.1,ttl=64,flags(df|key))),1
135 ])
136
137 dnl ECN
138 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=1,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
139 AT_CHECK([tail -1 stdout], [0],
140 [Datapath actions: set(tunnel(tun_id=0x5,src=2.2.2.2,dst=1.1.1.1,tos=0x1,ttl=64,flags(df|key))),1
141 ])
142 OVS_VSWITCHD_STOP
143 AT_CLEANUP
144
145 AT_SETUP([tunnel - unencrypted tunnel and not setting skb_mark])
146 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=gre \
147 options:remote_ip=1.1.1.1 options:local_ip=2.2.2.2 \
148 options:key=5 ofport_request=1\
149 -- add-port br0 p2 -- set Interface p2 type=dummy \
150 ofport_request=2 ofport_request=2])
151 AT_DATA([flows.txt], [dnl
152 actions=output:1
153 ])
154 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
155 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
156 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=4,ttl=128,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
157 AT_CHECK([tail -1 stdout], [0],
158 [Datapath actions: set(tunnel(tun_id=0x5,src=2.2.2.2,dst=1.1.1.1,ttl=64,flags(df|key))),1
159 ])
160 OVS_VSWITCHD_STOP
161 AT_CLEANUP
162
163 AT_SETUP([tunnel - unencrypted tunnel and setting skb_mark to 1])
164 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=gre \
165 options:remote_ip=1.1.1.1 options:local_ip=2.2.2.2 \
166 options:key=5 ofport_request=1\
167 -- add-port br0 p2 -- set Interface p2 type=dummy \
168 ofport_request=2 ofport_request=2])
169 AT_DATA([flows.txt], [dnl
170 actions=load:0x1->NXM_NX_PKT_MARK[[]],output:1
171 ])
172 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
173 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
174 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=4,ttl=128,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
175 AT_CHECK([tail -1 stdout], [0],
176 [Datapath actions: set(tunnel(tun_id=0x5,src=2.2.2.2,dst=1.1.1.1,ttl=64,flags(df|key))),set(skb_mark(0x1)),1
177 ])
178 OVS_VSWITCHD_STOP
179 AT_CLEANUP
180
181 AT_SETUP([tunnel - unencrypted tunnel and setting skb_mark to 2])
182 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=gre \
183 options:remote_ip=1.1.1.1 options:local_ip=2.2.2.2 \
184 options:key=5 ofport_request=1\
185 -- add-port br0 p2 -- set Interface p2 type=dummy \
186 ofport_request=2 ofport_request=2])
187 AT_DATA([flows.txt], [dnl
188 actions=load:0x2->NXM_NX_PKT_MARK[[]],output:1
189 ])
190 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
191 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
192 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=4,ttl=128,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
193 AT_CHECK([tail -1 stdout], [0],
194 [Datapath actions: set(tunnel(tun_id=0x5,src=2.2.2.2,dst=1.1.1.1,ttl=64,flags(df|key))),set(skb_mark(0x2)),1
195 ])
196 OVS_VSWITCHD_STOP
197 AT_CLEANUP
198
199 AT_SETUP([tunnel - ToS and TTL inheritance])
200 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=gre \
201 options:remote_ip=1.1.1.1 options:tos=inherit \
202 options:ttl=inherit ofport_request=1 \
203 -- add-port br0 p2 -- set Interface p2 type=dummy \
204 ofport_request=2 ofport_request=2])
205 AT_DATA([flows.txt], [dnl
206 actions=output:1
207 ])
208
209 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
210 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
211
212 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
213 br0 65534/100: (dummy-internal)
214 p1 1/1: (gre: remote_ip=1.1.1.1, tos=inherit, ttl=inherit)
215 p2 2/2: (dummy)
216 ])
217
218 dnl Basic
219 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=4,ttl=128,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
220 AT_CHECK([tail -1 stdout], [0],
221 [Datapath actions: set(tunnel(dst=1.1.1.1,tos=0x4,ttl=128,flags(df))),1
222 ])
223
224 dnl ECN
225 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=5,ttl=128,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
226 AT_CHECK([tail -1 stdout], [0],
227 [Datapath actions: set(tunnel(dst=1.1.1.1,tos=0x5,ttl=128,flags(df))),1
228 ])
229
230 dnl non-IP
231 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0806),arp(sip=1.2.3.4,tip=5.6.7.8,op=1,sha=00:0f:10:11:12:13,tha=00:14:15:16:17:18)'], [0], [stdout])
232 AT_CHECK([tail -1 stdout], [0],
233 [Datapath actions: set(tunnel(dst=1.1.1.1,ttl=64,flags(df))),1
234 ])
235 OVS_VSWITCHD_STOP
236 AT_CLEANUP
237
238 AT_SETUP([tunnel - set_tunnel])
239 OVS_VSWITCHD_START([dnl
240 add-port br0 p1 -- set Interface p1 type=gre options:key=flow \
241 options:remote_ip=1.1.1.1 ofport_request=1 \
242 -- add-port br0 p2 -- set Interface p2 type=gre options:key=flow \
243 options:remote_ip=2.2.2.2 ofport_request=2 \
244 -- add-port br0 p3 -- set Interface p3 type=gre options:key=flow \
245 options:remote_ip=3.3.3.3 ofport_request=3 \
246 -- add-port br0 p4 -- set Interface p4 type=gre options:key=flow \
247 options:remote_ip=4.4.4.4 ofport_request=4])
248 AT_DATA([flows.txt], [dnl
249 actions=set_tunnel:1,output:1,set_tunnel:2,output:2,set_tunnel:3,output:3,set_tunnel:5,output:4
250 ])
251
252 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
253 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
254
255 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
256 br0 65534/100: (dummy-internal)
257 p1 1/1: (gre: key=flow, remote_ip=1.1.1.1)
258 p2 2/1: (gre: key=flow, remote_ip=2.2.2.2)
259 p3 3/1: (gre: key=flow, remote_ip=3.3.3.3)
260 p4 4/1: (gre: key=flow, remote_ip=4.4.4.4)
261 ])
262
263 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(100),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)'], [0], [stdout])
264 AT_CHECK([tail -1 stdout], [0], [Datapath actions: dnl
265 set(tunnel(tun_id=0x1,dst=1.1.1.1,ttl=64,flags(df|key))),1,dnl
266 set(tunnel(tun_id=0x2,dst=2.2.2.2,ttl=64,flags(df|key))),1,dnl
267 set(tunnel(tun_id=0x3,dst=3.3.3.3,ttl=64,flags(df|key))),1,dnl
268 set(tunnel(tun_id=0x5,dst=4.4.4.4,ttl=64,flags(df|key))),1
269 ])
270 OVS_VSWITCHD_STOP
271 AT_CLEANUP
272
273 AT_SETUP([tunnel - key])
274 OVS_VSWITCHD_START([dnl
275 add-port br0 p1 -- set Interface p1 type=gre options:key=1 \
276 options:remote_ip=1.1.1.1 ofport_request=1 \
277 -- add-port br0 p2 -- set Interface p2 type=gre options:in_key=2 \
278 options:out_key=3 options:remote_ip=1.1.1.1 ofport_request=2 \
279 -- add-port br0 p3 -- set Interface p3 type=gre options:out_key=5 \
280 options:remote_ip=1.1.1.1 ofport_request=3])
281 AT_DATA([flows.txt], [dnl
282 actions=IN_PORT,output:1,output:2,output:3
283 ])
284
285 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
286 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
287
288 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
289 br0 65534/100: (dummy-internal)
290 p1 1/1: (gre: key=1, remote_ip=1.1.1.1)
291 p2 2/1: (gre: in_key=2, out_key=3, remote_ip=1.1.1.1)
292 p3 3/1: (gre: out_key=5, remote_ip=1.1.1.1)
293 ])
294
295 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(tun_id=0x1,src=1.1.1.1,dst=2.2.2.2,ttl=64,flags(key)),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
296 AT_CHECK([tail -1 stdout], [0], [Datapath actions: dnl
297 set(tunnel(tun_id=0x1,dst=1.1.1.1,ttl=64,flags(df|key))),1,dnl
298 set(tunnel(tun_id=0x3,dst=1.1.1.1,ttl=64,flags(df|key))),1,dnl
299 set(tunnel(tun_id=0x5,dst=1.1.1.1,ttl=64,flags(df|key))),1
300 ])
301
302 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(tun_id=0x2,src=1.1.1.1,dst=2.2.2.2,ttl=64,flags(key)),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
303 AT_CHECK([tail -1 stdout], [0], [Datapath actions: dnl
304 set(tunnel(tun_id=0x3,dst=1.1.1.1,ttl=64,flags(df|key))),1,dnl
305 set(tunnel(tun_id=0x1,dst=1.1.1.1,ttl=64,flags(df|key))),1,dnl
306 set(tunnel(tun_id=0x5,dst=1.1.1.1,ttl=64,flags(df|key))),1
307 ])
308
309 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(src=1.1.1.1,dst=2.2.2.2,ttl=64,flags()),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
310 AT_CHECK([tail -1 stdout], [0], [Datapath actions: dnl
311 set(tunnel(tun_id=0x5,dst=1.1.1.1,ttl=64,flags(df|key))),1,dnl
312 set(tunnel(tun_id=0x1,dst=1.1.1.1,ttl=64,flags(df|key))),1,dnl
313 set(tunnel(tun_id=0x3,dst=1.1.1.1,ttl=64,flags(df|key))),1
314 ])
315
316 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(tun_id=0xf,src=1.1.1.1,dst=2.2.2.2,ttl=64,flags(key)),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [2], [ignore], [dnl
317 Invalid datapath flow
318 ovs-appctl: ovs-vswitchd: server returned an error
319 ])
320 OVS_VSWITCHD_STOP(["/receive tunnel port not found/d"])
321 AT_CLEANUP
322
323 AT_SETUP([tunnel - key match])
324 OVS_VSWITCHD_START([dnl
325 add-port br0 p1 -- set Interface p1 type=gre options:key=flow \
326 options:remote_ip=1.1.1.1 ofport_request=1 \
327 -- add-port br0 p2 -- set Interface p2 type=gre options:key=3 \
328 options:remote_ip=3.3.3.3 ofport_request=2 \
329 -- add-port br0 p3 -- set Interface p3 type=dummy ofport_request=3 \
330 -- add-port br0 p4 -- set Interface p4 type=dummy ofport_request=4 \
331 -- add-port br0 p5 -- set Interface p5 type=dummy ofport_request=5])
332 AT_DATA([flows.txt], [dnl
333 tun_id=2,actions=output:3
334 tun_id=3,actions=output:4,set_tunnel:2,resubmit:99,set_tunnel:4,output:2,resubmit:99
335 tun_id=4,actions=output:5
336 ])
337
338 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
339 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
340
341 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
342 br0 65534/100: (dummy-internal)
343 p1 1/1: (gre: key=flow, remote_ip=1.1.1.1)
344 p2 2/1: (gre: key=3, remote_ip=3.3.3.3)
345 p3 3/3: (dummy)
346 p4 4/4: (dummy)
347 p5 5/5: (dummy)
348 ])
349
350 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(tun_id=0x2,src=1.1.1.1,dst=2.2.2.2,ttl=64,flags(key)),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
351 AT_CHECK([tail -1 stdout], [0], [dnl
352 Datapath actions: 3
353 ])
354
355 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(tun_id=0x3,src=1.1.1.1,dst=2.2.2.2,ttl=64,flags(key)),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
356 AT_CHECK([tail -1 stdout], [0], [dnl
357 Datapath actions: 4,3,set(tunnel(tun_id=0x3,dst=3.3.3.3,ttl=64,flags(df|key))),1,5
358 ])
359
360 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(tun_id=0x3,src=3.3.3.3,dst=2.2.2.2,ttl=64,flags(key)),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
361 AT_CHECK([tail -1 stdout], [0], [dnl
362 Datapath actions: 4,3,5
363 ])
364
365 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(tun_id=0x0,src=1.1.1.1,dst=2.2.2.2,ttl=64,flags(key)),in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'], [0], [stdout])
366 AT_CHECK([tail -1 stdout], [0], [dnl
367 Datapath actions: drop
368 ])
369
370 OVS_VSWITCHD_STOP
371 AT_CLEANUP
372
373 AT_SETUP([tunnel - Geneve])
374 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=geneve \
375 options:remote_ip=1.1.1.1 ofport_request=1 options:dst_port=5000])
376
377 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
378 br0 65534/100: (dummy-internal)
379 p1 1/5000: (geneve: dst_port=5000, remote_ip=1.1.1.1)
380 ])
381
382 OVS_VSWITCHD_STOP
383 AT_CLEANUP
384
385 AT_SETUP([tunnel - VXLAN])
386 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=vxlan \
387 options:remote_ip=1.1.1.1 ofport_request=1])
388
389 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
390 br0 65534/100: (dummy-internal)
391 p1 1/4789: (vxlan: remote_ip=1.1.1.1)
392 ])
393
394 OVS_VSWITCHD_STOP
395 AT_CLEANUP
396
397 AT_SETUP([tunnel - LISP])
398 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=lisp \
399 options:remote_ip=1.1.1.1 ofport_request=1])
400
401 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
402 br0 65534/100: (dummy-internal)
403 p1 1/4341: (lisp: remote_ip=1.1.1.1)
404 ])
405
406 OVS_VSWITCHD_STOP
407 AT_CLEANUP
408
409 AT_SETUP([tunnel - ERSPAN])
410 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=erspan \
411 options:remote_ip=1.1.1.1 ofport_request=1])
412
413 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
414 br0 65534/100: (dummy-internal)
415 p1 1/1: (erspan: remote_ip=1.1.1.1)
416 ])
417
418 OVS_VSWITCHD_STOP
419 AT_CLEANUP
420
421 AT_SETUP([tunnel - different VXLAN UDP port])
422 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=vxlan \
423 options:remote_ip=1.1.1.1 ofport_request=1 options:dst_port=4341])
424
425 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
426 br0 65534/100: (dummy-internal)
427 p1 1/4341: (vxlan: dst_port=4341, remote_ip=1.1.1.1)
428 ])
429
430 dnl change UDP port
431
432 AT_CHECK([ovs-vsctl -- set Interface p1 options:dst_port=5000])
433
434 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
435 br0 65534/100: (dummy-internal)
436 p1 1/5000: (vxlan: dst_port=5000, remote_ip=1.1.1.1)
437 ])
438
439 dnl change UDP port to default
440
441 AT_CHECK([ovs-vsctl -- set Interface p1 options:dst_port=4789])
442
443 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
444 br0 65534/100: (dummy-internal)
445 p1 1/4789: (vxlan: remote_ip=1.1.1.1)
446 ])
447 OVS_VSWITCHD_STOP
448 AT_CLEANUP
449
450 AT_SETUP([ofproto-dpif - set_field - tun_src/tun_dst/tun_id])
451 OVS_VSWITCHD_START([dnl
452 add-port br0 p1 -- set Interface p1 type=gre options:key=flow \
453 options:remote_ip=1.1.1.1 ofport_request=1 \
454 -- add-port br0 p2 -- set Interface p2 type=gre options:key=flow \
455 options:remote_ip=flow ofport_request=2 \
456 -- add-port br0 p3 -- set Interface p3 type=gre options:key=flow \
457 options:remote_ip=flow options:local_ip=flow ofport_request=3 \
458 -- add-port br0 p4 -- set Interface p4 type=gre options:key=3 \
459 options:remote_ip=flow ofport_request=4 \
460 -- add-port br0 p5 -- set Interface p5 type=gre options:key=flow \
461 options:remote_ip=5.5.5.5 ofport_request=5])
462
463 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
464 add_of_ports br0 90
465 AT_DATA([flows.txt], [dnl
466 in_port=90 actions=resubmit:1,resubmit:2,resubmit:3,resubmit:4,resubmit:5
467 in_port=1 actions=set_field:42->tun_id,output:1
468 in_port=2 actions=set_field:3.3.3.3->tun_dst,output:2
469 in_port=3 actions=set_field:1.1.1.1->tun_src,set_field:4.4.4.4->tun_dst,output:3
470 in_port=4 actions=set_field:2.2.2.2->tun_dst,output:4
471 in_port=5 actions=set_field:5->tun_id
472 ])
473 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
474 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(90),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)'], [0], [stdout])
475 AT_CHECK([tail -1 stdout], [0],
476 [Datapath actions: set(tunnel(tun_id=0x2a,dst=1.1.1.1,ttl=64,flags(df|key))),1,set(tunnel(tun_id=0x2a,dst=3.3.3.3,ttl=64,flags(df|key))),1,set(tunnel(tun_id=0x2a,src=1.1.1.1,dst=4.4.4.4,ttl=64,flags(df|key))),1,set(tunnel(tun_id=0x3,dst=2.2.2.2,ttl=64,flags(df|key))),1
477 ])
478 OVS_VSWITCHD_STOP
479 AT_CLEANUP
480
481 AT_SETUP([tunnel - ERSPAN v1/v2 metadata])
482 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=dummy \
483 ofport_request=1 \
484 -- add-port br0 p2 -- set Interface p2 type=dummy \
485 ofport_request=2 \
486 -- add-port br0 p3 -- set Interface p3 type=erspan \
487 options:remote_ip=1.1.1.1 ofport_request=3 \
488 options:key=1 options:erspan_ver=1 options:erspan_idx=7 \
489 -- add-port br0 p4 -- set Interface p4 type=erspan \
490 options:remote_ip=1.1.1.2 ofport_request=4 \
491 options:key=2 options:erspan_ver=2 options:erspan_dir=1 options:erspan_hwid=7 \
492 ])
493 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
494
495 AT_CHECK([ovs-appctl dpif/show | tail -n +3], [0], [dnl
496 br0 65534/100: (dummy-internal)
497 p1 1/3: (dummy)
498 p2 2/2: (dummy)
499 p3 3/1: (erspan: erspan_idx=0x7, erspan_ver=1, key=1, remote_ip=1.1.1.1)
500 p4 4/1: (erspan: erspan_dir=1, erspan_hwid=0x7, erspan_ver=2, key=2, remote_ip=1.1.1.2)
501 ])
502
503 AT_DATA([flows.txt], [dnl
504 in_port=1,actions=3
505 in_port=2,actions=4
506 in_port=3,tun_erspan_ver=1,tun_erspan_idx=0x7,actions=1
507 in_port=4,tun_erspan_ver=2,tun_erspan_dir=1,tun_erspan_hwid=0xf/0x1,actions=2
508 ])
509 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
510
511 dnl test encap: in_port=1,actions=3 (erspan v1 port)
512 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(3),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)'], [0], [stdout])
513 AT_CHECK([tail -1 stdout], [0],
514 [Datapath actions: set(tunnel(tun_id=0x1,dst=1.1.1.1,ttl=64,erspan(ver=1,idx=0x7),flags(df|key))),1
515 ])
516
517 dnl test encap: in_port=2,actions=4 (erspan v2 port)
518 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)'], [0], [stdout])
519 AT_CHECK([tail -1 stdout], [0],
520 [Datapath actions: set(tunnel(tun_id=0x2,dst=1.1.1.2,ttl=64,erspan(ver=2,dir=1,hwid=0x7),flags(df|key))),1
521 ])
522
523 dnl receive packet from ERSPAN port with v1 metadata
524 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'recirc_id(0),tunnel(tun_id=0x1,src=1.1.1.1,dst=2.2.2.2,ttl=64,erspan(ver=1,idx=0x7),flags(df|key)),in_port(1),skb_mark(0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(frag=no)'], [0], [stdout])
525 AT_CHECK([tail -2 stdout], [0],
526 [Megaflow: recirc_id=0,eth,ip,tun_id=0x1,tun_src=1.1.1.1,tun_dst=2.2.2.2,tun_tos=0,erspan_ver=1,erspan_idx=0x7,tun_flags=+df-csum+key,in_port=3,nw_frag=no
527 Datapath actions: 3
528 ])
529
530 dnl receive packet from ERSPAN port with wrong v1 metadata
531 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'recirc_id(0),tunnel(tun_id=0x1,src=1.1.1.1,dst=2.2.2.2,ttl=64,erspan(ver=1,idx=0xabcd),flags(df|key)),in_port(1),skb_mark(0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(frag=no)'], [0], [stdout])
532 AT_CHECK([tail -2 stdout], [0],
533 [Megaflow: recirc_id=0,eth,ip,tun_id=0x1,tun_src=1.1.1.1,tun_dst=2.2.2.2,tun_tos=0,erspan_ver=1,erspan_idx=0xabcd,tun_flags=+df-csum+key,in_port=3,nw_frag=no
534 Datapath actions: drop
535 ])
536
537 dnl receive packet from ERSPAN port with v2 metadata
538 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'recirc_id(0),tunnel(tun_id=0x2,src=1.1.1.2,dst=2.2.2.2,ttl=64,erspan(ver=2,dir=1,hwid=0x7),flags(df|key)),in_port(1),skb_mark(0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(frag=no)'], [0], [stdout])
539 AT_CHECK([tail -2 stdout], [0],
540 [Megaflow: recirc_id=0,eth,ip,tun_id=0x2,tun_src=1.1.1.2,tun_dst=2.2.2.2,tun_tos=0,erspan_ver=2,erspan_dir=1,erspan_hwid=0x1,tun_flags=+df-csum+key,in_port=4,nw_frag=no
541 Datapath actions: 2
542 ])
543
544 dnl receive packet from ERSPAN port with wrong v2 metadata
545 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'recirc_id(0),tunnel(tun_id=0x2,src=1.1.1.2,dst=2.2.2.2,ttl=64,erspan(ver=2,dir=0,hwid=0x17),flags(df|key)),in_port(1),skb_mark(0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(frag=no)'], [0], [stdout])
546 AT_CHECK([tail -2 stdout], [0],
547 [Megaflow: recirc_id=0,eth,ip,tun_id=0x2,tun_src=1.1.1.2,tun_dst=2.2.2.2,tun_tos=0,erspan_ver=2,erspan_dir=0,erspan_hwid=0x1,tun_flags=+df-csum+key,in_port=4,nw_frag=no
548 Datapath actions: drop
549 ])
550
551 dnl test wildcard mask: recevie all v2 regardless of its metadata
552 AT_CHECK([ovs-ofctl del-flows br0 in_port=4,tun_erspan_ver=2,tun_erspan_dir=1,tun_erspan_hwid=0xf/0x1])
553 AT_CHECK([ovs-ofctl add-flow br0 in_port=4,tun_erspan_ver=2,tun_erspan_dir=0/0,tun_erspan_hwid=0x0/0x0,actions=2])
554
555 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip],
556 [0], [dnl
557 NXST_FLOW reply:
558 in_port=1 actions=output:3
559 in_port=2 actions=output:4
560 erspan_ver=1,erspan_idx=0x7,in_port=3 actions=output:1
561 erspan_ver=2,in_port=4 actions=output:2
562 ])
563
564 dnl this time it won't drop
565 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'recirc_id(0),tunnel(tun_id=0x2,src=1.1.1.2,dst=2.2.2.2,ttl=64,erspan(ver=2,dir=0,hwid=0x17),flags(df|key)),in_port(1),skb_mark(0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(frag=no)'], [0], [stdout])
566 AT_CHECK([tail -2 stdout], [0],
567 [Megaflow: recirc_id=0,eth,ip,tun_id=0x2,tun_src=1.1.1.2,tun_dst=2.2.2.2,tun_tos=0,erspan_ver=2,tun_flags=+df-csum+key,in_port=4,nw_frag=no
568 Datapath actions: 2
569 ])
570
571 OVS_VSWITCHD_STOP
572 AT_CLEANUP
573
574 AT_SETUP([tunnel - Geneve metadata])
575 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=geneve \
576 options:remote_ip=1.1.1.1 ofport_request=1 \
577 -- add-port br0 p2 -- set Interface p2 type=dummy \
578 ofport_request=2 ofport_request=2])
579 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
580
581 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=0,len=4}->tun_metadata0,{class=0xffff,type=1,len=8}->tun_metadata1"])
582
583 AT_DATA([flows.txt], [dnl
584 in_port=2,actions=set_field:0xa->tun_metadata0,set_field:0x1234567890abcdef->tun_metadata1,1
585 tun_metadata0=0xb/0xf,actions=2
586 ])
587 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
588
589 dnl Option generation
590 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)'], [0], [stdout])
591 AT_CHECK([tail -1 stdout], [0],
592 [Datapath actions: set(tunnel(dst=1.1.1.1,ttl=64,tp_dst=6081,geneve({class=0xffff,type=0,len=4,0xa}{class=0xffff,type=0x1,len=8,0x1234567890abcdef}),flags(df))),6081
593 ])
594
595 dnl Option match
596 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'recirc_id(0),tunnel(tun_id=0x0,src=1.1.1.1,dst=1.1.1.2,ttl=64,geneve({class=0xffff,type=0,len=4,0xb}),flags(df|key)),in_port(6081),skb_mark(0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(frag=no)'], [0], [stdout])
597 AT_CHECK([tail -2 stdout], [0],
598 [Megaflow: recirc_id=0,eth,ip,tun_id=0,tun_src=1.1.1.1,tun_dst=1.1.1.2,tun_tos=0,tun_flags=+df-csum+key,tun_metadata0=0xb/0xf,in_port=1,nw_frag=no
599 Datapath actions: 2
600 ])
601
602 dnl Skip unknown option
603 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'recirc_id(0),tunnel(tun_id=0x0,src=1.1.1.1,dst=1.1.1.2,ttl=64,geneve({class=0xffff,type=0,len=4,0xb}{class=0xffff,type=2,len=4,0xc}),flags(df|key)),in_port(6081),skb_mark(0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(frag=no)'], [0], [stdout])
604 AT_CHECK([tail -2 stdout], [0],
605 [Megaflow: recirc_id=0,eth,ip,tun_id=0,tun_src=1.1.1.1,tun_dst=1.1.1.2,tun_tos=0,tun_flags=+df-csum+key,tun_metadata0=0xb/0xf,in_port=1,nw_frag=no
606 Datapath actions: 2
607 ])
608
609 dnl Check mapping table constraints
610 AT_CHECK([ovs-ofctl del-flows br0])
611 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=2,len=124}->tun_metadata2,{class=0xffff,type=3,len=124}->tun_metadata3"], [1], [ignore],
612 [OFPT_ERROR (xid=0x4): NXTTMFC_TABLE_FULL
613 NXT_TLV_TABLE_MOD (xid=0x4):
614 ADD mapping table:
615 class type length match field
616 ----- ---- ------ -----------
617 0xffff 0x2 124 tun_metadata2
618 0xffff 0x3 124 tun_metadata3
619 ])
620
621 AT_CHECK([ovs-ofctl add-flow br0 "tun_metadata0,tun_metadata0,actions=drop"], [1], [ignore],
622 [ovs-ofctl: field tun_metadata0 set multiple times
623 ])
624
625 AT_CHECK([ovs-ofctl add-flow br0 "tun_metadata0=0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef,tun_metadata1=0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef,tun_metadata2=0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef,tun_metadata3=0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef,tun_metadata4=0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef,actions=drop"], [1], [ignore],
626 [ovs-ofctl: field tun_metadata4 exceeds maximum size for tunnel metadata (used 320, max 256)
627 ])
628
629 dnl Allocation and match with fragmented address space
630 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=2,len=124}->tun_metadata2"])
631 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=3,len=4}->tun_metadata3"])
632 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=4,len=112}->tun_metadata4"])
633 AT_CHECK([ovs-ofctl del-tlv-map br0 "{class=0xffff,type=3,len=4}->tun_metadata3"])
634 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=3,len=8}->tun_metadata3"])
635
636 AT_CHECK([ovs-ofctl add-flow br0 tun_metadata3=0x1234567890abcdef,actions=2])
637 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'recirc_id(0),tunnel(tun_id=0x0,src=1.1.1.1,dst=1.1.1.2,ttl=64,geneve({class=0xffff,type=3,len=8,0x1234567890abcdef}),flags(df|key)),in_port(6081),skb_mark(0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(frag=no)'], [0], [stdout])
638 AT_CHECK([tail -2 stdout], [0],
639 [Megaflow: recirc_id=0,eth,ip,tun_id=0,tun_src=1.1.1.1,tun_dst=1.1.1.2,tun_tos=0,tun_flags=+df-csum+key,tun_metadata3=0x1234567890abcdef,in_port=1,nw_frag=no
640 Datapath actions: 2
641 ])
642
643 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip],
644 [0], [dnl
645 NXST_FLOW reply:
646 tun_metadata3=0x1234567890abcdef actions=output:2
647 ])
648
649 dnl A TLV mapping should not be removed if any active flow uses the mapping.
650 AT_CHECK([ovs-ofctl del-tlv-map br0], [1], [], [dnl
651 OFPT_ERROR (xid=0x4): NXTTMFC_INVALID_TLV_DEL
652 NXT_TLV_TABLE_MOD (xid=0x4):
653 CLEAR
654 ])
655
656 AT_CHECK([ovs-ofctl del-flows br0], [0])
657 AT_CHECK([ovs-ofctl del-tlv-map br0], [0])
658
659 dnl Flow modification
660 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=1,len=4}->tun_metadata0"])
661 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=2,len=4}->tun_metadata1"])
662 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=3,len=4}->tun_metadata2"])
663
664 AT_CHECK([ovs-ofctl add-flow br0 "in_port=1 actions=multipath(eth_src,50,modulo_n,1,0,tun_metadata0[[0..31]])"])
665 AT_CHECK([ovs-ofctl add-flow br0 "in_port=2 actions=push:tun_metadata1[[0..31]],clone(move:tun_metadata2[[0..31]]->reg0[[0..31]])"])
666
667 AT_CHECK([ovs-ofctl add-flow br0 "in_port=1 actions=output:4"])
668 AT_CHECK([ovs-ofctl del-tlv-map br0 "{class=0xffff,type=3,len=4}->tun_metadata0"])
669
670 AT_CHECK([ovs-ofctl add-flow br0 "in_port=2 actions=push:tun_metadata2[[0..31]]"])
671 AT_CHECK([ovs-ofctl del-tlv-map br0 "{class=0xffff,type=2,len=4}->tun_metadata1"])
672 AT_CHECK([ovs-ofctl del-tlv-map br0 "{class=0xffff,type=3,len=4}->tun_metadata2"], [1], [], [dnl
673 OFPT_ERROR (xid=0x4): NXTTMFC_INVALID_TLV_DEL
674 NXT_TLV_TABLE_MOD (xid=0x4):
675 DEL mapping table:
676 class type length match field
677 ----- ---- ------ -----------
678 0xffff 0x3 4 tun_metadata2
679 ])
680
681 AT_CHECK([ovs-ofctl del-flows br0], [0])
682 AT_CHECK([ovs-ofctl del-tlv-map br0], [0])
683
684 dnl Learn action
685 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=1,len=4}->tun_metadata1"])
686 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=2,len=4}->tun_metadata2"])
687 AT_CHECK([ovs-ofctl add-flow br0 "in_port=2, eth_src=00:00:00:00:00:01 actions=learn(tun_metadata1[[0..31]]=reg1, output:NXM_OF_IN_PORT[[]])"])
688 AT_CHECK([ovs-ofctl add-flow br0 "in_port=2, eth_src=00:00:00:00:00:02 actions=learn(reg1[[0..31]]=0xFF, load:reg1[[0..31]]->tun_metadata2[[0..31]])"])
689 flow1="in_port(2),eth(src=00:00:00:00:00:01,dst=ff:ff:ff:ff:ff:ff),eth_type(0x0800)"
690 flow2="in_port(2),eth(src=00:00:00:00:00:02,dst=ff:ff:ff:ff:ff:ff),eth_type(0x0800)"
691 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow1" -generate], [0], [stdout])
692 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow2" -generate], [0], [stdout])
693
694 dnl Delete flows with learn action
695 AT_CHECK([ovs-ofctl del-flows br0 "in_port=2"])
696
697 AT_CHECK([ovs-ofctl del-tlv-map br0 "{class=0xffff,type=1,len=4}->tun_metadata1"], [1], [], [dnl
698 OFPT_ERROR (xid=0x4): NXTTMFC_INVALID_TLV_DEL
699 NXT_TLV_TABLE_MOD (xid=0x4):
700 DEL mapping table:
701 class type length match field
702 ----- ---- ------ -----------
703 0xffff 0x1 4 tun_metadata1
704 ])
705 AT_CHECK([ovs-ofctl del-flows br0 "tun_metadata1"])
706 AT_CHECK([ovs-ofctl del-tlv-map br0 "{class=0xffff,type=1,len=4}->tun_metadata1"])
707
708 AT_CHECK([ovs-ofctl del-tlv-map br0 "{class=0xffff,type=2,len=4}->tun_metadata2"], [1], [], [dnl
709 OFPT_ERROR (xid=0x4): NXTTMFC_INVALID_TLV_DEL
710 NXT_TLV_TABLE_MOD (xid=0x4):
711 DEL mapping table:
712 class type length match field
713 ----- ---- ------ -----------
714 0xffff 0x2 4 tun_metadata2
715 ])
716 AT_CHECK([ovs-ofctl del-flows br0 "reg1=0xFF"])
717 AT_CHECK([ovs-ofctl del-tlv-map br0], [0])
718
719 OVS_VSWITCHD_STOP
720 AT_CLEANUP
721
722 AT_SETUP([tunnel - Geneve option present])
723 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=geneve \
724 options:remote_ip=1.1.1.1 ofport_request=1 \
725 -- add-port br0 p2 -- set Interface p2 type=dummy \
726 ofport_request=2 ofport_request=2])
727 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
728
729 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=0,len=4}->tun_metadata0,{class=0xffff,type=1,len=0}->tun_metadata1,{class=0xffff,type=2,len=4}->tun_metadata2"])
730
731 AT_DATA([flows.txt], [dnl
732 priority=1,tun_metadata0,actions=2
733 priority=2,tun_metadata1=0,actions=IN_PORT
734 priority=3,tun_metadata2=0,actions=drop
735 ])
736 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
737
738 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort],
739 [0], [dnl
740 priority=1,tun_metadata0 actions=output:2
741 priority=2,tun_metadata1 actions=IN_PORT
742 priority=3,tun_metadata2=0 actions=drop
743 NXST_FLOW reply:
744 ])
745
746 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'recirc_id(0),tunnel(tun_id=0x0,src=1.1.1.1,dst=1.1.1.2,ttl=64,geneve({class=0xffff,type=0,len=4,0x12345678}),flags(df|key)),in_port(6081),skb_mark(0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(frag=no)'], [0], [stdout])
747 AT_CHECK([tail -2 stdout], [0],
748 [Megaflow: recirc_id=0,eth,ip,tun_id=0,tun_src=1.1.1.1,tun_dst=1.1.1.2,tun_tos=0,tun_flags=+df-csum+key,tun_metadata0,tun_metadata1=NP,tun_metadata2=NP,in_port=1,nw_frag=no
749 Datapath actions: 2
750 ])
751
752 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'recirc_id(0),tunnel(tun_id=0x0,src=1.1.1.1,dst=1.1.1.2,ttl=64,geneve({class=0xffff,type=1,len=0}),flags(df|key)),in_port(6081),skb_mark(0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(frag=no)'], [0], [stdout])
753 AT_CHECK([tail -2 stdout], [0],
754 [Megaflow: recirc_id=0,eth,ip,tun_id=0,tun_src=1.1.1.1,tun_dst=1.1.1.2,tun_tos=0,tun_flags=+df-csum+key,tun_metadata1,tun_metadata2=NP,in_port=1,nw_ecn=0,nw_frag=no
755 Datapath actions: set(tunnel(dst=1.1.1.1,ttl=64,tp_dst=6081,geneve({class=0xffff,type=0x1,len=0}),flags(df))),6081
756 ])
757
758 OVS_VSWITCHD_STOP
759 AT_CLEANUP
760
761 AT_SETUP([tunnel - concomitant IPv6 and IPv4 tunnels])
762 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=vxlan \
763 options:remote_ip=1.1.1.1 ofport_request=1 \
764 -- add-port br0 p2 -- set Interface p2 type=vxlan \
765 options:remote_ip=2001:cafe::1 ofport_request=2])
766 AT_DATA([flows.txt], [dnl
767 in_port=1,actions=2
768 in_port=2,actions=1
769 ])
770 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
771
772 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
773
774 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(tun_id=0,src=1.1.1.1,dst=1.1.1.2,ttl=64),in_port(4789)'], [0], [stdout])
775 AT_CHECK([tail -1 stdout], [0],
776 [Datapath actions: set(tunnel(ipv6_dst=2001:cafe::1,ttl=64,tp_dst=4789,flags(df))),4789
777 ])
778
779 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'tunnel(tun_id=0x0,ipv6_src=2001:cafe::1,ipv6_dst=2001:cafe::2,ttl=64),in_port(4789)'], [0], [stdout])
780 AT_CHECK([tail -1 stdout], [0],
781 [Datapath actions: set(tunnel(dst=1.1.1.1,ttl=64,tp_dst=4789,flags(df))),4789
782 ])
783
784
785 OVS_VSWITCHD_STOP
786 AT_CLEANUP
787
788 AT_SETUP([tunnel - Mix Geneve/GRE options])
789 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=geneve \
790 options:remote_ip=1.1.1.1 options:csum=true ofport_request=1 \
791 -- add-port br0 p2 -- set Interface p2 type=dummy \
792 ofport_request=2 ofport_request=2 \
793 -- add-port br0 p3 -- set Interface p3 type=gre \
794 options:remote_ip=2.2.2.2 options:csum=false options:key=123 ofport_request=3])
795 OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP
796
797 AT_DATA([flows.txt], [dnl
798 priority=1,in_port=1,actions=3
799 ])
800 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
801
802 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort],
803 [0], [dnl
804 priority=1,in_port=1 actions=output:3
805 NXST_FLOW reply:
806 ])
807
808 dnl the input packet from geneve tunnel has flags(-df+csum+key) flags, making
809 dnl sure that the output gre tunnel has (+df-csum+key).
810 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'recirc_id(0),tunnel(tun_id=0x0,src=1.1.1.1,dst=1.1.1.2,ttl=64,geneve({class=0xffff,type=0,len=4,0x12345678}),flags(csum|key)),in_port(6081),skb_mark(0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(frag=no)'], [0], [stdout])
811 AT_CHECK([tail -2 stdout], [0],
812 [Megaflow: recirc_id=0,eth,ip,tun_id=0,tun_src=1.1.1.1,tun_dst=1.1.1.2,tun_tos=0,tun_flags=-df+csum+key,in_port=1,nw_ecn=0,nw_frag=no
813 Datapath actions: set(tunnel(tun_id=0x7b,dst=2.2.2.2,ttl=64,flags(df|key))),1
814 ])
815
816 AT_CHECK([ovs-ofctl add-tlv-map br0 "{class=0xffff,type=0,len=4}->tun_metadata0"])
817 AT_CHECK([ovs-ofctl del-flows br0])
818
819 AT_DATA([flows2.txt], [dnl
820 priority=1,in_port=1,tun_metadata0=0x123, actions=3
821 ])
822 AT_CHECK([ovs-ofctl add-flows br0 flows2.txt])
823
824 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'recirc_id(0),tunnel(tun_id=0x0,src=1.1.1.1,dst=1.1.1.2,ttl=64,geneve({class=0xffff,type=0,len=4,0x123}),flags(csum|key)),in_port(6081),skb_mark(0),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(frag=no)'], [0], [stdout])
825 AT_CHECK([tail -2 stdout], [0],
826 [Megaflow: recirc_id=0,eth,ip,tun_id=0,tun_src=1.1.1.1,tun_dst=1.1.1.2,tun_tos=0,tun_flags=-df+csum+key,tun_metadata0=0x123,in_port=1,nw_ecn=0,nw_frag=no
827 Datapath actions: set(tunnel(tun_id=0x7b,dst=2.2.2.2,ttl=64,flags(df|key))),1
828 ])
829
830 dnl without the fix, the actions have geneve options:
831 dnl set(tunnel(tun_id=0x7b,dst=2.2.2.2,ttl=64,geneve({class=0xffff,type=0,len=4,0x123}),flags(df|key))),1
832 dnl which is not correct
833
834 OVS_VSWITCHD_STOP
835 AT_CLEANUP