ofproto-dpif: Always un-wildcard 'dl_type'.
[sliver-openvswitch.git] / tests / ofproto-dpif.at
1 AT_BANNER([ofproto-dpif])
2
3 AT_SETUP([ofproto-dpif - resubmit])
4 OVS_VSWITCHD_START
5 ADD_OF_PORTS([br0], [1], [10], [11], [12], [13], [14], [15],
6                     [16], [17], [18], [19], [20], [21])
7 AT_DATA([flows.txt], [dnl
8 table=0 in_port=1 priority=1000 icmp actions=output(10),resubmit(2),output(19),resubmit(3),output(21)
9 table=0 in_port=2 priority=1500 icmp actions=output(11),resubmit(,1),output(16),resubmit(2,1),output(18)
10 table=0 in_port=3 priority=2000 icmp actions=output(20)
11 table=1 in_port=1 priority=1000 icmp actions=output(12),resubmit(4,1),output(13),resubmit(3),output(15)
12 table=1 in_port=2 priority=1500 icmp actions=output(17),resubmit(,2)
13 table=1 in_port=3 priority=1500 icmp actions=output(14),resubmit(,2)
14 ])
15 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
16 AT_CHECK([ovs-appctl ofproto/trace br0 'in_port=1,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:07,dl_type=0x0800,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_proto=1,nw_tos=0,nw_ttl=128,icmp_type=8,icmp_code=0'], [0], [stdout])
17 AT_CHECK([tail -1 stdout], [0],
18   [Datapath actions: 10,11,12,13,14,15,16,17,18,19,20,21
19 ])
20 OVS_VSWITCHD_STOP
21 AT_CLEANUP
22
23 AT_SETUP([ofproto-dpif - goto table])
24 OVS_VSWITCHD_START
25 ADD_OF_PORTS([br0], [1], [10], [11])
26 echo "table=0 in_port=1 actions=output(10),goto_table(1)" > flows.txt
27 for i in `seq 1 252`; do echo "table=$i actions=goto_table($(($i+1)))"; done >> flows.txt
28 echo "table=253 actions=output(11)" >> flows.txt
29 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flows br0 flows.txt])
30 AT_CHECK([ovs-appctl ofproto/trace br0 'in_port=1,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:07,dl_type=0x0800,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_proto=1,nw_tos=0,nw_ttl=128,icmp_type=8,icmp_code=0'], [0], [stdout])
31 AT_CHECK([tail -1 stdout], [0],
32   [Datapath actions: 10,11
33 ])
34 OVS_VSWITCHD_STOP
35 AT_CLEANUP
36
37 AT_SETUP([ofproto-dpif - registers])
38 OVS_VSWITCHD_START
39 ADD_OF_PORTS([br0], [20], [21], [22], [33], [90])
40 AT_DATA([flows.txt], [dnl
41 in_port=90                 actions=resubmit:2,resubmit:3,resubmit:4,resubmit:91
42 in_port=91                 actions=resubmit:5,resubmit:6,resubmit:7,resubmit:92
43 in_port=92                 actions=resubmit:8,resubmit:9,resubmit:10,resubmit:11,resubmit:93
44 in_port=93                 actions=resubmit:12,resubmit:13,resubmit:14,resubmit:15
45
46 in_port=2                  actions=load:0x000db000->NXM_NX_REG0[[]]
47 in_port=3                  actions=load:0xdea->NXM_NX_REG0[[20..31]]
48 in_port=4                  actions=load:0xeef->NXM_NX_REG0[[0..11]]
49 in_port=5                  actions=move:NXM_NX_REG0[[]]->NXM_NX_REG1[[]]
50 in_port=6                  actions=load:0x22222222->NXM_NX_REG2[[]]
51 in_port=7                  actions=move:NXM_NX_REG1[[20..31]]->NXM_NX_REG2[[0..11]]
52 in_port=8                  actions=move:NXM_NX_REG1[[0..11]]->NXM_NX_REG2[[20..31]]
53 in_port=9,reg0=0xdeadbeef  actions=output:20
54 in_port=10,reg1=0xdeadbeef actions=output:21
55 in_port=11,reg2=0xeef22dea actions=output:22
56
57 dnl Sanilty check all registers
58 in_port=12 actions=load:0x10->NXM_NX_REG0[[]],load:0x11->NXM_NX_REG1[[]],load:0x12->NXM_NX_REG2[[]]
59 in_port=13 actions=load:0x13->NXM_NX_REG3[[]],load:0x14->NXM_NX_REG4[[]],load:0x15->NXM_NX_REG5[[]]
60 in_port=14 actions=load:0x16->NXM_NX_REG6[[]],load:0x17->NXM_NX_REG7[[]]
61 in_port=15,reg0=0x10,reg1=0x11,reg2=0x12,reg3=0x13,reg4=0x14,reg5=0x15,reg6=0x16,reg7=0x17 actions=output:33
62
63 ])
64 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
65 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(90),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)'], [0], [stdout])
66 AT_CHECK([tail -1 stdout], [0],
67   [Datapath actions: 20,21,22,33
68 ])
69 OVS_VSWITCHD_STOP
70 AT_CLEANUP
71
72 AT_SETUP([ofproto-dpif - push-pop])
73 OVS_VSWITCHD_START
74 ADD_OF_PORTS([br0], [20], [21], [22], [33], [90])
75 AT_DATA([flows.txt], [dnl
76 in_port=90           actions=load:20->NXM_NX_REG0[[0..7]],load:21->NXM_NX_REG1[[0..7]],load:22->NXM_NX_REG2[[0..7]], load:33->NXM_NX_REG3[[0..7]], push:NXM_NX_REG0[[]], push:NXM_NX_REG1[[0..7]],push:NXM_NX_REG2[[0..15]], push:NXM_NX_REG3[[]], resubmit:2, resubmit:3, resubmit:4, resubmit:5
77 in_port=2            actions=pop:NXM_NX_REG0[[0..7]],output:NXM_NX_REG0[[]]
78 in_port=3            actions=pop:NXM_NX_REG1[[0..7]],output:NXM_NX_REG1[[]]
79 in_port=4            actions=pop:NXM_NX_REG2[[0..15]],output:NXM_NX_REG2[[]]
80 in_port=5            actions=pop:NXM_NX_REG3[[]],output:NXM_NX_REG3[[]]
81
82 ])
83 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
84 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(90),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)'], [0], [stdout])
85 AT_CHECK([tail -1 stdout], [0],
86   [Datapath actions: 33,22,21,20
87 ])
88 OVS_VSWITCHD_STOP
89 AT_CLEANUP
90
91 AT_SETUP([ofproto-dpif - output])
92 OVS_VSWITCHD_START
93 ADD_OF_PORTS([br0], [1], [9], [10], [11], [55], [66], [77], [88])
94 AT_DATA([flows.txt], [dnl
95 in_port=1 actions=resubmit:2,resubmit:3,resubmit:4,resubmit:5,resubmit:6,resubmit:7,resubmit:8
96 in_port=2 actions=output:9
97 in_port=3 actions=load:55->NXM_NX_REG0[[]],output:NXM_NX_REG0[[]],load:66->NXM_NX_REG1[[]]
98 in_port=4 actions=output:10,output:NXM_NX_REG0[[]],output:NXM_NX_REG1[[]],output:11
99 in_port=5 actions=load:77->NXM_NX_REG0[[0..15]],load:88->NXM_NX_REG0[[16..31]]
100 in_port=6 actions=output:NXM_NX_REG0[[0..15]],output:NXM_NX_REG0[[16..31]]
101 in_port=7 actions=load:0x110000ff->NXM_NX_REG0[[]],output:NXM_NX_REG0[[]]
102 in_port=8 actions=1,9,load:9->NXM_OF_IN_PORT[[]],1,9
103 ])
104 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
105 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)'], [0], [stdout])
106 AT_CHECK([tail -1 stdout], [0],
107   [Datapath actions: 9,55,10,55,66,11,77,88,9,1
108 ])
109 OVS_VSWITCHD_STOP
110 AT_CLEANUP
111
112 AT_SETUP([ofproto-dpif - dec_ttl])
113 OVS_VSWITCHD_START
114 ADD_OF_PORTS([br0], [1], [2], [3], [4])
115 AT_DATA([flows.txt], [dnl
116 table=0 in_port=1 action=dec_ttl,output:2,resubmit(1,1),output:4
117 table=1 in_port=1 action=dec_ttl,output:3
118 ])
119 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
120 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=2,frag=no)' -generate], [0], [stdout])
121 AT_CHECK([tail -3 stdout], [0],
122   [Datapath actions: set(ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=1,frag=no)),2,4
123 This flow is handled by the userspace slow path because it:
124         - Sends "packet-in" messages to the OpenFlow controller.
125 ])
126 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=3,frag=no)'], [0], [stdout])
127 AT_CHECK([tail -1 stdout], [0],
128   [Datapath actions: set(ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=2,frag=no)),2,set(ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=1,frag=no)),3,4
129 ])
130 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x86dd),ipv6(src=::1,dst=::2,label=0,proto=10,tclass=0x70,hlimit=128,frag=no)'], [0], [stdout])
131 AT_CHECK([tail -1 stdout], [0],
132   [Datapath actions: set(ipv6(src=::1,dst=::2,label=0,proto=10,tclass=0x70,hlimit=127,frag=no)),2,set(ipv6(src=::1,dst=::2,label=0,proto=10,tclass=0x70,hlimit=126,frag=no)),3,4
133 ])
134
135 AT_CAPTURE_FILE([ofctl_monitor.log])
136 AT_CHECK([ovs-ofctl monitor br0 65534 invalid_ttl --detach --no-chdir --pidfile 2> ofctl_monitor.log])
137 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=2,frag=no)' -generate], [0], [stdout])
138 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
139 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
140 NXT_PACKET_IN (xid=0x0): table_id=1 total_len=42 in_port=1 (via invalid_ttl) data_len=42 (unbuffered)
141 icmp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=1,icmp_type=0,icmp_code=0
142 ])
143 OVS_VSWITCHD_STOP
144 AT_CLEANUP
145
146
147 AT_SETUP([ofproto-dpif - output, OFPP_NONE ingress port])
148 OVS_VSWITCHD_START
149 ADD_OF_PORTS([br0], [1], [2])
150
151 AT_CHECK([ovs-ofctl add-flow br0 action=normal])
152
153 # "in_port" defaults to OFPP_NONE if it's not specified.
154 flow="icmp,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,icmp_type=8,icmp_code=0"
155 AT_CHECK([ovs-appctl ofproto/trace br0 "$flow"], [0], [stdout])
156 AT_CHECK([tail -1 stdout | sed 's/Datapath actions: //' | tr "," "\n" | sort -n], [0], [dnl
157 1
158 2
159 100
160 ])
161
162 OVS_VSWITCHD_STOP
163 AT_CLEANUP
164
165 AT_SETUP([ofproto-dpif - DSCP])
166 OVS_VSWITCHD_START([add-port br0 p1 -- set Interface p1 type=dummy])
167 ADD_OF_PORTS([br0], [9])
168 AT_DATA([flows.txt], [dnl
169 actions=output:65534,enqueue:1:1,enqueue:1:2,enqueue:1:2,enqueue:1:1,output:1,mod_nw_tos:0,output:1,output:65534
170 ])
171 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
172 AT_CHECK([ovs-vsctl -- \
173         set Port p1 qos=@newqos --\
174         --id=@newqos create QoS type=linux-htb queues=1=@q1,2=@q2 --\
175         --id=@q1 create Queue dscp=1 --\
176         --id=@q2 create Queue dscp=2], [0], [ignore])
177 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(9),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=1.1.1.1,dst=2.2.2.2,proto=1,tos=0xff,ttl=128,frag=no),icmp(type=8,code=0)'], [0], [stdout])
178 AT_CHECK([tail -1 stdout], [0],
179   [Datapath actions: dnl
180 100,dnl
181 set(ipv4(src=1.1.1.1,dst=2.2.2.2,proto=1,tos=0x7,ttl=128,frag=no)),set(skb_priority(0x1)),1,dnl
182 set(ipv4(src=1.1.1.1,dst=2.2.2.2,proto=1,tos=0xb,ttl=128,frag=no)),set(skb_priority(0x2)),1,dnl
183 1,dnl
184 set(ipv4(src=1.1.1.1,dst=2.2.2.2,proto=1,tos=0x7,ttl=128,frag=no)),set(skb_priority(0x1)),1,dnl
185 set(ipv4(src=1.1.1.1,dst=2.2.2.2,proto=1,tos=0xff,ttl=128,frag=no)),set(skb_priority(0)),1,dnl
186 set(ipv4(src=1.1.1.1,dst=2.2.2.2,proto=1,tos=0x3,ttl=128,frag=no)),1,dnl
187 100
188 ])
189 OVS_VSWITCHD_STOP
190 AT_CLEANUP
191
192 AT_SETUP([ofproto-dpif - output/flood flags])
193 OVS_VSWITCHD_START
194 ADD_OF_PORTS([br0], [1], [2], [3], [4], [5], [6], [7])
195
196 AT_DATA([flows.txt], [dnl
197 in_port=local actions=local,flood
198 in_port=1 actions=flood
199 in_port=2 actions=all
200 in_port=3 actions=output:65534,output:1,output:2,output:3,output:4,output:5,output:6,output:7
201 in_port=4 actions=enqueue:65534:1,enqueue:1:1,enqueue:2:1,enqueue:3:2,enqueue:4:1,enqueue:5:1,enqueue:6:1,enqueue:7:1
202 ])
203 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
204 AT_CHECK([ovs-ofctl mod-port br0 5 noforward])
205 AT_CHECK([ovs-ofctl mod-port br0 6 noflood])
206
207 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(100),eth(src=00:00:00:00:00:01,dst=00:00:00:00:00:02),eth_type(0x0900)'], [0], [stdout])
208 AT_CHECK([tail -1 stdout \
209 | sed -e 's/Datapath actions: //' | tr ',' '\n' | sort], [0], [dnl
210 1
211 2
212 3
213 4
214 7
215 ])
216
217 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(1),eth(src=00:00:00:00:00:01,dst=00:00:00:00:00:02),eth_type(0x0900)'], [0], [stdout])
218 AT_CHECK([tail -1 stdout \
219 | sed -e 's/Datapath actions: //' | tr ',' '\n' | sort], [0], [dnl
220 100
221 2
222 3
223 4
224 7
225 ])
226
227 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(2),eth(src=00:00:00:00:00:01,dst=00:00:00:00:00:02),eth_type(0x0900)'], [0], [stdout])
228 AT_CHECK([tail -1 stdout \
229 | sed -e 's/Datapath actions: //' | tr ',' '\n' | sort], [0], [dnl
230 1
231 100
232 3
233 4
234 6
235 7
236 ])
237
238 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(3),eth(src=00:00:00:00:00:01,dst=00:00:00:00:00:02),eth_type(0x0900)'], [0], [stdout])
239 AT_CHECK([tail -1 stdout], [0],
240   [Datapath actions: 100,1,2,4,6,7
241 ])
242
243 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(4),eth(src=00:00:00:00:00:01,dst=00:00:00:00:00:02),eth_type(0x0900)'], [0], [stdout])
244 AT_CHECK([tail -1 stdout], [0],
245   [Datapath actions: set(skb_priority(0x1)),100,1,2,set(skb_priority(0x2)),3,set(skb_priority(0x1)),6,7
246 ])
247 OVS_VSWITCHD_STOP
248 AT_CLEANUP
249
250 AT_SETUP([ofproto-dpif - controller])
251 OVS_VSWITCHD_START([dnl
252    add-port br0 p1 -- set Interface p1 type=dummy
253 ])
254
255 AT_CAPTURE_FILE([ofctl_monitor.log])
256 AT_DATA([flows.txt], [dnl
257 cookie=0x0 dl_src=10:11:11:11:11:11 actions=controller
258 cookie=0x1 dl_src=20:22:22:22:22:22 actions=controller,resubmit(80,1)
259 cookie=0x2 dl_src=30:33:33:33:33:33 actions=mod_vlan_vid:15,controller
260
261 cookie=0x3 table=1 in_port=80 actions=load:1->NXM_NX_REG0[[]],mod_vlan_vid:80,controller,resubmit(81,2)
262 cookie=0x4 table=2 in_port=81 actions=load:2->NXM_NX_REG1[[]],mod_dl_src:80:81:81:81:81:81,controller,resubmit(82,3)
263 cookie=0x5 table=3 in_port=82 actions=load:3->NXM_NX_REG2[[]],mod_dl_dst:82:82:82:82:82:82,controller,resubmit(83,4)
264 cookie=0x6 table=4 in_port=83 actions=load:4->NXM_NX_REG3[[]],mod_nw_src:83.83.83.83,controller,resubmit(84,5)
265 cookie=0x7 table=5 in_port=84 actions=load:5->NXM_NX_REG4[[]],load:6->NXM_NX_TUN_ID[[]],mod_nw_dst:84.84.84.84,controller,resubmit(85,6)
266 cookie=0x8 table=6 in_port=85 actions=mod_tp_src:85,controller,resubmit(86,7)
267 cookie=0x9 table=7 in_port=86 actions=mod_tp_dst:86,controller,controller
268 cookie=0xa dl_src=40:44:44:44:44:42 actions=push_mpls:0x8847,load:10->OXM_OF_MPLS_LABEL[[]],load:3->OXM_OF_MPLS_TC[[]],controller
269 cookie=0xa dl_src=40:44:44:44:44:43 actions=push_mpls:0x8847,load:10->OXM_OF_MPLS_LABEL[[]],load:3->OXM_OF_MPLS_TC[[]],controller
270 cookie=0xa dl_src=40:44:44:44:44:44 actions=push_mpls:0x8847,load:10->OXM_OF_MPLS_LABEL[[]],load:3->OXM_OF_MPLS_TC[[]],controller
271 cookie=0xa dl_src=40:44:44:44:44:45 actions=push_mpls:0x8847,load:10->OXM_OF_MPLS_LABEL[[]],load:3->OXM_OF_MPLS_TC[[]],dec_mpls_ttl,controller
272 cookie=0xa dl_src=40:44:44:44:44:46 actions=push_mpls:0x8847,load:10->OXM_OF_MPLS_LABEL[[]],load:3->OXM_OF_MPLS_TC[[]],set_mpls_ttl(10),controller
273 cookie=0xa dl_src=40:44:44:44:44:47 actions=push_mpls:0x8847,load:10->OXM_OF_MPLS_LABEL[[]],load:3->OXM_OF_MPLS_TC[[]],dec_mpls_ttl,set_mpls_ttl(10),controller
274 cookie=0xa dl_src=40:44:44:44:44:48 actions=push_mpls:0x8847,load:10->OXM_OF_MPLS_LABEL[[]],load:3->OXM_OF_MPLS_TC[[]],set_mpls_ttl(10),dec_mpls_ttl,controller
275 cookie=0xb dl_src=50:55:55:55:55:55 dl_type=0x8847 actions=load:1000->OXM_OF_MPLS_LABEL[[]],controller
276 cookie=0xd dl_src=60:66:66:66:66:66 actions=pop_mpls:0x0800,controller
277 cookie=0xc dl_src=70:77:77:77:77:77 actions=push_mpls:0x8848,load:1000->OXM_OF_MPLS_LABEL[[]],load:7->OXM_OF_MPLS_TC[[]],controller
278 ])
279 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
280
281 dnl Flow miss.
282 AT_CHECK([ovs-ofctl monitor -P openflow10 br0 65534 --detach --no-chdir --pidfile 2> ofctl_monitor.log])
283
284 for i in 1 2 3 ; do
285     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)'
286 done
287
288 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
289 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
290 OFPT_PACKET_IN (xid=0x0): total_len=60 in_port=1 (via no_match) data_len=60 (unbuffered)
291 tcp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=9 tcp_csum:0
292 dnl
293 OFPT_PACKET_IN (xid=0x0): total_len=60 in_port=1 (via no_match) data_len=60 (unbuffered)
294 tcp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=9 tcp_csum:0
295 dnl
296 OFPT_PACKET_IN (xid=0x0): total_len=60 in_port=1 (via no_match) data_len=60 (unbuffered)
297 tcp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=9 tcp_csum:0
298 ])
299
300 dnl Singleton controller action.
301 AT_CHECK([ovs-ofctl monitor -P openflow10 br0 65534 --detach --no-chdir --pidfile 2> ofctl_monitor.log])
302
303 for i in 1 2 3 ; do
304     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=10:11:11:11:11:11,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=10)'
305 done
306
307 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
308 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
309 OFPT_PACKET_IN (xid=0x0): total_len=60 in_port=1 (via action) data_len=60 (unbuffered)
310 tcp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=10:11:11:11:11:11,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=10 tcp_csum:0
311 dnl
312 OFPT_PACKET_IN (xid=0x0): total_len=60 in_port=1 (via action) data_len=60 (unbuffered)
313 tcp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=10:11:11:11:11:11,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=10 tcp_csum:0
314 dnl
315 OFPT_PACKET_IN (xid=0x0): total_len=60 in_port=1 (via action) data_len=60 (unbuffered)
316 tcp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=10:11:11:11:11:11,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=10 tcp_csum:0
317 ])
318
319 dnl Modified controller action.
320 AT_CHECK([ovs-ofctl monitor -P openflow10 br0 65534 --detach --no-chdir --pidfile 2> ofctl_monitor.log])
321
322 for i in 1 2 3 ; do
323     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=30:33:33:33:33:33,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=10)'
324 done
325
326 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
327 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
328 OFPT_PACKET_IN (xid=0x0): total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
329 tcp,metadata=0,in_port=0,dl_vlan=15,dl_vlan_pcp=0,dl_src=30:33:33:33:33:33,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=10 tcp_csum:0
330 dnl
331 OFPT_PACKET_IN (xid=0x0): total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
332 tcp,metadata=0,in_port=0,dl_vlan=15,dl_vlan_pcp=0,dl_src=30:33:33:33:33:33,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=10 tcp_csum:0
333 dnl
334 OFPT_PACKET_IN (xid=0x0): total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
335 tcp,metadata=0,in_port=0,dl_vlan=15,dl_vlan_pcp=0,dl_src=30:33:33:33:33:33,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=10 tcp_csum:0
336 ])
337
338 dnl Modified MPLS controller action.
339 AT_CHECK([ovs-ofctl monitor br0 65534 -P nxm --detach --pidfile 2> ofctl_monitor.log])
340
341 for i in 1 2 3; do
342     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=40:44:44:44:44:42,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no)'
343 done
344
345 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
346 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
347 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
348 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:42,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=64,mpls_bos=1
349 dnl
350 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
351 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:42,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=64,mpls_bos=1
352 dnl
353 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
354 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:42,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=64,mpls_bos=1
355 ])
356
357 dnl Modified MPLS controller action.
358 AT_CHECK([ovs-ofctl monitor br0 65534 -P nxm --detach --pidfile 2> ofctl_monitor.log])
359
360 dnl in_port(1),eth(src=00:01:02:03:04:05,dst=10:11:12:13:14:15),eth_type(0x8847),mpls(label=100,tc=3,ttl=64,bos=1)
361
362 for i in 1 2 3; do
363     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=40:44:44:44:44:43,dst=50:54:00:00:00:07),eth_type(0x8847),mpls(label=11,tc=3,ttl=64,bos=1)'
364 done
365
366 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
367 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
368 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
369 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:43,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=64,mpls_bos=0
370 dnl
371 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
372 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:43,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=64,mpls_bos=0
373 dnl
374 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
375 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:43,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=64,mpls_bos=0
376 ])
377
378 dnl Modified MPLS controller action.
379 AT_CHECK([ovs-ofctl monitor br0 65534 -P nxm --detach --pidfile 2> ofctl_monitor.log])
380
381 for i in 1 2 3; do
382     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=40:44:44:44:44:44,dst=50:54:00:00:00:07),eth_type(0x8100),vlan(vid=99,pcp=7),encap(eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no))'
383 done
384
385 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
386 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
387 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
388 mpls,metadata=0,in_port=0,dl_vlan=99,dl_vlan_pcp=7,dl_src=40:44:44:44:44:44,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=64,mpls_bos=1
389 dnl
390 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
391 mpls,metadata=0,in_port=0,dl_vlan=99,dl_vlan_pcp=7,dl_src=40:44:44:44:44:44,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=64,mpls_bos=1
392 dnl
393 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
394 mpls,metadata=0,in_port=0,dl_vlan=99,dl_vlan_pcp=7,dl_src=40:44:44:44:44:44,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=64,mpls_bos=1
395 ])
396
397 dnl Modified MPLS controller action.
398 AT_CHECK([ovs-ofctl monitor br0 65534 -P nxm --detach --pidfile 2> ofctl_monitor.log])
399
400 for i in 1 2 3; do
401     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=40:44:44:44:44:45,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no)'
402 done
403
404 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
405 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
406 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
407 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:45,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=63,mpls_bos=1
408 dnl
409 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
410 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:45,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=63,mpls_bos=1
411 dnl
412 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
413 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:45,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=63,mpls_bos=1
414 ])
415
416 dnl Modified MPLS controller action.
417 AT_CHECK([ovs-ofctl monitor br0 65534 -P nxm --detach --pidfile 2> ofctl_monitor.log])
418
419 for i in 1 2 3; do
420     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=40:44:44:44:44:46,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no)'
421 done
422
423 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
424 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
425 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
426 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:46,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=10,mpls_bos=1
427 dnl
428 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
429 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:46,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=10,mpls_bos=1
430 dnl
431 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
432 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:46,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=10,mpls_bos=1
433 ])
434
435 dnl Modified MPLS controller action.
436 AT_CHECK([ovs-ofctl monitor br0 65534 -P nxm --detach --pidfile 2> ofctl_monitor.log])
437
438 for i in 1 2 3; do
439     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=40:44:44:44:44:47,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no)'
440 done
441
442 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
443 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
444 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
445 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:47,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=10,mpls_bos=1
446 dnl
447 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
448 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:47,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=10,mpls_bos=1
449 dnl
450 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
451 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:47,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=10,mpls_bos=1
452 ])
453
454 dnl Modified MPLS controller action.
455 AT_CHECK([ovs-ofctl monitor br0 65534 -P nxm --detach --pidfile 2> ofctl_monitor.log])
456
457 for i in 1 2 3; do
458     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=40:44:44:44:44:48,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no)'
459 done
460
461 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
462 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
463 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
464 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:48,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=9,mpls_bos=1
465 dnl
466 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
467 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:48,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=9,mpls_bos=1
468 dnl
469 NXT_PACKET_IN (xid=0x0): cookie=0xa total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
470 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=40:44:44:44:44:48,dl_dst=50:54:00:00:00:07,mpls_label=10,mpls_tc=3,mpls_ttl=9,mpls_bos=1
471 ])
472
473 dnl Modified MPLS actions.
474 AT_CHECK([ovs-ofctl monitor br0 65534 -P nxm --detach --pidfile 2> ofctl_monitor.log])
475
476 for i in 1 2 3; do
477     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:55:55:55:55:55,dst=50:54:00:00:00:07),eth_type(0x8847),mpls(label=100,tc=7,ttl=64,bos=1)'
478 done
479
480 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
481 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
482 NXT_PACKET_IN (xid=0x0): cookie=0xb total_len=60 in_port=1 (via action) data_len=60 (unbuffered)
483 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=50:55:55:55:55:55,dl_dst=50:54:00:00:00:07,mpls_label=1000,mpls_tc=7,mpls_ttl=64,mpls_bos=1
484 dnl
485 NXT_PACKET_IN (xid=0x0): cookie=0xb total_len=60 in_port=1 (via action) data_len=60 (unbuffered)
486 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=50:55:55:55:55:55,dl_dst=50:54:00:00:00:07,mpls_label=1000,mpls_tc=7,mpls_ttl=64,mpls_bos=1
487 dnl
488 NXT_PACKET_IN (xid=0x0): cookie=0xb total_len=60 in_port=1 (via action) data_len=60 (unbuffered)
489 mpls,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=50:55:55:55:55:55,dl_dst=50:54:00:00:00:07,mpls_label=1000,mpls_tc=7,mpls_ttl=64,mpls_bos=1
490 ])
491
492 dnl Modified MPLS ipv6 controller action.
493 AT_CHECK([ovs-ofctl monitor br0 65534 -P nxm --detach --pidfile 2> ofctl_monitor.log])
494
495 for i in 1 2 3; do
496     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=70:77:77:77:77:77,dst=50:54:00:00:00:07),eth_type(0x86dd),ipv6(src=::1,dst=::2,label=0,proto=10,tclass=0x70,hlimit=128,frag=no)'
497 done
498
499 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
500 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
501 NXT_PACKET_IN (xid=0x0): cookie=0xc total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
502 mplsm,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=70:77:77:77:77:77,dl_dst=50:54:00:00:00:07,mpls_label=1000,mpls_tc=7,mpls_ttl=64,mpls_bos=1
503 dnl
504 NXT_PACKET_IN (xid=0x0): cookie=0xc total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
505 mplsm,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=70:77:77:77:77:77,dl_dst=50:54:00:00:00:07,mpls_label=1000,mpls_tc=7,mpls_ttl=64,mpls_bos=1
506 dnl
507 NXT_PACKET_IN (xid=0x0): cookie=0xc total_len=64 in_port=1 (via action) data_len=64 (unbuffered)
508 mplsm,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=70:77:77:77:77:77,dl_dst=50:54:00:00:00:07,mpls_label=1000,mpls_tc=7,mpls_ttl=64,mpls_bos=1
509 ])
510
511
512 dnl Modified MPLS pop action.
513 dnl The input is a frame with two MPLS headers which tcpdump -vve shows as:
514 dnl 60:66:66:66:66:66 > 50:54:00:00:00:07, ethertype MPLS multicast (0x8847), length 66: MPLS (label 20, exp 0, ttl 32)
515 dnl             (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto TCP (6), length 44)
516
517 AT_CHECK([ovs-ofctl monitor br0 65534 -P nxm --detach --pidfile 2> ofctl_monitor.log])
518
519 for i in 1 2 3; do
520     ovs-appctl netdev-dummy/receive p1 '50 54 00 00 00 07 60 66 66 66 66 66 88 47 00 01 41 20 45 00 00 2c 00 00 00 00 40 06 3b 78 c0 a8 00 01 c0 a8 00 02 00 50 00 00 00 00 00 2a 00 00 00 2a 50 00 27 10 77 44 00 00 48 4f 47 45'
521 done
522 #for i in 2 3; do
523 #    ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=60:66:66:66:66:66,dst=50:54:00:00:00:07),eth_type(0x8847),mpls(label=10,tc=3,ttl=100,bos=1)'
524 #done
525
526 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
527 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
528 NXT_PACKET_IN (xid=0x0): cookie=0xd total_len=58 in_port=1 (via action) data_len=58 (unbuffered)
529 tcp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=60:66:66:66:66:66,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=80,tp_dst=0 tcp_csum:7744
530 dnl
531 NXT_PACKET_IN (xid=0x0): cookie=0xd total_len=58 in_port=1 (via action) data_len=58 (unbuffered)
532 tcp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=60:66:66:66:66:66,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=80,tp_dst=0 tcp_csum:7744
533 dnl
534 NXT_PACKET_IN (xid=0x0): cookie=0xd total_len=58 in_port=1 (via action) data_len=58 (unbuffered)
535 tcp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=60:66:66:66:66:66,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=80,tp_dst=0 tcp_csum:7744
536 ])
537
538 dnl Checksum TCP.
539 AT_CHECK([ovs-ofctl monitor br0 65534 -P nxm --detach --no-chdir --pidfile 2> ofctl_monitor.log])
540
541 for i in 1 ; do
542     ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=20:22:22:22:22:22,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=11)'
543 done
544
545 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
546 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
547 NXT_PACKET_IN (xid=0x0): cookie=0x1 total_len=60 in_port=1 (via action) data_len=60 (unbuffered)
548 tcp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=20:22:22:22:22:22,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=11 tcp_csum:0
549 dnl
550 NXT_PACKET_IN (xid=0x0): table_id=1 cookie=0x3 total_len=64 in_port=1 reg0=0x1 (via action) data_len=64 (unbuffered)
551 tcp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=20:22:22:22:22:22,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=11 tcp_csum:0
552 dnl
553 NXT_PACKET_IN (xid=0x0): table_id=2 cookie=0x4 total_len=64 in_port=1 reg0=0x1 reg1=0x2 (via action) data_len=64 (unbuffered)
554 tcp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=11 tcp_csum:0
555 dnl
556 NXT_PACKET_IN (xid=0x0): table_id=3 cookie=0x5 total_len=64 in_port=1 reg0=0x1 reg1=0x2 reg2=0x3 (via action) data_len=64 (unbuffered)
557 tcp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=82:82:82:82:82:82,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=11 tcp_csum:0
558 dnl
559 NXT_PACKET_IN (xid=0x0): table_id=4 cookie=0x6 total_len=64 in_port=1 reg0=0x1 reg1=0x2 reg2=0x3 reg3=0x4 (via action) data_len=64 (unbuffered)
560 tcp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=82:82:82:82:82:82,nw_src=83.83.83.83,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=11 tcp_csum:1a03
561 dnl
562 NXT_PACKET_IN (xid=0x0): table_id=5 cookie=0x7 total_len=64 in_port=1 tun_id=0x6 reg0=0x1 reg1=0x2 reg2=0x3 reg3=0x4 reg4=0x5 (via action) data_len=64 (unbuffered)
563 tcp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=82:82:82:82:82:82,nw_src=83.83.83.83,nw_dst=84.84.84.84,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=8,tp_dst=11 tcp_csum:3205
564 dnl
565 NXT_PACKET_IN (xid=0x0): table_id=6 cookie=0x8 total_len=64 in_port=1 tun_id=0x6 reg0=0x1 reg1=0x2 reg2=0x3 reg3=0x4 reg4=0x5 (via action) data_len=64 (unbuffered)
566 tcp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=82:82:82:82:82:82,nw_src=83.83.83.83,nw_dst=84.84.84.84,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=85,tp_dst=11 tcp_csum:31b8
567 dnl
568 NXT_PACKET_IN (xid=0x0): table_id=7 cookie=0x9 total_len=64 in_port=1 tun_id=0x6 reg0=0x1 reg1=0x2 reg2=0x3 reg3=0x4 reg4=0x5 (via action) data_len=64 (unbuffered)
569 tcp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=82:82:82:82:82:82,nw_src=83.83.83.83,nw_dst=84.84.84.84,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=85,tp_dst=86 tcp_csum:316d
570 dnl
571 NXT_PACKET_IN (xid=0x0): table_id=7 cookie=0x9 total_len=64 in_port=1 tun_id=0x6 reg0=0x1 reg1=0x2 reg2=0x3 reg3=0x4 reg4=0x5 (via action) data_len=64 (unbuffered)
572 tcp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=82:82:82:82:82:82,nw_src=83.83.83.83,nw_dst=84.84.84.84,nw_tos=0,nw_ecn=0,nw_ttl=64,tp_src=85,tp_dst=86 tcp_csum:316d
573 ])
574
575 dnl Checksum UDP.
576 AT_CHECK([ovs-ofctl monitor br0 65534 --detach --no-chdir --pidfile 2> ofctl_monitor.log])
577
578 for i in 1 ; do
579     ovs-appctl netdev-dummy/receive p1 '50 54 00 00 00 07 20 22 22 22 22 22 08 00 45 00 00 1C 00 00 00 00 00 11 00 00 C0 A8 00 01 C0 A8 00 02 00 08 00 0B 00 00 12 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'
580 done
581
582 OVS_WAIT_UNTIL([ovs-appctl -t ovs-ofctl exit])
583 AT_CHECK([cat ofctl_monitor.log], [0], [dnl
584 NXT_PACKET_IN (xid=0x0): cookie=0x1 total_len=60 in_port=1 (via action) data_len=60 (unbuffered)
585 udp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=20:22:22:22:22:22,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=8,tp_dst=11 udp_csum:1234
586 dnl
587 NXT_PACKET_IN (xid=0x0): table_id=1 cookie=0x3 total_len=64 in_port=1 reg0=0x1 (via action) data_len=64 (unbuffered)
588 udp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=20:22:22:22:22:22,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=8,tp_dst=11 udp_csum:1234
589 dnl
590 NXT_PACKET_IN (xid=0x0): table_id=2 cookie=0x4 total_len=64 in_port=1 reg0=0x1 reg1=0x2 (via action) data_len=64 (unbuffered)
591 udp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=8,tp_dst=11 udp_csum:1234
592 dnl
593 NXT_PACKET_IN (xid=0x0): table_id=3 cookie=0x5 total_len=64 in_port=1 reg0=0x1 reg1=0x2 reg2=0x3 (via action) data_len=64 (unbuffered)
594 udp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=82:82:82:82:82:82,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=8,tp_dst=11 udp_csum:1234
595 dnl
596 NXT_PACKET_IN (xid=0x0): table_id=4 cookie=0x6 total_len=64 in_port=1 reg0=0x1 reg1=0x2 reg2=0x3 reg3=0x4 (via action) data_len=64 (unbuffered)
597 udp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=82:82:82:82:82:82,nw_src=83.83.83.83,nw_dst=192.168.0.2,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=8,tp_dst=11 udp_csum:2c37
598 dnl
599 NXT_PACKET_IN (xid=0x0): table_id=5 cookie=0x7 total_len=64 in_port=1 tun_id=0x6 reg0=0x1 reg1=0x2 reg2=0x3 reg3=0x4 reg4=0x5 (via action) data_len=64 (unbuffered)
600 udp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=82:82:82:82:82:82,nw_src=83.83.83.83,nw_dst=84.84.84.84,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=8,tp_dst=11 udp_csum:4439
601 dnl
602 NXT_PACKET_IN (xid=0x0): table_id=6 cookie=0x8 total_len=64 in_port=1 tun_id=0x6 reg0=0x1 reg1=0x2 reg2=0x3 reg3=0x4 reg4=0x5 (via action) data_len=64 (unbuffered)
603 udp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=82:82:82:82:82:82,nw_src=83.83.83.83,nw_dst=84.84.84.84,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=85,tp_dst=11 udp_csum:43ec
604 dnl
605 NXT_PACKET_IN (xid=0x0): table_id=7 cookie=0x9 total_len=64 in_port=1 tun_id=0x6 reg0=0x1 reg1=0x2 reg2=0x3 reg3=0x4 reg4=0x5 (via action) data_len=64 (unbuffered)
606 udp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=82:82:82:82:82:82,nw_src=83.83.83.83,nw_dst=84.84.84.84,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=85,tp_dst=86 udp_csum:43a1
607 dnl
608 NXT_PACKET_IN (xid=0x0): table_id=7 cookie=0x9 total_len=64 in_port=1 tun_id=0x6 reg0=0x1 reg1=0x2 reg2=0x3 reg3=0x4 reg4=0x5 (via action) data_len=64 (unbuffered)
609 udp,metadata=0,in_port=0,dl_vlan=80,dl_vlan_pcp=0,dl_src=80:81:81:81:81:81,dl_dst=82:82:82:82:82:82,nw_src=83.83.83.83,nw_dst=84.84.84.84,nw_tos=0,nw_ecn=0,nw_ttl=0,tp_src=85,tp_dst=86 udp_csum:43a1
610 ])
611
612 AT_CHECK([ovs-appctl time/warp 5000], [0], [ignore])
613 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
614  cookie=0x1, n_packets=2, n_bytes=120, dl_src=20:22:22:22:22:22 actions=CONTROLLER:65535,resubmit(80,1)
615  cookie=0x2, n_packets=3, n_bytes=180, dl_src=30:33:33:33:33:33 actions=mod_vlan_vid:15,CONTROLLER:65535
616  cookie=0x3, table=1, n_packets=2, n_bytes=120, in_port=80 actions=load:0x1->NXM_NX_REG0[[]],mod_vlan_vid:80,CONTROLLER:65535,resubmit(81,2)
617  cookie=0x4, table=2, n_packets=2, n_bytes=120, in_port=81 actions=load:0x2->NXM_NX_REG1[[]],mod_dl_src:80:81:81:81:81:81,CONTROLLER:65535,resubmit(82,3)
618  cookie=0x5, table=3, n_packets=2, n_bytes=120, in_port=82 actions=load:0x3->NXM_NX_REG2[[]],mod_dl_dst:82:82:82:82:82:82,CONTROLLER:65535,resubmit(83,4)
619  cookie=0x6, table=4, n_packets=2, n_bytes=120, in_port=83 actions=load:0x4->NXM_NX_REG3[[]],mod_nw_src:83.83.83.83,CONTROLLER:65535,resubmit(84,5)
620  cookie=0x7, table=5, n_packets=2, n_bytes=120, in_port=84 actions=load:0x5->NXM_NX_REG4[[]],load:0x6->NXM_NX_TUN_ID[[]],mod_nw_dst:84.84.84.84,CONTROLLER:65535,resubmit(85,6)
621  cookie=0x8, table=6, n_packets=2, n_bytes=120, in_port=85 actions=mod_tp_src:85,CONTROLLER:65535,resubmit(86,7)
622  cookie=0x9, table=7, n_packets=2, n_bytes=120, in_port=86 actions=mod_tp_dst:86,CONTROLLER:65535,CONTROLLER:65535
623  cookie=0xa, n_packets=3, n_bytes=180, dl_src=40:44:44:44:44:42 actions=push_mpls:0x8847,load:0xa->OXM_OF_MPLS_LABEL[[]],load:0x3->OXM_OF_MPLS_TC[[]],CONTROLLER:65535
624  cookie=0xa, n_packets=3, n_bytes=180, dl_src=40:44:44:44:44:43 actions=push_mpls:0x8847,load:0xa->OXM_OF_MPLS_LABEL[[]],load:0x3->OXM_OF_MPLS_TC[[]],CONTROLLER:65535
625  cookie=0xa, n_packets=3, n_bytes=180, dl_src=40:44:44:44:44:44 actions=push_mpls:0x8847,load:0xa->OXM_OF_MPLS_LABEL[[]],load:0x3->OXM_OF_MPLS_TC[[]],CONTROLLER:65535
626  cookie=0xa, n_packets=3, n_bytes=180, dl_src=40:44:44:44:44:45 actions=push_mpls:0x8847,load:0xa->OXM_OF_MPLS_LABEL[[]],load:0x3->OXM_OF_MPLS_TC[[]],dec_mpls_ttl,CONTROLLER:65535
627  cookie=0xa, n_packets=3, n_bytes=180, dl_src=40:44:44:44:44:46 actions=push_mpls:0x8847,load:0xa->OXM_OF_MPLS_LABEL[[]],load:0x3->OXM_OF_MPLS_TC[[]],set_mpls_ttl(10),CONTROLLER:65535
628  cookie=0xa, n_packets=3, n_bytes=180, dl_src=40:44:44:44:44:47 actions=push_mpls:0x8847,load:0xa->OXM_OF_MPLS_LABEL[[]],load:0x3->OXM_OF_MPLS_TC[[]],dec_mpls_ttl,set_mpls_ttl(10),CONTROLLER:65535
629  cookie=0xa, n_packets=3, n_bytes=180, dl_src=40:44:44:44:44:48 actions=push_mpls:0x8847,load:0xa->OXM_OF_MPLS_LABEL[[]],load:0x3->OXM_OF_MPLS_TC[[]],set_mpls_ttl(10),dec_mpls_ttl,CONTROLLER:65535
630  cookie=0xb, n_packets=3, n_bytes=180, mpls,dl_src=50:55:55:55:55:55 actions=load:0x3e8->OXM_OF_MPLS_LABEL[[]],CONTROLLER:65535
631  cookie=0xc, n_packets=3, n_bytes=180, dl_src=70:77:77:77:77:77 actions=push_mpls:0x8848,load:0x3e8->OXM_OF_MPLS_LABEL[[]],load:0x7->OXM_OF_MPLS_TC[[]],CONTROLLER:65535
632  cookie=0xd, n_packets=3, n_bytes=186, dl_src=60:66:66:66:66:66 actions=pop_mpls:0x0800,CONTROLLER:65535
633  n_packets=3, n_bytes=180, dl_src=10:11:11:11:11:11 actions=CONTROLLER:65535
634 NXST_FLOW reply:
635 ])
636
637 OVS_VSWITCHD_STOP
638 AT_CLEANUP
639
640 AT_SETUP([ofproto-dpif - VLAN handling])
641 OVS_VSWITCHD_START(
642   [set Bridge br0 fail-mode=standalone -- \
643    add-port br0 p1                                  trunks=10,12 -- \
644    add-port br0 p2                           tag=10              -- \
645    add-port br0 p3                           tag=12              \
646                    other-config:priority-tags=true               -- \
647    add-port br0 p4                           tag=12              -- \
648    add-port br0 p5 vlan_mode=native-tagged   tag=10              -- \
649    add-port br0 p6 vlan_mode=native-tagged   tag=10 trunks=10,12 -- \
650    add-port br0 p7 vlan_mode=native-untagged tag=12              -- \
651    add-port br0 p8 vlan_mode=native-untagged tag=12 trunks=10,12 \
652                    other-config:priority-tags=true               -- \
653    set Interface p1 type=dummy -- \
654    set Interface p2 type=dummy -- \
655    set Interface p3 type=dummy -- \
656    set Interface p4 type=dummy -- \
657    set Interface p5 type=dummy -- \
658    set Interface p6 type=dummy -- \
659    set Interface p7 type=dummy -- \
660    set Interface p8 type=dummy --])
661
662 dnl Each of these specifies an in_port by number, a VLAN VID (or "none"),
663 dnl a VLAN PCP (used if the VID isn't "none") and the expected set of datapath
664 dnl actions.
665 for tuple in \
666         "100 none 0 drop" \
667         "100 0    0 drop" \
668         "100 0    1 drop" \
669         "100 10   0 1,5,6,7,8,pop_vlan,2" \
670         "100 10   1 1,5,6,7,8,pop_vlan,2" \
671         "100 11   0 5,7" \
672         "100 11   1 5,7" \
673         "100 12   0 1,5,6,pop_vlan,3,4,7,8" \
674         "100 12   1 1,5,6,pop_vlan,4,7,push_vlan(vid=0,pcp=1),3,8" \
675         "1  none 0 drop" \
676         "1  0    0 drop" \
677         "1  0    1 drop" \
678         "1  10   0 5,6,7,8,100,pop_vlan,2" \
679         "1  10   1 5,6,7,8,100,pop_vlan,2" \
680         "1  11   0 drop" \
681         "1  11   1 drop" \
682         "1  12   0 5,6,100,pop_vlan,3,4,7,8" \
683         "1  12   1 5,6,100,pop_vlan,4,7,push_vlan(vid=0,pcp=1),3,8" \
684         "2  none 0 push_vlan(vid=10,pcp=0),1,5,6,7,8,100" \
685         "2  0    0 pop_vlan,push_vlan(vid=10,pcp=0),1,5,6,7,8,100" \
686         "2  0    1 pop_vlan,push_vlan(vid=10,pcp=1),1,5,6,7,8,100" \
687         "2  10   0 drop" \
688         "2  10   1 drop" \
689         "2  11   0 drop" \
690         "2  11   1 drop" \
691         "2  12   0 drop" \
692         "2  12   1 drop" \
693         "3  none 0 4,7,8,push_vlan(vid=12,pcp=0),1,5,6,100" \
694         "3  0    0 pop_vlan,4,7,8,push_vlan(vid=12,pcp=0),1,5,6,100" \
695         "3  0    1 8,pop_vlan,4,7,push_vlan(vid=12,pcp=1),1,5,6,100" \
696         "3  10   0 drop" \
697         "3  10   1 drop" \
698         "3  11   0 drop" \
699         "3  11   1 drop" \
700         "3  12   0 drop" \
701         "3  12   1 drop" \
702         "4  none 0 3,7,8,push_vlan(vid=12,pcp=0),1,5,6,100" \
703         "4  0    0 pop_vlan,3,7,8,push_vlan(vid=12,pcp=0),1,5,6,100" \
704         "4  0    1 3,8,pop_vlan,7,push_vlan(vid=12,pcp=1),1,5,6,100" \
705         "4  10   0 drop" \
706         "4  10   1 drop" \
707         "4  11   0 drop" \
708         "4  11   1 drop" \
709         "4  12   0 drop" \
710         "4  12   1 drop" \
711         "5  none 0 2,push_vlan(vid=10,pcp=0),1,6,7,8,100" \
712         "5  0    0 pop_vlan,2,push_vlan(vid=10,pcp=0),1,6,7,8,100" \
713         "5  0    1 pop_vlan,2,push_vlan(vid=10,pcp=1),1,6,7,8,100" \
714         "5  10   0 1,6,7,8,100,pop_vlan,2" \
715         "5  10   1 1,6,7,8,100,pop_vlan,2" \
716         "5  11   0 7,100" \
717         "5  11   1 7,100" \
718         "5  12   0 1,6,100,pop_vlan,3,4,7,8" \
719         "5  12   1 1,6,100,pop_vlan,4,7,push_vlan(vid=0,pcp=1),3,8" \
720         "6  none 0 2,push_vlan(vid=10,pcp=0),1,5,7,8,100" \
721         "6  0    0 pop_vlan,2,push_vlan(vid=10,pcp=0),1,5,7,8,100" \
722         "6  0    1 pop_vlan,2,push_vlan(vid=10,pcp=1),1,5,7,8,100" \
723         "6  10   0 1,5,7,8,100,pop_vlan,2" \
724         "6  10   1 1,5,7,8,100,pop_vlan,2" \
725         "6  11   0 drop" \
726         "6  11   1 drop" \
727         "6  12   0 1,5,100,pop_vlan,3,4,7,8" \
728         "6  12   1 1,5,100,pop_vlan,4,7,push_vlan(vid=0,pcp=1),3,8" \
729         "7  none 0 3,4,8,push_vlan(vid=12,pcp=0),1,5,6,100" \
730         "7  0    0 pop_vlan,3,4,8,push_vlan(vid=12,pcp=0),1,5,6,100" \
731         "7  0    1 3,8,pop_vlan,4,push_vlan(vid=12,pcp=1),1,5,6,100" \
732         "7  10   0 1,5,6,8,100,pop_vlan,2" \
733         "7  10   1 1,5,6,8,100,pop_vlan,2" \
734         "7  11   0 5,100" \
735         "7  11   1 5,100" \
736         "7  12   0 1,5,6,100,pop_vlan,3,4,8" \
737         "7  12   1 1,5,6,100,pop_vlan,4,push_vlan(vid=0,pcp=1),3,8" \
738         "8  none 0 3,4,7,push_vlan(vid=12,pcp=0),1,5,6,100" \
739         "8  0    0 pop_vlan,3,4,7,push_vlan(vid=12,pcp=0),1,5,6,100" \
740         "8  0    1 3,pop_vlan,4,7,push_vlan(vid=12,pcp=1),1,5,6,100" \
741         "8  10   0 1,5,6,7,100,pop_vlan,2" \
742         "8  10   1 1,5,6,7,100,pop_vlan,2" \
743         "8  11   0 drop" \
744         "8  11   1 drop" \
745         "8  12   0 1,5,6,100,pop_vlan,3,4,7" \
746         "8  12   1 1,5,6,100,pop_vlan,4,7,push_vlan(vid=0,pcp=1),3"
747 do
748   set $tuple
749   in_port=$1
750   vlan=$2
751   pcp=$3
752   expected=$4
753
754   if test $vlan = none; then
755     flow="in_port($in_port),eth(src=50:54:00:00:00:01,dst=ff:ff:ff:ff:ff:ff),eth_type(0xabcd)"
756   else
757     flow="in_port($in_port),eth(src=50:54:00:00:00:01,dst=ff:ff:ff:ff:ff:ff),eth_type(0x8100),vlan(vid=$vlan,pcp=$pcp),encap(eth_type(0xabcd))"
758   fi
759
760   echo "----------------------------------------------------------------------"
761   echo "in_port=$in_port vlan=$vlan pcp=$pcp"
762
763   AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
764   actual=`tail -1 stdout | sed 's/Datapath actions: //'`
765
766   AT_CHECK([ovs-dpctl normalize-actions "$flow" "$expected"], [0], [stdout])
767   mv stdout expout
768   AT_CHECK([ovs-dpctl normalize-actions "$flow" "$actual"], [0], [expout])
769 done
770
771 OVS_VSWITCHD_STOP
772 AT_CLEANUP
773
774 AT_SETUP([ofproto-dpif - fragment handling])
775 OVS_VSWITCHD_START
776 ADD_OF_PORTS([br0], [1], [2], [3], [4], [5], [6], [90])
777 AT_DATA([flows.txt], [dnl
778 priority=75 tcp ip_frag=no    tp_dst=80 actions=output:1
779 priority=75 tcp ip_frag=first tp_dst=80 actions=output:2
780 priority=75 tcp ip_frag=later tp_dst=80 actions=output:3
781 priority=50 tcp ip_frag=no              actions=output:4
782 priority=50 tcp ip_frag=first           actions=output:5
783 priority=50 tcp ip_frag=later           actions=output:6
784 ])
785 AT_CHECK([ovs-ofctl replace-flows br0 flows.txt])
786
787 base_flow="in_port(90),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=128"
788 no_flow="$base_flow,frag=no),tcp(src=12345,dst=80)"
789 first_flow="$base_flow,frag=first),tcp(src=12345,dst=80)"
790 later_flow="$base_flow,frag=later)"
791
792     # mode    no  first  later
793 for tuple in \
794     'normal    1     5      6' \
795     'drop      1  drop   drop' \
796     'nx-match  1     2      6'
797 do
798   set $tuple
799   mode=$1
800   no=$2
801   first=$3
802   later=$4
803
804   AT_CHECK([ovs-ofctl set-frags br0 $mode])
805   for type in no first later; do
806     eval flow=\$${type}_flow exp_output=\$$type
807     printf "\n%s\n" "----$mode $type-----"
808     AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
809     : > expout
810     if test $mode = drop && test $type != no; then
811         echo 'Packets dropped because they are IP fragments and the fragment handling mode is "drop".' >> expout
812     fi
813     echo "Datapath actions: $exp_output" >> expout
814     AT_CHECK([grep 'IP fragments' stdout; tail -1 stdout], [0], [expout])
815   done
816 done
817 OVS_VSWITCHD_STOP
818 AT_CLEANUP
819
820 AT_SETUP([ofproto-dpif - exit])
821 OVS_VSWITCHD_START
822 ADD_OF_PORTS([br0], [1], [2], [3], [10], [11], [12], [13], [14])
823 AT_DATA([flows.txt], [dnl
824 in_port=1 actions=output:10,exit,output:11
825 in_port=2 actions=output:12,resubmit:1,output:12
826 in_port=3 actions=output:13,resubmit:2,output:14
827 ])
828 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
829 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)'], [0], [stdout])
830 AT_CHECK([tail -1 stdout], [0],
831   [Datapath actions: 10
832 ])
833 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)'], [0], [stdout])
834 AT_CHECK([tail -1 stdout], [0],
835   [Datapath actions: 12,10
836 ])
837 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy 'in_port(3),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)'], [0], [stdout])
838 AT_CHECK([tail -1 stdout], [0],
839   [Datapath actions: 13,12,10
840 ])
841 OVS_VSWITCHD_STOP
842 AT_CLEANUP
843
844
845 AT_SETUP([ofproto-dpif - mirroring, select_all])
846 OVS_VSWITCHD_START
847 ADD_OF_PORTS([br0], 1, 2, 3)
848 ovs-vsctl \
849         set Bridge br0 mirrors=@m --\
850         --id=@p3 get Port p3 --\
851         --id=@m create Mirror name=mymirror select_all=true output_port=@p3
852
853 AT_DATA([flows.txt], [dnl
854 in_port=1 actions=output:2
855 in_port=2 actions=output:1
856 ])
857 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
858
859 flow="in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"
860 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
861 AT_CHECK_UNQUOTED([tail -1 stdout], [0],
862   [Datapath actions: 2,3
863 ])
864
865 flow="in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"
866 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
867 AT_CHECK_UNQUOTED([tail -1 stdout], [0],
868   [Datapath actions: 1,3
869 ])
870
871 OVS_VSWITCHD_STOP
872 AT_CLEANUP
873
874
875 AT_SETUP([ofproto-dpif - mirroring, select_src])
876 OVS_VSWITCHD_START
877 ADD_OF_PORTS([br0], 1, 2, 3)
878 ovs-vsctl \
879         set Bridge br0 mirrors=@m --\
880         --id=@p1 get Port p1 -- --id=@p3 get Port p3 --\
881         --id=@m create Mirror name=mymirror select_src_port=@p1 output_port=@p3
882
883 AT_DATA([flows.txt], [dnl
884 in_port=1 actions=output:2
885 in_port=2 actions=output:1
886 ])
887 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
888
889 flow="in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"
890 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
891 AT_CHECK_UNQUOTED([tail -1 stdout], [0],
892   [Datapath actions: 2,3
893 ])
894
895 flow="in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"
896 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
897 AT_CHECK_UNQUOTED([tail -1 stdout], [0],
898   [Datapath actions: 1
899 ])
900 OVS_VSWITCHD_STOP
901 AT_CLEANUP
902
903 AT_SETUP([ofproto-dpif - mirroring, OFPP_NONE ingress port])
904 OVS_VSWITCHD_START
905 ADD_OF_PORTS([br0], 1, 2)
906 ovs-vsctl \
907         set Bridge br0 mirrors=@m --\
908         --id=@p2 get Port p2 --\
909         --id=@m create Mirror name=mymirror select_all=true output_port=@p2
910
911 AT_CHECK([ovs-ofctl add-flow br0 action=output:1])
912
913 # "in_port" defaults to OFPP_NONE if it's not specified.
914 flow="icmp,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:07,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_ttl=128,icmp_type=8,icmp_code=0"
915 AT_CHECK([ovs-appctl ofproto/trace br0 "$flow"], [0], [stdout])
916 AT_CHECK_UNQUOTED([tail -1 stdout], [0],
917   [Datapath actions: 1,2
918 ])
919
920 OVS_VSWITCHD_STOP
921 AT_CLEANUP
922
923
924 AT_SETUP([ofproto-dpif - mirroring, select_dst])
925 OVS_VSWITCHD_START
926 ADD_OF_PORTS([br0], 1, 2, 3)
927 ovs-vsctl \
928         set Bridge br0 mirrors=@m --\
929         --id=@p2 get Port p2 -- --id=@p3 get Port p3 --\
930         --id=@m create Mirror name=mymirror select_dst_port=@p2 output_port=@p3
931
932 AT_DATA([flows.txt], [dnl
933 in_port=1 actions=output:2
934 in_port=2 actions=output:1
935 ])
936 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
937
938 flow="in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"
939 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
940 AT_CHECK_UNQUOTED([tail -1 stdout], [0],
941   [Datapath actions: 2,3
942 ])
943
944 flow="in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"
945 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
946 AT_CHECK_UNQUOTED([tail -1 stdout], [0],
947   [Datapath actions: 1
948 ])
949
950 OVS_VSWITCHD_STOP
951 AT_CLEANUP
952
953
954 AT_SETUP([ofproto-dpif - mirroring, select_vlan])
955 OVS_VSWITCHD_START
956 ADD_OF_PORTS([br0], 1, 2, 3)
957 ovs-vsctl \
958         set Bridge br0 mirrors=@m --\
959         --id=@p2 get Port p2 -- --id=@p3 get Port p3 --\
960         --id=@m create Mirror name=mymirror select_all=true select_vlan=11 output_port=@p3
961
962 AT_DATA([flows.txt], [dnl
963 in_port=1, actions=output:2
964 ])
965 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
966
967 flow="in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"
968 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
969 AT_CHECK_UNQUOTED([tail -1 stdout], [0],
970   [Datapath actions: 2
971 ])
972
973 flow="in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x8100),vlan(vid=10,pcp=0),encap(eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0))"
974 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
975 AT_CHECK_UNQUOTED([tail -1 stdout], [0],
976   [Datapath actions: 2
977 ])
978
979 flow="in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x8100),vlan(vid=11,pcp=0),encap(eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0))"
980 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
981 AT_CHECK_UNQUOTED([tail -1 stdout], [0],
982   [Datapath actions: 2,3
983 ])
984
985 OVS_VSWITCHD_STOP
986 AT_CLEANUP
987
988
989 AT_SETUP([ofproto-dpif - mirroring, output_port])
990 OVS_VSWITCHD_START
991 ADD_OF_PORTS([br0], 1, 2, 3)
992 ovs-vsctl \
993         set Bridge br0 mirrors=@m --\
994         --id=@p3 get Port p3 --\
995         --id=@m create Mirror name=mymirror select_all=true output_port=@p3
996
997 AT_DATA([flows.txt], [dnl
998 in_port=1 actions=mod_vlan_vid:17,output:2
999 in_port=2 actions=output:1
1000 ])
1001 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
1002
1003 flow="in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"
1004 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
1005 AT_CHECK_UNQUOTED([tail -1 stdout], [0],
1006   [Datapath actions: push_vlan(vid=17,pcp=0),2,pop_vlan,3
1007 ])
1008
1009 flow="in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"
1010 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
1011 AT_CHECK_UNQUOTED([tail -1 stdout], [0],
1012   [Datapath actions: 1,3
1013 ])
1014
1015 OVS_VSWITCHD_STOP
1016 AT_CLEANUP
1017
1018 AT_SETUP([ofproto-dpif - mirroring, output_vlan])
1019 OVS_VSWITCHD_START
1020 ADD_OF_PORTS([br0], 1, 2)
1021 ovs-vsctl \
1022         set Bridge br0 mirrors=@m --\
1023         --id=@m create Mirror name=mymirror select_all=true output_vlan=12
1024
1025 AT_DATA([flows.txt], [dnl
1026 in_port=1 actions=output:2
1027 in_port=2 actions=mod_vlan_vid:17,output:1
1028 ])
1029 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
1030
1031 flow="in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"
1032 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
1033 actual=`tail -1 stdout | sed 's/Datapath actions: //'`
1034
1035 expected="2,push_vlan(vid=12,pcp=0),1,2,100"
1036 AT_CHECK([ovs-dpctl normalize-actions "$flow" "$expected"], [0], [stdout])
1037 mv stdout expout
1038 AT_CHECK([ovs-dpctl normalize-actions "$flow" "$actual"], [0], [expout])
1039
1040 flow="in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"
1041 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$flow"], [0], [stdout])
1042 actual=`tail -1 stdout | sed 's/Datapath actions: //'`
1043
1044 expected="push_vlan(vid=17,pcp=0),1,pop_vlan,push_vlan(vid=12,pcp=0),1,2,100"
1045 AT_CHECK([ovs-dpctl normalize-actions "$flow" "$expected"], [0], [stdout])
1046 mv stdout expout
1047 AT_CHECK([ovs-dpctl normalize-actions "$flow" "$actual"], [0], [expout])
1048
1049 OVS_VSWITCHD_STOP
1050 AT_CLEANUP
1051
1052 # Two testcases below are for the ofproto/trace command
1053 # The first one tests all correct syntax:
1054 # ofproto/trace [dp_name] odp_flow [-generate|packet]
1055 # ofproto/trace br_name br_flow [-generate|packet]
1056 AT_SETUP([ofproto-dpif - ofproto/trace command 1])
1057 OVS_VSWITCHD_START([set bridge br0 fail-mode=standalone])
1058 ADD_OF_PORTS([br0], 1, 2, 3)
1059
1060 AT_DATA([flows.txt], [dnl
1061 in_port=1 actions=output:2
1062 in_port=2 actions=output:1
1063 ])
1064 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
1065
1066 odp_flow="in_port(1)"
1067 br_flow="in_port=1"
1068 # Test command: ofproto/trace odp_flow
1069 AT_CHECK([ovs-appctl ofproto/trace "$odp_flow"], [0], [stdout])
1070 AT_CHECK([tail -1 stdout], [0], [dnl
1071 Datapath actions: 2
1072 ])
1073
1074 # Test command: ofproto/trace dp_name odp_flow
1075 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$odp_flow"], [0], [stdout])
1076 AT_CHECK([tail -1 stdout], [0], [dnl
1077 Datapath actions: 2
1078 ])
1079 # Test commmand: ofproto/trace br_name br_flow
1080 AT_CHECK([ovs-appctl ofproto/trace br0 "$br_flow"], [0], [stdout])
1081 AT_CHECK([tail -1 stdout], [0], [dnl
1082 Datapath actions: 2
1083 ])
1084
1085 # Delete the inserted flows
1086 AT_CHECK([ovs-ofctl del-flows br0 "in_port=1"], [0], [stdout])
1087 AT_CHECK([ovs-ofctl del-flows br0 "in_port=2"], [0], [stdout])
1088
1089 # This section beflow tests the [-generate] option
1090 odp_flow="in_port(3),eth(src=50:54:00:00:00:05,dst=ff:ff:ff:ff:ff:ff)"
1091 br_flow="arp,metadata=0,in_port=3,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=ff:ff:ff:ff:ff:ff"
1092
1093 # Test command: ofproto/trace odp_flow
1094 AT_CHECK([ovs-appctl ofproto/trace "$odp_flow"], [0], [stdout])
1095 # Check for no MAC learning entry
1096 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br0 | sed 's/[[0-9]]\{1,\}$/?/'], [0], [dnl
1097  port  VLAN  MAC                Age
1098 ])
1099
1100 # Test command: ofproto/trace br_name br_flow
1101 AT_CHECK([ovs-appctl ofproto/trace br0 "$br_flow"], [0], [stdout])
1102 # Check for no MAC learning entry
1103 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br0 | sed 's/[[0-9]]\{1,\}$/?/'], [0], [dnl
1104  port  VLAN  MAC                Age
1105 ])
1106
1107 # Test command: ofproto/trace odp_flow -generate
1108 AT_CHECK([ovs-appctl ofproto/trace "$odp_flow" -generate], [0], [stdout])
1109 # Check for the MAC learning entry
1110 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br0 | sed 's/[[0-9]]\{1,\}$/?/'], [0], [dnl
1111  port  VLAN  MAC                Age
1112     3     0  50:54:00:00:00:05    ?
1113 ])
1114
1115 # Test command: ofproto/trace dp_name odp_flow -generate
1116 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy \
1117   "in_port(1),eth(src=50:54:00:00:00:06,dst=50:54:00:00:00:05)" \
1118   -generate], [0], [stdout])
1119 # Check for both MAC learning entries
1120 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br0 | sed 's/[[0-9]]\{1,\}$/?/'], [0], [dnl
1121  port  VLAN  MAC                Age
1122     3     0  50:54:00:00:00:05    ?
1123     1     0  50:54:00:00:00:06    ?
1124 ])
1125
1126 # Test command: ofproto/trace br_name br_flow -generate
1127 AT_CHECK([ovs-appctl ofproto/trace br0 \
1128   "in_port=2,dl_src=50:54:00:00:00:07,dl_dst=50:54:00:00:00:06" \
1129   -generate], [0], [stdout])
1130 # Check for both MAC learning entries.
1131 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br0 | sed 's/[[0-9]]\{1,\}$/?/'], [0], [dnl
1132  port  VLAN  MAC                Age
1133     3     0  50:54:00:00:00:05    ?
1134     1     0  50:54:00:00:00:06    ?
1135     2     0  50:54:00:00:00:07    ?
1136 ])
1137
1138 # This section beflow tests the [packet] option
1139 # The ovs-tcpundump of packets between port1 and port2
1140 pkt1to2="50540000000250540000000108064500001C000100004001F98CC0A80001C0A800020800F7FF00000000"
1141 pkt2to1="50540000000150540000000208064500001C000100004001F98CC0A80002C0A800010800F7FF00000000"
1142
1143 # Construct the MAC learning table
1144 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy \
1145   "in_port(1),eth(src=50:54:00:00:00:01,dst=ff:ff:ff:ff:ff:ff)" \
1146   -generate], [0], [stdout])
1147
1148 # Construct the MAC learning table
1149 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy \
1150   "in_port(2),eth(src=50:54:00:00:00:02,dst=ff:ff:ff:ff:ff:ff)" \
1151   -generate], [0], [stdout])
1152
1153 # Test command: ofproto/trace odp_flow packet
1154 AT_CHECK([ovs-appctl ofproto/trace \
1155   "in_port(1),skb_priority(1),skb_mark(2)" "$pkt1to2"], [0], [stdout])
1156 AT_CHECK([tail -1 stdout], [0], [dnl
1157 Datapath actions: 2
1158 ])
1159 AT_CHECK([head -n 3 stdout], [0], [dnl
1160 Bridge: br0
1161 Packet: arp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=50:54:00:00:00:01,dl_dst=50:54:00:00:00:02,arp_spa=0.0.0.0,arp_tpa=0.0.0.0,arp_sha=00:00:00:00:00:00,arp_tha=00:00:00:00:00:00
1162 Flow: skb_mark=0x2,skb_priority=0x1,arp,metadata=0,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:01,dl_dst=50:54:00:00:00:02,arp_spa=0.0.0.0,arp_tpa=0.0.0.0,arp_sha=00:00:00:00:00:00,arp_tha=00:00:00:00:00:00
1163 ])
1164
1165 # Test command: ofproto/trace dp_name odp_flow packet
1166 AT_CHECK([ovs-appctl ofproto/trace ovs-dummy \
1167   "in_port(1),skb_priority(1),skb_mark(2)" "$pkt1to2"], [0], [stdout])
1168 AT_CHECK([tail -1 stdout], [0], [dnl
1169 Datapath actions: 2
1170 ])
1171 AT_CHECK([head -n 3 stdout], [0], [dnl
1172 Bridge: br0
1173 Packet: arp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=50:54:00:00:00:01,dl_dst=50:54:00:00:00:02,arp_spa=0.0.0.0,arp_tpa=0.0.0.0,arp_sha=00:00:00:00:00:00,arp_tha=00:00:00:00:00:00
1174 Flow: skb_mark=0x2,skb_priority=0x1,arp,metadata=0,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:01,dl_dst=50:54:00:00:00:02,arp_spa=0.0.0.0,arp_tpa=0.0.0.0,arp_sha=00:00:00:00:00:00,arp_tha=00:00:00:00:00:00
1175 ])
1176
1177 # Test command: ofproto/trace br_name br_flow packet
1178 AT_CHECK([ovs-appctl ofproto/trace br0 \
1179   "in_port=2,skb_priority=2,skb_mark=1" "$pkt2to1"], [0], [stdout],[stderr])
1180 AT_CHECK([tail -1 stdout], [0], [dnl
1181 Datapath actions: set(skb_mark(0)),1
1182 ])
1183 AT_CHECK([head -n 2 stdout], [0], [dnl
1184 Packet: arp,metadata=0,in_port=0,vlan_tci=0x0000,dl_src=50:54:00:00:00:02,dl_dst=50:54:00:00:00:01,arp_spa=0.0.0.0,arp_tpa=0.0.0.0,arp_sha=00:00:00:00:00:00,arp_tha=00:00:00:00:00:00
1185 Flow: skb_mark=0x1,skb_priority=0x2,arp,metadata=0,in_port=2,vlan_tci=0x0000,dl_src=50:54:00:00:00:02,dl_dst=50:54:00:00:00:01,arp_spa=0.0.0.0,arp_tpa=0.0.0.0,arp_sha=00:00:00:00:00:00,arp_tha=00:00:00:00:00:00
1186 ])
1187
1188 OVS_VSWITCHD_STOP
1189 AT_CLEANUP
1190
1191 # The second test tests the corner cases
1192 AT_SETUP([ofproto-dpif - ofproto/trace command 2])
1193 OVS_VSWITCHD_START
1194 ADD_OF_PORTS([br0], 1, 2)
1195
1196 # Define flows
1197 odp_flow="in_port(1),eth(src=50:54:00:00:00:01,dst=50:54:00:00:00:02)"
1198 br_flow="in_port=1,dl_src=50:54:00:00:00:01,dl_dst=50:54:00:00:00:02"
1199 # Define options
1200 generate="-generate"
1201 pkt="50540000000250540000000108064500001C000100004001F98CC0A80001C0A800020800F7FF00000000"
1202
1203 # Test incorrect command: ofproto/trace wrong_name odp_flow [-generate|packet]
1204 m4_foreach(
1205 [option],
1206 [[],
1207 ["$generate"],
1208 ["$pkt"]],
1209 [AT_CHECK([ovs-appctl ofproto/trace wrong_name "$odp_flow" option],
1210   [2], [], [stderr])
1211 AT_CHECK([tail -2 stderr], [0], [dnl
1212 Cannot find datapath of this name
1213 ovs-appctl: ovs-vswitchd: server returned an error
1214 ])])
1215
1216 # Test incorrect command: ofproto/trace empty_string odp_flow [-generate|packet]
1217 m4_foreach(
1218 [option],
1219 [[],
1220 ["$generate"],
1221 ["$pkt"]],
1222 [AT_CHECK([ovs-appctl ofproto/trace "" "$odp_flow" option],
1223   [2], [], [stderr])
1224 AT_CHECK([tail -2 stderr], [0], [dnl
1225 Cannot find datapath of this name
1226 ovs-appctl: ovs-vswitchd: server returned an error
1227 ])])
1228
1229 # Test incorrect command: ofproto/trace nonexist_dp_name odp_flow [-generate|packet]
1230 m4_foreach(
1231 [option],
1232 [[],
1233 ["$generate"],
1234 ["$pkt"]],
1235 [AT_CHECK([ovs-appctl ofproto/trace ovs-system "$odp_flow" option],
1236   [2], [], [stderr])
1237 AT_CHECK([tail -2 stderr], [0], [dnl
1238 Cannot find datapath of this name
1239 ovs-appctl: ovs-vswitchd: server returned an error
1240 ])])
1241
1242 # Test incorrect command: ofproto/trace br_name odp_flow [-generate|packet]
1243 m4_foreach(
1244 [option],
1245 [[],
1246 ["$generate"],
1247 ["$pkt"]],
1248 [AT_CHECK([ovs-appctl ofproto/trace br0 "$odp_flow" option],
1249   [2], [], [stderr])
1250 AT_CHECK([tail -2 stderr], [0], [dnl
1251 Cannot find datapath of this name
1252 ovs-appctl: ovs-vswitchd: server returned an error
1253 ])])
1254
1255 # Test incorrect command: ofproto/trace dp_name br_flow [-generate|packet]
1256 m4_foreach(
1257 [option],
1258 [[],
1259 ["$generate"],
1260 ["$pkt"]],
1261 [AT_CHECK([ovs-appctl ofproto/trace ovs-dummy "$br_flow" option],
1262   [2], [], [stderr])
1263 AT_CHECK([tail -2 stderr], [0], [dnl
1264 Unknown bridge name
1265 ovs-appctl: ovs-vswitchd: server returned an error
1266 ])])
1267
1268 # Test incorrect command: ofproto/trace br_flow [-generate|packet]
1269 m4_foreach(
1270 [option],
1271 [[],
1272 ["$generate"],
1273 ["$pkt"]],
1274 [AT_CHECK([ovs-appctl ofproto/trace "$br_flow" option],
1275   [2], [], [stderr])
1276 AT_CHECK([tail -2 stderr], [0], [dnl
1277 Must specify bridge name
1278 ovs-appctl: ovs-vswitchd: server returned an error
1279 ])])
1280
1281 # Test incorrect command: ofproto/trace dp_name odp_flow garbage_option
1282 AT_CHECK([ovs-appctl ofproto/trace \
1283   ovs-dummy "$odp_flow" garbage_option],
1284   [2], [stdout],[stderr])
1285 AT_CHECK([tail -2 stderr], [0], [dnl
1286 Trailing garbage in packet data
1287 ovs-appctl: ovs-vswitchd: server returned an error
1288 ])
1289
1290 # Test incorrect command: ofproto/trace with 4 arguments
1291 AT_CHECK([ovs-appctl ofproto/trace \
1292   arg1, arg2, arg3, arg4], [2], [stdout],[stderr])
1293 AT_CHECK([tail -2 stderr], [0], [dnl
1294 "ofproto/trace" command takes at most 3 arguments
1295 ovs-appctl: ovs-vswitchd: server returned an error
1296 ])
1297
1298 # Test incorrect command: ofproto/trace with 0 argument
1299 AT_CHECK([ovs-appctl ofproto/trace ], [2], [stdout],[stderr])
1300 AT_CHECK([tail -2 stderr], [0], [dnl
1301 "ofproto/trace" command requires at least 1 arguments
1302 ovs-appctl: ovs-vswitchd: server returned an error
1303 ])
1304
1305 OVS_VSWITCHD_STOP
1306 AT_CLEANUP
1307
1308 m4_define([OFPROTO_TRACE],
1309   [flow="$2"
1310    AT_CHECK([ovs-appctl ofproto/trace $1 "$flow" $3], [0], [stdout])
1311    actual=`tail -1 stdout | sed 's/Datapath actions: //'`
1312    expected="$4"
1313    AT_CHECK([ovs-dpctl normalize-actions "$flow" "$expected" $5],
1314      [0], [stdout])
1315    mv stdout expout
1316    AT_CHECK([ovs-dpctl normalize-actions "$flow" "$actual" $5],
1317      [0], [expout])])
1318
1319 AT_SETUP([ofproto-dpif - MAC learning])
1320 OVS_VSWITCHD_START([set bridge br0 fail-mode=standalone])
1321 ADD_OF_PORTS([br0], 1, 2, 3)
1322
1323 arp='eth_type(0x0806),arp(sip=192.168.0.1,tip=192.168.0.2,op=1,sha=50:54:00:00:00:05,tha=00:00:00:00:00:00)'
1324
1325 # Trace an ARP packet arriving on p3, to create a MAC learning entry.
1326 OFPROTO_TRACE(
1327   [ovs-dummy],
1328   [in_port(3),eth(src=50:54:00:00:00:05,dst=ff:ff:ff:ff:ff:ff),$arp],
1329   [-generate],
1330   [1,2,100])
1331
1332 # Check for the MAC learning entry.
1333 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br0 | sed 's/[[0-9]]\{1,\}$/?/'], [0], [dnl
1334  port  VLAN  MAC                Age
1335     3     0  50:54:00:00:00:05    ?
1336 ])
1337
1338 # Trace a packet arrival destined for the learned MAC.
1339 # (This will also learn a MAC.)
1340 OFPROTO_TRACE(
1341   [ovs-dummy],
1342   [in_port(1),eth(src=50:54:00:00:00:06,dst=50:54:00:00:00:05),$arp],
1343   [-generate],
1344   [3])
1345
1346 # Check for both MAC learning entries.
1347 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br0 | sed 's/[[0-9]]\{1,\}$/?/'], [0], [dnl
1348  port  VLAN  MAC                Age
1349     3     0  50:54:00:00:00:05    ?
1350     1     0  50:54:00:00:00:06    ?
1351 ])
1352
1353 # Trace a packet arrival that updates the first learned MAC entry.
1354 OFPROTO_TRACE(
1355   [ovs-dummy],
1356   [in_port(2),eth(src=50:54:00:00:00:05,dst=ff:ff:ff:ff:ff:ff),$arp],
1357   [-generate],
1358   [1,3,100])
1359
1360 # Check that the MAC learning entry was updated.
1361 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br0 | sed 's/[[0-9]]\{1,\}$/?/'], [0], [dnl
1362  port  VLAN  MAC                Age
1363     1     0  50:54:00:00:00:06    ?
1364     2     0  50:54:00:00:00:05    ?
1365 ])
1366
1367 # Add another bridge.
1368 AT_CHECK(
1369   [ovs-vsctl \
1370      -- add-br br1 \
1371      -- set bridge br1 datapath-type=dummy])
1372 ADD_OF_PORTS([br1], 4, 5)
1373
1374 # Trace some packet arrivals in br1 to create MAC learning entries there too.
1375 OFPROTO_TRACE(
1376   [ovs-dummy],
1377   [in_port(4),eth(src=50:54:00:00:00:06,dst=ff:ff:ff:ff:ff:ff),$arp],
1378   [-generate],
1379   [5,101])
1380 OFPROTO_TRACE(
1381   [ovs-dummy],
1382   [in_port(5),eth(src=50:54:00:00:00:07,dst=ff:ff:ff:ff:ff:ff),$arp],
1383   [-generate],
1384   [4,101])
1385
1386 # Check that the MAC learning entries were added.
1387 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br1 | sed 's/[[0-9]]\{1,\}$/?/'], [0], [dnl
1388  port  VLAN  MAC                Age
1389     4     0  50:54:00:00:00:06    ?
1390     5     0  50:54:00:00:00:07    ?
1391 ])
1392
1393 # Delete port p1 and see that its MAC learning entry disappeared, and
1394 # that the MAC learning entry for the same MAC was also deleted from br1.
1395 AT_CHECK([ovs-vsctl del-port p1])
1396 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br0 | sed 's/[[0-9]]\{1,\}$/?/'], [0], [dnl
1397  port  VLAN  MAC                Age
1398     2     0  50:54:00:00:00:05    ?
1399 ])
1400 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br1 | sed 's/[[0-9]]\{1,\}$/?/'], [0], [dnl
1401  port  VLAN  MAC                Age
1402     5     0  50:54:00:00:00:07    ?
1403 ])
1404
1405 OVS_VSWITCHD_STOP
1406 AT_CLEANUP
1407
1408 AT_SETUP([ofproto-dpif - MAC table overflow])
1409 OVS_VSWITCHD_START(
1410   [set bridge br0 fail-mode=standalone other-config:mac-table-size=10])
1411 ADD_OF_PORTS([br0], 1, 2, 3)
1412
1413 arp='eth_type(0x0806),arp(sip=192.168.0.1,tip=192.168.0.2,op=1,sha=50:54:00:00:00:05,tha=00:00:00:00:00:00)'
1414
1415 AT_CHECK([ovs-appctl time/stop])
1416
1417 # Trace 10 ARP packets arriving on p3, to create MAC learning entries.
1418 for i in 0 1 2 3 4 5 6 7 8 9; do
1419     OFPROTO_TRACE(
1420       [ovs-dummy],
1421       [in_port(3),eth(src=50:54:00:00:00:0$i,dst=ff:ff:ff:ff:ff:ff),$arp],
1422       [-generate],
1423       [1,2,100])
1424     ovs-appctl time/warp 1000
1425 done
1426
1427 # Check for the MAC learning entries.
1428 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br0 | sed 's/ *[[0-9]]\{1,\}$//' | sort],
1429   [0], [dnl
1430     3     0  50:54:00:00:00:00
1431     3     0  50:54:00:00:00:01
1432     3     0  50:54:00:00:00:02
1433     3     0  50:54:00:00:00:03
1434     3     0  50:54:00:00:00:04
1435     3     0  50:54:00:00:00:05
1436     3     0  50:54:00:00:00:06
1437     3     0  50:54:00:00:00:07
1438     3     0  50:54:00:00:00:08
1439     3     0  50:54:00:00:00:09
1440  port  VLAN  MAC                Age
1441 ])
1442
1443 # Trace another ARP packet on another MAC.
1444 OFPROTO_TRACE(
1445   [ovs-dummy],
1446   [in_port(3),eth(src=50:54:00:00:00:10,dst=ff:ff:ff:ff:ff:ff),$arp],
1447   [-generate],
1448   [1,2,100])
1449
1450 # Check that the new one chased the oldest one out of the table.
1451 AT_CHECK_UNQUOTED([ovs-appctl fdb/show br0 | sed 's/[[0-9]]\{1,\}$/?/' | sort],
1452   [0], [dnl
1453     3     0  50:54:00:00:00:01    ?
1454     3     0  50:54:00:00:00:02    ?
1455     3     0  50:54:00:00:00:03    ?
1456     3     0  50:54:00:00:00:04    ?
1457     3     0  50:54:00:00:00:05    ?
1458     3     0  50:54:00:00:00:06    ?
1459     3     0  50:54:00:00:00:07    ?
1460     3     0  50:54:00:00:00:08    ?
1461     3     0  50:54:00:00:00:09    ?
1462     3     0  50:54:00:00:00:10    ?
1463  port  VLAN  MAC                Age
1464 ])
1465 OVS_VSWITCHD_STOP
1466 AT_CLEANUP
1467
1468 dnl Test that sFlow samples packets correctly.
1469 AT_SETUP([ofproto-dpif - sFlow packet sampling])
1470 OVS_VSWITCHD_START([set Bridge br0 fail-mode=standalone])
1471
1472 ON_EXIT([kill `cat test-sflow.pid`])
1473 AT_CHECK([test-sflow --log-file --detach --no-chdir --pidfile 0:127.0.0.1 > sflow.log], [0], [], [ignore])
1474 AT_CAPTURE_FILE([sflow.log])
1475 SFLOW_PORT=`parse_listening_port < test-sflow.log`
1476
1477 ovs-appctl time/stop
1478
1479 ADD_OF_PORTS([br0], 1, 2)
1480 ovs-vsctl \
1481    set Interface br0 options:ifindex=1002 -- \
1482    set Interface p1 options:ifindex=1004 -- \
1483    set Interface p2 options:ifindex=1003 -- \
1484    set Bridge br0 sflow=@sf -- \
1485    --id=@sf create sflow targets=\"127.0.0.1:$SFLOW_PORT\" \
1486      header=128 sampling=1 polling=1
1487
1488 dnl open with ARP packets to seed the bridge-learning.  The output
1489 dnl ifIndex numbers should be reported predictably after that.
1490 dnl Since we set sampling=1 we should see all of these packets
1491 dnl reported. Sorting the output by data-source and seqNo makes
1492 dnl it deterministic. Ensuring that we send at least two packets
1493 dnl into each port means we get to check the seq nos are
1494 dnl incrementing correctly.
1495
1496 ovs-appctl netdev-dummy/receive p1 'in_port(2),eth(src=50:54:00:00:00:05,dst=FF:FF:FF:FF:FF:FF),eth_type(0x0806),arp(sip=192.168.0.2,tip=192.168.0.1,op=1,sha=50:54:00:00:00:05,tha=00:00:00:00:00:00)'
1497 ovs-appctl netdev-dummy/receive p2 'in_port(1),eth(src=50:54:00:00:00:07,dst=FF:FF:FF:FF:FF:FF),eth_type(0x0806),arp(sip=192.168.0.1,tip=192.168.0.2,op=1,sha=50:54:00:00:00:07,tha=00:00:00:00:00:00)'
1498 ovs-appctl netdev-dummy/receive p1 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'
1499 ovs-appctl netdev-dummy/receive p2 'in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:05),eth_type(0x0800),ipv4(src=192.168.0.2,dst=192.168.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=0,code=0)'
1500 ovs-appctl netdev-dummy/receive p2 'in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:05),eth_type(0x86dd),ipv6(src=fe80::1,dst=fe80::2,label=0,proto=10,tclass=0x70,hlimit=128,frag=no)'
1501
1502 dnl sleep long enough to get more than one counter sample
1503 dnl from each datasource so we can check sequence numbers
1504 for i in `seq 1 30`; do
1505     ovs-appctl time/warp 100
1506 done
1507 OVS_VSWITCHD_STOP
1508 ovs-appctl -t test-sflow exit
1509
1510 AT_CHECK([[sort sflow.log | $EGREP 'HEADER|ERROR' | sed 's/ /\
1511         /g']], [0], [dnl
1512 HEADER
1513         dgramSeqNo=1
1514         ds=127.0.0.1>2:1000
1515         fsSeqNo=1
1516         in_vlan=0
1517         in_priority=0
1518         out_vlan=0
1519         out_priority=0
1520         meanSkip=1
1521         samplePool=1
1522         dropEvents=0
1523         in_ifindex=1004
1524         in_format=0
1525         out_ifindex=2
1526         out_format=2
1527         hdr_prot=1
1528         pkt_len=64
1529         stripped=4
1530         hdr_len=60
1531         hdr=FF-FF-FF-FF-FF-FF-50-54-00-00-00-05-08-06-00-01-08-00-06-04-00-01-50-54-00-00-00-05-C0-A8-00-02-00-00-00-00-00-00-C0-A8-00-01-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
1532 HEADER
1533         dgramSeqNo=1
1534         ds=127.0.0.1>2:1000
1535         fsSeqNo=2
1536         in_vlan=0
1537         in_priority=0
1538         out_vlan=0
1539         out_priority=0
1540         meanSkip=1
1541         samplePool=2
1542         dropEvents=0
1543         in_ifindex=1003
1544         in_format=0
1545         out_ifindex=2
1546         out_format=2
1547         hdr_prot=1
1548         pkt_len=64
1549         stripped=4
1550         hdr_len=60
1551         hdr=FF-FF-FF-FF-FF-FF-50-54-00-00-00-07-08-06-00-01-08-00-06-04-00-01-50-54-00-00-00-07-C0-A8-00-01-00-00-00-00-00-00-C0-A8-00-02-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
1552 HEADER
1553         dgramSeqNo=1
1554         ds=127.0.0.1>2:1000
1555         fsSeqNo=3
1556         in_vlan=0
1557         in_priority=0
1558         out_vlan=0
1559         out_priority=0
1560         meanSkip=1
1561         samplePool=3
1562         dropEvents=0
1563         in_ifindex=1004
1564         in_format=0
1565         out_ifindex=1003
1566         out_format=0
1567         hdr_prot=1
1568         pkt_len=64
1569         stripped=4
1570         hdr_len=60
1571         hdr=50-54-00-00-00-07-50-54-00-00-00-05-08-00-45-00-00-1C-00-00-00-00-40-01-F9-8D-C0-A8-00-01-C0-A8-00-02-08-00-F7-FF-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
1572 HEADER
1573         dgramSeqNo=1
1574         ds=127.0.0.1>2:1000
1575         fsSeqNo=4
1576         in_vlan=0
1577         in_priority=0
1578         out_vlan=0
1579         out_priority=0
1580         meanSkip=1
1581         samplePool=4
1582         dropEvents=0
1583         in_ifindex=1003
1584         in_format=0
1585         out_ifindex=1004
1586         out_format=0
1587         hdr_prot=1
1588         pkt_len=64
1589         stripped=4
1590         hdr_len=60
1591         hdr=50-54-00-00-00-05-50-54-00-00-00-07-08-00-45-00-00-1C-00-00-00-00-40-01-F9-8D-C0-A8-00-02-C0-A8-00-01-00-00-FF-FF-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
1592 HEADER
1593         dgramSeqNo=1
1594         ds=127.0.0.1>2:1000
1595         fsSeqNo=5
1596         in_vlan=0
1597         in_priority=0
1598         out_vlan=0
1599         out_priority=0
1600         meanSkip=1
1601         samplePool=5
1602         dropEvents=0
1603         in_ifindex=1003
1604         in_format=0
1605         out_ifindex=1004
1606         out_format=0
1607         hdr_prot=1
1608         pkt_len=64
1609         stripped=4
1610         hdr_len=60
1611         hdr=50-54-00-00-00-05-50-54-00-00-00-07-86-DD-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
1612 ])
1613
1614 AT_CHECK([[sort sflow.log | $EGREP 'IFCOUNTERS|ERROR' | head -6 | sed 's/ /\
1615         /g']], [0], [dnl
1616 IFCOUNTERS
1617         dgramSeqNo=2
1618         ds=127.0.0.1>0:1002
1619         csSeqNo=1
1620         ifindex=1002
1621         type=6
1622         ifspeed=100000000
1623         direction=0
1624         status=3
1625         in_octets=0
1626         in_unicasts=0
1627         in_multicasts=0
1628         in_broadcasts=4294967295
1629         in_discards=0
1630         in_errors=0
1631         in_unknownprotos=4294967295
1632         out_octets=120
1633         out_unicasts=2
1634         out_multicasts=4294967295
1635         out_broadcasts=4294967295
1636         out_discards=0
1637         out_errors=0
1638         promiscuous=0
1639 IFCOUNTERS
1640         dgramSeqNo=2
1641         ds=127.0.0.1>0:1003
1642         csSeqNo=1
1643         ifindex=1003
1644         type=6
1645         ifspeed=100000000
1646         direction=0
1647         status=0
1648         in_octets=98
1649         in_unicasts=3
1650         in_multicasts=0
1651         in_broadcasts=4294967295
1652         in_discards=0
1653         in_errors=0
1654         in_unknownprotos=4294967295
1655         out_octets=120
1656         out_unicasts=2
1657         out_multicasts=4294967295
1658         out_broadcasts=4294967295
1659         out_discards=0
1660         out_errors=0
1661         promiscuous=0
1662 IFCOUNTERS
1663         dgramSeqNo=2
1664         ds=127.0.0.1>0:1004
1665         csSeqNo=1
1666         ifindex=1004
1667         type=6
1668         ifspeed=100000000
1669         direction=0
1670         status=0
1671         in_octets=84
1672         in_unicasts=2
1673         in_multicasts=0
1674         in_broadcasts=4294967295
1675         in_discards=0
1676         in_errors=0
1677         in_unknownprotos=4294967295
1678         out_octets=180
1679         out_unicasts=3
1680         out_multicasts=4294967295
1681         out_broadcasts=4294967295
1682         out_discards=0
1683         out_errors=0
1684         promiscuous=0
1685 IFCOUNTERS
1686         dgramSeqNo=3
1687         ds=127.0.0.1>0:1002
1688         csSeqNo=2
1689         ifindex=1002
1690         type=6
1691         ifspeed=100000000
1692         direction=0
1693         status=3
1694         in_octets=0
1695         in_unicasts=0
1696         in_multicasts=0
1697         in_broadcasts=4294967295
1698         in_discards=0
1699         in_errors=0
1700         in_unknownprotos=4294967295
1701         out_octets=120
1702         out_unicasts=2
1703         out_multicasts=4294967295
1704         out_broadcasts=4294967295
1705         out_discards=0
1706         out_errors=0
1707         promiscuous=0
1708 IFCOUNTERS
1709         dgramSeqNo=3
1710         ds=127.0.0.1>0:1003
1711         csSeqNo=2
1712         ifindex=1003
1713         type=6
1714         ifspeed=100000000
1715         direction=0
1716         status=0
1717         in_octets=98
1718         in_unicasts=3
1719         in_multicasts=0
1720         in_broadcasts=4294967295
1721         in_discards=0
1722         in_errors=0
1723         in_unknownprotos=4294967295
1724         out_octets=120
1725         out_unicasts=2
1726         out_multicasts=4294967295
1727         out_broadcasts=4294967295
1728         out_discards=0
1729         out_errors=0
1730         promiscuous=0
1731 IFCOUNTERS
1732         dgramSeqNo=3
1733         ds=127.0.0.1>0:1004
1734         csSeqNo=2
1735         ifindex=1004
1736         type=6
1737         ifspeed=100000000
1738         direction=0
1739         status=0
1740         in_octets=84
1741         in_unicasts=2
1742         in_multicasts=0
1743         in_broadcasts=4294967295
1744         in_discards=0
1745         in_errors=0
1746         in_unknownprotos=4294967295
1747         out_octets=180
1748         out_unicasts=3
1749         out_multicasts=4294967295
1750         out_broadcasts=4294967295
1751         out_discards=0
1752         out_errors=0
1753         promiscuous=0
1754 ])
1755 AT_CLEANUP
1756
1757
1758
1759 dnl Test that basic NetFlow reports flow statistics correctly:
1760 dnl - The initial packet of a flow are correctly accounted.
1761 dnl - Later packets within a flow are correctly accounted.
1762 dnl - Flow actions changing (in this case, due to MAC learning)
1763 dnl   cause a record to be sent.
1764 AT_SETUP([ofproto-dpif - NetFlow flow expiration])
1765
1766 OVS_VSWITCHD_START([set Bridge br0 fail-mode=standalone])
1767 ADD_OF_PORTS([br0], 1, 2)
1768
1769 ON_EXIT([kill `cat test-netflow.pid`])
1770 AT_CHECK([test-netflow --log-file --detach --no-chdir --pidfile 0:127.0.0.1 > netflow.log], [0], [], [ignore])
1771 AT_CAPTURE_FILE([netflow.log])
1772 NETFLOW_PORT=`parse_listening_port < test-netflow.log`
1773
1774 ovs-vsctl \
1775    set Bridge br0 netflow=@nf -- \
1776    --id=@nf create NetFlow targets=\"127.0.0.1:$NETFLOW_PORT\" \
1777      engine_id=1 engine_type=2 active_timeout=30 add-id-to-interface=false
1778
1779 for delay in 1000 30000; do
1780     ovs-appctl netdev-dummy/receive p1 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'
1781     ovs-appctl netdev-dummy/receive p2 'in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:05),eth_type(0x0800),ipv4(src=192.168.0.2,dst=192.168.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=0,code=0)'
1782
1783     ovs-appctl time/warp $delay
1784 done
1785
1786 sleep 1
1787 OVS_VSWITCHD_STOP
1788 ovs-appctl -t test-netflow exit
1789
1790 AT_CHECK([[sed -e 's/, uptime [0-9]*//
1791 s/, now [0-9.]*//
1792 s/time \([0-9]*\)\.\.\.\1$/time <moment>/
1793 s/time [0-9]*\.\.\.[0-9]*/time <range>/
1794 ' netflow.log | sort]], [0],
1795   [
1796 header: v5, seq 0, engine 2,1
1797 header: v5, seq 1, engine 2,1
1798 seq 0: 192.168.0.1 > 192.168.0.2, if 1 > 65535, 1 pkts, 60 bytes, ICMP 8:0, time <moment>
1799 seq 1: 192.168.0.1 > 192.168.0.2, if 1 > 2, 1 pkts, 60 bytes, ICMP 8:0, time <moment>
1800 seq 1: 192.168.0.2 > 192.168.0.1, if 2 > 1, 2 pkts, 120 bytes, ICMP 0:0, time <range>
1801 ])
1802 AT_CLEANUP
1803
1804 dnl Test that basic NetFlow reports active expirations correctly.
1805 AT_SETUP([ofproto-dpif - NetFlow active expiration])
1806
1807 OVS_VSWITCHD_START([set Bridge br0 fail-mode=standalone])
1808 ADD_OF_PORTS([br0], 1, 2)
1809
1810 ON_EXIT([kill `cat test-netflow.pid`])
1811 AT_CHECK([test-netflow --log-file --detach --no-chdir --pidfile 0:127.0.0.1 > netflow.log], [0], [], [ignore])
1812 AT_CAPTURE_FILE([netflow.log])
1813 NETFLOW_PORT=`parse_listening_port < test-netflow.log`
1814
1815 ovs-vsctl \
1816    set Bridge br0 netflow=@nf -- \
1817    --id=@nf create NetFlow targets=\"127.0.0.1:$NETFLOW_PORT\" \
1818      engine_id=1 engine_type=2 active_timeout=10 add-id-to-interface=false
1819
1820 AT_CHECK([ovs-appctl time/stop])
1821 n=1
1822 while test $n -le 60; do
1823     n=`expr $n + 1`
1824
1825     ovs-appctl netdev-dummy/receive p1 'in_port(2),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=1234,dst=80)'
1826     ovs-appctl netdev-dummy/receive p2 'in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:05),eth_type(0x0800),ipv4(src=192.168.0.2,dst=192.168.0.1,proto=6,tos=0,ttl=64,frag=no),tcp(src=80,dst=1234)'
1827
1828     ovs-appctl time/warp 1000
1829 done
1830
1831 ovs-appctl time/warp 10000
1832
1833 sleep 1
1834 OVS_VSWITCHD_STOP
1835 ovs-appctl -t test-netflow exit
1836
1837 # Count the number of reported packets:
1838 # - From source to destination before MAC learning kicks in (just one).
1839 # - From source to destination after that.
1840 # - From destination to source.
1841 n_learn=0
1842 n_in=0
1843 n_out=0
1844 n_other=0
1845 n_recs=0
1846 none=0
1847 while read line; do
1848     pkts=`echo "$line" | sed 's/.*, \([[0-9]]*\) pkts,.*/\1/'`
1849     case $pkts in
1850          [[0-9]]*) ;;
1851          *) continue ;;
1852     esac
1853
1854     case $line in
1855         "seq "*": 192.168.0.1 > 192.168.0.2, if 1 > 65535, "*" pkts, "*" bytes, TCP 1234 > 80, time "*)
1856             counter=n_learn
1857             ;;
1858         "seq "*": 192.168.0.1 > 192.168.0.2, if 1 > 2, "*" pkts, "*" bytes, TCP 1234 > 80, time "*)
1859             counter=n_in
1860             ;;
1861         "seq "*": 192.168.0.2 > 192.168.0.1, if 2 > 1, "*" pkts, "*" bytes, TCP 80 > 1234, time "*)
1862             counter=n_out
1863             ;;
1864         *)
1865             counter=n_other
1866             ;;
1867     esac
1868     eval $counter=\`expr \$$counter + \$pkts\`
1869     n_recs=`expr $n_recs + 1`
1870 done < netflow.log
1871
1872 # There should be exactly 1 MAC learning packet,
1873 # exactly 59 other packets in that direction,
1874 # and exactly 60 packets in the other direction.
1875 AT_CHECK([echo $n_learn $n_in $n_out $n_other], [0], [1 59 60 0
1876 ])
1877
1878 # There should be 1 expiration for MAC learning,
1879 # at least 5 active and a final expiration in one direction,
1880 # and at least 5 active and a final expiration in the other direction.
1881 echo $n_recs
1882 AT_CHECK([test $n_recs -ge 13])
1883
1884 AT_CLEANUP
1885
1886 AT_SETUP([idle_age and hard_age increase over time])
1887 OVS_VSWITCHD_START
1888
1889 # get_ages DURATION HARD IDLE
1890 #
1891 # Fetch the flow duration, hard age, and idle age into the variables
1892 # whose names are given as arguments.  Rounds DURATION down to the
1893 # nearest integer.  If hard_age doesn't appear in the output, sets
1894 # HARD to "none".  If idle_age doesn't appear in the output, sets IDLE
1895 # to 0.
1896 get_ages () {
1897     AT_CHECK([ovs-ofctl dump-flows br0], [0], [stdout])
1898
1899     duration=`sed -n 's/.*duration=\([[0-9]]*\)\(\.[[0-9]]*\)\{0,1\}s.*/\1/p' stdout`
1900     AT_CHECK([[expr X"$duration" : 'X[0-9][0-9]*$']], [0], [ignore])
1901     AS_VAR_COPY([$1], [duration])
1902
1903     hard=`sed -n 's/.*hard_age=\([[0-9]]*\),.*/\1/p' stdout`
1904     if test X"$hard" = X; then
1905         hard=none
1906     else
1907         AT_CHECK([[expr X"$hard" : 'X[0-9][0-9]*$']], [0], [ignore])
1908     fi
1909     AS_VAR_COPY([$2], [hard])
1910
1911     idle=`sed -n 's/.*idle_age=\([[0-9]]*\),.*/\1/p' stdout`
1912     if test X"$idle" = X; then
1913         idle=0
1914     else
1915         AT_CHECK([[expr X"$idle" : 'X[0-9][0-9]*$']], [0], [ignore])
1916     fi
1917     AS_VAR_COPY([$3], [idle])
1918 }
1919
1920 # Add a flow and get its initial hard and idle age.
1921 AT_CHECK([ovs-ofctl add-flow br0 hard_timeout=199,idle_timeout=188,actions=drop])
1922 get_ages duration1 hard1 idle1
1923
1924 # Warp time forward by 10 seconds, then modify the flow's actions.
1925 ovs-appctl time/warp 10000
1926 get_ages duration2 hard2 idle2
1927 AT_CHECK([ovs-ofctl mod-flows br0 actions=flood])
1928
1929 # Warp time forward by 10 seconds.
1930 ovs-appctl time/warp 10000
1931 get_ages duration3 hard3 idle3
1932
1933 # Warp time forward 10 more seconds, then pass some packets through the flow,
1934 # then warp forward a few more times because idle times are only updated
1935 # occasionally.
1936 ovs-appctl time/warp 10000
1937 ovs-appctl netdev-dummy/receive br0 'in_port(0),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:05),eth_type(0x0800),ipv4(src=192.168.0.2,dst=192.168.0.1,proto=6,tos=0,ttl=64,frag=no),tcp(src=80,dst=1234)'
1938 ovs-appctl time/warp 1000
1939 ovs-appctl time/warp 1000
1940 ovs-appctl time/warp 1000
1941 get_ages duration4 hard4 idle4
1942
1943 printf "duration: %4s => %4s => %4s => %4s\n" $duration1 $duration2 $duration3 $duration4
1944 printf "hard_age: %4s => %4s => %4s => %4s\n" $hard1 $hard2 $hard3 $hard4
1945 printf "idle_age: %4s => %4s => %4s => %4s\n" $idle1 $idle2 $idle3 $idle4
1946
1947 # Duration should increase steadily over time.
1948 AT_CHECK([test $duration1 -lt $duration2])
1949 AT_CHECK([test $duration2 -lt $duration3])
1950 AT_CHECK([test $duration3 -lt $duration4])
1951
1952 # Hard age should be "none" initially because it's the same as flow_duration,
1953 # then it should increase.
1954 AT_CHECK([test $hard1 = none])
1955 AT_CHECK([test $hard2 = none])
1956 AT_CHECK([test $hard3 != none])
1957 AT_CHECK([test $hard4 != none])
1958 AT_CHECK([test $hard3 -lt $hard4])
1959
1960 # Idle age should increase from 1 to 2 to 3, then decrease.
1961 AT_CHECK([test $idle1 -lt $idle2])
1962 AT_CHECK([test $idle2 -lt $idle3])
1963 AT_CHECK([test $idle3 -gt $idle4])
1964
1965 # Check some invariant relationships.
1966 AT_CHECK([test $duration1 = $idle1])
1967 AT_CHECK([test $duration2 = $idle2])
1968 AT_CHECK([test $duration3 = $idle3])
1969 AT_CHECK([test $idle3 -gt $hard3])
1970 AT_CHECK([test $idle4 -lt $hard4])
1971 AT_CHECK([test $hard4 -lt $duration4])
1972
1973 OVS_VSWITCHD_STOP
1974 AT_CLEANUP
1975
1976 AT_SETUP([ofproto-dpif - fin_timeout])
1977 OVS_VSWITCHD_START
1978 AT_DATA([flows.txt], [dnl
1979 in_port=1 actions=output:2
1980 in_port=2 actions=mod_vlan_vid:17,output:1
1981 ])
1982 AT_CHECK([ovs-ofctl add-flow br0 'idle_timeout=60,actions=fin_timeout(idle_timeout=5)'])
1983 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0],
1984 [NXST_FLOW reply:
1985  idle_timeout=60, actions=fin_timeout(idle_timeout=5)
1986 ])
1987 # Check that a TCP SYN packet does not change the timeout.  (Because
1988 # flow stats updates are mainly what implements the fin_timeout
1989 # feature, we warp forward a couple of times to ensure that flow stats
1990 # run before re-checking the flow table.)
1991 AT_CHECK([ovs-appctl netdev-dummy/receive br0 0021853763af0026b98cb0f908004500003c2e2440004006465dac11370dac11370b828b0016751e267b00000000a00216d017360000020405b40402080a2d25085f0000000001030307])
1992 AT_CHECK([ovs-appctl time/warp 1000 && ovs-appctl time/warp 1000], [0], [warped
1993 warped
1994 ])
1995 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0],
1996 [NXST_FLOW reply:
1997  n_packets=1, n_bytes=74, idle_timeout=60, actions=fin_timeout(idle_timeout=5)
1998 ])
1999 # Check that a TCP FIN packet does change the timeout.
2000 AT_CHECK([ovs-appctl netdev-dummy/receive br0 0021853763af0026b98cb0f90800451000342e3e40004006463bac11370dac11370b828b0016751e319dfc96399b801100717ae800000101080a2d250a9408579588])
2001 AT_CHECK([ovs-appctl time/warp 1000 && ovs-appctl time/warp 1000], [0], [warped
2002 warped
2003 ])
2004 AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip], [0],
2005 [NXST_FLOW reply:
2006  n_packets=2, n_bytes=140, idle_timeout=5, actions=fin_timeout(idle_timeout=5)
2007 ])
2008 OVS_VSWITCHD_STOP
2009 AT_CLEANUP
2010
2011 AT_SETUP([ofproto-dpif - ovs-appctl dpif/dump-dps])
2012 OVS_VSWITCHD_START([add-br br1 -- set bridge br1 datapath-type=dummy])
2013 ADD_OF_PORTS([br0], [1], [2])
2014 ADD_OF_PORTS([br1], [3])
2015
2016 AT_CHECK([ovs-appctl dpif/dump-dps], [0], [dnl
2017 dummy@br0
2018 dummy@br1
2019 ])
2020 OVS_VSWITCHD_STOP
2021 AT_CLEANUP
2022
2023 AT_SETUP([ofproto-dpif - ovs-appctl dpif/show])
2024 OVS_VSWITCHD_START([add-br br1 -- set bridge br1 datapath-type=dummy])
2025 ADD_OF_PORTS([br0], [1], [2])
2026 ADD_OF_PORTS([br1], [3])
2027
2028 AT_CHECK([ovs-appctl dpif/show], [0], [dnl
2029 dummy@ovs-dummy: hit:0 missed:0
2030         flows: cur: 0, avg: 0, max: 0, life span: 0ms
2031         overall avg: add rate: 0.000/min, del rate: 0.000/min
2032         br0: hit:0 missed:0
2033                 br0 65534/100: (dummy)
2034                 p1 1/1: (dummy)
2035                 p2 2/2: (dummy)
2036         br1: hit:0 missed:0
2037                 br1 65534/101: (dummy)
2038                 p3 3/3: (dummy)
2039 ])
2040 OVS_VSWITCHD_STOP
2041 AT_CLEANUP
2042
2043 AT_SETUP([ofproto-dpif - ovs-appctl dpif/dump-flows])
2044 OVS_VSWITCHD_START([add-br br1 -- \
2045                     set bridge br1 datapath-type=dummy fail-mode=secure])
2046 ADD_OF_PORTS([br0], [1], [2])
2047 ADD_OF_PORTS([br1], [3])
2048
2049 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2050 AT_CHECK([ovs-appctl netdev-dummy/receive p2 'in_port(2),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:05),eth_type(0x0800),ipv4(src=192.168.0.2,dst=192.168.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=0,code=0)'])
2051 AT_CHECK([ovs-appctl netdev-dummy/receive p3 'in_port(3),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2052
2053 AT_CHECK([ovs-appctl dpif/dump-flows br0 | sort | STRIP_USED], [0], [dnl
2054 in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0), packets:0, bytes:0, used:0.0s, actions:userspace(pid=0,slow_path(controller))
2055 in_port(2),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:05),eth_type(0x0800),ipv4(src=192.168.0.2,dst=192.168.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=0,code=0), packets:0, bytes:0, used:0.0s, actions:userspace(pid=0,slow_path(controller))
2056 ])
2057
2058 AT_CHECK([ovs-appctl dpif/dump-flows br1 | sort | STRIP_USED], [0], [dnl
2059 in_port(3),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0), packets:0, bytes:0, used:0.0s, actions:userspace(pid=0,slow_path(controller))
2060 ])
2061
2062 OVS_VSWITCHD_STOP
2063 AT_CLEANUP
2064
2065 AT_SETUP([ofproto-dpif - ovs-appctl dpif/del-flows])
2066 OVS_VSWITCHD_START([add-br br1 -- \
2067                     set bridge br1 datapath-type=dummy fail-mode=secure])
2068 ADD_OF_PORTS([br0], [1], [2])
2069 ADD_OF_PORTS([br1], [3])
2070
2071 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2072 AT_CHECK([ovs-appctl netdev-dummy/receive p2 'in_port(2),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:05),eth_type(0x0800),ipv4(src=192.168.0.2,dst=192.168.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=0,code=0)'])
2073 AT_CHECK([ovs-appctl netdev-dummy/receive p3 'in_port(3),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2074
2075 AT_CHECK([ovs-appctl dpif/dump-flows br0 | sort | STRIP_USED], [0], [dnl
2076 in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0), packets:0, bytes:0, used:0.0s, actions:userspace(pid=0,slow_path(controller))
2077 in_port(2),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:05),eth_type(0x0800),ipv4(src=192.168.0.2,dst=192.168.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=0,code=0), packets:0, bytes:0, used:0.0s, actions:userspace(pid=0,slow_path(controller))
2078 ])
2079
2080 AT_CHECK([ovs-appctl dpif/dump-flows br1 | sort | STRIP_USED], [0], [dnl
2081 in_port(3),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0), packets:0, bytes:0, used:0.0s, actions:userspace(pid=0,slow_path(controller))
2082 ])
2083
2084 AT_CHECK([ovs-appctl dpif/del-flows br0])
2085 AT_CHECK([ovs-appctl dpif/dump-flows br0 | sort | STRIP_USED], [0], [dnl
2086 ])
2087
2088 AT_CHECK([ovs-appctl dpif/dump-flows br1 | sort | STRIP_USED], [0], [dnl
2089 in_port(3),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0), packets:0, bytes:0, used:0.0s, actions:userspace(pid=0,slow_path(controller))
2090 ])
2091
2092 OVS_VSWITCHD_STOP
2093 AT_CLEANUP
2094
2095 AT_SETUP([ofproto-dpif - patch ports])
2096 OVS_VSWITCHD_START([add-br br1 \
2097 -- set bridge br1 datapath-type=dummy fail-mode=secure \
2098 -- add-port br1 pbr1 -- set int pbr1 type=patch options:peer=pbr0 \
2099 -- add-port br0 pbr0 -- set int pbr0 type=patch options:peer=pbr1])
2100
2101 ADD_OF_PORTS([br0], [2])
2102 ADD_OF_PORTS([br1], [3])
2103
2104 AT_CHECK([ovs-appctl time/stop]) dnl Make life span averages consistent.
2105
2106 AT_CHECK([ovs-ofctl add-flow br0 actions=LOCAL,output:1,output:2])
2107 AT_CHECK([ovs-ofctl add-flow br1 actions=LOCAL,output:1,output:3])
2108
2109 for i in $(seq 1 10); do
2110     ovs-appctl netdev-dummy/receive br0 'in_port(100),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'
2111 done
2112
2113 for i in $(seq 1 5); do
2114     ovs-appctl netdev-dummy/receive br1 'in_port(101),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:05),eth_type(0x0800),ipv4(src=192.168.0.2,dst=192.168.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'
2115 done
2116
2117 AT_CHECK([ovs-appctl time/warp 1000 && ovs-appctl time/warp 1000], [0], [warped
2118 warped
2119 ])
2120
2121 AT_CHECK([ovs-appctl dpif/show], [0], [dnl
2122 dummy@ovs-dummy: hit:13 missed:2
2123         flows: cur: 2, avg: 1, max: 2, life span: 1250ms
2124         overall avg: add rate: 0.000/min, del rate: 0.000/min
2125         br0: hit:9 missed:1
2126                 br0 65534/100: (dummy)
2127                 p2 2/2: (dummy)
2128                 pbr0 1/none: (patch: peer=pbr1)
2129         br1: hit:4 missed:1
2130                 br1 65534/101: (dummy)
2131                 p3 3/3: (dummy)
2132                 pbr1 1/none: (patch: peer=pbr0)
2133 ])
2134
2135 AT_CHECK([ovs-appctl dpif/dump-flows br0 | STRIP_USED], [0], [dnl
2136 in_port(100),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0), packets:9, bytes:540, used:0.0s, actions:101,3,2
2137 ]),
2138 AT_CHECK([ovs-appctl dpif/dump-flows br1 | STRIP_USED], [0], [dnl
2139 in_port(101),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:05),eth_type(0x0800),ipv4(src=192.168.0.2,dst=192.168.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0), packets:4, bytes:240, used:0.0s, actions:100,2,3
2140 ])
2141
2142 AT_CHECK([ovs-ofctl dump-ports br0 pbr0], [0], [dnl
2143 OFPST_PORT reply (xid=0x4): 1 ports
2144   port  1: rx pkts=5, bytes=300, drop=0, errs=0, frame=0, over=0, crc=0
2145            tx pkts=10, bytes=600, drop=0, errs=0, coll=0
2146 ])
2147
2148 AT_CHECK([ovs-ofctl dump-ports br1 pbr1], [0], [dnl
2149 OFPST_PORT reply (xid=0x4): 1 ports
2150   port  1: rx pkts=10, bytes=600, drop=0, errs=0, frame=0, over=0, crc=0
2151            tx pkts=5, bytes=300, drop=0, errs=0, coll=0
2152 ])
2153
2154 OVS_VSWITCHD_STOP
2155 AT_CLEANUP
2156
2157 AT_SETUP([ofproto-dpif - ovs-appctl dpif/show rates])
2158 OVS_VSWITCHD_START([set Bridge br0 fail-mode=secure])
2159 ADD_OF_PORTS([br0], 1, 2)
2160
2161 AT_CHECK([ovs-appctl time/stop]) dnl Make life span averages consistent.
2162 AT_CHECK([ovs-ofctl add-flow br0 actions=LOCAL,output:1,output:2])
2163
2164 for i in $(seq 1 61); do
2165     ovs-appctl netdev-dummy/receive br0 'in_port(1),eth(src=50:54:00:00:00:05,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'
2166     ovs-appctl time/warp 10000
2167     ovs-appctl time/warp 50000
2168 done
2169
2170 AT_CHECK([ovs-appctl time/warp 10000], [0], [warped
2171 ])
2172
2173 AT_CHECK([ovs-appctl dpif/show | sed 's/ 10[[0-9]]\{3\}(ms)$/ 10000(ms)/'], [0], [dnl
2174 dummy@ovs-dummy: hit:0 missed:61
2175         flows: cur: 0, avg: 0, max: 1, life span: 1666ms
2176         hourly avg: add rate: 0.641/min, del rate: 0.641/min
2177         overall avg: add rate: 1.000/min, del rate: 1.000/min
2178         br0: hit:0 missed:61
2179                 br0 65534/100: (dummy)
2180                 p1 1/1: (dummy)
2181                 p2 2/2: (dummy)
2182 ])
2183
2184 OVS_VSWITCHD_STOP
2185 AT_CLEANUP
2186
2187 AT_SETUP([ofproto-dpif - port duration])
2188 OVS_VSWITCHD_START([set Bridge br0 protocols=OpenFlow13])
2189 ADD_OF_PORTS([br0], 1, 2)
2190
2191 ovs-appctl time/warp 10000
2192
2193 AT_CHECK([ovs-ofctl -O openflow13 dump-ports br0], [0], [stdout])
2194 AT_CHECK([sed 's/=[[0-9]][[0-9]]\(\.[[0-9]][[0-9]]*\)\{0,1\}s/=?s/' stdout], [0],
2195 [dnl
2196 OFPST_PORT reply (OF1.3) (xid=0x2): 3 ports
2197   port  1: rx pkts=0, bytes=0, drop=0, errs=0, frame=0, over=0, crc=0
2198            tx pkts=0, bytes=0, drop=0, errs=0, coll=0
2199            duration=?s
2200   port  2: rx pkts=0, bytes=0, drop=0, errs=0, frame=0, over=0, crc=0
2201            tx pkts=0, bytes=0, drop=0, errs=0, coll=0
2202            duration=?s
2203   port LOCAL: rx pkts=0, bytes=0, drop=0, errs=0, frame=0, over=0, crc=0
2204            tx pkts=0, bytes=0, drop=0, errs=0, coll=0
2205            duration=?s
2206 ])
2207 OVS_VSWITCHD_STOP
2208 AT_CLEANUP
2209
2210 dnl ----------------------------------------------------------------------
2211 AT_BANNER([ofproto-dpif -- megaflows])
2212
2213 # Strips out uninteresting parts of megaflow output, as well as parts
2214 # that vary from one run to another (e.g., timing and bond actions).
2215 m4_define([STRIP_XOUT], [[sed '
2216     s/used:[0-9]*\.[0-9]*/used:0.0/
2217     s/Datapath actions:.*/Datapath actions: <del>/
2218 ' | sort]])
2219
2220 AT_SETUP([ofproto-dpif megaflow - port classification])
2221 OVS_VSWITCHD_START
2222 ADD_OF_PORTS([br0], [1], [2])
2223 AT_DATA([flows.txt], [dnl
2224 table=0 in_port=1 actions=output(2)
2225 ])
2226 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2227 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2228 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2229 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2230 skb_priority=0,ip,in_port=1,nw_frag=no, n_subfacets:2, used:0.0s, Datapath actions: <del>
2231 ])
2232 OVS_VSWITCHD_STOP
2233 AT_CLEANUP
2234
2235 AT_SETUP([ofproto-dpif megaflow - L2 classification])
2236 OVS_VSWITCHD_START
2237 ADD_OF_PORTS([br0], [1], [2])
2238 AT_DATA([flows.txt], [dnl
2239 table=0 in_port=1,dl_src=50:54:00:00:00:09 actions=output(2)
2240 ])
2241 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2242 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2243 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2244 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2245 skb_priority=0,ip,in_port=1,dl_src=50:54:00:00:00:09,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2246 skb_priority=0,ip,in_port=1,dl_src=50:54:00:00:00:0b,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2247 ])
2248 OVS_VSWITCHD_STOP
2249 AT_CLEANUP
2250
2251 AT_SETUP([ofproto-dpif megaflow - L3 classification])
2252 OVS_VSWITCHD_START
2253 ADD_OF_PORTS([br0], [1], [2])
2254 AT_DATA([flows.txt], [dnl
2255 table=0 in_port=1,icmp,nw_src=10.0.0.4 actions=output(2)
2256 ])
2257 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2258 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2259 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2260 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2261 skb_priority=0,icmp,in_port=1,nw_src=10.0.0.2,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2262 skb_priority=0,icmp,in_port=1,nw_src=10.0.0.4,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2263 ])
2264 OVS_VSWITCHD_STOP
2265 AT_CLEANUP
2266
2267 AT_SETUP([ofproto-dpif megaflow - L4 classification])
2268 OVS_VSWITCHD_START
2269 ADD_OF_PORTS([br0], [1], [2])
2270 AT_DATA([flows.txt], [dnl
2271 table=0 in_port=1,icmp,icmp_type=8 actions=output(2)
2272 ])
2273 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2274 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2275 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2276 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2277 skb_priority=0,icmp,in_port=1,nw_frag=no,icmp_type=8, n_subfacets:2, used:0.0s, Datapath actions: <del>
2278 ])
2279 OVS_VSWITCHD_STOP
2280 AT_CLEANUP
2281
2282 AT_SETUP([ofproto-dpif megaflow - normal])
2283 OVS_VSWITCHD_START
2284 ADD_OF_PORTS([br0], [1], [2])
2285 AT_CHECK([ovs-ofctl add-flow br0 action=normal])
2286 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2287 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2288 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2289 skb_priority=0,ip,in_port=1,vlan_tci=0x0000/0x1fff,dl_src=50:54:00:00:00:09,dl_dst=50:54:00:00:00:0a,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2290 skb_priority=0,ip,in_port=1,vlan_tci=0x0000/0x1fff,dl_src=50:54:00:00:00:0b,dl_dst=50:54:00:00:00:0c,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2291 ])
2292 OVS_VSWITCHD_STOP
2293 AT_CLEANUP
2294
2295 AT_SETUP([ofproto-dpif megaflow - mpls])
2296 OVS_VSWITCHD_START
2297 ADD_OF_PORTS([br0], [1], [2])
2298 AT_DATA([flows.txt], [dnl
2299 table=0 dl_src=50:54:00:00:00:09 actions=push_mpls:0x8847,2
2300 table=0 dl_src=50:54:00:00:00:0b actions=pop_mpls:0x0800,2
2301 ])
2302 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2303 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x8847),mpls(label=11,tc=3,ttl=64,bos=1)'])
2304 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0a),eth_type(0x8847),mpls(label=11,tc=3,ttl=64,bos=1)'])
2305 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2306 skb_priority=0,mpls,in_port=1,dl_src=50:54:00:00:00:09,mpls_label=11,mpls_tc=3,mpls_ttl=64,mpls_bos=1,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2307 skb_priority=0,mpls,in_port=1,dl_src=50:54:00:00:00:0b,mpls_label=11,mpls_tc=3,mpls_ttl=64,mpls_bos=1,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2308 ])
2309 OVS_VSWITCHD_STOP
2310 AT_CLEANUP
2311
2312 AT_SETUP([ofproto-dpif megaflow - netflow])
2313 OVS_VSWITCHD_START
2314 ADD_OF_PORTS([br0], [1], [2])
2315
2316 dnl NetFlow configuration disables wildcarding relevant fields
2317 ON_EXIT([kill `cat test-netflow.pid`])
2318 AT_CHECK([test-netflow --log-file --detach --no-chdir --pidfile 0:127.0.0.1 > netflow.log], [0], [], [ignore])
2319 AT_CAPTURE_FILE([netflow.log])
2320 NETFLOW_PORT=`parse_listening_port < test-netflow.log`
2321 ovs-vsctl \
2322    set Bridge br0 netflow=@nf -- \
2323    --id=@nf create NetFlow targets=\"127.0.0.1:$NETFLOW_PORT\" \
2324      engine_id=1 engine_type=2 active_timeout=30 add-id-to-interface=false
2325
2326 AT_CHECK([ovs-ofctl add-flow br0 action=normal])
2327 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2328 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2329 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2330 skb_priority=0,icmp,in_port=1,vlan_tci=0x0000/0x1fff,dl_src=50:54:00:00:00:09,dl_dst=50:54:00:00:00:0a,nw_src=10.0.0.2,nw_dst=10.0.0.1,nw_tos=0,nw_frag=no,icmp_type=8,icmp_code=0, n_subfacets:1, used:0.0s, Datapath actions: <del>
2331 skb_priority=0,icmp,in_port=1,vlan_tci=0x0000/0x1fff,dl_src=50:54:00:00:00:0b,dl_dst=50:54:00:00:00:0c,nw_src=10.0.0.4,nw_dst=10.0.0.3,nw_tos=0,nw_frag=no,icmp_type=8,icmp_code=0, n_subfacets:1, used:0.0s, Datapath actions: <del>
2332 ])
2333 OVS_VSWITCHD_STOP
2334 AT_CLEANUP
2335
2336 AT_SETUP([ofproto-dpif megaflow - normal, active-backup bonding])
2337 OVS_VSWITCHD_START(
2338   [add-port br0 p1 -- set Interface p1 type=dummy ofport_request=1 -- \
2339    add-bond br0 bond0 p2 p3 bond_mode=active-backup -- \
2340    set interface p2 type=dummy ofport_request=2 -- \
2341    set interface p3 type=dummy ofport_request=3])
2342 AT_CHECK([ovs-appctl netdev-dummy/set-admin-state up], 0, [OK
2343 ])
2344
2345 AT_CHECK([ovs-ofctl add-flow br0 action=normal])
2346 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2347 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2348 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2349 skb_priority=0,ip,in_port=1,vlan_tci=0x0000/0x1fff,dl_src=50:54:00:00:00:09,dl_dst=50:54:00:00:00:0a,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2350 skb_priority=0,ip,in_port=1,vlan_tci=0x0000/0x1fff,dl_src=50:54:00:00:00:0b,dl_dst=50:54:00:00:00:0c,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2351 ])
2352 OVS_VSWITCHD_STOP
2353 AT_CLEANUP
2354
2355 AT_SETUP([ofproto-dpif megaflow - normal, balance-slb bonding])
2356 OVS_VSWITCHD_START(
2357   [add-port br0 p1 -- set Interface p1 type=dummy ofport_request=1 -- \
2358    add-bond br0 bond0 p2 p3 bond_mode=balance-slb -- \
2359    set interface p2 type=dummy ofport_request=2 -- \
2360    set interface p3 type=dummy ofport_request=3])
2361 AT_CHECK([ovs-appctl netdev-dummy/set-admin-state up], 0, [OK
2362 ])
2363
2364 AT_CHECK([ovs-ofctl add-flow br0 action=normal])
2365 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2366 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2367 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2368 skb_priority=0,ip,in_port=1,vlan_tci=0x0000/0x1fff,dl_src=50:54:00:00:00:09,dl_dst=50:54:00:00:00:0a,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2369 skb_priority=0,ip,in_port=1,vlan_tci=0x0000/0x1fff,dl_src=50:54:00:00:00:0b,dl_dst=50:54:00:00:00:0c,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2370 ])
2371 OVS_VSWITCHD_STOP
2372 AT_CLEANUP
2373
2374 AT_SETUP([ofproto-dpif megaflow - normal, balance-tcp bonding])
2375 # Create bond0 on br0 with interfaces p0 and p1
2376 #    and bond1 on br1 with interfaces p2 and p3
2377 # with p0 patched to p2 and p1 patched to p3.
2378 OVS_VSWITCHD_START(
2379   [add-bond br0 bond0 p0 p1 bond_mode=balance-tcp lacp=active \
2380                             other-config:lacp-time=fast \
2381                             other-config:bond-rebalance-interval=0 -- \
2382    set interface p0 type=patch options:peer=p2 ofport_request=1 -- \
2383    set interface p1 type=patch options:peer=p3 ofport_request=2 -- \
2384    add-br br1 -- \
2385    set bridge br1 other-config:hwaddr=aa:66:aa:66:00:00 -- \
2386    set bridge br1 datapath-type=dummy other-config:datapath-id=1234 \
2387                   fail-mode=secure -- \
2388    add-bond br1 bond1 p2 p3 bond_mode=balance-tcp lacp=active \
2389                             other-config:lacp-time=fast \
2390                             other-config:bond-rebalance-interval=0 -- \
2391    set interface p2 type=patch options:peer=p0 ofport_request=3 -- \
2392    set interface p3 type=patch options:peer=p1 ofport_request=4 --])
2393
2394 AT_CHECK([ovs-appctl netdev-dummy/set-admin-state up], 0, [OK
2395 ])
2396 ADD_OF_PORTS([br0], [7])
2397 AT_CHECK([ovs-ofctl add-flow br0 action=normal])
2398 AT_CHECK([ovs-ofctl add-flow br1 action=normal])
2399 ovs-appctl time/warp 5000
2400 AT_CHECK([ovs-appctl netdev-dummy/receive p7 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2401 AT_CHECK([ovs-appctl netdev-dummy/receive p7 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2402
2403 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2404 skb_priority=0,icmp,in_port=7,vlan_tci=0x0000/0x1fff,dl_src=50:54:00:00:00:09,dl_dst=50:54:00:00:00:0a,nw_src=10.0.0.2,nw_dst=10.0.0.1,nw_frag=no,icmp_type=8,icmp_code=0, n_subfacets:1, used:0.0s, Datapath actions: <del>
2405 skb_priority=0,icmp,in_port=7,vlan_tci=0x0000/0x1fff,dl_src=50:54:00:00:00:0b,dl_dst=50:54:00:00:00:0c,nw_src=10.0.0.4,nw_dst=10.0.0.3,nw_frag=no,icmp_type=8,icmp_code=0, n_subfacets:1, used:0.0s, Datapath actions: <del>
2406 ])
2407 OVS_VSWITCHD_STOP
2408 AT_CLEANUP
2409
2410 AT_SETUP([ofproto-dpif megaflow - resubmit port action])
2411 OVS_VSWITCHD_START
2412 ADD_OF_PORTS([br0], [1], [2])
2413 AT_DATA([flows.txt], [dnl
2414 table=0 in_port=1,ip actions=resubmit(90)
2415 table=0 in_port=90,dl_src=50:54:00:00:00:09 actions=output(2)
2416 ])
2417 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2418 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2419 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2420 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2421 skb_priority=0,ip,in_port=1,dl_src=50:54:00:00:00:09,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2422 skb_priority=0,ip,in_port=1,dl_src=50:54:00:00:00:0b,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2423 ])
2424 OVS_VSWITCHD_STOP
2425 AT_CLEANUP
2426
2427 AT_SETUP([ofproto-dpif megaflow - resubmit table action])
2428 OVS_VSWITCHD_START
2429 ADD_OF_PORTS([br0], [1], [2])
2430 AT_DATA([flows.txt], [dnl
2431 table=0 in_port=1,ip actions=resubmit(,1)
2432 table=1 dl_src=50:54:00:00:00:09 actions=output(2)
2433 ])
2434 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2435 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2436 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=
2437 1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2438 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2439 skb_priority=0,ip,in_port=1,dl_src=50:54:00:00:00:09,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2440 skb_priority=0,ip,in_port=1,dl_src=50:54:00:00:00:0b,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2441 ])
2442 OVS_VSWITCHD_STOP
2443 AT_CLEANUP
2444
2445 AT_SETUP([ofproto-dpif megaflow - goto_table action])
2446 OVS_VSWITCHD_START
2447 ADD_OF_PORTS([br0], [1], [2])
2448 AT_DATA([flows.txt], [dnl
2449 table=0 in_port=1,ip actions=goto_table(1)
2450 table=1 dl_src=50:54:00:00:00:09 actions=output(2)
2451 ])
2452 AT_CHECK([ovs-ofctl -O OpenFlow12 add-flows br0 flows.txt])
2453 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2454 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2455 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2456 skb_priority=0,ip,in_port=1,dl_src=50:54:00:00:00:09,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2457 skb_priority=0,ip,in_port=1,dl_src=50:54:00:00:00:0b,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2458 ])
2459 OVS_VSWITCHD_STOP
2460 AT_CLEANUP
2461
2462 AT_SETUP([ofproto-dpif megaflow - mirroring, select_all])
2463 OVS_VSWITCHD_START
2464 ADD_OF_PORTS([br0], [1], [2], [3])
2465 ovs-vsctl \
2466         set Bridge br0 mirrors=@m --\
2467         --id=@p3 get Port p3 --\
2468         --id=@m create Mirror name=mymirror select_all=true output_port=@p3
2469
2470 AT_DATA([flows.txt], [dnl
2471 in_port=1 actions=output:2
2472 ])
2473 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2474 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2475 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2476 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2477 skb_priority=0,ip,in_port=1,nw_frag=no, n_subfacets:2, used:0.0s, Datapath actions: <del>
2478 ])
2479 OVS_VSWITCHD_STOP
2480 AT_CLEANUP
2481
2482 AT_SETUP([ofproto-dpif megaflow - mirroring, select_vlan])
2483 OVS_VSWITCHD_START
2484 ADD_OF_PORTS([br0], [1], [2], [3])
2485 ovs-vsctl \
2486         set Bridge br0 mirrors=@m --\
2487         --id=@p2 get Port p2 -- --id=@p3 get Port p3 --\
2488         --id=@m create Mirror name=mymirror select_all=true select_vlan=11 output_port=@p3
2489
2490 AT_DATA([flows.txt], [dnl
2491 in_port=1 actions=output:2
2492 ])
2493 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2494 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x8100),vlan(vid=11,pcp=7),encap(eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0))'])
2495 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2496 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2497 skb_priority=0,ip,in_port=1,dl_vlan=11,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2498 skb_priority=0,ip,in_port=1,vlan_tci=0x0000/0x1fff,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2499 ])
2500 OVS_VSWITCHD_STOP
2501 AT_CLEANUP
2502
2503 AT_SETUP([ofproto-dpif megaflow - move action])
2504 OVS_VSWITCHD_START
2505 ADD_OF_PORTS([br0], [1], [2])
2506 AT_DATA([flows.txt], [dnl
2507 table=0 in_port=1 ip,actions=move:NXM_OF_IP_SRC[[]]->NXM_NX_REG0[[]],resubmit(90)
2508 table=0 in_port=90 ip,actions=move:NXM_NX_REG0[[]]->NXM_NX_REG1[[]],resubmit(91)
2509 table=0 in_port=91 reg0=0x0a000002,actions=output(2)
2510 ])
2511 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2512 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2513 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2514 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2515 skb_priority=0,ip,in_port=1,nw_src=10.0.0.2,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2516 skb_priority=0,ip,in_port=1,nw_src=10.0.0.4,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2517 ])
2518 OVS_VSWITCHD_STOP
2519 AT_CLEANUP
2520
2521 AT_SETUP([ofproto-dpif megaflow - push action])
2522 OVS_VSWITCHD_START
2523 ADD_OF_PORTS([br0], [1], [2])
2524 AT_DATA([flows.txt], [dnl
2525 table=0 in_port=1 ip,actions=push:NXM_OF_IP_SRC[[]],output(2)
2526 ])
2527 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2528 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2529 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2530 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2531 skb_priority=0,ip,in_port=1,nw_src=10.0.0.2,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2532 skb_priority=0,ip,in_port=1,nw_src=10.0.0.4,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2533 ])
2534 OVS_VSWITCHD_STOP
2535 AT_CLEANUP
2536
2537 AT_SETUP([ofproto-dpif megaflow - learning])
2538 OVS_VSWITCHD_START
2539 ADD_OF_PORTS([br0], [1], [2])
2540 AT_DATA([flows.txt], [dnl
2541 table=0 in_port=1 actions=load:2->NXM_NX_REG0[[0..15]],learn(table=1,priority=65535,NXM_OF_ETH_SRC[[]],NXM_OF_VLAN_TCI[[0..11]],output:NXM_NX_REG0[[0..15]]),output:2
2542 ])
2543 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2544 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2545 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2546 dnl The original flow is missing due to a revalidation.
2547 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2548 skb_priority=0,ip,in_port=1,vlan_tci=0x0000/0x0fff,dl_src=50:54:00:00:00:09,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2549 skb_priority=0,ip,in_port=1,vlan_tci=0x0000/0x0fff,dl_src=50:54:00:00:00:0b,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2550 ])
2551 OVS_VSWITCHD_STOP
2552 AT_CLEANUP
2553
2554 AT_SETUP([ofproto-dpif megaflow - tunnels])
2555 OVS_VSWITCHD_START(
2556   [add-port br0 p1 -- set Interface p1 type=dummy ofport_request=1 \
2557      ofport_request=1 -- \
2558    add-port br0 p2 -- set Interface p2 type=gre options:remote_ip=1.1.1.1 \
2559      ofport_request=2 options:key=flow -- \
2560    add-port br0 p3 -- set Interface p3 type=dummy ofport_request=3 \
2561      ofport_request=3 -- \
2562    add-port br0 p4 -- set Interface p4 type=gre options:remote_ip=1.1.1.2 \
2563      options:tos=inherit options:ttl=inherit ofport_request=4 options:key=flow])
2564 AT_DATA([flows.txt], [dnl
2565 in_port=1,actions=output(2)
2566 in_port=3,actions=output(4)
2567 ])
2568 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2569 dnl ECN bits are always copied out, but don't use 0x3 (CE), since that
2570 dnl will cause the packet to be dropped.
2571 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0xfd,ttl=128,frag=no),icmp(type=8,code=0)'])
2572 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0x1,ttl=64,frag=no),icmp(type=8,code=0)'])
2573 AT_CHECK([ovs-appctl netdev-dummy/receive p3 'in_port(3),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0xfd,ttl=128,frag=no),icmp(type=8,code=0)'])
2574 AT_CHECK([ovs-appctl netdev-dummy/receive p3 'in_port(3),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0x1,ttl=64,frag=no),icmp(type=8,code=0)'])
2575 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2576 skb_priority=0,ip,in_port=1,nw_ecn=1,nw_frag=no, n_subfacets:2, used:0.0s, Datapath actions: <del>
2577 skb_priority=0,ip,in_port=3,nw_tos=0,nw_ecn=1,nw_ttl=64,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2578 skb_priority=0,ip,in_port=3,nw_tos=252,nw_ecn=1,nw_ttl=128,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2579 ])
2580 OVS_VSWITCHD_STOP
2581 AT_CLEANUP
2582
2583 AT_SETUP([ofproto-dpif megaflow - dec_ttl])
2584 OVS_VSWITCHD_START
2585 ADD_OF_PORTS([br0], [1], [2])
2586 AT_DATA([flows.txt], [dnl
2587 table=0 in_port=1,icmp,nw_src=10.0.0.4 actions=dec_ttl,output(2)
2588 ])
2589 AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
2590 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:09,dst=50:54:00:00:00:0a),eth_type(0x0800),ipv4(src=10.0.0.2,dst=10.0.0.1,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2591 AT_CHECK([ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:0b,dst=50:54:00:00:00:0c),eth_type(0x0800),ipv4(src=10.0.0.4,dst=10.0.0.3,proto=1,tos=0,ttl=64,frag=no),icmp(type=8,code=0)'])
2592 AT_CHECK([ovs-appctl dpif/dump-megaflows br0 | STRIP_XOUT], [0], [dnl
2593 skb_priority=0,icmp,in_port=1,nw_src=10.0.0.2,nw_frag=no, n_subfacets:1, used:0.0s, Datapath actions: <del>
2594 skb_priority=0,icmp,in_port=1,nw_src=10.0.0.4,nw_dst=10.0.0.3,nw_tos=0,nw_ecn=0,nw_ttl=64, n_subfacets:1, used:0.0s, Datapath actions: <del>
2595 ])
2596 OVS_VSWITCHD_STOP
2597 AT_CLEANUP