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