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