]> git.proxmox.com Git - mirror_ovs.git/blob - tests/ofproto.at
Implement Openflow 1.4 Vacancy Events for OFPT_TABLE_MOD.
[mirror_ovs.git] / tests / ofproto.at
1 AT_BANNER([ofproto])
2
3 AT_SETUP([ofproto - echo request])
4 OVS_VSWITCHD_START
5 AT_CHECK([ovs-ofctl -vwarn probe br0])
6 OVS_VSWITCHD_STOP
7 AT_CLEANUP
8
9 AT_SETUP([ofproto - handling messages with bad version])
10 OVS_VSWITCHD_START
11
12 # Start a monitor running OpenFlow 1.0, then send the switch an OF1.1 features
13 # request
14 AT_CHECK([ovs-ofctl -P openflow10 monitor br0 --detach --no-chdir --pidfile])
15 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
16 AT_CAPTURE_FILE([monitor.log])
17 ovs-appctl -t ovs-ofctl ofctl/send 0205000801234567
18 ovs-appctl -t ovs-ofctl ofctl/barrier
19 ovs-appctl -t ovs-ofctl exit
20
21 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//
22 /ECHO/d' monitor.log], [0], [dnl
23 send: OFPT_FEATURES_REQUEST (OF1.1):
24 OFPT_ERROR (OF1.1): OFPBRC_BAD_VERSION
25 OFPT_FEATURES_REQUEST (OF1.1):
26 OFPT_BARRIER_REPLY:
27 ])
28
29 OVS_VSWITCHD_STOP(["/received OpenFlow version 0x02 != expected 01/d"])
30 AT_CLEANUP
31
32 AT_SETUP([ofproto - feature request, config request])
33 OVS_VSWITCHD_START
34 AT_CHECK([ovs-ofctl -vwarn show br0], [0], [stdout])
35 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
36 OFPT_FEATURES_REPLY: dpid:fedcba9876543210
37 n_tables:254, n_buffers:256
38 capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS ARP_MATCH_IP
39 actions: output enqueue set_vlan_vid set_vlan_pcp strip_vlan mod_dl_src mod_dl_dst mod_nw_src mod_nw_dst mod_nw_tos mod_tp_src mod_tp_dst
40 LOCAL(br0): addr:aa:55:aa:55:00:00
41 config: PORT_DOWN
42 state: LINK_DOWN
43 speed: 0 Mbps now, 0 Mbps max
44 OFPT_GET_CONFIG_REPLY: frags=normal miss_send_len=0
45 ])
46 OVS_VSWITCHD_STOP
47 AT_CLEANUP
48
49 AT_SETUP([ofproto - set OpenFlow port number])
50 OVS_VSWITCHD_START(
51 [add-port br0 p1 -- set Interface p1 type=dummy --\
52 add-port br0 p2 -- set Interface p2 type=dummy ofport_request=99])
53 AT_CHECK([ovs-ofctl -vwarn show br0], [0], [stdout])
54 AT_CHECK([[sed '
55 s/ (xid=0x[0-9a-fA-F]*)//
56 s/00:0.$/00:0x/' < stdout]],
57 [0], [dnl
58 OFPT_FEATURES_REPLY: dpid:fedcba9876543210
59 n_tables:254, n_buffers:256
60 capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS ARP_MATCH_IP
61 actions: output enqueue set_vlan_vid set_vlan_pcp strip_vlan mod_dl_src mod_dl_dst mod_nw_src mod_nw_dst mod_nw_tos mod_tp_src mod_tp_dst
62 1(p1): addr:aa:55:aa:55:00:0x
63 config: PORT_DOWN
64 state: LINK_DOWN
65 speed: 0 Mbps now, 0 Mbps max
66 99(p2): addr:aa:55:aa:55:00:0x
67 config: PORT_DOWN
68 state: LINK_DOWN
69 speed: 0 Mbps now, 0 Mbps max
70 LOCAL(br0): addr:aa:55:aa:55:00:0x
71 config: PORT_DOWN
72 state: LINK_DOWN
73 speed: 0 Mbps now, 0 Mbps max
74 OFPT_GET_CONFIG_REPLY: frags=normal miss_send_len=0
75 ])
76
77 OVS_VSWITCHD_STOP
78 AT_CLEANUP
79
80 dnl This is really bare-bones.
81 dnl It at least checks request and reply serialization and deserialization.
82 AT_SETUP([ofproto - port stats - (OpenFlow 1.0)])
83 OVS_VSWITCHD_START
84 AT_CHECK([ovs-ofctl -vwarn dump-ports br0], [0], [stdout])
85 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
86 OFPST_PORT reply: 1 ports
87 port LOCAL: rx pkts=0, bytes=0, drop=0, errs=0, frame=0, over=0, crc=0
88 tx pkts=0, bytes=0, drop=0, errs=0, coll=0
89 ])
90 OVS_VSWITCHD_STOP
91 AT_CLEANUP
92
93 AT_SETUP([ofproto - port stats - (OpenFlow 1.2)])
94 OVS_VSWITCHD_START
95 AT_CHECK([ovs-ofctl -O OpenFlow12 -vwarn dump-ports br0], [0], [stdout])
96 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
97 OFPST_PORT reply (OF1.2): 1 ports
98 port LOCAL: rx pkts=0, bytes=0, drop=0, errs=0, frame=0, over=0, crc=0
99 tx pkts=0, bytes=0, drop=0, errs=0, coll=0
100 ])
101 OVS_VSWITCHD_STOP
102 AT_CLEANUP
103
104 AT_SETUP([ofproto - port stats - (OpenFlow 1.4)])
105 OVS_VSWITCHD_START
106 AT_CHECK([ovs-ofctl -O OpenFlow14 -vwarn dump-ports br0], [0], [stdout])
107 AT_CHECK([STRIP_XIDS stdout | sed 's/duration=[[0-9.]]*s/duration=?s/'],
108 [0], [dnl
109 OFPST_PORT reply (OF1.4): 1 ports
110 port LOCAL: rx pkts=0, bytes=0, drop=0, errs=0, frame=0, over=0, crc=0
111 tx pkts=0, bytes=0, drop=0, errs=0, coll=0
112 duration=?s
113 ])
114 OVS_VSWITCHD_STOP
115 AT_CLEANUP
116
117 dnl This is really bare-bones.
118 dnl It at least checks request and reply serialization and deserialization.
119 AT_SETUP([ofproto - port-desc stats (OpenFlow 1.0)])
120 OVS_VSWITCHD_START
121 AT_CHECK([ovs-ofctl -vwarn dump-ports-desc br0], [0], [stdout])
122 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
123 OFPST_PORT_DESC reply:
124 LOCAL(br0): addr:aa:55:aa:55:00:00
125 config: PORT_DOWN
126 state: LINK_DOWN
127 speed: 0 Mbps now, 0 Mbps max
128 ])
129 OVS_VSWITCHD_STOP
130 AT_CLEANUP
131
132 dnl This is really bare-bones.
133 dnl It at least checks request and reply serialization and deserialization.
134 AT_SETUP([ofproto - port-desc stats (OpenFlow 1.2)])
135 OVS_VSWITCHD_START
136 AT_CHECK([ovs-ofctl -O OpenFlow12 -vwarn dump-ports-desc br0], [0], [stdout])
137 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
138 OFPST_PORT_DESC reply (OF1.2):
139 LOCAL(br0): addr:aa:55:aa:55:00:00
140 config: PORT_DOWN
141 state: LINK_DOWN
142 speed: 0 Mbps now, 0 Mbps max
143 ])
144 OVS_VSWITCHD_STOP
145 AT_CLEANUP
146
147 AT_SETUP([ofproto - port-desc stats (OpenFlow 1.5)])
148 OVS_VSWITCHD_START
149 ADD_OF_PORTS([br0], 1, 2, 3)
150 AT_CHECK([ovs-ofctl -F OXM-OpenFlow15 -O OpenFlow15 -vwarn dump-ports-desc br0], [0], [stdout])
151 AT_CHECK([STRIP_XIDS stdout | sed 's/00:0./00:0x/'], [0], [dnl
152 OFPST_PORT_DESC reply (OF1.5):
153 1(p1): addr:aa:55:aa:55:00:0x
154 config: PORT_DOWN
155 state: LINK_DOWN
156 speed: 0 Mbps now, 0 Mbps max
157 2(p2): addr:aa:55:aa:55:00:0x
158 config: PORT_DOWN
159 state: LINK_DOWN
160 speed: 0 Mbps now, 0 Mbps max
161 3(p3): addr:aa:55:aa:55:00:0x
162 config: PORT_DOWN
163 state: LINK_DOWN
164 speed: 0 Mbps now, 0 Mbps max
165 LOCAL(br0): addr:aa:55:aa:55:00:0x
166 config: PORT_DOWN
167 state: LINK_DOWN
168 speed: 0 Mbps now, 0 Mbps max
169 ])
170 AT_CHECK([ovs-ofctl -F OXM-OpenFlow15 -O OpenFlow15 -vwarn dump-ports-desc br0 2], [0], [stdout])
171 AT_CHECK([STRIP_XIDS stdout | sed 's/00:0./00:0x/'], [0], [dnl
172 OFPST_PORT_DESC reply (OF1.5):
173 2(p2): addr:aa:55:aa:55:00:0x
174 config: PORT_DOWN
175 state: LINK_DOWN
176 speed: 0 Mbps now, 0 Mbps max
177 ])
178 OVS_VSWITCHD_STOP
179 AT_CLEANUP
180
181 dnl This is really bare-bones.
182 dnl It at least checks request and reply serialization and deserialization.
183 AT_SETUP([ofproto - queue stats - (OpenFlow 1.0)])
184 OVS_VSWITCHD_START
185 AT_CHECK([ovs-ofctl -vwarn queue-stats br0], [0], [stdout])
186 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
187 OFPST_QUEUE reply: 0 queues
188 ])
189 AT_CHECK([ovs-ofctl -vwarn queue-stats br0 ANY 5], [0],
190 [OFPT_ERROR (xid=0x2): OFPQOFC_BAD_QUEUE
191 OFPST_QUEUE request (xid=0x2):port=ANY queue=5
192 ])
193 AT_CHECK([ovs-ofctl -vwarn queue-stats br0 10], [0],
194 [OFPT_ERROR (xid=0x2): OFPQOFC_BAD_PORT
195 OFPST_QUEUE request (xid=0x2):port=10 queue=ALL
196 ])
197 OVS_VSWITCHD_STOP
198 AT_CLEANUP
199
200 AT_SETUP([ofproto - queue stats - (OpenFlow 1.2)])
201 OVS_VSWITCHD_START
202 AT_CHECK([ovs-ofctl -O OpenFlow12 -vwarn queue-stats br0], [0], [stdout])
203 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
204 OFPST_QUEUE reply (OF1.2): 0 queues
205 ])
206 AT_CHECK([ovs-ofctl -O OpenFlow12 -vwarn queue-stats br0 ALL 5], [0],
207 [OFPT_ERROR (OF1.2) (xid=0x2): OFPQOFC_BAD_QUEUE
208 OFPST_QUEUE request (OF1.2) (xid=0x2):port=ANY queue=5
209 ])
210 AT_CHECK([ovs-ofctl -O OpenFlow12 -vwarn queue-stats br0 10], [0],
211 [OFPT_ERROR (OF1.2) (xid=0x2): OFPQOFC_BAD_PORT
212 OFPST_QUEUE request (OF1.2) (xid=0x2):port=10 queue=ALL
213 ])
214 OVS_VSWITCHD_STOP
215 AT_CLEANUP
216
217 AT_SETUP([ofproto - queue stats - (OpenFlow 1.4)])
218 OVS_VSWITCHD_START
219 AT_CHECK([ovs-ofctl -O OpenFlow14 -vwarn queue-stats br0], [0], [stdout])
220 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
221 OFPST_QUEUE reply (OF1.4): 0 queues
222 ])
223 AT_CHECK([ovs-ofctl -O OpenFlow14 -vwarn queue-stats br0 ALL 5], [0],
224 [OFPT_ERROR (OF1.4) (xid=0x2): OFPQOFC_BAD_QUEUE
225 OFPST_QUEUE request (OF1.4) (xid=0x2):port=ANY queue=5
226 ])
227 AT_CHECK([ovs-ofctl -O OpenFlow14 -vwarn queue-stats br0 10], [0],
228 [OFPT_ERROR (OF1.4) (xid=0x2): OFPQOFC_BAD_PORT
229 OFPST_QUEUE request (OF1.4) (xid=0x2):port=10 queue=ALL
230 ])
231 OVS_VSWITCHD_STOP
232 AT_CLEANUP
233
234 dnl This is really bare-bones.
235 dnl It at least checks request and reply serialization and deserialization.
236 AT_SETUP([ofproto - queue configuration - (OpenFlow 1.0)])
237 OVS_VSWITCHD_START
238 ADD_OF_PORTS([br0], [1], [2])
239 AT_CHECK([ovs-ofctl queue-get-config br0 1], [0], [stdout])
240 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
241 OFPT_QUEUE_GET_CONFIG_REPLY: port=1
242 ])
243 AT_CHECK([ovs-ofctl queue-get-config br0 10], [0],
244 [OFPT_ERROR (xid=0x2): OFPQOFC_BAD_PORT
245 OFPT_QUEUE_GET_CONFIG_REQUEST (xid=0x2): port=10
246 ])
247 OVS_VSWITCHD_STOP
248 AT_CLEANUP
249
250 AT_SETUP([ofproto - queue configuration - (OpenFlow 1.2)])
251 OVS_VSWITCHD_START
252 ADD_OF_PORTS([br0], [1], [2])
253 AT_CHECK([ovs-ofctl -O OpenFlow12 queue-get-config br0 1], [0], [stdout])
254 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
255 OFPT_QUEUE_GET_CONFIG_REPLY (OF1.2): port=1
256 ])
257 AT_CHECK([ovs-ofctl -O OpenFlow12 queue-get-config br0 10], [0],
258 [OFPT_ERROR (OF1.2) (xid=0x2): OFPQOFC_BAD_PORT
259 OFPT_QUEUE_GET_CONFIG_REQUEST (OF1.2) (xid=0x2): port=10
260 ])
261 OVS_VSWITCHD_STOP
262 AT_CLEANUP
263
264 dnl This is really bare-bones.
265 dnl It at least checks request and reply serialization and deserialization.
266 dnl Actions definition listed in both supported formats (w/ actions=)
267 AT_SETUP([ofproto - no group support (OpenFlow 1.0)])
268 OVS_VSWITCHD_START
269 AT_DATA([groups.txt], [dnl
270 group_id=1234,type=all,bucket=output:10
271 group_id=1235,type=all,bucket=actions=output:10
272 ])
273 AT_DATA([stderr], [dnl
274 ovs-ofctl: none of the usable flow formats (OXM,OpenFlow11) is among the allowed flow formats (OpenFlow10,NXM)
275 ])
276 AT_CHECK([ovs-ofctl -O OpenFlow10 -vwarn add-groups br0 groups.txt], [1], ,[stderr])
277 AT_CHECK([ovs-ofctl -O OpenFlow10 -vwarn mod-group br0 'group_id=1234,type=all,bucket=output:10'], [1], ,[stderr])
278 AT_CHECK([ovs-ofctl -O OpenFlow10 -vwarn del-groups br0], [1], ,[stderr])
279 AT_CHECK([ovs-ofctl -O OpenFlow10 -vwarn dump-groups br0 ], [1], ,[stderr])
280 OVS_VSWITCHD_STOP
281 AT_CLEANUP
282
283 dnl This is really bare-bones.
284 dnl It at least checks request and reply serialization and deserialization.
285 dnl Actions definition listed in both supported formats (w/ actions=)
286 AT_SETUP([ofproto - del group (OpenFlow 1.1)])
287 OVS_VSWITCHD_START
288 AT_DATA([groups.txt], [dnl
289 group_id=1234,type=all,bucket=output:10
290 group_id=1235,type=all,bucket=actions=output:10
291 ])
292 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-groups br0 groups.txt])
293 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-groups br0 ], [0], [stdout])
294 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
295 OFPST_GROUP_DESC reply (OF1.1):
296 group_id=1234,type=all,bucket=actions=output:10
297 group_id=1235,type=all,bucket=actions=output:10
298 ])
299 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0 group_id=1234])
300 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-groups br0], [0], [stdout])
301 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
302 OFPST_GROUP_DESC reply (OF1.1):
303 group_id=1235,type=all,bucket=actions=output:10
304 ])
305 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0 group_id=1234])
306 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-groups br0], [0], [stdout])
307 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
308 OFPST_GROUP_DESC reply (OF1.1):
309 group_id=1235,type=all,bucket=actions=output:10
310 ])
311 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0], [0])
312 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-groups br0], [0], [stdout])
313 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
314 OFPST_GROUP_DESC reply (OF1.1):
315 ])
316
317 # Negative test.
318 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0 group_id=0xfffffff0],
319 [1], [], [ovs-ofctl: invalid group id 4294967280
320 ])
321 OVS_VSWITCHD_STOP
322 AT_CLEANUP
323
324 dnl This is really bare-bones.
325 dnl It at least checks request and reply serialization and deserialization.
326 dnl Actions definition listed in both supported formats (w/ actions=)
327 AT_SETUP([ofproto - add indirect group])
328 OVS_VSWITCHD_START
329 dnl indirect group must have exactly one bucket
330 AT_DATA([stderr], [dnl
331 OFPT_ERROR (OF1.1) (xid=0x2): OFPGMFC_INVALID_GROUP
332 OFPT_GROUP_MOD (OF1.1) (xid=0x2): ***decode error: OFPGMFC_INVALID_GROUP***
333 ])
334 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-group br0 'group_id=1234,type=indirect'], [1], , [stderr])
335 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-group br0 'group_id=1235,type=indirect,bucket=output:10'])
336 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-group br0 'group_id=1236,type=indirect,bucket=output:10,bucket=output:11'], [1], , [stderr])
337 OVS_VSWITCHD_STOP
338 AT_CLEANUP
339
340 dnl This is really bare-bones.
341 dnl It at least checks request and reply serialization and deserialization.
342 dnl Actions definition listed in both supported formats (w/ actions=)
343 AT_SETUP([ofproto - del group (OpenFlow 1.5)])
344 OVS_VSWITCHD_START
345 AT_DATA([groups.txt], [dnl
346 group_id=1233,type=select,selection_method=hash,bucket=output:10,bucket=output:11
347 group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=output:10,bucket=output:11
348 group_id=1235,type=all,bucket=actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
349 ])
350 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn add-groups br0 groups.txt])
351 AT_CHECK([ovs-ofctl -F OXM-OpenFlow15 -O OpenFlow15 -vwarn dump-groups br0 1234], [0], [stdout])
352 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
353 OFPST_GROUP_DESC reply (OF1.5):
354 group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
355 ])
356 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn del-groups br0 group_id=1234])
357 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout])
358 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
359 OFPST_GROUP_DESC reply (OF1.5):
360 group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
361 group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
362 ])
363 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn del-groups br0 group_id=1234])
364 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout])
365 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
366 OFPST_GROUP_DESC reply (OF1.5):
367 group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
368 group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
369 ])
370 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn del-groups br0], [0])
371 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout])
372 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
373 OFPST_GROUP_DESC reply (OF1.5):
374 ])
375 OVS_VSWITCHD_STOP
376 AT_CLEANUP
377
378 dnl This is really bare-bones.
379 dnl It at least checks request and reply serialization and deserialization.
380 AT_SETUP([ofproto - del group deletes flows])
381 OVS_VSWITCHD_START
382 AT_DATA([groups.txt], [dnl
383 group_id=1234,type=all,bucket=output:10
384 group_id=1235,type=all,bucket=output:10
385 ])
386 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-groups br0 groups.txt])
387 AT_DATA([flows.txt], [dnl
388 tcp actions=group:1234
389 udp actions=group:1235
390 ])
391 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-flows br0 flows.txt])
392 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-flows br0 | ofctl_strip | sort],
393 [0], [dnl
394 tcp actions=group:1234
395 udp actions=group:1235
396 OFPST_FLOW reply (OF1.1):
397 ])
398 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0 group_id=1234])
399 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-flows br0 | ofctl_strip | sort],
400 [0], [dnl
401 udp actions=group:1235
402 OFPST_FLOW reply (OF1.1):
403 ])
404 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0 group_id=1234])
405 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-flows br0 | ofctl_strip | sort],
406 [0], [dnl
407 udp actions=group:1235
408 OFPST_FLOW reply (OF1.1):
409 ])
410 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0])
411 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-flows br0 | ofctl_strip | sort],
412 [0], [dnl
413 OFPST_FLOW reply (OF1.1):
414 ])
415 OVS_VSWITCHD_STOP
416 AT_CLEANUP
417
418 dnl This is really bare-bones.
419 dnl It at least checks request and reply serialization and deserialization.
420 dnl Actions definition listed in both supported formats (w/ actions=)
421 AT_SETUP([ofproto - insert buckets])
422 OVS_VSWITCHD_START
423 # Add group with no buckets.
424 AT_DATA([groups.txt], [dnl
425 group_id=1234,type=all
426 ])
427 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn add-groups br0 groups.txt])
428 AT_CHECK([ovs-ofctl -F OXM-OpenFlow15 -O OpenFlow15 -vwarn dump-groups br0 1234], [0], [stdout])
429 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
430 OFPST_GROUP_DESC reply (OF1.5):
431 group_id=1234,type=all
432 ])
433
434 # Add two buckets, using "last".
435 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn insert-buckets br0 group_id=1234,command_bucket_id=last,bucket=bucket_id:10,actions=output:10,bucket=bucket_id:11,actions=output:11])
436 AT_CHECK([ovs-ofctl -F OXM-OpenFlow15 -O OpenFlow15 -vwarn dump-groups br0 1234], [0], [stdout])
437 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
438 OFPST_GROUP_DESC reply (OF1.5):
439 group_id=1234,type=all,bucket=bucket_id:10,actions=output:10,bucket=bucket_id:11,actions=output:11
440 ])
441
442 # Start over again, then add two buckets using "first".
443 AT_CHECK([ovs-ofctl -O OpenFlow15 --strict del-groups br0 group_id=1234])
444 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn add-group br0 group_id=1234,type=all])
445 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn insert-buckets br0 group_id=1234,command_bucket_id=first,bucket=bucket_id:10,actions=output:10,bucket=bucket_id:11,actions=output:11])
446 AT_CHECK([ovs-ofctl -F OXM-OpenFlow15 -O OpenFlow15 -vwarn dump-groups br0 1234], [0], [stdout])
447 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
448 OFPST_GROUP_DESC reply (OF1.5):
449 group_id=1234,type=all,bucket=bucket_id:10,actions=output:10,bucket=bucket_id:11,actions=output:11
450 ])
451
452 # Add two more buckets before the existing ones.
453 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn insert-buckets br0 group_id=1234,command_bucket_id=first,bucket=bucket_id:0,actions=output:0,bucket=bucket_id:1,actions=output:1])
454 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout])
455 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
456 OFPST_GROUP_DESC reply (OF1.5):
457 group_id=1234,type=all,bucket=bucket_id:0,actions=output:0,bucket=bucket_id:1,actions=output:1,bucket=bucket_id:10,actions=output:10,bucket=bucket_id:11,actions=output:11
458 ])
459
460 # Add another bucket at the end.
461 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn insert-buckets br0 group_id=1234,command_bucket_id=last,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15])
462 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout])
463 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
464 OFPST_GROUP_DESC reply (OF1.5):
465 group_id=1234,type=all,bucket=bucket_id:0,actions=output:0,bucket=bucket_id:1,actions=output:1,bucket=bucket_id:10,actions=output:10,bucket=bucket_id:11,actions=output:11,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15
466 ])
467
468 # Verify that duplicate bucket IDs are rejected.
469 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn insert-buckets br0 group_id=1234,command_bucket_id=last,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15], [1], [], [stderr])
470 AT_CHECK([STRIP_XIDS stderr | sed '/truncated/,$d'], [0], [dnl
471 OFPT_ERROR (OF1.5): OFPGMFC_BUCKET_EXISTS
472 OFPT_GROUP_MOD (OF1.5):
473 ])
474
475
476 # Add another bucket just before bucket 15.
477 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn insert-buckets br0 group_id=1234,command_bucket_id=15])
478 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout])
479 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
480 OFPST_GROUP_DESC reply (OF1.5):
481 group_id=1234,type=all,bucket=bucket_id:0,actions=output:0,bucket=bucket_id:1,actions=output:1,bucket=bucket_id:10,actions=output:10,bucket=bucket_id:11,actions=output:11,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15
482 ])
483
484 # Add two more buckets just before bucket 11,
485 # getting the command from a file.
486 AT_DATA([buckets.txt], [dnl
487 group_id=1234,command_bucket_id=11,bucket=bucket_id:12,actions=output:12,bucket=bucket_id:13,actions=output:13
488 ])
489 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn insert-buckets br0 - < buckets.txt])
490 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout])
491 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
492 OFPST_GROUP_DESC reply (OF1.5):
493 group_id=1234,type=all,bucket=bucket_id:0,actions=output:0,bucket=bucket_id:1,actions=output:1,bucket=bucket_id:10,actions=output:10,bucket=bucket_id:11,actions=output:11,bucket=bucket_id:12,actions=output:12,bucket=bucket_id:13,actions=output:13,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15
494 ])
495
496 # Add yet two more buckets.
497 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn insert-buckets br0 group_id=1234,command_bucket_id=15,bucket=bucket_id:20,actions=output:20,bucket=bucket_id:21,actions=output:21])
498 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout])
499 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
500 OFPST_GROUP_DESC reply (OF1.5):
501 group_id=1234,type=all,bucket=bucket_id:0,actions=output:0,bucket=bucket_id:1,actions=output:1,bucket=bucket_id:10,actions=output:10,bucket=bucket_id:11,actions=output:11,bucket=bucket_id:12,actions=output:12,bucket=bucket_id:13,actions=output:13,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15,bucket=bucket_id:20,actions=output:20,bucket=bucket_id:21,actions=output:21
502 ])
503
504 # Negative tests.
505 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn insert-buckets br0 group_id=1234,command_bucket_id=0xffffff01,bucket=bucket_id:0,actions=output:0,bucket=bucket_id:1,actions=output:1], [1], [],
506 [ovs-ofctl: invalid command bucket id 4294967041
507 ])
508 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn insert-buckets br0 group_id=1234,command_bucket_id=first,bucket=bucket_id:0,actions=output:0,bucket=bucket_id:1,actions=output:1], [1], [],
509 [ovs-ofctl: insert-bucket needs OpenFlow 1.5 or later ('-O OpenFlow15')
510 ])
511 OVS_VSWITCHD_STOP
512 AT_CLEANUP
513
514 dnl This is really bare-bones.
515 dnl It at least checks request and reply serialization and deserialization.
516 dnl Actions definition listed in both supported formats (w/ actions=)
517 AT_SETUP([ofproto - remove buckets])
518 OVS_VSWITCHD_START
519 AT_DATA([groups.txt], [dnl
520 group_id=1234,type=all,bucket=bucket_id:10,actions=output:10,bucket=bucket_id:11,actions=output:11,bucket=bucket_id:12,actions=output:12,bucket=bucket_id:13,actions=output:13,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15,bucket=bucket_id:16,actions=output:16
521 ])
522 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn add-groups br0 groups.txt])
523 AT_CHECK([ovs-ofctl -F OXM-OpenFlow15 -O OpenFlow15 -vwarn dump-groups br0 1234], [0], [stdout])
524 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
525 OFPST_GROUP_DESC reply (OF1.5):
526 group_id=1234,type=all,bucket=bucket_id:10,actions=output:10,bucket=bucket_id:11,actions=output:11,bucket=bucket_id:12,actions=output:12,bucket=bucket_id:13,actions=output:13,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15,bucket=bucket_id:16,actions=output:16
527 ])
528 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn remove-buckets br0 group_id=1234,command_bucket_id=first])
529 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout])
530 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
531 OFPST_GROUP_DESC reply (OF1.5):
532 group_id=1234,type=all,bucket=bucket_id:11,actions=output:11,bucket=bucket_id:12,actions=output:12,bucket=bucket_id:13,actions=output:13,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15,bucket=bucket_id:16,actions=output:16
533 ])
534 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn remove-buckets br0 group_id=1234,command_bucket_id=last])
535 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout])
536 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
537 OFPST_GROUP_DESC reply (OF1.5):
538 group_id=1234,type=all,bucket=bucket_id:11,actions=output:11,bucket=bucket_id:12,actions=output:12,bucket=bucket_id:13,actions=output:13,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15
539 ])
540 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn remove-buckets br0 group_id=1234,command_bucket_id=13])
541 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout])
542 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
543 OFPST_GROUP_DESC reply (OF1.5):
544 group_id=1234,type=all,bucket=bucket_id:11,actions=output:11,bucket=bucket_id:12,actions=output:12,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15
545 ])
546 AT_DATA([buckets.txt], [dnl
547 group_id=1234
548 ])
549 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn remove-buckets br0 - < buckets.txt])
550 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout])
551 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
552 OFPST_GROUP_DESC reply (OF1.5):
553 group_id=1234,type=all
554 ])
555 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn remove-buckets br0 group_id=1234,command_bucket_id=first])
556 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn remove-buckets br0 group_id=1234,command_bucket_id=last])
557 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn remove-buckets br0 group_id=1234,command_bucket_id=all])
558 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn remove-buckets br0 group_id=1234,command_bucket_id=1], [1], [], [stderr])
559 AT_CHECK([cat stderr | ofctl_strip], [0], [dnl
560 OFPT_ERROR (OF1.5): OFPGMFC_UNKNOWN_BUCKET
561 OFPT_GROUP_MOD (OF1.5):
562 REMOVE_BUCKET command_bucket_id:1,group_id=1234
563 ])
564 # Negative test.
565 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn remove-buckets br0 group_id=1234,command_bucket_id=last], [1], [],
566 [ovs-ofctl: remove-bucket needs OpenFlow 1.5 or later ('-O OpenFlow15')
567 ])
568 OVS_VSWITCHD_STOP
569 AT_CLEANUP
570
571 dnl This is really bare-bones.
572 dnl It at least checks request and reply serialization and deserialization.
573 AT_SETUP([ofproto - flow mod checks group availability])
574 OVS_VSWITCHD_START
575 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-group br0 group_id=1234,type=all,bucket=output:10])
576 AT_DATA([flows.txt], [dnl
577 tcp actions=group:1234
578 udp actions=group:1235
579 ])
580 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-flow br0 'tcp actions=group:1234'])
581 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-flow br0 'tcp actions=group:1235'], [1], [], [stderr])
582
583 # The output should look like this:
584 #
585 # 00000000 02 0e 00 98 00 00 00 02-00 00 00 00 00 00 00 00 |................|
586 # 00000010 00 00 00 00 00 00 00 00-ff 00 00 00 00 00 80 00 |................|
587 # 00000020 ff ff ff ff ff ff ff ff-ff ff ff ff 00 00 00 00 |................|
588 # 00000030 00 00 00 58 00 00 00 00-00 00 03 d7 00 00 00 00 |...X............|
589 #
590 # This 'sed' command captures the error message but drops details.
591 AT_CHECK([sed '/truncated/d
592 /^000000.0/d' stderr | STRIP_XIDS], [0],
593 [OFPT_ERROR (OF1.1): OFPBAC_BAD_OUT_GROUP
594 OFPT_FLOW_MOD (OF1.1):
595 ])
596 OVS_VSWITCHD_STOP
597 AT_CLEANUP
598
599 dnl This is really bare-bones.
600 dnl It at least checks request and reply serialization and deserialization.
601 AT_SETUP([ofproto - group description])
602 OVS_VSWITCHD_START
603 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-group br0 group_id=1234,type=all,bucket=output:10], [0], [stdout])
604 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-groups br0], [0], [stdout])
605 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
606 OFPST_GROUP_DESC reply (OF1.1):
607 group_id=1234,type=all,bucket=actions=output:10
608 ])
609 OVS_VSWITCHD_STOP
610 AT_CLEANUP
611
612 dnl This is really bare-bones.
613 dnl It at least checks request and reply serialization and deserialization.
614 AT_SETUP([ofproto - group description])
615 OVS_VSWITCHD_START
616 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-group br0 group_id=1234,type=all,bucket=output:10])
617 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-groups br0], [0], [stdout])
618 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
619 OFPST_GROUP_DESC reply (OF1.1):
620 group_id=1234,type=all,bucket=actions=output:10
621 ])
622 OVS_VSWITCHD_STOP
623 AT_CLEANUP
624
625 dnl This is really bare-bones.
626 dnl It at least checks request and reply serialization and deserialization.
627 AT_SETUP([ofproto - group features])
628 OVS_VSWITCHD_START
629 AT_CHECK([ovs-ofctl -O OpenFlow12 -vwarn dump-group-features br0], [0], [stdout])
630 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
631 OFPST_GROUP_FEATURES reply (OF1.2):
632 Group table:
633 Types: 0xf
634 Capabilities: 0x7
635 all group:
636 max_groups=0xffffff00
637 actions: output group set_field strip_vlan push_vlan mod_nw_ttl dec_ttl set_mpls_ttl dec_mpls_ttl push_mpls pop_mpls set_queue
638 select group:
639 max_groups=0xffffff00
640 actions: output group set_field strip_vlan push_vlan mod_nw_ttl dec_ttl set_mpls_ttl dec_mpls_ttl push_mpls pop_mpls set_queue
641 indirect group:
642 max_groups=0xffffff00
643 actions: output group set_field strip_vlan push_vlan mod_nw_ttl dec_ttl set_mpls_ttl dec_mpls_ttl push_mpls pop_mpls set_queue
644 fast failover group:
645 max_groups=0xffffff00
646 actions: output group set_field strip_vlan push_vlan mod_nw_ttl dec_ttl set_mpls_ttl dec_mpls_ttl push_mpls pop_mpls set_queue
647 ])
648 OVS_VSWITCHD_STOP
649 AT_CLEANUP
650
651 dnl This is really bare-bones.
652 dnl It at least checks request and reply serialization and deserialization.
653 AT_SETUP([ofproto - group stats (OpenFlow 1.1)])
654 OVS_VSWITCHD_START
655 AT_DATA([groups.txt], [dnl
656 group_id=1234,type=all,bucket=output:10
657 group_id=1235,type=all,bucket=output:10
658 ])
659 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-groups br0 groups.txt])
660 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-flow br0 'tcp actions=group:1234'])
661 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-group-stats br0 group_id=1234], [0], [stdout])
662 AT_CHECK([STRIP_XIDS stdout | sort], [0], [dnl
663 group_id=1234,ref_count=1,packet_count=0,byte_count=0,bucket0:packet_count=0,byte_count=0
664 OFPST_GROUP reply (OF1.1):
665 ])
666 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-group-stats br0], [0], [stdout])
667 AT_CHECK([STRIP_XIDS stdout | sort], [0], [dnl
668 group_id=1234,ref_count=1,packet_count=0,byte_count=0,bucket0:packet_count=0,byte_count=0
669 group_id=1235,ref_count=0,packet_count=0,byte_count=0,bucket0:packet_count=0,byte_count=0
670 OFPST_GROUP reply (OF1.1):
671 ])
672 OVS_VSWITCHD_STOP
673 AT_CLEANUP
674
675 dnl This is really bare-bones.
676 dnl It at least checks request and reply serialization and deserialization.
677 AT_SETUP([ofproto - group stats (OpenFlow 1.3)])
678 OVS_VSWITCHD_START
679 AT_DATA([groups.txt], [dnl
680 group_id=1234,type=all,bucket=output:10
681 group_id=1235,type=all,bucket=output:10
682 ])
683 AT_CHECK([ovs-ofctl -O OpenFlow13 -vwarn add-groups br0 groups.txt])
684 AT_CHECK([ovs-ofctl -O OpenFlow13 -vwarn add-flow br0 'tcp actions=group:1234'])
685 AT_CHECK([ovs-ofctl -O OpenFlow13 -vwarn dump-group-stats br0 group_id=1234], [0], [stdout])
686 AT_CHECK([STRIP_XIDS stdout | sed 's/duration=[[0-9.]]*s/duration=?s/' | sort], [0], [dnl
687 group_id=1234,duration=?s,ref_count=1,packet_count=0,byte_count=0,bucket0:packet_count=0,byte_count=0
688 OFPST_GROUP reply (OF1.3):
689 ])
690 AT_CHECK([ovs-ofctl -O OpenFlow13 -vwarn dump-group-stats br0], [0], [stdout])
691 AT_CHECK([STRIP_XIDS stdout | sed 's/duration=[[0-9.]]*s/duration=?s/' | sort], [0], [dnl
692 group_id=1234,duration=?s,ref_count=1,packet_count=0,byte_count=0,bucket0:packet_count=0,byte_count=0
693 group_id=1235,duration=?s,ref_count=0,packet_count=0,byte_count=0,bucket0:packet_count=0,byte_count=0
694 OFPST_GROUP reply (OF1.3):
695 ])
696 OVS_VSWITCHD_STOP
697 AT_CLEANUP
698
699 dnl This is really bare-bones.
700 dnl It at least checks request and reply serialization and deserialization.
701 AT_SETUP([ofproto - group stats (OpenFlow 1.5)])
702 OVS_VSWITCHD_START
703 AT_DATA([groups.txt], [dnl
704 group_id=1234,type=all,bucket=output:10
705 group_id=1235,type=all,bucket=output:10
706 ])
707 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn add-groups br0 groups.txt])
708 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn add-flow br0 'tcp actions=group:1234'])
709 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-group-stats br0 group_id=1234], [0], [stdout])
710 AT_CHECK([STRIP_XIDS stdout | sed 's/duration=[[0-9.]]*s/duration=?s/' | sort], [0], [dnl
711 group_id=1234,duration=?s,ref_count=1,packet_count=0,byte_count=0,bucket0:packet_count=0,byte_count=0
712 OFPST_GROUP reply (OF1.5):
713 ])
714 AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-group-stats br0], [0], [stdout])
715 AT_CHECK([STRIP_XIDS stdout | sed 's/duration=[[0-9.]]*s/duration=?s/' | sort], [0], [dnl
716 group_id=1234,duration=?s,ref_count=1,packet_count=0,byte_count=0,bucket0:packet_count=0,byte_count=0
717 group_id=1235,duration=?s,ref_count=0,packet_count=0,byte_count=0,bucket0:packet_count=0,byte_count=0
718 OFPST_GROUP reply (OF1.5):
719 ])
720 OVS_VSWITCHD_STOP
721 AT_CLEANUP
722
723 dnl This found a use-after-free error in bridge destruction in the
724 dnl presence of groups.
725 AT_SETUP([ofproto - group add then bridge delete (OpenFlow 1.3)])
726 OVS_VSWITCHD_START
727 AT_DATA([groups.txt], [dnl
728 group_id=1234,type=all,bucket=output:10
729 group_id=1235,type=all,bucket=output:10
730 ])
731 AT_CHECK([ovs-ofctl -O OpenFlow13 -vwarn add-groups br0 groups.txt])
732 AT_CHECK([ovs-vsctl del-br br0])
733 OVS_VSWITCHD_STOP
734 AT_CLEANUP
735
736 AT_SETUP([ofproto - mod-port (OpenFlow 1.0)])
737 OVS_VSWITCHD_START
738 for command_config_state in \
739 'up 0 0' \
740 'noflood NO_FLOOD 0' \
741 'down PORT_DOWN,NO_FLOOD LINK_DOWN' \
742 'flood PORT_DOWN LINK_DOWN' \
743 'no-receive PORT_DOWN,NO_RECV LINK_DOWN' \
744 'no-forward PORT_DOWN,NO_RECV,NO_FWD LINK_DOWN' \
745 'no-packet-in PORT_DOWN,NO_RECV,NO_FWD,NO_PACKET_IN LINK_DOWN' \
746 'forward PORT_DOWN,NO_RECV,NO_PACKET_IN LINK_DOWN' \
747 'packet-in PORT_DOWN,NO_RECV LINK_DOWN' \
748 'up NO_RECV 0' \
749 'receive 0 0'
750 do
751 set $command_config_state
752 command=$[1] config=`echo $[2] | sed 's/,/ /g'` state=$[3]
753 AT_CHECK([ovs-ofctl -vwarn mod-port br0 br0 $command])
754 AT_CHECK([ovs-ofctl -vwarn show br0], [0], [stdout])
755 AT_CHECK_UNQUOTED([STRIP_XIDS stdout], [0], [dnl
756 OFPT_FEATURES_REPLY: dpid:fedcba9876543210
757 n_tables:254, n_buffers:256
758 capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS ARP_MATCH_IP
759 actions: output enqueue set_vlan_vid set_vlan_pcp strip_vlan mod_dl_src mod_dl_dst mod_nw_src mod_nw_dst mod_nw_tos mod_tp_src mod_tp_dst
760 LOCAL(br0): addr:aa:55:aa:55:00:00
761 config: $config
762 state: $state
763 speed: 0 Mbps now, 0 Mbps max
764 OFPT_GET_CONFIG_REPLY: frags=normal miss_send_len=0
765 ])
766 done
767 OVS_VSWITCHD_STOP
768 AT_CLEANUP
769
770 AT_SETUP([ofproto - mod-port (OpenFlow 1.2)])
771 OVS_VSWITCHD_START
772 for command_config_state in \
773 'up 0 0' \
774 'down PORT_DOWN LINK_DOWN' \
775 'no-receive PORT_DOWN,NO_RECV LINK_DOWN' \
776 'no-forward PORT_DOWN,NO_RECV,NO_FWD LINK_DOWN' \
777 'no-packet-in PORT_DOWN,NO_RECV,NO_FWD,NO_PACKET_IN LINK_DOWN' \
778 'forward PORT_DOWN,NO_RECV,NO_PACKET_IN LINK_DOWN' \
779 'packet-in PORT_DOWN,NO_RECV LINK_DOWN' \
780 'up NO_RECV 0' \
781 'receive 0 0'
782 do
783 set $command_config_state
784 command=$[1] config=`echo $[2] | sed 's/,/ /g'` state=$[3]
785 AT_CHECK([ovs-ofctl -O OpenFlow12 -vwarn mod-port br0 br0 $command])
786 AT_CHECK([ovs-ofctl -O OpenFlow12 -vwarn show br0], [0], [stdout])
787 AT_CHECK_UNQUOTED([STRIP_XIDS stdout], [0], [dnl
788 OFPT_FEATURES_REPLY (OF1.2): dpid:fedcba9876543210
789 n_tables:254, n_buffers:256
790 capabilities: FLOW_STATS TABLE_STATS PORT_STATS GROUP_STATS QUEUE_STATS
791 LOCAL(br0): addr:aa:55:aa:55:00:00
792 config: $config
793 state: $state
794 speed: 0 Mbps now, 0 Mbps max
795 OFPT_GET_CONFIG_REPLY (OF1.2): frags=normal miss_send_len=0
796 ])
797 done
798 OVS_VSWITCHD_STOP
799 AT_CLEANUP
800
801 AT_SETUP([ofproto - mod-port (OpenFlow 1.4)])
802 OVS_VSWITCHD_START
803 for command_config_state in \
804 'up 0 0' \
805 'down PORT_DOWN LINK_DOWN' \
806 'no-receive PORT_DOWN,NO_RECV LINK_DOWN' \
807 'no-forward PORT_DOWN,NO_RECV,NO_FWD LINK_DOWN' \
808 'no-packet-in PORT_DOWN,NO_RECV,NO_FWD,NO_PACKET_IN LINK_DOWN' \
809 'forward PORT_DOWN,NO_RECV,NO_PACKET_IN LINK_DOWN' \
810 'packet-in PORT_DOWN,NO_RECV LINK_DOWN' \
811 'up NO_RECV 0' \
812 'receive 0 0'
813 do
814 set $command_config_state
815 command=$[1] config=`echo $[2] | sed 's/,/ /g'` state=$[3]
816 AT_CHECK([ovs-ofctl -O OpenFlow14 -vwarn mod-port br0 br0 $command])
817 AT_CHECK([ovs-ofctl -O OpenFlow14 -vwarn show br0], [0], [stdout])
818 AT_CHECK_UNQUOTED([STRIP_XIDS stdout], [0], [dnl
819 OFPT_FEATURES_REPLY (OF1.4): dpid:fedcba9876543210
820 n_tables:254, n_buffers:256
821 capabilities: FLOW_STATS TABLE_STATS PORT_STATS GROUP_STATS QUEUE_STATS
822 OFPST_PORT_DESC reply (OF1.4):
823 LOCAL(br0): addr:aa:55:aa:55:00:00
824 config: $config
825 state: $state
826 speed: 0 Mbps now, 0 Mbps max
827 OFPT_GET_CONFIG_REPLY (OF1.4): frags=normal miss_send_len=0
828 ])
829 done
830 OVS_VSWITCHD_STOP
831 AT_CLEANUP
832
833 AT_SETUP([ofproto - basic flow_mod commands (NXM)])
834 OVS_VSWITCHD_START
835 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0], [NXST_FLOW reply:
836 ])
837 AT_CHECK([echo 'in_port=2,actions=1' | ovs-ofctl add-flows br0 -])
838 AT_CHECK([ovs-ofctl add-flow br0 in_port=1,actions=2])
839 AT_CHECK([ovs-ofctl -F nxm add-flow br0 table=1,in_port=4,actions=3])
840 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
841 in_port=1 actions=output:2
842 in_port=2 actions=output:1
843 table=1, in_port=4 actions=output:3
844 NXST_FLOW reply:
845 ])
846 AT_CHECK([ovs-ofctl dump-aggregate br0 table=0 | STRIP_XIDS], [0], [dnl
847 NXST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=2
848 ])
849 AT_CHECK([ovs-ofctl del-flows br0])
850 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0], [NXST_FLOW reply:
851 ])
852 OVS_VSWITCHD_STOP
853 AT_CLEANUP
854
855 AT_SETUP([ofproto - basic flow_mod commands (OpenFlow 1.0)])
856 OVS_VSWITCHD_START
857 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip], [0], [OFPST_FLOW reply:
858 ])
859 AT_CHECK([echo 'in_port=2,actions=1' | ovs-ofctl -F openflow10 add-flows br0 -])
860 AT_CHECK([ovs-ofctl -F openflow10 add-flow br0 in_port=1,actions=2])
861 AT_CHECK([ovs-ofctl -F openflow10 add-flow br0 table=1,in_port=4,actions=3])
862 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip | sort], [0], [dnl
863 in_port=1 actions=output:2
864 in_port=2 actions=output:1
865 table=1, in_port=4 actions=output:3
866 OFPST_FLOW reply:
867 ])
868 AT_CHECK([ovs-ofctl -F openflow10 dump-aggregate br0 table=0 | STRIP_XIDS], [0], [dnl
869 OFPST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=2
870 ])
871 AT_CHECK([ovs-ofctl -F openflow10 del-flows br0])
872 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip], [0], [OFPST_FLOW reply:
873 ])
874 OVS_VSWITCHD_STOP
875 AT_CLEANUP
876
877 # It's really dumb that check_overlap and reset_counts are considered
878 # part of flow state, but OpenFlow implies that it is, and OFTest and
879 # some users insist on it.
880 AT_SETUP([ofproto - add-flow and flags])
881 OVS_VSWITCHD_START
882 AT_CHECK([ovs-ofctl -F openflow10 add-flow br0 check_overlap,in_port=1,actions=drop])
883 # Prior to OF1.3, flow dumps didn't include a "flags" field.
884 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip], [0], [dnl
885 OFPST_FLOW reply:
886 in_port=1 actions=drop
887 ])
888 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip], [0], [dnl
889 OFPST_FLOW reply (OF1.1):
890 in_port=1 actions=drop
891 ])
892 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip], [0], [dnl
893 OFPST_FLOW reply (OF1.2):
894 in_port=1 actions=drop
895 ])
896 # OF1.3 makes the flags visible.
897 AT_CHECK([ovs-ofctl -O OpenFlow13 dump-flows br0 | ofctl_strip], [0], [dnl
898 OFPST_FLOW reply (OF1.3):
899 check_overlap reset_counts in_port=1 actions=drop
900 ])
901 AT_CHECK([ovs-ofctl -O OpenFlow14 dump-flows br0 | ofctl_strip], [0], [dnl
902 OFPST_FLOW reply (OF1.4):
903 check_overlap reset_counts in_port=1 actions=drop
904 ])
905 AT_CHECK([ovs-ofctl -O OpenFlow15 dump-flows br0 | ofctl_strip], [0], [dnl
906 OFPST_FLOW reply (OF1.5):
907 check_overlap reset_counts in_port=1 actions=drop
908 ])
909 OVS_VSWITCHD_STOP
910 AT_CLEANUP
911
912 AT_SETUP([ofproto - basic flow_mod commands (OpenFlow 1.1)])
913 OVS_VSWITCHD_START
914 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip], [0], [OFPST_FLOW reply (OF1.1):
915 ])
916 AT_CHECK([echo 'in_port=2,actions=1' | ovs-ofctl -O OpenFlow11 add-flows br0 -])
917 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 in_port=1,actions=2])
918 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 table=1,in_port=4,actions=3])
919 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
920 in_port=1 actions=output:2
921 in_port=2 actions=output:1
922 table=1, in_port=4 actions=output:3
923 OFPST_FLOW reply (OF1.1):
924 ])
925 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-aggregate br0 table=0 | STRIP_XIDS], [0], [dnl
926 OFPST_AGGREGATE reply (OF1.1): packet_count=0 byte_count=0 flow_count=2
927 ])
928 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0])
929 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip], [0], [OFPST_FLOW reply (OF1.1):
930 table=1, in_port=4 actions=output:3
931 ])
932 OVS_VSWITCHD_STOP
933 AT_CLEANUP
934
935 AT_SETUP([ofproto - flow_mod negative test (OpenFlow 1.1)])
936 OVS_VSWITCHD_START(
937 [set bridge br0 protocols=OpenFlow10,OpenFlow11,OpenFlow12,OpenFlow13])
938 AT_CHECK([ovs-ofctl add-flow -O OpenFlow11 br0 table=1,action=goto_table:2])
939
940 # The error message here actually comes from ovs-ofctl, not from ovs-vswitchd,
941 # but at least it's the same code in ofpacts_check() that issues the error.
942 AT_CHECK([ovs-ofctl add-flow -O OpenFlow11 br0 table=1,action=goto_table:1],
943 [1], [],
944 [ovs-ofctl: actions are invalid with specified match (OFPBIC_BAD_TABLE_ID)
945 ])
946 OVS_VSWITCHD_STOP
947 AT_CLEANUP
948
949 AT_SETUP([ofproto - set-field flow_mod commands (NXM)])
950 OVS_VSWITCHD_START
951 AT_CHECK([ovs-ofctl add-flow br0 ipv6,table=1,in_port=3,actions=drop])
952 AT_CHECK([ovs-ofctl add-flow br0 ipv6,table=1,in_port=3,actions=set_field:fe80:0123:4567:890a:a6ba:dbff:fefe:59fa-\>ipv6_src])
953 AT_CHECK([ovs-ofctl add-flow br0 icmp6,icmp_type=136,table=1,in_port=3,actions=set_field:fe80:8675:3097:890a:a6ba:dbff:f00d:59fa-\>nd_target,set_field:cc:dd:ee:ff:00:11-\>nd_tll])
954 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
955 table=1, icmp6,in_port=3,icmp_type=136 actions=load:0xa6badbfff00d59fa->NXM_NX_ND_TARGET[[0..63]],load:0xfe8086753097890a->NXM_NX_ND_TARGET[[64..127]],load:0xccddeeff0011->NXM_NX_ND_TLL[[]]
956 table=1, ipv6,in_port=3 actions=load:0xa6badbfffefe59fa->NXM_NX_IPV6_SRC[[0..63]],load:0xfe8001234567890a->NXM_NX_IPV6_SRC[[64..127]]
957 NXST_FLOW reply:
958 ])
959 OVS_VSWITCHD_STOP
960 AT_CLEANUP
961
962 AT_SETUP([ofproto - basic flow_mod commands (OpenFlow 1.2)])
963 OVS_VSWITCHD_START
964 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip], [0], [OFPST_FLOW reply (OF1.2):
965 ])
966 AT_CHECK([echo 'in_port=2,actions=1' | ovs-ofctl -O OpenFlow12 add-flows br0 -])
967 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=1,actions=2])
968 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 table=1,in_port=4,actions=3])
969 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
970 in_port=1 actions=output:2
971 in_port=2 actions=output:1
972 table=1, in_port=4 actions=output:3
973 OFPST_FLOW reply (OF1.2):
974 ])
975 AT_CHECK([ovs-ofctl -O OpenFlow12 del-flows br0])
976 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip], [0], [OFPST_FLOW reply (OF1.2):
977 ])
978 OVS_VSWITCHD_STOP
979 AT_CLEANUP
980
981 AT_SETUP([ofproto - set-field flow_mod commands (OF1.2)])
982 OVS_VSWITCHD_START
983 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 ipv6,table=1,in_port=3,actions=drop])
984 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 ipv6,table=1,in_port=3,actions=set_field:fe80:0123:4567:890a:a6ba:dbff:fefe:59fa-\>ipv6_src])
985 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 icmp6,icmp_type=136,table=1,in_port=3,actions=set_field:fe80:8675:3097:890a:a6ba:dbff:f00d:59fa-\>nd_target,set_field:cc:dd:ee:ff:00:11-\>nd_tll])
986 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
987 table=1, icmp6,in_port=3,icmp_type=136 actions=set_field:fe80:8675:3097:890a:a6ba:dbff:f00d:59fa->nd_target,set_field:cc:dd:ee:ff:00:11->nd_tll
988 table=1, ipv6,in_port=3 actions=set_field:fe80:123:4567:890a:a6ba:dbff:fefe:59fa->ipv6_src
989 OFPST_FLOW reply (OF1.2):
990 ])
991 OVS_VSWITCHD_STOP
992 AT_CLEANUP
993
994 AT_SETUP([ofproto - dump flows with cookie])
995 OVS_VSWITCHD_START
996 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
997 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,actions=1])
998 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x3,in_port=3,actions=1])
999 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1000 cookie=0x1, in_port=1 actions=output:1
1001 cookie=0x2, in_port=2 actions=output:1
1002 cookie=0x3, in_port=3 actions=output:1
1003 NXST_FLOW reply:
1004 ])
1005 AT_CHECK([ovs-ofctl dump-aggregate br0 table=0 | STRIP_XIDS], [0], [dnl
1006 NXST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=3
1007 ])
1008 AT_CHECK([ovs-ofctl dump-flows br0 cookie=0x3/-1 | ofctl_strip | sort], [0], [dnl
1009 cookie=0x3, in_port=3 actions=output:1
1010 NXST_FLOW reply:
1011 ])
1012 AT_CHECK([ovs-ofctl dump-aggregate br0 cookie=0x3/-1 | STRIP_XIDS], [0], [dnl
1013 NXST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=1
1014 ])
1015 OVS_VSWITCHD_STOP
1016 AT_CLEANUP
1017
1018 AT_SETUP([ofproto - mod flow with cookie change (OpenFlow 1.0)])
1019 OVS_VSWITCHD_START
1020 AT_CHECK([ovs-ofctl -F openflow10 add-flow br0 cookie=0x1,in_port=1,actions=1])
1021 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1022 cookie=0x1, in_port=1 actions=output:1
1023 OFPST_FLOW reply:
1024 ])
1025
1026 AT_CHECK([ovs-ofctl -F openflow10 mod-flows br0 cookie=0x2,in_port=1,actions=1])
1027 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1028 cookie=0x2, in_port=1 actions=output:1
1029 OFPST_FLOW reply:
1030 ])
1031 OVS_VSWITCHD_STOP
1032 AT_CLEANUP
1033
1034 AT_SETUP([ofproto - mod flow with cookie change (NXM)])
1035 OVS_VSWITCHD_START
1036 AT_CHECK([ovs-ofctl -F nxm add-flow br0 cookie=0x1,in_port=1,actions=1])
1037 AT_CHECK([ovs-ofctl -F nxm dump-flows br0 | ofctl_strip | sort], [0], [dnl
1038 cookie=0x1, in_port=1 actions=output:1
1039 NXST_FLOW reply:
1040 ])
1041
1042 AT_CHECK([ovs-ofctl -F nxm mod-flows br0 cookie=0x2,in_port=1,actions=1])
1043 AT_CHECK([ovs-ofctl -F nxm dump-flows br0 | ofctl_strip | sort], [0], [dnl
1044 cookie=0x2, in_port=1 actions=output:1
1045 NXST_FLOW reply:
1046 ])
1047 OVS_VSWITCHD_STOP
1048 AT_CLEANUP
1049
1050 AT_SETUP([ofproto - no mod flow with cookie change (OpenFlow 1.1)])
1051 OVS_VSWITCHD_START
1052 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x1,in_port=1,actions=1])
1053 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1054 cookie=0x1, in_port=1 actions=output:1
1055 OFPST_FLOW reply (OF1.1):
1056 ])
1057 AT_CHECK([ovs-ofctl -O OpenFlow11 mod-flows br0 cookie=0x2,in_port=1,actions=1])
1058 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1059 cookie=0x1, in_port=1 actions=output:1
1060 OFPST_FLOW reply (OF1.1):
1061 ])
1062 OVS_VSWITCHD_STOP
1063 AT_CLEANUP
1064
1065 dnl The OpenFlow 1.2 spec states that the cookie may not be modified
1066 AT_SETUP([ofproto - no mod flow with cookie change (OpenFlow 1.2)])
1067 OVS_VSWITCHD_START
1068 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x1,in_port=1,actions=1])
1069 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1070 cookie=0x1, in_port=1 actions=output:1
1071 OFPST_FLOW reply (OF1.2):
1072 ])
1073
1074 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 cookie=0x2,in_port=1,actions=1])
1075 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1076 cookie=0x1, in_port=1 actions=output:1
1077 OFPST_FLOW reply (OF1.2):
1078 ])
1079 OVS_VSWITCHD_STOP
1080 AT_CLEANUP
1081
1082 AT_SETUP([ofproto - mod flows based on cookie mask (OpenFlow 1.0)])
1083 OVS_VSWITCHD_START
1084 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
1085 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=2,actions=1])
1086 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=3,actions=1])
1087 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1088 cookie=0x1, in_port=1 actions=output:1
1089 cookie=0x1, in_port=2 actions=output:1
1090 cookie=0x2, in_port=3 actions=output:1
1091 NXST_FLOW reply:
1092 ])
1093
1094 AT_CHECK([ovs-ofctl -F nxm mod-flows br0 cookie=0x1/0xff,actions=4])
1095 AT_CHECK([ovs-ofctl -F nxm dump-flows br0 | ofctl_strip | sort], [0], [dnl
1096 cookie=0x1, in_port=1 actions=output:4
1097 cookie=0x1, in_port=2 actions=output:4
1098 cookie=0x2, in_port=3 actions=output:1
1099 NXST_FLOW reply:
1100 ])
1101 OVS_VSWITCHD_STOP
1102 AT_CLEANUP
1103
1104 AT_SETUP([ofproto - mod flows based on cookie mask (OpenFlow 1.1)])
1105 OVS_VSWITCHD_START
1106 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x1,in_port=1,actions=1])
1107 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x1,in_port=2,actions=1])
1108 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x2,in_port=3,actions=1])
1109 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1110 cookie=0x1, in_port=1 actions=output:1
1111 cookie=0x1, in_port=2 actions=output:1
1112 cookie=0x2, in_port=3 actions=output:1
1113 OFPST_FLOW reply (OF1.1):
1114 ])
1115
1116 AT_CHECK([ovs-ofctl -O OpenFlow11 mod-flows br0 cookie=0x1/0xff,actions=4])
1117 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1118 cookie=0x1, in_port=1 actions=output:4
1119 cookie=0x1, in_port=2 actions=output:4
1120 cookie=0x2, in_port=3 actions=output:1
1121 OFPST_FLOW reply (OF1.1):
1122 ])
1123 OVS_VSWITCHD_STOP
1124 AT_CLEANUP
1125
1126 AT_SETUP([ofproto - mod flows based on cookie mask (OpenFlow 1.2)])
1127 OVS_VSWITCHD_START
1128 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x1,in_port=1,actions=1])
1129 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x1,in_port=2,actions=1])
1130 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x2,in_port=3,actions=1])
1131 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1132 cookie=0x1, in_port=1 actions=output:1
1133 cookie=0x1, in_port=2 actions=output:1
1134 cookie=0x2, in_port=3 actions=output:1
1135 OFPST_FLOW reply (OF1.2):
1136 ])
1137
1138 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 cookie=0x1/0xff,actions=4])
1139 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1140 cookie=0x1, in_port=1 actions=output:4
1141 cookie=0x1, in_port=2 actions=output:4
1142 cookie=0x2, in_port=3 actions=output:1
1143 OFPST_FLOW reply (OF1.2):
1144 ])
1145 OVS_VSWITCHD_STOP
1146 AT_CLEANUP
1147
1148 dnl The OpenFlow 1.2 spec states that the cookie may not be modified
1149 AT_SETUP([ofproto - mod flows based on cookie mask with cookie change])
1150 OVS_VSWITCHD_START
1151 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
1152 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=2,actions=1])
1153 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=3,actions=1])
1154 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1155 cookie=0x1, in_port=1 actions=output:1
1156 cookie=0x1, in_port=2 actions=output:1
1157 cookie=0x2, in_port=3 actions=output:1
1158 NXST_FLOW reply:
1159 ])
1160
1161 AT_CHECK([ovs-ofctl -F nxm mod-flows br0 cookie=1/-1,cookie=4,actions=4])
1162 AT_CHECK([ovs-ofctl -F nxm dump-flows br0 | ofctl_strip | sort], [0], [dnl
1163 cookie=0x2, in_port=3 actions=output:1
1164 cookie=0x4, in_port=1 actions=output:4
1165 cookie=0x4, in_port=2 actions=output:4
1166 NXST_FLOW reply:
1167 ])
1168 OVS_VSWITCHD_STOP
1169 AT_CLEANUP
1170
1171 AT_SETUP([ofproto - mod flow with cookie miss (mask==0) - NXM])
1172 OVS_VSWITCHD_START
1173 AT_CHECK([ovs-ofctl -F nxm mod-flows br0 in_port=1,actions=1])
1174 AT_CHECK([ovs-ofctl -F nxm dump-flows br0 | ofctl_strip | sort], [0], [dnl
1175 in_port=1 actions=output:1
1176 NXST_FLOW reply:
1177 ])
1178 OVS_VSWITCHD_STOP
1179 AT_CLEANUP
1180
1181 AT_SETUP([ofproto - mod flow with cookie miss (mask==0) - OF1.1])
1182 OVS_VSWITCHD_START
1183 AT_CHECK([ovs-ofctl -O openflow11 mod-flows br0 in_port=1,actions=1])
1184 AT_CHECK([ovs-ofctl -O openflow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1185 in_port=1 actions=output:1
1186 OFPST_FLOW reply (OF1.1):
1187 ])
1188 OVS_VSWITCHD_STOP
1189 AT_CLEANUP
1190
1191 AT_SETUP([ofproto - mod flow with cookie miss (mask==0) - OF1.2])
1192 OVS_VSWITCHD_START
1193 AT_CHECK([ovs-ofctl -O openflow12 mod-flows br0 in_port=1,actions=1])
1194 AT_CHECK([ovs-ofctl -O openflow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1195 OFPST_FLOW reply (OF1.2):
1196 ])
1197 OVS_VSWITCHD_STOP
1198 AT_CLEANUP
1199
1200 AT_SETUP([ofproto - mod flow with cookie miss (mask!=0) - NXM])
1201 OVS_VSWITCHD_START
1202 AT_CHECK([ovs-ofctl -F nxm mod-flows br0 cookie=1/1,in_port=1,actions=1])
1203 AT_CHECK([ovs-ofctl -F nxm dump-flows br0 | ofctl_strip | sort], [0], [dnl
1204 NXST_FLOW reply:
1205 ])
1206 OVS_VSWITCHD_STOP
1207 AT_CLEANUP
1208
1209 AT_SETUP([ofproto - mod flow with cookie miss (mask!=0) - OF1.1])
1210 OVS_VSWITCHD_START
1211 AT_CHECK([ovs-ofctl -O openflow11 mod-flows br0 cookie=1/1,in_port=1,actions=1])
1212 AT_CHECK([ovs-ofctl -O openflow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1213 OFPST_FLOW reply (OF1.1):
1214 ])
1215 OVS_VSWITCHD_STOP
1216 AT_CLEANUP
1217
1218 AT_SETUP([ofproto - mod flow with cookie miss (mask!=0) - OF1.2])
1219 OVS_VSWITCHD_START
1220 AT_CHECK([ovs-ofctl -O openflow12 mod-flows br0 cookie=1/1,in_port=1,actions=1])
1221 AT_CHECK([ovs-ofctl -O openflow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1222 OFPST_FLOW reply (OF1.2):
1223 ])
1224 OVS_VSWITCHD_STOP
1225 AT_CLEANUP
1226
1227 AT_SETUP([ofproto - del flows with cookies])
1228 OVS_VSWITCHD_START
1229 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
1230 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,actions=1])
1231 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x3,in_port=3,actions=1])
1232 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1233 cookie=0x1, in_port=1 actions=output:1
1234 cookie=0x2, in_port=2 actions=output:1
1235 cookie=0x3, in_port=3 actions=output:1
1236 NXST_FLOW reply:
1237 ])
1238
1239 AT_CHECK([ovs-ofctl del-flows br0])
1240 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1241 NXST_FLOW reply:
1242 ])
1243 OVS_VSWITCHD_STOP
1244 AT_CLEANUP
1245
1246 AT_SETUP([ofproto - del flows based on cookie])
1247 OVS_VSWITCHD_START
1248 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
1249 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,actions=1])
1250 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x3,in_port=3,actions=1])
1251 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1252 cookie=0x1, in_port=1 actions=output:1
1253 cookie=0x2, in_port=2 actions=output:1
1254 cookie=0x3, in_port=3 actions=output:1
1255 NXST_FLOW reply:
1256 ])
1257
1258 AT_CHECK([ovs-ofctl del-flows br0 cookie=0x3/-1])
1259 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1260 cookie=0x1, in_port=1 actions=output:1
1261 cookie=0x2, in_port=2 actions=output:1
1262 NXST_FLOW reply:
1263 ])
1264 OVS_VSWITCHD_STOP
1265 AT_CLEANUP
1266
1267 AT_SETUP([ofproto - del flows based on cookie mask])
1268 OVS_VSWITCHD_START
1269 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
1270 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,actions=1])
1271 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x3,in_port=3,actions=1])
1272 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1273 cookie=0x1, in_port=1 actions=output:1
1274 cookie=0x2, in_port=2 actions=output:1
1275 cookie=0x3, in_port=3 actions=output:1
1276 NXST_FLOW reply:
1277 ])
1278 AT_CHECK([ovs-ofctl del-flows br0 cookie=0x3/0x1])
1279 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1280 cookie=0x2, in_port=2 actions=output:1
1281 NXST_FLOW reply:
1282 ])
1283 OVS_VSWITCHD_STOP
1284 AT_CLEANUP
1285
1286 AT_SETUP([ofproto - del flows based on table id (NXM)])
1287 OVS_VSWITCHD_START
1288 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
1289 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,table=1,actions=1])
1290 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1291 cookie=0x1, in_port=1 actions=output:1
1292 cookie=0x2, table=1, in_port=2 actions=output:1
1293 NXST_FLOW reply:
1294 ])
1295 AT_CHECK([ovs-ofctl del-flows br0 table=0])
1296 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1297 cookie=0x2, table=1, in_port=2 actions=output:1
1298 NXST_FLOW reply:
1299 ])
1300 AT_CHECK([ovs-ofctl del-flows br0 table=1])
1301 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1302 NXST_FLOW reply:
1303 ])
1304 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
1305 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,table=1,actions=1])
1306 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1307 cookie=0x1, in_port=1 actions=output:1
1308 cookie=0x2, table=1, in_port=2 actions=output:1
1309 NXST_FLOW reply:
1310 ])
1311 AT_CHECK([ovs-ofctl del-flows br0])
1312 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1313 NXST_FLOW reply:
1314 ])
1315 OVS_VSWITCHD_STOP
1316 AT_CLEANUP
1317
1318 AT_SETUP([ofproto - del flows based on table id (OpenFlow 1.1)])
1319 OVS_VSWITCHD_START
1320 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x1,in_port=1,actions=1])
1321 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x2,in_port=2,table=1,actions=1])
1322 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1323 cookie=0x1, in_port=1 actions=output:1
1324 cookie=0x2, table=1, in_port=2 actions=output:1
1325 OFPST_FLOW reply (OF1.1):
1326 ])
1327 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0 table=0])
1328 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1329 cookie=0x2, table=1, in_port=2 actions=output:1
1330 OFPST_FLOW reply (OF1.1):
1331 ])
1332 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0 table=1])
1333 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1334 OFPST_FLOW reply (OF1.1):
1335 ])
1336 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x1,in_port=1,actions=1])
1337 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x2,in_port=2,table=1,actions=1])
1338 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1339 cookie=0x1, in_port=1 actions=output:1
1340 cookie=0x2, table=1, in_port=2 actions=output:1
1341 OFPST_FLOW reply (OF1.1):
1342 ])
1343 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0])
1344 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip], [0], [dnl
1345 OFPST_FLOW reply (OF1.1):
1346 cookie=0x2, table=1, in_port=2 actions=output:1
1347 ])
1348 OVS_VSWITCHD_STOP
1349 AT_CLEANUP
1350
1351 AT_SETUP([ofproto - del flows based on table id (OpenFlow 1.2)])
1352 OVS_VSWITCHD_START
1353 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x1,in_port=1,actions=1])
1354 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x2,in_port=2,table=1,actions=1])
1355 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1356 cookie=0x1, in_port=1 actions=output:1
1357 cookie=0x2, table=1, in_port=2 actions=output:1
1358 OFPST_FLOW reply (OF1.2):
1359 ])
1360 AT_CHECK([ovs-ofctl -O OpenFlow12 del-flows br0 table=0])
1361 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1362 cookie=0x2, table=1, in_port=2 actions=output:1
1363 OFPST_FLOW reply (OF1.2):
1364 ])
1365 AT_CHECK([ovs-ofctl -O OpenFlow12 del-flows br0 table=1])
1366 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1367 OFPST_FLOW reply (OF1.2):
1368 ])
1369 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x1,in_port=1,actions=1])
1370 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x2,in_port=2,table=1,actions=1])
1371 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1372 cookie=0x1, in_port=1 actions=output:1
1373 cookie=0x2, table=1, in_port=2 actions=output:1
1374 OFPST_FLOW reply (OF1.2):
1375 ])
1376 AT_CHECK([ovs-ofctl -O OpenFlow12 del-flows br0])
1377 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1378 OFPST_FLOW reply (OF1.2):
1379 ])
1380 OVS_VSWITCHD_STOP
1381 AT_CLEANUP
1382
1383 AT_SETUP([ofproto - flow_mod with out_port matching (OpenFlow 1.0)])
1384 OVS_VSWITCHD_START
1385 AT_DATA([flows.txt], [dnl
1386 in_port=1 actions=output:2
1387 in_port=2 actions=output:1,output:2,output:3
1388 in_port=3 actions=output:3,output:1,output:2
1389 in_port=4 actions=drop
1390 in_port=5 actions=output:3
1391 in_port=6 actions=output:1
1392 ])
1393 AT_CHECK([ovs-ofctl -F openflow10 add-flows br0 flows.txt])
1394 (cat flows.txt; echo 'OFPST_FLOW reply:') > expout
1395 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip | sort], [0],
1396 [expout])
1397
1398 (grep 'output:2' flows.txt; echo 'OFPST_FLOW reply:') > expout
1399 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 out_port=2 | ofctl_strip | sort], [0], [expout])
1400
1401 AT_CHECK([ovs-ofctl -F openflow10 del-flows br0 out_port=2])
1402 (grep -v 'output:2' flows.txt; echo 'OFPST_FLOW reply:') > expout
1403 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip | sort], [0],
1404 [expout])
1405
1406 AT_CHECK([ovs-ofctl -F openflow10 del-flows br0 out_port=3])
1407 (grep -v 'output:[[23]]' flows.txt; echo 'OFPST_FLOW reply:') > expout
1408 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip | sort], [0],
1409 [expout])
1410
1411 AT_CHECK([ovs-ofctl -F openflow10 del-flows br0 out_port=1])
1412 (grep -v 'output:[[123]]' flows.txt; echo 'OFPST_FLOW reply:') > expout
1413 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip | sort], [0],
1414 [expout])
1415
1416 OVS_VSWITCHD_STOP
1417 AT_CLEANUP
1418
1419 AT_SETUP([ofproto - flow_mod with out_port matching (OpenFlow 1.1)])
1420 OVS_VSWITCHD_START
1421 AT_DATA([flows.txt], [dnl
1422 in_port=1 actions=output:2
1423 in_port=2 actions=output:1,write_actions(output:2,output:3)
1424 in_port=3 actions=output:3,output:1,write_actions(output:2)
1425 in_port=4 actions=drop
1426 in_port=5 actions=write_actions(output:3)
1427 in_port=6 actions=output:1
1428 ])
1429 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flows br0 flows.txt])
1430 (cat flows.txt; echo 'OFPST_FLOW reply (OF1.1):') > expout
1431 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0],
1432 [expout])
1433
1434 (grep 'output:2' flows.txt; echo 'OFPST_FLOW reply (OF1.1):') > expout
1435 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 out_port=2 | ofctl_strip | sort], [0], [expout])
1436
1437 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0 out_port=2])
1438 (grep -v 'output:2' flows.txt; echo 'OFPST_FLOW reply (OF1.1):') > expout
1439 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0],
1440 [expout])
1441
1442 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0 out_port=3])
1443 (grep -v 'output:[[23]]' flows.txt; echo 'OFPST_FLOW reply (OF1.1):') > expout
1444 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0],
1445 [expout])
1446
1447 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0 out_port=1])
1448 (grep -v 'output:[[123]]' flows.txt; echo 'OFPST_FLOW reply (OF1.1):') > expout
1449 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0],
1450 [expout])
1451
1452 OVS_VSWITCHD_STOP
1453 AT_CLEANUP
1454
1455 AT_SETUP([ofproto - flow_mod with out_group matching (OpenFlow 1.1)])
1456 OVS_VSWITCHD_START
1457 AT_DATA([groups.txt], [dnl
1458 group_id=1,type=all,bucket=output:10
1459 group_id=2,type=all,bucket=output:10
1460 group_id=3,type=all,bucket=output:10
1461 ])
1462 AT_CHECK([ovs-ofctl -O OpenFlow11 add-groups br0 groups.txt])
1463 AT_DATA([flows.txt], [dnl
1464 in_port=1 actions=group:2,output:5
1465 in_port=2 actions=group:1,write_actions(group:2,group:3,output:6)
1466 in_port=3 actions=group:3,group:1,write_actions(group:2,output:3)
1467 in_port=4 actions=output:4
1468 in_port=5 actions=write_actions(output:4,group:3)
1469 in_port=6 actions=group:1
1470 ])
1471 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flows br0 flows.txt])
1472 (cat flows.txt; echo 'OFPST_FLOW reply (OF1.1):') > expout
1473 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0],
1474 [expout])
1475
1476 (grep 'output:3' flows.txt | grep 'group:2'; echo 'OFPST_FLOW reply (OF1.1):') > expout
1477 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 out_port=3,out_group=2 | ofctl_strip | sort], [0], [expout])
1478
1479 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0 out_group=2])
1480 (grep -v 'group:2' flows.txt; echo 'OFPST_FLOW reply (OF1.1):') > expout
1481 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0],
1482 [expout])
1483
1484 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0 out_group=3])
1485 (grep -v 'group:[[23]]' flows.txt; echo 'OFPST_FLOW reply (OF1.1):') > expout
1486 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0],
1487 [expout])
1488
1489 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0 out_group=1])
1490 (grep -v 'group:[[123]]' flows.txt; echo 'OFPST_FLOW reply (OF1.1):') > expout
1491 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0],
1492 [expout])
1493
1494 OVS_VSWITCHD_STOP
1495 AT_CLEANUP
1496
1497 AT_SETUP([ofproto - flow table configuration (OpenFlow 1.0)])
1498 OVS_VSWITCHD_START
1499 # Check the default configuration.
1500 head_table() {
1501 printf 'OFPST_TABLE reply (xid=0x2):
1502 table 0 ("%s"):
1503 active=0, lookup=0, matched=0
1504 max_entries=1000000
1505 matching:
1506 in_port: exact match or wildcard
1507 eth_src: exact match or wildcard
1508 eth_dst: exact match or wildcard
1509 eth_type: exact match or wildcard
1510 vlan_vid: exact match or wildcard
1511 vlan_pcp: exact match or wildcard
1512 ip_src: exact match or wildcard
1513 ip_dst: exact match or wildcard
1514 nw_proto: exact match or wildcard
1515 nw_tos: exact match or wildcard
1516 tcp_src: exact match or wildcard
1517 tcp_dst: exact match or wildcard
1518
1519 ' $1
1520 }
1521 ditto() {
1522 for i in `seq $1 $2`; do
1523 printf ' table %d ("table%d"): ditto\n' $i $i
1524 done
1525 }
1526 (head_table classifier; ditto 1 253) > expout
1527 AT_CHECK([ovs-ofctl dump-tables br0], [0], [expout])
1528 # Change the configuration.
1529 AT_CHECK(
1530 [ovs-vsctl \
1531 -- --id=@t0 create Flow_Table name=main \
1532 -- --id=@t1 create Flow_Table flow-limit=1024 \
1533 -- set bridge br0 'flow_tables={1=@t1,0=@t0}' \
1534 | ${PERL} $srcdir/uuidfilt.pl],
1535 [0], [<0>
1536 <1>
1537 ])
1538 # Check that the configuration was updated.
1539 (head_table main; echo ' table 1 ("table1"):
1540 active=0, lookup=0, matched=0
1541 max_entries=1024
1542 (same matching)
1543
1544 table 2 ("table2"):
1545 active=0, lookup=0, matched=0
1546 max_entries=1000000
1547 (same matching)
1548 '; ditto 3 253) > expout
1549 AT_CHECK([ovs-ofctl dump-tables br0], [0], [expout])
1550 OVS_VSWITCHD_STOP
1551 AT_CLEANUP
1552
1553 dnl In-band and fail-open add "hidden rules" to table 0. These rules shouldn't
1554 dnl be visible to OpenFlow. This test checks that "dump-flows" and
1555 dnl "dump-tables" don't make them visible.
1556 AT_SETUP([ofproto - hidden rules not in table stats])
1557 # Use an IP address for a controller that won't actually exist: we
1558 # want to create in-band rules but we do not want to actually connect
1559 # to a controller (because that could mess about with our test). The
1560 # Class E range 240.0.0.0 - 255.255.255.255 seems like a good choice.
1561 OVS_VSWITCHD_START([set-controller br0 tcp:240.0.0.1:6653])
1562 for i in 1 2 3 4 5; do ovs-appctl time/warp 1000; done
1563
1564 # Check that no hidden flows are visible in OpenFlow.
1565 AT_CHECK([ovs-ofctl dump-flows br0], [0], [NXST_FLOW reply (xid=0x4):
1566 ])
1567
1568 # Check that some hidden flows related to 240.0.0.1 are actually in table 0.
1569 #
1570 # We discard flows that mention table_id because we only want table 0 flows,
1571 # which in OVS is implied by the absence of a table_id.
1572 AT_CHECK([ovs-appctl bridge/dump-flows br0], [0], [stdout])
1573 AT_CHECK([test `grep '240\.0\.0\.1' stdout | grep -v table_id= | wc -l` -gt 0])
1574
1575 # Check that dump-tables doesn't count the hidden flows.
1576 head_table() {
1577 printf 'OFPST_TABLE reply (xid=0x2):
1578 table 0 ("%s"):
1579 active=0, lookup=0, matched=0
1580 max_entries=1000000
1581 matching:
1582 in_port: exact match or wildcard
1583 eth_src: exact match or wildcard
1584 eth_dst: exact match or wildcard
1585 eth_type: exact match or wildcard
1586 vlan_vid: exact match or wildcard
1587 vlan_pcp: exact match or wildcard
1588 ip_src: exact match or wildcard
1589 ip_dst: exact match or wildcard
1590 nw_proto: exact match or wildcard
1591 nw_tos: exact match or wildcard
1592 tcp_src: exact match or wildcard
1593 tcp_dst: exact match or wildcard
1594
1595 ' $1
1596 }
1597 ditto() {
1598 for i in `seq $1 $2`; do
1599 printf ' table %d ("table%d"): ditto\n' $i $i
1600 done
1601 }
1602 (head_table classifier; ditto 1 253) > expout
1603 AT_CHECK([ovs-ofctl dump-tables br0], [0], [expout])
1604 OVS_VSWITCHD_STOP(["/240\.0\.0\.1/d"])
1605 AT_CLEANUP
1606
1607 AT_SETUP([ofproto - flow table configuration (OpenFlow 1.2)])
1608 OVS_VSWITCHD_START
1609 # Check the default configuration.
1610 head_table() {
1611 printf 'OFPST_TABLE reply (OF1.2) (xid=0x2):
1612 table 0 ("%s"):
1613 active=0, lookup=0, matched=0
1614 metadata: match=0xffffffffffffffff write=0xffffffffffffffff
1615 config=controller
1616 max_entries=1000000
1617 instructions (table miss and others):
1618 instructions: apply_actions,clear_actions,write_actions,write_metadata,goto_table
1619 Write-Actions and Apply-Actions features:
1620 actions: output group set_field strip_vlan push_vlan mod_nw_ttl dec_ttl set_mpls_ttl dec_mpls_ttl push_mpls pop_mpls set_queue
1621 supported on Set-Field: metadata in_port_oxm eth_src eth_dst vlan_vid vlan_pcp mpls_label mpls_tc ip_src ip_dst ipv6_src ipv6_dst ipv6_label ip_dscp nw_ecn arp_op arp_spa arp_tpa arp_sha arp_tha tcp_src tcp_dst udp_src udp_dst sctp_src sctp_dst icmp_type icmp_code icmpv6_type icmpv6_code nd_target nd_sll nd_tll
1622 matching:
1623 metadata: exact match or wildcard
1624 in_port_oxm: exact match or wildcard
1625 eth_src: exact match or wildcard
1626 eth_dst: exact match or wildcard
1627 eth_type: exact match or wildcard
1628 vlan_vid: exact match or wildcard
1629 vlan_pcp: exact match or wildcard
1630 mpls_label: exact match or wildcard
1631 mpls_tc: exact match or wildcard
1632 ip_src: exact match or wildcard
1633 ip_dst: exact match or wildcard
1634 ipv6_src: exact match or wildcard
1635 ipv6_dst: exact match or wildcard
1636 ipv6_label: exact match or wildcard
1637 nw_proto: exact match or wildcard
1638 ip_dscp: exact match or wildcard
1639 nw_ecn: exact match or wildcard
1640 arp_op: exact match or wildcard
1641 arp_spa: exact match or wildcard
1642 arp_tpa: exact match or wildcard
1643 arp_sha: exact match or wildcard
1644 arp_tha: exact match or wildcard
1645 tcp_src: exact match or wildcard
1646 tcp_dst: exact match or wildcard
1647 udp_src: exact match or wildcard
1648 udp_dst: exact match or wildcard
1649 sctp_src: exact match or wildcard
1650 sctp_dst: exact match or wildcard
1651 icmp_type: exact match or wildcard
1652 icmp_code: exact match or wildcard
1653 icmpv6_type: exact match or wildcard
1654 icmpv6_code: exact match or wildcard
1655 nd_target: exact match or wildcard
1656 nd_sll: exact match or wildcard
1657 nd_tll: exact match or wildcard
1658
1659 ' $1
1660 }
1661 ditto() {
1662 for i in `seq $1 $2`; do
1663 printf ' table %d ("table%d"): ditto\n' $i $i
1664 done
1665 }
1666 tail_table() {
1667 printf ' table 253 ("table253"):
1668 active=0, lookup=0, matched=0
1669 metadata: match=0xffffffffffffffff write=0xffffffffffffffff
1670 config=controller
1671 max_entries=1000000
1672 instructions (table miss and others):
1673 instructions: apply_actions,clear_actions,write_actions,write_metadata
1674 (same actions)
1675 (same matching)
1676 '
1677 }
1678 (head_table classifier; ditto 1 252; tail_table) > expout
1679 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-tables br0], [0], [expout])
1680 # Change the configuration.
1681 AT_CHECK(
1682 [ovs-vsctl \
1683 -- --id=@t0 create Flow_Table name=main \
1684 -- --id=@t1 create Flow_Table flow-limit=1024 \
1685 -- set bridge br0 'flow_tables={1=@t1,0=@t0}' \
1686 | ${PERL} $srcdir/uuidfilt.pl],
1687 [0], [<0>
1688 <1>
1689 ])
1690 # Check that the configuration was updated.
1691 (head_table main; echo ' table 1 ("table1"):
1692 active=0, lookup=0, matched=0
1693 metadata: match=0xffffffffffffffff write=0xffffffffffffffff
1694 config=controller
1695 max_entries=1024
1696 (same instructions)
1697 (same matching)
1698
1699 table 2 ("table2"):
1700 active=0, lookup=0, matched=0
1701 metadata: match=0xffffffffffffffff write=0xffffffffffffffff
1702 config=controller
1703 max_entries=1000000
1704 (same instructions)
1705 (same matching)
1706 '; ditto 3 252; tail_table) > expout
1707 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-tables br0], [0], [expout])
1708 OVS_VSWITCHD_STOP
1709 AT_CLEANUP
1710
1711 AT_SETUP([ofproto - table features (OpenFlow 1.3)])
1712 OVS_VSWITCHD_START
1713 head_table () {
1714 printf ' table 0 ("%s"):
1715 metadata: match=0xffffffffffffffff write=0xffffffffffffffff
1716 max_entries=1000000
1717 instructions (table miss and others):
1718 next tables: 1-253
1719 instructions: meter,apply_actions,clear_actions,write_actions,write_metadata,goto_table
1720 Write-Actions and Apply-Actions features:
1721 actions: output group set_field strip_vlan push_vlan mod_nw_ttl dec_ttl set_mpls_ttl dec_mpls_ttl push_mpls pop_mpls set_queue
1722 supported on Set-Field: tun_id tun_src tun_dst tun_flags tun_gbp_id tun_gbp_flags tun_metadata0 dnl
1723 tun_metadata1 tun_metadata2 tun_metadata3 tun_metadata4 tun_metadata5 tun_metadata6 tun_metadata7 tun_metadata8 tun_metadata9 tun_metadata10 tun_metadata11 tun_metadata12 tun_metadata13 tun_metadata14 tun_metadata15 tun_metadata16 tun_metadata17 tun_metadata18 tun_metadata19 tun_metadata20 tun_metadata21 tun_metadata22 tun_metadata23 tun_metadata24 tun_metadata25 tun_metadata26 tun_metadata27 tun_metadata28 tun_metadata29 tun_metadata30 tun_metadata31 tun_metadata32 tun_metadata33 tun_metadata34 tun_metadata35 tun_metadata36 tun_metadata37 tun_metadata38 tun_metadata39 tun_metadata40 tun_metadata41 tun_metadata42 tun_metadata43 tun_metadata44 tun_metadata45 tun_metadata46 tun_metadata47 tun_metadata48 tun_metadata49 tun_metadata50 tun_metadata51 tun_metadata52 tun_metadata53 tun_metadata54 tun_metadata55 tun_metadata56 tun_metadata57 tun_metadata58 tun_metadata59 tun_metadata60 tun_metadata61 tun_metadata62 tun_metadata63 dnl
1724 metadata in_port in_port_oxm pkt_mark ct_mark ct_label reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 xreg0 xreg1 xreg2 xreg3 eth_src eth_dst vlan_tci vlan_vid vlan_pcp mpls_label mpls_tc ip_src ip_dst ipv6_src ipv6_dst ipv6_label nw_tos ip_dscp nw_ecn nw_ttl arp_op arp_spa arp_tpa arp_sha arp_tha tcp_src tcp_dst udp_src udp_dst sctp_src sctp_dst icmp_type icmp_code icmpv6_type icmpv6_code nd_target nd_sll nd_tll
1725 matching:
1726 dp_hash: arbitrary mask
1727 recirc_id: exact match or wildcard
1728 conj_id: exact match or wildcard
1729 tun_id: arbitrary mask
1730 tun_src: arbitrary mask
1731 tun_dst: arbitrary mask
1732 tun_flags: arbitrary mask
1733 tun_gbp_id: arbitrary mask
1734 tun_gbp_flags: arbitrary mask
1735 tun_metadata0: arbitrary mask
1736 tun_metadata1: arbitrary mask
1737 tun_metadata2: arbitrary mask
1738 tun_metadata3: arbitrary mask
1739 tun_metadata4: arbitrary mask
1740 tun_metadata5: arbitrary mask
1741 tun_metadata6: arbitrary mask
1742 tun_metadata7: arbitrary mask
1743 tun_metadata8: arbitrary mask
1744 tun_metadata9: arbitrary mask
1745 tun_metadata10: arbitrary mask
1746 tun_metadata11: arbitrary mask
1747 tun_metadata12: arbitrary mask
1748 tun_metadata13: arbitrary mask
1749 tun_metadata14: arbitrary mask
1750 tun_metadata15: arbitrary mask
1751 tun_metadata16: arbitrary mask
1752 tun_metadata17: arbitrary mask
1753 tun_metadata18: arbitrary mask
1754 tun_metadata19: arbitrary mask
1755 tun_metadata20: arbitrary mask
1756 tun_metadata21: arbitrary mask
1757 tun_metadata22: arbitrary mask
1758 tun_metadata23: arbitrary mask
1759 tun_metadata24: arbitrary mask
1760 tun_metadata25: arbitrary mask
1761 tun_metadata26: arbitrary mask
1762 tun_metadata27: arbitrary mask
1763 tun_metadata28: arbitrary mask
1764 tun_metadata29: arbitrary mask
1765 tun_metadata30: arbitrary mask
1766 tun_metadata31: arbitrary mask
1767 tun_metadata32: arbitrary mask
1768 tun_metadata33: arbitrary mask
1769 tun_metadata34: arbitrary mask
1770 tun_metadata35: arbitrary mask
1771 tun_metadata36: arbitrary mask
1772 tun_metadata37: arbitrary mask
1773 tun_metadata38: arbitrary mask
1774 tun_metadata39: arbitrary mask
1775 tun_metadata40: arbitrary mask
1776 tun_metadata41: arbitrary mask
1777 tun_metadata42: arbitrary mask
1778 tun_metadata43: arbitrary mask
1779 tun_metadata44: arbitrary mask
1780 tun_metadata45: arbitrary mask
1781 tun_metadata46: arbitrary mask
1782 tun_metadata47: arbitrary mask
1783 tun_metadata48: arbitrary mask
1784 tun_metadata49: arbitrary mask
1785 tun_metadata50: arbitrary mask
1786 tun_metadata51: arbitrary mask
1787 tun_metadata52: arbitrary mask
1788 tun_metadata53: arbitrary mask
1789 tun_metadata54: arbitrary mask
1790 tun_metadata55: arbitrary mask
1791 tun_metadata56: arbitrary mask
1792 tun_metadata57: arbitrary mask
1793 tun_metadata58: arbitrary mask
1794 tun_metadata59: arbitrary mask
1795 tun_metadata60: arbitrary mask
1796 tun_metadata61: arbitrary mask
1797 tun_metadata62: arbitrary mask
1798 tun_metadata63: arbitrary mask
1799 metadata: arbitrary mask
1800 in_port: exact match or wildcard
1801 in_port_oxm: exact match or wildcard
1802 actset_output: exact match or wildcard
1803 pkt_mark: arbitrary mask
1804 ct_state: arbitrary mask
1805 ct_zone: exact match or wildcard
1806 ct_mark: arbitrary mask
1807 ct_label: arbitrary mask
1808 reg0: arbitrary mask
1809 reg1: arbitrary mask
1810 reg2: arbitrary mask
1811 reg3: arbitrary mask
1812 reg4: arbitrary mask
1813 reg5: arbitrary mask
1814 reg6: arbitrary mask
1815 reg7: arbitrary mask
1816 xreg0: arbitrary mask
1817 xreg1: arbitrary mask
1818 xreg2: arbitrary mask
1819 xreg3: arbitrary mask
1820 eth_src: arbitrary mask
1821 eth_dst: arbitrary mask
1822 eth_type: exact match or wildcard
1823 vlan_tci: arbitrary mask
1824 vlan_vid: arbitrary mask
1825 vlan_pcp: exact match or wildcard
1826 mpls_label: exact match or wildcard
1827 mpls_tc: exact match or wildcard
1828 mpls_bos: exact match or wildcard
1829 ip_src: arbitrary mask
1830 ip_dst: arbitrary mask
1831 ipv6_src: arbitrary mask
1832 ipv6_dst: arbitrary mask
1833 ipv6_label: arbitrary mask
1834 nw_proto: exact match or wildcard
1835 nw_tos: exact match or wildcard
1836 ip_dscp: exact match or wildcard
1837 nw_ecn: exact match or wildcard
1838 nw_ttl: exact match or wildcard
1839 ip_frag: arbitrary mask
1840 arp_op: exact match or wildcard
1841 arp_spa: arbitrary mask
1842 arp_tpa: arbitrary mask
1843 arp_sha: arbitrary mask
1844 arp_tha: arbitrary mask
1845 tcp_src: arbitrary mask
1846 tcp_dst: arbitrary mask
1847 tcp_flags: arbitrary mask
1848 udp_src: arbitrary mask
1849 udp_dst: arbitrary mask
1850 sctp_src: arbitrary mask
1851 sctp_dst: arbitrary mask
1852 icmp_type: exact match or wildcard
1853 icmp_code: exact match or wildcard
1854 icmpv6_type: exact match or wildcard
1855 icmpv6_code: exact match or wildcard
1856 nd_target: arbitrary mask
1857 nd_sll: arbitrary mask
1858 nd_tll: arbitrary mask
1859
1860 ' $1
1861 }
1862 ditto() {
1863 printf ' table %d ("%s"):
1864 metadata: match=0xffffffffffffffff write=0xffffffffffffffff
1865 max_entries=%d
1866 instructions (table miss and others):
1867 next tables: %d-253
1868 (same instructions)
1869 (same actions)
1870 (same matching)
1871
1872 ' $1 $2 $3 `expr $1 + 1`
1873 }
1874 tail_tables() {
1875 echo ' table 252 ("table252"):
1876 metadata: match=0xffffffffffffffff write=0xffffffffffffffff
1877 max_entries=1000000
1878 instructions (table miss and others):
1879 next tables: 253
1880 (same instructions)
1881 (same actions)
1882 (same matching)
1883
1884 table 253 ("table253"):
1885 metadata: match=0xffffffffffffffff write=0xffffffffffffffff
1886 max_entries=1000000
1887 instructions (table miss and others):
1888 instructions: meter,apply_actions,clear_actions,write_actions,write_metadata
1889 (same actions)
1890 (same matching)
1891 '
1892 }
1893 (head_table classifier
1894 for i in `seq 1 251`; do
1895 ditto $i table$i 1000000
1896 done
1897 tail_tables) > expout
1898 AT_CHECK([ovs-ofctl -O OpenFlow13 dump-table-features br0], [0], [expout])
1899 # Change the configuration.
1900 AT_CHECK(
1901 [ovs-vsctl \
1902 -- --id=@t0 create Flow_Table name=main \
1903 -- --id=@t1 create Flow_Table flow-limit=1024 \
1904 -- set bridge br0 'flow_tables={1=@t1,0=@t0}' \
1905 | ${PERL} $srcdir/uuidfilt.pl],
1906 [0], [<0>
1907 <1>
1908 ])
1909 # Check that the configuration was updated.
1910 (head_table main
1911 ditto 1 table1 1024
1912 for i in `seq 2 251`; do
1913 ditto $i table$i 1000000
1914 done
1915 tail_tables) > expout
1916 AT_CHECK([ovs-ofctl -O OpenFlow13 dump-table-features br0], [0], [expout])
1917 OVS_VSWITCHD_STOP
1918 AT_CLEANUP
1919
1920 AT_SETUP([ofproto - table description (OpenFlow 1.4)])
1921 OVS_VSWITCHD_START
1922 (x=0
1923 while test $x -lt 254; do
1924 y=`expr $x + 1`
1925 echo " table $x:
1926 eviction=off eviction_flags=OTHER|IMPORTANCE|LIFETIME"
1927 x=$y
1928 done) > expout
1929 AT_CHECK([ovs-ofctl -O OpenFlow14 dump-table-desc br0 | sed '/^$/d
1930 /^OFPST_TABLE_DESC/d'], [0], [expout])
1931
1932 # Change the configuration.
1933 AT_CHECK([ovs-ofctl -O Openflow14 mod-table br0 0 evict])
1934 # Check that the configuration was updated.
1935 mv expout orig-expout
1936 sed -e '2s/eviction=off/eviction=on/' <orig-expout > expout
1937 AT_CHECK([ovs-ofctl -O OpenFlow14 dump-table-desc br0 | sed '/^$/d
1938 /^OFPST_TABLE_DESC/d'], [0], [expout])
1939
1940 AT_CHECK([ovs-ofctl -O Openflow14 mod-table br0 0 vacancy:20,80])
1941 # Check that the configuration was updated.
1942 mv expout orig-expout
1943 sed -e '3s/vacancy=off/vacancy=on vacancy_down=20% vacancy_up=80% vacancy=0%/' <orig-expout > expout
1944 AT_CHECK([ovs-ofctl -O OpenFlow14 dump-table-desc br0 | sed '/^$/d
1945 /^OFPST_TABLE_DESC/d'], [0], [expout])
1946 OVS_VSWITCHD_STOP
1947 AT_CLEANUP
1948
1949 AT_SETUP([ofproto - hard limits on flow table size (OpenFlow 1.0)])
1950 OVS_VSWITCHD_START
1951 # Configure a maximum of 4 flows.
1952 AT_CHECK(
1953 [ovs-vsctl \
1954 -- --id=@t0 create Flow_Table flow-limit=4 \
1955 -- set bridge br0 flow_tables:0=@t0 \
1956 | ${PERL} $srcdir/uuidfilt.pl],
1957 [0], [<0>
1958 ])
1959 # Add 4 flows.
1960 for in_port in 1 2 3 4; do
1961 ovs-ofctl add-flow br0 in_port=$in_port,actions=drop
1962 done
1963 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1964 in_port=1 actions=drop
1965 in_port=2 actions=drop
1966 in_port=3 actions=drop
1967 in_port=4 actions=drop
1968 NXST_FLOW reply:
1969 ])
1970 # Adding another flow will be refused.
1971 AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop], [1], [], [stderr])
1972 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
1973 [OFPT_ERROR: OFPFMFC_TABLE_FULL
1974 ])
1975 # Also a mod-flow that would add a flow will be refused.
1976 AT_CHECK([ovs-ofctl mod-flows br0 in_port=5,actions=drop], [1], [], [stderr])
1977 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
1978 [OFPT_ERROR: OFPFMFC_TABLE_FULL
1979 ])
1980 # Replacing or modifying an existing flow is allowed.
1981 AT_CHECK([ovs-ofctl add-flow br0 in_port=4,actions=normal])
1982 AT_CHECK([ovs-ofctl mod-flows br0 in_port=3,actions=output:1])
1983 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1984 in_port=1 actions=drop
1985 in_port=2 actions=drop
1986 in_port=3 actions=output:1
1987 in_port=4 actions=NORMAL
1988 NXST_FLOW reply:
1989 ])
1990 OVS_VSWITCHD_STOP
1991 AT_CLEANUP
1992
1993 AT_SETUP([ofproto - hard limits on flow table size (OpenFlow 1.2)])
1994 OVS_VSWITCHD_START
1995 # Configure a maximum of 4 flows.
1996 AT_CHECK(
1997 [ovs-vsctl \
1998 -- --id=@t0 create Flow_Table flow-limit=4 \
1999 -- set bridge br0 flow_tables:0=@t0 \
2000 | ${PERL} $srcdir/uuidfilt.pl],
2001 [0], [<0>
2002 ])
2003 # Add 4 flows.
2004 for in_port in 1 2 3 4; do
2005 ovs-ofctl -O OpenFlow12 add-flow br0 in_port=$in_port,actions=drop
2006 done
2007 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2008 in_port=1 actions=drop
2009 in_port=2 actions=drop
2010 in_port=3 actions=drop
2011 in_port=4 actions=drop
2012 OFPST_FLOW reply (OF1.2):
2013 ])
2014 # Adding another flow will be refused.
2015 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=5,actions=drop], [1], [], [stderr])
2016 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
2017 [OFPT_ERROR (OF1.2): OFPFMFC_TABLE_FULL
2018 ])
2019 # Replacing or modifying an existing flow is allowed.
2020 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=4,actions=normal])
2021 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 in_port=3,actions=output:1])
2022 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2023 in_port=1 actions=drop
2024 in_port=2 actions=drop
2025 in_port=3 actions=output:1
2026 in_port=4 actions=NORMAL
2027 OFPST_FLOW reply (OF1.2):
2028 ])
2029 OVS_VSWITCHD_STOP
2030 AT_CLEANUP
2031
2032 AT_SETUP([ofproto - eviction upon table overflow (OpenFlow 1.0)])
2033 OVS_VSWITCHD_START
2034 # Configure a maximum of 4 flows.
2035 AT_CHECK(
2036 [ovs-vsctl \
2037 -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
2038 -- set bridge br0 flow_tables:0=@t0 \
2039 | ${PERL} $srcdir/uuidfilt.pl],
2040 [0], [<0>
2041 ])
2042 # Add 4 flows.
2043 for in_port in 4 3 2 1; do
2044 ovs-ofctl add-flow br0 idle_timeout=${in_port}0,in_port=$in_port,actions=drop
2045 done
2046 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2047 idle_timeout=10, in_port=1 actions=drop
2048 idle_timeout=20, in_port=2 actions=drop
2049 idle_timeout=30, in_port=3 actions=drop
2050 idle_timeout=40, in_port=4 actions=drop
2051 NXST_FLOW reply:
2052 ])
2053 # Adding another flow will cause the one that expires soonest to be evicted.
2054 AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop])
2055 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2056 idle_timeout=20, in_port=2 actions=drop
2057 idle_timeout=30, in_port=3 actions=drop
2058 idle_timeout=40, in_port=4 actions=drop
2059 in_port=5 actions=drop
2060 NXST_FLOW reply:
2061 ])
2062 # A mod-flow that adds a flow also causes eviction, but replacing or
2063 # modifying an existing flow doesn't.
2064 AT_CHECK([ovs-ofctl mod-flows br0 in_port=6,actions=drop])
2065 AT_CHECK([ovs-ofctl add-flow br0 in_port=4,actions=normal])
2066 AT_CHECK([ovs-ofctl mod-flows br0 in_port=3,actions=output:1])
2067 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2068 idle_timeout=30, in_port=3 actions=output:1
2069 in_port=4 actions=NORMAL
2070 in_port=5 actions=drop
2071 in_port=6 actions=drop
2072 NXST_FLOW reply:
2073 ])
2074 # Flows with no timeouts at all cannot be evicted.
2075 AT_CHECK([ovs-ofctl add-flow br0 in_port=7,actions=normal])
2076 AT_CHECK([ovs-ofctl add-flow br0 in_port=8,actions=drop], [1], [], [stderr])
2077 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
2078 [OFPT_ERROR: OFPFMFC_TABLE_FULL
2079 ])
2080 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2081 in_port=4 actions=NORMAL
2082 in_port=5 actions=drop
2083 in_port=6 actions=drop
2084 in_port=7 actions=NORMAL
2085 NXST_FLOW reply:
2086 ])
2087 OVS_VSWITCHD_STOP
2088 AT_CLEANUP
2089
2090 AT_SETUP([ofproto - eviction upon table overflow (OpenFlow 1.2)])
2091 OVS_VSWITCHD_START
2092 # Configure a maximum of 4 flows.
2093 AT_CHECK(
2094 [ovs-vsctl \
2095 -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
2096 -- set bridge br0 flow_tables:0=@t0 \
2097 | ${PERL} $srcdir/uuidfilt.pl],
2098 [0], [<0>
2099 ])
2100 # Add 4 flows.
2101 for in_port in 4 3 2 1; do
2102 ovs-ofctl -O OpenFlow12 add-flow br0 idle_timeout=${in_port}0,in_port=$in_port,actions=drop
2103 done
2104 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2105 idle_timeout=10, in_port=1 actions=drop
2106 idle_timeout=20, in_port=2 actions=drop
2107 idle_timeout=30, in_port=3 actions=drop
2108 idle_timeout=40, in_port=4 actions=drop
2109 OFPST_FLOW reply (OF1.2):
2110 ])
2111 # Adding another flow will cause the one that expires soonest to be evicted.
2112 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=5,actions=drop])
2113 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2114 idle_timeout=20, in_port=2 actions=drop
2115 idle_timeout=30, in_port=3 actions=drop
2116 idle_timeout=40, in_port=4 actions=drop
2117 in_port=5 actions=drop
2118 OFPST_FLOW reply (OF1.2):
2119 ])
2120 # In OpenFlow 1.2 a mod-flow does not ever add a flow and thus
2121 # has no effect on eviction
2122 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 in_port=6,actions=drop])
2123 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=4,actions=normal])
2124 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 in_port=3,actions=output:1])
2125 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2126 idle_timeout=20, in_port=2 actions=drop
2127 idle_timeout=30, in_port=3 actions=output:1
2128 in_port=4 actions=NORMAL
2129 in_port=5 actions=drop
2130 OFPST_FLOW reply (OF1.2):
2131 ])
2132 # Flows with no timeouts at all cannot be evicted.
2133 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=6,actions=drop])
2134 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=7,actions=normal])
2135 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=8,actions=drop], [1], [], [stderr])
2136 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
2137 [OFPT_ERROR (OF1.2): OFPFMFC_TABLE_FULL
2138 ])
2139 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2140 in_port=4 actions=NORMAL
2141 in_port=5 actions=drop
2142 in_port=6 actions=drop
2143 in_port=7 actions=NORMAL
2144 OFPST_FLOW reply (OF1.2):
2145 ])
2146 OVS_VSWITCHD_STOP
2147 AT_CLEANUP
2148
2149 AT_SETUP([ofproto - eviction using importance upon table overflow (OpenFlow 1.4)])
2150 OVS_VSWITCHD_START
2151 # Configure a maximum of 4 flows.
2152 AT_CHECK(
2153 [ovs-vsctl \
2154 -- --id=@t0 create Flow_Table name=evict flow-limit=4 \
2155 -- set bridge br0 flow_tables:0=@t0 \
2156 | ${PERL} $srcdir/uuidfilt.pl],
2157 [0], [<0>
2158 ])
2159 # Use mod-table to turn on eviction just to demonstrate that it works.
2160 AT_CHECK([ovs-ofctl -O OpenFlow14 mod-table br0 0 evict])
2161 # Add 4 flows.
2162 for in_port in 4 3 2 1; do
2163 ovs-ofctl -O Openflow14 add-flow br0 importance=$((in_port + 30)),priority=$((in_port + 5)),hard_timeout=$((in_port + 500)),actions=drop
2164 done
2165 AT_CHECK([ovs-ofctl -O Openflow14 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2166 hard_timeout=501, importance=31, priority=6 actions=drop
2167 hard_timeout=502, importance=32, priority=7 actions=drop
2168 hard_timeout=503, importance=33, priority=8 actions=drop
2169 hard_timeout=504, importance=34, priority=9 actions=drop
2170 OFPST_FLOW reply (OF1.4):
2171 ])
2172 # Adding another flow will cause the one with lowest importance to be evicted.
2173 AT_CHECK([ovs-ofctl -O Openflow14 add-flow br0 hard_timeout=505,importance=35,priority=10,in_port=2,actions=drop])
2174 AT_CHECK([ovs-ofctl -O Openflow14 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2175 hard_timeout=502, importance=32, priority=7 actions=drop
2176 hard_timeout=503, importance=33, priority=8 actions=drop
2177 hard_timeout=504, importance=34, priority=9 actions=drop
2178 hard_timeout=505, importance=35, priority=10,in_port=2 actions=drop
2179 OFPST_FLOW reply (OF1.4):
2180 ])
2181 # Disable the Eviction configuration.
2182 AT_CHECK([ovs-ofctl -O OpenFlow14 mod-table br0 0 noevict])
2183 # Adding another flow will cause the system to give error for FULL TABLE.
2184 AT_CHECK([ovs-ofctl -O Openflow14 add-flow br0 hard_timeout=506,importance=36,priority=11,actions=drop],[1], [], [stderr])
2185 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
2186 [OFPT_ERROR (OF1.4): OFPFMFC_TABLE_FULL
2187 ])
2188 #Dump flows. It should show only the old values
2189 AT_CHECK([ovs-ofctl -O Openflow14 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2190 hard_timeout=502, importance=32, priority=7 actions=drop
2191 hard_timeout=503, importance=33, priority=8 actions=drop
2192 hard_timeout=504, importance=34, priority=9 actions=drop
2193 hard_timeout=505, importance=35, priority=10,in_port=2 actions=drop
2194 OFPST_FLOW reply (OF1.4):
2195 ])
2196 # mod-flow that would modify a flow will be done successfully.
2197 AT_CHECK([ovs-ofctl -O Openflow14 mod-flows br0 in_port=2,actions=NORMAL])
2198 AT_CHECK([ovs-ofctl -O Openflow14 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2199 hard_timeout=502, importance=32, priority=7 actions=drop
2200 hard_timeout=503, importance=33, priority=8 actions=drop
2201 hard_timeout=504, importance=34, priority=9 actions=drop
2202 hard_timeout=505, importance=35, priority=10,in_port=2 actions=NORMAL
2203 OFPST_FLOW reply (OF1.4):
2204 ])
2205 # Also a mod-flow that would add a flow will be refused.
2206 AT_CHECK([ovs-ofctl mod-flows br0 in_port=5,actions=drop], [1], [], [stderr])
2207 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
2208 [OFPT_ERROR: OFPFMFC_TABLE_FULL
2209 ])
2210 OVS_VSWITCHD_STOP
2211 AT_CLEANUP
2212
2213 AT_SETUP([ofproto - eviction upon table overflow, with fairness (OpenFlow 1.0)])
2214 OVS_VSWITCHD_START
2215 # Configure a maximum of 4 flows.
2216 AT_CHECK(
2217 [ovs-vsctl \
2218 -- --id=@t0 create Flow_Table name=evict flow-limit=4 \
2219 overflow-policy=evict \
2220 groups='"NXM_OF_IN_PORT[[]]"' \
2221 -- set bridge br0 flow_tables:0=@t0 \
2222 | ${PERL} $srcdir/uuidfilt.pl],
2223 [0], [<0>
2224 ])
2225 # Add 4 flows.
2226 ovs-ofctl add-flows br0 - <<EOF
2227 idle_timeout=10 in_port=2 dl_src=00:44:55:66:77:88 actions=drop
2228 idle_timeout=20 in_port=1 dl_src=00:11:22:33:44:55 actions=drop
2229 idle_timeout=30 in_port=1 dl_src=00:22:33:44:55:66 actions=drop
2230 idle_timeout=40 in_port=1 dl_src=00:33:44:55:66:77 actions=drop
2231 EOF
2232 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2233 idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
2234 idle_timeout=20, in_port=1,dl_src=00:11:22:33:44:55 actions=drop
2235 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2236 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2237 NXST_FLOW reply:
2238 ])
2239 # Adding another flow will cause the one that expires soonest within
2240 # the largest group (those with in_port=1) to be evicted. In this
2241 # case this is not the same as the one that expires soonest overall
2242 # (which is what makes the test interesting):
2243 AT_CHECK([ovs-ofctl add-flow br0 in_port=2,dl_src=00:55:66:77:88:99,actions=drop])
2244 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2245 idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
2246 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2247 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2248 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2249 NXST_FLOW reply:
2250 ])
2251 # Enlarge the flow limit, change the eviction policy back to strictly
2252 # based on expiration, and and add some flows.
2253 AT_CHECK([ovs-vsctl set Flow_Table evict groups='[[]]' flow-limit=7])
2254 ovs-ofctl add-flows br0 - <<EOF
2255 idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=drop
2256 idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=drop
2257 idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=drop
2258 EOF
2259 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2260 idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
2261 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2262 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2263 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
2264 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
2265 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
2266 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2267 NXST_FLOW reply:
2268 ])
2269 # Adding another flow will cause the one that expires soonest overall
2270 # to be evicted.
2271 AT_CHECK([ovs-ofctl add-flow br0 'idle_timeout=80 in_port=2 dl_src=00:99:aa:bb:cc:dd actions=drop'])
2272 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2273 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2274 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2275 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
2276 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
2277 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
2278 idle_timeout=80, in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
2279 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2280 NXST_FLOW reply:
2281 ])
2282 # Reducing the flow limit also causes the flows that expire soonest
2283 # overall to be evicted.
2284 AT_CHECK([ovs-vsctl set Flow_Table evict flow-limit=4])
2285 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2286 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
2287 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
2288 idle_timeout=80, in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
2289 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2290 NXST_FLOW reply:
2291 ])
2292 OVS_VSWITCHD_STOP
2293 AT_CLEANUP
2294
2295 AT_SETUP([ofproto - eviction upon table overflow, with fairness (OpenFlow 1.2)])
2296 OVS_VSWITCHD_START
2297 # Configure a maximum of 4 flows.
2298 AT_CHECK(
2299 [ovs-vsctl \
2300 -- --id=@t0 create Flow_Table name=evict flow-limit=4 \
2301 overflow-policy=evict \
2302 groups='"NXM_OF_IN_PORT[[]]"' \
2303 -- set bridge br0 flow_tables:0=@t0 \
2304 | ${PERL} $srcdir/uuidfilt.pl],
2305 [0], [<0>
2306 ])
2307 # Add 4 flows.
2308 ovs-ofctl -O OpenFlow12 add-flows br0 - <<EOF
2309 idle_timeout=10 in_port=2 dl_src=00:44:55:66:77:88 actions=drop
2310 idle_timeout=20 in_port=1 dl_src=00:11:22:33:44:55 actions=drop
2311 idle_timeout=30 in_port=1 dl_src=00:22:33:44:55:66 actions=drop
2312 idle_timeout=40 in_port=1 dl_src=00:33:44:55:66:77 actions=drop
2313 EOF
2314 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2315 idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
2316 idle_timeout=20, in_port=1,dl_src=00:11:22:33:44:55 actions=drop
2317 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2318 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2319 OFPST_FLOW reply (OF1.2):
2320 ])
2321 # Adding another flow will cause the one that expires soonest within
2322 # the largest group (those with in_port=1) to be evicted. In this
2323 # case this is not the same as the one that expires soonest overall
2324 # (which is what makes the test interesting):
2325 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=2,dl_src=00:55:66:77:88:99,actions=drop])
2326 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2327 idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
2328 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2329 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2330 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2331 OFPST_FLOW reply (OF1.2):
2332 ])
2333 # Enlarge the flow limit, change the eviction policy back to strictly
2334 # based on expiration, and and add some flows.
2335 AT_CHECK([ovs-vsctl set Flow_Table evict groups='[[]]' flow-limit=7])
2336 ovs-ofctl -O OpenFlow12 add-flows br0 - <<EOF
2337 idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=drop
2338 idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=drop
2339 idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=drop
2340 EOF
2341 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2342 idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
2343 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2344 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2345 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
2346 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
2347 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
2348 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2349 OFPST_FLOW reply (OF1.2):
2350 ])
2351 # Adding another flow will cause the one that expires soonest overall
2352 # to be evicted.
2353 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 'idle_timeout=80 in_port=2 dl_src=00:99:aa:bb:cc:dd actions=drop'])
2354 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2355 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2356 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2357 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
2358 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
2359 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
2360 idle_timeout=80, in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
2361 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2362 OFPST_FLOW reply (OF1.2):
2363 ])
2364 # Reducing the flow limit also causes the flows that expire soonest
2365 # overall to be evicted.
2366 AT_CHECK([ovs-vsctl set Flow_Table evict flow-limit=4])
2367 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2368 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
2369 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
2370 idle_timeout=80, in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
2371 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2372 OFPST_FLOW reply (OF1.2):
2373 ])
2374 OVS_VSWITCHD_STOP
2375 AT_CLEANUP
2376
2377 AT_SETUP([ofproto - eviction upon table overflow, with modified hard timeout])
2378 OVS_VSWITCHD_START
2379 # Configure a maximum of 4 flows.
2380 AT_CHECK(
2381 [ovs-vsctl \
2382 -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
2383 -- set bridge br0 flow_tables:0=@t0 \
2384 | ${PERL} $srcdir/uuidfilt.pl],
2385 [0], [<0>
2386 ])
2387 ovs-appctl time/stop
2388 # Add 4 flows.
2389 for in_port in 4 3 2 1; do
2390 ovs-ofctl add-flow br0 hard_timeout=$((10 + in_port * 3)),in_port=$in_port,actions=drop
2391 done
2392 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2393 hard_timeout=13, in_port=1 actions=drop
2394 hard_timeout=16, in_port=2 actions=drop
2395 hard_timeout=19, in_port=3 actions=drop
2396 hard_timeout=22, in_port=4 actions=drop
2397 NXST_FLOW reply:
2398 ])
2399 # Sleep and modify the one that expires soonest
2400 ovs-appctl time/warp 5000
2401 AT_CHECK([ovs-ofctl mod-flows br0 in_port=1,actions=drop])
2402 # At this point the table would looks like:
2403 # in_port seconds to expire
2404 # 1 13
2405 # 2 11
2406 # 3 14
2407 # 4 17
2408 ovs-appctl time/warp 2000
2409 # Adding another flow will cause the one that expires soonest to be evicted.
2410 AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop])
2411 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2412 hard_timeout=13, in_port=1 actions=drop
2413 hard_timeout=19, in_port=3 actions=drop
2414 hard_timeout=22, in_port=4 actions=drop
2415 in_port=5 actions=drop
2416 NXST_FLOW reply:
2417 ])
2418 OVS_VSWITCHD_STOP
2419 AT_CLEANUP
2420
2421 AT_SETUP([ofproto - eviction upon table overflow, with modified idle timeout])
2422 OVS_VSWITCHD_START([add-port br0 p1 -- set interface p1 type=dummy ofport_request=1])
2423 # Configure a maximum of 4 flows.
2424 AT_CHECK(
2425 [ovs-vsctl \
2426 -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
2427 -- set bridge br0 flow_tables:0=@t0 \
2428 | ${PERL} $srcdir/uuidfilt.pl],
2429 [0], [<0>
2430 ])
2431 # Add 4 flows.
2432 for in_port in 4 3 2 1; do
2433 ovs-ofctl add-flow br0 idle_timeout=$((10 + in_port * 3)),in_port=$in_port,actions=drop
2434 done
2435 ovs-appctl time/stop
2436 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2437 idle_timeout=13, in_port=1 actions=drop
2438 idle_timeout=16, in_port=2 actions=drop
2439 idle_timeout=19, in_port=3 actions=drop
2440 idle_timeout=22, in_port=4 actions=drop
2441 NXST_FLOW reply:
2442 ])
2443 # Sleep and receive on the flow that expires soonest
2444 ovs-appctl time/warp 5000
2445 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1)'])
2446 # At this point the table would looks like:
2447 # in_port seconds to expire
2448 # 1 13
2449 # 2 11
2450 # 3 14
2451 # 4 17
2452 ovs-appctl time/warp 2000
2453 # Adding another flow will cause the one that expires soonest to be evicted.
2454 AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop])
2455 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2456 idle_timeout=19, in_port=3 actions=drop
2457 idle_timeout=22, in_port=4 actions=drop
2458 in_port=5 actions=drop
2459 n_packets=1, n_bytes=60, idle_timeout=13, in_port=1 actions=drop
2460 NXST_FLOW reply:
2461 ])
2462 OVS_VSWITCHD_STOP
2463 AT_CLEANUP
2464
2465 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.0)])
2466 OVS_VSWITCHD_START
2467 AT_CHECK([ovs-ofctl -P openflow10 monitor br0 --detach --no-chdir --pidfile])
2468 check_async () {
2469 printf '\n\n--- check_async %d ---\n\n\n' $1
2470 shift
2471
2472 ovs-appctl -t ovs-ofctl ofctl/barrier
2473 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2474 : > expout
2475
2476 # OFPT_PACKET_IN, OFPR_ACTION (controller_id=0)
2477 ovs-ofctl -v packet-out br0 controller controller '0001020304050010203040501234'
2478 if test X"$1" = X"OFPR_ACTION"; then shift;
2479 echo >>expout "OFPT_PACKET_IN: total_len=14 in_port=CONTROLLER (via action) data_len=14 (unbuffered)
2480 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2481 fi
2482
2483 # OFPT_PACKET_IN, OFPR_NO_MATCH (controller_id=123)
2484 ovs-ofctl -v packet-out br0 controller 'controller(reason=no_match,id=123)' '0001020304050010203040501234'
2485 if test X"$1" = X"OFPR_NO_MATCH"; then shift;
2486 echo >>expout "OFPT_PACKET_IN: total_len=14 in_port=CONTROLLER (via no_match) data_len=14 (unbuffered)
2487 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2488 fi
2489
2490 # OFPT_PACKET_IN, OFPR_INVALID_TTL (controller_id=0)
2491 ovs-ofctl packet-out br0 controller dec_ttl '002583dfb4000026b98cb0f908004500003eb7e200000011339bac11370dac100002d7730035002b8f6d86fb0100000100000000000006626c702d7873066e696369726103636f6d00000f00'
2492 if test X"$1" = X"OFPR_INVALID_TTL"; then shift;
2493 echo >>expout "OFPT_PACKET_IN: total_len=76 in_port=CONTROLLER (via invalid_ttl) data_len=76 (unbuffered)
2494 udp,vlan_tci=0x0000,dl_src=00:26:b9:8c:b0:f9,dl_dst=00:25:83:df:b4:00,nw_src=172.17.55.13,nw_dst=172.16.0.2,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=55155,tp_dst=53 udp_csum:8f6d"
2495 fi
2496
2497 # OFPT_PORT_STATUS, OFPPR_ADD
2498 ovs-vsctl add-port br0 test -- set Interface test type=dummy ofport_request=1
2499 if test X"$1" = X"OFPPR_ADD"; then shift;
2500 echo >>expout "OFPT_PORT_STATUS: ADD: 1(test): addr:aa:55:aa:55:00:0x
2501 config: PORT_DOWN
2502 state: LINK_DOWN
2503 speed: 0 Mbps now, 0 Mbps max"
2504 fi
2505
2506 # OFPT_PORT_STATUS, OFPPR_DELETE
2507 ovs-vsctl del-port br0 test
2508 if test X"$1" = X"OFPPR_DELETE"; then shift;
2509 echo >>expout "OFPT_PORT_STATUS: DEL: 1(test): addr:aa:55:aa:55:00:0x
2510 config: PORT_DOWN
2511 state: LINK_DOWN
2512 speed: 0 Mbps now, 0 Mbps max"
2513 fi
2514
2515 # OFPT_FLOW_REMOVED, OFPRR_DELETE
2516 ovs-ofctl add-flow br0 send_flow_rem,actions=drop
2517 ovs-ofctl --strict del-flows br0 ''
2518 if test X"$1" = X"OFPRR_DELETE"; then shift;
2519 echo >>expout "OFPT_FLOW_REMOVED: reason=delete"
2520 fi
2521 AT_FAIL_IF([test X"$1" != X])
2522
2523 ovs-appctl -t ovs-ofctl ofctl/barrier
2524 echo >>expout "OFPT_BARRIER_REPLY:"
2525
2526 AT_CHECK(
2527 [[sed '
2528 s/ (xid=0x[0-9a-fA-F]*)//
2529 s/ *duration.*//
2530 s/00:0.$/00:0x/' < monitor.log]],
2531 [0], [expout])
2532 }
2533
2534 # It's a service connection so initially there should be no async messages.
2535 check_async 1
2536
2537 # Set miss_send_len to 128, turning on packet-ins for our service connection.
2538 ovs-appctl -t ovs-ofctl ofctl/send 0109000c0123456700000080
2539 check_async 2 OFPR_ACTION OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
2540
2541 # Set miss_send_len to 128 and enable invalid_ttl.
2542 ovs-appctl -t ovs-ofctl ofctl/send 0109000c0123456700040080
2543 check_async 3 OFPR_ACTION OFPR_INVALID_TTL OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
2544
2545 # Become slave, which should disable everything except port status.
2546 ovs-appctl -t ovs-ofctl ofctl/send 0104001400000002000023200000000a00000002
2547 check_async 4 OFPPR_ADD OFPPR_DELETE
2548
2549 # Use NXT_SET_ASYNC_CONFIG to enable a patchwork of asynchronous messages.
2550 ovs-appctl -t ovs-ofctl ofctl/send 01040028000000020000232000000013000000020000000500000005000000020000000200000005
2551 check_async 5 OFPR_INVALID_TTL OFPPR_DELETE OFPRR_DELETE
2552
2553 # Set controller ID 123.
2554 ovs-appctl -t ovs-ofctl ofctl/send 01040018000000030000232000000014000000000000007b
2555 check_async 6 OFPR_NO_MATCH OFPPR_DELETE OFPRR_DELETE
2556
2557 # Restore controller ID 0.
2558 ovs-appctl -t ovs-ofctl ofctl/send 010400180000000300002320000000140000000000000000
2559
2560 # Become master.
2561 ovs-appctl -t ovs-ofctl ofctl/send 0104001400000002000023200000000a00000001
2562 check_async 7 OFPR_ACTION OFPPR_ADD
2563
2564 ovs-appctl -t ovs-ofctl exit
2565 OVS_VSWITCHD_STOP
2566 AT_CLEANUP
2567
2568 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.2)])
2569 OVS_VSWITCHD_START
2570 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile])
2571 check_async () {
2572 printf '\n\n--- check_async %d ---\n\n\n' $1
2573 INDEX=$1
2574 shift
2575
2576 ovs-appctl -t ovs-ofctl ofctl/barrier
2577 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2578 : > expout
2579
2580 # OFPT_PACKET_IN, OFPR_ACTION (controller_id=0)
2581 ovs-ofctl -O OpenFlow12 -v packet-out br0 none controller '0001020304050010203040501234'
2582 if test X"$1" = X"OFPR_ACTION"; then shift;
2583 echo >>expout "OFPT_PACKET_IN (OF1.2): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
2584 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2585 fi
2586
2587 # OFPT_PACKET_IN, OFPR_NO_MATCH (controller_id=123)
2588 ovs-ofctl -O OpenFlow12 -v packet-out br0 none 'controller(reason=no_match,id=123)' '0001020304050010203040501234'
2589 if test X"$1" = X"OFPR_NO_MATCH"; then shift;
2590 echo >>expout "OFPT_PACKET_IN (OF1.2): total_len=14 in_port=ANY (via no_match) data_len=14 (unbuffered)
2591 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2592 fi
2593
2594 # OFPT_PACKET_IN, OFPR_INVALID_TTL (controller_id=0)
2595 ovs-ofctl -O OpenFlow12 packet-out br0 none dec_ttl '002583dfb4000026b98cb0f908004500003eb7e200000011339bac11370dac100002d7730035002b8f6d86fb0100000100000000000006626c702d7873066e696369726103636f6d00000f00'
2596 if test X"$1" = X"OFPR_INVALID_TTL"; then shift;
2597 echo >>expout "OFPT_PACKET_IN (OF1.2): total_len=76 in_port=ANY (via invalid_ttl) data_len=76 (unbuffered)
2598 udp,vlan_tci=0x0000,dl_src=00:26:b9:8c:b0:f9,dl_dst=00:25:83:df:b4:00,nw_src=172.17.55.13,nw_dst=172.16.0.2,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=55155,tp_dst=53 udp_csum:8f6d"
2599 fi
2600
2601 # OFPT_PORT_STATUS, OFPPR_ADD
2602 ovs-vsctl add-port br0 test -- set Interface test type=dummy
2603 if test X"$1" = X"OFPPR_ADD"; then shift;
2604 echo >>expout "OFPT_PORT_STATUS (OF1.2): ADD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2605 config: PORT_DOWN
2606 state: LINK_DOWN
2607 speed: 0 Mbps now, 0 Mbps max"
2608 fi
2609
2610 # OFPT_PORT_STATUS, OFPPR_DELETE
2611 ovs-vsctl del-port br0 test
2612 if test X"$1" = X"OFPPR_DELETE"; then shift;
2613 echo >>expout "OFPT_PORT_STATUS (OF1.2): DEL: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2614 config: PORT_DOWN
2615 state: LINK_DOWN
2616 speed: 0 Mbps now, 0 Mbps max"
2617 fi
2618
2619 # OFPT_FLOW_REMOVED, OFPRR_DELETE
2620 ovs-ofctl -O OpenFlow12 add-flow br0 send_flow_rem,actions=drop
2621 ovs-ofctl -O OpenFlow12 --strict del-flows br0 ''
2622 if test X"$1" = X"OFPRR_DELETE"; then shift;
2623 echo >>expout "OFPT_FLOW_REMOVED (OF1.2): reason=delete table_id=0"
2624 fi
2625 AT_FAIL_IF([test X"$1" != X])
2626
2627 sleep 1
2628
2629 AT_CHECK(
2630 [[sed '
2631 s/ (xid=0x[0-9a-fA-F]*)//
2632 s/ *duration.*//
2633 s/00:0.$/00:0x/' < monitor.log]],
2634 [0], [expout])
2635 }
2636
2637 # It's a service connection so initially there should be no async messages.
2638 check_async 1
2639
2640 # Set miss_send_len to 128, turning on packet-ins for our service connection.
2641 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700000080
2642 check_async 2 OFPR_ACTION OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
2643
2644 # Set miss_send_len to 128 and enable invalid_ttl.
2645 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700040080
2646 check_async 3 OFPR_ACTION OFPR_INVALID_TTL OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
2647
2648 # Become slave (OF 1.2), which should disable everything except port status.
2649 ovs-appctl -t ovs-ofctl ofctl/send 031800180000000200000003000000000000000000000001
2650 check_async 4 OFPPR_ADD OFPPR_DELETE
2651
2652 # Use NXT_SET_ASYNC_CONFIG to enable a patchwork of asynchronous messages.
2653 ovs-appctl -t ovs-ofctl ofctl/send 03040028000000020000232000000013000000020000000500000005000000020000000200000005
2654 check_async 5 OFPR_INVALID_TTL OFPPR_DELETE OFPRR_DELETE
2655
2656 # Set controller ID 123.
2657 ovs-appctl -t ovs-ofctl ofctl/send 03040018000000030000232000000014000000000000007b
2658 check_async 6 OFPR_NO_MATCH OFPPR_DELETE OFPRR_DELETE
2659
2660 # Restore controller ID 0.
2661 ovs-appctl -t ovs-ofctl ofctl/send 030400180000000300002320000000140000000000000000
2662
2663 # Become master (OF 1.2).
2664 ovs-appctl -t ovs-ofctl ofctl/send 031800180000000400000002000000000000000000000002
2665 check_async 7 OFPR_ACTION OFPPR_ADD
2666
2667 ovs-appctl -t ovs-ofctl exit
2668 OVS_VSWITCHD_STOP
2669 AT_CLEANUP
2670
2671 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.3)])
2672 OVS_VSWITCHD_START
2673 AT_CHECK([ovs-ofctl -O OpenFlow13 monitor br0 --detach --no-chdir --pidfile])
2674 check_async () {
2675 printf '\n\n--- check_async %d ---\n\n\n' $1
2676 INDEX=$1
2677 shift
2678
2679 ovs-appctl -t ovs-ofctl ofctl/barrier
2680 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2681 : > expout
2682
2683 # OFPT_PACKET_IN, OFPR_ACTION (controller_id=0)
2684 ovs-ofctl -O OpenFlow13 -v packet-out br0 none controller '0001020304050010203040501234'
2685 if test X"$1" = X"OFPR_ACTION"; then shift;
2686 echo >>expout "OFPT_PACKET_IN (OF1.3): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
2687 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2688 fi
2689
2690 # OFPT_PACKET_IN, OFPR_NO_MATCH (controller_id=123)
2691 ovs-ofctl -O OpenFlow13 -v packet-out br0 none 'controller(reason=no_match,id=123)' '0001020304050010203040501234'
2692 if test X"$1" = X"OFPR_NO_MATCH"; then shift;
2693 echo >>expout "OFPT_PACKET_IN (OF1.3): total_len=14 in_port=ANY (via no_match) data_len=14 (unbuffered)
2694 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2695 fi
2696
2697 # OFPT_PACKET_IN, OFPR_INVALID_TTL (controller_id=0)
2698 ovs-ofctl -O OpenFlow13 packet-out br0 none dec_ttl '002583dfb4000026b98cb0f908004500003eb7e200000011339bac11370dac100002d7730035002b8f6d86fb0100000100000000000006626c702d7873066e696369726103636f6d00000f00'
2699 if test X"$1" = X"OFPR_INVALID_TTL"; then shift;
2700 echo >>expout "OFPT_PACKET_IN (OF1.3): total_len=76 in_port=ANY (via invalid_ttl) data_len=76 (unbuffered)
2701 udp,vlan_tci=0x0000,dl_src=00:26:b9:8c:b0:f9,dl_dst=00:25:83:df:b4:00,nw_src=172.17.55.13,nw_dst=172.16.0.2,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=55155,tp_dst=53 udp_csum:8f6d"
2702 fi
2703
2704 # OFPT_PORT_STATUS, OFPPR_ADD
2705 ovs-vsctl add-port br0 test -- set Interface test type=dummy
2706 if test X"$1" = X"OFPPR_ADD"; then shift;
2707 echo >>expout "OFPT_PORT_STATUS (OF1.3): ADD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2708 config: PORT_DOWN
2709 state: LINK_DOWN
2710 speed: 0 Mbps now, 0 Mbps max"
2711 fi
2712
2713 # OFPT_PORT_STATUS, OFPPR_DELETE
2714 ovs-vsctl del-port br0 test
2715 if test X"$1" = X"OFPPR_DELETE"; then shift;
2716 echo >>expout "OFPT_PORT_STATUS (OF1.3): DEL: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2717 config: PORT_DOWN
2718 state: LINK_DOWN
2719 speed: 0 Mbps now, 0 Mbps max"
2720 fi
2721
2722 # OFPT_FLOW_REMOVED, OFPRR_DELETE
2723 ovs-ofctl -O OpenFlow13 add-flow br0 send_flow_rem,actions=drop
2724 ovs-ofctl -O OpenFlow13 --strict del-flows br0 ''
2725 if test X"$1" = X"OFPRR_DELETE"; then shift;
2726 echo >>expout "OFPT_FLOW_REMOVED (OF1.3): reason=delete table_id=0"
2727 fi
2728
2729 # OFPT_FLOW_REMOVED, OFPRR_GROUP_DELETE
2730 ovs-ofctl -O OpenFlow13 add-group br0 group_id=1234,type=all,bucket=output:10
2731 ovs-ofctl -O OpenFlow13 add-flow br0 send_flow_rem,actions=group:1234
2732 ovs-ofctl -O OpenFlow13 --strict del-groups br0 group_id=1234
2733 if test X"$1" = X"OFPRR_DELETE"; then shift;
2734 echo >>expout "OFPT_FLOW_REMOVED (OF1.3): reason=gropu_delete table_id=0"
2735 fi
2736
2737 AT_FAIL_IF([test X"$1" != X])
2738
2739 ovs-appctl -t ovs-ofctl ofctl/barrier
2740 echo >>expout "OFPT_BARRIER_REPLY (OF1.3):"
2741
2742 AT_CHECK(
2743 [[sed '
2744 s/ (xid=0x[0-9a-fA-F]*)//
2745 s/ *duration.*//
2746 s/00:0.$/00:0x/' < monitor.log]],
2747 [0], [expout])
2748 }
2749
2750 # It's a service connection so initially there should be no async messages.
2751 check_async 1
2752
2753 # Set miss_send_len to 128, turning on packet-ins for our service connection.
2754 ovs-appctl -t ovs-ofctl ofctl/send 0409000c0123456700000080
2755 check_async 2 OFPR_ACTION OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
2756
2757 # Become slave (OF 1.3), which should disable everything except port status.
2758 ovs-appctl -t ovs-ofctl ofctl/send 041800180000000200000003000000000000000000000001
2759 check_async 3 OFPPR_ADD OFPPR_DELETE
2760
2761 # Use OF 1.3 OFPT_SET_ASYNC to enable a patchwork of asynchronous messages.
2762 ovs-appctl -t ovs-ofctl ofctl/send 041c002000000002000000020000000500000005000000020000000200000005
2763 check_async 4 OFPR_INVALID_TTL OFPPR_DELETE OFPRR_DELETE
2764
2765 # Set controller ID 123.
2766 ovs-appctl -t ovs-ofctl ofctl/send 04040018000000030000232000000014000000000000007b
2767 check_async 5 OFPR_NO_MATCH OFPPR_DELETE OFPRR_DELETE
2768
2769 # Restore controller ID 0.
2770 ovs-appctl -t ovs-ofctl ofctl/send 040400180000000300002320000000140000000000000000
2771
2772 # Become master (OF 1.3).
2773 ovs-appctl -t ovs-ofctl ofctl/send 041800180000000400000002000000000000000000000002
2774 check_async 6 OFPR_ACTION OFPPR_ADD
2775
2776 ovs-appctl -t ovs-ofctl exit
2777 OVS_VSWITCHD_STOP
2778 AT_CLEANUP
2779
2780 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.4)])
2781 OVS_VSWITCHD_START
2782 AT_CHECK([ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile])
2783 check_async () {
2784 printf '\n\n--- check_async %d ---\n\n\n' $1
2785 INDEX=$1
2786 shift
2787
2788 ovs-appctl -t ovs-ofctl ofctl/barrier
2789 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2790 : > expout
2791
2792 # OFPT_PACKET_IN, OFPR_ACTION (controller_id=0)
2793 ovs-ofctl -O OpenFlow14 -v packet-out br0 none controller '0001020304050010203040501234'
2794 if test X"$1" = X"OFPR_ACTION"; then shift;
2795 echo >>expout "OFPT_PACKET_IN (OF1.4): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
2796 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2797 fi
2798
2799 # OFPT_PACKET_IN, OFPR_NO_MATCH (controller_id=123)
2800 ovs-ofctl -O OpenFlow14 -v packet-out br0 none 'controller(reason=no_match,id=123)' '0001020304050010203040501234'
2801 if test X"$1" = X"OFPR_NO_MATCH"; then shift;
2802 echo >>expout "OFPT_PACKET_IN (OF1.4): total_len=14 in_port=ANY (via no_match) data_len=14 (unbuffered)
2803 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2804 fi
2805
2806 # OFPT_PACKET_IN, OFPR_INVALID_TTL (controller_id=0)
2807 ovs-ofctl -O OpenFlow14 packet-out br0 none dec_ttl '002583dfb4000026b98cb0f908004500003eb7e200000011339bac11370dac100002d7730035002b8f6d86fb0100000100000000000006626c702d7873066e696369726103636f6d00000f00'
2808 if test X"$1" = X"OFPR_INVALID_TTL"; then shift;
2809 echo >>expout "OFPT_PACKET_IN (OF1.4): total_len=76 in_port=ANY (via invalid_ttl) data_len=76 (unbuffered)
2810 udp,vlan_tci=0x0000,dl_src=00:26:b9:8c:b0:f9,dl_dst=00:25:83:df:b4:00,nw_src=172.17.55.13,nw_dst=172.16.0.2,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=55155,tp_dst=53 udp_csum:8f6d"
2811 fi
2812
2813 # OFPT_PORT_STATUS, OFPPR_ADD
2814 ovs-vsctl add-port br0 test -- set Interface test type=dummy
2815 if test X"$1" = X"OFPPR_ADD"; then shift;
2816 echo >>expout "OFPT_PORT_STATUS (OF1.4): ADD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2817 config: PORT_DOWN
2818 state: LINK_DOWN
2819 speed: 0 Mbps now, 0 Mbps max"
2820 fi
2821
2822 # OFPT_PORT_STATUS, OFPPR_MODIFY
2823 ovs-ofctl -O OpenFlow14 -vwarn mod-port br0 test up
2824 if test X"$1" = X"OFPPR_MODIFY"; then shift;
2825 echo >>expout "OFPT_PORT_STATUS (OF1.4): MOD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2826 config: 0
2827 state: LINK_DOWN
2828 speed: 0 Mbps now, 0 Mbps max
2829 OFPT_PORT_STATUS (OF1.4): MOD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2830 config: 0
2831 state: 0
2832 speed: 0 Mbps now, 0 Mbps max"
2833 fi
2834
2835 # OFPT_PORT_STATUS, OFPPR_DELETE
2836 ovs-vsctl del-port br0 test
2837 if test X"$1" = X"OFPPR_DELETE"; then shift;
2838 echo >>expout "OFPT_PORT_STATUS (OF1.4): DEL: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2839 config: 0
2840 state: 0
2841 speed: 0 Mbps now, 0 Mbps max"
2842 fi
2843
2844 # OFPT_FLOW_REMOVED, OFPRR_DELETE
2845 ovs-ofctl -O OpenFlow14 add-flow br0 send_flow_rem,actions=drop
2846 ovs-ofctl -O OpenFlow14 --strict del-flows br0 ''
2847 if test X"$1" = X"OFPRR_DELETE"; then shift;
2848 echo >>expout "OFPT_FLOW_REMOVED (OF1.4): reason=delete table_id=0"
2849 fi
2850
2851 # OFPT_FLOW_REMOVED, OFPRR_GROUP_DELETE
2852 ovs-ofctl -O OpenFlow14 add-group br0 group_id=1234,type=all,bucket=output:10
2853 ovs-ofctl -O OpenFlow14 add-flow br0 send_flow_rem,actions=group:1234
2854 ovs-ofctl -O OpenFlow14 --strict del-groups br0 group_id=1234
2855 if test X"$1" = X"OFPRR_GROUP_DELETE"; then shift;
2856 echo >>expout "OFPT_FLOW_REMOVED (OF1.4): reason=group_delete table_id=0"
2857 fi
2858
2859 AT_FAIL_IF([test X"$1" != X])
2860
2861 ovs-appctl -t ovs-ofctl ofctl/barrier
2862 echo >>expout "OFPT_BARRIER_REPLY (OF1.4):"
2863
2864 AT_CHECK(
2865 [[sed '
2866 s/ (xid=0x[0-9a-fA-F]*)//
2867 s/ *duration.*//
2868 s/00:0.$/00:0x/' < monitor.log]],
2869 [0], [expout])
2870 }
2871
2872 # It's a service connection so initially there should be no async messages.
2873 check_async 1
2874
2875 # Set miss_send_len to 128, turning on packet-ins for our service connection.
2876 ovs-appctl -t ovs-ofctl ofctl/send 0509000c0123456700000080
2877 check_async 2 OFPR_ACTION OFPPR_ADD OFPPR_MODIFY OFPPR_DELETE OFPRR_DELETE OFPRR_GROUP_DELETE
2878
2879 # Become slave (OF 1.4), which should disable everything except port status.
2880 ovs-appctl -t ovs-ofctl ofctl/send 051800180000000200000003000000000000000000000001
2881 check_async 3 OFPPR_ADD OFPPR_MODIFY OFPPR_DELETE
2882
2883 # Use OF 1.4 OFPT_SET_ASYNC to enable a patchwork of asynchronous messages.
2884 ovs-appctl -t ovs-ofctl ofctl/send 051c0038000000020000000800000005000100080000000200020008000000020003000800000005000400080000001c0005000800000005
2885 check_async 4 OFPR_INVALID_TTL OFPPR_DELETE OFPRR_DELETE OFPRR_GROUP_DELETE
2886
2887 # Set controller ID 123.
2888 ovs-appctl -t ovs-ofctl ofctl/send 05040018000000030000232000000014000000000000007b
2889 check_async 5 OFPR_NO_MATCH OFPPR_DELETE OFPRR_DELETE OFPRR_GROUP_DELETE
2890
2891 # Restore controller ID 0.
2892 ovs-appctl -t ovs-ofctl ofctl/send 050400180000000300002320000000140000000000000000
2893
2894 # Become master (OF 1.4).
2895 ovs-appctl -t ovs-ofctl ofctl/send 051800180000000400000002000000000000000000000002
2896 check_async 6 OFPR_ACTION OFPPR_ADD OFPPR_MODIFY OFPRR_DELETE
2897
2898 ovs-appctl -t ovs-ofctl exit
2899 OVS_VSWITCHD_STOP
2900 AT_CLEANUP
2901
2902 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.5)])
2903 OVS_VSWITCHD_START
2904 AT_CHECK([ovs-ofctl -O OpenFlow15 monitor br0 --detach --no-chdir --pidfile])
2905 check_async () {
2906 printf '\n\n--- check_async %d ---\n\n\n' $1
2907 INDEX=$1
2908 shift
2909
2910 ovs-appctl -t ovs-ofctl ofctl/barrier
2911 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2912 : > expout
2913
2914 # Other tests are not working with OF 1.5, and message
2915 # format may change, so leave them out.
2916
2917 # OFPT_PORT_STATUS, OFPPR_ADD
2918 ovs-vsctl add-port br0 test -- set Interface test type=dummy
2919 if test X"$1" = X"OFPPR_ADD"; then shift;
2920 echo >>expout "OFPT_PORT_STATUS (OF1.5): ADD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2921 config: PORT_DOWN
2922 state: LINK_DOWN
2923 speed: 0 Mbps now, 0 Mbps max"
2924 fi
2925
2926 # OFPT_PORT_STATUS, OFPPR_MODIFY
2927 ovs-ofctl -O OpenFlow15 -vwarn mod-port br0 test up
2928 if test X"$1" = X"OFPPR_MODIFY"; then shift;
2929 echo >>expout "OFPT_PORT_STATUS (OF1.5): MOD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2930 config: 0
2931 state: LINK_DOWN
2932 speed: 0 Mbps now, 0 Mbps max
2933 OFPT_PORT_STATUS (OF1.5): MOD: 2(test): addr:aa:55:aa:55:00:0x
2934 config: 0
2935 state: 0
2936 speed: 0 Mbps now, 0 Mbps max"
2937 fi
2938
2939 # OFPT_PORT_STATUS, OFPPR_DELETE
2940 ovs-vsctl del-port br0 test
2941 if test X"$1" = X"OFPPR_DELETE"; then shift;
2942 echo >>expout "OFPT_PORT_STATUS (OF1.5): DEL: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2943 config: 0
2944 state: 0
2945 speed: 0 Mbps now, 0 Mbps max"
2946 fi
2947
2948 AT_FAIL_IF([test X"$1" != X])
2949
2950 ovs-appctl -t ovs-ofctl ofctl/barrier
2951 echo >>expout "OFPT_BARRIER_REPLY (OF1.5):"
2952
2953 AT_CHECK(
2954 [[sed '
2955 s/ (xid=0x[0-9a-fA-F]*)//
2956 s/ *duration.*//
2957 s/00:0.$/00:0x/' < monitor.log]],
2958 [0], [expout])
2959 }
2960
2961 # It's a service connection so initially there should be no async messages.
2962 check_async 1
2963
2964 # If we don't set this, async messages are not received.
2965 # Set miss_send_len to 128, turning on packet-ins for our service connection.
2966 ovs-appctl -t ovs-ofctl ofctl/send 0609000c0123456700000080
2967 check_async 2 OFPPR_ADD OFPPR_MODIFY OFPPR_DELETE
2968
2969 # Set-async has changed in OF 1.4 and is not yet implemented.
2970
2971 ovs-appctl -t ovs-ofctl exit
2972 OVS_VSWITCHD_STOP
2973 AT_CLEANUP
2974
2975 dnl This test checks that the role request/response messaging works
2976 dnl and that generation_id is handled properly.
2977 AT_SETUP([ofproto - controller role (OpenFlow 1.2)])
2978 OVS_VSWITCHD_START
2979 on_exit 'kill `cat c1.pid c2.pid`'
2980
2981 # Start two ovs-ofctl controller processes.
2982 AT_CAPTURE_FILE([monitor1.log])
2983 AT_CAPTURE_FILE([expout1])
2984 AT_CAPTURE_FILE([experr1])
2985 AT_CAPTURE_FILE([monitor2.log])
2986 AT_CAPTURE_FILE([expout2])
2987 AT_CAPTURE_FILE([experr2])
2988 for i in 1 2; do
2989 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile=`pwd`/c$i.pid --unixctl=`pwd`/c$i])
2990 ovs-appctl -t `pwd`/c$i ofctl/barrier
2991 ovs-appctl -t `pwd`/c$i ofctl/set-output-file monitor$i.log
2992 : > expout$i
2993 : > experr$i
2994
2995 # find out current role
2996 ovs-appctl -t `pwd`/c$i ofctl/send 031800180000000200000000000000000000000000000000
2997 echo >>experr$i "send: OFPT_ROLE_REQUEST (OF1.2): role=nochange"
2998 echo >>expout$i "OFPT_ROLE_REPLY (OF1.2): role=equal"
2999 done
3000
3001 # controller 1: Become slave (generation_id is initially undefined, so
3002 # 2^63+2 should not be stale)
3003 ovs-appctl -t `pwd`/c1 ofctl/send 031800180000000300000003000000008000000000000002
3004 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.2): role=slave generation_id=9223372036854775810"
3005 echo >>expout1 "OFPT_ROLE_REPLY (OF1.2): role=slave generation_id=9223372036854775810"
3006
3007 # controller 2: Become master.
3008 ovs-appctl -t `pwd`/c2 ofctl/send 031800180000000300000002000000008000000000000003
3009 echo >>experr2 "send: OFPT_ROLE_REQUEST (OF1.2): role=master generation_id=9223372036854775811"
3010 echo >>expout2 "OFPT_ROLE_REPLY (OF1.2): role=master generation_id=9223372036854775811"
3011
3012 # controller 1: Try to become the master using a stale generation ID
3013 ovs-appctl -t `pwd`/c1 ofctl/send 031800180000000400000002000000000000000000000003
3014 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.2): role=master generation_id=3"
3015 echo >>expout1 "OFPT_ERROR (OF1.2): OFPRRFC_STALE"
3016 echo >>expout1 "OFPT_ROLE_REQUEST (OF1.2): role=master generation_id=3"
3017
3018 # controller 1: Become master using a valid generation ID
3019 ovs-appctl -t `pwd`/c1 ofctl/send 031800180000000500000002000000000000000000000001
3020 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.2): role=master generation_id=1"
3021 echo >>expout1 "OFPT_ROLE_REPLY (OF1.2): role=master generation_id=1"
3022
3023 for i in 1 2; do
3024 ovs-appctl -t `pwd`/c$i ofctl/barrier
3025 echo >>expout$i "OFPT_BARRIER_REPLY (OF1.2):"
3026 done
3027
3028 # Check output.
3029 for i in 1 2; do
3030 cp expout$i expout
3031 AT_CHECK([grep -v '^send:' monitor$i.log | STRIP_XIDS], [0], [expout])
3032 cp experr$i expout
3033 AT_CHECK([grep '^send:' monitor$i.log | STRIP_XIDS], [0], [expout])
3034 done
3035 OVS_VSWITCHD_STOP
3036 AT_CLEANUP
3037
3038 dnl This test checks that the role request/response messaging works,
3039 dnl that generation_id is handled properly, and that role status update
3040 dnl messages are sent when a controller's role gets changed from master
3041 dnl to slave.
3042 AT_SETUP([ofproto - controller role (OpenFlow 1.4)])
3043 OVS_VSWITCHD_START
3044 on_exit 'kill `cat c1.pid c2.pid`'
3045
3046 # Start two ovs-ofctl controller processes.
3047 AT_CAPTURE_FILE([monitor1.log])
3048 AT_CAPTURE_FILE([expout1])
3049 AT_CAPTURE_FILE([experr1])
3050 AT_CAPTURE_FILE([monitor2.log])
3051 AT_CAPTURE_FILE([expout2])
3052 AT_CAPTURE_FILE([experr2])
3053 for i in 1 2; do
3054 AT_CHECK([ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile=`pwd`/c$i.pid --unixctl=`pwd`/c$i])
3055 ovs-appctl -t `pwd`/c$i ofctl/barrier
3056 ovs-appctl -t `pwd`/c$i ofctl/set-output-file monitor$i.log
3057 : > expout$i
3058 : > experr$i
3059
3060 # find out current role
3061 ovs-appctl -t `pwd`/c$i ofctl/send 051800180000000200000000000000000000000000000000
3062 echo >>experr$i "send: OFPT_ROLE_REQUEST (OF1.4): role=nochange"
3063 echo >>expout$i "OFPT_ROLE_REPLY (OF1.4): role=equal"
3064 done
3065
3066 # controller 1: Become slave (generation_id is initially undefined, so
3067 # 2^63+2 should not be stale)
3068 ovs-appctl -t `pwd`/c1 ofctl/send 051800180000000300000003000000008000000000000002
3069 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.4): role=slave generation_id=9223372036854775810"
3070 echo >>expout1 "OFPT_ROLE_REPLY (OF1.4): role=slave generation_id=9223372036854775810"
3071
3072 # controller 2: Become master.
3073 ovs-appctl -t `pwd`/c2 ofctl/send 051800180000000300000002000000008000000000000003
3074 echo >>experr2 "send: OFPT_ROLE_REQUEST (OF1.4): role=master generation_id=9223372036854775811"
3075 echo >>expout2 "OFPT_ROLE_REPLY (OF1.4): role=master generation_id=9223372036854775811"
3076
3077 # controller 1: Try to become the master using a stale generation ID
3078 ovs-appctl -t `pwd`/c1 ofctl/send 051800180000000400000002000000000000000000000003
3079 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.4): role=master generation_id=3"
3080 echo >>expout1 "OFPT_ERROR (OF1.4): OFPRRFC_STALE"
3081 echo >>expout1 "OFPT_ROLE_REQUEST (OF1.4): role=master generation_id=3"
3082
3083 # controller 1: Become master using a valid generation ID
3084 ovs-appctl -t `pwd`/c1 ofctl/send 051800180000000500000002000000000000000000000001
3085 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.4): role=master generation_id=1"
3086 echo >>expout1 "OFPT_ROLE_REPLY (OF1.4): role=master generation_id=1"
3087 echo >>expout2 "OFPT_ROLE_STATUS (OF1.4): role=slave generation_id=1 reason=master_request"
3088
3089 for i in 1 2; do
3090 ovs-appctl -t `pwd`/c$i ofctl/barrier
3091 echo >>expout$i "OFPT_BARRIER_REPLY (OF1.4):"
3092 done
3093
3094 # Check output.
3095 for i in 1 2; do
3096 cp expout$i expout
3097 AT_CHECK([grep -v '^send:' monitor$i.log | STRIP_XIDS], [0], [expout])
3098 cp experr$i expout
3099 AT_CHECK([grep '^send:' monitor$i.log | STRIP_XIDS], [0], [expout])
3100 done
3101 OVS_VSWITCHD_STOP
3102 AT_CLEANUP
3103
3104 dnl This test checks the Group and meter notifications when a group mod
3105 dnl command is sent from one controller and the reply is received by
3106 dnl other controllers.
3107 AT_SETUP([ofproto - requestforward (OpenFlow 1.4)])
3108 OVS_VSWITCHD_START
3109 on_exit 'kill `cat c1.pid c2.pid c3.pid`'
3110
3111 # Start two ovs-ofctl controller processes.
3112 AT_CAPTURE_FILE([monitor1.log])
3113 AT_CAPTURE_FILE([expout1])
3114 AT_CAPTURE_FILE([monitor2.log])
3115 AT_CAPTURE_FILE([expout2])
3116 AT_CAPTURE_FILE([monitor3.log])
3117 AT_CAPTURE_FILE([expout3])
3118
3119 ovs-ofctl -O OpenFlow15 monitor br0 --detach --no-chdir --pidfile=`pwd`/c1.pid --unixctl=`pwd`/c1
3120 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile=`pwd`/c2.pid --unixctl=`pwd`/c2
3121 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile=`pwd`/c3.pid --unixctl=`pwd`/c3
3122
3123 check_async () {
3124 for i in 1 3; do
3125 ovs-appctl -t `pwd`/c$i ofctl/barrier
3126 ovs-appctl -t `pwd`/c$i ofctl/set-output-file monitor$i.log
3127 : > expout$i
3128 done
3129
3130 printf '\n\n--- check_async %d ---\n\n\n' $1
3131 INDEX=$1
3132 shift
3133
3134 # OFPGC_ADD
3135 ovs-appctl -t `pwd`/c2 ofctl/send 050f0010000000020000000000000001
3136 if test X"$1" = X"OFPGC_ADD"; then shift;
3137 echo >>expout2 "send: OFPT_GROUP_MOD (OF1.4):
3138 ADD group_id=1,type=all"
3139 echo >>expout1 "OFPT_REQUESTFORWARD (OF1.5): reason=group_mod
3140 ADD group_id=1,type=all"
3141 echo >>expout3 "OFPT_REQUESTFORWARD (OF1.4): reason=group_mod
3142 ADD group_id=1,type=all"
3143 fi
3144
3145 # OFPGC_MODIFY
3146 ovs-appctl -t `pwd`/c2 ofctl/send 050f0010000000020001010000000001
3147 if test X"$1" = X"OFPGC_MODIFY"; then shift;
3148 echo >>expout2 "send: OFPT_GROUP_MOD (OF1.4):
3149 MOD group_id=1,type=select"
3150 echo >>expout1 "OFPT_REQUESTFORWARD (OF1.5): reason=group_mod
3151 MOD group_id=1,type=select"
3152 echo >>expout3 "OFPT_REQUESTFORWARD (OF1.4): reason=group_mod
3153 MOD group_id=1,type=select"
3154 fi
3155
3156 ovs-appctl -t `pwd`/c1 ofctl/barrier
3157 echo >>expout1 "OFPT_BARRIER_REPLY (OF1.5):"
3158 ovs-appctl -t `pwd`/c2 ofctl/barrier
3159 echo >>expout2 "OFPT_BARRIER_REPLY (OF1.4):"
3160 ovs-appctl -t `pwd`/c3 ofctl/barrier
3161 echo >>expout3 "OFPT_BARRIER_REPLY (OF1.4):"
3162
3163 # Check output.
3164 for i in 1 3; do
3165 cp expout$i expout
3166 AT_CHECK(
3167 [[sed '
3168 s/ (xid=0x[0-9a-fA-F]*)//'< monitor$i.log]],
3169 [0], [expout])
3170 done
3171 }
3172
3173 # controller 1: Become slave
3174 ovs-appctl -t `pwd`/c1 ofctl/send 061800180000000300000003000000008000000000000002
3175
3176 # controller 2: Become master
3177 ovs-appctl -t `pwd`/c2 ofctl/send 051800180000000300000002000000008000000000000003
3178
3179 # controller 1: Become slave
3180 ovs-appctl -t `pwd`/c3 ofctl/send 051800180000000300000003000000008000000000000004
3181
3182 # controller 1: Enabled requestforward using set Asynchronous message
3183 ovs-appctl -t `pwd`/c1 ofctl/send 061c00280000000200000008000000050002000800000002000400080000001a000a000800000003
3184
3185 # controller 2: Enabled requestforward using set Asynchronous message
3186 ovs-appctl -t `pwd`/c2 ofctl/send 051c002800000002000100080000000200030008000000050005000800000005000b000800000003
3187
3188 # controller 1: Enabled requestforward using set Asynchronous message
3189 ovs-appctl -t `pwd`/c3 ofctl/send 051c00280000000200000008000000050002000800000002000400080000001a000a000800000003
3190 check_async 1 OFPGC_ADD OFPGC_MODIFY
3191
3192 OVS_VSWITCHD_STOP
3193 AT_CLEANUP
3194
3195 dnl This test checks that OFPT_PACKET_OUT accepts both OFPP_NONE (as
3196 dnl specified by OpenFlow 1.0) and OFPP_CONTROLLER (used by some
3197 dnl controllers despite the spec) as meaning a packet that was generated
3198 dnl by the controller.
3199 AT_SETUP([ofproto - packet-out from controller (OpenFlow 1.0)])
3200 OVS_VSWITCHD_START
3201 ADD_OF_PORTS([br0], [1])
3202
3203 # Start a monitor listening for packet-ins.
3204 AT_CHECK([ovs-ofctl -P openflow10 monitor br0 --detach --no-chdir --pidfile])
3205 ovs-appctl -t ovs-ofctl ofctl/send 0109000c0123456700000080
3206 ovs-appctl -t ovs-ofctl ofctl/barrier
3207 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3208 AT_CAPTURE_FILE([monitor.log])
3209
3210 # Send some packet-outs with OFPP_NONE and OFPP_CONTROLLER (65533) as in_port.
3211 AT_CHECK([ovs-ofctl packet-out br0 none controller,1 '0001020304050010203040501234'])
3212 AT_CHECK([ovs-ofctl packet-out br0 controller controller,1 '0001020304050010203040505678'])
3213
3214 # Stop the monitor and check its output.
3215 ovs-appctl -t ovs-ofctl ofctl/barrier
3216 ovs-appctl -t ovs-ofctl exit
3217
3218 ovs-ofctl dump-ports br0
3219
3220 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3221 OFPT_PACKET_IN: total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
3222 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3223 OFPT_PACKET_IN: total_len=14 in_port=CONTROLLER (via action) data_len=14 (unbuffered)
3224 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x5678
3225 OFPT_BARRIER_REPLY:
3226 ])
3227
3228 OVS_VSWITCHD_STOP
3229 AT_CLEANUP
3230
3231 dnl This test checks that OFPT_PACKET_OUT accepts both OFPP_NONE (as
3232 dnl specified by OpenFlow 1.2) and OFPP_CONTROLLER (used by some
3233 dnl controllers despite the spec) as meaning a packet that was generated
3234 dnl by the controller.
3235 AT_SETUP([ofproto - packet-out from controller (OpenFlow 1.2)])
3236 OVS_VSWITCHD_START
3237
3238 # Start a monitor listening for packet-ins.
3239 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile])
3240 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700000080
3241 ovs-appctl -t ovs-ofctl ofctl/barrier
3242 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3243 AT_CAPTURE_FILE([monitor.log])
3244
3245 # Send some packet-outs with OFPP_NONE and OFPP_CONTROLLER (65533) as in_port.
3246 AT_CHECK([ovs-ofctl -O OpenFlow12 packet-out br0 none controller '0001020304050010203040501234'])
3247 AT_CHECK([ovs-ofctl -O OpenFlow12 packet-out br0 4294967293 controller '0001020304050010203040505678'])
3248
3249 # Stop the monitor and check its output.
3250 ovs-appctl -t ovs-ofctl ofctl/barrier
3251 ovs-appctl -t ovs-ofctl exit
3252
3253 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3254 OFPT_PACKET_IN (OF1.2): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
3255 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3256 OFPT_PACKET_IN (OF1.2): total_len=14 in_port=CONTROLLER (via action) data_len=14 (unbuffered)
3257 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x5678
3258 OFPT_BARRIER_REPLY (OF1.2):
3259 ])
3260
3261 OVS_VSWITCHD_STOP
3262 AT_CLEANUP
3263
3264 dnl This test checks that OFPT_PACKET_OUT accepts both OFPP_NONE (as
3265 dnl specified by OpenFlow 1.1) and OFPP_CONTROLLER (used by some
3266 dnl controllers despite the spec) as meaning a packet that was generated
3267 dnl by the controller.
3268 AT_SETUP([ofproto - packet-out from controller (OpenFlow 1.1)])
3269 OVS_VSWITCHD_START
3270
3271 # Start a monitor listening for packet-ins.
3272 AT_CHECK([ovs-ofctl -O OpenFlow11 monitor br0 --detach --no-chdir --pidfile])
3273 ovs-appctl -t ovs-ofctl ofctl/send 0209000c0123456700000080
3274 ovs-appctl -t ovs-ofctl ofctl/barrier
3275 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3276 AT_CAPTURE_FILE([monitor.log])
3277
3278 # Send some packet-outs with OFPP_NONE and OFPP_CONTROLLER (65533) as in_port.
3279 AT_CHECK([ovs-ofctl -O OpenFlow11 packet-out br0 none controller '0001020304050010203040501234'])
3280 AT_CHECK([ovs-ofctl -O OpenFlow11 packet-out br0 4294967293 controller '0001020304050010203040505678'])
3281
3282 # Stop the monitor and check its output.
3283 ovs-appctl -t ovs-ofctl ofctl/barrier
3284 ovs-appctl -t ovs-ofctl exit
3285
3286 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3287 OFPT_PACKET_IN (OF1.1): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
3288 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3289 OFPT_PACKET_IN (OF1.1): total_len=14 in_port=CONTROLLER (via action) data_len=14 (unbuffered)
3290 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x5678
3291 OFPT_BARRIER_REPLY (OF1.1):
3292 ])
3293
3294 OVS_VSWITCHD_STOP
3295 AT_CLEANUP
3296
3297 dnl This test checks that metadata is encoded in packet_in structures,
3298 dnl supported by NXAST.
3299 AT_SETUP([ofproto - packet-out with metadata (NXM)])
3300 OVS_VSWITCHD_START
3301
3302 # Start a monitor listening for packet-ins.
3303 AT_CHECK([ovs-ofctl -P nxm monitor br0 --detach --no-chdir --pidfile])
3304 ovs-appctl -t ovs-ofctl ofctl/send 0109000c0123456700000080
3305 ovs-appctl -t ovs-ofctl ofctl/barrier
3306 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3307 AT_CAPTURE_FILE([monitor.log])
3308
3309 # Send a packet-out with a load action to set some metadata, and forward to controller
3310 AT_CHECK([ovs-ofctl packet-out br0 controller 'load(0xfafafafa5a5a5a5a->OXM_OF_METADATA[[0..63]]), load(0xaa->NXM_NX_PKT_MARK[[]]), controller' '0001020304050010203040501234'])
3311
3312 # Stop the monitor and check its output.
3313 ovs-appctl -t ovs-ofctl ofctl/barrier
3314 ovs-appctl -t ovs-ofctl exit
3315
3316 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3317 NXT_PACKET_IN: total_len=14 pkt_mark=0xaa,metadata=0xfafafafa5a5a5a5a,in_port=CONTROLLER (via action) data_len=14 (unbuffered)
3318 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3319 OFPT_BARRIER_REPLY:
3320 ])
3321
3322 OVS_VSWITCHD_STOP
3323 AT_CLEANUP
3324
3325 dnl This test checks that metadata is encoded in packet_in structures,
3326 dnl supported by NXAST.
3327 AT_SETUP([ofproto - packet-out with metadata (OpenFlow 1.2)])
3328 OVS_VSWITCHD_START
3329
3330 # Start a monitor listening for packet-ins.
3331 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile])
3332 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700000080
3333 ovs-appctl -t ovs-ofctl ofctl/barrier
3334 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3335 AT_CAPTURE_FILE([monitor.log])
3336
3337 # Send a packet-out with a set-field action to set some metadata, and forward to controller
3338 AT_CHECK([ovs-ofctl -O OpenFlow12 packet-out br0 none 'set_field:0xfafafafa5a5a5a5a->metadata, controller' '0001020304050010203040501234'])
3339
3340 # Stop the monitor and check its output.
3341 ovs-appctl -t ovs-ofctl ofctl/barrier
3342 ovs-appctl -t ovs-ofctl exit
3343
3344 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3345 OFPT_PACKET_IN (OF1.2): total_len=14 metadata=0xfafafafa5a5a5a5a,in_port=ANY (via action) data_len=14 (unbuffered)
3346 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3347 OFPT_BARRIER_REPLY (OF1.2):
3348 ])
3349
3350 OVS_VSWITCHD_STOP
3351 AT_CLEANUP
3352
3353 dnl This test checks that metadata is encoded in packet_in structures,
3354 dnl supported by NXAST.
3355 AT_SETUP([ofproto - packet-out with metadata and dual set_field (OpenFlow 1.3)])
3356 OVS_VSWITCHD_START
3357
3358 # Start a monitor listening for packet-ins.
3359 AT_CHECK([ovs-ofctl -O OpenFlow13 monitor br0 --detach --no-chdir --pidfile])
3360 ovs-appctl -t ovs-ofctl ofctl/send 0409000c0123456700000080
3361 ovs-appctl -t ovs-ofctl ofctl/barrier
3362 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3363 AT_CAPTURE_FILE([monitor.log])
3364
3365 # Send a packet-out with a couple of set-field action to set some metadata, and forward to controller
3366 AT_CHECK([ovs-ofctl -O OpenFlow13 packet-out br0 none 'set_field:0xfafafafa5a5a5a5a->metadata, set_field:0x6b->metadata, controller' '0001020304050010203040501234'])
3367
3368 # Stop the monitor and check its output.
3369 ovs-appctl -t ovs-ofctl ofctl/barrier
3370 ovs-appctl -t ovs-ofctl exit
3371
3372 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3373 OFPT_PACKET_IN (OF1.3): total_len=14 metadata=0x6b,in_port=ANY (via action) data_len=14 (unbuffered)
3374 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3375 OFPT_BARRIER_REPLY (OF1.3):
3376 ])
3377
3378 OVS_VSWITCHD_STOP
3379 AT_CLEANUP
3380
3381 dnl This test checks that tunnel metadata is encoded in packet_in structures.
3382 AT_SETUP([ofproto - packet-out with tunnel metadata (OpenFlow 1.2)])
3383 OVS_VSWITCHD_START
3384
3385 # Start a monitor listening for packet-ins.
3386 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile])
3387 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700000080
3388 ovs-appctl -t ovs-ofctl ofctl/barrier
3389 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3390 AT_CAPTURE_FILE([monitor.log])
3391
3392 # Send a packet-out with set field actions to set some tunnel metadata, and forward to controller
3393 AT_CHECK([ovs-ofctl -O OpenFlow12 packet-out br0 none 'set_field:127.0.0.1->tun_src,set_field:0x01020304->tun_id,set_field:192.168.0.1->tun_dst, controller' '0001020304050010203040501234'])
3394
3395 # Stop the monitor and check its output.
3396 ovs-appctl -t ovs-ofctl ofctl/barrier
3397 ovs-appctl -t ovs-ofctl exit
3398
3399 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3400 OFPT_PACKET_IN (OF1.2): total_len=14 tun_id=0x1020304,tun_src=127.0.0.1,tun_dst=192.168.0.1,in_port=ANY (via action) data_len=14 (unbuffered)
3401 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3402 OFPT_BARRIER_REPLY (OF1.2):
3403 ])
3404
3405 OVS_VSWITCHD_STOP
3406 AT_CLEANUP
3407
3408 m4_divert_push([PREPARE_TESTS])
3409 # Sorts groups of lines that start with a space, without moving them
3410 # past the nearest line that does not start with a space.
3411 multiline_sort () {
3412 ${PERL} -e '
3413 use warnings;
3414 use strict;
3415 my @buffer = ();
3416 while (<STDIN>) {
3417 if (/^ /) {
3418 push(@buffer, $_);
3419 } else {
3420 print $_ foreach sort(@buffer);
3421 print $_;
3422 @buffer = ();
3423 }
3424 }
3425 print $_ foreach sort(@buffer);
3426 '
3427 }
3428 m4_divert_pop([PREPARE_TESTS])
3429
3430 AT_SETUP([ofproto - flow monitoring])
3431 AT_KEYWORDS([monitor])
3432 OVS_VSWITCHD_START
3433
3434 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:1
3435
3436 # Start a monitor watching the flow table and check the initial reply.
3437 ovs-ofctl monitor br0 watch: --detach --no-chdir --pidfile >monitor.log 2>&1
3438 AT_CAPTURE_FILE([monitor.log])
3439 ovs-appctl -t ovs-ofctl ofctl/barrier
3440 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
3441 [NXST_FLOW_MONITOR reply:
3442 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:1
3443 OFPT_BARRIER_REPLY:
3444 ])
3445
3446 # Add, delete, and modify some flows and check the updates.
3447 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3448 ovs-ofctl add-flow br0 in_port=0,dl_vlan=124,actions=output:2
3449 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:5
3450 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,dl_vlan_pcp=0,actions=output:6
3451 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,dl_vlan_pcp=1,actions=output:7
3452 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:8
3453 ovs-ofctl add-flow br0 in_port=0,dl_vlan=65535,dl_vlan_pcp=0,actions=output:9
3454 ovs-ofctl add-flow br0 in_port=0,dl_vlan=65535,dl_vlan_pcp=1,actions=output:10
3455 ovs-ofctl add-flow br0 in_port=0,dl_vlan=65535,actions=output:11
3456 ovs-ofctl add-flow br0 in_port=0,dl_vlan=8191,dl_vlan_pcp=0,actions=output:12
3457 ovs-ofctl add-flow br0 in_port=0,dl_vlan=8191,dl_vlan_pcp=1,actions=output:13
3458 ovs-ofctl add-flow br0 in_port=0,dl_vlan=8191,actions=output:14
3459 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,dl_vlan_pcp=0,actions=output:15
3460 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,dl_vlan_pcp=1,actions=output:16
3461 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,actions=output:17
3462 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,dl_vlan_pcp=0,actions=output:18
3463 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,dl_vlan_pcp=1,actions=output:19
3464 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,actions=output:20
3465 ovs-ofctl add-flow br0 in_port=0,dl_vlan_pcp=0,actions=output:21
3466 ovs-ofctl add-flow br0 in_port=0,dl_vlan_pcp=1,actions=output:22
3467 ovs-ofctl add-flow br0 in_port=0,actions=output:23
3468 ovs-ofctl mod-flows br0 dl_vlan=123,actions=output:3
3469 ovs-ofctl mod-flows br0 cookie=5,dl_vlan=123,actions=output:3
3470 ovs-ofctl del-flows br0 dl_vlan=123
3471 ovs-ofctl del-flows br0
3472 ovs-appctl -t ovs-ofctl ofctl/barrier
3473 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log | multiline_sort], [0],
3474 [NXST_FLOW_MONITOR reply (xid=0x0):
3475 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=124 actions=output:2
3476 NXST_FLOW_MONITOR reply (xid=0x0):
3477 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:5
3478 NXST_FLOW_MONITOR reply (xid=0x0):
3479 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123,dl_vlan_pcp=0 actions=output:6
3480 NXST_FLOW_MONITOR reply (xid=0x0):
3481 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123,dl_vlan_pcp=1 actions=output:7
3482 NXST_FLOW_MONITOR reply (xid=0x0):
3483 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:8
3484 NXST_FLOW_MONITOR reply (xid=0x0):
3485 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=0 actions=output:9
3486 NXST_FLOW_MONITOR reply (xid=0x0):
3487 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=1 actions=output:10
3488 NXST_FLOW_MONITOR reply (xid=0x0):
3489 event=ADDED table=0 cookie=0 in_port=0,vlan_tci=0x0000 actions=output:11
3490 NXST_FLOW_MONITOR reply (xid=0x0):
3491 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=4095,dl_vlan_pcp=0 actions=output:12
3492 NXST_FLOW_MONITOR reply (xid=0x0):
3493 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=4095,dl_vlan_pcp=1 actions=output:13
3494 NXST_FLOW_MONITOR reply (xid=0x0):
3495 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=4095 actions=output:14
3496 NXST_FLOW_MONITOR reply (xid=0x0):
3497 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=0 actions=output:15
3498 NXST_FLOW_MONITOR reply (xid=0x0):
3499 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=1 actions=output:16
3500 NXST_FLOW_MONITOR reply (xid=0x0):
3501 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0 actions=output:17
3502 NXST_FLOW_MONITOR reply (xid=0x0):
3503 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=0 actions=output:18
3504 NXST_FLOW_MONITOR reply (xid=0x0):
3505 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=1 actions=output:19
3506 NXST_FLOW_MONITOR reply (xid=0x0):
3507 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0 actions=output:20
3508 NXST_FLOW_MONITOR reply (xid=0x0):
3509 event=ADDED table=0 cookie=0 in_port=0,dl_vlan_pcp=0 actions=output:21
3510 NXST_FLOW_MONITOR reply (xid=0x0):
3511 event=ADDED table=0 cookie=0 in_port=0,dl_vlan_pcp=1 actions=output:22
3512 NXST_FLOW_MONITOR reply (xid=0x0):
3513 event=ADDED table=0 cookie=0 in_port=0 actions=output:23
3514 NXST_FLOW_MONITOR reply (xid=0x0):
3515 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:3
3516 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123,dl_vlan_pcp=0 actions=output:3
3517 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123,dl_vlan_pcp=1 actions=output:3
3518 NXST_FLOW_MONITOR reply (xid=0x0):
3519 event=MODIFIED table=0 cookie=0x5 in_port=0,dl_vlan=123 actions=output:3
3520 event=MODIFIED table=0 cookie=0x5 in_port=0,dl_vlan=123,dl_vlan_pcp=0 actions=output:3
3521 event=MODIFIED table=0 cookie=0x5 in_port=0,dl_vlan=123,dl_vlan_pcp=1 actions=output:3
3522 NXST_FLOW_MONITOR reply (xid=0x0):
3523 event=DELETED reason=delete table=0 cookie=0x5 in_port=0,dl_vlan=123 actions=output:3
3524 event=DELETED reason=delete table=0 cookie=0x5 in_port=0,dl_vlan=123,dl_vlan_pcp=0 actions=output:3
3525 event=DELETED reason=delete table=0 cookie=0x5 in_port=0,dl_vlan=123,dl_vlan_pcp=1 actions=output:3
3526 NXST_FLOW_MONITOR reply (xid=0x0):
3527 event=DELETED reason=delete table=0 cookie=0 in_port=0 actions=output:23
3528 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=0 actions=output:20
3529 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=0 actions=output:18
3530 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=1 actions=output:19
3531 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=124 actions=output:2
3532 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=4095 actions=output:14
3533 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=4095,dl_vlan_pcp=0 actions=output:12
3534 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=4095,dl_vlan_pcp=1 actions=output:13
3535 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan_pcp=0 actions=output:21
3536 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan_pcp=1 actions=output:22
3537 event=DELETED reason=delete table=0 cookie=0 in_port=0,vlan_tci=0x0000 actions=output:11
3538 OFPT_BARRIER_REPLY:
3539 ])
3540
3541 # Check that our own changes are reported as full updates.
3542 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3543 ovs-ofctl add-flow br0 in_port=1,actions=output:2
3544 ovs-ofctl add-flow br0 in_port=2,actions=output:1
3545 ovs-appctl -t ovs-ofctl ofctl/barrier
3546 ovs-appctl -t ovs-ofctl ofctl/send 010e004812345678003fffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000ffffffffffff0000
3547 ovs-appctl -t ovs-ofctl ofctl/barrier
3548 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0], [NXST_FLOW reply:
3549 ])
3550 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log | multiline_sort], [0],
3551 [NXST_FLOW_MONITOR reply (xid=0x0):
3552 event=ADDED table=0 cookie=0 in_port=1 actions=output:2
3553 NXST_FLOW_MONITOR reply (xid=0x0):
3554 event=ADDED table=0 cookie=0 in_port=2 actions=output:1
3555 OFPT_BARRIER_REPLY:
3556 send: OFPT_FLOW_MOD: DEL priority=0 actions=drop
3557 NXST_FLOW_MONITOR reply (xid=0x0):
3558 event=DELETED reason=delete table=0 cookie=0 in_port=1 actions=output:2
3559 event=DELETED reason=delete table=0 cookie=0 in_port=2 actions=output:1
3560 OFPT_BARRIER_REPLY:
3561 ])
3562
3563 ovs-appctl -t ovs-ofctl exit
3564 OVS_VSWITCHD_STOP
3565 AT_CLEANUP
3566
3567 AT_SETUP([ofproto - flow monitoring with !own])
3568 AT_KEYWORDS([monitor])
3569 OVS_VSWITCHD_START
3570
3571 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:1
3572
3573 # Start a monitor watching the flow table and check the initial reply.
3574 ovs-ofctl monitor br0 watch:\!own --detach --no-chdir --pidfile >monitor.log 2>&1
3575 AT_CAPTURE_FILE([monitor.log])
3576 ovs-appctl -t ovs-ofctl ofctl/barrier
3577 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
3578 [NXST_FLOW_MONITOR reply:
3579 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:1
3580 OFPT_BARRIER_REPLY:
3581 ])
3582
3583 # Check that our own changes are reported as abbreviations.
3584 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3585 ovs-ofctl add-flow br0 in_port=1,actions=output:2
3586 ovs-ofctl add-flow br0 in_port=2,actions=output:1
3587 ovs-appctl -t ovs-ofctl ofctl/barrier
3588 ovs-appctl -t ovs-ofctl ofctl/send 010e004812345678003fffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000ffffffffffff0000
3589 ovs-appctl -t ovs-ofctl ofctl/barrier
3590 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0], [NXST_FLOW reply:
3591 ])
3592 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
3593 [NXST_FLOW_MONITOR reply (xid=0x0):
3594 event=ADDED table=0 cookie=0 in_port=1 actions=output:2
3595 NXST_FLOW_MONITOR reply (xid=0x0):
3596 event=ADDED table=0 cookie=0 in_port=2 actions=output:1
3597 OFPT_BARRIER_REPLY:
3598 send: OFPT_FLOW_MOD: DEL priority=0 actions=drop
3599 NXST_FLOW_MONITOR reply (xid=0x0):
3600 event=ABBREV xid=0x12345678
3601 OFPT_BARRIER_REPLY:
3602 ])
3603
3604 ovs-appctl -t ovs-ofctl exit
3605 OVS_VSWITCHD_STOP
3606 AT_CLEANUP
3607
3608 AT_SETUP([ofproto - flow monitoring with out_port])
3609 AT_KEYWORDS([monitor])
3610 OVS_VSWITCHD_START
3611
3612 ovs-ofctl add-flow br0 in_port=0,dl_vlan=121,actions=output:1
3613 ovs-ofctl add-flow br0 in_port=0,dl_vlan=122,actions=output:1
3614 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:2
3615
3616 # Start a monitor watching the flow table and check the initial reply.
3617 ovs-ofctl monitor br0 watch:out_port=2 --detach --no-chdir --pidfile >monitor.log 2>&1
3618 AT_CAPTURE_FILE([monitor.log])
3619 ovs-appctl -t ovs-ofctl ofctl/barrier
3620 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
3621 [NXST_FLOW_MONITOR reply:
3622 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:2
3623 OFPT_BARRIER_REPLY:
3624 ])
3625
3626 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3627
3628 # Add, modify flows and check the updates.
3629 ovs-ofctl mod-flows br0 dl_vlan=121,actions=drop
3630 ovs-ofctl mod-flows br0 dl_vlan=122,actions=output:1,output:2
3631 ovs-appctl -t ovs-ofctl ofctl/barrier
3632
3633 ovs-ofctl mod-flows br0 dl_vlan=123,actions=output:1,output:2
3634 ovs-appctl -t ovs-ofctl ofctl/barrier
3635
3636 ovs-ofctl mod-flows br0 dl_vlan=122,actions=output:1
3637 ovs-appctl -t ovs-ofctl ofctl/barrier
3638 ovs-ofctl mod-flows br0 dl_vlan=123,actions=output:2
3639 ovs-appctl -t ovs-ofctl ofctl/barrier
3640
3641 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
3642 [NXST_FLOW_MONITOR reply (xid=0x0):
3643 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=122 actions=output:1,output:2
3644 OFPT_BARRIER_REPLY:
3645 NXST_FLOW_MONITOR reply (xid=0x0):
3646 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:1,output:2
3647 OFPT_BARRIER_REPLY:
3648 NXST_FLOW_MONITOR reply (xid=0x0):
3649 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=122 actions=output:1
3650 OFPT_BARRIER_REPLY:
3651 NXST_FLOW_MONITOR reply (xid=0x0):
3652 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:2
3653 OFPT_BARRIER_REPLY:
3654 ])
3655
3656 ovs-appctl -t ovs-ofctl exit
3657 OVS_VSWITCHD_STOP
3658 AT_CLEANUP
3659
3660 AT_SETUP([ofproto - flow monitoring pause and resume])
3661 AT_KEYWORDS([monitor])
3662
3663 # The maximum socket receive buffer size is important for this test, which
3664 # tests behavior when the receive buffer overflows.
3665 if test -e /proc/sys/net/core/rmem_max; then
3666 # Linux
3667 rmem_max=`cat /proc/sys/net/core/rmem_max`
3668 elif rmem_max=`sysctl -n net.inet.tcp.recvbuf_max 2>/dev/null`; then
3669 : # FreeBSD, NetBSD
3670 else
3671 # Don't know how to get maximum socket receive buffer on this OS
3672 AT_SKIP_IF([:])
3673 fi
3674 # Calculate the total amount of queuing: rmem_max in the kernel, 128 kB
3675 # in ofproto sending userspace (see ofmonitor_flush() in connmgr.c).
3676 queue_size=`expr $rmem_max + 128 \* 1024`
3677 echo rmem_max=$rmem_max queue_size=$queue_size
3678
3679 # If there's too much queuing skip the test to avoid timing out.
3680 AT_SKIP_IF([test $rmem_max -gt 1048576])
3681
3682 # Each flow update message takes up at least 48 bytes of space in queues
3683 # and in practice more than that.
3684 n_msgs=`expr $queue_size / 48`
3685 echo n_msgs=$n_msgs
3686
3687 OVS_VSWITCHD_START
3688
3689 # Start a monitor watching the flow table, then make it block.
3690 on_exit 'kill `cat ovs-ofctl.pid`'
3691 ovs-ofctl monitor br0 watch: --detach --no-chdir --pidfile >monitor.log 2>&1
3692 AT_CAPTURE_FILE([monitor.log])
3693 ovs-appctl -t ovs-ofctl ofctl/block
3694
3695 # Add $n_msgs flows.
3696 (echo "in_port=2,actions=output:2"
3697 ${PERL} -e '
3698 for ($i = 0; $i < '$n_msgs'; $i++) {
3699 print "cookie=1,reg1=$i,actions=drop\n";
3700 }
3701 ') > flows.txt
3702 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
3703 # Check that multipart flow dumps work properly:
3704 AT_CHECK([ovs-ofctl diff-flows br0 flows.txt])
3705 AT_CHECK([ovs-ofctl add-flow br0 in_port=1,cookie=3,actions=drop])
3706 AT_CHECK([ovs-ofctl mod-flows br0 in_port=2,cookie=2,actions=output:2])
3707 AT_CHECK([ovs-ofctl del-flows br0 cookie=1/-1])
3708
3709 ovs-appctl -t ovs-ofctl ofctl/unblock
3710
3711 # Wait for the connection resumed.
3712 # A barrier doesn't work for this purpose.
3713 # https://www.mail-archive.com/dev@openvswitch.org/msg27013.html
3714 # https://www.mail-archive.com/dev@openvswitch.org/msg27675.html
3715 OVS_WAIT_UNTIL([grep NXT_FLOW_MONITOR_RESUMED monitor.log])
3716
3717 ovs-appctl -t ovs-ofctl exit
3718
3719 # Check that the flow monitor reported the same number of flows
3720 # added and deleted, but fewer than we actually added and deleted.
3721 adds=`grep -c 'ADDED.*reg1=' monitor.log`
3722 deletes=`grep -c 'DELETED.*reg1=' monitor.log`
3723 echo adds=$adds deletes=$deletes
3724 AT_CHECK([test $adds -gt 100 && test $adds -lt $n_msgs])
3725 AT_CHECK([test $adds = $deletes])
3726
3727 # Check that the flow monitor reported everything in the expected order:
3728 #
3729 # event=ADDED table=0 cookie=0x1 reg1=0x22
3730 # ...
3731 # NXT_FLOW_MONITOR_PAUSED:
3732 # ...
3733 # event=DELETED reason=delete table=0 cookie=0x1 reg1=0x22
3734 # ...
3735 # event=ADDED table=0 cookie=0x3 in_port=1
3736 # event=MODIFIED table=0 cookie=0x2 in_port=2 actions=output:2
3737 # NXT_FLOW_MONITOR_RESUMED:
3738 #
3739 # except that, between the PAUSED and RESUMED, the order of the ADDED
3740 # and MODIFIED lines lines depends on hash order, that is, it varies
3741 # as we change the hash function or change architecture. Therefore,
3742 # we use a couple of tests below to accept both orders.
3743 AT_CHECK([ofctl_strip < monitor.log | sed -n -e '
3744 /reg1=0x22$/p
3745 /cookie=0x[[23]]/p
3746 /NXT_FLOW_MONITOR_PAUSED:/p
3747 /NXT_FLOW_MONITOR_RESUMED:/p
3748 ' > monitor.log.subset])
3749 AT_CHECK([grep -v MODIFIED monitor.log.subset], [0], [dnl
3750 event=ADDED table=0 cookie=0x1 reg1=0x22
3751 NXT_FLOW_MONITOR_PAUSED:
3752 event=DELETED reason=delete table=0 cookie=0x1 reg1=0x22
3753 event=ADDED table=0 cookie=0x3 in_port=1
3754 NXT_FLOW_MONITOR_RESUMED:
3755 ])
3756 AT_CHECK([grep -v ADDED monitor.log.subset], [0], [dnl
3757 NXT_FLOW_MONITOR_PAUSED:
3758 event=DELETED reason=delete table=0 cookie=0x1 reg1=0x22
3759 event=MODIFIED table=0 cookie=0x2 in_port=2 actions=output:2
3760 NXT_FLOW_MONITOR_RESUMED:
3761 ])
3762
3763 OVS_VSWITCHD_STOP
3764 AT_CLEANUP
3765
3766 AT_SETUP([ofproto - event filtering (OpenFlow 1.3)])
3767 AT_KEYWORDS([monitor])
3768 OVS_VSWITCHD_START
3769
3770 # Start a monitor, use the required protocol version
3771 ovs-ofctl -O OpenFlow13 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
3772 AT_CAPTURE_FILE([monitor.log])
3773
3774 # Send an OpenFlow13 message (04), OFPT_GET_ASYNC_REQUEST (1a), length (8), xid (0a)
3775 ovs-appctl -t ovs-ofctl ofctl/send 041a00080000000a
3776 ovs-appctl -t ovs-ofctl ofctl/barrier
3777
3778 # Check default setting
3779 read -r -d '' expected <<'EOF'
3780 EOF
3781
3782 AT_CHECK([ofctl_strip < monitor.log], [], [dnl
3783 send: OFPT_GET_ASYNC_REQUEST (OF1.3):
3784 OFPT_GET_ASYNC_REPLY (OF1.3):
3785 master:
3786 PACKET_IN: no_match action
3787 PORT_STATUS: add delete modify
3788 FLOW_REMOVED: idle hard delete
3789
3790 slave:
3791 PACKET_IN: (off)
3792 PORT_STATUS: add delete modify
3793 FLOW_REMOVED: (off)
3794 OFPT_BARRIER_REPLY (OF1.3):
3795 ])
3796
3797 OVS_VSWITCHD_STOP
3798 AT_CLEANUP
3799
3800 AT_SETUP([ofproto - ofport_request])
3801 OVS_VSWITCHD_START
3802 ADD_OF_PORTS([br0], [1], [2], [3])
3803
3804 set_and_check_specific_ofports () {
3805 ovs-vsctl set Interface p1 ofport_request="$1" -- \
3806 set Interface p2 ofport_request="$2" -- \
3807 set Interface p3 ofport_request="$3"
3808 ofports=`ovs-vsctl get Interface p1 ofport -- \
3809 get Interface p2 ofport -- \
3810 get Interface p3 ofport`
3811 AT_CHECK_UNQUOTED([echo $ofports], [0], [$1 $2 $3
3812 ])
3813 }
3814 for pre in '1 2 3' '1 3 2' '2 1 3' '2 3 1' '3 1 2' '3 2 1'; do
3815 for post in '1 2 3' '1 3 2' '2 1 3' '2 3 1' '3 1 2' '3 2 1'; do
3816 echo -----------------------------------------------------------
3817 echo "Check changing port numbers from $pre to $post"
3818 set_and_check_specific_ofports $pre
3819 set_and_check_specific_ofports $post
3820 done
3821 done
3822
3823 ovs-vsctl del-port p3
3824
3825 set_and_check_poorly_specified_ofports () {
3826 ovs-vsctl set Interface p1 ofport_request="$1" -- \
3827 set Interface p2 ofport_request="$2"
3828 p1=`ovs-vsctl get Interface p1 ofport`
3829 p2=`ovs-vsctl get Interface p2 ofport`
3830 echo $p1 $p2
3831
3832 AT_CHECK([test "$p1" != "$p2"])
3833 if test "$1" = "$2" && test "$1" != '[[]]'; then
3834 # One port number must be the requested one.
3835 AT_CHECK([test "$p1" = "$1" || test "$p2" = "$1"])
3836 # The other port number must be different (already tested above).
3837 else
3838 AT_CHECK([test "$1" = '[[]]' || test "$p1" = "$1"])
3839 AT_CHECK([test "$2" = '[[]]' || test "$p2" = "$2"])
3840 fi
3841 }
3842 for pre in '1 2' '[[]] 2' '1 [[]]' '[[]] [[]]' '2 1' '[[]] 1' '2 [[]]' \
3843 '1 1' '2 2'; do
3844 for post in '1 2' '[[]] 2' '1 [[]]' '[[]] [[]]' '2 1' '[[]] 1' '2 [[]]' \
3845 '1 1' '2 2'; do
3846 echo -----------------------------------------------------------
3847 echo "Check changing port numbers from $pre to $post"
3848 set_and_check_poorly_specified_ofports $pre
3849 set_and_check_poorly_specified_ofports $post
3850 done
3851 done
3852 OVS_VSWITCHD_STOP
3853 AT_CLEANUP
3854
3855
3856 AT_SETUP([ofproto - bundles, open (OpenFlow 1.4)])
3857 AT_KEYWORDS([monitor])
3858 OVS_VSWITCHD_START
3859
3860 # Start a monitor, use the required protocol version
3861 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
3862 AT_CAPTURE_FILE([monitor.log])
3863
3864 # Send an OpenFlow14 message (05), OFPT_BUNDLE_CONTROL (21), length (10), xid (0a)
3865 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 02"
3866 ovs-appctl -t ovs-ofctl ofctl/barrier
3867 ovs-appctl -t ovs-ofctl exit
3868
3869 AT_CHECK([ofctl_strip < monitor.log], [], [dnl
3870 send: OFPT_BUNDLE_CONTROL (OF1.4):
3871 bundle_id=0x1 type=OPEN_REQUEST flags=ordered
3872 OFPT_BUNDLE_CONTROL (OF1.4):
3873 bundle_id=0x1 type=OPEN_REPLY flags=0
3874 OFPT_BARRIER_REPLY (OF1.4):
3875 ])
3876
3877 OVS_VSWITCHD_STOP
3878 AT_CLEANUP
3879
3880 AT_SETUP([ofproto - bundles, double open (OpenFlow 1.4)])
3881 AT_KEYWORDS([monitor])
3882 OVS_VSWITCHD_START
3883
3884 # Start a monitor, use the required protocol version
3885 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
3886 AT_CAPTURE_FILE([monitor.log])
3887
3888 # Send twice an OpenFlow14 message (05), OFPT_BUNDLE_CONTROL (21), length (10), xid (0a)
3889 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 02"
3890 ovs-appctl -t ovs-ofctl ofctl/barrier
3891 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 02"
3892 ovs-appctl -t ovs-ofctl ofctl/barrier
3893 ovs-appctl -t ovs-ofctl exit
3894
3895 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
3896 send: OFPT_BUNDLE_CONTROL (OF1.4):
3897 bundle_id=0x1 type=OPEN_REQUEST flags=ordered
3898 OFPT_BUNDLE_CONTROL (OF1.4):
3899 bundle_id=0x1 type=OPEN_REPLY flags=0
3900 OFPT_BARRIER_REPLY (OF1.4):
3901 send: OFPT_BUNDLE_CONTROL (OF1.4):
3902 bundle_id=0x1 type=OPEN_REQUEST flags=ordered
3903 OFPT_ERROR (OF1.4): OFPBFC_BAD_ID
3904 OFPT_BUNDLE_CONTROL (OF1.4):
3905 bundle_id=0x1 type=OPEN_REQUEST flags=ordered
3906 OFPT_BARRIER_REPLY (OF1.4):
3907 ])
3908
3909 OVS_VSWITCHD_STOP
3910 AT_CLEANUP
3911
3912 AT_SETUP([ofproto - bundle close without open (OpenFlow 1.4)])
3913 AT_KEYWORDS([monitor])
3914 OVS_VSWITCHD_START
3915
3916 # Start a monitor, use the required protocol version
3917 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
3918 AT_CAPTURE_FILE([monitor.log])
3919
3920 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 02 00 02"
3921 ovs-appctl -t ovs-ofctl ofctl/barrier
3922 ovs-appctl -t ovs-ofctl exit
3923
3924 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
3925 send: OFPT_BUNDLE_CONTROL (OF1.4):
3926 bundle_id=0x1 type=CLOSE_REQUEST flags=ordered
3927 OFPT_ERROR (OF1.4): OFPBFC_BAD_ID
3928 OFPT_BUNDLE_CONTROL (OF1.4):
3929 bundle_id=0x1 type=CLOSE_REQUEST flags=ordered
3930 OFPT_BARRIER_REPLY (OF1.4):
3931 ])
3932
3933 OVS_VSWITCHD_STOP
3934 AT_CLEANUP
3935
3936 AT_SETUP([ofproto - bundle double close (OpenFlow 1.4)])
3937 AT_KEYWORDS([monitor])
3938 OVS_VSWITCHD_START
3939
3940 # Start a monitor, use the required protocol version
3941 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
3942 AT_CAPTURE_FILE([monitor.log])
3943
3944 # Open, Close, Close
3945 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 02"
3946 ovs-appctl -t ovs-ofctl ofctl/barrier
3947 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 02 00 02"
3948 ovs-appctl -t ovs-ofctl ofctl/barrier
3949 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 02 00 02"
3950 ovs-appctl -t ovs-ofctl ofctl/barrier
3951 ovs-appctl -t ovs-ofctl exit
3952
3953 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
3954 send: OFPT_BUNDLE_CONTROL (OF1.4):
3955 bundle_id=0x1 type=OPEN_REQUEST flags=ordered
3956 OFPT_BUNDLE_CONTROL (OF1.4):
3957 bundle_id=0x1 type=OPEN_REPLY flags=0
3958 OFPT_BARRIER_REPLY (OF1.4):
3959 send: OFPT_BUNDLE_CONTROL (OF1.4):
3960 bundle_id=0x1 type=CLOSE_REQUEST flags=ordered
3961 OFPT_BUNDLE_CONTROL (OF1.4):
3962 bundle_id=0x1 type=CLOSE_REPLY flags=0
3963 OFPT_BARRIER_REPLY (OF1.4):
3964 send: OFPT_BUNDLE_CONTROL (OF1.4):
3965 bundle_id=0x1 type=CLOSE_REQUEST flags=ordered
3966 OFPT_ERROR (OF1.4): OFPBFC_BUNDLE_CLOSED
3967 OFPT_BUNDLE_CONTROL (OF1.4):
3968 bundle_id=0x1 type=CLOSE_REQUEST flags=ordered
3969 OFPT_BARRIER_REPLY (OF1.4):
3970 ])
3971
3972 OVS_VSWITCHD_STOP
3973 AT_CLEANUP
3974
3975 AT_SETUP([ofproto - bundle close, different flags (OpenFlow 1.4)])
3976 AT_KEYWORDS([monitor])
3977 OVS_VSWITCHD_START
3978
3979 # Start a monitor, use the required protocol version
3980 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
3981 AT_CAPTURE_FILE([monitor.log])
3982
3983 # Open, Close, Close
3984 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 02"
3985 ovs-appctl -t ovs-ofctl ofctl/barrier
3986 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 02 00 01"
3987 ovs-appctl -t ovs-ofctl ofctl/barrier
3988 ovs-appctl -t ovs-ofctl exit
3989
3990 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
3991 send: OFPT_BUNDLE_CONTROL (OF1.4):
3992 bundle_id=0x1 type=OPEN_REQUEST flags=ordered
3993 OFPT_BUNDLE_CONTROL (OF1.4):
3994 bundle_id=0x1 type=OPEN_REPLY flags=0
3995 OFPT_BARRIER_REPLY (OF1.4):
3996 send: OFPT_BUNDLE_CONTROL (OF1.4):
3997 bundle_id=0x1 type=CLOSE_REQUEST flags=atomic
3998 OFPT_ERROR (OF1.4): OFPBFC_BAD_FLAGS
3999 OFPT_BUNDLE_CONTROL (OF1.4):
4000 bundle_id=0x1 type=CLOSE_REQUEST flags=atomic
4001 OFPT_BARRIER_REPLY (OF1.4):
4002 ])
4003
4004 OVS_VSWITCHD_STOP
4005 AT_CLEANUP
4006
4007 AT_SETUP([ofproto - bundle commit without open (OpenFlow 1.4)])
4008 AT_KEYWORDS([monitor])
4009 OVS_VSWITCHD_START
4010
4011 # Start a monitor, use the required protocol version
4012 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
4013 AT_CAPTURE_FILE([monitor.log])
4014
4015 # Open, Close, Close
4016 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 04 00 02"
4017 ovs-appctl -t ovs-ofctl ofctl/barrier
4018 ovs-appctl -t ovs-ofctl exit
4019
4020 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
4021 send: OFPT_BUNDLE_CONTROL (OF1.4):
4022 bundle_id=0x1 type=COMMIT_REQUEST flags=ordered
4023 OFPT_ERROR (OF1.4): OFPBFC_BAD_ID
4024 OFPT_BUNDLE_CONTROL (OF1.4):
4025 bundle_id=0x1 type=COMMIT_REQUEST flags=ordered
4026 OFPT_BARRIER_REPLY (OF1.4):
4027 ])
4028
4029 OVS_VSWITCHD_STOP
4030 AT_CLEANUP
4031
4032 AT_SETUP([ofproto - bundle commit, different flags (OpenFlow 1.4)])
4033 AT_KEYWORDS([monitor])
4034 OVS_VSWITCHD_START
4035
4036 # Start a monitor, use the required protocol version
4037 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
4038 AT_CAPTURE_FILE([monitor.log])
4039
4040 # Open, Close, Close
4041 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 02"
4042 ovs-appctl -t ovs-ofctl ofctl/barrier
4043 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 04 00 01"
4044 ovs-appctl -t ovs-ofctl ofctl/barrier
4045 ovs-appctl -t ovs-ofctl exit
4046
4047 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
4048 send: OFPT_BUNDLE_CONTROL (OF1.4):
4049 bundle_id=0x1 type=OPEN_REQUEST flags=ordered
4050 OFPT_BUNDLE_CONTROL (OF1.4):
4051 bundle_id=0x1 type=OPEN_REPLY flags=0
4052 OFPT_BARRIER_REPLY (OF1.4):
4053 send: OFPT_BUNDLE_CONTROL (OF1.4):
4054 bundle_id=0x1 type=COMMIT_REQUEST flags=atomic
4055 OFPT_ERROR (OF1.4): OFPBFC_BAD_FLAGS
4056 OFPT_BUNDLE_CONTROL (OF1.4):
4057 bundle_id=0x1 type=COMMIT_REQUEST flags=atomic
4058 OFPT_BARRIER_REPLY (OF1.4):
4059 ])
4060
4061 OVS_VSWITCHD_STOP
4062 AT_CLEANUP
4063
4064 AT_SETUP([ofproto - bundle discard without open (OpenFlow 1.4)])
4065 AT_KEYWORDS([monitor])
4066 OVS_VSWITCHD_START
4067
4068 # Start a monitor, use the required protocol version
4069 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
4070 AT_CAPTURE_FILE([monitor.log])
4071
4072 # Open, Close, Close
4073 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 06 00 02"
4074 ovs-appctl -t ovs-ofctl ofctl/barrier
4075 ovs-appctl -t ovs-ofctl exit
4076
4077 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
4078 send: OFPT_BUNDLE_CONTROL (OF1.4):
4079 bundle_id=0x1 type=DISCARD_REQUEST flags=ordered
4080 OFPT_ERROR (OF1.4): OFPBFC_BAD_ID
4081 OFPT_BUNDLE_CONTROL (OF1.4):
4082 bundle_id=0x1 type=DISCARD_REQUEST flags=ordered
4083 OFPT_BARRIER_REPLY (OF1.4):
4084 ])
4085
4086 OVS_VSWITCHD_STOP
4087 AT_CLEANUP
4088
4089
4090 AT_SETUP([ofproto - bundle with multiple flow mods (OpenFlow 1.4)])
4091 AT_KEYWORDS([monitor])
4092 OVS_VSWITCHD_START
4093
4094 AT_CHECK([ovs-appctl vlog/set vconn:dbg])
4095
4096 AT_CHECK([ovs-ofctl del-flows br0])
4097
4098 AT_DATA([flows.txt], [dnl
4099 add idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=1
4100 add idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=2
4101 add idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=3
4102 add idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=4
4103 delete
4104 add idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=5
4105 add idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=6
4106 add idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=7
4107 delete in_port=2 dl_src=00:88:99:aa:bb:cc
4108 ])
4109
4110 AT_CHECK([ovs-ofctl --bundle add-flows br0 flows.txt])
4111
4112 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
4113 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=output:5
4114 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:6
4115 NXST_FLOW reply:
4116 ])
4117
4118 AT_DATA([flows.txt], [dnl
4119 modify actions=drop
4120 modify_strict in_port=2 dl_src=00:77:88:99:aa:bb actions=7
4121 ])
4122
4123 AT_CHECK([ovs-ofctl --bundle add-flows br0 flows.txt])
4124
4125 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
4126 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
4127 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:7
4128 NXST_FLOW reply:
4129 ])
4130
4131 # Adding an existing flow acts as a modify, and delete_strict also works.
4132 AT_DATA([flows.txt], [dnl
4133 add idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=8
4134 delete_strict in_port=2 dl_src=00:66:77:88:99:aa
4135 add in_port=2 dl_src=00:66:77:88:99:aa actions=drop
4136 ])
4137
4138 AT_CHECK([ovs-ofctl --bundle add-flows br0 flows.txt])
4139
4140 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
4141 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:8
4142 in_port=2,dl_src=00:66:77:88:99:aa actions=drop
4143 NXST_FLOW reply:
4144 ])
4145
4146 dnl Check logs for OpenFlow trace
4147 # Prevent race.
4148 OVS_WAIT_UNTIL([cat ovs-vswitchd.log | vconn_sub | test `grep -- "|vconn|DBG|unix: sent (Success): NXST_FLOW reply" | wc -l` -ge 3])
4149 AT_CHECK([print_vconn_debug | vconn_sub | ofctl_strip], [0], [dnl
4150 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4151 version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4152 vconn|DBG|unix: received: OFPT_HELLO:
4153 version bitmap: 0x01
4154 vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
4155 vconn|DBG|unix: received: OFPT_FLOW_MOD: DEL actions=drop
4156 vconn|DBG|unix: received: OFPT_BARRIER_REQUEST:
4157 vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY:
4158 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4159 version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4160 vconn|DBG|unix: received: OFPT_HELLO (OF1.4):
4161 version bitmap: 0x05
4162 vconn|DBG|unix: negotiated OpenFlow version 0x05 (we support version 0x06 and earlier, peer supports version 0x05)
4163 vconn|DBG|unix: received: OFPT_BUNDLE_CONTROL (OF1.4):
4164 bundle_id=0 type=OPEN_REQUEST flags=atomic ordered
4165 vconn|DBG|unix: sent (Success): OFPT_BUNDLE_CONTROL (OF1.4):
4166 bundle_id=0 type=OPEN_REPLY flags=0
4167 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4168 bundle_id=0 flags=atomic ordered
4169 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:66:77:88:99:aa idle:50 actions=output:1
4170 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4171 bundle_id=0 flags=atomic ordered
4172 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:77:88:99:aa:bb idle:60 actions=output:2
4173 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4174 bundle_id=0 flags=atomic ordered
4175 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:88:99:aa:bb:cc idle:70 actions=output:3
4176 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4177 bundle_id=0 flags=atomic ordered
4178 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:66:77:88:99:aa idle:50 actions=output:4
4179 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4180 bundle_id=0 flags=atomic ordered
4181 OFPT_FLOW_MOD (OF1.4): DEL table:255 actions=drop
4182 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4183 bundle_id=0 flags=atomic ordered
4184 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:66:77:88:99:aa idle:50 actions=output:5
4185 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4186 bundle_id=0 flags=atomic ordered
4187 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:77:88:99:aa:bb idle:60 actions=output:6
4188 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4189 bundle_id=0 flags=atomic ordered
4190 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:88:99:aa:bb:cc idle:70 actions=output:7
4191 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4192 bundle_id=0 flags=atomic ordered
4193 OFPT_FLOW_MOD (OF1.4): DEL table:255 in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
4194 vconn|DBG|unix: received: OFPT_BUNDLE_CONTROL (OF1.4):
4195 bundle_id=0 type=COMMIT_REQUEST flags=atomic ordered
4196 vconn|DBG|unix: sent (Success): OFPT_BUNDLE_CONTROL (OF1.4):
4197 bundle_id=0 type=COMMIT_REPLY flags=0
4198 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4199 version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4200 vconn|DBG|unix: received: OFPT_HELLO:
4201 version bitmap: 0x01
4202 vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
4203 vconn|DBG|unix: received: NXT_SET_FLOW_FORMAT: format=nxm
4204 vconn|DBG|unix: received: OFPT_BARRIER_REQUEST:
4205 vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY:
4206 vconn|DBG|unix: received: NXST_FLOW request:
4207 vconn|DBG|unix: sent (Success): NXST_FLOW reply:
4208 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=output:5
4209 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:6
4210 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4211 version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4212 vconn|DBG|unix: received: OFPT_HELLO (OF1.4):
4213 version bitmap: 0x05
4214 vconn|DBG|unix: negotiated OpenFlow version 0x05 (we support version 0x06 and earlier, peer supports version 0x05)
4215 vconn|DBG|unix: received: OFPT_BUNDLE_CONTROL (OF1.4):
4216 bundle_id=0 type=OPEN_REQUEST flags=atomic ordered
4217 vconn|DBG|unix: sent (Success): OFPT_BUNDLE_CONTROL (OF1.4):
4218 bundle_id=0 type=OPEN_REPLY flags=0
4219 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4220 bundle_id=0 flags=atomic ordered
4221 OFPT_FLOW_MOD (OF1.4): MOD actions=drop
4222 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4223 bundle_id=0 flags=atomic ordered
4224 OFPT_FLOW_MOD (OF1.4): MOD_STRICT in_port=2,dl_src=00:77:88:99:aa:bb actions=output:7
4225 vconn|DBG|unix: received: OFPT_BUNDLE_CONTROL (OF1.4):
4226 bundle_id=0 type=COMMIT_REQUEST flags=atomic ordered
4227 vconn|DBG|unix: sent (Success): OFPT_BUNDLE_CONTROL (OF1.4):
4228 bundle_id=0 type=COMMIT_REPLY flags=0
4229 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4230 version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4231 vconn|DBG|unix: received: OFPT_HELLO:
4232 version bitmap: 0x01
4233 vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
4234 vconn|DBG|unix: received: NXT_SET_FLOW_FORMAT: format=nxm
4235 vconn|DBG|unix: received: OFPT_BARRIER_REQUEST:
4236 vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY:
4237 vconn|DBG|unix: received: NXST_FLOW request:
4238 vconn|DBG|unix: sent (Success): NXST_FLOW reply:
4239 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
4240 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:7
4241 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4242 version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4243 vconn|DBG|unix: received: OFPT_HELLO (OF1.4):
4244 version bitmap: 0x05
4245 vconn|DBG|unix: negotiated OpenFlow version 0x05 (we support version 0x06 and earlier, peer supports version 0x05)
4246 vconn|DBG|unix: received: OFPT_BUNDLE_CONTROL (OF1.4):
4247 bundle_id=0 type=OPEN_REQUEST flags=atomic ordered
4248 vconn|DBG|unix: sent (Success): OFPT_BUNDLE_CONTROL (OF1.4):
4249 bundle_id=0 type=OPEN_REPLY flags=0
4250 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4251 bundle_id=0 flags=atomic ordered
4252 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:77:88:99:aa:bb idle:60 actions=output:8
4253 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4254 bundle_id=0 flags=atomic ordered
4255 OFPT_FLOW_MOD (OF1.4): DEL_STRICT table:255 in_port=2,dl_src=00:66:77:88:99:aa actions=drop
4256 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4257 bundle_id=0 flags=atomic ordered
4258 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:66:77:88:99:aa actions=drop
4259 vconn|DBG|unix: received: OFPT_BUNDLE_CONTROL (OF1.4):
4260 bundle_id=0 type=COMMIT_REQUEST flags=atomic ordered
4261 vconn|DBG|unix: sent (Success): OFPT_BUNDLE_CONTROL (OF1.4):
4262 bundle_id=0 type=COMMIT_REPLY flags=0
4263 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4264 version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4265 vconn|DBG|unix: received: OFPT_HELLO:
4266 version bitmap: 0x01
4267 vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
4268 vconn|DBG|unix: received: NXT_SET_FLOW_FORMAT: format=nxm
4269 vconn|DBG|unix: received: OFPT_BARRIER_REQUEST:
4270 vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY:
4271 vconn|DBG|unix: received: NXST_FLOW request:
4272 vconn|DBG|unix: sent (Success): NXST_FLOW reply:
4273 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:8
4274 in_port=2,dl_src=00:66:77:88:99:aa actions=drop
4275 ])
4276
4277 OVS_VSWITCHD_STOP
4278 AT_CLEANUP
4279
4280
4281 AT_SETUP([ofproto - failing bundle commit (OpenFlow 1.4)])
4282 AT_KEYWORDS([monitor])
4283 OVS_VSWITCHD_START
4284
4285 AT_CHECK([ovs-ofctl del-flows br0])
4286
4287 ovs-ofctl add-flows br0 - <<EOF
4288 idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=11
4289 idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=22
4290 idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=33
4291 EOF
4292 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
4293 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=output:11
4294 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:22
4295 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=output:33
4296 NXST_FLOW reply:
4297 ])
4298
4299 # last line uses illegal table number (OVS internal table)
4300 AT_DATA([flows.txt], [dnl
4301 add idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=1
4302 add idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=2
4303 add idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=3
4304 modify idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=4
4305 delete
4306 add idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=5
4307 add idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=6
4308 add idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=7
4309 delete in_port=2 dl_src=00:88:99:aa:bb:cc
4310 add table=254 actions=drop
4311 ])
4312
4313 AT_CHECK([ovs-ofctl --bundle add-flows br0 flows.txt 2>&1 | sed '/|WARN|/d
4314 s/unix:.*br0\.mgmt/unix:br0.mgmt/' | sed 's/(.* error)/(error)/'],
4315 [0], [dnl
4316 OFPT_ERROR (OF1.4) (xid=0xb): OFPBRC_EPERM
4317 OFPT_FLOW_MOD (OF1.4) (xid=0xb): ADD table:254 actions=drop
4318 OFPT_ERROR (OF1.4) (xid=0xd): OFPBFC_MSG_FAILED
4319 OFPT_BUNDLE_CONTROL (OF1.4) (xid=0xd):
4320 bundle_id=0 type=COMMIT_REQUEST flags=atomic ordered
4321 ovs-ofctl: talking to unix:br0.mgmt (error)
4322 ])
4323
4324 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
4325 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=output:11
4326 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:22
4327 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=output:33
4328 NXST_FLOW reply:
4329 ])
4330
4331 OVS_VSWITCHD_STOP
4332 AT_CLEANUP