Allow flow-based IPv6 tunnels to be configured with OpenFlow
[cascardo/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_ipv6_src tun_ipv6_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_ipv6_src: arbitrary mask
1733       tun_ipv6_dst: arbitrary mask
1734       tun_flags: arbitrary mask
1735       tun_gbp_id: arbitrary mask
1736       tun_gbp_flags: arbitrary mask
1737       tun_metadata0: arbitrary mask
1738       tun_metadata1: arbitrary mask
1739       tun_metadata2: arbitrary mask
1740       tun_metadata3: arbitrary mask
1741       tun_metadata4: arbitrary mask
1742       tun_metadata5: arbitrary mask
1743       tun_metadata6: arbitrary mask
1744       tun_metadata7: arbitrary mask
1745       tun_metadata8: arbitrary mask
1746       tun_metadata9: arbitrary mask
1747       tun_metadata10: arbitrary mask
1748       tun_metadata11: arbitrary mask
1749       tun_metadata12: arbitrary mask
1750       tun_metadata13: arbitrary mask
1751       tun_metadata14: arbitrary mask
1752       tun_metadata15: arbitrary mask
1753       tun_metadata16: arbitrary mask
1754       tun_metadata17: arbitrary mask
1755       tun_metadata18: arbitrary mask
1756       tun_metadata19: arbitrary mask
1757       tun_metadata20: arbitrary mask
1758       tun_metadata21: arbitrary mask
1759       tun_metadata22: arbitrary mask
1760       tun_metadata23: arbitrary mask
1761       tun_metadata24: arbitrary mask
1762       tun_metadata25: arbitrary mask
1763       tun_metadata26: arbitrary mask
1764       tun_metadata27: arbitrary mask
1765       tun_metadata28: arbitrary mask
1766       tun_metadata29: arbitrary mask
1767       tun_metadata30: arbitrary mask
1768       tun_metadata31: arbitrary mask
1769       tun_metadata32: arbitrary mask
1770       tun_metadata33: arbitrary mask
1771       tun_metadata34: arbitrary mask
1772       tun_metadata35: arbitrary mask
1773       tun_metadata36: arbitrary mask
1774       tun_metadata37: arbitrary mask
1775       tun_metadata38: arbitrary mask
1776       tun_metadata39: arbitrary mask
1777       tun_metadata40: arbitrary mask
1778       tun_metadata41: arbitrary mask
1779       tun_metadata42: arbitrary mask
1780       tun_metadata43: arbitrary mask
1781       tun_metadata44: arbitrary mask
1782       tun_metadata45: arbitrary mask
1783       tun_metadata46: arbitrary mask
1784       tun_metadata47: arbitrary mask
1785       tun_metadata48: arbitrary mask
1786       tun_metadata49: arbitrary mask
1787       tun_metadata50: arbitrary mask
1788       tun_metadata51: arbitrary mask
1789       tun_metadata52: arbitrary mask
1790       tun_metadata53: arbitrary mask
1791       tun_metadata54: arbitrary mask
1792       tun_metadata55: arbitrary mask
1793       tun_metadata56: arbitrary mask
1794       tun_metadata57: arbitrary mask
1795       tun_metadata58: arbitrary mask
1796       tun_metadata59: arbitrary mask
1797       tun_metadata60: arbitrary mask
1798       tun_metadata61: arbitrary mask
1799       tun_metadata62: arbitrary mask
1800       tun_metadata63: arbitrary mask
1801       metadata: arbitrary mask
1802       in_port: exact match or wildcard
1803       in_port_oxm: exact match or wildcard
1804       actset_output: exact match or wildcard
1805       pkt_mark: arbitrary mask
1806       ct_state: arbitrary mask
1807       ct_zone: exact match or wildcard
1808       ct_mark: arbitrary mask
1809       ct_label: arbitrary mask
1810       reg0: arbitrary mask
1811       reg1: arbitrary mask
1812       reg2: arbitrary mask
1813       reg3: arbitrary mask
1814       reg4: arbitrary mask
1815       reg5: arbitrary mask
1816       reg6: arbitrary mask
1817       reg7: arbitrary mask
1818       xreg0: arbitrary mask
1819       xreg1: arbitrary mask
1820       xreg2: arbitrary mask
1821       xreg3: arbitrary mask
1822       eth_src: arbitrary mask
1823       eth_dst: arbitrary mask
1824       eth_type: exact match or wildcard
1825       vlan_tci: arbitrary mask
1826       vlan_vid: arbitrary mask
1827       vlan_pcp: exact match or wildcard
1828       mpls_label: exact match or wildcard
1829       mpls_tc: exact match or wildcard
1830       mpls_bos: exact match or wildcard
1831       ip_src: arbitrary mask
1832       ip_dst: arbitrary mask
1833       ipv6_src: arbitrary mask
1834       ipv6_dst: arbitrary mask
1835       ipv6_label: arbitrary mask
1836       nw_proto: exact match or wildcard
1837       nw_tos: exact match or wildcard
1838       ip_dscp: exact match or wildcard
1839       nw_ecn: exact match or wildcard
1840       nw_ttl: exact match or wildcard
1841       ip_frag: arbitrary mask
1842       arp_op: exact match or wildcard
1843       arp_spa: arbitrary mask
1844       arp_tpa: arbitrary mask
1845       arp_sha: arbitrary mask
1846       arp_tha: arbitrary mask
1847       tcp_src: arbitrary mask
1848       tcp_dst: arbitrary mask
1849       tcp_flags: arbitrary mask
1850       udp_src: arbitrary mask
1851       udp_dst: arbitrary mask
1852       sctp_src: arbitrary mask
1853       sctp_dst: arbitrary mask
1854       icmp_type: exact match or wildcard
1855       icmp_code: exact match or wildcard
1856       icmpv6_type: exact match or wildcard
1857       icmpv6_code: exact match or wildcard
1858       nd_target: arbitrary mask
1859       nd_sll: arbitrary mask
1860       nd_tll: arbitrary mask
1861
1862 ' $1
1863 }
1864 ditto() {
1865     printf '  table %d ("%s"):
1866     metadata: match=0xffffffffffffffff write=0xffffffffffffffff
1867     max_entries=%d
1868     instructions (table miss and others):
1869       next tables: %d-253
1870       (same instructions)
1871       (same actions)
1872     (same matching)
1873
1874 ' $1 $2 $3 `expr $1 + 1`
1875 }
1876 tail_tables() {
1877 echo '  table 252 ("table252"):
1878     metadata: match=0xffffffffffffffff write=0xffffffffffffffff
1879     max_entries=1000000
1880     instructions (table miss and others):
1881       next tables: 253
1882       (same instructions)
1883       (same actions)
1884     (same matching)
1885
1886   table 253 ("table253"):
1887     metadata: match=0xffffffffffffffff write=0xffffffffffffffff
1888     max_entries=1000000
1889     instructions (table miss and others):
1890       instructions: meter,apply_actions,clear_actions,write_actions,write_metadata
1891       (same actions)
1892     (same matching)
1893 '
1894 }
1895 (head_table classifier
1896  for i in `seq 1 251`; do
1897      ditto $i table$i 1000000
1898  done
1899  tail_tables) > expout
1900 AT_CHECK([ovs-ofctl -O OpenFlow13 dump-table-features br0], [0], [expout])
1901 # Change the configuration.
1902 AT_CHECK(
1903   [ovs-vsctl \
1904      -- --id=@t0 create Flow_Table name=main \
1905      -- --id=@t1 create Flow_Table flow-limit=1024 \
1906      -- set bridge br0 'flow_tables={1=@t1,0=@t0}' \
1907    | ${PERL} $srcdir/uuidfilt.pl],
1908   [0], [<0>
1909 <1>
1910 ])
1911 # Check that the configuration was updated.
1912 (head_table main
1913  ditto 1 table1 1024
1914  for i in `seq 2 251`; do
1915      ditto $i table$i 1000000
1916  done
1917  tail_tables) > expout
1918 AT_CHECK([ovs-ofctl -O OpenFlow13 dump-table-features br0], [0], [expout])
1919 OVS_VSWITCHD_STOP
1920 AT_CLEANUP
1921
1922 AT_SETUP([ofproto - table description (OpenFlow 1.4)])
1923 OVS_VSWITCHD_START
1924 (x=0
1925  while test $x -lt 254; do
1926    y=`expr $x + 1`
1927    echo "  table $x:
1928    eviction=off eviction_flags=OTHER|IMPORTANCE|LIFETIME
1929    vacancy=off"
1930    x=$y
1931  done) > expout
1932 AT_CHECK([ovs-ofctl -O OpenFlow14 dump-table-desc br0 | sed '/^$/d
1933 /^OFPST_TABLE_DESC/d'], [0], [expout])
1934
1935 # Change the configuration.
1936 AT_CHECK([ovs-ofctl -O Openflow14 mod-table br0 0 evict])
1937 # Check that the configuration was updated.
1938 mv expout orig-expout
1939 sed -e '2s/eviction=off/eviction=on/' <orig-expout > expout
1940 AT_CHECK([ovs-ofctl -O OpenFlow14 dump-table-desc br0 | sed '/^$/d
1941 /^OFPST_TABLE_DESC/d'], [0], [expout])
1942
1943 AT_CHECK([ovs-ofctl -O Openflow14 mod-table br0 0 vacancy:20,80])
1944 # Check that the configuration was updated.
1945 mv expout orig-expout
1946 sed -e '3s/vacancy=off/vacancy=on vacancy_down=20% vacancy_up=80% vacancy=0%/' <orig-expout > expout
1947 AT_CHECK([ovs-ofctl -O OpenFlow14 dump-table-desc br0 | sed '/^$/d
1948 /^OFPST_TABLE_DESC/d'], [0], [expout])
1949 OVS_VSWITCHD_STOP
1950 AT_CLEANUP
1951
1952 AT_SETUP([ofproto - hard limits on flow table size (OpenFlow 1.0)])
1953 OVS_VSWITCHD_START
1954 # Configure a maximum of 4 flows.
1955 AT_CHECK(
1956   [ovs-vsctl \
1957      -- --id=@t0 create Flow_Table flow-limit=4 \
1958      -- set bridge br0 flow_tables:0=@t0 \
1959    | ${PERL} $srcdir/uuidfilt.pl],
1960   [0], [<0>
1961 ])
1962 # Add 4 flows.
1963 for in_port in 1 2 3 4; do
1964     ovs-ofctl add-flow br0 in_port=$in_port,actions=drop
1965 done
1966 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1967  in_port=1 actions=drop
1968  in_port=2 actions=drop
1969  in_port=3 actions=drop
1970  in_port=4 actions=drop
1971 NXST_FLOW reply:
1972 ])
1973 # Adding another flow will be refused.
1974 AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop], [1], [], [stderr])
1975 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
1976   [OFPT_ERROR: OFPFMFC_TABLE_FULL
1977 ])
1978 # Also a mod-flow that would add a flow will be refused.
1979 AT_CHECK([ovs-ofctl mod-flows br0 in_port=5,actions=drop], [1], [], [stderr])
1980 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
1981   [OFPT_ERROR: OFPFMFC_TABLE_FULL
1982 ])
1983 # Replacing or modifying an existing flow is allowed.
1984 AT_CHECK([ovs-ofctl add-flow br0 in_port=4,actions=normal])
1985 AT_CHECK([ovs-ofctl mod-flows br0 in_port=3,actions=output:1])
1986 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1987  in_port=1 actions=drop
1988  in_port=2 actions=drop
1989  in_port=3 actions=output:1
1990  in_port=4 actions=NORMAL
1991 NXST_FLOW reply:
1992 ])
1993 OVS_VSWITCHD_STOP
1994 AT_CLEANUP
1995
1996 AT_SETUP([ofproto - hard limits on flow table size (OpenFlow 1.2)])
1997 OVS_VSWITCHD_START
1998 # Configure a maximum of 4 flows.
1999 AT_CHECK(
2000   [ovs-vsctl \
2001      -- --id=@t0 create Flow_Table flow-limit=4 \
2002      -- set bridge br0 flow_tables:0=@t0 \
2003    | ${PERL} $srcdir/uuidfilt.pl],
2004   [0], [<0>
2005 ])
2006 # Add 4 flows.
2007 for in_port in 1 2 3 4; do
2008     ovs-ofctl -O OpenFlow12 add-flow br0 in_port=$in_port,actions=drop
2009 done
2010 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2011  in_port=1 actions=drop
2012  in_port=2 actions=drop
2013  in_port=3 actions=drop
2014  in_port=4 actions=drop
2015 OFPST_FLOW reply (OF1.2):
2016 ])
2017 # Adding another flow will be refused.
2018 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=5,actions=drop], [1], [], [stderr])
2019 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
2020   [OFPT_ERROR (OF1.2): OFPFMFC_TABLE_FULL
2021 ])
2022 # Replacing or modifying an existing flow is allowed.
2023 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=4,actions=normal])
2024 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 in_port=3,actions=output:1])
2025 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2026  in_port=1 actions=drop
2027  in_port=2 actions=drop
2028  in_port=3 actions=output:1
2029  in_port=4 actions=NORMAL
2030 OFPST_FLOW reply (OF1.2):
2031 ])
2032 OVS_VSWITCHD_STOP
2033 AT_CLEANUP
2034
2035 AT_SETUP([ofproto - eviction upon table overflow (OpenFlow 1.0)])
2036 OVS_VSWITCHD_START
2037 # Configure a maximum of 4 flows.
2038 AT_CHECK(
2039   [ovs-vsctl \
2040      -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
2041      -- set bridge br0 flow_tables:0=@t0 \
2042    | ${PERL} $srcdir/uuidfilt.pl],
2043   [0], [<0>
2044 ])
2045 # Add 4 flows.
2046 for in_port in 4 3 2 1; do
2047     ovs-ofctl add-flow br0 idle_timeout=${in_port}0,in_port=$in_port,actions=drop
2048 done
2049 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2050  idle_timeout=10, in_port=1 actions=drop
2051  idle_timeout=20, in_port=2 actions=drop
2052  idle_timeout=30, in_port=3 actions=drop
2053  idle_timeout=40, in_port=4 actions=drop
2054 NXST_FLOW reply:
2055 ])
2056 # Adding another flow will cause the one that expires soonest to be evicted.
2057 AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop])
2058 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2059  idle_timeout=20, in_port=2 actions=drop
2060  idle_timeout=30, in_port=3 actions=drop
2061  idle_timeout=40, in_port=4 actions=drop
2062  in_port=5 actions=drop
2063 NXST_FLOW reply:
2064 ])
2065 # A mod-flow that adds a flow also causes eviction, but replacing or
2066 # modifying an existing flow doesn't.
2067 AT_CHECK([ovs-ofctl mod-flows br0 in_port=6,actions=drop])
2068 AT_CHECK([ovs-ofctl add-flow br0 in_port=4,actions=normal])
2069 AT_CHECK([ovs-ofctl mod-flows br0 in_port=3,actions=output:1])
2070 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2071  idle_timeout=30, in_port=3 actions=output:1
2072  in_port=4 actions=NORMAL
2073  in_port=5 actions=drop
2074  in_port=6 actions=drop
2075 NXST_FLOW reply:
2076 ])
2077 # Flows with no timeouts at all cannot be evicted.
2078 AT_CHECK([ovs-ofctl add-flow br0 in_port=7,actions=normal])
2079 AT_CHECK([ovs-ofctl add-flow br0 in_port=8,actions=drop], [1], [], [stderr])
2080 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
2081   [OFPT_ERROR: OFPFMFC_TABLE_FULL
2082 ])
2083 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2084  in_port=4 actions=NORMAL
2085  in_port=5 actions=drop
2086  in_port=6 actions=drop
2087  in_port=7 actions=NORMAL
2088 NXST_FLOW reply:
2089 ])
2090 OVS_VSWITCHD_STOP
2091 AT_CLEANUP
2092
2093 AT_SETUP([ofproto - eviction upon table overflow (OpenFlow 1.2)])
2094 OVS_VSWITCHD_START
2095 # Configure a maximum of 4 flows.
2096 AT_CHECK(
2097   [ovs-vsctl \
2098      -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
2099      -- set bridge br0 flow_tables:0=@t0 \
2100    | ${PERL} $srcdir/uuidfilt.pl],
2101   [0], [<0>
2102 ])
2103 # Add 4 flows.
2104 for in_port in 4 3 2 1; do
2105     ovs-ofctl -O OpenFlow12 add-flow br0 idle_timeout=${in_port}0,in_port=$in_port,actions=drop
2106 done
2107 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2108  idle_timeout=10, in_port=1 actions=drop
2109  idle_timeout=20, in_port=2 actions=drop
2110  idle_timeout=30, in_port=3 actions=drop
2111  idle_timeout=40, in_port=4 actions=drop
2112 OFPST_FLOW reply (OF1.2):
2113 ])
2114 # Adding another flow will cause the one that expires soonest to be evicted.
2115 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=5,actions=drop])
2116 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2117  idle_timeout=20, in_port=2 actions=drop
2118  idle_timeout=30, in_port=3 actions=drop
2119  idle_timeout=40, in_port=4 actions=drop
2120  in_port=5 actions=drop
2121 OFPST_FLOW reply (OF1.2):
2122 ])
2123 # In OpenFlow 1.2 a mod-flow does not ever add a flow and thus
2124 # has no effect on eviction
2125 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 in_port=6,actions=drop])
2126 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=4,actions=normal])
2127 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 in_port=3,actions=output:1])
2128 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2129  idle_timeout=20, in_port=2 actions=drop
2130  idle_timeout=30, in_port=3 actions=output:1
2131  in_port=4 actions=NORMAL
2132  in_port=5 actions=drop
2133 OFPST_FLOW reply (OF1.2):
2134 ])
2135 # Flows with no timeouts at all cannot be evicted.
2136 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=6,actions=drop])
2137 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=7,actions=normal])
2138 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=8,actions=drop], [1], [], [stderr])
2139 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
2140   [OFPT_ERROR (OF1.2): OFPFMFC_TABLE_FULL
2141 ])
2142 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2143  in_port=4 actions=NORMAL
2144  in_port=5 actions=drop
2145  in_port=6 actions=drop
2146  in_port=7 actions=NORMAL
2147 OFPST_FLOW reply (OF1.2):
2148 ])
2149 OVS_VSWITCHD_STOP
2150 AT_CLEANUP
2151
2152 AT_SETUP([ofproto - eviction using importance upon table overflow (OpenFlow 1.4)])
2153 OVS_VSWITCHD_START
2154 # Configure a maximum of 4 flows.
2155 AT_CHECK(
2156   [ovs-vsctl \
2157      -- --id=@t0 create Flow_Table name=evict flow-limit=4 \
2158      -- set bridge br0 flow_tables:0=@t0 \
2159    | ${PERL} $srcdir/uuidfilt.pl],
2160   [0], [<0>
2161 ])
2162 # Use mod-table to turn on eviction just to demonstrate that it works.
2163 AT_CHECK([ovs-ofctl -O OpenFlow14 mod-table br0 0 evict])
2164 # Add 4 flows.
2165 for in_port in 4 3 2 1; do
2166     ovs-ofctl -O Openflow14 add-flow br0 importance=$((in_port + 30)),priority=$((in_port + 5)),hard_timeout=$((in_port + 500)),actions=drop
2167 done
2168 AT_CHECK([ovs-ofctl -O Openflow14 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2169  hard_timeout=501, importance=31, priority=6 actions=drop
2170  hard_timeout=502, importance=32, priority=7 actions=drop
2171  hard_timeout=503, importance=33, priority=8 actions=drop
2172  hard_timeout=504, importance=34, priority=9 actions=drop
2173 OFPST_FLOW reply (OF1.4):
2174 ])
2175 # Adding another flow will cause the one with lowest importance to be evicted.
2176 AT_CHECK([ovs-ofctl -O Openflow14 add-flow br0 hard_timeout=505,importance=35,priority=10,in_port=2,actions=drop])
2177 AT_CHECK([ovs-ofctl -O Openflow14 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2178  hard_timeout=502, importance=32, priority=7 actions=drop
2179  hard_timeout=503, importance=33, priority=8 actions=drop
2180  hard_timeout=504, importance=34, priority=9 actions=drop
2181  hard_timeout=505, importance=35, priority=10,in_port=2 actions=drop
2182 OFPST_FLOW reply (OF1.4):
2183 ])
2184 # Disable the Eviction configuration.
2185 AT_CHECK([ovs-ofctl -O OpenFlow14 mod-table br0 0 noevict])
2186 # Adding another flow will cause the system to give error for FULL TABLE.
2187 AT_CHECK([ovs-ofctl -O Openflow14 add-flow br0 hard_timeout=506,importance=36,priority=11,actions=drop],[1], [], [stderr])
2188 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
2189  [OFPT_ERROR (OF1.4): OFPFMFC_TABLE_FULL
2190 ])
2191 #Dump flows. It should show only the old values
2192 AT_CHECK([ovs-ofctl -O Openflow14 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2193  hard_timeout=502, importance=32, priority=7 actions=drop
2194  hard_timeout=503, importance=33, priority=8 actions=drop
2195  hard_timeout=504, importance=34, priority=9 actions=drop
2196  hard_timeout=505, importance=35, priority=10,in_port=2 actions=drop
2197 OFPST_FLOW reply (OF1.4):
2198 ])
2199 # mod-flow that would modify a flow will be done successfully.
2200 AT_CHECK([ovs-ofctl -O Openflow14 mod-flows br0 in_port=2,actions=NORMAL])
2201 AT_CHECK([ovs-ofctl -O Openflow14 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2202  hard_timeout=502, importance=32, priority=7 actions=drop
2203  hard_timeout=503, importance=33, priority=8 actions=drop
2204  hard_timeout=504, importance=34, priority=9 actions=drop
2205  hard_timeout=505, importance=35, priority=10,in_port=2 actions=NORMAL
2206 OFPST_FLOW reply (OF1.4):
2207 ])
2208 # Also a mod-flow that would add a flow will be refused.
2209 AT_CHECK([ovs-ofctl mod-flows br0 in_port=5,actions=drop], [1], [], [stderr])
2210 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
2211   [OFPT_ERROR: OFPFMFC_TABLE_FULL
2212 ])
2213 OVS_VSWITCHD_STOP
2214 AT_CLEANUP
2215
2216 AT_SETUP([ofproto - eviction upon table overflow, with fairness (OpenFlow 1.0)])
2217 OVS_VSWITCHD_START
2218 # Configure a maximum of 4 flows.
2219 AT_CHECK(
2220   [ovs-vsctl \
2221      -- --id=@t0 create Flow_Table name=evict flow-limit=4 \
2222                                    overflow-policy=evict \
2223                                    groups='"NXM_OF_IN_PORT[[]]"' \
2224      -- set bridge br0 flow_tables:0=@t0 \
2225    | ${PERL} $srcdir/uuidfilt.pl],
2226   [0], [<0>
2227 ])
2228 # Add 4 flows.
2229 ovs-ofctl add-flows br0 - <<EOF
2230 idle_timeout=10 in_port=2 dl_src=00:44:55:66:77:88 actions=drop
2231 idle_timeout=20 in_port=1 dl_src=00:11:22:33:44:55 actions=drop
2232 idle_timeout=30 in_port=1 dl_src=00:22:33:44:55:66 actions=drop
2233 idle_timeout=40 in_port=1 dl_src=00:33:44:55:66:77 actions=drop
2234 EOF
2235 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2236  idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
2237  idle_timeout=20, in_port=1,dl_src=00:11:22:33:44:55 actions=drop
2238  idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2239  idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2240 NXST_FLOW reply:
2241 ])
2242 # Adding another flow will cause the one that expires soonest within
2243 # the largest group (those with in_port=1) to be evicted.  In this
2244 # case this is not the same as the one that expires soonest overall
2245 # (which is what makes the test interesting):
2246 AT_CHECK([ovs-ofctl add-flow br0 in_port=2,dl_src=00:55:66:77:88:99,actions=drop])
2247 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2248  idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
2249  idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2250  idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2251  in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2252 NXST_FLOW reply:
2253 ])
2254 # Enlarge the flow limit, change the eviction policy back to strictly
2255 # based on expiration, and and add some flows.
2256 AT_CHECK([ovs-vsctl set Flow_Table evict groups='[[]]' flow-limit=7])
2257 ovs-ofctl add-flows br0 - <<EOF
2258 idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=drop
2259 idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=drop
2260 idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=drop
2261 EOF
2262 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2263  idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
2264  idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2265  idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2266  idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
2267  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
2268  idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
2269  in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2270 NXST_FLOW reply:
2271 ])
2272 # Adding another flow will cause the one that expires soonest overall
2273 # to be evicted.
2274 AT_CHECK([ovs-ofctl add-flow br0 'idle_timeout=80 in_port=2 dl_src=00:99:aa:bb:cc:dd actions=drop'])
2275 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2276  idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2277  idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2278  idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
2279  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
2280  idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
2281  idle_timeout=80, in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
2282  in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2283 NXST_FLOW reply:
2284 ])
2285 # Reducing the flow limit also causes the flows that expire soonest
2286 # overall to be evicted.
2287 AT_CHECK([ovs-vsctl set Flow_Table evict flow-limit=4])
2288 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2289  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
2290  idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
2291  idle_timeout=80, in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
2292  in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2293 NXST_FLOW reply:
2294 ])
2295 OVS_VSWITCHD_STOP
2296 AT_CLEANUP
2297
2298 AT_SETUP([ofproto - eviction upon table overflow, with fairness (OpenFlow 1.2)])
2299 OVS_VSWITCHD_START
2300 # Configure a maximum of 4 flows.
2301 AT_CHECK(
2302   [ovs-vsctl \
2303      -- --id=@t0 create Flow_Table name=evict flow-limit=4 \
2304                                    overflow-policy=evict \
2305                                    groups='"NXM_OF_IN_PORT[[]]"' \
2306      -- set bridge br0 flow_tables:0=@t0 \
2307    | ${PERL} $srcdir/uuidfilt.pl],
2308   [0], [<0>
2309 ])
2310 # Add 4 flows.
2311 ovs-ofctl -O OpenFlow12 add-flows br0 - <<EOF
2312 idle_timeout=10 in_port=2 dl_src=00:44:55:66:77:88 actions=drop
2313 idle_timeout=20 in_port=1 dl_src=00:11:22:33:44:55 actions=drop
2314 idle_timeout=30 in_port=1 dl_src=00:22:33:44:55:66 actions=drop
2315 idle_timeout=40 in_port=1 dl_src=00:33:44:55:66:77 actions=drop
2316 EOF
2317 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2318  idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
2319  idle_timeout=20, in_port=1,dl_src=00:11:22:33:44:55 actions=drop
2320  idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2321  idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2322 OFPST_FLOW reply (OF1.2):
2323 ])
2324 # Adding another flow will cause the one that expires soonest within
2325 # the largest group (those with in_port=1) to be evicted.  In this
2326 # case this is not the same as the one that expires soonest overall
2327 # (which is what makes the test interesting):
2328 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=2,dl_src=00:55:66:77:88:99,actions=drop])
2329 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2330  idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
2331  idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2332  idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2333  in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2334 OFPST_FLOW reply (OF1.2):
2335 ])
2336 # Enlarge the flow limit, change the eviction policy back to strictly
2337 # based on expiration, and and add some flows.
2338 AT_CHECK([ovs-vsctl set Flow_Table evict groups='[[]]' flow-limit=7])
2339 ovs-ofctl -O OpenFlow12 add-flows br0 - <<EOF
2340 idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=drop
2341 idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=drop
2342 idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=drop
2343 EOF
2344 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2345  idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
2346  idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2347  idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2348  idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
2349  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
2350  idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
2351  in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2352 OFPST_FLOW reply (OF1.2):
2353 ])
2354 # Adding another flow will cause the one that expires soonest overall
2355 # to be evicted.
2356 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'])
2357 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2358  idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
2359  idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
2360  idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
2361  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
2362  idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
2363  idle_timeout=80, in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
2364  in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2365 OFPST_FLOW reply (OF1.2):
2366 ])
2367 # Reducing the flow limit also causes the flows that expire soonest
2368 # overall to be evicted.
2369 AT_CHECK([ovs-vsctl set Flow_Table evict flow-limit=4])
2370 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
2371  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
2372  idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
2373  idle_timeout=80, in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
2374  in_port=2,dl_src=00:55:66:77:88:99 actions=drop
2375 OFPST_FLOW reply (OF1.2):
2376 ])
2377 OVS_VSWITCHD_STOP
2378 AT_CLEANUP
2379
2380 AT_SETUP([ofproto - eviction upon table overflow, with modified hard timeout])
2381 OVS_VSWITCHD_START
2382 # Configure a maximum of 4 flows.
2383 AT_CHECK(
2384   [ovs-vsctl \
2385      -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
2386      -- set bridge br0 flow_tables:0=@t0 \
2387    | ${PERL} $srcdir/uuidfilt.pl],
2388   [0], [<0>
2389 ])
2390 ovs-appctl time/stop
2391 # Add 4 flows.
2392 for in_port in 4 3 2 1; do
2393     ovs-ofctl add-flow br0 hard_timeout=$((10 + in_port * 3)),in_port=$in_port,actions=drop
2394 done
2395 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2396  hard_timeout=13, in_port=1 actions=drop
2397  hard_timeout=16, in_port=2 actions=drop
2398  hard_timeout=19, in_port=3 actions=drop
2399  hard_timeout=22, in_port=4 actions=drop
2400 NXST_FLOW reply:
2401 ])
2402 # Sleep and modify the one that expires soonest
2403 ovs-appctl time/warp 5000
2404 AT_CHECK([ovs-ofctl mod-flows br0 in_port=1,actions=drop])
2405 # At this point the table would looks like:
2406 #  in_port   seconds to expire
2407 #     1            13
2408 #     2            11
2409 #     3            14
2410 #     4            17
2411 ovs-appctl time/warp 2000
2412 # Adding another flow will cause the one that expires soonest to be evicted.
2413 AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop])
2414 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2415  hard_timeout=13, in_port=1 actions=drop
2416  hard_timeout=19, in_port=3 actions=drop
2417  hard_timeout=22, in_port=4 actions=drop
2418  in_port=5 actions=drop
2419 NXST_FLOW reply:
2420 ])
2421 OVS_VSWITCHD_STOP
2422 AT_CLEANUP
2423
2424 AT_SETUP([ofproto - eviction upon table overflow, with modified idle timeout])
2425 OVS_VSWITCHD_START([add-port br0 p1 -- set interface p1 type=dummy ofport_request=1])
2426 # Configure a maximum of 4 flows.
2427 AT_CHECK(
2428   [ovs-vsctl \
2429      -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
2430      -- set bridge br0 flow_tables:0=@t0 \
2431    | ${PERL} $srcdir/uuidfilt.pl],
2432   [0], [<0>
2433 ])
2434 # Add 4 flows.
2435 for in_port in 4 3 2 1; do
2436     ovs-ofctl add-flow br0 idle_timeout=$((10 + in_port * 3)),in_port=$in_port,actions=drop
2437 done
2438 ovs-appctl time/stop
2439 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2440  idle_timeout=13, in_port=1 actions=drop
2441  idle_timeout=16, in_port=2 actions=drop
2442  idle_timeout=19, in_port=3 actions=drop
2443  idle_timeout=22, in_port=4 actions=drop
2444 NXST_FLOW reply:
2445 ])
2446 # Sleep and receive on the flow that expires soonest
2447 ovs-appctl time/warp 5000
2448 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1)'])
2449 # At this point the table would looks like:
2450 #  in_port   seconds to expire
2451 #     1            13
2452 #     2            11
2453 #     3            14
2454 #     4            17
2455 ovs-appctl time/warp 2000
2456 # Adding another flow will cause the one that expires soonest to be evicted.
2457 AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop])
2458 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
2459  idle_timeout=19, in_port=3 actions=drop
2460  idle_timeout=22, in_port=4 actions=drop
2461  in_port=5 actions=drop
2462  n_packets=1, n_bytes=60, idle_timeout=13, in_port=1 actions=drop
2463 NXST_FLOW reply:
2464 ])
2465 OVS_VSWITCHD_STOP
2466 AT_CLEANUP
2467
2468 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.0)])
2469 OVS_VSWITCHD_START
2470 AT_CHECK([ovs-ofctl -P openflow10 monitor br0 --detach --no-chdir --pidfile])
2471 check_async () {
2472     printf '\n\n--- check_async %d ---\n\n\n' $1
2473     shift
2474
2475     ovs-appctl -t ovs-ofctl ofctl/barrier
2476     ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2477     : > expout
2478
2479     # OFPT_PACKET_IN, OFPR_ACTION (controller_id=0)
2480     ovs-ofctl -v packet-out br0 controller controller '0001020304050010203040501234'
2481     if test X"$1" = X"OFPR_ACTION"; then shift;
2482         echo >>expout "OFPT_PACKET_IN: total_len=14 in_port=CONTROLLER (via action) data_len=14 (unbuffered)
2483 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2484     fi
2485
2486     # OFPT_PACKET_IN, OFPR_NO_MATCH (controller_id=123)
2487     ovs-ofctl -v packet-out br0 controller 'controller(reason=no_match,id=123)' '0001020304050010203040501234'
2488     if test X"$1" = X"OFPR_NO_MATCH"; then shift;
2489         echo >>expout "OFPT_PACKET_IN: total_len=14 in_port=CONTROLLER (via no_match) data_len=14 (unbuffered)
2490 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2491     fi
2492
2493     # OFPT_PACKET_IN, OFPR_INVALID_TTL (controller_id=0)
2494     ovs-ofctl packet-out br0 controller dec_ttl '002583dfb4000026b98cb0f908004500003eb7e200000011339bac11370dac100002d7730035002b8f6d86fb0100000100000000000006626c702d7873066e696369726103636f6d00000f00'
2495     if test X"$1" = X"OFPR_INVALID_TTL"; then shift;
2496         echo >>expout "OFPT_PACKET_IN: total_len=76 in_port=CONTROLLER (via invalid_ttl) data_len=76 (unbuffered)
2497 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"
2498     fi
2499
2500     # OFPT_PORT_STATUS, OFPPR_ADD
2501     ovs-vsctl add-port br0 test -- set Interface test type=dummy ofport_request=1
2502     if test X"$1" = X"OFPPR_ADD"; then shift;
2503         echo >>expout "OFPT_PORT_STATUS: ADD: 1(test): addr:aa:55:aa:55:00:0x
2504      config:     PORT_DOWN
2505      state:      LINK_DOWN
2506      speed: 0 Mbps now, 0 Mbps max"
2507     fi
2508
2509     # OFPT_PORT_STATUS, OFPPR_DELETE
2510     ovs-vsctl del-port br0 test
2511     if test X"$1" = X"OFPPR_DELETE"; then shift;
2512         echo >>expout "OFPT_PORT_STATUS: DEL: 1(test): addr:aa:55:aa:55:00:0x
2513      config:     PORT_DOWN
2514      state:      LINK_DOWN
2515      speed: 0 Mbps now, 0 Mbps max"
2516     fi
2517
2518     # OFPT_FLOW_REMOVED, OFPRR_DELETE
2519     ovs-ofctl add-flow br0 send_flow_rem,actions=drop
2520     ovs-ofctl --strict del-flows br0 ''
2521     if test X"$1" = X"OFPRR_DELETE"; then shift;
2522         echo >>expout "OFPT_FLOW_REMOVED:  reason=delete"
2523     fi
2524     AT_FAIL_IF([test X"$1" != X])
2525
2526     ovs-appctl -t ovs-ofctl ofctl/barrier
2527     echo >>expout "OFPT_BARRIER_REPLY:"
2528
2529     AT_CHECK(
2530       [[sed '
2531 s/ (xid=0x[0-9a-fA-F]*)//
2532 s/ *duration.*//
2533 s/00:0.$/00:0x/' < monitor.log]],
2534       [0], [expout])
2535 }
2536
2537 # It's a service connection so initially there should be no async messages.
2538 check_async 1
2539
2540 # Set miss_send_len to 128, turning on packet-ins for our service connection.
2541 ovs-appctl -t ovs-ofctl ofctl/send 0109000c0123456700000080
2542 check_async 2 OFPR_ACTION OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
2543
2544 # Set miss_send_len to 128 and enable invalid_ttl.
2545 ovs-appctl -t ovs-ofctl ofctl/send 0109000c0123456700040080
2546 check_async 3 OFPR_ACTION OFPR_INVALID_TTL OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
2547
2548 # Become slave, which should disable everything except port status.
2549 ovs-appctl -t ovs-ofctl ofctl/send 0104001400000002000023200000000a00000002
2550 check_async 4 OFPPR_ADD OFPPR_DELETE
2551
2552 # Use NXT_SET_ASYNC_CONFIG to enable a patchwork of asynchronous messages.
2553 ovs-appctl -t ovs-ofctl ofctl/send 01040028000000020000232000000013000000020000000500000005000000020000000200000005
2554 check_async 5 OFPR_INVALID_TTL OFPPR_DELETE OFPRR_DELETE
2555
2556 # Set controller ID 123.
2557 ovs-appctl -t ovs-ofctl ofctl/send 01040018000000030000232000000014000000000000007b
2558 check_async 6 OFPR_NO_MATCH OFPPR_DELETE OFPRR_DELETE
2559
2560 # Restore controller ID 0.
2561 ovs-appctl -t ovs-ofctl ofctl/send 010400180000000300002320000000140000000000000000
2562
2563 # Become master.
2564 ovs-appctl -t ovs-ofctl ofctl/send 0104001400000002000023200000000a00000001
2565 check_async 7 OFPR_ACTION OFPPR_ADD
2566
2567 ovs-appctl -t ovs-ofctl exit
2568 OVS_VSWITCHD_STOP
2569 AT_CLEANUP
2570
2571 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.2)])
2572 OVS_VSWITCHD_START
2573 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile])
2574 check_async () {
2575     printf '\n\n--- check_async %d ---\n\n\n' $1
2576     INDEX=$1
2577     shift
2578
2579     ovs-appctl -t ovs-ofctl ofctl/barrier
2580     ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2581     : > expout
2582
2583     # OFPT_PACKET_IN, OFPR_ACTION (controller_id=0)
2584     ovs-ofctl -O OpenFlow12 -v packet-out br0 none controller '0001020304050010203040501234'
2585     if test X"$1" = X"OFPR_ACTION"; then shift;
2586         echo >>expout "OFPT_PACKET_IN (OF1.2): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
2587 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2588     fi
2589
2590     # OFPT_PACKET_IN, OFPR_NO_MATCH (controller_id=123)
2591     ovs-ofctl -O OpenFlow12 -v packet-out br0 none 'controller(reason=no_match,id=123)' '0001020304050010203040501234'
2592     if test X"$1" = X"OFPR_NO_MATCH"; then shift;
2593         echo >>expout "OFPT_PACKET_IN (OF1.2): total_len=14 in_port=ANY (via no_match) data_len=14 (unbuffered)
2594 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2595     fi
2596
2597     # OFPT_PACKET_IN, OFPR_INVALID_TTL (controller_id=0)
2598     ovs-ofctl -O OpenFlow12 packet-out br0 none dec_ttl '002583dfb4000026b98cb0f908004500003eb7e200000011339bac11370dac100002d7730035002b8f6d86fb0100000100000000000006626c702d7873066e696369726103636f6d00000f00'
2599     if test X"$1" = X"OFPR_INVALID_TTL"; then shift;
2600         echo >>expout "OFPT_PACKET_IN (OF1.2): total_len=76 in_port=ANY (via invalid_ttl) data_len=76 (unbuffered)
2601 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"
2602     fi
2603
2604     # OFPT_PORT_STATUS, OFPPR_ADD
2605     ovs-vsctl add-port br0 test -- set Interface test type=dummy
2606     if test X"$1" = X"OFPPR_ADD"; then shift;
2607         echo >>expout "OFPT_PORT_STATUS (OF1.2): ADD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2608      config:     PORT_DOWN
2609      state:      LINK_DOWN
2610      speed: 0 Mbps now, 0 Mbps max"
2611     fi
2612
2613     # OFPT_PORT_STATUS, OFPPR_DELETE
2614     ovs-vsctl del-port br0 test
2615     if test X"$1" = X"OFPPR_DELETE"; then shift;
2616         echo >>expout "OFPT_PORT_STATUS (OF1.2): DEL: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2617      config:     PORT_DOWN
2618      state:      LINK_DOWN
2619      speed: 0 Mbps now, 0 Mbps max"
2620     fi
2621
2622     # OFPT_FLOW_REMOVED, OFPRR_DELETE
2623     ovs-ofctl -O OpenFlow12 add-flow br0 send_flow_rem,actions=drop
2624     ovs-ofctl -O OpenFlow12 --strict del-flows br0 ''
2625     if test X"$1" = X"OFPRR_DELETE"; then shift;
2626         echo >>expout "OFPT_FLOW_REMOVED (OF1.2):  reason=delete table_id=0"
2627     fi
2628     AT_FAIL_IF([test X"$1" != X])
2629
2630     sleep 1
2631
2632     AT_CHECK(
2633       [[sed '
2634 s/ (xid=0x[0-9a-fA-F]*)//
2635 s/ *duration.*//
2636 s/00:0.$/00:0x/' < monitor.log]],
2637       [0], [expout])
2638 }
2639
2640 # It's a service connection so initially there should be no async messages.
2641 check_async 1
2642
2643 # Set miss_send_len to 128, turning on packet-ins for our service connection.
2644 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700000080
2645 check_async 2 OFPR_ACTION OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
2646
2647 # Set miss_send_len to 128 and enable invalid_ttl.
2648 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700040080
2649 check_async 3 OFPR_ACTION OFPR_INVALID_TTL OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
2650
2651 # Become slave (OF 1.2), which should disable everything except port status.
2652 ovs-appctl -t ovs-ofctl ofctl/send 031800180000000200000003000000000000000000000001
2653 check_async 4 OFPPR_ADD OFPPR_DELETE
2654
2655 # Use NXT_SET_ASYNC_CONFIG to enable a patchwork of asynchronous messages.
2656 ovs-appctl -t ovs-ofctl ofctl/send 03040028000000020000232000000013000000020000000500000005000000020000000200000005
2657 check_async 5 OFPR_INVALID_TTL OFPPR_DELETE OFPRR_DELETE
2658
2659 # Set controller ID 123.
2660 ovs-appctl -t ovs-ofctl ofctl/send 03040018000000030000232000000014000000000000007b
2661 check_async 6 OFPR_NO_MATCH OFPPR_DELETE OFPRR_DELETE
2662
2663 # Restore controller ID 0.
2664 ovs-appctl -t ovs-ofctl ofctl/send 030400180000000300002320000000140000000000000000
2665
2666 # Become master (OF 1.2).
2667 ovs-appctl -t ovs-ofctl ofctl/send 031800180000000400000002000000000000000000000002
2668 check_async 7 OFPR_ACTION OFPPR_ADD
2669
2670 ovs-appctl -t ovs-ofctl exit
2671 OVS_VSWITCHD_STOP
2672 AT_CLEANUP
2673
2674 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.3)])
2675 OVS_VSWITCHD_START
2676 AT_CHECK([ovs-ofctl -O OpenFlow13 monitor br0 --detach --no-chdir --pidfile])
2677 check_async () {
2678     printf '\n\n--- check_async %d ---\n\n\n' $1
2679     INDEX=$1
2680     shift
2681
2682     ovs-appctl -t ovs-ofctl ofctl/barrier
2683     ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2684     : > expout
2685
2686     # OFPT_PACKET_IN, OFPR_ACTION (controller_id=0)
2687     ovs-ofctl -O OpenFlow13 -v packet-out br0 none controller '0001020304050010203040501234'
2688     if test X"$1" = X"OFPR_ACTION"; then shift;
2689         echo >>expout "OFPT_PACKET_IN (OF1.3): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
2690 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2691     fi
2692
2693     # OFPT_PACKET_IN, OFPR_NO_MATCH (controller_id=123)
2694     ovs-ofctl -O OpenFlow13 -v packet-out br0 none 'controller(reason=no_match,id=123)' '0001020304050010203040501234'
2695     if test X"$1" = X"OFPR_NO_MATCH"; then shift;
2696         echo >>expout "OFPT_PACKET_IN (OF1.3): total_len=14 in_port=ANY (via no_match) data_len=14 (unbuffered)
2697 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2698     fi
2699
2700     # OFPT_PACKET_IN, OFPR_INVALID_TTL (controller_id=0)
2701     ovs-ofctl -O OpenFlow13 packet-out br0 none dec_ttl '002583dfb4000026b98cb0f908004500003eb7e200000011339bac11370dac100002d7730035002b8f6d86fb0100000100000000000006626c702d7873066e696369726103636f6d00000f00'
2702     if test X"$1" = X"OFPR_INVALID_TTL"; then shift;
2703         echo >>expout "OFPT_PACKET_IN (OF1.3): total_len=76 in_port=ANY (via invalid_ttl) data_len=76 (unbuffered)
2704 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"
2705     fi
2706
2707     # OFPT_PORT_STATUS, OFPPR_ADD
2708     ovs-vsctl add-port br0 test -- set Interface test type=dummy
2709     if test X"$1" = X"OFPPR_ADD"; then shift;
2710         echo >>expout "OFPT_PORT_STATUS (OF1.3): ADD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2711      config:     PORT_DOWN
2712      state:      LINK_DOWN
2713      speed: 0 Mbps now, 0 Mbps max"
2714     fi
2715
2716     # OFPT_PORT_STATUS, OFPPR_DELETE
2717     ovs-vsctl del-port br0 test
2718     if test X"$1" = X"OFPPR_DELETE"; then shift;
2719         echo >>expout "OFPT_PORT_STATUS (OF1.3): DEL: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2720      config:     PORT_DOWN
2721      state:      LINK_DOWN
2722      speed: 0 Mbps now, 0 Mbps max"
2723     fi
2724
2725     # OFPT_FLOW_REMOVED, OFPRR_DELETE
2726     ovs-ofctl -O OpenFlow13 add-flow br0 send_flow_rem,actions=drop
2727     ovs-ofctl -O OpenFlow13 --strict del-flows br0 ''
2728     if test X"$1" = X"OFPRR_DELETE"; then shift;
2729         echo >>expout "OFPT_FLOW_REMOVED (OF1.3):  reason=delete table_id=0"
2730     fi
2731
2732     # OFPT_FLOW_REMOVED, OFPRR_GROUP_DELETE
2733     ovs-ofctl -O OpenFlow13 add-group br0 group_id=1234,type=all,bucket=output:10
2734     ovs-ofctl -O OpenFlow13 add-flow br0 send_flow_rem,actions=group:1234
2735     ovs-ofctl -O OpenFlow13 --strict del-groups br0 group_id=1234
2736     if test X"$1" = X"OFPRR_DELETE"; then shift;
2737         echo >>expout "OFPT_FLOW_REMOVED (OF1.3):  reason=gropu_delete table_id=0"
2738     fi
2739
2740     AT_FAIL_IF([test X"$1" != X])
2741
2742     ovs-appctl -t ovs-ofctl ofctl/barrier
2743     echo >>expout "OFPT_BARRIER_REPLY (OF1.3):"
2744
2745     AT_CHECK(
2746       [[sed '
2747 s/ (xid=0x[0-9a-fA-F]*)//
2748 s/ *duration.*//
2749 s/00:0.$/00:0x/' < monitor.log]],
2750       [0], [expout])
2751 }
2752
2753 # It's a service connection so initially there should be no async messages.
2754 check_async 1
2755
2756 # Set miss_send_len to 128, turning on packet-ins for our service connection.
2757 ovs-appctl -t ovs-ofctl ofctl/send 0409000c0123456700000080
2758 check_async 2 OFPR_ACTION OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
2759
2760 # Become slave (OF 1.3), which should disable everything except port status.
2761 ovs-appctl -t ovs-ofctl ofctl/send 041800180000000200000003000000000000000000000001
2762 check_async 3 OFPPR_ADD OFPPR_DELETE
2763
2764 # Use OF 1.3 OFPT_SET_ASYNC to enable a patchwork of asynchronous messages.
2765 ovs-appctl -t ovs-ofctl ofctl/send 041c002000000002000000020000000500000005000000020000000200000005
2766 check_async 4 OFPR_INVALID_TTL OFPPR_DELETE OFPRR_DELETE
2767
2768 # Set controller ID 123.
2769 ovs-appctl -t ovs-ofctl ofctl/send 04040018000000030000232000000014000000000000007b
2770 check_async 5 OFPR_NO_MATCH OFPPR_DELETE OFPRR_DELETE
2771
2772 # Restore controller ID 0.
2773 ovs-appctl -t ovs-ofctl ofctl/send 040400180000000300002320000000140000000000000000
2774
2775 # Become master (OF 1.3).
2776 ovs-appctl -t ovs-ofctl ofctl/send 041800180000000400000002000000000000000000000002
2777 check_async 6 OFPR_ACTION OFPPR_ADD
2778
2779 ovs-appctl -t ovs-ofctl exit
2780 OVS_VSWITCHD_STOP
2781 AT_CLEANUP
2782
2783 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.4)])
2784 OVS_VSWITCHD_START
2785 AT_CHECK([ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile])
2786 check_async () {
2787     printf '\n\n--- check_async %d ---\n\n\n' $1
2788     INDEX=$1
2789     shift
2790
2791     ovs-appctl -t ovs-ofctl ofctl/barrier
2792     ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2793     : > expout
2794
2795     # OFPT_PACKET_IN, OFPR_ACTION (controller_id=0)
2796     ovs-ofctl -O OpenFlow14 -v packet-out br0 none controller '0001020304050010203040501234'
2797     if test X"$1" = X"OFPR_ACTION"; then shift;
2798         echo >>expout "OFPT_PACKET_IN (OF1.4): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
2799 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2800     fi
2801
2802     # OFPT_PACKET_IN, OFPR_NO_MATCH (controller_id=123)
2803     ovs-ofctl -O OpenFlow14 -v packet-out br0 none 'controller(reason=no_match,id=123)' '0001020304050010203040501234'
2804     if test X"$1" = X"OFPR_NO_MATCH"; then shift;
2805         echo >>expout "OFPT_PACKET_IN (OF1.4): total_len=14 in_port=ANY (via no_match) data_len=14 (unbuffered)
2806 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
2807     fi
2808
2809     # OFPT_PACKET_IN, OFPR_INVALID_TTL (controller_id=0)
2810     ovs-ofctl -O OpenFlow14 packet-out br0 none dec_ttl '002583dfb4000026b98cb0f908004500003eb7e200000011339bac11370dac100002d7730035002b8f6d86fb0100000100000000000006626c702d7873066e696369726103636f6d00000f00'
2811     if test X"$1" = X"OFPR_INVALID_TTL"; then shift;
2812         echo >>expout "OFPT_PACKET_IN (OF1.4): total_len=76 in_port=ANY (via invalid_ttl) data_len=76 (unbuffered)
2813 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"
2814     fi
2815
2816 # OFPT_PORT_STATUS, OFPPR_ADD
2817     ovs-vsctl add-port br0 test -- set Interface test type=dummy
2818     if test X"$1" = X"OFPPR_ADD"; then shift;
2819         echo >>expout "OFPT_PORT_STATUS (OF1.4): ADD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2820      config:     PORT_DOWN
2821      state:      LINK_DOWN
2822      speed: 0 Mbps now, 0 Mbps max"
2823     fi
2824
2825     # OFPT_PORT_STATUS, OFPPR_MODIFY
2826     ovs-ofctl -O OpenFlow14 -vwarn mod-port br0 test up
2827     if test X"$1" = X"OFPPR_MODIFY"; then shift;
2828         echo >>expout "OFPT_PORT_STATUS (OF1.4): MOD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2829      config:     0
2830      state:      LINK_DOWN
2831      speed: 0 Mbps now, 0 Mbps max
2832 OFPT_PORT_STATUS (OF1.4): MOD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2833      config:     0
2834      state:      0
2835      speed: 0 Mbps now, 0 Mbps max"
2836     fi
2837
2838     # OFPT_PORT_STATUS, OFPPR_DELETE
2839     ovs-vsctl del-port br0 test
2840     if test X"$1" = X"OFPPR_DELETE"; then shift;
2841         echo >>expout "OFPT_PORT_STATUS (OF1.4): DEL: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2842      config:     0
2843      state:      0
2844      speed: 0 Mbps now, 0 Mbps max"
2845     fi
2846
2847     # OFPT_FLOW_REMOVED, OFPRR_DELETE
2848     ovs-ofctl -O OpenFlow14 add-flow br0 send_flow_rem,actions=drop
2849     ovs-ofctl -O OpenFlow14 --strict del-flows br0 ''
2850     if test X"$1" = X"OFPRR_DELETE"; then shift;
2851         echo >>expout "OFPT_FLOW_REMOVED (OF1.4):  reason=delete table_id=0"
2852     fi
2853
2854         # OFPT_FLOW_REMOVED, OFPRR_GROUP_DELETE
2855     ovs-ofctl -O OpenFlow14 add-group br0 group_id=1234,type=all,bucket=output:10
2856     ovs-ofctl -O OpenFlow14 add-flow br0 send_flow_rem,actions=group:1234
2857     ovs-ofctl -O OpenFlow14 --strict del-groups br0 group_id=1234
2858     if test X"$1" = X"OFPRR_GROUP_DELETE"; then shift;
2859         echo >>expout "OFPT_FLOW_REMOVED (OF1.4):  reason=group_delete table_id=0"
2860     fi
2861
2862     AT_FAIL_IF([test X"$1" != X])
2863
2864     ovs-appctl -t ovs-ofctl ofctl/barrier
2865     echo >>expout "OFPT_BARRIER_REPLY (OF1.4):"
2866
2867     AT_CHECK(
2868       [[sed '
2869 s/ (xid=0x[0-9a-fA-F]*)//
2870 s/ *duration.*//
2871 s/00:0.$/00:0x/' < monitor.log]],
2872       [0], [expout])
2873 }
2874
2875 # It's a service connection so initially there should be no async messages.
2876 check_async 1
2877
2878 # Set miss_send_len to 128, turning on packet-ins for our service connection.
2879 ovs-appctl -t ovs-ofctl ofctl/send 0509000c0123456700000080
2880 check_async 2 OFPR_ACTION OFPPR_ADD OFPPR_MODIFY OFPPR_DELETE OFPRR_DELETE OFPRR_GROUP_DELETE
2881
2882 # Become slave (OF 1.4), which should disable everything except port status.
2883 ovs-appctl -t ovs-ofctl ofctl/send 051800180000000200000003000000000000000000000001
2884 check_async 3 OFPPR_ADD OFPPR_MODIFY OFPPR_DELETE
2885
2886 # Use OF 1.4 OFPT_SET_ASYNC to enable a patchwork of asynchronous messages.
2887 ovs-appctl -t ovs-ofctl ofctl/send 051c0038000000020000000800000005000100080000000200020008000000020003000800000005000400080000001c0005000800000005
2888 check_async 4 OFPR_INVALID_TTL OFPPR_DELETE OFPRR_DELETE OFPRR_GROUP_DELETE
2889
2890 # Set controller ID 123.
2891 ovs-appctl -t ovs-ofctl ofctl/send 05040018000000030000232000000014000000000000007b
2892 check_async 5 OFPR_NO_MATCH OFPPR_DELETE OFPRR_DELETE OFPRR_GROUP_DELETE
2893
2894 # Restore controller ID 0.
2895 ovs-appctl -t ovs-ofctl ofctl/send 050400180000000300002320000000140000000000000000
2896
2897 # Become master (OF 1.4).
2898 ovs-appctl -t ovs-ofctl ofctl/send 051800180000000400000002000000000000000000000002
2899 check_async 6 OFPR_ACTION OFPPR_ADD OFPPR_MODIFY OFPRR_DELETE
2900
2901 ovs-appctl -t ovs-ofctl exit
2902 OVS_VSWITCHD_STOP
2903 AT_CLEANUP
2904
2905 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.5)])
2906 OVS_VSWITCHD_START
2907 AT_CHECK([ovs-ofctl -O OpenFlow15 monitor br0 --detach --no-chdir --pidfile])
2908 check_async () {
2909     printf '\n\n--- check_async %d ---\n\n\n' $1
2910     INDEX=$1
2911     shift
2912
2913     ovs-appctl -t ovs-ofctl ofctl/barrier
2914     ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2915     : > expout
2916
2917     # Other tests are not working with OF 1.5, and message
2918     # format may change, so leave them out.
2919
2920     # OFPT_PORT_STATUS, OFPPR_ADD
2921     ovs-vsctl add-port br0 test -- set Interface test type=dummy
2922     if test X"$1" = X"OFPPR_ADD"; then shift;
2923         echo >>expout "OFPT_PORT_STATUS (OF1.5): ADD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2924      config:     PORT_DOWN
2925      state:      LINK_DOWN
2926      speed: 0 Mbps now, 0 Mbps max"
2927     fi
2928
2929     # OFPT_PORT_STATUS, OFPPR_MODIFY
2930     ovs-ofctl -O OpenFlow15 -vwarn mod-port br0 test up
2931     if test X"$1" = X"OFPPR_MODIFY"; then shift;
2932         echo >>expout "OFPT_PORT_STATUS (OF1.5): MOD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2933      config:     0
2934      state:      LINK_DOWN
2935      speed: 0 Mbps now, 0 Mbps max
2936 OFPT_PORT_STATUS (OF1.5): MOD: 2(test): addr:aa:55:aa:55:00:0x
2937      config:     0
2938      state:      0
2939      speed: 0 Mbps now, 0 Mbps max"
2940     fi
2941
2942     # OFPT_PORT_STATUS, OFPPR_DELETE
2943     ovs-vsctl del-port br0 test
2944     if test X"$1" = X"OFPPR_DELETE"; then shift;
2945         echo >>expout "OFPT_PORT_STATUS (OF1.5): DEL: ${INDEX}(test): addr:aa:55:aa:55:00:0x
2946      config:     0
2947      state:      0
2948      speed: 0 Mbps now, 0 Mbps max"
2949     fi
2950
2951     AT_FAIL_IF([test X"$1" != X])
2952
2953     ovs-appctl -t ovs-ofctl ofctl/barrier
2954     echo >>expout "OFPT_BARRIER_REPLY (OF1.5):"
2955
2956     AT_CHECK(
2957       [[sed '
2958 s/ (xid=0x[0-9a-fA-F]*)//
2959 s/ *duration.*//
2960 s/00:0.$/00:0x/' < monitor.log]],
2961       [0], [expout])
2962 }
2963
2964 # It's a service connection so initially there should be no async messages.
2965 check_async 1
2966
2967 # If we don't set this, async messages are not received.
2968 # Set miss_send_len to 128, turning on packet-ins for our service connection.
2969 ovs-appctl -t ovs-ofctl ofctl/send 0609000c0123456700000080
2970 check_async 2 OFPPR_ADD OFPPR_MODIFY OFPPR_DELETE
2971
2972 # Set-async has changed in OF 1.4 and is not yet implemented.
2973
2974 ovs-appctl -t ovs-ofctl exit
2975 OVS_VSWITCHD_STOP
2976 AT_CLEANUP
2977
2978 dnl This test checks that the role request/response messaging works
2979 dnl and that generation_id is handled properly.
2980 AT_SETUP([ofproto - controller role (OpenFlow 1.2)])
2981 OVS_VSWITCHD_START
2982 on_exit 'kill `cat c1.pid c2.pid`'
2983
2984 # Start two ovs-ofctl controller processes.
2985 AT_CAPTURE_FILE([monitor1.log])
2986 AT_CAPTURE_FILE([expout1])
2987 AT_CAPTURE_FILE([experr1])
2988 AT_CAPTURE_FILE([monitor2.log])
2989 AT_CAPTURE_FILE([expout2])
2990 AT_CAPTURE_FILE([experr2])
2991 for i in 1 2; do
2992      AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile=`pwd`/c$i.pid --unixctl=`pwd`/c$i])
2993     ovs-appctl -t `pwd`/c$i ofctl/barrier
2994     ovs-appctl -t `pwd`/c$i ofctl/set-output-file monitor$i.log
2995     : > expout$i
2996     : > experr$i
2997
2998     # find out current role
2999     ovs-appctl -t `pwd`/c$i ofctl/send 031800180000000200000000000000000000000000000000
3000     echo >>experr$i "send: OFPT_ROLE_REQUEST (OF1.2): role=nochange"
3001     echo >>expout$i "OFPT_ROLE_REPLY (OF1.2): role=equal"
3002 done
3003
3004 # controller 1: Become slave (generation_id is initially undefined, so
3005 # 2^63+2 should not be stale)
3006 ovs-appctl -t `pwd`/c1 ofctl/send 031800180000000300000003000000008000000000000002
3007 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.2): role=slave generation_id=9223372036854775810"
3008 echo >>expout1 "OFPT_ROLE_REPLY (OF1.2): role=slave generation_id=9223372036854775810"
3009
3010 # controller 2: Become master.
3011 ovs-appctl -t `pwd`/c2 ofctl/send 031800180000000300000002000000008000000000000003
3012 echo >>experr2 "send: OFPT_ROLE_REQUEST (OF1.2): role=master generation_id=9223372036854775811"
3013 echo >>expout2 "OFPT_ROLE_REPLY (OF1.2): role=master generation_id=9223372036854775811"
3014
3015 # controller 1: Try to become the master using a stale generation ID
3016 ovs-appctl -t `pwd`/c1 ofctl/send 031800180000000400000002000000000000000000000003
3017 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.2): role=master generation_id=3"
3018 echo >>expout1 "OFPT_ERROR (OF1.2): OFPRRFC_STALE"
3019 echo >>expout1 "OFPT_ROLE_REQUEST (OF1.2): role=master generation_id=3"
3020
3021 # controller 1: Become master using a valid generation ID
3022 ovs-appctl -t `pwd`/c1 ofctl/send 031800180000000500000002000000000000000000000001
3023 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.2): role=master generation_id=1"
3024 echo >>expout1 "OFPT_ROLE_REPLY (OF1.2): role=master generation_id=1"
3025
3026 for i in 1 2; do
3027     ovs-appctl -t `pwd`/c$i ofctl/barrier
3028     echo >>expout$i "OFPT_BARRIER_REPLY (OF1.2):"
3029 done
3030
3031 # Check output.
3032 for i in 1 2; do
3033     cp expout$i expout
3034     AT_CHECK([grep -v '^send:' monitor$i.log | STRIP_XIDS], [0], [expout])
3035     cp experr$i expout
3036     AT_CHECK([grep '^send:' monitor$i.log | STRIP_XIDS], [0], [expout])
3037 done
3038 OVS_VSWITCHD_STOP
3039 AT_CLEANUP
3040
3041 dnl This test checks that the role request/response messaging works,
3042 dnl that generation_id is handled properly, and that role status update
3043 dnl messages are sent when a controller's role gets changed from master
3044 dnl to slave.
3045 AT_SETUP([ofproto - controller role (OpenFlow 1.4)])
3046 OVS_VSWITCHD_START
3047 on_exit 'kill `cat c1.pid c2.pid`'
3048
3049 # Start two ovs-ofctl controller processes.
3050 AT_CAPTURE_FILE([monitor1.log])
3051 AT_CAPTURE_FILE([expout1])
3052 AT_CAPTURE_FILE([experr1])
3053 AT_CAPTURE_FILE([monitor2.log])
3054 AT_CAPTURE_FILE([expout2])
3055 AT_CAPTURE_FILE([experr2])
3056 for i in 1 2; do
3057      AT_CHECK([ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile=`pwd`/c$i.pid --unixctl=`pwd`/c$i])
3058     ovs-appctl -t `pwd`/c$i ofctl/barrier
3059     ovs-appctl -t `pwd`/c$i ofctl/set-output-file monitor$i.log
3060     : > expout$i
3061     : > experr$i
3062
3063     # find out current role
3064     ovs-appctl -t `pwd`/c$i ofctl/send 051800180000000200000000000000000000000000000000
3065     echo >>experr$i "send: OFPT_ROLE_REQUEST (OF1.4): role=nochange"
3066     echo >>expout$i "OFPT_ROLE_REPLY (OF1.4): role=equal"
3067 done
3068
3069 # controller 1: Become slave (generation_id is initially undefined, so
3070 # 2^63+2 should not be stale)
3071 ovs-appctl -t `pwd`/c1 ofctl/send 051800180000000300000003000000008000000000000002
3072 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.4): role=slave generation_id=9223372036854775810"
3073 echo >>expout1 "OFPT_ROLE_REPLY (OF1.4): role=slave generation_id=9223372036854775810"
3074
3075 # controller 2: Become master.
3076 ovs-appctl -t `pwd`/c2 ofctl/send 051800180000000300000002000000008000000000000003
3077 echo >>experr2 "send: OFPT_ROLE_REQUEST (OF1.4): role=master generation_id=9223372036854775811"
3078 echo >>expout2 "OFPT_ROLE_REPLY (OF1.4): role=master generation_id=9223372036854775811"
3079
3080 # controller 1: Try to become the master using a stale generation ID
3081 ovs-appctl -t `pwd`/c1 ofctl/send 051800180000000400000002000000000000000000000003
3082 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.4): role=master generation_id=3"
3083 echo >>expout1 "OFPT_ERROR (OF1.4): OFPRRFC_STALE"
3084 echo >>expout1 "OFPT_ROLE_REQUEST (OF1.4): role=master generation_id=3"
3085
3086 # controller 1: Become master using a valid generation ID
3087 ovs-appctl -t `pwd`/c1 ofctl/send 051800180000000500000002000000000000000000000001
3088 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.4): role=master generation_id=1"
3089 echo >>expout1 "OFPT_ROLE_REPLY (OF1.4): role=master generation_id=1"
3090 echo >>expout2 "OFPT_ROLE_STATUS (OF1.4): role=slave generation_id=1 reason=master_request"
3091
3092 for i in 1 2; do
3093     ovs-appctl -t `pwd`/c$i ofctl/barrier
3094     echo >>expout$i "OFPT_BARRIER_REPLY (OF1.4):"
3095 done
3096
3097 # Check output.
3098 for i in 1 2; do
3099     cp expout$i expout
3100     AT_CHECK([grep -v '^send:' monitor$i.log | STRIP_XIDS], [0], [expout])
3101     cp experr$i expout
3102     AT_CHECK([grep '^send:' monitor$i.log | STRIP_XIDS], [0], [expout])
3103 done
3104 OVS_VSWITCHD_STOP
3105 AT_CLEANUP
3106
3107 dnl This test checks the Group and meter notifications when a group mod
3108 dnl command is sent from one controller and the reply is received by
3109 dnl other controllers.
3110 AT_SETUP([ofproto - requestforward (OpenFlow 1.4)])
3111 OVS_VSWITCHD_START
3112 on_exit 'kill `cat c1.pid c2.pid c3.pid`'
3113
3114 # Start two ovs-ofctl controller processes.
3115 AT_CAPTURE_FILE([monitor1.log])
3116 AT_CAPTURE_FILE([expout1])
3117 AT_CAPTURE_FILE([monitor2.log])
3118 AT_CAPTURE_FILE([expout2])
3119 AT_CAPTURE_FILE([monitor3.log])
3120 AT_CAPTURE_FILE([expout3])
3121
3122 ovs-ofctl -O OpenFlow15 monitor br0 --detach --no-chdir --pidfile=`pwd`/c1.pid --unixctl=`pwd`/c1
3123 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile=`pwd`/c2.pid --unixctl=`pwd`/c2
3124 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile=`pwd`/c3.pid --unixctl=`pwd`/c3
3125
3126 check_async () {
3127     for i in 1 3; do
3128         ovs-appctl -t `pwd`/c$i ofctl/barrier
3129         ovs-appctl -t `pwd`/c$i ofctl/set-output-file monitor$i.log
3130         : > expout$i
3131     done
3132
3133     printf '\n\n--- check_async %d ---\n\n\n' $1
3134     INDEX=$1
3135     shift
3136
3137     # OFPGC_ADD
3138     ovs-appctl -t `pwd`/c2 ofctl/send 050f0010000000020000000000000001
3139     if test X"$1" = X"OFPGC_ADD"; then shift;
3140         echo >>expout2 "send: OFPT_GROUP_MOD (OF1.4):
3141  ADD group_id=1,type=all"
3142         echo >>expout1 "OFPT_REQUESTFORWARD (OF1.5): reason=group_mod
3143  ADD group_id=1,type=all"
3144         echo >>expout3 "OFPT_REQUESTFORWARD (OF1.4): reason=group_mod
3145  ADD group_id=1,type=all"
3146     fi
3147
3148     # OFPGC_MODIFY
3149     ovs-appctl -t `pwd`/c2 ofctl/send 050f0010000000020001010000000001
3150     if test X"$1" = X"OFPGC_MODIFY"; then shift;
3151         echo >>expout2 "send: OFPT_GROUP_MOD (OF1.4):
3152  MOD group_id=1,type=select"
3153         echo >>expout1 "OFPT_REQUESTFORWARD (OF1.5): reason=group_mod
3154  MOD group_id=1,type=select"
3155         echo >>expout3 "OFPT_REQUESTFORWARD (OF1.4): reason=group_mod
3156  MOD group_id=1,type=select"
3157     fi
3158
3159     ovs-appctl -t `pwd`/c1 ofctl/barrier
3160     echo >>expout1 "OFPT_BARRIER_REPLY (OF1.5):"
3161     ovs-appctl -t `pwd`/c2 ofctl/barrier
3162     echo >>expout2 "OFPT_BARRIER_REPLY (OF1.4):"
3163     ovs-appctl -t `pwd`/c3 ofctl/barrier
3164     echo >>expout3 "OFPT_BARRIER_REPLY (OF1.4):"
3165
3166     # Check output.
3167     for i in 1 3; do
3168         cp expout$i expout
3169         AT_CHECK(
3170       [[sed '
3171 s/ (xid=0x[0-9a-fA-F]*)//'< monitor$i.log]],
3172       [0], [expout])
3173     done
3174 }
3175
3176 # controller 1: Become slave
3177 ovs-appctl -t `pwd`/c1 ofctl/send 061800180000000300000003000000008000000000000002
3178
3179 # controller 2: Become master
3180 ovs-appctl -t `pwd`/c2 ofctl/send 051800180000000300000002000000008000000000000003
3181
3182 # controller 1: Become slave
3183 ovs-appctl -t `pwd`/c3 ofctl/send 051800180000000300000003000000008000000000000004
3184
3185 # controller 1: Enabled requestforward using set Asynchronous message
3186 ovs-appctl -t `pwd`/c1 ofctl/send 061c00280000000200000008000000050002000800000002000400080000001a000a000800000003
3187
3188 # controller 2: Enabled requestforward using set Asynchronous message
3189 ovs-appctl -t `pwd`/c2 ofctl/send 051c002800000002000100080000000200030008000000050005000800000005000b000800000003
3190
3191 # controller 1: Enabled requestforward using set Asynchronous message
3192 ovs-appctl -t `pwd`/c3 ofctl/send 051c00280000000200000008000000050002000800000002000400080000001a000a000800000003
3193 check_async 1 OFPGC_ADD OFPGC_MODIFY
3194
3195 OVS_VSWITCHD_STOP
3196 AT_CLEANUP
3197
3198 dnl This test checks that OFPT_PACKET_OUT accepts both OFPP_NONE (as
3199 dnl specified by OpenFlow 1.0) and OFPP_CONTROLLER (used by some
3200 dnl controllers despite the spec) as meaning a packet that was generated
3201 dnl by the controller.
3202 AT_SETUP([ofproto - packet-out from controller (OpenFlow 1.0)])
3203 OVS_VSWITCHD_START
3204 ADD_OF_PORTS([br0], [1])
3205
3206 # Start a monitor listening for packet-ins.
3207 AT_CHECK([ovs-ofctl -P openflow10 monitor br0 --detach --no-chdir --pidfile])
3208 ovs-appctl -t ovs-ofctl ofctl/send 0109000c0123456700000080
3209 ovs-appctl -t ovs-ofctl ofctl/barrier
3210 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3211 AT_CAPTURE_FILE([monitor.log])
3212
3213 # Send some packet-outs with OFPP_NONE and OFPP_CONTROLLER (65533) as in_port.
3214 AT_CHECK([ovs-ofctl packet-out br0 none controller,1 '0001020304050010203040501234'])
3215 AT_CHECK([ovs-ofctl packet-out br0 controller controller,1 '0001020304050010203040505678'])
3216
3217 # Stop the monitor and check its output.
3218 ovs-appctl -t ovs-ofctl ofctl/barrier
3219 ovs-appctl -t ovs-ofctl exit
3220
3221 ovs-ofctl dump-ports br0
3222
3223 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3224 OFPT_PACKET_IN: total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
3225 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3226 OFPT_PACKET_IN: total_len=14 in_port=CONTROLLER (via action) data_len=14 (unbuffered)
3227 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x5678
3228 OFPT_BARRIER_REPLY:
3229 ])
3230
3231 OVS_VSWITCHD_STOP
3232 AT_CLEANUP
3233
3234 dnl This test checks that OFPT_PACKET_OUT accepts both OFPP_NONE (as
3235 dnl specified by OpenFlow 1.2) and OFPP_CONTROLLER (used by some
3236 dnl controllers despite the spec) as meaning a packet that was generated
3237 dnl by the controller.
3238 AT_SETUP([ofproto - packet-out from controller (OpenFlow 1.2)])
3239 OVS_VSWITCHD_START
3240
3241 # Start a monitor listening for packet-ins.
3242 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile])
3243 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700000080
3244 ovs-appctl -t ovs-ofctl ofctl/barrier
3245 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3246 AT_CAPTURE_FILE([monitor.log])
3247
3248 # Send some packet-outs with OFPP_NONE and OFPP_CONTROLLER (65533) as in_port.
3249 AT_CHECK([ovs-ofctl -O OpenFlow12 packet-out br0 none controller '0001020304050010203040501234'])
3250 AT_CHECK([ovs-ofctl -O OpenFlow12 packet-out br0 4294967293 controller '0001020304050010203040505678'])
3251
3252 # Stop the monitor and check its output.
3253 ovs-appctl -t ovs-ofctl ofctl/barrier
3254 ovs-appctl -t ovs-ofctl exit
3255
3256 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3257 OFPT_PACKET_IN (OF1.2): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
3258 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3259 OFPT_PACKET_IN (OF1.2): total_len=14 in_port=CONTROLLER (via action) data_len=14 (unbuffered)
3260 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x5678
3261 OFPT_BARRIER_REPLY (OF1.2):
3262 ])
3263
3264 OVS_VSWITCHD_STOP
3265 AT_CLEANUP
3266
3267 dnl This test checks that OFPT_PACKET_OUT accepts both OFPP_NONE (as
3268 dnl specified by OpenFlow 1.1) and OFPP_CONTROLLER (used by some
3269 dnl controllers despite the spec) as meaning a packet that was generated
3270 dnl by the controller.
3271 AT_SETUP([ofproto - packet-out from controller (OpenFlow 1.1)])
3272 OVS_VSWITCHD_START
3273
3274 # Start a monitor listening for packet-ins.
3275 AT_CHECK([ovs-ofctl -O OpenFlow11 monitor br0 --detach --no-chdir --pidfile])
3276 ovs-appctl -t ovs-ofctl ofctl/send 0209000c0123456700000080
3277 ovs-appctl -t ovs-ofctl ofctl/barrier
3278 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3279 AT_CAPTURE_FILE([monitor.log])
3280
3281 # Send some packet-outs with OFPP_NONE and OFPP_CONTROLLER (65533) as in_port.
3282 AT_CHECK([ovs-ofctl -O OpenFlow11 packet-out br0 none controller '0001020304050010203040501234'])
3283 AT_CHECK([ovs-ofctl -O OpenFlow11 packet-out br0 4294967293 controller '0001020304050010203040505678'])
3284
3285 # Stop the monitor and check its output.
3286 ovs-appctl -t ovs-ofctl ofctl/barrier
3287 ovs-appctl -t ovs-ofctl exit
3288
3289 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3290 OFPT_PACKET_IN (OF1.1): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
3291 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3292 OFPT_PACKET_IN (OF1.1): total_len=14 in_port=CONTROLLER (via action) data_len=14 (unbuffered)
3293 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x5678
3294 OFPT_BARRIER_REPLY (OF1.1):
3295 ])
3296
3297 OVS_VSWITCHD_STOP
3298 AT_CLEANUP
3299
3300 dnl This test checks that metadata is encoded in packet_in structures,
3301 dnl supported by NXAST.
3302 AT_SETUP([ofproto - packet-out with metadata (NXM)])
3303 OVS_VSWITCHD_START
3304
3305 # Start a monitor listening for packet-ins.
3306 AT_CHECK([ovs-ofctl -P nxm monitor br0 --detach --no-chdir --pidfile])
3307 ovs-appctl -t ovs-ofctl ofctl/send 0109000c0123456700000080
3308 ovs-appctl -t ovs-ofctl ofctl/barrier
3309 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3310 AT_CAPTURE_FILE([monitor.log])
3311
3312 # Send a packet-out with a load action to set some metadata, and forward to controller
3313 AT_CHECK([ovs-ofctl packet-out br0 controller 'load(0xfafafafa5a5a5a5a->OXM_OF_METADATA[[0..63]]), load(0xaa->NXM_NX_PKT_MARK[[]]), controller' '0001020304050010203040501234'])
3314
3315 # Stop the monitor and check its output.
3316 ovs-appctl -t ovs-ofctl ofctl/barrier
3317 ovs-appctl -t ovs-ofctl exit
3318
3319 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3320 NXT_PACKET_IN: total_len=14 pkt_mark=0xaa,metadata=0xfafafafa5a5a5a5a,in_port=CONTROLLER (via action) data_len=14 (unbuffered)
3321 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3322 OFPT_BARRIER_REPLY:
3323 ])
3324
3325 OVS_VSWITCHD_STOP
3326 AT_CLEANUP
3327
3328 dnl This test checks that metadata is encoded in packet_in structures,
3329 dnl supported by NXAST.
3330 AT_SETUP([ofproto - packet-out with metadata (OpenFlow 1.2)])
3331 OVS_VSWITCHD_START
3332
3333 # Start a monitor listening for packet-ins.
3334 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile])
3335 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700000080
3336 ovs-appctl -t ovs-ofctl ofctl/barrier
3337 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3338 AT_CAPTURE_FILE([monitor.log])
3339
3340 # Send a packet-out with a set-field action to set some metadata, and forward to controller
3341 AT_CHECK([ovs-ofctl -O OpenFlow12 packet-out br0 none 'set_field:0xfafafafa5a5a5a5a->metadata, controller' '0001020304050010203040501234'])
3342
3343 # Stop the monitor and check its output.
3344 ovs-appctl -t ovs-ofctl ofctl/barrier
3345 ovs-appctl -t ovs-ofctl exit
3346
3347 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3348 OFPT_PACKET_IN (OF1.2): total_len=14 metadata=0xfafafafa5a5a5a5a,in_port=ANY (via action) data_len=14 (unbuffered)
3349 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3350 OFPT_BARRIER_REPLY (OF1.2):
3351 ])
3352
3353 OVS_VSWITCHD_STOP
3354 AT_CLEANUP
3355
3356 dnl This test checks that metadata is encoded in packet_in structures,
3357 dnl supported by NXAST.
3358 AT_SETUP([ofproto - packet-out with metadata and dual set_field (OpenFlow 1.3)])
3359 OVS_VSWITCHD_START
3360
3361 # Start a monitor listening for packet-ins.
3362 AT_CHECK([ovs-ofctl -O OpenFlow13 monitor br0 --detach --no-chdir --pidfile])
3363 ovs-appctl -t ovs-ofctl ofctl/send 0409000c0123456700000080
3364 ovs-appctl -t ovs-ofctl ofctl/barrier
3365 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3366 AT_CAPTURE_FILE([monitor.log])
3367
3368 # Send a packet-out with a couple of set-field action to set some metadata, and forward to controller
3369 AT_CHECK([ovs-ofctl -O OpenFlow13 packet-out br0 none 'set_field:0xfafafafa5a5a5a5a->metadata, set_field:0x6b->metadata, controller' '0001020304050010203040501234'])
3370
3371 # Stop the monitor and check its output.
3372 ovs-appctl -t ovs-ofctl ofctl/barrier
3373 ovs-appctl -t ovs-ofctl exit
3374
3375 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3376 OFPT_PACKET_IN (OF1.3): total_len=14 metadata=0x6b,in_port=ANY (via action) data_len=14 (unbuffered)
3377 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3378 OFPT_BARRIER_REPLY (OF1.3):
3379 ])
3380
3381 OVS_VSWITCHD_STOP
3382 AT_CLEANUP
3383
3384 dnl This test checks that tunnel metadata is encoded in packet_in structures.
3385 AT_SETUP([ofproto - packet-out with tunnel metadata (OpenFlow 1.2)])
3386 OVS_VSWITCHD_START
3387
3388 # Start a monitor listening for packet-ins.
3389 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile])
3390 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700000080
3391 ovs-appctl -t ovs-ofctl ofctl/barrier
3392 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3393 AT_CAPTURE_FILE([monitor.log])
3394
3395 # Send a packet-out with set field actions to set some tunnel metadata, and forward to controller
3396 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'])
3397
3398 # Stop the monitor and check its output.
3399 ovs-appctl -t ovs-ofctl ofctl/barrier
3400 ovs-appctl -t ovs-ofctl exit
3401
3402 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
3403 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)
3404 vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
3405 OFPT_BARRIER_REPLY (OF1.2):
3406 ])
3407
3408 OVS_VSWITCHD_STOP
3409 AT_CLEANUP
3410
3411 m4_divert_push([PREPARE_TESTS])
3412 # Sorts groups of lines that start with a space, without moving them
3413 # past the nearest line that does not start with a space.
3414 multiline_sort () {
3415     ${PERL} -e '
3416         use warnings;
3417         use strict;
3418         my @buffer = ();
3419         while (<STDIN>) {
3420             if (/^ /) {
3421                 push(@buffer, $_);
3422             } else {
3423                 print $_ foreach sort(@buffer);
3424                 print $_;
3425                 @buffer = ();
3426             }
3427         }
3428         print $_ foreach sort(@buffer);
3429 '
3430 }
3431 m4_divert_pop([PREPARE_TESTS])
3432
3433 AT_SETUP([ofproto - flow monitoring])
3434 AT_KEYWORDS([monitor])
3435 OVS_VSWITCHD_START
3436
3437 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:1
3438
3439 # Start a monitor watching the flow table and check the initial reply.
3440 ovs-ofctl monitor br0 watch: --detach --no-chdir --pidfile >monitor.log 2>&1
3441 AT_CAPTURE_FILE([monitor.log])
3442 ovs-appctl -t ovs-ofctl ofctl/barrier
3443 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
3444   [NXST_FLOW_MONITOR reply:
3445  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:1
3446 OFPT_BARRIER_REPLY:
3447 ])
3448
3449 # Add, delete, and modify some flows and check the updates.
3450 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3451 ovs-ofctl add-flow br0 in_port=0,dl_vlan=124,actions=output:2
3452 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:5
3453 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,dl_vlan_pcp=0,actions=output:6
3454 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,dl_vlan_pcp=1,actions=output:7
3455 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:8
3456 ovs-ofctl add-flow br0 in_port=0,dl_vlan=65535,dl_vlan_pcp=0,actions=output:9
3457 ovs-ofctl add-flow br0 in_port=0,dl_vlan=65535,dl_vlan_pcp=1,actions=output:10
3458 ovs-ofctl add-flow br0 in_port=0,dl_vlan=65535,actions=output:11
3459 ovs-ofctl add-flow br0 in_port=0,dl_vlan=8191,dl_vlan_pcp=0,actions=output:12
3460 ovs-ofctl add-flow br0 in_port=0,dl_vlan=8191,dl_vlan_pcp=1,actions=output:13
3461 ovs-ofctl add-flow br0 in_port=0,dl_vlan=8191,actions=output:14
3462 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,dl_vlan_pcp=0,actions=output:15
3463 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,dl_vlan_pcp=1,actions=output:16
3464 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,actions=output:17
3465 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,dl_vlan_pcp=0,actions=output:18
3466 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,dl_vlan_pcp=1,actions=output:19
3467 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,actions=output:20
3468 ovs-ofctl add-flow br0 in_port=0,dl_vlan_pcp=0,actions=output:21
3469 ovs-ofctl add-flow br0 in_port=0,dl_vlan_pcp=1,actions=output:22
3470 ovs-ofctl add-flow br0 in_port=0,actions=output:23
3471 ovs-ofctl mod-flows br0 dl_vlan=123,actions=output:3
3472 ovs-ofctl mod-flows br0 cookie=5,dl_vlan=123,actions=output:3
3473 ovs-ofctl del-flows br0 dl_vlan=123
3474 ovs-ofctl del-flows br0
3475 ovs-appctl -t ovs-ofctl ofctl/barrier
3476 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log | multiline_sort], [0],
3477 [NXST_FLOW_MONITOR reply (xid=0x0):
3478  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=124 actions=output:2
3479 NXST_FLOW_MONITOR reply (xid=0x0):
3480  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:5
3481 NXST_FLOW_MONITOR reply (xid=0x0):
3482  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123,dl_vlan_pcp=0 actions=output:6
3483 NXST_FLOW_MONITOR reply (xid=0x0):
3484  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123,dl_vlan_pcp=1 actions=output:7
3485 NXST_FLOW_MONITOR reply (xid=0x0):
3486  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:8
3487 NXST_FLOW_MONITOR reply (xid=0x0):
3488  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=0 actions=output:9
3489 NXST_FLOW_MONITOR reply (xid=0x0):
3490  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=1 actions=output:10
3491 NXST_FLOW_MONITOR reply (xid=0x0):
3492  event=ADDED table=0 cookie=0 in_port=0,vlan_tci=0x0000 actions=output:11
3493 NXST_FLOW_MONITOR reply (xid=0x0):
3494  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=4095,dl_vlan_pcp=0 actions=output:12
3495 NXST_FLOW_MONITOR reply (xid=0x0):
3496  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=4095,dl_vlan_pcp=1 actions=output:13
3497 NXST_FLOW_MONITOR reply (xid=0x0):
3498  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=4095 actions=output:14
3499 NXST_FLOW_MONITOR reply (xid=0x0):
3500  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=0 actions=output:15
3501 NXST_FLOW_MONITOR reply (xid=0x0):
3502  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=1 actions=output:16
3503 NXST_FLOW_MONITOR reply (xid=0x0):
3504  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0 actions=output:17
3505 NXST_FLOW_MONITOR reply (xid=0x0):
3506  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=0 actions=output:18
3507 NXST_FLOW_MONITOR reply (xid=0x0):
3508  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=1 actions=output:19
3509 NXST_FLOW_MONITOR reply (xid=0x0):
3510  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0 actions=output:20
3511 NXST_FLOW_MONITOR reply (xid=0x0):
3512  event=ADDED table=0 cookie=0 in_port=0,dl_vlan_pcp=0 actions=output:21
3513 NXST_FLOW_MONITOR reply (xid=0x0):
3514  event=ADDED table=0 cookie=0 in_port=0,dl_vlan_pcp=1 actions=output:22
3515 NXST_FLOW_MONITOR reply (xid=0x0):
3516  event=ADDED table=0 cookie=0 in_port=0 actions=output:23
3517 NXST_FLOW_MONITOR reply (xid=0x0):
3518  event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:3
3519  event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123,dl_vlan_pcp=0 actions=output:3
3520  event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123,dl_vlan_pcp=1 actions=output:3
3521 NXST_FLOW_MONITOR reply (xid=0x0):
3522  event=MODIFIED table=0 cookie=0x5 in_port=0,dl_vlan=123 actions=output:3
3523  event=MODIFIED table=0 cookie=0x5 in_port=0,dl_vlan=123,dl_vlan_pcp=0 actions=output:3
3524  event=MODIFIED table=0 cookie=0x5 in_port=0,dl_vlan=123,dl_vlan_pcp=1 actions=output:3
3525 NXST_FLOW_MONITOR reply (xid=0x0):
3526  event=DELETED reason=delete table=0 cookie=0x5 in_port=0,dl_vlan=123 actions=output:3
3527  event=DELETED reason=delete table=0 cookie=0x5 in_port=0,dl_vlan=123,dl_vlan_pcp=0 actions=output:3
3528  event=DELETED reason=delete table=0 cookie=0x5 in_port=0,dl_vlan=123,dl_vlan_pcp=1 actions=output:3
3529 NXST_FLOW_MONITOR reply (xid=0x0):
3530  event=DELETED reason=delete table=0 cookie=0 in_port=0 actions=output:23
3531  event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=0 actions=output:20
3532  event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=0 actions=output:18
3533  event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=1 actions=output:19
3534  event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=124 actions=output:2
3535  event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=4095 actions=output:14
3536  event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=4095,dl_vlan_pcp=0 actions=output:12
3537  event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=4095,dl_vlan_pcp=1 actions=output:13
3538  event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan_pcp=0 actions=output:21
3539  event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan_pcp=1 actions=output:22
3540  event=DELETED reason=delete table=0 cookie=0 in_port=0,vlan_tci=0x0000 actions=output:11
3541 OFPT_BARRIER_REPLY:
3542 ])
3543
3544 # Check that our own changes are reported as full updates.
3545 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3546 ovs-ofctl add-flow br0 in_port=1,actions=output:2
3547 ovs-ofctl add-flow br0 in_port=2,actions=output:1
3548 ovs-appctl -t ovs-ofctl ofctl/barrier
3549 ovs-appctl -t ovs-ofctl ofctl/send 010e004812345678003fffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000ffffffffffff0000
3550 ovs-appctl -t ovs-ofctl ofctl/barrier
3551 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0], [NXST_FLOW reply:
3552 ])
3553 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log | multiline_sort], [0],
3554 [NXST_FLOW_MONITOR reply (xid=0x0):
3555  event=ADDED table=0 cookie=0 in_port=1 actions=output:2
3556 NXST_FLOW_MONITOR reply (xid=0x0):
3557  event=ADDED table=0 cookie=0 in_port=2 actions=output:1
3558 OFPT_BARRIER_REPLY:
3559 send: OFPT_FLOW_MOD: DEL priority=0 actions=drop
3560 NXST_FLOW_MONITOR reply (xid=0x0):
3561  event=DELETED reason=delete table=0 cookie=0 in_port=1 actions=output:2
3562  event=DELETED reason=delete table=0 cookie=0 in_port=2 actions=output:1
3563 OFPT_BARRIER_REPLY:
3564 ])
3565
3566 ovs-appctl -t ovs-ofctl exit
3567 OVS_VSWITCHD_STOP
3568 AT_CLEANUP
3569
3570 AT_SETUP([ofproto - flow monitoring with !own])
3571 AT_KEYWORDS([monitor])
3572 OVS_VSWITCHD_START
3573
3574 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:1
3575
3576 # Start a monitor watching the flow table and check the initial reply.
3577 ovs-ofctl monitor br0 watch:\!own --detach --no-chdir --pidfile >monitor.log 2>&1
3578 AT_CAPTURE_FILE([monitor.log])
3579 ovs-appctl -t ovs-ofctl ofctl/barrier
3580 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
3581   [NXST_FLOW_MONITOR reply:
3582  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:1
3583 OFPT_BARRIER_REPLY:
3584 ])
3585
3586 # Check that our own changes are reported as abbreviations.
3587 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3588 ovs-ofctl add-flow br0 in_port=1,actions=output:2
3589 ovs-ofctl add-flow br0 in_port=2,actions=output:1
3590 ovs-appctl -t ovs-ofctl ofctl/barrier
3591 ovs-appctl -t ovs-ofctl ofctl/send 010e004812345678003fffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000ffffffffffff0000
3592 ovs-appctl -t ovs-ofctl ofctl/barrier
3593 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0], [NXST_FLOW reply:
3594 ])
3595 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
3596 [NXST_FLOW_MONITOR reply (xid=0x0):
3597  event=ADDED table=0 cookie=0 in_port=1 actions=output:2
3598 NXST_FLOW_MONITOR reply (xid=0x0):
3599  event=ADDED table=0 cookie=0 in_port=2 actions=output:1
3600 OFPT_BARRIER_REPLY:
3601 send: OFPT_FLOW_MOD: DEL priority=0 actions=drop
3602 NXST_FLOW_MONITOR reply (xid=0x0):
3603  event=ABBREV xid=0x12345678
3604 OFPT_BARRIER_REPLY:
3605 ])
3606
3607 ovs-appctl -t ovs-ofctl exit
3608 OVS_VSWITCHD_STOP
3609 AT_CLEANUP
3610
3611 AT_SETUP([ofproto - flow monitoring with out_port])
3612 AT_KEYWORDS([monitor])
3613 OVS_VSWITCHD_START
3614
3615 ovs-ofctl add-flow br0 in_port=0,dl_vlan=121,actions=output:1
3616 ovs-ofctl add-flow br0 in_port=0,dl_vlan=122,actions=output:1
3617 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:2
3618
3619 # Start a monitor watching the flow table and check the initial reply.
3620 ovs-ofctl monitor br0 watch:out_port=2 --detach --no-chdir --pidfile >monitor.log 2>&1
3621 AT_CAPTURE_FILE([monitor.log])
3622 ovs-appctl -t ovs-ofctl ofctl/barrier
3623 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
3624   [NXST_FLOW_MONITOR reply:
3625  event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:2
3626 OFPT_BARRIER_REPLY:
3627 ])
3628
3629 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
3630
3631 # Add, modify flows and check the updates.
3632 ovs-ofctl mod-flows br0 dl_vlan=121,actions=drop
3633 ovs-ofctl mod-flows br0 dl_vlan=122,actions=output:1,output:2
3634 ovs-appctl -t ovs-ofctl ofctl/barrier
3635
3636 ovs-ofctl mod-flows br0 dl_vlan=123,actions=output:1,output:2
3637 ovs-appctl -t ovs-ofctl ofctl/barrier
3638
3639 ovs-ofctl mod-flows br0 dl_vlan=122,actions=output:1
3640 ovs-appctl -t ovs-ofctl ofctl/barrier
3641 ovs-ofctl mod-flows br0 dl_vlan=123,actions=output:2
3642 ovs-appctl -t ovs-ofctl ofctl/barrier
3643
3644 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
3645 [NXST_FLOW_MONITOR reply (xid=0x0):
3646  event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=122 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=123 actions=output:1,output:2
3650 OFPT_BARRIER_REPLY:
3651 NXST_FLOW_MONITOR reply (xid=0x0):
3652  event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=122 actions=output:1
3653 OFPT_BARRIER_REPLY:
3654 NXST_FLOW_MONITOR reply (xid=0x0):
3655  event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:2
3656 OFPT_BARRIER_REPLY:
3657 ])
3658
3659 ovs-appctl -t ovs-ofctl exit
3660 OVS_VSWITCHD_STOP
3661 AT_CLEANUP
3662
3663 AT_SETUP([ofproto - flow monitoring pause and resume])
3664 AT_KEYWORDS([monitor])
3665
3666 # The maximum socket receive buffer size is important for this test, which
3667 # tests behavior when the receive buffer overflows.
3668 if test -e /proc/sys/net/core/rmem_max; then
3669     # Linux
3670     rmem_max=`cat /proc/sys/net/core/rmem_max`
3671 elif rmem_max=`sysctl -n net.inet.tcp.recvbuf_max 2>/dev/null`; then
3672     : # FreeBSD, NetBSD
3673 else
3674     # Don't know how to get maximum socket receive buffer on this OS
3675     AT_SKIP_IF([:])
3676 fi
3677 # Calculate the total amount of queuing: rmem_max in the kernel, 128 kB
3678 # in ofproto sending userspace (see ofmonitor_flush() in connmgr.c).
3679 queue_size=`expr $rmem_max + 128 \* 1024`
3680 echo rmem_max=$rmem_max queue_size=$queue_size
3681
3682 # If there's too much queuing skip the test to avoid timing out.
3683 AT_SKIP_IF([test $rmem_max -gt 1048576])
3684
3685 # Each flow update message takes up at least 48 bytes of space in queues
3686 # and in practice more than that.
3687 n_msgs=`expr $queue_size / 48`
3688 echo n_msgs=$n_msgs
3689
3690 OVS_VSWITCHD_START
3691
3692 # Start a monitor watching the flow table, then make it block.
3693 on_exit 'kill `cat ovs-ofctl.pid`'
3694 ovs-ofctl monitor br0 watch: --detach --no-chdir --pidfile >monitor.log 2>&1
3695 AT_CAPTURE_FILE([monitor.log])
3696 ovs-appctl -t ovs-ofctl ofctl/block
3697
3698 # Add $n_msgs flows.
3699 (echo "in_port=2,actions=output:2"
3700 ${PERL} -e '
3701     for ($i = 0; $i < '$n_msgs'; $i++) {
3702         print "cookie=1,reg1=$i,actions=drop\n";
3703     }
3704 ') > flows.txt
3705 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
3706 # Check that multipart flow dumps work properly:
3707 AT_CHECK([ovs-ofctl diff-flows br0 flows.txt])
3708 AT_CHECK([ovs-ofctl add-flow br0 in_port=1,cookie=3,actions=drop])
3709 AT_CHECK([ovs-ofctl mod-flows br0 in_port=2,cookie=2,actions=output:2])
3710 AT_CHECK([ovs-ofctl del-flows br0 cookie=1/-1])
3711
3712 ovs-appctl -t ovs-ofctl ofctl/unblock
3713
3714 # Wait for the connection resumed.
3715 # A barrier doesn't work for this purpose.
3716 #    https://www.mail-archive.com/dev@openvswitch.org/msg27013.html
3717 #    https://www.mail-archive.com/dev@openvswitch.org/msg27675.html
3718 OVS_WAIT_UNTIL([grep NXT_FLOW_MONITOR_RESUMED monitor.log])
3719
3720 ovs-appctl -t ovs-ofctl exit
3721
3722 # Check that the flow monitor reported the same number of flows
3723 # added and deleted, but fewer than we actually added and deleted.
3724 adds=`grep -c 'ADDED.*reg1=' monitor.log`
3725 deletes=`grep -c 'DELETED.*reg1=' monitor.log`
3726 echo adds=$adds deletes=$deletes
3727 AT_CHECK([test $adds -gt 100 && test $adds -lt $n_msgs])
3728 AT_CHECK([test $adds = $deletes])
3729
3730 # Check that the flow monitor reported everything in the expected order:
3731 #
3732 #     event=ADDED table=0 cookie=0x1 reg1=0x22
3733 # ...
3734 #    NXT_FLOW_MONITOR_PAUSED:
3735 # ...
3736 #     event=DELETED reason=delete table=0 cookie=0x1 reg1=0x22
3737 # ...
3738 #     event=ADDED table=0 cookie=0x3 in_port=1
3739 #     event=MODIFIED table=0 cookie=0x2 in_port=2 actions=output:2
3740 #    NXT_FLOW_MONITOR_RESUMED:
3741 #
3742 # except that, between the PAUSED and RESUMED, the order of the ADDED
3743 # and MODIFIED lines lines depends on hash order, that is, it varies
3744 # as we change the hash function or change architecture.  Therefore,
3745 # we use a couple of tests below to accept both orders.
3746 AT_CHECK([ofctl_strip < monitor.log | sed -n -e '
3747 /reg1=0x22$/p
3748 /cookie=0x[[23]]/p
3749 /NXT_FLOW_MONITOR_PAUSED:/p
3750 /NXT_FLOW_MONITOR_RESUMED:/p
3751 ' > monitor.log.subset])
3752 AT_CHECK([grep -v MODIFIED monitor.log.subset], [0], [dnl
3753  event=ADDED table=0 cookie=0x1 reg1=0x22
3754 NXT_FLOW_MONITOR_PAUSED:
3755  event=DELETED reason=delete table=0 cookie=0x1 reg1=0x22
3756  event=ADDED table=0 cookie=0x3 in_port=1
3757 NXT_FLOW_MONITOR_RESUMED:
3758 ])
3759 AT_CHECK([grep -v ADDED monitor.log.subset], [0], [dnl
3760 NXT_FLOW_MONITOR_PAUSED:
3761  event=DELETED reason=delete table=0 cookie=0x1 reg1=0x22
3762  event=MODIFIED table=0 cookie=0x2 in_port=2 actions=output:2
3763 NXT_FLOW_MONITOR_RESUMED:
3764 ])
3765
3766 OVS_VSWITCHD_STOP
3767 AT_CLEANUP
3768
3769 AT_SETUP([ofproto - event filtering (OpenFlow 1.3)])
3770 AT_KEYWORDS([monitor])
3771 OVS_VSWITCHD_START
3772
3773 # Start a monitor, use the required protocol version
3774 ovs-ofctl -O OpenFlow13 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
3775 AT_CAPTURE_FILE([monitor.log])
3776
3777 # Send an OpenFlow13 message (04), OFPT_GET_ASYNC_REQUEST (1a), length (8), xid (0a)
3778 ovs-appctl -t ovs-ofctl ofctl/send 041a00080000000a
3779 ovs-appctl -t ovs-ofctl ofctl/barrier
3780
3781 # Check default setting
3782 read -r -d '' expected <<'EOF'
3783 EOF
3784
3785 AT_CHECK([ofctl_strip < monitor.log], [], [dnl
3786 send: OFPT_GET_ASYNC_REQUEST (OF1.3):
3787 OFPT_GET_ASYNC_REPLY (OF1.3):
3788  master:
3789        PACKET_IN: no_match action
3790      PORT_STATUS: add delete modify
3791     FLOW_REMOVED: idle hard delete
3792
3793  slave:
3794        PACKET_IN: (off)
3795      PORT_STATUS: add delete modify
3796     FLOW_REMOVED: (off)
3797 OFPT_BARRIER_REPLY (OF1.3):
3798 ])
3799
3800 OVS_VSWITCHD_STOP
3801 AT_CLEANUP
3802
3803 AT_SETUP([ofproto - ofport_request])
3804 OVS_VSWITCHD_START
3805 ADD_OF_PORTS([br0], [1], [2], [3])
3806
3807 set_and_check_specific_ofports () {
3808     ovs-vsctl set Interface p1 ofport_request="$1" -- \
3809               set Interface p2 ofport_request="$2" -- \
3810               set Interface p3 ofport_request="$3"
3811     ofports=`ovs-vsctl get Interface p1 ofport -- \
3812                        get Interface p2 ofport -- \
3813                        get Interface p3 ofport`
3814     AT_CHECK_UNQUOTED([echo $ofports], [0], [$1 $2 $3
3815 ])
3816 }
3817 for pre in      '1 2 3' '1 3 2' '2 1 3' '2 3 1' '3 1 2' '3 2 1'; do
3818     for post in '1 2 3' '1 3 2' '2 1 3' '2 3 1' '3 1 2' '3 2 1'; do
3819         echo -----------------------------------------------------------
3820         echo "Check changing port numbers from $pre to $post"
3821         set_and_check_specific_ofports $pre
3822         set_and_check_specific_ofports $post
3823     done
3824 done
3825
3826 ovs-vsctl del-port p3
3827
3828 set_and_check_poorly_specified_ofports () {
3829     ovs-vsctl set Interface p1 ofport_request="$1" -- \
3830               set Interface p2 ofport_request="$2"
3831     p1=`ovs-vsctl get Interface p1 ofport`
3832     p2=`ovs-vsctl get Interface p2 ofport`
3833     echo $p1 $p2
3834
3835     AT_CHECK([test "$p1" != "$p2"])
3836     if test "$1" = "$2" && test "$1" != '[[]]'; then
3837         # One port number must be the requested one.
3838         AT_CHECK([test "$p1" = "$1" || test "$p2" = "$1"])
3839         # The other port number must be different (already tested above).
3840     else
3841         AT_CHECK([test "$1" = '[[]]' || test "$p1" = "$1"])
3842         AT_CHECK([test "$2" = '[[]]' || test "$p2" = "$2"])
3843     fi
3844 }
3845 for pre in      '1 2' '[[]] 2' '1 [[]]' '[[]] [[]]' '2 1' '[[]] 1' '2 [[]]' \
3846                 '1 1' '2 2'; do
3847     for post in '1 2' '[[]] 2' '1 [[]]' '[[]] [[]]' '2 1' '[[]] 1' '2 [[]]' \
3848                 '1 1' '2 2'; do
3849         echo -----------------------------------------------------------
3850         echo "Check changing port numbers from $pre to $post"
3851         set_and_check_poorly_specified_ofports $pre
3852         set_and_check_poorly_specified_ofports $post
3853     done
3854 done
3855 OVS_VSWITCHD_STOP
3856 AT_CLEANUP
3857
3858
3859 AT_SETUP([ofproto - bundles, open (OpenFlow 1.4)])
3860 AT_KEYWORDS([monitor])
3861 OVS_VSWITCHD_START
3862
3863 # Start a monitor, use the required protocol version
3864 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
3865 AT_CAPTURE_FILE([monitor.log])
3866
3867 # Send an OpenFlow14 message (05), OFPT_BUNDLE_CONTROL (21), length (10), xid (0a)
3868 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 02"
3869 ovs-appctl -t ovs-ofctl ofctl/barrier
3870 ovs-appctl -t ovs-ofctl exit
3871
3872 AT_CHECK([ofctl_strip < monitor.log], [], [dnl
3873 send: OFPT_BUNDLE_CONTROL (OF1.4):
3874  bundle_id=0x1 type=OPEN_REQUEST flags=ordered
3875 OFPT_BUNDLE_CONTROL (OF1.4):
3876  bundle_id=0x1 type=OPEN_REPLY flags=0
3877 OFPT_BARRIER_REPLY (OF1.4):
3878 ])
3879
3880 OVS_VSWITCHD_STOP
3881 AT_CLEANUP
3882
3883 AT_SETUP([ofproto - bundles, double open (OpenFlow 1.4)])
3884 AT_KEYWORDS([monitor])
3885 OVS_VSWITCHD_START
3886
3887 # Start a monitor, use the required protocol version
3888 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
3889 AT_CAPTURE_FILE([monitor.log])
3890
3891 # Send twice an OpenFlow14 message (05), OFPT_BUNDLE_CONTROL (21), length (10), xid (0a)
3892 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 02"
3893 ovs-appctl -t ovs-ofctl ofctl/barrier
3894 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 02"
3895 ovs-appctl -t ovs-ofctl ofctl/barrier
3896 ovs-appctl -t ovs-ofctl exit
3897
3898 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
3899 send: OFPT_BUNDLE_CONTROL (OF1.4):
3900  bundle_id=0x1 type=OPEN_REQUEST flags=ordered
3901 OFPT_BUNDLE_CONTROL (OF1.4):
3902  bundle_id=0x1 type=OPEN_REPLY flags=0
3903 OFPT_BARRIER_REPLY (OF1.4):
3904 send: OFPT_BUNDLE_CONTROL (OF1.4):
3905  bundle_id=0x1 type=OPEN_REQUEST flags=ordered
3906 OFPT_ERROR (OF1.4): OFPBFC_BAD_ID
3907 OFPT_BUNDLE_CONTROL (OF1.4):
3908  bundle_id=0x1 type=OPEN_REQUEST flags=ordered
3909 OFPT_BARRIER_REPLY (OF1.4):
3910 ])
3911
3912 OVS_VSWITCHD_STOP
3913 AT_CLEANUP
3914
3915 AT_SETUP([ofproto - bundle close without open (OpenFlow 1.4)])
3916 AT_KEYWORDS([monitor])
3917 OVS_VSWITCHD_START
3918
3919 # Start a monitor, use the required protocol version
3920 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
3921 AT_CAPTURE_FILE([monitor.log])
3922
3923 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 02 00 02"
3924 ovs-appctl -t ovs-ofctl ofctl/barrier
3925 ovs-appctl -t ovs-ofctl exit
3926
3927 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
3928 send: OFPT_BUNDLE_CONTROL (OF1.4):
3929  bundle_id=0x1 type=CLOSE_REQUEST flags=ordered
3930 OFPT_ERROR (OF1.4): OFPBFC_BAD_ID
3931 OFPT_BUNDLE_CONTROL (OF1.4):
3932  bundle_id=0x1 type=CLOSE_REQUEST flags=ordered
3933 OFPT_BARRIER_REPLY (OF1.4):
3934 ])
3935
3936 OVS_VSWITCHD_STOP
3937 AT_CLEANUP
3938
3939 AT_SETUP([ofproto - bundle double close (OpenFlow 1.4)])
3940 AT_KEYWORDS([monitor])
3941 OVS_VSWITCHD_START
3942
3943 # Start a monitor, use the required protocol version
3944 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
3945 AT_CAPTURE_FILE([monitor.log])
3946
3947 # Open, Close, Close
3948 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 02"
3949 ovs-appctl -t ovs-ofctl ofctl/barrier
3950 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 02 00 02"
3951 ovs-appctl -t ovs-ofctl ofctl/barrier
3952 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 02 00 02"
3953 ovs-appctl -t ovs-ofctl ofctl/barrier
3954 ovs-appctl -t ovs-ofctl exit
3955
3956 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
3957 send: OFPT_BUNDLE_CONTROL (OF1.4):
3958  bundle_id=0x1 type=OPEN_REQUEST flags=ordered
3959 OFPT_BUNDLE_CONTROL (OF1.4):
3960  bundle_id=0x1 type=OPEN_REPLY flags=0
3961 OFPT_BARRIER_REPLY (OF1.4):
3962 send: OFPT_BUNDLE_CONTROL (OF1.4):
3963  bundle_id=0x1 type=CLOSE_REQUEST flags=ordered
3964 OFPT_BUNDLE_CONTROL (OF1.4):
3965  bundle_id=0x1 type=CLOSE_REPLY flags=0
3966 OFPT_BARRIER_REPLY (OF1.4):
3967 send: OFPT_BUNDLE_CONTROL (OF1.4):
3968  bundle_id=0x1 type=CLOSE_REQUEST flags=ordered
3969 OFPT_ERROR (OF1.4): OFPBFC_BUNDLE_CLOSED
3970 OFPT_BUNDLE_CONTROL (OF1.4):
3971  bundle_id=0x1 type=CLOSE_REQUEST flags=ordered
3972 OFPT_BARRIER_REPLY (OF1.4):
3973 ])
3974
3975 OVS_VSWITCHD_STOP
3976 AT_CLEANUP
3977
3978 AT_SETUP([ofproto - bundle close, different flags (OpenFlow 1.4)])
3979 AT_KEYWORDS([monitor])
3980 OVS_VSWITCHD_START
3981
3982 # Start a monitor, use the required protocol version
3983 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
3984 AT_CAPTURE_FILE([monitor.log])
3985
3986 # Open, Close, Close
3987 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 02"
3988 ovs-appctl -t ovs-ofctl ofctl/barrier
3989 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 02 00 01"
3990 ovs-appctl -t ovs-ofctl ofctl/barrier
3991 ovs-appctl -t ovs-ofctl exit
3992
3993 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
3994 send: OFPT_BUNDLE_CONTROL (OF1.4):
3995  bundle_id=0x1 type=OPEN_REQUEST flags=ordered
3996 OFPT_BUNDLE_CONTROL (OF1.4):
3997  bundle_id=0x1 type=OPEN_REPLY flags=0
3998 OFPT_BARRIER_REPLY (OF1.4):
3999 send: OFPT_BUNDLE_CONTROL (OF1.4):
4000  bundle_id=0x1 type=CLOSE_REQUEST flags=atomic
4001 OFPT_ERROR (OF1.4): OFPBFC_BAD_FLAGS
4002 OFPT_BUNDLE_CONTROL (OF1.4):
4003  bundle_id=0x1 type=CLOSE_REQUEST flags=atomic
4004 OFPT_BARRIER_REPLY (OF1.4):
4005 ])
4006
4007 OVS_VSWITCHD_STOP
4008 AT_CLEANUP
4009
4010 AT_SETUP([ofproto - bundle commit without open (OpenFlow 1.4)])
4011 AT_KEYWORDS([monitor])
4012 OVS_VSWITCHD_START
4013
4014 # Start a monitor, use the required protocol version
4015 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
4016 AT_CAPTURE_FILE([monitor.log])
4017
4018 # Open, Close, Close
4019 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 04 00 02"
4020 ovs-appctl -t ovs-ofctl ofctl/barrier
4021 ovs-appctl -t ovs-ofctl exit
4022
4023 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
4024 send: OFPT_BUNDLE_CONTROL (OF1.4):
4025  bundle_id=0x1 type=COMMIT_REQUEST flags=ordered
4026 OFPT_ERROR (OF1.4): OFPBFC_BAD_ID
4027 OFPT_BUNDLE_CONTROL (OF1.4):
4028  bundle_id=0x1 type=COMMIT_REQUEST flags=ordered
4029 OFPT_BARRIER_REPLY (OF1.4):
4030 ])
4031
4032 OVS_VSWITCHD_STOP
4033 AT_CLEANUP
4034
4035 AT_SETUP([ofproto - bundle commit, different flags (OpenFlow 1.4)])
4036 AT_KEYWORDS([monitor])
4037 OVS_VSWITCHD_START
4038
4039 # Start a monitor, use the required protocol version
4040 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
4041 AT_CAPTURE_FILE([monitor.log])
4042
4043 # Open, Close, Close
4044 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 02"
4045 ovs-appctl -t ovs-ofctl ofctl/barrier
4046 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 04 00 01"
4047 ovs-appctl -t ovs-ofctl ofctl/barrier
4048 ovs-appctl -t ovs-ofctl exit
4049
4050 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
4051 send: OFPT_BUNDLE_CONTROL (OF1.4):
4052  bundle_id=0x1 type=OPEN_REQUEST flags=ordered
4053 OFPT_BUNDLE_CONTROL (OF1.4):
4054  bundle_id=0x1 type=OPEN_REPLY flags=0
4055 OFPT_BARRIER_REPLY (OF1.4):
4056 send: OFPT_BUNDLE_CONTROL (OF1.4):
4057  bundle_id=0x1 type=COMMIT_REQUEST flags=atomic
4058 OFPT_ERROR (OF1.4): OFPBFC_BAD_FLAGS
4059 OFPT_BUNDLE_CONTROL (OF1.4):
4060  bundle_id=0x1 type=COMMIT_REQUEST flags=atomic
4061 OFPT_BARRIER_REPLY (OF1.4):
4062 ])
4063
4064 OVS_VSWITCHD_STOP
4065 AT_CLEANUP
4066
4067 AT_SETUP([ofproto - bundle discard without open (OpenFlow 1.4)])
4068 AT_KEYWORDS([monitor])
4069 OVS_VSWITCHD_START
4070
4071 # Start a monitor, use the required protocol version
4072 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
4073 AT_CAPTURE_FILE([monitor.log])
4074
4075 # Open, Close, Close
4076 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 06 00 02"
4077 ovs-appctl -t ovs-ofctl ofctl/barrier
4078 ovs-appctl -t ovs-ofctl exit
4079
4080 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
4081 send: OFPT_BUNDLE_CONTROL (OF1.4):
4082  bundle_id=0x1 type=DISCARD_REQUEST flags=ordered
4083 OFPT_ERROR (OF1.4): OFPBFC_BAD_ID
4084 OFPT_BUNDLE_CONTROL (OF1.4):
4085  bundle_id=0x1 type=DISCARD_REQUEST flags=ordered
4086 OFPT_BARRIER_REPLY (OF1.4):
4087 ])
4088
4089 OVS_VSWITCHD_STOP
4090 AT_CLEANUP
4091
4092
4093 AT_SETUP([ofproto - bundle with multiple flow mods (OpenFlow 1.4)])
4094 AT_KEYWORDS([monitor])
4095 OVS_VSWITCHD_START
4096
4097 AT_CHECK([ovs-appctl vlog/set vconn:dbg])
4098
4099 AT_CHECK([ovs-ofctl del-flows br0])
4100
4101 AT_DATA([flows.txt], [dnl
4102 add idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=1
4103 add idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=2
4104 add idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=3
4105 add idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=4
4106 delete
4107 add idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=5
4108 add idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=6
4109 add idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=7
4110 delete in_port=2 dl_src=00:88:99:aa:bb:cc
4111 ])
4112
4113 AT_CHECK([ovs-ofctl --bundle add-flows br0 flows.txt])
4114
4115 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
4116  idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=output:5
4117  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:6
4118 NXST_FLOW reply:
4119 ])
4120
4121 AT_DATA([flows.txt], [dnl
4122 modify actions=drop
4123 modify_strict in_port=2 dl_src=00:77:88:99:aa:bb actions=7
4124 ])
4125
4126 AT_CHECK([ovs-ofctl --bundle add-flows br0 flows.txt])
4127
4128 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
4129  idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
4130  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:7
4131 NXST_FLOW reply:
4132 ])
4133
4134 # Adding an existing flow acts as a modify, and delete_strict also works.
4135 AT_DATA([flows.txt], [dnl
4136 add idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=8
4137 delete_strict in_port=2 dl_src=00:66:77:88:99:aa
4138 add in_port=2 dl_src=00:66:77:88:99:aa actions=drop
4139 ])
4140
4141 AT_CHECK([ovs-ofctl --bundle add-flows br0 flows.txt])
4142
4143 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
4144  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:8
4145  in_port=2,dl_src=00:66:77:88:99:aa actions=drop
4146 NXST_FLOW reply:
4147 ])
4148
4149 dnl Check logs for OpenFlow trace
4150 # Prevent race.
4151 OVS_WAIT_UNTIL([cat ovs-vswitchd.log | vconn_sub | test `grep -- "|vconn|DBG|unix: sent (Success): NXST_FLOW reply" | wc -l` -ge 3])
4152 AT_CHECK([print_vconn_debug | vconn_sub | ofctl_strip], [0], [dnl
4153 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4154  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4155 vconn|DBG|unix: received: OFPT_HELLO:
4156  version bitmap: 0x01
4157 vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
4158 vconn|DBG|unix: received: OFPT_FLOW_MOD: DEL actions=drop
4159 vconn|DBG|unix: received: OFPT_BARRIER_REQUEST:
4160 vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY:
4161 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4162  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4163 vconn|DBG|unix: received: OFPT_HELLO (OF1.4):
4164  version bitmap: 0x05
4165 vconn|DBG|unix: negotiated OpenFlow version 0x05 (we support version 0x06 and earlier, peer supports version 0x05)
4166 vconn|DBG|unix: received: OFPT_BUNDLE_CONTROL (OF1.4):
4167  bundle_id=0 type=OPEN_REQUEST flags=atomic ordered
4168 vconn|DBG|unix: sent (Success): OFPT_BUNDLE_CONTROL (OF1.4):
4169  bundle_id=0 type=OPEN_REPLY flags=0
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:66:77:88:99:aa idle:50 actions=output:1
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:77:88:99:aa:bb idle:60 actions=output:2
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:88:99:aa:bb:cc idle:70 actions=output:3
4179 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4180  bundle_id=0 flags=atomic ordered
4181 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:66:77:88:99:aa idle:50 actions=output:4
4182 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4183  bundle_id=0 flags=atomic ordered
4184 OFPT_FLOW_MOD (OF1.4): DEL table:255 actions=drop
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:66:77:88:99:aa idle:50 actions=output:5
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:77:88:99:aa:bb idle:60 actions=output:6
4191 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4192  bundle_id=0 flags=atomic ordered
4193 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:88:99:aa:bb:cc idle:70 actions=output:7
4194 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4195  bundle_id=0 flags=atomic ordered
4196 OFPT_FLOW_MOD (OF1.4): DEL table:255 in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
4197 vconn|DBG|unix: received: OFPT_BUNDLE_CONTROL (OF1.4):
4198  bundle_id=0 type=COMMIT_REQUEST flags=atomic ordered
4199 vconn|DBG|unix: sent (Success): OFPT_BUNDLE_CONTROL (OF1.4):
4200  bundle_id=0 type=COMMIT_REPLY flags=0
4201 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4202  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4203 vconn|DBG|unix: received: OFPT_HELLO:
4204  version bitmap: 0x01
4205 vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
4206 vconn|DBG|unix: received: NXT_SET_FLOW_FORMAT: format=nxm
4207 vconn|DBG|unix: received: OFPT_BARRIER_REQUEST:
4208 vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY:
4209 vconn|DBG|unix: received: NXST_FLOW request:
4210 vconn|DBG|unix: sent (Success): NXST_FLOW reply:
4211  idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=output:5
4212  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:6
4213 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4214  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4215 vconn|DBG|unix: received: OFPT_HELLO (OF1.4):
4216  version bitmap: 0x05
4217 vconn|DBG|unix: negotiated OpenFlow version 0x05 (we support version 0x06 and earlier, peer supports version 0x05)
4218 vconn|DBG|unix: received: OFPT_BUNDLE_CONTROL (OF1.4):
4219  bundle_id=0 type=OPEN_REQUEST flags=atomic ordered
4220 vconn|DBG|unix: sent (Success): OFPT_BUNDLE_CONTROL (OF1.4):
4221  bundle_id=0 type=OPEN_REPLY flags=0
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 actions=drop
4225 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4226  bundle_id=0 flags=atomic ordered
4227 OFPT_FLOW_MOD (OF1.4): MOD_STRICT in_port=2,dl_src=00:77:88:99:aa:bb actions=output:7
4228 vconn|DBG|unix: received: OFPT_BUNDLE_CONTROL (OF1.4):
4229  bundle_id=0 type=COMMIT_REQUEST flags=atomic ordered
4230 vconn|DBG|unix: sent (Success): OFPT_BUNDLE_CONTROL (OF1.4):
4231  bundle_id=0 type=COMMIT_REPLY flags=0
4232 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4233  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4234 vconn|DBG|unix: received: OFPT_HELLO:
4235  version bitmap: 0x01
4236 vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
4237 vconn|DBG|unix: received: NXT_SET_FLOW_FORMAT: format=nxm
4238 vconn|DBG|unix: received: OFPT_BARRIER_REQUEST:
4239 vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY:
4240 vconn|DBG|unix: received: NXST_FLOW request:
4241 vconn|DBG|unix: sent (Success): NXST_FLOW reply:
4242  idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
4243  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:7
4244 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4245  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4246 vconn|DBG|unix: received: OFPT_HELLO (OF1.4):
4247  version bitmap: 0x05
4248 vconn|DBG|unix: negotiated OpenFlow version 0x05 (we support version 0x06 and earlier, peer supports version 0x05)
4249 vconn|DBG|unix: received: OFPT_BUNDLE_CONTROL (OF1.4):
4250  bundle_id=0 type=OPEN_REQUEST flags=atomic ordered
4251 vconn|DBG|unix: sent (Success): OFPT_BUNDLE_CONTROL (OF1.4):
4252  bundle_id=0 type=OPEN_REPLY flags=0
4253 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4254  bundle_id=0 flags=atomic ordered
4255 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:77:88:99:aa:bb idle:60 actions=output:8
4256 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4257  bundle_id=0 flags=atomic ordered
4258 OFPT_FLOW_MOD (OF1.4): DEL_STRICT table:255 in_port=2,dl_src=00:66:77:88:99:aa actions=drop
4259 vconn|DBG|unix: received: OFPT_BUNDLE_ADD_MESSAGE (OF1.4):
4260  bundle_id=0 flags=atomic ordered
4261 OFPT_FLOW_MOD (OF1.4): ADD in_port=2,dl_src=00:66:77:88:99:aa actions=drop
4262 vconn|DBG|unix: received: OFPT_BUNDLE_CONTROL (OF1.4):
4263  bundle_id=0 type=COMMIT_REQUEST flags=atomic ordered
4264 vconn|DBG|unix: sent (Success): OFPT_BUNDLE_CONTROL (OF1.4):
4265  bundle_id=0 type=COMMIT_REPLY flags=0
4266 vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.5):
4267  version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
4268 vconn|DBG|unix: received: OFPT_HELLO:
4269  version bitmap: 0x01
4270 vconn|DBG|unix: negotiated OpenFlow version 0x01 (we support version 0x06 and earlier, peer supports version 0x01)
4271 vconn|DBG|unix: received: NXT_SET_FLOW_FORMAT: format=nxm
4272 vconn|DBG|unix: received: OFPT_BARRIER_REQUEST:
4273 vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY:
4274 vconn|DBG|unix: received: NXST_FLOW request: 
4275 vconn|DBG|unix: sent (Success): NXST_FLOW reply:
4276  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:8
4277  in_port=2,dl_src=00:66:77:88:99:aa actions=drop
4278 ])
4279
4280 OVS_VSWITCHD_STOP
4281 AT_CLEANUP
4282
4283
4284 AT_SETUP([ofproto - failing bundle commit (OpenFlow 1.4)])
4285 AT_KEYWORDS([monitor])
4286 OVS_VSWITCHD_START
4287
4288 AT_CHECK([ovs-ofctl del-flows br0])
4289
4290 ovs-ofctl add-flows br0 - <<EOF
4291 idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=11
4292 idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=22
4293 idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=33
4294 EOF
4295 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
4296  idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=output:11
4297  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:22
4298  idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=output:33
4299 NXST_FLOW reply:
4300 ])
4301
4302 # last line uses illegal table number (OVS internal table)
4303 AT_DATA([flows.txt], [dnl
4304 add idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=1
4305 add idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=2
4306 add idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=3
4307 modify idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=4
4308 delete
4309 add idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=5
4310 add idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=6
4311 add idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=7
4312 delete in_port=2 dl_src=00:88:99:aa:bb:cc
4313 add table=254 actions=drop
4314 ])
4315
4316 AT_CHECK([ovs-ofctl --bundle add-flows br0 flows.txt 2>&1 | sed '/|WARN|/d
4317 s/unix:.*br0\.mgmt/unix:br0.mgmt/' | sed 's/(.* error)/(error)/'],
4318 [0], [dnl
4319 OFPT_ERROR (OF1.4) (xid=0xb): OFPBRC_EPERM
4320 OFPT_FLOW_MOD (OF1.4) (xid=0xb): ADD table:254 actions=drop
4321 OFPT_ERROR (OF1.4) (xid=0xd): OFPBFC_MSG_FAILED
4322 OFPT_BUNDLE_CONTROL (OF1.4) (xid=0xd):
4323  bundle_id=0 type=COMMIT_REQUEST flags=atomic ordered
4324 ovs-ofctl: talking to unix:br0.mgmt (error)
4325 ])
4326
4327 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
4328  idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=output:11
4329  idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=output:22
4330  idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=output:33
4331 NXST_FLOW reply:
4332 ])
4333
4334 OVS_VSWITCHD_STOP
4335 AT_CLEANUP