]> git.proxmox.com Git - ovs.git/blob - tests/ofproto.at
ofp-util: Abstract table miss configuration and fix related bugs.
[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 - del group])
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_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-groups br0 groups.txt])
274 AT_CHECK([ovs-ofctl -F OXM-OpenFlow15 -O OpenFlow15 -vwarn dump-groups br0 1234], [0], [stdout])
275 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
276 OFPST_GROUP_DESC reply (OF1.5):
277 group_id=1234,type=all,bucket=actions=output:10
278 ])
279 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0 group_id=1234])
280 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-groups br0], [0], [stdout])
281 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
282 OFPST_GROUP_DESC reply (OF1.1):
283 group_id=1235,type=all,bucket=actions=output:10
284 ])
285 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0 group_id=1234])
286 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-groups br0], [0], [stdout])
287 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
288 OFPST_GROUP_DESC reply (OF1.1):
289 group_id=1235,type=all,bucket=actions=output:10
290 ])
291 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0], [0])
292 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-groups br0], [0], [stdout])
293 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
294 OFPST_GROUP_DESC reply (OF1.1):
295 ])
296 OVS_VSWITCHD_STOP
297 AT_CLEANUP
298
299 dnl This is really bare-bones.
300 dnl It at least checks request and reply serialization and deserialization.
301 AT_SETUP([ofproto - del group deletes flows])
302 OVS_VSWITCHD_START
303 AT_DATA([groups.txt], [dnl
304 group_id=1234,type=all,bucket=output:10
305 group_id=1235,type=all,bucket=output:10
306 ])
307 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-groups br0 groups.txt])
308 AT_DATA([flows.txt], [dnl
309 tcp actions=group:1234
310 udp actions=group:1235
311 ])
312 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-flows br0 flows.txt])
313 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-flows br0 | ofctl_strip | sort],
314 [0], [dnl
315 tcp actions=group:1234
316 udp actions=group:1235
317 OFPST_FLOW reply (OF1.1):
318 ])
319 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0 group_id=1234])
320 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-flows br0 | ofctl_strip | sort],
321 [0], [dnl
322 udp actions=group:1235
323 OFPST_FLOW reply (OF1.1):
324 ])
325 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0 group_id=1234])
326 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-flows br0 | ofctl_strip | sort],
327 [0], [dnl
328 udp actions=group:1235
329 OFPST_FLOW reply (OF1.1):
330 ])
331 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn del-groups br0])
332 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-flows br0 | ofctl_strip | sort],
333 [0], [dnl
334 OFPST_FLOW reply (OF1.1):
335 ])
336 OVS_VSWITCHD_STOP
337 AT_CLEANUP
338
339 dnl This is really bare-bones.
340 dnl It at least checks request and reply serialization and deserialization.
341 AT_SETUP([ofproto - flow mod checks group availability])
342 OVS_VSWITCHD_START
343 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-group br0 group_id=1234,type=all,bucket=output:10])
344 AT_DATA([flows.txt], [dnl
345 tcp actions=group:1234
346 udp actions=group:1235
347 ])
348 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-flow br0 'tcp actions=group:1234'])
349 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-flow br0 'tcp actions=group:1235'], [1], [], [stderr])
350
351 # The output should look like this:
352 #
353 # 00000000 02 0e 00 98 00 00 00 02-00 00 00 00 00 00 00 00 |................|
354 # 00000010 00 00 00 00 00 00 00 00-ff 00 00 00 00 00 80 00 |................|
355 # 00000020 ff ff ff ff ff ff ff ff-ff ff ff ff 00 00 00 00 |................|
356 # 00000030 00 00 00 58 00 00 00 00-00 00 03 d7 00 00 00 00 |...X............|
357 #
358 # This 'sed' command captures the error message but drops details.
359 AT_CHECK([sed '/truncated/d
360 /^000000.0/d' stderr | STRIP_XIDS], [0],
361 [OFPT_ERROR (OF1.1): OFPBAC_BAD_OUT_GROUP
362 OFPT_FLOW_MOD (OF1.1):
363 ])
364 OVS_VSWITCHD_STOP
365 AT_CLEANUP
366
367 dnl This is really bare-bones.
368 dnl It at least checks request and reply serialization and deserialization.
369 AT_SETUP([ofproto - group description])
370 OVS_VSWITCHD_START
371 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-group br0 group_id=1234,type=all,bucket=output:10], [0], [stdout])
372 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-groups br0], [0], [stdout])
373 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
374 OFPST_GROUP_DESC reply (OF1.1):
375 group_id=1234,type=all,bucket=actions=output:10
376 ])
377 OVS_VSWITCHD_STOP
378 AT_CLEANUP
379
380 dnl This is really bare-bones.
381 dnl It at least checks request and reply serialization and deserialization.
382 AT_SETUP([ofproto - group description])
383 OVS_VSWITCHD_START
384 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-group br0 group_id=1234,type=all,bucket=output:10])
385 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-groups br0], [0], [stdout])
386 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
387 OFPST_GROUP_DESC reply (OF1.1):
388 group_id=1234,type=all,bucket=actions=output:10
389 ])
390 OVS_VSWITCHD_STOP
391 AT_CLEANUP
392
393 dnl This is really bare-bones.
394 dnl It at least checks request and reply serialization and deserialization.
395 AT_SETUP([ofproto - group features])
396 OVS_VSWITCHD_START
397 AT_CHECK([ovs-ofctl -O OpenFlow12 -vwarn dump-group-features br0], [0], [stdout])
398 AT_CHECK([STRIP_XIDS stdout], [0], [dnl
399 OFPST_GROUP_FEATURES reply (OF1.2):
400 Group table:
401 Types: 0x0
402 Capabilities: 0x7
403 ])
404 OVS_VSWITCHD_STOP
405 AT_CLEANUP
406
407 dnl This is really bare-bones.
408 dnl It at least checks request and reply serialization and deserialization.
409 AT_SETUP([ofproto - group stats])
410 OVS_VSWITCHD_START
411 AT_DATA([groups.txt], [dnl
412 group_id=1234,type=all,bucket=output:10
413 group_id=1235,type=all,bucket=output:10
414 ])
415 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-groups br0 groups.txt])
416 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn add-flow br0 'tcp actions=group:1234'])
417 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-group-stats br0 group_id=1234], [0], [stdout])
418 AT_CHECK([STRIP_XIDS stdout | sort], [0], [dnl
419 group_id=1234,ref_count=1,packet_count=0,byte_count=0,bucket0:packet_count=0,byte_count=0
420 OFPST_GROUP reply (OF1.1):
421 ])
422 AT_CHECK([ovs-ofctl -O OpenFlow11 -vwarn dump-group-stats br0], [0], [stdout])
423 AT_CHECK([STRIP_XIDS stdout | sort], [0], [dnl
424 group_id=1234,ref_count=1,packet_count=0,byte_count=0,bucket0:packet_count=0,byte_count=0
425 group_id=1235,ref_count=0,packet_count=0,byte_count=0,bucket0:packet_count=0,byte_count=0
426 OFPST_GROUP reply (OF1.1):
427 ])
428 OVS_VSWITCHD_STOP
429 AT_CLEANUP
430
431 AT_SETUP([ofproto - mod-port (OpenFlow 1.0)])
432 OVS_VSWITCHD_START
433 for command_config_state in \
434 'up 0 0' \
435 'noflood NO_FLOOD 0' \
436 'down PORT_DOWN,NO_FLOOD LINK_DOWN' \
437 'flood PORT_DOWN LINK_DOWN' \
438 'no-receive PORT_DOWN,NO_RECV LINK_DOWN' \
439 'no-forward PORT_DOWN,NO_RECV,NO_FWD LINK_DOWN' \
440 'no-packet-in PORT_DOWN,NO_RECV,NO_FWD,NO_PACKET_IN LINK_DOWN' \
441 'forward PORT_DOWN,NO_RECV,NO_PACKET_IN LINK_DOWN' \
442 'packet-in PORT_DOWN,NO_RECV LINK_DOWN' \
443 'up NO_RECV 0' \
444 'receive 0 0'
445 do
446 set $command_config_state
447 command=$[1] config=`echo $[2] | sed 's/,/ /g'` state=$[3]
448 AT_CHECK([ovs-ofctl -vwarn mod-port br0 br0 $command])
449 AT_CHECK([ovs-ofctl -vwarn show br0], [0], [stdout])
450 AT_CHECK_UNQUOTED([STRIP_XIDS stdout], [0], [dnl
451 OFPT_FEATURES_REPLY: dpid:fedcba9876543210
452 n_tables:254, n_buffers:256
453 capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS ARP_MATCH_IP
454 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
455 LOCAL(br0): addr:aa:55:aa:55:00:00
456 config: $config
457 state: $state
458 speed: 0 Mbps now, 0 Mbps max
459 OFPT_GET_CONFIG_REPLY: frags=normal miss_send_len=0
460 ])
461 done
462 OVS_VSWITCHD_STOP
463 AT_CLEANUP
464
465 AT_SETUP([ofproto - mod-port (OpenFlow 1.2)])
466 OVS_VSWITCHD_START
467 for command_config_state in \
468 'up 0 0' \
469 'down PORT_DOWN LINK_DOWN' \
470 'no-receive PORT_DOWN,NO_RECV LINK_DOWN' \
471 'no-forward PORT_DOWN,NO_RECV,NO_FWD LINK_DOWN' \
472 'no-packet-in PORT_DOWN,NO_RECV,NO_FWD,NO_PACKET_IN LINK_DOWN' \
473 'forward PORT_DOWN,NO_RECV,NO_PACKET_IN LINK_DOWN' \
474 'packet-in PORT_DOWN,NO_RECV LINK_DOWN' \
475 'up NO_RECV 0' \
476 'receive 0 0'
477 do
478 set $command_config_state
479 command=$[1] config=`echo $[2] | sed 's/,/ /g'` state=$[3]
480 AT_CHECK([ovs-ofctl -O OpenFlow12 -vwarn mod-port br0 br0 $command])
481 AT_CHECK([ovs-ofctl -O OpenFlow12 -vwarn show br0], [0], [stdout])
482 AT_CHECK_UNQUOTED([STRIP_XIDS stdout], [0], [dnl
483 OFPT_FEATURES_REPLY (OF1.2): dpid:fedcba9876543210
484 n_tables:254, n_buffers:256
485 capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS
486 LOCAL(br0): addr:aa:55:aa:55:00:00
487 config: $config
488 state: $state
489 speed: 0 Mbps now, 0 Mbps max
490 OFPT_GET_CONFIG_REPLY (OF1.2): frags=normal miss_send_len=0
491 ])
492 done
493 OVS_VSWITCHD_STOP
494 AT_CLEANUP
495
496 AT_SETUP([ofproto - mod-port (OpenFlow 1.4)])
497 OVS_VSWITCHD_START
498 for command_config_state in \
499 'up 0 0' \
500 'down PORT_DOWN LINK_DOWN' \
501 'no-receive PORT_DOWN,NO_RECV LINK_DOWN' \
502 'no-forward PORT_DOWN,NO_RECV,NO_FWD LINK_DOWN' \
503 'no-packet-in PORT_DOWN,NO_RECV,NO_FWD,NO_PACKET_IN LINK_DOWN' \
504 'forward PORT_DOWN,NO_RECV,NO_PACKET_IN LINK_DOWN' \
505 'packet-in PORT_DOWN,NO_RECV LINK_DOWN' \
506 'up NO_RECV 0' \
507 'receive 0 0'
508 do
509 set $command_config_state
510 command=$[1] config=`echo $[2] | sed 's/,/ /g'` state=$[3]
511 AT_CHECK([ovs-ofctl -O OpenFlow14 -vwarn mod-port br0 br0 $command])
512 AT_CHECK([ovs-ofctl -O OpenFlow14 -vwarn show br0], [0], [stdout])
513 AT_CHECK_UNQUOTED([STRIP_XIDS stdout], [0], [dnl
514 OFPT_FEATURES_REPLY (OF1.4): dpid:fedcba9876543210
515 n_tables:254, n_buffers:256
516 capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS
517 OFPST_PORT_DESC reply (OF1.4):
518 LOCAL(br0): addr:aa:55:aa:55:00:00
519 config: $config
520 state: $state
521 speed: 0 Mbps now, 0 Mbps max
522 OFPT_GET_CONFIG_REPLY (OF1.4): frags=normal miss_send_len=0
523 ])
524 done
525 OVS_VSWITCHD_STOP
526 AT_CLEANUP
527
528 AT_SETUP([ofproto - basic flow_mod commands (NXM)])
529 OVS_VSWITCHD_START
530 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0], [NXST_FLOW reply:
531 ])
532 AT_CHECK([echo 'in_port=2,actions=1' | ovs-ofctl add-flows br0 -])
533 AT_CHECK([ovs-ofctl add-flow br0 in_port=1,actions=2])
534 AT_CHECK([ovs-ofctl -F nxm add-flow br0 table=1,in_port=4,actions=3])
535 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
536 in_port=1 actions=output:2
537 in_port=2 actions=output:1
538 table=1, in_port=4 actions=output:3
539 NXST_FLOW reply:
540 ])
541 AT_CHECK([ovs-ofctl dump-aggregate br0 table=0 | STRIP_XIDS], [0], [dnl
542 NXST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=2
543 ])
544 AT_CHECK([ovs-ofctl del-flows br0])
545 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0], [NXST_FLOW reply:
546 ])
547 OVS_VSWITCHD_STOP
548 AT_CLEANUP
549
550 AT_SETUP([ofproto - basic flow_mod commands (OpenFlow 1.0)])
551 OVS_VSWITCHD_START
552 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip], [0], [OFPST_FLOW reply:
553 ])
554 AT_CHECK([echo 'in_port=2,actions=1' | ovs-ofctl -F openflow10 add-flows br0 -])
555 AT_CHECK([ovs-ofctl -F openflow10 add-flow br0 in_port=1,actions=2])
556 AT_CHECK([ovs-ofctl -F openflow10 add-flow br0 table=1,in_port=4,actions=3])
557 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip | sort], [0], [dnl
558 in_port=1 actions=output:2
559 in_port=2 actions=output:1
560 table=1, in_port=4 actions=output:3
561 OFPST_FLOW reply:
562 ])
563 AT_CHECK([ovs-ofctl -F openflow10 dump-aggregate br0 table=0 | STRIP_XIDS], [0], [dnl
564 OFPST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=2
565 ])
566 AT_CHECK([ovs-ofctl -F openflow10 del-flows br0])
567 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip], [0], [OFPST_FLOW reply:
568 ])
569 OVS_VSWITCHD_STOP
570 AT_CLEANUP
571
572 AT_SETUP([ofproto - basic flow_mod commands (OpenFlow 1.1)])
573 OVS_VSWITCHD_START
574 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip], [0], [OFPST_FLOW reply (OF1.1):
575 ])
576 AT_CHECK([echo 'in_port=2,actions=1' | ovs-ofctl -O OpenFlow11 add-flows br0 -])
577 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 in_port=1,actions=2])
578 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 table=1,in_port=4,actions=3])
579 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
580 in_port=1 actions=output:2
581 in_port=2 actions=output:1
582 table=1, in_port=4 actions=output:3
583 OFPST_FLOW reply (OF1.1):
584 ])
585 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-aggregate br0 table=0 | STRIP_XIDS], [0], [dnl
586 OFPST_AGGREGATE reply (OF1.1): packet_count=0 byte_count=0 flow_count=2
587 ])
588 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0])
589 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip], [0], [OFPST_FLOW reply (OF1.1):
590 table=1, in_port=4 actions=output:3
591 ])
592 OVS_VSWITCHD_STOP
593 AT_CLEANUP
594
595 AT_SETUP([ofproto - flow_mod negative test (OpenFlow 1.1)])
596 OVS_VSWITCHD_START(
597 [set bridge br0 protocols=OpenFlow10,OpenFlow11,OpenFlow12,OpenFlow13])
598 AT_CHECK([ovs-ofctl add-flow -O OpenFlow11 br0 table=1,action=goto_table:2])
599
600 # The error message here actually comes from ovs-ofctl, not from ovs-vswitchd,
601 # but at least it's the same code in ofpacts_check() that issues the error.
602 AT_CHECK([ovs-ofctl add-flow -O OpenFlow11 br0 table=1,action=goto_table:1],
603 [1], [],
604 [ovs-ofctl: actions are invalid with specified match (OFPBRC_BAD_TABLE_ID)
605 ])
606 OVS_VSWITCHD_STOP
607 AT_CLEANUP
608
609 AT_SETUP([ofproto - set-field flow_mod commands (NXM)])
610 OVS_VSWITCHD_START
611 AT_CHECK([ovs-ofctl add-flow br0 ipv6,table=1,in_port=3,actions=drop])
612 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])
613 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
614 table=1, ipv6,in_port=3 actions=load:0xa6badbfffefe59fa->NXM_NX_IPV6_SRC[[0..63]],load:0xfe8001234567890a->NXM_NX_IPV6_SRC[[64..127]]
615 NXST_FLOW reply:
616 ])
617 OVS_VSWITCHD_STOP
618 AT_CLEANUP
619
620 AT_SETUP([ofproto - basic flow_mod commands (OpenFlow 1.2)])
621 OVS_VSWITCHD_START
622 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip], [0], [OFPST_FLOW reply (OF1.2):
623 ])
624 AT_CHECK([echo 'in_port=2,actions=1' | ovs-ofctl -O OpenFlow12 add-flows br0 -])
625 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=1,actions=2])
626 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 table=1,in_port=4,actions=3])
627 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
628 in_port=1 actions=output:2
629 in_port=2 actions=output:1
630 table=1, in_port=4 actions=output:3
631 OFPST_FLOW reply (OF1.2):
632 ])
633 AT_CHECK([ovs-ofctl -O OpenFlow12 del-flows br0])
634 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip], [0], [OFPST_FLOW reply (OF1.2):
635 ])
636 OVS_VSWITCHD_STOP
637 AT_CLEANUP
638
639 AT_SETUP([ofproto - dump flows with cookie])
640 OVS_VSWITCHD_START
641 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
642 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,actions=1])
643 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x3,in_port=3,actions=1])
644 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
645 cookie=0x1, in_port=1 actions=output:1
646 cookie=0x2, in_port=2 actions=output:1
647 cookie=0x3, in_port=3 actions=output:1
648 NXST_FLOW reply:
649 ])
650 AT_CHECK([ovs-ofctl dump-aggregate br0 table=0 | STRIP_XIDS], [0], [dnl
651 NXST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=3
652 ])
653 AT_CHECK([ovs-ofctl dump-flows br0 cookie=0x3/-1 | ofctl_strip | sort], [0], [dnl
654 cookie=0x3, in_port=3 actions=output:1
655 NXST_FLOW reply:
656 ])
657 AT_CHECK([ovs-ofctl dump-aggregate br0 cookie=0x3/-1 | STRIP_XIDS], [0], [dnl
658 NXST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=1
659 ])
660 OVS_VSWITCHD_STOP
661 AT_CLEANUP
662
663 AT_SETUP([ofproto - mod flow with cookie change (OpenFlow 1.0)])
664 OVS_VSWITCHD_START
665 AT_CHECK([ovs-ofctl -F openflow10 add-flow br0 cookie=0x1,in_port=1,actions=1])
666 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip | sort], [0], [dnl
667 cookie=0x1, in_port=1 actions=output:1
668 OFPST_FLOW reply:
669 ])
670
671 AT_CHECK([ovs-ofctl -F openflow10 mod-flows br0 cookie=0x2,in_port=1,actions=1])
672 AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | ofctl_strip | sort], [0], [dnl
673 cookie=0x2, in_port=1 actions=output:1
674 OFPST_FLOW reply:
675 ])
676 OVS_VSWITCHD_STOP
677 AT_CLEANUP
678
679 AT_SETUP([ofproto - mod flow with cookie change (NXM)])
680 OVS_VSWITCHD_START
681 AT_CHECK([ovs-ofctl -F nxm add-flow br0 cookie=0x1,in_port=1,actions=1])
682 AT_CHECK([ovs-ofctl -F nxm dump-flows br0 | ofctl_strip | sort], [0], [dnl
683 cookie=0x1, in_port=1 actions=output:1
684 NXST_FLOW reply:
685 ])
686
687 AT_CHECK([ovs-ofctl -F nxm mod-flows br0 cookie=0x2,in_port=1,actions=1])
688 AT_CHECK([ovs-ofctl -F nxm dump-flows br0 | ofctl_strip | sort], [0], [dnl
689 cookie=0x2, in_port=1 actions=output:1
690 NXST_FLOW reply:
691 ])
692 OVS_VSWITCHD_STOP
693 AT_CLEANUP
694
695 AT_SETUP([ofproto - no mod flow with cookie change (OpenFlow 1.1)])
696 OVS_VSWITCHD_START
697 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x1,in_port=1,actions=1])
698 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
699 cookie=0x1, in_port=1 actions=output:1
700 OFPST_FLOW reply (OF1.1):
701 ])
702 AT_CHECK([ovs-ofctl -O OpenFlow11 mod-flows br0 cookie=0x2,in_port=1,actions=1])
703 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
704 cookie=0x1, in_port=1 actions=output:1
705 OFPST_FLOW reply (OF1.1):
706 ])
707 OVS_VSWITCHD_STOP
708 AT_CLEANUP
709
710 dnl The OpenFlow 1.2 spec states that the cookie may not be modified
711 AT_SETUP([ofproto - no mod flow with cookie change (OpenFlow 1.2)])
712 OVS_VSWITCHD_START
713 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x1,in_port=1,actions=1])
714 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
715 cookie=0x1, in_port=1 actions=output:1
716 OFPST_FLOW reply (OF1.2):
717 ])
718
719 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 cookie=0x2,in_port=1,actions=1])
720 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
721 cookie=0x1, in_port=1 actions=output:1
722 OFPST_FLOW reply (OF1.2):
723 ])
724 OVS_VSWITCHD_STOP
725 AT_CLEANUP
726
727 AT_SETUP([ofproto - mod flows based on cookie mask (OpenFlow 1.0)])
728 OVS_VSWITCHD_START
729 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
730 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=2,actions=1])
731 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=3,actions=1])
732 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
733 cookie=0x1, in_port=1 actions=output:1
734 cookie=0x1, in_port=2 actions=output:1
735 cookie=0x2, in_port=3 actions=output:1
736 NXST_FLOW reply:
737 ])
738
739 AT_CHECK([ovs-ofctl -F nxm mod-flows br0 cookie=0x1/0xff,actions=4])
740 AT_CHECK([ovs-ofctl -F nxm dump-flows br0 | ofctl_strip | sort], [0], [dnl
741 cookie=0x1, in_port=1 actions=output:4
742 cookie=0x1, in_port=2 actions=output:4
743 cookie=0x2, in_port=3 actions=output:1
744 NXST_FLOW reply:
745 ])
746 OVS_VSWITCHD_STOP
747 AT_CLEANUP
748
749 AT_SETUP([ofproto - mod flows based on cookie mask (OpenFlow 1.1)])
750 OVS_VSWITCHD_START
751 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x1,in_port=1,actions=1])
752 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x1,in_port=2,actions=1])
753 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x2,in_port=3,actions=1])
754 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
755 cookie=0x1, in_port=1 actions=output:1
756 cookie=0x1, in_port=2 actions=output:1
757 cookie=0x2, in_port=3 actions=output:1
758 OFPST_FLOW reply (OF1.1):
759 ])
760
761 AT_CHECK([ovs-ofctl -O OpenFlow11 mod-flows br0 cookie=0x1/0xff,actions=4])
762 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
763 cookie=0x1, in_port=1 actions=output:4
764 cookie=0x1, in_port=2 actions=output:4
765 cookie=0x2, in_port=3 actions=output:1
766 OFPST_FLOW reply (OF1.1):
767 ])
768 OVS_VSWITCHD_STOP
769 AT_CLEANUP
770
771 AT_SETUP([ofproto - mod flows based on cookie mask (OpenFlow 1.2)])
772 OVS_VSWITCHD_START
773 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x1,in_port=1,actions=1])
774 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x1,in_port=2,actions=1])
775 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x2,in_port=3,actions=1])
776 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
777 cookie=0x1, in_port=1 actions=output:1
778 cookie=0x1, in_port=2 actions=output:1
779 cookie=0x2, in_port=3 actions=output:1
780 OFPST_FLOW reply (OF1.2):
781 ])
782
783 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 cookie=0x1/0xff,actions=4])
784 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
785 cookie=0x1, in_port=1 actions=output:4
786 cookie=0x1, in_port=2 actions=output:4
787 cookie=0x2, in_port=3 actions=output:1
788 OFPST_FLOW reply (OF1.2):
789 ])
790 OVS_VSWITCHD_STOP
791 AT_CLEANUP
792
793 dnl The OpenFlow 1.2 spec states that the cookie may not be modified
794 AT_SETUP([ofproto - mod flows based on cookie mask with cookie change])
795 OVS_VSWITCHD_START
796 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
797 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=2,actions=1])
798 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=3,actions=1])
799 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
800 cookie=0x1, in_port=1 actions=output:1
801 cookie=0x1, in_port=2 actions=output:1
802 cookie=0x2, in_port=3 actions=output:1
803 NXST_FLOW reply:
804 ])
805
806 AT_CHECK([ovs-ofctl -F nxm mod-flows br0 cookie=1/-1,cookie=4,actions=4])
807 AT_CHECK([ovs-ofctl -F nxm dump-flows br0 | ofctl_strip | sort], [0], [dnl
808 cookie=0x2, in_port=3 actions=output:1
809 cookie=0x4, in_port=1 actions=output:4
810 cookie=0x4, in_port=2 actions=output:4
811 NXST_FLOW reply:
812 ])
813 OVS_VSWITCHD_STOP
814 AT_CLEANUP
815
816 AT_SETUP([ofproto - mod flow with cookie miss (mask==0) - NXM])
817 OVS_VSWITCHD_START
818 AT_CHECK([ovs-ofctl -F nxm mod-flows br0 in_port=1,actions=1])
819 AT_CHECK([ovs-ofctl -F nxm dump-flows br0 | ofctl_strip | sort], [0], [dnl
820 in_port=1 actions=output:1
821 NXST_FLOW reply:
822 ])
823 OVS_VSWITCHD_STOP
824 AT_CLEANUP
825
826 AT_SETUP([ofproto - mod flow with cookie miss (mask==0) - OF1.1])
827 OVS_VSWITCHD_START
828 AT_CHECK([ovs-ofctl -O openflow11 mod-flows br0 in_port=1,actions=1])
829 AT_CHECK([ovs-ofctl -O openflow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
830 in_port=1 actions=output:1
831 OFPST_FLOW reply (OF1.1):
832 ])
833 OVS_VSWITCHD_STOP
834 AT_CLEANUP
835
836 AT_SETUP([ofproto - mod flow with cookie miss (mask==0) - OF1.2])
837 OVS_VSWITCHD_START
838 AT_CHECK([ovs-ofctl -O openflow12 mod-flows br0 in_port=1,actions=1])
839 AT_CHECK([ovs-ofctl -O openflow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
840 OFPST_FLOW reply (OF1.2):
841 ])
842 OVS_VSWITCHD_STOP
843 AT_CLEANUP
844
845 AT_SETUP([ofproto - mod flow with cookie miss (mask!=0) - NXM])
846 OVS_VSWITCHD_START
847 AT_CHECK([ovs-ofctl -F nxm mod-flows br0 cookie=1/1,in_port=1,actions=1])
848 AT_CHECK([ovs-ofctl -F nxm dump-flows br0 | ofctl_strip | sort], [0], [dnl
849 NXST_FLOW reply:
850 ])
851 OVS_VSWITCHD_STOP
852 AT_CLEANUP
853
854 AT_SETUP([ofproto - mod flow with cookie miss (mask!=0) - OF1.1])
855 OVS_VSWITCHD_START
856 AT_CHECK([ovs-ofctl -O openflow11 mod-flows br0 cookie=1/1,in_port=1,actions=1])
857 AT_CHECK([ovs-ofctl -O openflow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
858 OFPST_FLOW reply (OF1.1):
859 ])
860 OVS_VSWITCHD_STOP
861 AT_CLEANUP
862
863 AT_SETUP([ofproto - mod flow with cookie miss (mask!=0) - OF1.2])
864 OVS_VSWITCHD_START
865 AT_CHECK([ovs-ofctl -O openflow12 mod-flows br0 cookie=1/1,in_port=1,actions=1])
866 AT_CHECK([ovs-ofctl -O openflow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
867 OFPST_FLOW reply (OF1.2):
868 ])
869 OVS_VSWITCHD_STOP
870 AT_CLEANUP
871
872 AT_SETUP([ofproto - del flows with cookies])
873 OVS_VSWITCHD_START
874 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
875 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,actions=1])
876 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x3,in_port=3,actions=1])
877 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
878 cookie=0x1, in_port=1 actions=output:1
879 cookie=0x2, in_port=2 actions=output:1
880 cookie=0x3, in_port=3 actions=output:1
881 NXST_FLOW reply:
882 ])
883
884 AT_CHECK([ovs-ofctl del-flows br0])
885 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
886 NXST_FLOW reply:
887 ])
888 OVS_VSWITCHD_STOP
889 AT_CLEANUP
890
891 AT_SETUP([ofproto - del flows based on cookie])
892 OVS_VSWITCHD_START
893 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
894 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,actions=1])
895 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x3,in_port=3,actions=1])
896 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
897 cookie=0x1, in_port=1 actions=output:1
898 cookie=0x2, in_port=2 actions=output:1
899 cookie=0x3, in_port=3 actions=output:1
900 NXST_FLOW reply:
901 ])
902
903 AT_CHECK([ovs-ofctl del-flows br0 cookie=0x3/-1])
904 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
905 cookie=0x1, in_port=1 actions=output:1
906 cookie=0x2, in_port=2 actions=output:1
907 NXST_FLOW reply:
908 ])
909 OVS_VSWITCHD_STOP
910 AT_CLEANUP
911
912 AT_SETUP([ofproto - del flows based on cookie mask])
913 OVS_VSWITCHD_START
914 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
915 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,actions=1])
916 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x3,in_port=3,actions=1])
917 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
918 cookie=0x1, in_port=1 actions=output:1
919 cookie=0x2, in_port=2 actions=output:1
920 cookie=0x3, in_port=3 actions=output:1
921 NXST_FLOW reply:
922 ])
923 AT_CHECK([ovs-ofctl del-flows br0 cookie=0x3/0x1])
924 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
925 cookie=0x2, in_port=2 actions=output:1
926 NXST_FLOW reply:
927 ])
928 OVS_VSWITCHD_STOP
929 AT_CLEANUP
930
931 AT_SETUP([ofproto - del flows based on table id (NXM)])
932 OVS_VSWITCHD_START
933 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
934 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,table=1,actions=1])
935 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
936 cookie=0x1, in_port=1 actions=output:1
937 cookie=0x2, table=1, in_port=2 actions=output:1
938 NXST_FLOW reply:
939 ])
940 AT_CHECK([ovs-ofctl del-flows br0 table=0])
941 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
942 cookie=0x2, table=1, in_port=2 actions=output:1
943 NXST_FLOW reply:
944 ])
945 AT_CHECK([ovs-ofctl del-flows br0 table=1])
946 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
947 NXST_FLOW reply:
948 ])
949 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=1])
950 AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,table=1,actions=1])
951 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
952 cookie=0x1, in_port=1 actions=output:1
953 cookie=0x2, table=1, in_port=2 actions=output:1
954 NXST_FLOW reply:
955 ])
956 AT_CHECK([ovs-ofctl del-flows br0])
957 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
958 NXST_FLOW reply:
959 ])
960 OVS_VSWITCHD_STOP
961 AT_CLEANUP
962
963 AT_SETUP([ofproto - del flows based on table id (OpenFlow 1.1)])
964 OVS_VSWITCHD_START
965 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x1,in_port=1,actions=1])
966 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x2,in_port=2,table=1,actions=1])
967 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
968 cookie=0x1, in_port=1 actions=output:1
969 cookie=0x2, table=1, in_port=2 actions=output:1
970 OFPST_FLOW reply (OF1.1):
971 ])
972 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0 table=0])
973 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
974 cookie=0x2, table=1, in_port=2 actions=output:1
975 OFPST_FLOW reply (OF1.1):
976 ])
977 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0 table=1])
978 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
979 OFPST_FLOW reply (OF1.1):
980 ])
981 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x1,in_port=1,actions=1])
982 AT_CHECK([ovs-ofctl -O OpenFlow11 add-flow br0 cookie=0x2,in_port=2,table=1,actions=1])
983 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip | sort], [0], [dnl
984 cookie=0x1, in_port=1 actions=output:1
985 cookie=0x2, table=1, in_port=2 actions=output:1
986 OFPST_FLOW reply (OF1.1):
987 ])
988 AT_CHECK([ovs-ofctl -O OpenFlow11 del-flows br0])
989 AT_CHECK([ovs-ofctl -O OpenFlow11 dump-flows br0 | ofctl_strip], [0], [dnl
990 OFPST_FLOW reply (OF1.1):
991 cookie=0x2, table=1, in_port=2 actions=output:1
992 ])
993 OVS_VSWITCHD_STOP
994 AT_CLEANUP
995
996 AT_SETUP([ofproto - del flows based on table id (OpenFlow 1.2)])
997 OVS_VSWITCHD_START
998 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x1,in_port=1,actions=1])
999 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x2,in_port=2,table=1,actions=1])
1000 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1001 cookie=0x1, in_port=1 actions=output:1
1002 cookie=0x2, table=1, in_port=2 actions=output:1
1003 OFPST_FLOW reply (OF1.2):
1004 ])
1005 AT_CHECK([ovs-ofctl -O OpenFlow12 del-flows br0 table=0])
1006 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1007 cookie=0x2, table=1, in_port=2 actions=output:1
1008 OFPST_FLOW reply (OF1.2):
1009 ])
1010 AT_CHECK([ovs-ofctl -O OpenFlow12 del-flows br0 table=1])
1011 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1012 OFPST_FLOW reply (OF1.2):
1013 ])
1014 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x1,in_port=1,actions=1])
1015 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 cookie=0x2,in_port=2,table=1,actions=1])
1016 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1017 cookie=0x1, in_port=1 actions=output:1
1018 cookie=0x2, table=1, in_port=2 actions=output:1
1019 OFPST_FLOW reply (OF1.2):
1020 ])
1021 AT_CHECK([ovs-ofctl -O OpenFlow12 del-flows br0])
1022 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1023 OFPST_FLOW reply (OF1.2):
1024 ])
1025 OVS_VSWITCHD_STOP
1026 AT_CLEANUP
1027
1028 AT_SETUP([ofproto - flow table configuration (OpenFlow 1.0)])
1029 OVS_VSWITCHD_START
1030 # Check the default configuration.
1031 (printf "OFPST_TABLE reply (xid=0x2):"
1032 x=0
1033 name=classifier
1034 while test $x -lt 254; do
1035 printf "
1036 table %d (\"%s\"):
1037 active=0, lookup=0, matched=0
1038 max_entries=1000000
1039 matching:
1040 in_port: exact match or wildcard
1041 eth_src: exact match or wildcard
1042 eth_dst: exact match or wildcard
1043 eth_type: exact match or wildcard
1044 vlan_vid: exact match or wildcard
1045 vlan_pcp: exact match or wildcard
1046 ip_src: exact match or wildcard
1047 ip_dst: exact match or wildcard
1048 nw_proto: exact match or wildcard
1049 nw_tos: exact match or wildcard
1050 tcp_src: exact match or wildcard
1051 tcp_dst: exact match or wildcard
1052 " $x $name
1053 x=`expr $x + 1`
1054 name=table$x
1055 done) > expout
1056 AT_CHECK([ovs-ofctl dump-tables br0], [0], [expout])
1057 # Change the configuration.
1058 AT_CHECK(
1059 [ovs-vsctl \
1060 -- --id=@t0 create Flow_Table name=main \
1061 -- --id=@t1 create Flow_Table flow-limit=1024 \
1062 -- set bridge br0 'flow_tables={1=@t1,0=@t0}' \
1063 | ${PERL} $srcdir/uuidfilt.pl],
1064 [0], [<0>
1065 <1>
1066 ])
1067 # Check that the configuration was updated.
1068 mv expout orig-expout
1069 sed -e 's/classifier/main/
1070 21s/1000000/1024/' orig-expout > expout
1071 AT_CHECK([ovs-ofctl dump-tables br0], [0], [expout])
1072 OVS_VSWITCHD_STOP
1073 AT_CLEANUP
1074
1075 AT_SETUP([ofproto - flow table configuration (OpenFlow 1.2)])
1076 OVS_VSWITCHD_START
1077 # Check the default configuration.
1078 (printf "OFPST_TABLE reply (OF1.2) (xid=0x2):"
1079 x=0
1080 name=classifier
1081 while test $x -lt 254; do
1082 echo "
1083 table $x (\"$name\"):
1084 active=0, lookup=0, matched=0
1085 metadata: match=0xffffffffffffffff write=0xffffffffffffffff
1086 config=controller
1087 max_entries=1000000
1088 instructions (table miss and others):
1089 instructions: apply_actions,clear_actions,write_actions,write_metadata,goto_table
1090 Write-Actions and Apply-Actions features:
1091 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
1092 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 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
1093 matching:
1094 metadata: exact match or wildcard
1095 in_port_oxm: exact match or wildcard
1096 eth_src: exact match or wildcard
1097 eth_dst: exact match or wildcard
1098 eth_type: exact match or wildcard
1099 vlan_vid: exact match or wildcard
1100 vlan_pcp: exact match or wildcard
1101 mpls_label: exact match or wildcard
1102 mpls_tc: exact match or wildcard
1103 ip_src: exact match or wildcard
1104 ip_dst: exact match or wildcard
1105 ipv6_src: exact match or wildcard
1106 ipv6_dst: exact match or wildcard
1107 ipv6_label: exact match or wildcard
1108 nw_proto: exact match or wildcard
1109 ip_dscp: exact match or wildcard
1110 nw_ecn: exact match or wildcard
1111 arp_op: exact match or wildcard
1112 arp_spa: exact match or wildcard
1113 arp_tpa: exact match or wildcard
1114 arp_sha: exact match or wildcard
1115 arp_tha: exact match or wildcard
1116 tcp_src: exact match or wildcard
1117 tcp_dst: exact match or wildcard
1118 udp_src: exact match or wildcard
1119 udp_dst: exact match or wildcard
1120 sctp_src: exact match or wildcard
1121 sctp_dst: exact match or wildcard
1122 icmp_type: exact match or wildcard
1123 icmp_code: exact match or wildcard
1124 icmpv6_type: exact match or wildcard
1125 icmpv6_code: exact match or wildcard
1126 nd_target: exact match or wildcard
1127 nd_sll: exact match or wildcard
1128 nd_tll: exact match or wildcard"
1129 x=`expr $x + 1`
1130 name=table$x
1131 done) > expout
1132 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-tables br0], [0], [expout])
1133 # Change the configuration.
1134 AT_CHECK(
1135 [ovs-vsctl \
1136 -- --id=@t0 create Flow_Table name=main \
1137 -- --id=@t1 create Flow_Table flow-limit=1024 \
1138 -- set bridge br0 'flow_tables={1=@t1,0=@t0}' \
1139 | ${PERL} $srcdir/uuidfilt.pl],
1140 [0], [<0>
1141 <1>
1142 ])
1143 # Check that the configuration was updated.
1144 mv expout orig-expout
1145 sed 's/classifier/main/
1146 53s/1000000/1024/' < orig-expout > expout
1147 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-tables br0], [0], [expout])
1148 OVS_VSWITCHD_STOP
1149 AT_CLEANUP
1150
1151 AT_SETUP([ofproto - hard limits on flow table size (OpenFlow 1.0)])
1152 OVS_VSWITCHD_START
1153 # Configure a maximum of 4 flows.
1154 AT_CHECK(
1155 [ovs-vsctl \
1156 -- --id=@t0 create Flow_Table flow-limit=4 \
1157 -- set bridge br0 flow_tables:0=@t0 \
1158 | ${PERL} $srcdir/uuidfilt.pl],
1159 [0], [<0>
1160 ])
1161 # Add 4 flows.
1162 for in_port in 1 2 3 4; do
1163 ovs-ofctl add-flow br0 in_port=$in_port,actions=drop
1164 done
1165 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1166 in_port=1 actions=drop
1167 in_port=2 actions=drop
1168 in_port=3 actions=drop
1169 in_port=4 actions=drop
1170 NXST_FLOW reply:
1171 ])
1172 # Adding another flow will be refused.
1173 AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop], [1], [], [stderr])
1174 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
1175 [OFPT_ERROR: OFPFMFC_TABLE_FULL
1176 ])
1177 # Also a mod-flow that would add a flow will be refused.
1178 AT_CHECK([ovs-ofctl mod-flows br0 in_port=5,actions=drop], [1], [], [stderr])
1179 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
1180 [OFPT_ERROR: OFPFMFC_TABLE_FULL
1181 ])
1182 # Replacing or modifying an existing flow is allowed.
1183 AT_CHECK([ovs-ofctl add-flow br0 in_port=4,actions=normal])
1184 AT_CHECK([ovs-ofctl mod-flows br0 in_port=3,actions=output:1])
1185 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1186 in_port=1 actions=drop
1187 in_port=2 actions=drop
1188 in_port=3 actions=output:1
1189 in_port=4 actions=NORMAL
1190 NXST_FLOW reply:
1191 ])
1192 OVS_VSWITCHD_STOP
1193 AT_CLEANUP
1194
1195 AT_SETUP([ofproto - hard limits on flow table size (OpenFlow 1.2)])
1196 OVS_VSWITCHD_START
1197 # Configure a maximum of 4 flows.
1198 AT_CHECK(
1199 [ovs-vsctl \
1200 -- --id=@t0 create Flow_Table flow-limit=4 \
1201 -- set bridge br0 flow_tables:0=@t0 \
1202 | ${PERL} $srcdir/uuidfilt.pl],
1203 [0], [<0>
1204 ])
1205 # Add 4 flows.
1206 for in_port in 1 2 3 4; do
1207 ovs-ofctl -O OpenFlow12 add-flow br0 in_port=$in_port,actions=drop
1208 done
1209 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1210 in_port=1 actions=drop
1211 in_port=2 actions=drop
1212 in_port=3 actions=drop
1213 in_port=4 actions=drop
1214 OFPST_FLOW reply (OF1.2):
1215 ])
1216 # Adding another flow will be refused.
1217 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=5,actions=drop], [1], [], [stderr])
1218 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
1219 [OFPT_ERROR (OF1.2): OFPFMFC_TABLE_FULL
1220 ])
1221 # Replacing or modifying an existing flow is allowed.
1222 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=4,actions=normal])
1223 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 in_port=3,actions=output:1])
1224 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1225 in_port=1 actions=drop
1226 in_port=2 actions=drop
1227 in_port=3 actions=output:1
1228 in_port=4 actions=NORMAL
1229 OFPST_FLOW reply (OF1.2):
1230 ])
1231 OVS_VSWITCHD_STOP
1232 AT_CLEANUP
1233
1234 AT_SETUP([ofproto - eviction upon table overflow (OpenFlow 1.0)])
1235 OVS_VSWITCHD_START
1236 # Configure a maximum of 4 flows.
1237 AT_CHECK(
1238 [ovs-vsctl \
1239 -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
1240 -- set bridge br0 flow_tables:0=@t0 \
1241 | ${PERL} $srcdir/uuidfilt.pl],
1242 [0], [<0>
1243 ])
1244 # Add 4 flows.
1245 for in_port in 4 3 2 1; do
1246 ovs-ofctl add-flow br0 idle_timeout=${in_port}0,in_port=$in_port,actions=drop
1247 done
1248 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1249 idle_timeout=10, in_port=1 actions=drop
1250 idle_timeout=20, in_port=2 actions=drop
1251 idle_timeout=30, in_port=3 actions=drop
1252 idle_timeout=40, in_port=4 actions=drop
1253 NXST_FLOW reply:
1254 ])
1255 # Adding another flow will cause the one that expires soonest to be evicted.
1256 AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop])
1257 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1258 idle_timeout=20, in_port=2 actions=drop
1259 idle_timeout=30, in_port=3 actions=drop
1260 idle_timeout=40, in_port=4 actions=drop
1261 in_port=5 actions=drop
1262 NXST_FLOW reply:
1263 ])
1264 # A mod-flow that adds a flow also causes eviction, but replacing or
1265 # modifying an existing flow doesn't.
1266 AT_CHECK([ovs-ofctl mod-flows br0 in_port=6,actions=drop])
1267 AT_CHECK([ovs-ofctl add-flow br0 in_port=4,actions=normal])
1268 AT_CHECK([ovs-ofctl mod-flows br0 in_port=3,actions=output:1])
1269 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1270 idle_timeout=30, in_port=3 actions=output:1
1271 in_port=4 actions=NORMAL
1272 in_port=5 actions=drop
1273 in_port=6 actions=drop
1274 NXST_FLOW reply:
1275 ])
1276 # Flows with no timeouts at all cannot be evicted.
1277 AT_CHECK([ovs-ofctl add-flow br0 in_port=7,actions=normal])
1278 AT_CHECK([ovs-ofctl add-flow br0 in_port=8,actions=drop], [1], [], [stderr])
1279 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
1280 [OFPT_ERROR: OFPFMFC_TABLE_FULL
1281 ])
1282 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1283 in_port=4 actions=NORMAL
1284 in_port=5 actions=drop
1285 in_port=6 actions=drop
1286 in_port=7 actions=NORMAL
1287 NXST_FLOW reply:
1288 ])
1289 OVS_VSWITCHD_STOP
1290 AT_CLEANUP
1291
1292 AT_SETUP([ofproto - eviction upon table overflow (OpenFlow 1.2)])
1293 OVS_VSWITCHD_START
1294 # Configure a maximum of 4 flows.
1295 AT_CHECK(
1296 [ovs-vsctl \
1297 -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
1298 -- set bridge br0 flow_tables:0=@t0 \
1299 | ${PERL} $srcdir/uuidfilt.pl],
1300 [0], [<0>
1301 ])
1302 # Add 4 flows.
1303 for in_port in 4 3 2 1; do
1304 ovs-ofctl -O OpenFlow12 add-flow br0 idle_timeout=${in_port}0,in_port=$in_port,actions=drop
1305 done
1306 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1307 idle_timeout=10, in_port=1 actions=drop
1308 idle_timeout=20, in_port=2 actions=drop
1309 idle_timeout=30, in_port=3 actions=drop
1310 idle_timeout=40, in_port=4 actions=drop
1311 OFPST_FLOW reply (OF1.2):
1312 ])
1313 # Adding another flow will cause the one that expires soonest to be evicted.
1314 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=5,actions=drop])
1315 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1316 idle_timeout=20, in_port=2 actions=drop
1317 idle_timeout=30, in_port=3 actions=drop
1318 idle_timeout=40, in_port=4 actions=drop
1319 in_port=5 actions=drop
1320 OFPST_FLOW reply (OF1.2):
1321 ])
1322 # In Open Flow 1.2 a mod-flow does not ever add a flow and thus
1323 # has no effect on eviction
1324 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 in_port=6,actions=drop])
1325 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=4,actions=normal])
1326 AT_CHECK([ovs-ofctl -O OpenFlow12 mod-flows br0 in_port=3,actions=output:1])
1327 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1328 idle_timeout=20, in_port=2 actions=drop
1329 idle_timeout=30, in_port=3 actions=output:1
1330 in_port=4 actions=NORMAL
1331 in_port=5 actions=drop
1332 OFPST_FLOW reply (OF1.2):
1333 ])
1334 # Flows with no timeouts at all cannot be evicted.
1335 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=6,actions=drop])
1336 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=7,actions=normal])
1337 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=8,actions=drop], [1], [], [stderr])
1338 AT_CHECK([head -n 1 stderr | ofctl_strip], [0],
1339 [OFPT_ERROR (OF1.2): OFPFMFC_TABLE_FULL
1340 ])
1341 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1342 in_port=4 actions=NORMAL
1343 in_port=5 actions=drop
1344 in_port=6 actions=drop
1345 in_port=7 actions=NORMAL
1346 OFPST_FLOW reply (OF1.2):
1347 ])
1348 OVS_VSWITCHD_STOP
1349 AT_CLEANUP
1350
1351 AT_SETUP([ofproto - eviction upon table overflow, with fairness (OpenFlow 1.0)])
1352 OVS_VSWITCHD_START
1353 # Configure a maximum of 4 flows.
1354 AT_CHECK(
1355 [ovs-vsctl \
1356 -- --id=@t0 create Flow_Table name=evict flow-limit=4 \
1357 overflow-policy=evict \
1358 groups='"NXM_OF_IN_PORT[[]]"' \
1359 -- set bridge br0 flow_tables:0=@t0 \
1360 | ${PERL} $srcdir/uuidfilt.pl],
1361 [0], [<0>
1362 ])
1363 # Add 4 flows.
1364 ovs-ofctl add-flows br0 - <<EOF
1365 idle_timeout=10 in_port=2 dl_src=00:44:55:66:77:88 actions=drop
1366 idle_timeout=20 in_port=1 dl_src=00:11:22:33:44:55 actions=drop
1367 idle_timeout=30 in_port=1 dl_src=00:22:33:44:55:66 actions=drop
1368 idle_timeout=40 in_port=1 dl_src=00:33:44:55:66:77 actions=drop
1369 EOF
1370 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1371 idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
1372 idle_timeout=20, in_port=1,dl_src=00:11:22:33:44:55 actions=drop
1373 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
1374 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
1375 NXST_FLOW reply:
1376 ])
1377 # Adding another flow will cause the one that expires soonest within
1378 # the largest group (those with in_port=1) to be evicted. In this
1379 # case this is not the same as the one that expires soonest overall
1380 # (which is what makes the test interesting):
1381 AT_CHECK([ovs-ofctl add-flow br0 in_port=2,dl_src=00:55:66:77:88:99,actions=drop])
1382 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1383 idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
1384 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
1385 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
1386 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
1387 NXST_FLOW reply:
1388 ])
1389 # Enlarge the flow limit, change the eviction policy back to strictly
1390 # based on expiration, and and add some flows.
1391 AT_CHECK([ovs-vsctl set Flow_Table evict groups='[[]]' flow-limit=7])
1392 ovs-ofctl add-flows br0 - <<EOF
1393 idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=drop
1394 idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=drop
1395 idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=drop
1396 EOF
1397 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1398 idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
1399 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
1400 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
1401 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
1402 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
1403 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
1404 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
1405 NXST_FLOW reply:
1406 ])
1407 # Adding another flow will cause the one that expires soonest overall
1408 # to be evicted.
1409 AT_CHECK([ovs-ofctl add-flow br0 'idle_timeout=80 in_port=2 dl_src=00:99:aa:bb:cc:dd actions=drop'])
1410 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1411 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
1412 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
1413 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
1414 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
1415 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
1416 idle_timeout=80, in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
1417 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
1418 NXST_FLOW reply:
1419 ])
1420 # Reducing the flow limit also causes the flows that expire soonest
1421 # overall to be evicted.
1422 AT_CHECK([ovs-vsctl set Flow_Table evict flow-limit=4])
1423 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1424 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
1425 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
1426 idle_timeout=80, in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
1427 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
1428 NXST_FLOW reply:
1429 ])
1430 OVS_VSWITCHD_STOP
1431 AT_CLEANUP
1432
1433 AT_SETUP([ofproto - eviction upon table overflow, with fairness (OpenFlow 1.2)])
1434 OVS_VSWITCHD_START
1435 # Configure a maximum of 4 flows.
1436 AT_CHECK(
1437 [ovs-vsctl \
1438 -- --id=@t0 create Flow_Table name=evict flow-limit=4 \
1439 overflow-policy=evict \
1440 groups='"NXM_OF_IN_PORT[[]]"' \
1441 -- set bridge br0 flow_tables:0=@t0 \
1442 | ${PERL} $srcdir/uuidfilt.pl],
1443 [0], [<0>
1444 ])
1445 # Add 4 flows.
1446 ovs-ofctl -O OpenFlow12 add-flows br0 - <<EOF
1447 idle_timeout=10 in_port=2 dl_src=00:44:55:66:77:88 actions=drop
1448 idle_timeout=20 in_port=1 dl_src=00:11:22:33:44:55 actions=drop
1449 idle_timeout=30 in_port=1 dl_src=00:22:33:44:55:66 actions=drop
1450 idle_timeout=40 in_port=1 dl_src=00:33:44:55:66:77 actions=drop
1451 EOF
1452 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1453 idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
1454 idle_timeout=20, in_port=1,dl_src=00:11:22:33:44:55 actions=drop
1455 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
1456 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
1457 OFPST_FLOW reply (OF1.2):
1458 ])
1459 # Adding another flow will cause the one that expires soonest within
1460 # the largest group (those with in_port=1) to be evicted. In this
1461 # case this is not the same as the one that expires soonest overall
1462 # (which is what makes the test interesting):
1463 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flow br0 in_port=2,dl_src=00:55:66:77:88:99,actions=drop])
1464 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1465 idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
1466 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
1467 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
1468 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
1469 OFPST_FLOW reply (OF1.2):
1470 ])
1471 # Enlarge the flow limit, change the eviction policy back to strictly
1472 # based on expiration, and and add some flows.
1473 AT_CHECK([ovs-vsctl set Flow_Table evict groups='[[]]' flow-limit=7])
1474 ovs-ofctl -O OpenFlow12 add-flows br0 - <<EOF
1475 idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=drop
1476 idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=drop
1477 idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=drop
1478 EOF
1479 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1480 idle_timeout=10, in_port=2,dl_src=00:44:55:66:77:88 actions=drop
1481 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
1482 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
1483 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
1484 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
1485 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
1486 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
1487 OFPST_FLOW reply (OF1.2):
1488 ])
1489 # Adding another flow will cause the one that expires soonest overall
1490 # to be evicted.
1491 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'])
1492 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1493 idle_timeout=30, in_port=1,dl_src=00:22:33:44:55:66 actions=drop
1494 idle_timeout=40, in_port=1,dl_src=00:33:44:55:66:77 actions=drop
1495 idle_timeout=50, in_port=2,dl_src=00:66:77:88:99:aa actions=drop
1496 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
1497 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
1498 idle_timeout=80, in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
1499 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
1500 OFPST_FLOW reply (OF1.2):
1501 ])
1502 # Reducing the flow limit also causes the flows that expire soonest
1503 # overall to be evicted.
1504 AT_CHECK([ovs-vsctl set Flow_Table evict flow-limit=4])
1505 AT_CHECK([ovs-ofctl -O OpenFlow12 dump-flows br0 | ofctl_strip | sort], [0], [dnl
1506 idle_timeout=60, in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
1507 idle_timeout=70, in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
1508 idle_timeout=80, in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
1509 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
1510 OFPST_FLOW reply (OF1.2):
1511 ])
1512 OVS_VSWITCHD_STOP
1513 AT_CLEANUP
1514
1515 AT_SETUP([ofproto - eviction upon table overflow, with modified hard timeout])
1516 OVS_VSWITCHD_START
1517 # Configure a maximum of 4 flows.
1518 AT_CHECK(
1519 [ovs-vsctl \
1520 -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
1521 -- set bridge br0 flow_tables:0=@t0 \
1522 | ${PERL} $srcdir/uuidfilt.pl],
1523 [0], [<0>
1524 ])
1525 ovs-appctl time/stop
1526 # Add 4 flows.
1527 for in_port in 4 3 2 1; do
1528 ovs-ofctl add-flow br0 hard_timeout=$((10 + in_port * 3)),in_port=$in_port,actions=drop
1529 done
1530 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1531 hard_timeout=13, in_port=1 actions=drop
1532 hard_timeout=16, in_port=2 actions=drop
1533 hard_timeout=19, in_port=3 actions=drop
1534 hard_timeout=22, in_port=4 actions=drop
1535 NXST_FLOW reply:
1536 ])
1537 # Sleep and modify the one that expires soonest
1538 ovs-appctl time/warp 5000
1539 AT_CHECK([ovs-ofctl mod-flows br0 in_port=1,actions=drop])
1540 # At this point the table would looks like:
1541 # in_port seconds to expire
1542 # 1 13
1543 # 2 11
1544 # 3 14
1545 # 4 17
1546 ovs-appctl time/warp 2000
1547 # Adding another flow will cause the one that expires soonest to be evicted.
1548 AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop])
1549 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1550 hard_timeout=13, in_port=1 actions=drop
1551 hard_timeout=19, in_port=3 actions=drop
1552 hard_timeout=22, in_port=4 actions=drop
1553 in_port=5 actions=drop
1554 NXST_FLOW reply:
1555 ])
1556 OVS_VSWITCHD_STOP
1557 AT_CLEANUP
1558
1559 AT_SETUP([ofproto - eviction upon table overflow, with modified idle timeout])
1560 OVS_VSWITCHD_START([add-port br0 p1 -- set interface p1 type=dummy ofport_request=1])
1561 # Configure a maximum of 4 flows.
1562 AT_CHECK(
1563 [ovs-vsctl \
1564 -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
1565 -- set bridge br0 flow_tables:0=@t0 \
1566 | ${PERL} $srcdir/uuidfilt.pl],
1567 [0], [<0>
1568 ])
1569 # Add 4 flows.
1570 for in_port in 4 3 2 1; do
1571 ovs-ofctl add-flow br0 idle_timeout=$((10 + in_port * 3)),in_port=$in_port,actions=drop
1572 done
1573 ovs-appctl time/stop
1574 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1575 idle_timeout=13, in_port=1 actions=drop
1576 idle_timeout=16, in_port=2 actions=drop
1577 idle_timeout=19, in_port=3 actions=drop
1578 idle_timeout=22, in_port=4 actions=drop
1579 NXST_FLOW reply:
1580 ])
1581 # Sleep and receive on the flow that expires soonest
1582 ovs-appctl time/warp 5000
1583 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1)'])
1584 # At this point the table would looks like:
1585 # in_port seconds to expire
1586 # 1 13
1587 # 2 11
1588 # 3 14
1589 # 4 17
1590 ovs-appctl time/warp 2000
1591 # Adding another flow will cause the one that expires soonest to be evicted.
1592 AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop])
1593 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
1594 idle_timeout=19, in_port=3 actions=drop
1595 idle_timeout=22, in_port=4 actions=drop
1596 in_port=5 actions=drop
1597 n_packets=1, n_bytes=60, idle_timeout=13, in_port=1 actions=drop
1598 NXST_FLOW reply:
1599 ])
1600 OVS_VSWITCHD_STOP
1601 AT_CLEANUP
1602
1603 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.0)])
1604 OVS_VSWITCHD_START
1605 AT_CHECK([ovs-ofctl -P openflow10 monitor br0 --detach --no-chdir --pidfile])
1606 check_async () {
1607 printf '\n\n--- check_async %d ---\n\n\n' $1
1608 shift
1609
1610 ovs-appctl -t ovs-ofctl ofctl/barrier
1611 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
1612 : > expout
1613
1614 # OFPT_PACKET_IN, OFPR_ACTION (controller_id=0)
1615 ovs-ofctl -v packet-out br0 controller controller '0001020304050010203040501234'
1616 if test X"$1" = X"OFPR_ACTION"; then shift;
1617 echo >>expout "OFPT_PACKET_IN: total_len=14 in_port=CONTROLLER (via action) data_len=14 (unbuffered)
1618 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
1619 fi
1620
1621 # OFPT_PACKET_IN, OFPR_NO_MATCH (controller_id=123)
1622 ovs-ofctl -v packet-out br0 controller 'controller(reason=no_match,id=123)' '0001020304050010203040501234'
1623 if test X"$1" = X"OFPR_NO_MATCH"; then shift;
1624 echo >>expout "OFPT_PACKET_IN: total_len=14 in_port=CONTROLLER (via no_match) data_len=14 (unbuffered)
1625 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
1626 fi
1627
1628 # OFPT_PACKET_IN, OFPR_INVALID_TTL (controller_id=0)
1629 ovs-ofctl packet-out br0 controller dec_ttl '002583dfb4000026b98cb0f908004500003fb7e200000011339bac11370dac100002d7730035002b8f6d86fb0100000100000000000006626c702d7873066e696369726103636f6d00000f00'
1630 if test X"$1" = X"OFPR_INVALID_TTL"; then shift;
1631 echo >>expout "OFPT_PACKET_IN: total_len=76 in_port=CONTROLLER (via invalid_ttl) data_len=76 (unbuffered)
1632 udp,metadata=0,in_port=0,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"
1633 fi
1634
1635 # OFPT_PORT_STATUS, OFPPR_ADD
1636 ovs-vsctl add-port br0 test -- set Interface test type=dummy ofport_request=1
1637 if test X"$1" = X"OFPPR_ADD"; then shift;
1638 echo >>expout "OFPT_PORT_STATUS: ADD: 1(test): addr:aa:55:aa:55:00:0x
1639 config: PORT_DOWN
1640 state: LINK_DOWN
1641 speed: 0 Mbps now, 0 Mbps max"
1642 fi
1643
1644 # OFPT_PORT_STATUS, OFPPR_DELETE
1645 ovs-vsctl del-port br0 test
1646 if test X"$1" = X"OFPPR_DELETE"; then shift;
1647 echo >>expout "OFPT_PORT_STATUS: DEL: 1(test): addr:aa:55:aa:55:00:0x
1648 config: PORT_DOWN
1649 state: LINK_DOWN
1650 speed: 0 Mbps now, 0 Mbps max"
1651 fi
1652
1653 # OFPT_FLOW_REMOVED, OFPRR_DELETE
1654 ovs-ofctl add-flow br0 send_flow_rem,actions=drop
1655 ovs-ofctl --strict del-flows br0 ''
1656 if test X"$1" = X"OFPRR_DELETE"; then shift;
1657 echo >>expout "OFPT_FLOW_REMOVED: reason=delete"
1658 fi
1659 AT_FAIL_IF([test X"$1" != X])
1660
1661 ovs-appctl -t ovs-ofctl ofctl/barrier
1662 echo >>expout "OFPT_BARRIER_REPLY:"
1663
1664 AT_CHECK(
1665 [[sed '
1666 s/ (xid=0x[0-9a-fA-F]*)//
1667 s/ *duration.*//
1668 s/00:0.$/00:0x/' < monitor.log]],
1669 [0], [expout])
1670 }
1671
1672 # It's a service connection so initially there should be no async messages.
1673 check_async 1
1674
1675 # Set miss_send_len to 128, turning on packet-ins for our service connection.
1676 ovs-appctl -t ovs-ofctl ofctl/send 0109000c0123456700000080
1677 check_async 2 OFPR_ACTION OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
1678
1679 # Set miss_send_len to 128 and enable invalid_ttl.
1680 ovs-appctl -t ovs-ofctl ofctl/send 0109000c0123456700040080
1681 check_async 3 OFPR_ACTION OFPR_INVALID_TTL OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
1682
1683 # Become slave, which should disable everything except port status.
1684 ovs-appctl -t ovs-ofctl ofctl/send 0104001400000002000023200000000a00000002
1685 check_async 4 OFPPR_ADD OFPPR_DELETE
1686
1687 # Use NXT_SET_ASYNC_CONFIG to enable a patchwork of asynchronous messages.
1688 ovs-appctl -t ovs-ofctl ofctl/send 01040028000000020000232000000013000000020000000500000005000000020000000200000005
1689 check_async 5 OFPR_INVALID_TTL OFPPR_DELETE OFPRR_DELETE
1690
1691 # Set controller ID 123.
1692 ovs-appctl -t ovs-ofctl ofctl/send 01040018000000030000232000000014000000000000007b
1693 check_async 6 OFPR_NO_MATCH OFPPR_DELETE OFPRR_DELETE
1694
1695 # Restore controller ID 0.
1696 ovs-appctl -t ovs-ofctl ofctl/send 010400180000000300002320000000140000000000000000
1697
1698 # Become master.
1699 ovs-appctl -t ovs-ofctl ofctl/send 0104001400000002000023200000000a00000001
1700 check_async 7 OFPR_ACTION OFPPR_ADD
1701
1702 ovs-appctl -t ovs-ofctl exit
1703 OVS_VSWITCHD_STOP
1704 AT_CLEANUP
1705
1706 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.2)])
1707 OVS_VSWITCHD_START
1708 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile])
1709 check_async () {
1710 printf '\n\n--- check_async %d ---\n\n\n' $1
1711 INDEX=$1
1712 shift
1713
1714 ovs-appctl -t ovs-ofctl ofctl/barrier
1715 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
1716 : > expout
1717
1718 # OFPT_PACKET_IN, OFPR_ACTION (controller_id=0)
1719 ovs-ofctl -O OpenFlow12 -v packet-out br0 none controller '0001020304050010203040501234'
1720 if test X"$1" = X"OFPR_ACTION"; then shift;
1721 echo >>expout "OFPT_PACKET_IN (OF1.2): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
1722 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
1723 fi
1724
1725 # OFPT_PACKET_IN, OFPR_NO_MATCH (controller_id=123)
1726 ovs-ofctl -O OpenFlow12 -v packet-out br0 none 'controller(reason=no_match,id=123)' '0001020304050010203040501234'
1727 if test X"$1" = X"OFPR_NO_MATCH"; then shift;
1728 echo >>expout "OFPT_PACKET_IN (OF1.2): total_len=14 in_port=ANY (via no_match) data_len=14 (unbuffered)
1729 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
1730 fi
1731
1732 # OFPT_PACKET_IN, OFPR_INVALID_TTL (controller_id=0)
1733 ovs-ofctl -O OpenFlow12 packet-out br0 none dec_ttl '002583dfb4000026b98cb0f908004500003fb7e200000011339bac11370dac100002d7730035002b8f6d86fb0100000100000000000006626c702d7873066e696369726103636f6d00000f00'
1734 if test X"$1" = X"OFPR_INVALID_TTL"; then shift;
1735 echo >>expout "OFPT_PACKET_IN (OF1.2): total_len=76 in_port=ANY (via invalid_ttl) data_len=76 (unbuffered)
1736 udp,metadata=0,in_port=0,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"
1737 fi
1738
1739 # OFPT_PORT_STATUS, OFPPR_ADD
1740 ovs-vsctl add-port br0 test -- set Interface test type=dummy
1741 if test X"$1" = X"OFPPR_ADD"; then shift;
1742 echo >>expout "OFPT_PORT_STATUS (OF1.2): ADD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
1743 config: PORT_DOWN
1744 state: LINK_DOWN
1745 speed: 0 Mbps now, 0 Mbps max"
1746 fi
1747
1748 # OFPT_PORT_STATUS, OFPPR_DELETE
1749 ovs-vsctl del-port br0 test
1750 if test X"$1" = X"OFPPR_DELETE"; then shift;
1751 echo >>expout "OFPT_PORT_STATUS (OF1.2): DEL: ${INDEX}(test): addr:aa:55:aa:55:00:0x
1752 config: PORT_DOWN
1753 state: LINK_DOWN
1754 speed: 0 Mbps now, 0 Mbps max"
1755 fi
1756
1757 # OFPT_FLOW_REMOVED, OFPRR_DELETE
1758 ovs-ofctl -O OpenFlow12 add-flow br0 send_flow_rem,actions=drop
1759 ovs-ofctl -O OpenFlow12 --strict del-flows br0 ''
1760 if test X"$1" = X"OFPRR_DELETE"; then shift;
1761 echo >>expout "OFPT_FLOW_REMOVED (OF1.2): reason=delete table_id=0"
1762 fi
1763 AT_FAIL_IF([test X"$1" != X])
1764
1765 ovs-appctl -t ovs-ofctl ofctl/barrier
1766 echo >>expout "OFPT_BARRIER_REPLY (OF1.2):"
1767
1768 AT_CHECK(
1769 [[sed '
1770 s/ (xid=0x[0-9a-fA-F]*)//
1771 s/ *duration.*//
1772 s/00:0.$/00:0x/' < monitor.log]],
1773 [0], [expout])
1774 }
1775
1776 # It's a service connection so initially there should be no async messages.
1777 check_async 1
1778
1779 # Set miss_send_len to 128, turning on packet-ins for our service connection.
1780 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700000080
1781 check_async 2 OFPR_ACTION OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
1782
1783 # Set miss_send_len to 128 and enable invalid_ttl.
1784 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700040080
1785 check_async 3 OFPR_ACTION OFPR_INVALID_TTL OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
1786
1787 # Become slave (OF 1.2), which should disable everything except port status.
1788 ovs-appctl -t ovs-ofctl ofctl/send 031800180000000200000003000000000000000000000001
1789 check_async 4 OFPPR_ADD OFPPR_DELETE
1790
1791 # Use NXT_SET_ASYNC_CONFIG to enable a patchwork of asynchronous messages.
1792 ovs-appctl -t ovs-ofctl ofctl/send 03040028000000020000232000000013000000020000000500000005000000020000000200000005
1793 check_async 5 OFPR_INVALID_TTL OFPPR_DELETE OFPRR_DELETE
1794
1795 # Set controller ID 123.
1796 ovs-appctl -t ovs-ofctl ofctl/send 03040018000000030000232000000014000000000000007b
1797 check_async 6 OFPR_NO_MATCH OFPPR_DELETE OFPRR_DELETE
1798
1799 # Restore controller ID 0.
1800 ovs-appctl -t ovs-ofctl ofctl/send 030400180000000300002320000000140000000000000000
1801
1802 # Become master (OF 1.2).
1803 ovs-appctl -t ovs-ofctl ofctl/send 031800180000000400000002000000000000000000000002
1804 check_async 7 OFPR_ACTION OFPPR_ADD
1805
1806 ovs-appctl -t ovs-ofctl exit
1807 OVS_VSWITCHD_STOP
1808 AT_CLEANUP
1809
1810 AT_SETUP([ofproto - asynchronous message control (OpenFlow 1.3)])
1811 OVS_VSWITCHD_START
1812 AT_CHECK([ovs-ofctl -O OpenFlow13 monitor br0 --detach --no-chdir --pidfile])
1813 check_async () {
1814 printf '\n\n--- check_async %d ---\n\n\n' $1
1815 INDEX=$1
1816 shift
1817
1818 ovs-appctl -t ovs-ofctl ofctl/barrier
1819 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
1820 : > expout
1821
1822 # OFPT_PACKET_IN, OFPR_ACTION (controller_id=0)
1823 ovs-ofctl -O OpenFlow13 -v packet-out br0 none controller '0001020304050010203040501234'
1824 if test X"$1" = X"OFPR_ACTION"; then shift;
1825 echo >>expout "OFPT_PACKET_IN (OF1.3): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
1826 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
1827 fi
1828
1829 # OFPT_PACKET_IN, OFPR_NO_MATCH (controller_id=123)
1830 ovs-ofctl -O OpenFlow13 -v packet-out br0 none 'controller(reason=no_match,id=123)' '0001020304050010203040501234'
1831 if test X"$1" = X"OFPR_NO_MATCH"; then shift;
1832 echo >>expout "OFPT_PACKET_IN (OF1.3): total_len=14 in_port=ANY (via no_match) data_len=14 (unbuffered)
1833 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234"
1834 fi
1835
1836 # OFPT_PACKET_IN, OFPR_INVALID_TTL (controller_id=0)
1837 ovs-ofctl -O OpenFlow13 packet-out br0 none dec_ttl '002583dfb4000026b98cb0f908004500003fb7e200000011339bac11370dac100002d7730035002b8f6d86fb0100000100000000000006626c702d7873066e696369726103636f6d00000f00'
1838 if test X"$1" = X"OFPR_INVALID_TTL"; then shift;
1839 echo >>expout "OFPT_PACKET_IN (OF1.3): total_len=76 in_port=ANY (via invalid_ttl) data_len=76 (unbuffered)
1840 udp,metadata=0,in_port=0,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"
1841 fi
1842
1843 # OFPT_PORT_STATUS, OFPPR_ADD
1844 ovs-vsctl add-port br0 test -- set Interface test type=dummy
1845 if test X"$1" = X"OFPPR_ADD"; then shift;
1846 echo >>expout "OFPT_PORT_STATUS (OF1.3): ADD: ${INDEX}(test): addr:aa:55:aa:55:00:0x
1847 config: PORT_DOWN
1848 state: LINK_DOWN
1849 speed: 0 Mbps now, 0 Mbps max"
1850 fi
1851
1852 # OFPT_PORT_STATUS, OFPPR_DELETE
1853 ovs-vsctl del-port br0 test
1854 if test X"$1" = X"OFPPR_DELETE"; then shift;
1855 echo >>expout "OFPT_PORT_STATUS (OF1.3): DEL: ${INDEX}(test): addr:aa:55:aa:55:00:0x
1856 config: PORT_DOWN
1857 state: LINK_DOWN
1858 speed: 0 Mbps now, 0 Mbps max"
1859 fi
1860
1861 # OFPT_FLOW_REMOVED, OFPRR_DELETE
1862 ovs-ofctl -O OpenFlow13 add-flow br0 send_flow_rem,actions=drop
1863 ovs-ofctl -O OpenFlow13 --strict del-flows br0 ''
1864 if test X"$1" = X"OFPRR_DELETE"; then shift;
1865 echo >>expout "OFPT_FLOW_REMOVED (OF1.3): reason=delete table_id=0"
1866 fi
1867
1868 # OFPT_FLOW_REMOVED, OFPRR_GROUP_DELETE
1869 ovs-ofctl -O OpenFlow13 add-group br0 group_id=1234,type=all,bucket=output:10
1870 ovs-ofctl -O OpenFlow13 add-flow br0 send_flow_rem,actions=group:1234
1871 ovs-ofctl -O OpenFlow13 --strict del-groups br0 group_id=1234
1872 if test X"$1" = X"OFPRR_DELETE"; then shift;
1873 echo >>expout "OFPT_FLOW_REMOVED (OF1.3): reason=gropu_delete table_id=0"
1874 fi
1875
1876 AT_FAIL_IF([test X"$1" != X])
1877
1878 ovs-appctl -t ovs-ofctl ofctl/barrier
1879 echo >>expout "OFPT_BARRIER_REPLY (OF1.3):"
1880
1881 AT_CHECK(
1882 [[sed '
1883 s/ (xid=0x[0-9a-fA-F]*)//
1884 s/ *duration.*//
1885 s/00:0.$/00:0x/' < monitor.log]],
1886 [0], [expout])
1887 }
1888
1889 # It's a service connection so initially there should be no async messages.
1890 check_async 1
1891
1892 # Set miss_send_len to 128, turning on packet-ins for our service connection.
1893 ovs-appctl -t ovs-ofctl ofctl/send 0409000c0123456700000080
1894 check_async 2 OFPR_ACTION OFPPR_ADD OFPPR_DELETE OFPRR_DELETE
1895
1896 # Become slave (OF 1.3), which should disable everything except port status.
1897 ovs-appctl -t ovs-ofctl ofctl/send 041800180000000200000003000000000000000000000001
1898 check_async 3 OFPPR_ADD OFPPR_DELETE
1899
1900 # Use OF 1.3 OFPT_SET_ASYNC to enable a patchwork of asynchronous messages.
1901 ovs-appctl -t ovs-ofctl ofctl/send 041c002000000002000000020000000500000005000000020000000200000005
1902 check_async 4 OFPR_INVALID_TTL OFPPR_DELETE OFPRR_DELETE
1903
1904 # Set controller ID 123.
1905 ovs-appctl -t ovs-ofctl ofctl/send 04040018000000030000232000000014000000000000007b
1906 check_async 5 OFPR_NO_MATCH OFPPR_DELETE OFPRR_DELETE
1907
1908 # Restore controller ID 0.
1909 ovs-appctl -t ovs-ofctl ofctl/send 040400180000000300002320000000140000000000000000
1910
1911 # Become master (OF 1.3).
1912 ovs-appctl -t ovs-ofctl ofctl/send 041800180000000400000002000000000000000000000002
1913 check_async 6 OFPR_ACTION OFPPR_ADD
1914
1915 ovs-appctl -t ovs-ofctl exit
1916 OVS_VSWITCHD_STOP
1917 AT_CLEANUP
1918
1919 dnl This test checks that the role request/response messaging works
1920 dnl and that generation_id is handled properly.
1921 AT_SETUP([ofproto - controller role (OpenFlow 1.2)])
1922 OVS_VSWITCHD_START
1923 ON_EXIT([kill `cat c1.pid c2.pid`])
1924
1925 # Start two ovs-ofctl controller processes.
1926 AT_CAPTURE_FILE([monitor1.log])
1927 AT_CAPTURE_FILE([expout1])
1928 AT_CAPTURE_FILE([experr1])
1929 AT_CAPTURE_FILE([monitor2.log])
1930 AT_CAPTURE_FILE([expout2])
1931 AT_CAPTURE_FILE([experr2])
1932 for i in 1 2; do
1933 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile=`pwd`/c$i.pid --unixctl=`pwd`/c$i])
1934 ovs-appctl -t `pwd`/c$i ofctl/barrier
1935 ovs-appctl -t `pwd`/c$i ofctl/set-output-file monitor$i.log
1936 : > expout$i
1937 : > experr$i
1938
1939 # find out current role
1940 ovs-appctl -t `pwd`/c$i ofctl/send 031800180000000200000000000000000000000000000000
1941 echo >>experr$i "send: OFPT_ROLE_REQUEST (OF1.2): role=nochange"
1942 echo >>expout$i "OFPT_ROLE_REPLY (OF1.2): role=equal"
1943 done
1944
1945 # controller 1: Become slave (generation_id is initially undefined, so
1946 # 2^63+2 should not be stale)
1947 ovs-appctl -t `pwd`/c1 ofctl/send 031800180000000300000003000000008000000000000002
1948 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.2): role=slave generation_id=9223372036854775810"
1949 echo >>expout1 "OFPT_ROLE_REPLY (OF1.2): role=slave generation_id=9223372036854775810"
1950
1951 # controller 2: Become master.
1952 ovs-appctl -t `pwd`/c2 ofctl/send 031800180000000300000002000000008000000000000003
1953 echo >>experr2 "send: OFPT_ROLE_REQUEST (OF1.2): role=master generation_id=9223372036854775811"
1954 echo >>expout2 "OFPT_ROLE_REPLY (OF1.2): role=master generation_id=9223372036854775811"
1955
1956 # controller 1: Try to become the master using a stale generation ID
1957 ovs-appctl -t `pwd`/c1 ofctl/send 031800180000000400000002000000000000000000000003
1958 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.2): role=master generation_id=3"
1959 echo >>expout1 "OFPT_ERROR (OF1.2): OFPRRFC_STALE"
1960 echo >>expout1 "OFPT_ROLE_REQUEST (OF1.2): role=master generation_id=3"
1961
1962 # controller 1: Become master using a valid generation ID
1963 ovs-appctl -t `pwd`/c1 ofctl/send 031800180000000500000002000000000000000000000001
1964 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.2): role=master generation_id=1"
1965 echo >>expout1 "OFPT_ROLE_REPLY (OF1.2): role=master generation_id=1"
1966
1967 for i in 1 2; do
1968 ovs-appctl -t `pwd`/c$i ofctl/barrier
1969 echo >>expout$i "OFPT_BARRIER_REPLY (OF1.2):"
1970 done
1971
1972 # Check output.
1973 for i in 1 2; do
1974 cp expout$i expout
1975 AT_CHECK([grep -v '^send:' monitor$i.log | STRIP_XIDS], [0], [expout])
1976 cp experr$i expout
1977 AT_CHECK([grep '^send:' monitor$i.log | STRIP_XIDS], [0], [expout])
1978 done
1979 OVS_VSWITCHD_STOP
1980 AT_CLEANUP
1981
1982 dnl This test checks that the role request/response messaging works,
1983 dnl that generation_id is handled properly, and that role status update
1984 dnl messages are sent when a controller's role gets changed from master
1985 dnl to slave.
1986 AT_SETUP([ofproto - controller role (OpenFlow 1.4)])
1987 OVS_VSWITCHD_START
1988 ON_EXIT([kill `cat c1.pid c2.pid`])
1989
1990 # Start two ovs-ofctl controller processes.
1991 AT_CAPTURE_FILE([monitor1.log])
1992 AT_CAPTURE_FILE([expout1])
1993 AT_CAPTURE_FILE([experr1])
1994 AT_CAPTURE_FILE([monitor2.log])
1995 AT_CAPTURE_FILE([expout2])
1996 AT_CAPTURE_FILE([experr2])
1997 for i in 1 2; do
1998 AT_CHECK([ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile=`pwd`/c$i.pid --unixctl=`pwd`/c$i])
1999 ovs-appctl -t `pwd`/c$i ofctl/barrier
2000 ovs-appctl -t `pwd`/c$i ofctl/set-output-file monitor$i.log
2001 : > expout$i
2002 : > experr$i
2003
2004 # find out current role
2005 ovs-appctl -t `pwd`/c$i ofctl/send 051800180000000200000000000000000000000000000000
2006 echo >>experr$i "send: OFPT_ROLE_REQUEST (OF1.4): role=nochange"
2007 echo >>expout$i "OFPT_ROLE_REPLY (OF1.4): role=equal"
2008 done
2009
2010 # controller 1: Become slave (generation_id is initially undefined, so
2011 # 2^63+2 should not be stale)
2012 ovs-appctl -t `pwd`/c1 ofctl/send 051800180000000300000003000000008000000000000002
2013 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.4): role=slave generation_id=9223372036854775810"
2014 echo >>expout1 "OFPT_ROLE_REPLY (OF1.4): role=slave generation_id=9223372036854775810"
2015
2016 # controller 2: Become master.
2017 ovs-appctl -t `pwd`/c2 ofctl/send 051800180000000300000002000000008000000000000003
2018 echo >>experr2 "send: OFPT_ROLE_REQUEST (OF1.4): role=master generation_id=9223372036854775811"
2019 echo >>expout2 "OFPT_ROLE_REPLY (OF1.4): role=master generation_id=9223372036854775811"
2020
2021 # controller 1: Try to become the master using a stale generation ID
2022 ovs-appctl -t `pwd`/c1 ofctl/send 051800180000000400000002000000000000000000000003
2023 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.4): role=master generation_id=3"
2024 echo >>expout1 "OFPT_ERROR (OF1.4): OFPRRFC_STALE"
2025 echo >>expout1 "OFPT_ROLE_REQUEST (OF1.4): role=master generation_id=3"
2026
2027 # controller 1: Become master using a valid generation ID
2028 ovs-appctl -t `pwd`/c1 ofctl/send 051800180000000500000002000000000000000000000001
2029 echo >>experr1 "send: OFPT_ROLE_REQUEST (OF1.4): role=master generation_id=1"
2030 echo >>expout1 "OFPT_ROLE_REPLY (OF1.4): role=master generation_id=1"
2031 echo >>expout2 "OFPT_ROLE_STATUS (OF1.4): role=slave generation_id=1 reason=master_request"
2032
2033 for i in 1 2; do
2034 ovs-appctl -t `pwd`/c$i ofctl/barrier
2035 echo >>expout$i "OFPT_BARRIER_REPLY (OF1.4):"
2036 done
2037
2038 # Check output.
2039 for i in 1 2; do
2040 cp expout$i expout
2041 AT_CHECK([grep -v '^send:' monitor$i.log | STRIP_XIDS], [0], [expout])
2042 cp experr$i expout
2043 AT_CHECK([grep '^send:' monitor$i.log | STRIP_XIDS], [0], [expout])
2044 done
2045 OVS_VSWITCHD_STOP
2046 AT_CLEANUP
2047
2048 dnl This test checks that OFPT_PACKET_OUT accepts both OFPP_NONE (as
2049 dnl specified by OpenFlow 1.0) and OFPP_CONTROLLER (used by some
2050 dnl controllers despite the spec) as meaning a packet that was generated
2051 dnl by the controller.
2052 AT_SETUP([ofproto - packet-out from controller (OpenFlow 1.0)])
2053 OVS_VSWITCHD_START
2054 ADD_OF_PORTS([br0], [1])
2055
2056 # Start a monitor listening for packet-ins.
2057 AT_CHECK([ovs-ofctl -P openflow10 monitor br0 --detach --no-chdir --pidfile])
2058 ovs-appctl -t ovs-ofctl ofctl/send 0109000c0123456700000080
2059 ovs-appctl -t ovs-ofctl ofctl/barrier
2060 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2061 AT_CAPTURE_FILE([monitor.log])
2062
2063 # Send some packet-outs with OFPP_NONE and OFPP_CONTROLLER (65533) as in_port.
2064 AT_CHECK([ovs-ofctl packet-out br0 none controller,1 '0001020304050010203040501234'])
2065 AT_CHECK([ovs-ofctl packet-out br0 controller controller,1 '0001020304050010203040505678'])
2066
2067 # Stop the monitor and check its output.
2068 ovs-appctl -t ovs-ofctl ofctl/barrier
2069 ovs-appctl -t ovs-ofctl exit
2070
2071 ovs-ofctl dump-ports br0
2072
2073 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
2074 OFPT_PACKET_IN: total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
2075 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
2076 OFPT_PACKET_IN: total_len=14 in_port=CONTROLLER (via action) data_len=14 (unbuffered)
2077 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x5678
2078 OFPT_BARRIER_REPLY:
2079 ])
2080
2081 OVS_VSWITCHD_STOP
2082 AT_CLEANUP
2083
2084 dnl This test checks that OFPT_PACKET_OUT accepts both OFPP_NONE (as
2085 dnl specified by OpenFlow 1.2) and OFPP_CONTROLLER (used by some
2086 dnl controllers despite the spec) as meaning a packet that was generated
2087 dnl by the controller.
2088 AT_SETUP([ofproto - packet-out from controller (OpenFlow 1.2)])
2089 OVS_VSWITCHD_START
2090
2091 # Start a monitor listening for packet-ins.
2092 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile])
2093 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700000080
2094 ovs-appctl -t ovs-ofctl ofctl/barrier
2095 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2096 AT_CAPTURE_FILE([monitor.log])
2097
2098 # Send some packet-outs with OFPP_NONE and OFPP_CONTROLLER (65533) as in_port.
2099 AT_CHECK([ovs-ofctl -O OpenFlow12 packet-out br0 none controller '0001020304050010203040501234'])
2100 AT_CHECK([ovs-ofctl -O OpenFlow12 packet-out br0 4294967293 controller '0001020304050010203040505678'])
2101
2102 # Stop the monitor and check its output.
2103 ovs-appctl -t ovs-ofctl ofctl/barrier
2104 ovs-appctl -t ovs-ofctl exit
2105
2106 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
2107 OFPT_PACKET_IN (OF1.2): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
2108 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
2109 OFPT_PACKET_IN (OF1.2): total_len=14 in_port=CONTROLLER (via action) data_len=14 (unbuffered)
2110 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x5678
2111 OFPT_BARRIER_REPLY (OF1.2):
2112 ])
2113
2114 OVS_VSWITCHD_STOP
2115 AT_CLEANUP
2116
2117 dnl This test checks that OFPT_PACKET_OUT accepts both OFPP_NONE (as
2118 dnl specified by OpenFlow 1.1) and OFPP_CONTROLLER (used by some
2119 dnl controllers despite the spec) as meaning a packet that was generated
2120 dnl by the controller.
2121 AT_SETUP([ofproto - packet-out from controller (OpenFlow 1.1)])
2122 OVS_VSWITCHD_START
2123
2124 # Start a monitor listening for packet-ins.
2125 AT_CHECK([ovs-ofctl -O OpenFlow11 monitor br0 --detach --no-chdir --pidfile])
2126 ovs-appctl -t ovs-ofctl ofctl/send 0209000c0123456700000080
2127 ovs-appctl -t ovs-ofctl ofctl/barrier
2128 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2129 AT_CAPTURE_FILE([monitor.log])
2130
2131 # Send some packet-outs with OFPP_NONE and OFPP_CONTROLLER (65533) as in_port.
2132 AT_CHECK([ovs-ofctl -O OpenFlow11 packet-out br0 none controller '0001020304050010203040501234'])
2133 AT_CHECK([ovs-ofctl -O OpenFlow11 packet-out br0 4294967293 controller '0001020304050010203040505678'])
2134
2135 # Stop the monitor and check its output.
2136 ovs-appctl -t ovs-ofctl ofctl/barrier
2137 ovs-appctl -t ovs-ofctl exit
2138
2139 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
2140 OFPT_PACKET_IN (OF1.1): total_len=14 in_port=ANY (via action) data_len=14 (unbuffered)
2141 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
2142 OFPT_PACKET_IN (OF1.1): total_len=14 in_port=CONTROLLER (via action) data_len=14 (unbuffered)
2143 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x5678
2144 OFPT_BARRIER_REPLY (OF1.1):
2145 ])
2146
2147 OVS_VSWITCHD_STOP
2148 AT_CLEANUP
2149
2150 dnl This test checks that metadata is encoded in packet_in structures,
2151 dnl supported by NXAST.
2152 AT_SETUP([ofproto - packet-out with metadata (NXM)])
2153 OVS_VSWITCHD_START
2154
2155 # Start a monitor listening for packet-ins.
2156 AT_CHECK([ovs-ofctl -P nxm monitor br0 --detach --no-chdir --pidfile])
2157 ovs-appctl -t ovs-ofctl ofctl/send 0109000c0123456700000080
2158 ovs-appctl -t ovs-ofctl ofctl/barrier
2159 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2160 AT_CAPTURE_FILE([monitor.log])
2161
2162 # Send a packet-out with a load action to set some metadata, and forward to controller
2163 AT_CHECK([ovs-ofctl packet-out br0 controller 'load(0xfafafafa5a5a5a5a->OXM_OF_METADATA[[0..63]]), load(0xaa->NXM_NX_PKT_MARK[[]]), controller' '0001020304050010203040501234'])
2164
2165 # Stop the monitor and check its output.
2166 ovs-appctl -t ovs-ofctl ofctl/barrier
2167 ovs-appctl -t ovs-ofctl exit
2168
2169 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
2170 NXT_PACKET_IN: total_len=14 in_port=CONTROLLER metadata=0xfafafafa5a5a5a5a pkt_mark=0xaa (via action) data_len=14 (unbuffered)
2171 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
2172 OFPT_BARRIER_REPLY:
2173 ])
2174
2175 OVS_VSWITCHD_STOP
2176 AT_CLEANUP
2177
2178 dnl This test checks that metadata is encoded in packet_in structures,
2179 dnl supported by NXAST.
2180 AT_SETUP([ofproto - packet-out with metadata (OpenFlow 1.2)])
2181 OVS_VSWITCHD_START
2182
2183 # Start a monitor listening for packet-ins.
2184 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile])
2185 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700000080
2186 ovs-appctl -t ovs-ofctl ofctl/barrier
2187 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2188 AT_CAPTURE_FILE([monitor.log])
2189
2190 # Send a packet-out with a set-field action to set some metadata, and forward to controller
2191 AT_CHECK([ovs-ofctl -O OpenFlow12 packet-out br0 none 'set_field:0xfafafafa5a5a5a5a->metadata, controller' '0001020304050010203040501234'])
2192
2193 # Stop the monitor and check its output.
2194 ovs-appctl -t ovs-ofctl ofctl/barrier
2195 ovs-appctl -t ovs-ofctl exit
2196
2197 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
2198 OFPT_PACKET_IN (OF1.2): total_len=14 in_port=ANY metadata=0xfafafafa5a5a5a5a (via action) data_len=14 (unbuffered)
2199 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
2200 OFPT_BARRIER_REPLY (OF1.2):
2201 ])
2202
2203 OVS_VSWITCHD_STOP
2204 AT_CLEANUP
2205
2206 dnl This test checks that tunnel metadata is encoded in packet_in structures.
2207 AT_SETUP([ofproto - packet-out with tunnel metadata (OpenFlow 1.2)])
2208 OVS_VSWITCHD_START
2209
2210 # Start a monitor listening for packet-ins.
2211 AT_CHECK([ovs-ofctl -O OpenFlow12 monitor br0 --detach --no-chdir --pidfile])
2212 ovs-appctl -t ovs-ofctl ofctl/send 0309000c0123456700000080
2213 ovs-appctl -t ovs-ofctl ofctl/barrier
2214 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2215 AT_CAPTURE_FILE([monitor.log])
2216
2217 # Send a packet-out with set field actions to set some tunnel metadata, and forward to controller
2218 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'])
2219
2220 # Stop the monitor and check its output.
2221 ovs-appctl -t ovs-ofctl ofctl/barrier
2222 ovs-appctl -t ovs-ofctl exit
2223
2224 AT_CHECK([sed 's/ (xid=0x[[0-9a-fA-F]]*)//' monitor.log], [0], [dnl
2225 OFPT_PACKET_IN (OF1.2): total_len=14 in_port=ANY tun_id=0x1020304 tun_src=127.0.0.1 tun_dst=192.168.0.1 (via action) data_len=14 (unbuffered)
2226 metadata=0,in_port=0,vlan_tci=0x0000,dl_src=00:10:20:30:40:50,dl_dst=00:01:02:03:04:05,dl_type=0x1234
2227 OFPT_BARRIER_REPLY (OF1.2):
2228 ])
2229
2230 OVS_VSWITCHD_STOP
2231 AT_CLEANUP
2232
2233 m4_divert_push([PREPARE_TESTS])
2234 # Sorts groups of lines that start with a space, without moving them
2235 # past the nearest line that does not start with a space.
2236 multiline_sort () {
2237 ${PERL} -e '
2238 use warnings;
2239 use strict;
2240 my @buffer = ();
2241 while (<STDIN>) {
2242 if (/^ /) {
2243 push(@buffer, $_);
2244 } else {
2245 print $_ foreach sort(@buffer);
2246 print $_;
2247 @buffer = ();
2248 }
2249 }
2250 print $_ foreach sort(@buffer);
2251 '
2252 }
2253 m4_divert_pop([PREPARE_TESTS])
2254
2255 AT_SETUP([ofproto - flow monitoring])
2256 AT_KEYWORDS([monitor])
2257 OVS_VSWITCHD_START
2258
2259 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:1
2260
2261 # Start a monitor watching the flow table and check the initial reply.
2262 ovs-ofctl monitor br0 watch: --detach --no-chdir --pidfile >monitor.log 2>&1
2263 AT_CAPTURE_FILE([monitor.log])
2264 ovs-appctl -t ovs-ofctl ofctl/barrier
2265 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
2266 [NXST_FLOW_MONITOR reply:
2267 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:1
2268 OFPT_BARRIER_REPLY:
2269 ])
2270
2271 # Add, delete, and modify some flows and check the updates.
2272 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2273 ovs-ofctl add-flow br0 in_port=0,dl_vlan=124,actions=output:2
2274 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:5
2275 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,dl_vlan_pcp=0,actions=output:6
2276 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,dl_vlan_pcp=1,actions=output:7
2277 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:8
2278 ovs-ofctl add-flow br0 in_port=0,dl_vlan=65535,dl_vlan_pcp=0,actions=output:9
2279 ovs-ofctl add-flow br0 in_port=0,dl_vlan=65535,dl_vlan_pcp=1,actions=output:10
2280 ovs-ofctl add-flow br0 in_port=0,dl_vlan=65535,actions=output:11
2281 ovs-ofctl add-flow br0 in_port=0,dl_vlan=8191,dl_vlan_pcp=0,actions=output:12
2282 ovs-ofctl add-flow br0 in_port=0,dl_vlan=8191,dl_vlan_pcp=1,actions=output:13
2283 ovs-ofctl add-flow br0 in_port=0,dl_vlan=8191,actions=output:14
2284 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,dl_vlan_pcp=0,actions=output:15
2285 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,dl_vlan_pcp=1,actions=output:16
2286 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,actions=output:17
2287 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,dl_vlan_pcp=0,actions=output:18
2288 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,dl_vlan_pcp=1,actions=output:19
2289 ovs-ofctl add-flow br0 in_port=0,dl_vlan=0,actions=output:20
2290 ovs-ofctl add-flow br0 in_port=0,dl_vlan_pcp=0,actions=output:21
2291 ovs-ofctl add-flow br0 in_port=0,dl_vlan_pcp=1,actions=output:22
2292 ovs-ofctl add-flow br0 in_port=0,actions=output:23
2293 ovs-ofctl mod-flows br0 dl_vlan=123,actions=output:3
2294 ovs-ofctl mod-flows br0 cookie=5,dl_vlan=123,actions=output:3
2295 ovs-ofctl del-flows br0 dl_vlan=123
2296 ovs-ofctl del-flows br0
2297 ovs-appctl -t ovs-ofctl ofctl/barrier
2298 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log | multiline_sort], [0],
2299 [NXST_FLOW_MONITOR reply (xid=0x0):
2300 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=124 actions=output:2
2301 NXST_FLOW_MONITOR reply (xid=0x0):
2302 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:5
2303 NXST_FLOW_MONITOR reply (xid=0x0):
2304 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123,dl_vlan_pcp=0 actions=output:6
2305 NXST_FLOW_MONITOR reply (xid=0x0):
2306 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123,dl_vlan_pcp=1 actions=output:7
2307 NXST_FLOW_MONITOR reply (xid=0x0):
2308 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:8
2309 NXST_FLOW_MONITOR reply (xid=0x0):
2310 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=0 actions=output:9
2311 NXST_FLOW_MONITOR reply (xid=0x0):
2312 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=1 actions=output:10
2313 NXST_FLOW_MONITOR reply (xid=0x0):
2314 event=ADDED table=0 cookie=0 in_port=0,vlan_tci=0x0000 actions=output:11
2315 NXST_FLOW_MONITOR reply (xid=0x0):
2316 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=4095,dl_vlan_pcp=0 actions=output:12
2317 NXST_FLOW_MONITOR reply (xid=0x0):
2318 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=4095,dl_vlan_pcp=1 actions=output:13
2319 NXST_FLOW_MONITOR reply (xid=0x0):
2320 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=4095 actions=output:14
2321 NXST_FLOW_MONITOR reply (xid=0x0):
2322 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=0 actions=output:15
2323 NXST_FLOW_MONITOR reply (xid=0x0):
2324 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=1 actions=output:16
2325 NXST_FLOW_MONITOR reply (xid=0x0):
2326 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0 actions=output:17
2327 NXST_FLOW_MONITOR reply (xid=0x0):
2328 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=0 actions=output:18
2329 NXST_FLOW_MONITOR reply (xid=0x0):
2330 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=1 actions=output:19
2331 NXST_FLOW_MONITOR reply (xid=0x0):
2332 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=0 actions=output:20
2333 NXST_FLOW_MONITOR reply (xid=0x0):
2334 event=ADDED table=0 cookie=0 in_port=0,dl_vlan_pcp=0 actions=output:21
2335 NXST_FLOW_MONITOR reply (xid=0x0):
2336 event=ADDED table=0 cookie=0 in_port=0,dl_vlan_pcp=1 actions=output:22
2337 NXST_FLOW_MONITOR reply (xid=0x0):
2338 event=ADDED table=0 cookie=0 in_port=0 actions=output:23
2339 NXST_FLOW_MONITOR reply (xid=0x0):
2340 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:3
2341 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123,dl_vlan_pcp=0 actions=output:3
2342 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123,dl_vlan_pcp=1 actions=output:3
2343 NXST_FLOW_MONITOR reply (xid=0x0):
2344 event=MODIFIED table=0 cookie=0x5 in_port=0,dl_vlan=123 actions=output:3
2345 event=MODIFIED table=0 cookie=0x5 in_port=0,dl_vlan=123,dl_vlan_pcp=0 actions=output:3
2346 event=MODIFIED table=0 cookie=0x5 in_port=0,dl_vlan=123,dl_vlan_pcp=1 actions=output:3
2347 NXST_FLOW_MONITOR reply (xid=0x0):
2348 event=DELETED reason=delete table=0 cookie=0x5 in_port=0,dl_vlan=123 actions=output:3
2349 event=DELETED reason=delete table=0 cookie=0x5 in_port=0,dl_vlan=123,dl_vlan_pcp=0 actions=output:3
2350 event=DELETED reason=delete table=0 cookie=0x5 in_port=0,dl_vlan=123,dl_vlan_pcp=1 actions=output:3
2351 NXST_FLOW_MONITOR reply (xid=0x0):
2352 event=DELETED reason=delete table=0 cookie=0 in_port=0 actions=output:23
2353 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=0 actions=output:20
2354 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=0 actions=output:18
2355 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=0,dl_vlan_pcp=1 actions=output:19
2356 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=124 actions=output:2
2357 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=4095 actions=output:14
2358 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=4095,dl_vlan_pcp=0 actions=output:12
2359 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan=4095,dl_vlan_pcp=1 actions=output:13
2360 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan_pcp=0 actions=output:21
2361 event=DELETED reason=delete table=0 cookie=0 in_port=0,dl_vlan_pcp=1 actions=output:22
2362 event=DELETED reason=delete table=0 cookie=0 in_port=0,vlan_tci=0x0000 actions=output:11
2363 OFPT_BARRIER_REPLY:
2364 ])
2365
2366 # Check that our own changes are reported as full updates.
2367 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2368 ovs-ofctl add-flow br0 in_port=1,actions=output:2
2369 ovs-ofctl add-flow br0 in_port=2,actions=output:1
2370 ovs-appctl -t ovs-ofctl ofctl/barrier
2371 ovs-appctl -t ovs-ofctl ofctl/send 010e004812345678003fffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000ffffffffffff0000
2372 ovs-appctl -t ovs-ofctl ofctl/barrier
2373 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0], [NXST_FLOW reply:
2374 ])
2375 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log | multiline_sort], [0],
2376 [NXST_FLOW_MONITOR reply (xid=0x0):
2377 event=ADDED table=0 cookie=0 in_port=1 actions=output:2
2378 NXST_FLOW_MONITOR reply (xid=0x0):
2379 event=ADDED table=0 cookie=0 in_port=2 actions=output:1
2380 OFPT_BARRIER_REPLY:
2381 send: OFPT_FLOW_MOD: DEL priority=0 actions=drop
2382 NXST_FLOW_MONITOR reply (xid=0x0):
2383 event=DELETED reason=delete table=0 cookie=0 in_port=1 actions=output:2
2384 event=DELETED reason=delete table=0 cookie=0 in_port=2 actions=output:1
2385 OFPT_BARRIER_REPLY:
2386 ])
2387
2388 ovs-appctl -t ovs-ofctl exit
2389 OVS_VSWITCHD_STOP
2390 AT_CLEANUP
2391
2392 AT_SETUP([ofproto - flow monitoring with !own])
2393 AT_KEYWORDS([monitor])
2394 OVS_VSWITCHD_START
2395
2396 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:1
2397
2398 # Start a monitor watching the flow table and check the initial reply.
2399 ovs-ofctl monitor br0 watch:\!own --detach --no-chdir --pidfile >monitor.log 2>&1
2400 AT_CAPTURE_FILE([monitor.log])
2401 ovs-appctl -t ovs-ofctl ofctl/barrier
2402 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
2403 [NXST_FLOW_MONITOR reply:
2404 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:1
2405 OFPT_BARRIER_REPLY:
2406 ])
2407
2408 # Check that our own changes are reported as abbreviations.
2409 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2410 ovs-ofctl add-flow br0 in_port=1,actions=output:2
2411 ovs-ofctl add-flow br0 in_port=2,actions=output:1
2412 ovs-appctl -t ovs-ofctl ofctl/barrier
2413 ovs-appctl -t ovs-ofctl ofctl/send 010e004812345678003fffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000ffffffffffff0000
2414 ovs-appctl -t ovs-ofctl ofctl/barrier
2415 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0], [NXST_FLOW reply:
2416 ])
2417 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
2418 [NXST_FLOW_MONITOR reply (xid=0x0):
2419 event=ADDED table=0 cookie=0 in_port=1 actions=output:2
2420 NXST_FLOW_MONITOR reply (xid=0x0):
2421 event=ADDED table=0 cookie=0 in_port=2 actions=output:1
2422 OFPT_BARRIER_REPLY:
2423 send: OFPT_FLOW_MOD: DEL priority=0 actions=drop
2424 NXST_FLOW_MONITOR reply (xid=0x0):
2425 event=ABBREV xid=0x12345678
2426 OFPT_BARRIER_REPLY:
2427 ])
2428
2429 ovs-appctl -t ovs-ofctl exit
2430 OVS_VSWITCHD_STOP
2431 AT_CLEANUP
2432
2433 AT_SETUP([ofproto - flow monitoring with out_port])
2434 AT_KEYWORDS([monitor])
2435 OVS_VSWITCHD_START
2436
2437 ovs-ofctl add-flow br0 in_port=0,dl_vlan=121,actions=output:1
2438 ovs-ofctl add-flow br0 in_port=0,dl_vlan=122,actions=output:1
2439 ovs-ofctl add-flow br0 in_port=0,dl_vlan=123,actions=output:2
2440
2441 # Start a monitor watching the flow table and check the initial reply.
2442 ovs-ofctl monitor br0 watch:out_port=2 --detach --no-chdir --pidfile >monitor.log 2>&1
2443 AT_CAPTURE_FILE([monitor.log])
2444 ovs-appctl -t ovs-ofctl ofctl/barrier
2445 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
2446 [NXST_FLOW_MONITOR reply:
2447 event=ADDED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:2
2448 OFPT_BARRIER_REPLY:
2449 ])
2450
2451 ovs-appctl -t ovs-ofctl ofctl/set-output-file monitor.log
2452
2453 # Add, modify flows and check the updates.
2454 ovs-ofctl mod-flows br0 dl_vlan=121,actions=drop
2455 ovs-ofctl mod-flows br0 dl_vlan=122,actions=output:1,output:2
2456 ovs-appctl -t ovs-ofctl ofctl/barrier
2457
2458 ovs-ofctl mod-flows br0 dl_vlan=123,actions=output:1,output:2
2459 ovs-appctl -t ovs-ofctl ofctl/barrier
2460
2461 ovs-ofctl mod-flows br0 dl_vlan=122,actions=output:1
2462 ovs-appctl -t ovs-ofctl ofctl/barrier
2463 ovs-ofctl mod-flows br0 dl_vlan=123,actions=output:2
2464 ovs-appctl -t ovs-ofctl ofctl/barrier
2465
2466 AT_CHECK([sed 's/ (xid=0x[[1-9a-fA-F]][[0-9a-fA-F]]*)//' monitor.log], [0],
2467 [NXST_FLOW_MONITOR reply (xid=0x0):
2468 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=122 actions=output:1,output:2
2469 OFPT_BARRIER_REPLY:
2470 NXST_FLOW_MONITOR reply (xid=0x0):
2471 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:1,output:2
2472 OFPT_BARRIER_REPLY:
2473 NXST_FLOW_MONITOR reply (xid=0x0):
2474 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=122 actions=output:1
2475 OFPT_BARRIER_REPLY:
2476 NXST_FLOW_MONITOR reply (xid=0x0):
2477 event=MODIFIED table=0 cookie=0 in_port=0,dl_vlan=123 actions=output:2
2478 OFPT_BARRIER_REPLY:
2479 ])
2480
2481 ovs-appctl -t ovs-ofctl exit
2482 OVS_VSWITCHD_STOP
2483 AT_CLEANUP
2484
2485 AT_SETUP([ofproto - flow monitoring pause and resume])
2486 AT_KEYWORDS([monitor])
2487
2488 # The maximum socket receive buffer size is important for this test, which
2489 # tests behavior when the receive buffer overflows.
2490 if test -e /proc/sys/net/core/rmem_max; then
2491 # Linux
2492 rmem_max=`cat /proc/sys/net/core/rmem_max`
2493 elif rmem_max=`sysctl -n net.inet.tcp.recvbuf_max 2>/dev/null`; then
2494 : # FreeBSD, NetBSD
2495 else
2496 # Don't know how to get maximum socket receive buffer on this OS
2497 AT_SKIP_IF([:])
2498 fi
2499 # Calculate the total amount of queuing: rmem_max in the kernel, 128 kB
2500 # in ofproto sending userspace (see ofmonitor_flush() in connmgr.c).
2501 queue_size=`expr $rmem_max + 128 \* 1024`
2502 echo rmem_max=$rmem_max queue_size=$queue_size
2503
2504 # If there's too much queuing skip the test to avoid timing out.
2505 AT_SKIP_IF([test $rmem_max -gt 1048576])
2506
2507 # Each flow update message takes up at least 48 bytes of space in queues
2508 # and in practice more than that.
2509 n_msgs=`expr $queue_size / 48`
2510 echo n_msgs=$n_msgs
2511
2512 OVS_VSWITCHD_START
2513
2514 # Start a monitor watching the flow table, then make it block.
2515 ON_EXIT([kill `cat ovs-ofctl.pid`])
2516 ovs-ofctl monitor br0 watch: --detach --no-chdir --pidfile >monitor.log 2>&1
2517 AT_CAPTURE_FILE([monitor.log])
2518 ovs-appctl -t ovs-ofctl ofctl/block
2519
2520 # Add $n_msgs flows.
2521 (echo "in_port=2,actions=output:2"
2522 ${PERL} -e '
2523 for ($i = 0; $i < '$n_msgs'; $i++) {
2524 print "cookie=1,reg1=$i,actions=drop\n";
2525 }
2526 ') > flows.txt
2527 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2528 # Check that multipart flow dumps work properly:
2529 AT_CHECK([ovs-ofctl diff-flows br0 flows.txt])
2530 AT_CHECK([ovs-ofctl add-flow br0 in_port=1,cookie=3,actions=drop])
2531 AT_CHECK([ovs-ofctl mod-flows br0 in_port=2,cookie=2,actions=output:2])
2532 AT_CHECK([ovs-ofctl del-flows br0 cookie=1/-1])
2533
2534 ovs-appctl -t ovs-ofctl ofctl/unblock
2535
2536 # Wait for the connection resumed.
2537 # A barrier doesn't work for this purpose.
2538 # https://www.mail-archive.com/dev@openvswitch.org/msg27013.html
2539 # https://www.mail-archive.com/dev@openvswitch.org/msg27675.html
2540 OVS_WAIT_UNTIL([grep NXT_FLOW_MONITOR_RESUMED monitor.log])
2541
2542 ovs-appctl -t ovs-ofctl exit
2543
2544 # Check that the flow monitor reported the same number of flows
2545 # added and deleted, but fewer than we actually added and deleted.
2546 adds=`grep -c 'ADDED.*reg1=' monitor.log`
2547 deletes=`grep -c 'DELETED.*reg1=' monitor.log`
2548 echo adds=$adds deletes=$deletes
2549 AT_CHECK([test $adds -gt 100 && test $adds -lt $n_msgs])
2550 AT_CHECK([test $adds = $deletes])
2551
2552 # Check that the flow monitor reported everything in the expected order:
2553 #
2554 # event=ADDED table=0 cookie=0x1 reg1=0x22
2555 # ...
2556 # NXT_FLOW_MONITOR_PAUSED:
2557 # ...
2558 # event=DELETED reason=delete table=0 cookie=0x1 reg1=0x22
2559 # ...
2560 # event=ADDED table=0 cookie=0x3 in_port=1
2561 # event=MODIFIED table=0 cookie=0x2 in_port=2 actions=output:2
2562 # NXT_FLOW_MONITOR_RESUMED:
2563 #
2564 # except that, between the PAUSED and RESUMED, the order of the ADDED
2565 # and MODIFIED lines lines depends on hash order, that is, it varies
2566 # as we change the hash function or change architecture. Therefore,
2567 # we use a couple of tests below to accept both orders.
2568 AT_CHECK([ofctl_strip < monitor.log | sed -n -e '
2569 /reg1=0x22$/p
2570 /cookie=0x[[23]]/p
2571 /NXT_FLOW_MONITOR_PAUSED:/p
2572 /NXT_FLOW_MONITOR_RESUMED:/p
2573 ' > monitor.log.subset])
2574 AT_CHECK([grep -v MODIFIED monitor.log.subset], [0], [dnl
2575 event=ADDED table=0 cookie=0x1 reg1=0x22
2576 NXT_FLOW_MONITOR_PAUSED:
2577 event=DELETED reason=delete table=0 cookie=0x1 reg1=0x22
2578 event=ADDED table=0 cookie=0x3 in_port=1
2579 NXT_FLOW_MONITOR_RESUMED:
2580 ])
2581 AT_CHECK([grep -v ADDED monitor.log.subset], [0], [dnl
2582 NXT_FLOW_MONITOR_PAUSED:
2583 event=DELETED reason=delete table=0 cookie=0x1 reg1=0x22
2584 event=MODIFIED table=0 cookie=0x2 in_port=2 actions=output:2
2585 NXT_FLOW_MONITOR_RESUMED:
2586 ])
2587
2588 OVS_VSWITCHD_STOP
2589 AT_CLEANUP
2590
2591 AT_SETUP([ofproto - event filtering (OpenFlow 1.3)])
2592 AT_KEYWORDS([monitor])
2593 OVS_VSWITCHD_START
2594
2595 # Start a monitor, use the required protocol version
2596 ovs-ofctl -O OpenFlow13 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
2597 AT_CAPTURE_FILE([monitor.log])
2598
2599 # Send an OpenFlow13 message (04), OFPT_GET_ASYNC_REQUEST (1a), length (8), xid (0a)
2600 ovs-appctl -t ovs-ofctl ofctl/send 041a00080000000a
2601 ovs-appctl -t ovs-ofctl ofctl/barrier
2602
2603 # Check default setting
2604 read -r -d '' expected <<'EOF'
2605 EOF
2606
2607 AT_CHECK([ofctl_strip < monitor.log], [], [dnl
2608 send: OFPT_GET_ASYNC_REQUEST (OF1.3):
2609 OFPT_GET_ASYNC_REPLY (OF1.3):
2610 master:
2611 PACKET_IN: no_match action
2612 PORT_STATUS: add delete modify
2613 FLOW_REMOVED: idle hard delete
2614
2615 slave:
2616 PACKET_IN: (off)
2617 PORT_STATUS: add delete modify
2618 FLOW_REMOVED: (off)
2619 OFPT_BARRIER_REPLY (OF1.3):
2620 ])
2621
2622 OVS_VSWITCHD_STOP
2623 AT_CLEANUP
2624
2625 AT_SETUP([ofproto - ofport_request])
2626 OVS_VSWITCHD_START
2627 ADD_OF_PORTS([br0], [1], [2], [3])
2628
2629 set_and_check_specific_ofports () {
2630 ovs-vsctl set Interface p1 ofport_request="$1" -- \
2631 set Interface p2 ofport_request="$2" -- \
2632 set Interface p3 ofport_request="$3"
2633 ofports=`ovs-vsctl get Interface p1 ofport -- \
2634 get Interface p2 ofport -- \
2635 get Interface p3 ofport`
2636 AT_CHECK_UNQUOTED([echo $ofports], [0], [$1 $2 $3
2637 ])
2638 }
2639 for pre in '1 2 3' '1 3 2' '2 1 3' '2 3 1' '3 1 2' '3 2 1'; do
2640 for post in '1 2 3' '1 3 2' '2 1 3' '2 3 1' '3 1 2' '3 2 1'; do
2641 echo -----------------------------------------------------------
2642 echo "Check changing port numbers from $pre to $post"
2643 set_and_check_specific_ofports $pre
2644 set_and_check_specific_ofports $post
2645 done
2646 done
2647
2648 ovs-vsctl del-port p3
2649
2650 set_and_check_poorly_specified_ofports () {
2651 ovs-vsctl set Interface p1 ofport_request="$1" -- \
2652 set Interface p2 ofport_request="$2"
2653 p1=`ovs-vsctl get Interface p1 ofport`
2654 p2=`ovs-vsctl get Interface p2 ofport`
2655 echo $p1 $p2
2656
2657 AT_CHECK([test "$p1" != "$p2"])
2658 if test "$1" = "$2" && test "$1" != '[[]]'; then
2659 # One port number must be the requested one.
2660 AT_CHECK([test "$p1" = "$1" || test "$p2" = "$1"])
2661 # The other port number must be different (already tested above).
2662 else
2663 AT_CHECK([test "$1" = '[[]]' || test "$p1" == "$1"])
2664 AT_CHECK([test "$2" = '[[]]' || test "$p2" == "$2"])
2665 fi
2666 }
2667 for pre in '1 2' '[[]] 2' '1 [[]]' '[[]] [[]]' '2 1' '[[]] 1' '2 [[]]' \
2668 '1 1' '2 2'; do
2669 for post in '1 2' '[[]] 2' '1 [[]]' '[[]] [[]]' '2 1' '[[]] 1' '2 [[]]' \
2670 '1 1' '2 2'; do
2671 echo -----------------------------------------------------------
2672 echo "Check changing port numbers from $pre to $post"
2673 set_and_check_poorly_specified_ofports $pre
2674 set_and_check_poorly_specified_ofports $post
2675 done
2676 done
2677 OVS_VSWITCHD_STOP
2678 AT_CLEANUP
2679
2680
2681 AT_SETUP([ofproto - bundles, open (OpenFlow 1.4)])
2682 AT_KEYWORDS([monitor])
2683 OVS_VSWITCHD_START
2684
2685 # Start a monitor, use the required protocol version
2686 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
2687 AT_CAPTURE_FILE([monitor.log])
2688
2689 # Send an OpenFlow14 message (05), OFPT_BUNDLE_CONTROL (21), length (10), xid (0a)
2690 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 01"
2691 ovs-appctl -t ovs-ofctl ofctl/barrier
2692 ovs-appctl -t ovs-ofctl exit
2693
2694 AT_CHECK([ofctl_strip < monitor.log], [], [dnl
2695 send: OFPT_BUNDLE_CONTROL (OF1.4):
2696 bundle_id=0x1 type=OPEN_REQUEST flags=atomic
2697 OFPT_BUNDLE_CONTROL (OF1.4):
2698 bundle_id=0x1 type=OPEN_REPLY flags=0
2699 OFPT_BARRIER_REPLY (OF1.4):
2700 ])
2701
2702 OVS_VSWITCHD_STOP
2703 AT_CLEANUP
2704
2705 AT_SETUP([ofproto - bundles, double open (OpenFlow 1.4)])
2706 AT_KEYWORDS([monitor])
2707 OVS_VSWITCHD_START
2708
2709 # Start a monitor, use the required protocol version
2710 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
2711 AT_CAPTURE_FILE([monitor.log])
2712
2713 # Send twice an OpenFlow14 message (05), OFPT_BUNDLE_CONTROL (21), length (10), xid (0a)
2714 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 01"
2715 ovs-appctl -t ovs-ofctl ofctl/barrier
2716 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 01"
2717 ovs-appctl -t ovs-ofctl ofctl/barrier
2718 ovs-appctl -t ovs-ofctl exit
2719
2720 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
2721 send: OFPT_BUNDLE_CONTROL (OF1.4):
2722 bundle_id=0x1 type=OPEN_REQUEST flags=atomic
2723 OFPT_BUNDLE_CONTROL (OF1.4):
2724 bundle_id=0x1 type=OPEN_REPLY flags=0
2725 OFPT_BARRIER_REPLY (OF1.4):
2726 send: OFPT_BUNDLE_CONTROL (OF1.4):
2727 bundle_id=0x1 type=OPEN_REQUEST flags=atomic
2728 OFPT_ERROR (OF1.4): OFPBFC_BAD_ID
2729 OFPT_BUNDLE_CONTROL (OF1.4):
2730 bundle_id=0x1 type=OPEN_REQUEST flags=atomic
2731 OFPT_BARRIER_REPLY (OF1.4):
2732 ])
2733
2734 OVS_VSWITCHD_STOP
2735 AT_CLEANUP
2736
2737 AT_SETUP([ofproto - bundle close without open (OpenFlow 1.4)])
2738 AT_KEYWORDS([monitor])
2739 OVS_VSWITCHD_START
2740
2741 # Start a monitor, use the required protocol version
2742 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
2743 AT_CAPTURE_FILE([monitor.log])
2744
2745 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 02 00 01"
2746 ovs-appctl -t ovs-ofctl ofctl/barrier
2747 ovs-appctl -t ovs-ofctl exit
2748
2749 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
2750 send: OFPT_BUNDLE_CONTROL (OF1.4):
2751 bundle_id=0x1 type=CLOSE_REQUEST flags=atomic
2752 OFPT_ERROR (OF1.4): OFPBFC_BAD_ID
2753 OFPT_BUNDLE_CONTROL (OF1.4):
2754 bundle_id=0x1 type=CLOSE_REQUEST flags=atomic
2755 OFPT_BARRIER_REPLY (OF1.4):
2756 ])
2757
2758 OVS_VSWITCHD_STOP
2759 AT_CLEANUP
2760
2761 AT_SETUP([ofproto - bundle double close (OpenFlow 1.4)])
2762 AT_KEYWORDS([monitor])
2763 OVS_VSWITCHD_START
2764
2765 # Start a monitor, use the required protocol version
2766 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
2767 AT_CAPTURE_FILE([monitor.log])
2768
2769 # Open, Close, Close
2770 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 01"
2771 ovs-appctl -t ovs-ofctl ofctl/barrier
2772 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 02 00 01"
2773 ovs-appctl -t ovs-ofctl ofctl/barrier
2774 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 02 00 01"
2775 ovs-appctl -t ovs-ofctl ofctl/barrier
2776 ovs-appctl -t ovs-ofctl exit
2777
2778 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
2779 send: OFPT_BUNDLE_CONTROL (OF1.4):
2780 bundle_id=0x1 type=OPEN_REQUEST flags=atomic
2781 OFPT_BUNDLE_CONTROL (OF1.4):
2782 bundle_id=0x1 type=OPEN_REPLY flags=0
2783 OFPT_BARRIER_REPLY (OF1.4):
2784 send: OFPT_BUNDLE_CONTROL (OF1.4):
2785 bundle_id=0x1 type=CLOSE_REQUEST flags=atomic
2786 OFPT_BUNDLE_CONTROL (OF1.4):
2787 bundle_id=0x1 type=CLOSE_REPLY flags=0
2788 OFPT_BARRIER_REPLY (OF1.4):
2789 send: OFPT_BUNDLE_CONTROL (OF1.4):
2790 bundle_id=0x1 type=CLOSE_REQUEST flags=atomic
2791 OFPT_ERROR (OF1.4): OFPBFC_BUNDLE_CLOSED
2792 OFPT_BUNDLE_CONTROL (OF1.4):
2793 bundle_id=0x1 type=CLOSE_REQUEST flags=atomic
2794 OFPT_BARRIER_REPLY (OF1.4):
2795 ])
2796
2797 OVS_VSWITCHD_STOP
2798 AT_CLEANUP
2799
2800 AT_SETUP([ofproto - bundle close, different flags (OpenFlow 1.4)])
2801 AT_KEYWORDS([monitor])
2802 OVS_VSWITCHD_START
2803
2804 # Start a monitor, use the required protocol version
2805 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
2806 AT_CAPTURE_FILE([monitor.log])
2807
2808 # Open, Close, Close
2809 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 01"
2810 ovs-appctl -t ovs-ofctl ofctl/barrier
2811 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 02 00 02"
2812 ovs-appctl -t ovs-ofctl ofctl/barrier
2813 ovs-appctl -t ovs-ofctl exit
2814
2815 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
2816 send: OFPT_BUNDLE_CONTROL (OF1.4):
2817 bundle_id=0x1 type=OPEN_REQUEST flags=atomic
2818 OFPT_BUNDLE_CONTROL (OF1.4):
2819 bundle_id=0x1 type=OPEN_REPLY flags=0
2820 OFPT_BARRIER_REPLY (OF1.4):
2821 send: OFPT_BUNDLE_CONTROL (OF1.4):
2822 bundle_id=0x1 type=CLOSE_REQUEST flags=ordered
2823 OFPT_ERROR (OF1.4): OFPBFC_BAD_FLAGS
2824 OFPT_BUNDLE_CONTROL (OF1.4):
2825 bundle_id=0x1 type=CLOSE_REQUEST flags=ordered
2826 OFPT_BARRIER_REPLY (OF1.4):
2827 ])
2828
2829 OVS_VSWITCHD_STOP
2830 AT_CLEANUP
2831
2832 AT_SETUP([ofproto - bundle commit without open (OpenFlow 1.4)])
2833 AT_KEYWORDS([monitor])
2834 OVS_VSWITCHD_START
2835
2836 # Start a monitor, use the required protocol version
2837 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
2838 AT_CAPTURE_FILE([monitor.log])
2839
2840 # Open, Close, Close
2841 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 04 00 01"
2842 ovs-appctl -t ovs-ofctl ofctl/barrier
2843 ovs-appctl -t ovs-ofctl exit
2844
2845 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
2846 send: OFPT_BUNDLE_CONTROL (OF1.4):
2847 bundle_id=0x1 type=COMMIT_REQUEST flags=atomic
2848 OFPT_ERROR (OF1.4): OFPBFC_BAD_ID
2849 OFPT_BUNDLE_CONTROL (OF1.4):
2850 bundle_id=0x1 type=COMMIT_REQUEST flags=atomic
2851 OFPT_BARRIER_REPLY (OF1.4):
2852 ])
2853
2854 OVS_VSWITCHD_STOP
2855 AT_CLEANUP
2856
2857 AT_SETUP([ofproto - bundle commit, different flags (OpenFlow 1.4)])
2858 AT_KEYWORDS([monitor])
2859 OVS_VSWITCHD_START
2860
2861 # Start a monitor, use the required protocol version
2862 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
2863 AT_CAPTURE_FILE([monitor.log])
2864
2865 # Open, Close, Close
2866 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 00 00 01"
2867 ovs-appctl -t ovs-ofctl ofctl/barrier
2868 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 04 00 02"
2869 ovs-appctl -t ovs-ofctl ofctl/barrier
2870 ovs-appctl -t ovs-ofctl exit
2871
2872 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
2873 send: OFPT_BUNDLE_CONTROL (OF1.4):
2874 bundle_id=0x1 type=OPEN_REQUEST flags=atomic
2875 OFPT_BUNDLE_CONTROL (OF1.4):
2876 bundle_id=0x1 type=OPEN_REPLY flags=0
2877 OFPT_BARRIER_REPLY (OF1.4):
2878 send: OFPT_BUNDLE_CONTROL (OF1.4):
2879 bundle_id=0x1 type=COMMIT_REQUEST flags=ordered
2880 OFPT_ERROR (OF1.4): OFPBFC_BAD_FLAGS
2881 OFPT_BUNDLE_CONTROL (OF1.4):
2882 bundle_id=0x1 type=COMMIT_REQUEST flags=ordered
2883 OFPT_BARRIER_REPLY (OF1.4):
2884 ])
2885
2886 OVS_VSWITCHD_STOP
2887 AT_CLEANUP
2888
2889 AT_SETUP([ofproto - bundle discard without open (OpenFlow 1.4)])
2890 AT_KEYWORDS([monitor])
2891 OVS_VSWITCHD_START
2892
2893 # Start a monitor, use the required protocol version
2894 ovs-ofctl -O OpenFlow14 monitor br0 --detach --no-chdir --pidfile >monitor.log 2>&1
2895 AT_CAPTURE_FILE([monitor.log])
2896
2897 # Open, Close, Close
2898 ovs-appctl -t ovs-ofctl ofctl/send "05 21 00 10 00 00 00 0a 00 00 00 01 00 06 00 01"
2899 ovs-appctl -t ovs-ofctl ofctl/barrier
2900 ovs-appctl -t ovs-ofctl exit
2901
2902 AT_CHECK([ofctl_strip < monitor.log], [0], [dnl
2903 send: OFPT_BUNDLE_CONTROL (OF1.4):
2904 bundle_id=0x1 type=DISCARD_REQUEST flags=atomic
2905 OFPT_ERROR (OF1.4): OFPBFC_BAD_ID
2906 OFPT_BUNDLE_CONTROL (OF1.4):
2907 bundle_id=0x1 type=DISCARD_REQUEST flags=atomic
2908 OFPT_BARRIER_REPLY (OF1.4):
2909 ])
2910
2911 OVS_VSWITCHD_STOP
2912 AT_CLEANUP