ovn test: improve vtep test description and fix typo
[cascardo/ovs.git] / tests / ovn.at
1 AT_BANNER([OVN components])
2
3 AT_SETUP([ovn -- lexer])
4 dnl For lines without =>, input and expected output are identical.
5 dnl For lines with =>, input precedes => and expected output follows =>.
6 AT_DATA([test-cases.txt], [dnl
7 foo bar baz quuxquuxquux _abcd_ a.b.c.d a123_.456
8 "abc\u0020def" => "abc def"
9 " => error("Input ends inside quoted string.")dnl "
10
11 a/*b*/c => a c
12 a//b c => a
13 a/**/b => a b
14 a/*/b => a error("`/*' without matching `*/'.")
15 a/*/**/b => a b
16 a/b => a error("`/' is only valid as part of `//' or `/*'.") b
17
18 0 1 12345 18446744073709551615
19 18446744073709551616 => error("Decimal constants must be less than 2**64.")
20 9999999999999999999999 => error("Decimal constants must be less than 2**64.")
21 01 => error("Decimal constants must not have leading zeros.")
22
23 0/0
24 0/1
25 1/0 => error("Value contains unmasked 1-bits.")
26 1/1
27 128/384
28 1/3
29 1/ => error("Integer constant expected.")
30
31 1/0x123 => error("Value and mask have incompatible formats.")
32
33 0x1234
34 0x01234 => 0x1234
35 0x0 => 0
36 0x000 => 0
37 0xfedcba9876543210
38 0XFEDCBA9876543210 => 0xfedcba9876543210
39 0xfedcba9876543210fedcba9876543210
40 0x0000fedcba9876543210fedcba9876543210 => 0xfedcba9876543210fedcba9876543210
41 0x => error("Hex digits expected following 0x.")
42 0X => error("Hex digits expected following 0X.")
43 0x0/0x0 => 0/0
44 0x0/0x1 => 0/0x1
45 0x1/0x0 => error("Value contains unmasked 1-bits.")
46 0xffff/0x1ffff
47 0x. => error("Invalid syntax in hexadecimal constant.")
48
49 192.168.128.1 1.2.3.4 255.255.255.255 0.0.0.0
50 256.1.2.3 => error("Invalid numeric constant.")
51 192.168.0.0/16
52 192.168.0.0/255.255.0.0 => 192.168.0.0/16
53 192.168.0.0/255.255.255.0 => 192.168.0.0/24
54 192.168.0.0/255.255.0.255
55 192.168.0.0/255.0.0.0 => error("Value contains unmasked 1-bits.")
56 192.168.0.0/32
57 192.168.0.0/255.255.255.255 => 192.168.0.0/32
58
59 ::
60 ::1
61 ff00::1234 => ff00::1234
62 2001:db8:85a3::8a2e:370:7334
63 2001:db8:85a3:0:0:8a2e:370:7334 => 2001:db8:85a3::8a2e:370:7334
64 2001:0db8:85a3:0000:0000:8a2e:0370:7334 => 2001:db8:85a3::8a2e:370:7334
65 ::ffff:192.0.2.128
66 ::ffff:c000:0280 => ::ffff:192.0.2.128
67 ::1/::1
68 ::1/ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff => ::1/128
69 ::1/128
70 ff00::/8
71 ff00::/ff00:: => ff00::/8
72
73 01:23:45:67:ab:cd
74 01:23:45:67:AB:CD => 01:23:45:67:ab:cd
75 fe:dc:ba:98:76:54
76 FE:DC:ba:98:76:54 => fe:dc:ba:98:76:54
77 01:00:00:00:00:00/01:00:00:00:00:00
78 ff:ff:ff:ff:ff:ff/ff:ff:ff:ff:ff:ff
79 fe:ff:ff:ff:ff:ff/ff:ff:ff:ff:ff:ff
80 ff:ff:ff:ff:ff:ff/fe:ff:ff:ff:ff:ff => error("Value contains unmasked 1-bits.")
81 fe:x => error("Invalid numeric constant.")
82 00:01:02:03:04:x => error("Invalid numeric constant.")
83
84 # Test that operators are tokenized as expected, even without white space.
85 (){}[[]]==!=<<=>>=!&&||..,;=<->-- => ( ) { } [[ ]] == != < <= > >= ! && || .. , ; = <-> --
86 & => error("`&' is only valid as part of `&&'.")
87 | => error("`|' is only valid as part of `||'.")
88 - => error("`-' is only valid as part of `--'.")
89
90 ^ => error("Invalid character `^' in input.")
91 ])
92 AT_CAPTURE_FILE([input.txt])
93 sed 's/ =>.*//' test-cases.txt > input.txt
94 sed 's/.* => //' test-cases.txt > expout
95 AT_CHECK([ovstest test-ovn lex < input.txt], [0], [expout])
96 AT_CLEANUP
97
98 AT_SETUP([ovn -- expression parser])
99 dnl For lines without =>, input and expected output are identical.
100 dnl For lines with =>, input precedes => and expected output follows =>.
101 AT_DATA([test-cases.txt], [[
102 eth.type == 0x800
103 eth.type==0x800 => eth.type == 0x800
104 eth.type[0..15] == 0x800 => eth.type == 0x800
105
106 vlan.present
107 vlan.present == 1 => vlan.present
108 !(vlan.present == 0) => vlan.present
109 !(vlan.present != 1) => vlan.present
110 !vlan.present
111 vlan.present == 0 => !vlan.present
112 vlan.present != 1 => !vlan.present
113 !(vlan.present == 1) => !vlan.present
114 !(vlan.present != 0) => !vlan.present
115
116 eth.dst[0]
117 eth.dst[0] == 1 => eth.dst[0]
118 eth.dst[0] != 0 => eth.dst[0]
119 !(eth.dst[0] == 0) => eth.dst[0]
120 !(eth.dst[0] != 1) => eth.dst[0]
121
122 !eth.dst[0]
123 eth.dst[0] == 0 => !eth.dst[0]
124 eth.dst[0] != 1 => !eth.dst[0]
125 !(eth.dst[0] == 1) => !eth.dst[0]
126 !(eth.dst[0] != 0) => !eth.dst[0]
127
128 vlan.tci[12..15] == 0x3
129 vlan.tci == 0x3000/0xf000 => vlan.tci[12..15] == 0x3
130 vlan.tci[12..15] != 0x3
131 vlan.tci != 0x3000/0xf000 => vlan.tci[12..15] != 0x3
132
133 !vlan.pcp => vlan.pcp == 0
134 !(vlan.pcp) => vlan.pcp == 0
135 vlan.pcp == 0x4
136 vlan.pcp != 0x4
137 vlan.pcp > 0x4
138 vlan.pcp >= 0x4
139 vlan.pcp < 0x4
140 vlan.pcp <= 0x4
141 !(vlan.pcp != 0x4) => vlan.pcp == 0x4
142 !(vlan.pcp == 0x4) => vlan.pcp != 0x4
143 !(vlan.pcp <= 0x4) => vlan.pcp > 0x4
144 !(vlan.pcp < 0x4) => vlan.pcp >= 0x4
145 !(vlan.pcp >= 0x4) => vlan.pcp < 0x4
146 !(vlan.pcp > 0x4) => vlan.pcp <= 0x4
147 0x4 == vlan.pcp => vlan.pcp == 0x4
148 0x4 != vlan.pcp => vlan.pcp != 0x4
149 0x4 < vlan.pcp => vlan.pcp > 0x4
150 0x4 <= vlan.pcp => vlan.pcp >= 0x4
151 0x4 > vlan.pcp => vlan.pcp < 0x4
152 0x4 >= vlan.pcp => vlan.pcp <= 0x4
153 !(0x4 != vlan.pcp) => vlan.pcp == 0x4
154 !(0x4 == vlan.pcp) => vlan.pcp != 0x4
155 !(0x4 >= vlan.pcp) => vlan.pcp > 0x4
156 !(0x4 > vlan.pcp) => vlan.pcp >= 0x4
157 !(0x4 <= vlan.pcp) => vlan.pcp < 0x4
158 !(0x4 < vlan.pcp) => vlan.pcp <= 0x4
159
160 1 < vlan.pcp < 4 => vlan.pcp > 0x1 && vlan.pcp < 0x4
161 1 <= vlan.pcp <= 4 => vlan.pcp >= 0x1 && vlan.pcp <= 0x4
162 1 < vlan.pcp <= 4 => vlan.pcp > 0x1 && vlan.pcp <= 0x4
163 1 <= vlan.pcp < 4 => vlan.pcp >= 0x1 && vlan.pcp < 0x4
164 1 <= vlan.pcp <= 4 => vlan.pcp >= 0x1 && vlan.pcp <= 0x4
165 4 > vlan.pcp > 1 => vlan.pcp < 0x4 && vlan.pcp > 0x1
166 4 >= vlan.pcp > 1 => vlan.pcp <= 0x4 && vlan.pcp > 0x1
167 4 > vlan.pcp >= 1 => vlan.pcp < 0x4 && vlan.pcp >= 0x1
168 4 >= vlan.pcp >= 1 => vlan.pcp <= 0x4 && vlan.pcp >= 0x1
169 !(1 < vlan.pcp < 4) => vlan.pcp <= 0x1 || vlan.pcp >= 0x4
170 !(1 <= vlan.pcp <= 4) => vlan.pcp < 0x1 || vlan.pcp > 0x4
171 !(1 < vlan.pcp <= 4) => vlan.pcp <= 0x1 || vlan.pcp > 0x4
172 !(1 <= vlan.pcp < 4) => vlan.pcp < 0x1 || vlan.pcp >= 0x4
173 !(1 <= vlan.pcp <= 4) => vlan.pcp < 0x1 || vlan.pcp > 0x4
174 !(4 > vlan.pcp > 1) => vlan.pcp >= 0x4 || vlan.pcp <= 0x1
175 !(4 >= vlan.pcp > 1) => vlan.pcp > 0x4 || vlan.pcp <= 0x1
176 !(4 > vlan.pcp >= 1) => vlan.pcp >= 0x4 || vlan.pcp < 0x1
177 !(4 >= vlan.pcp >= 1) => vlan.pcp > 0x4 || vlan.pcp < 0x1
178
179 vlan.pcp == {1, 2, 3, 4} => vlan.pcp == 0x1 || vlan.pcp == 0x2 || vlan.pcp == 0x3 || vlan.pcp == 0x4
180 vlan.pcp == 1 || ((vlan.pcp == 2 || vlan.pcp == 3) || vlan.pcp == 4) => vlan.pcp == 0x1 || vlan.pcp == 0x2 || vlan.pcp == 0x3 || vlan.pcp == 0x4
181
182 vlan.pcp != {1, 2, 3, 4} => vlan.pcp != 0x1 && vlan.pcp != 0x2 && vlan.pcp != 0x3 && vlan.pcp != 0x4
183 vlan.pcp == 1 && ((vlan.pcp == 2 && vlan.pcp == 3) && vlan.pcp == 4) => vlan.pcp == 0x1 && vlan.pcp == 0x2 && vlan.pcp == 0x3 && vlan.pcp == 0x4
184
185 vlan.pcp == 1 && !((vlan.pcp == 2 && vlan.pcp == 3) && vlan.pcp == 4) => vlan.pcp == 0x1 && (vlan.pcp != 0x2 || vlan.pcp != 0x3 || vlan.pcp != 0x4)
186 vlan.pcp == 1 && (!(vlan.pcp == 2 && vlan.pcp == 3) && vlan.pcp == 4) => vlan.pcp == 0x1 && (vlan.pcp != 0x2 || vlan.pcp != 0x3) && vlan.pcp == 0x4
187 vlan.pcp == 1 && !(!(vlan.pcp == 2 && vlan.pcp == 3) && vlan.pcp == 4) => vlan.pcp == 0x1 && ((vlan.pcp == 0x2 && vlan.pcp == 0x3) || vlan.pcp != 0x4)
188
189 ip4.src == {10.0.0.0/8, 192.168.0.0/16, 172.16.20.0/24, 8.8.8.8} => ip4.src[24..31] == 0xa || ip4.src[16..31] == 0xc0a8 || ip4.src[8..31] == 0xac1014 || ip4.src == 0x8080808
190 ip6.src == ::1 => ip6.src == 0x1
191
192 ip4.src == 1.2.3.4 => ip4.src == 0x1020304
193 ip4.src == ::1.2.3.4/::ffff:ffff => ip4.src == 0x1020304
194 ip6.src == ::1 => ip6.src == 0x1
195
196 1
197 0
198 !1 => 0
199 !0 => 1
200
201 inport == "eth0"
202 !(inport != "eth0") => inport == "eth0"
203
204 ip4.src == "eth0" => Integer field ip4.src is not compatible with string constant.
205 inport == 1 => String field inport is not compatible with integer constant.
206
207 ip4.src > {1, 2, 3} => Only == and != operators may be used with value sets.
208 eth.type > 0x800 => Only == and != operators may be used with nominal field eth.type.
209 vlan.present > 0 => Only == and != operators may be used with Boolean field vlan.present.
210
211 inport != "eth0" => Nominal field inport may only be tested for equality (taking enclosing `!' operators into account).
212 !(inport == "eth0") => Nominal field inport may only be tested for equality (taking enclosing `!' operators into account).
213 eth.type != 0x800 => Nominal field eth.type may only be tested for equality (taking enclosing `!' operators into account).
214 !(eth.type == 0x800) => Nominal field eth.type may only be tested for equality (taking enclosing `!' operators into account).
215
216 123 == 123 => Syntax error at `123' expecting field name.
217
218 123 == xyzzy => Syntax error at `xyzzy' expecting field name.
219 xyzzy == 1 => Syntax error at `xyzzy' expecting field name.
220
221 inport[1] == 1 => Cannot select subfield of string field inport.
222
223 eth.type[] == 1 => Syntax error at `@:>@' expecting small integer.
224 eth.type[::1] == 1 => Syntax error at `::1' expecting small integer.
225 eth.type[18446744073709551615] == 1 => Syntax error at `18446744073709551615' expecting small integer.
226
227 eth.type[5!] => Syntax error at `!' expecting `@:>@'.
228
229 eth.type[5..1] => Invalid bit range 5 to 1.
230
231 eth.type[12..16] => Cannot select bits 12 to 16 of 16-bit field eth.type.
232
233 eth.type[10] == 1 => Cannot select subfield of nominal field eth.type.
234
235 eth.type => Explicit `!= 0' is required for inequality test of multibit field against 0.
236
237 !(!(vlan.pcp)) => Explicit `!= 0' is required for inequality test of multibit field against 0.
238
239 123 => Syntax error at end of input expecting relational operator.
240
241 123 x => Syntax error at `x' expecting relational operator.
242
243 {1, "eth0"} => Syntax error at `"eth0"' expecting integer.
244
245 eth.type == xyzzy => Syntax error at `xyzzy' expecting constant.
246
247 (1 x) => Syntax error at `x' expecting `)'.
248
249 !0x800 != eth.type => Missing parentheses around operand of !.
250
251 eth.type == 0x800 || eth.type == 0x86dd && ip.proto == 17 => && and || must be parenthesized when used together.
252
253 eth.dst == {} => Syntax error at `}' expecting constant.
254
255 eth.src > 00:00:00:00:11:11/00:00:00:00:ff:ff => Only == and != operators may be used with masked constants.  Consider using subfields instead (e.g. eth.src[0..15] > 0x1111 in place of eth.src > 00:00:00:00:11:11/00:00:00:00:ff:ff).
256
257 ip4.src == ::1 => 128-bit constant is not compatible with 32-bit field ip4.src.
258
259 1 == eth.type == 2 => Range expressions must have the form `x < field < y' or `x > field > y', with each `<' optionally replaced by `<=' or `>' by `>=').
260
261 eth.dst[40] x => Extra tokens at end of input.
262 ]])
263 sed 's/ =>.*//' test-cases.txt > input.txt
264 sed 's/.* => //' test-cases.txt > expout
265 AT_CHECK([ovstest test-ovn parse-expr < input.txt], [0], [expout])
266 AT_CLEANUP
267
268 AT_SETUP([ovn -- expression annotation])
269 dnl Input precedes =>, expected output follows =>.
270 AT_DATA([test-cases.txt], [[
271 ip4.src == 1.2.3.4 => ip4.src == 0x1020304 && eth.type == 0x800
272 ip4.src != 1.2.3.4 => ip4.src != 0x1020304 && eth.type == 0x800
273 ip.proto == 123 => ip.proto == 0x7b && (eth.type == 0x800 || eth.type == 0x86dd)
274 ip.proto == {123, 234} => (ip.proto == 0x7b && (eth.type == 0x800 || eth.type == 0x86dd)) || (ip.proto == 0xea && (eth.type == 0x800 || eth.type == 0x86dd))
275 ip4.src == 1.2.3.4 && ip4.dst == 5.6.7.8 => ip4.src == 0x1020304 && eth.type == 0x800 && ip4.dst == 0x5060708 && eth.type == 0x800
276
277 ip => eth.type == 0x800 || eth.type == 0x86dd
278 ip == 1 => eth.type == 0x800 || eth.type == 0x86dd
279 ip[0] == 1 => eth.type == 0x800 || eth.type == 0x86dd
280 ip > 0 => Only == and != operators may be used with nominal field ip.
281 !ip => Nominal predicate ip may only be tested positively, e.g. `ip' or `ip == 1' but not `!ip' or `ip == 0'.
282 ip == 0 => Nominal predicate ip may only be tested positively, e.g. `ip' or `ip == 1' but not `!ip' or `ip == 0'.
283
284 vlan.present => vlan.tci[12]
285 !vlan.present => !vlan.tci[12]
286
287 !vlan.pcp => vlan.tci[13..15] == 0 && vlan.tci[12]
288 vlan.pcp == 1 && vlan.vid == 2 => vlan.tci[13..15] == 0x1 && vlan.tci[12] && vlan.tci[0..11] == 0x2 && vlan.tci[12]
289 !reg0 && !reg1 && !reg2 && !reg3 => xreg0[32..63] == 0 && xreg0[0..31] == 0 && xreg1[32..63] == 0 && xreg1[0..31] == 0
290
291 ip.first_frag => ip.frag[0] && (eth.type == 0x800 || eth.type == 0x86dd) && (!ip.frag[1] || (eth.type != 0x800 && eth.type != 0x86dd))
292 !ip.first_frag => !ip.frag[0] || (eth.type != 0x800 && eth.type != 0x86dd) || (ip.frag[1] && (eth.type == 0x800 || eth.type == 0x86dd))
293 ip.later_frag => ip.frag[1] && (eth.type == 0x800 || eth.type == 0x86dd)
294
295 bad_prereq != 0 => Error parsing expression `xyzzy' encountered as prerequisite or predicate of initial expression: Syntax error at `xyzzy' expecting field name.
296 self_recurse != 0 => Error parsing expression `self_recurse != 0' encountered as prerequisite or predicate of initial expression: Recursive expansion of symbol `self_recurse'.
297 mutual_recurse_1 != 0 => Error parsing expression `mutual_recurse_2 != 0' encountered as prerequisite or predicate of initial expression: Error parsing expression `mutual_recurse_1 != 0' encountered as prerequisite or predicate of initial expression: Recursive expansion of symbol `mutual_recurse_1'.
298 mutual_recurse_2 != 0 => Error parsing expression `mutual_recurse_1 != 0' encountered as prerequisite or predicate of initial expression: Error parsing expression `mutual_recurse_2 != 0' encountered as prerequisite or predicate of initial expression: Recursive expansion of symbol `mutual_recurse_2'.
299 ]])
300 sed 's/ =>.*//' test-cases.txt > input.txt
301 sed 's/.* => //' test-cases.txt > expout
302 AT_CHECK([ovstest test-ovn annotate-expr < input.txt], [0], [expout])
303 AT_CLEANUP
304
305 AT_SETUP([ovn -- 1-term expression conversion])
306 AT_CHECK([ovstest test-ovn exhaustive --operation=convert 1], [0],
307   [Tested converting all 1-terminal expressions with 2 numeric vars (each 3 bits) in terms of operators == != < <= > >= and 2 string vars.
308 ])
309 AT_CLEANUP
310
311 AT_SETUP([ovn -- 2-term expression conversion])
312 AT_CHECK([ovstest test-ovn exhaustive --operation=convert 2], [0],
313   [Tested converting 570 expressions of 2 terminals with 2 numeric vars (each 3 bits) in terms of operators == != < <= > >= and 2 string vars.
314 ])
315 AT_CLEANUP
316
317 AT_SETUP([ovn -- 3-term expression conversion])
318 AT_CHECK([ovstest test-ovn exhaustive --operation=convert --bits=2 3], [0],
319   [Tested converting 62418 expressions of 3 terminals with 2 numeric vars (each 2 bits) in terms of operators == != < <= > >= and 2 string vars.
320 ])
321 AT_CLEANUP
322
323 AT_SETUP([ovn -- 3-term numeric expression simplification])
324 AT_CHECK([ovstest test-ovn exhaustive --operation=simplify --nvars=2 --svars=0 3], [0],
325   [Tested simplifying 477138 expressions of 3 terminals with 2 numeric vars (each 3 bits) in terms of operators == != < <= > >=.
326 ])
327 AT_CLEANUP
328
329 AT_SETUP([ovn -- 4-term string expression simplification])
330 AT_CHECK([ovstest test-ovn exhaustive --operation=simplify --nvars=0 --svars=4 4], [0],
331   [Tested simplifying 21978 expressions of 4 terminals with 4 string vars.
332 ])
333 AT_CLEANUP
334
335 AT_SETUP([ovn -- 3-term mixed expression simplification])
336 AT_CHECK([ovstest test-ovn exhaustive --operation=simplify --nvars=1 --svars=1 3], [0],
337   [Tested simplifying 124410 expressions of 3 terminals with 1 numeric vars (each 3 bits) in terms of operators == != < <= > >= and 1 string vars.
338 ])
339 AT_CLEANUP
340
341 AT_SETUP([ovn -- 4-term numeric expression normalization])
342 AT_CHECK([ovstest test-ovn exhaustive --operation=normalize --nvars=3 --svars=0 --bits=1 4], [0],
343   [Tested normalizing 1207162 expressions of 4 terminals with 3 numeric vars (each 1 bits) in terms of operators == != < <= > >=.
344 ])
345 AT_CLEANUP
346
347 AT_SETUP([ovn -- 4-term string expression normalization])
348 AT_CHECK([ovstest test-ovn exhaustive --operation=normalize --nvars=0 --svars=3 --bits=1 4], [0],
349   [Tested normalizing 11242 expressions of 4 terminals with 3 string vars.
350 ])
351 AT_CLEANUP
352
353 AT_SETUP([ovn -- 4-term mixed expression normalization])
354 AT_CHECK([ovstest test-ovn exhaustive --operation=normalize --nvars=1 --bits=1 --svars=2 4], [0],
355   [Tested normalizing 128282 expressions of 4 terminals with 1 numeric vars (each 1 bits) in terms of operators == != < <= > >= and 2 string vars.
356 ])
357 AT_CLEANUP
358
359 AT_SETUP([ovn -- 5-term numeric expression normalization])
360 AT_CHECK([ovstest test-ovn exhaustive --operation=normalize --nvars=3 --svars=0 --bits=1 --relops='==' 5], [0],
361   [Tested normalizing 368550 expressions of 5 terminals with 3 numeric vars (each 1 bits) in terms of operators ==.
362 ])
363 AT_CLEANUP
364
365 AT_SETUP([ovn -- 5-term string expression normalization])
366 AT_CHECK([ovstest test-ovn exhaustive --operation=normalize --nvars=0 --svars=3 --bits=1 --relops='==' 5], [0],
367   [Tested normalizing 368550 expressions of 5 terminals with 3 string vars.
368 ])
369 AT_CLEANUP
370
371 AT_SETUP([ovn -- 5-term mixed expression normalization])
372 AT_CHECK([ovstest test-ovn exhaustive --operation=normalize --nvars=1 --svars=1 --bits=1 --relops='==' 5], [0],
373   [Tested normalizing 116550 expressions of 5 terminals with 1 numeric vars (each 1 bits) in terms of operators == and 1 string vars.
374 ])
375 AT_CLEANUP
376
377 AT_SETUP([ovn -- 4-term numeric expressions to flows])
378 AT_CHECK([ovstest test-ovn exhaustive --operation=flow --nvars=2 --svars=0 --bits=2 --relops='==' 4], [0],
379   [Tested converting to flows 128282 expressions of 4 terminals with 2 numeric vars (each 2 bits) in terms of operators ==.
380 ])
381 AT_CLEANUP
382
383 AT_SETUP([ovn -- 4-term string expressions to flows])
384 AT_CHECK([ovstest test-ovn exhaustive --operation=flow --nvars=0 --svars=4 4], [0],
385   [Tested converting to flows 21978 expressions of 4 terminals with 4 string vars.
386 ])
387 AT_CLEANUP
388
389 AT_SETUP([ovn -- 4-term mixed expressions to flows])
390 AT_CHECK([ovstest test-ovn exhaustive --operation=flow --nvars=1 --bits=2 --svars=1 --relops='==' 4], [0],
391   [Tested converting to flows 37994 expressions of 4 terminals with 1 numeric vars (each 2 bits) in terms of operators == and 1 string vars.
392 ])
393 AT_CLEANUP
394
395 AT_SETUP([ovn -- 3-term numeric expressions to flows])
396 AT_CHECK([ovstest test-ovn exhaustive --operation=flow --nvars=3 --svars=0 --bits=3 --relops='==' 3], [0],
397   [Tested converting to flows 38394 expressions of 3 terminals with 3 numeric vars (each 3 bits) in terms of operators ==.
398 ])
399 AT_CLEANUP
400
401 AT_SETUP([ovn -- converting expressions to flows -- string fields])
402 expr_to_flow () {
403     echo "$1" | ovstest test-ovn expr-to-flows | sort
404 }
405 AT_CHECK([expr_to_flow 'inport == "eth0"'], [0], [reg6=0x5
406 ])
407 AT_CHECK([expr_to_flow 'inport == "eth1"'], [0], [reg6=0x6
408 ])
409 AT_CHECK([expr_to_flow 'inport == "eth2"'], [0], [(no flows)
410 ])
411 AT_CHECK([expr_to_flow 'inport == "eth0" && ip'], [0], [dnl
412 ip,reg6=0x5
413 ipv6,reg6=0x5
414 ])
415 AT_CHECK([expr_to_flow 'inport == "eth1" && ip'], [0], [dnl
416 ip,reg6=0x6
417 ipv6,reg6=0x6
418 ])
419 AT_CHECK([expr_to_flow 'inport == "eth2" && ip'], [0], [(no flows)
420 ])
421 AT_CHECK([expr_to_flow 'inport == {"eth0", "eth1", "eth2", "LOCAL"}'], [0],
422 [reg6=0x5
423 reg6=0x6
424 reg6=0xfffe
425 ])
426 AT_CHECK([expr_to_flow 'inport == {"eth0", "eth1", "eth2"} && ip'], [0], [dnl
427 ip,reg6=0x5
428 ip,reg6=0x6
429 ipv6,reg6=0x5
430 ipv6,reg6=0x6
431 ])
432 AT_CHECK([expr_to_flow 'inport == "eth0" && inport == "eth1"'], [0], [dnl
433 (no flows)
434 ])
435 AT_CLEANUP
436
437 AT_SETUP([ovn -- action parsing])
438 dnl Text before => is input, text after => is expected output.
439 AT_DATA([test-cases.txt], [[
440 # drop
441 drop; => actions=drop, prereqs=1
442 drop; next; => Syntax error at `next' expecting end of input.
443 next; drop; => Syntax error at `drop' expecting action.
444
445 # output
446 output; => actions=resubmit(,64), prereqs=1
447
448 # next
449 next; => actions=resubmit(,27), prereqs=1
450 next(0); => actions=resubmit(,16), prereqs=1
451 next(15); => actions=resubmit(,31), prereqs=1
452
453 next(); => Syntax error at `)' expecting small integer.
454 next(10; => Syntax error at `;' expecting `)'.
455 next(16); => "next" argument must be in range 0 to 15.
456
457 # Loading a constant value.
458 tcp.dst=80; => actions=set_field:80->tcp_dst, prereqs=ip.proto == 0x6 && (eth.type == 0x800 || eth.type == 0x86dd)
459 eth.dst[40] = 1; => actions=set_field:01:00:00:00:00:00/01:00:00:00:00:00->eth_dst, prereqs=1
460 vlan.pcp = 2; => actions=set_field:0x4000/0xe000->vlan_tci, prereqs=vlan.tci[12]
461 vlan.tci[13..15] = 2; => actions=set_field:0x4000/0xe000->vlan_tci, prereqs=1
462 inport = ""; => actions=set_field:0->reg6,set_field:0->in_port, prereqs=1
463 ip.ttl = 4; => actions=set_field:4->nw_ttl, prereqs=eth.type == 0x800 || eth.type == 0x86dd
464 outport="eth0"; next; outport="LOCAL"; next; => actions=set_field:0x5->reg7,resubmit(,27),set_field:0xfffe->reg7,resubmit(,27), prereqs=1
465
466 inport[1] = 1; => Cannot select subfield of string field inport.
467 ip.proto[1] = 1; => Cannot select subfield of nominal field ip.proto.
468 eth.dst[40] == 1; => Syntax error at `==' expecting `='.
469 ip = 1; => Predicate symbol ip used where lvalue required.
470 ip.proto = 6; => Field ip.proto is not modifiable.
471 inport = {"a", "b"}; => Assignments require a single value.
472 inport = {}; => Syntax error at `}' expecting constant.
473 bad_prereq = 123; => Error parsing expression `xyzzy' encountered as prerequisite or predicate of initial expression: Syntax error at `xyzzy' expecting field name.
474 self_recurse = 123; => Error parsing expression `self_recurse != 0' encountered as prerequisite or predicate of initial expression: Error parsing expression `self_recurse != 0' encountered as prerequisite or predicate of initial expression: Recursive expansion of symbol `self_recurse'.
475 vlan.present = 0; => Predicate symbol vlan.present used where lvalue required.
476
477 # Moving one field into another.
478 reg0 = reg1; => actions=move:OXM_OF_PKT_REG0[0..31]->OXM_OF_PKT_REG0[32..63], prereqs=1
479 vlan.pcp = reg0[0..2]; => actions=move:OXM_OF_PKT_REG0[32..34]->NXM_OF_VLAN_TCI[13..15], prereqs=vlan.tci[12]
480 reg0[10] = vlan.pcp[1]; => actions=move:NXM_OF_VLAN_TCI[14]->OXM_OF_PKT_REG0[42], prereqs=vlan.tci[12]
481 outport = inport; => actions=move:NXM_NX_REG6[]->NXM_NX_REG7[], prereqs=1
482
483 reg0[0] = vlan.present; => Predicate symbol vlan.present used where lvalue required.
484 reg0 = reg1[0..10]; => Can't assign 11-bit value to 32-bit destination.
485 inport = reg0; => Can't assign integer field (reg0) to string field (inport).
486 inport = big_string; => String fields inport and big_string are incompatible for assignment.
487 ip.proto = reg0[0..7]; => Field ip.proto is not modifiable.
488
489 # Exchanging fields.
490 reg0 <-> reg1; => actions=push:OXM_OF_PKT_REG0[0..31],push:OXM_OF_PKT_REG0[32..63],pop:OXM_OF_PKT_REG0[0..31],pop:OXM_OF_PKT_REG0[32..63], prereqs=1
491 vlan.pcp <-> reg0[0..2]; => actions=push:OXM_OF_PKT_REG0[32..34],push:NXM_OF_VLAN_TCI[13..15],pop:OXM_OF_PKT_REG0[32..34],pop:NXM_OF_VLAN_TCI[13..15], prereqs=vlan.tci[12]
492 reg0[10] <-> vlan.pcp[1]; => actions=push:NXM_OF_VLAN_TCI[14],push:OXM_OF_PKT_REG0[42],pop:NXM_OF_VLAN_TCI[14],pop:OXM_OF_PKT_REG0[42], prereqs=vlan.tci[12]
493 outport <-> inport; => actions=push:NXM_NX_REG6[],push:NXM_NX_REG7[],pop:NXM_NX_REG6[],pop:NXM_NX_REG7[], prereqs=1
494
495 reg0[0] <-> vlan.present; => Predicate symbol vlan.present used where lvalue required.
496 reg0 <-> reg1[0..10]; => Can't exchange 32-bit field with 11-bit field.
497 inport <-> reg0; => Can't exchange string field (inport) with integer field (reg0).
498 inport <-> big_string; => String fields inport and big_string are incompatible for exchange.
499 ip.proto <-> reg0[0..7]; => Field ip.proto is not modifiable.
500 reg0[0..7] <-> ip.proto; => Field ip.proto is not modifiable.
501
502 # TTL decrement.
503 ip.ttl--; => actions=dec_ttl, prereqs=ip
504 ip.ttl => Syntax error at end of input expecting `--'.
505
506 # conntrack
507 ct_next; => actions=ct(table=27,zone=NXM_NX_REG5[0..15]), prereqs=ip
508 ct_commit; => actions=ct(commit,zone=NXM_NX_REG5[0..15]), prereqs=ip
509
510 # arp
511 arp { eth.dst = ff:ff:ff:ff:ff:ff; output; }; => actions=controller(userdata=00.00.00.00.00.00.00.00.00.19.00.10.80.00.06.06.ff.ff.ff.ff.ff.ff.00.00.ff.ff.00.10.00.00.23.20.00.0e.ff.f8.40.00.00.00), prereqs=ip4
512
513 # get_arp
514 get_arp(outport, ip4.dst); => actions=push:NXM_NX_REG0[],push:NXM_OF_IP_DST[],pop:NXM_NX_REG0[],set_field:00:00:00:00:00:00->eth_dst,resubmit(,65),pop:NXM_NX_REG0[], prereqs=eth.type == 0x800
515 get_arp(inport, reg0); => actions=push:NXM_NX_REG7[],push:NXM_NX_REG0[],push:OXM_OF_PKT_REG0[32..63],push:NXM_NX_REG6[],pop:NXM_NX_REG7[],pop:NXM_NX_REG0[],set_field:00:00:00:00:00:00->eth_dst,resubmit(,65),pop:NXM_NX_REG0[],pop:NXM_NX_REG7[], prereqs=1
516 get_arp; => Syntax error at `;' expecting `('.
517 get_arp(); => Syntax error at `)' expecting field name.
518 get_arp(inport); => Syntax error at `)' expecting `,'.
519 get_arp(inport ip4.dst); => Syntax error at `ip4.dst' expecting `,'.
520 get_arp(inport, ip4.dst; => Syntax error at `;' expecting `)'.
521 get_arp(inport, eth.dst); => Cannot use 48-bit field eth.dst[0..47] where 32-bit field is required.
522 get_arp(inport, outport); => Cannot use string field outport where numeric field is required.
523 get_arp(reg0, ip4.dst); => Cannot use numeric field reg0 where string field is required.
524
525 # put_arp
526 put_arp(inport, arp.spa, arp.sha); => actions=push:NXM_NX_REG0[],push:NXM_OF_ETH_SRC[],push:NXM_NX_ARP_SHA[],push:NXM_OF_ARP_SPA[],pop:NXM_NX_REG0[],pop:NXM_OF_ETH_SRC[],controller(userdata=00.00.00.01.00.00.00.00),pop:NXM_OF_ETH_SRC[],pop:NXM_NX_REG0[], prereqs=eth.type == 0x806 && eth.type == 0x806
527
528 # Contradictionary prerequisites (allowed but not useful):
529 ip4.src = ip6.src[0..31]; => actions=move:NXM_NX_IPV6_SRC[0..31]->NXM_OF_IP_SRC[], prereqs=eth.type == 0x800 && eth.type == 0x86dd
530 ip4.src <-> ip6.src[0..31]; => actions=push:NXM_NX_IPV6_SRC[0..31],push:NXM_OF_IP_SRC[],pop:NXM_NX_IPV6_SRC[0..31],pop:NXM_OF_IP_SRC[], prereqs=eth.type == 0x800 && eth.type == 0x86dd
531
532 ## Miscellaneous negative tests.
533 ; => Syntax error at `;'.
534 xyzzy; => Syntax error at `xyzzy' expecting action.
535 next; 123; => Syntax error at `123'.
536 next; xyzzy; => Syntax error at `xyzzy' expecting action.
537 next => Syntax error at end of input expecting ';'.
538 ]])
539 sed 's/ =>.*//' test-cases.txt > input.txt
540 sed 's/.* => //' test-cases.txt > expout
541 AT_CHECK([ovstest test-ovn parse-actions < input.txt], [0], [expout])
542 AT_CLEANUP
543
544 AT_BANNER([OVN end-to-end tests])
545
546 # 3 hypervisors, one logical switch, 3 logical ports per hypervisor
547 AT_SETUP([ovn -- 3 HVs, 1 LS, 3 lports/HV])
548 AT_KEYWORDS([ovnarp])
549 AT_SKIP_IF([test $HAVE_PYTHON = no])
550 ovn_start
551
552 # Create hypervisors hv[123].
553 # Add vif1[123] to hv1, vif2[123] to hv2, vif3[123] to hv3.
554 # Add all of the vifs to a single logical switch lsw0.
555 # Turn on port security on all the vifs except vif[123]1.
556 # Make vif13, vif2[23], vif3[123] destinations for unknown MACs.
557 # Add some ACLs for Ethertypes 1234, 1235, 1236.
558 ovn-nbctl lswitch-add lsw0
559 net_add n1
560 for i in 1 2 3; do
561     sim_add hv$i
562     as hv$i
563     ovs-vsctl add-br br-phys
564     ovn_attach n1 br-phys 192.168.0.$i
565
566     for j in 1 2 3; do
567         ovs-vsctl add-port br-int vif$i$j -- set Interface vif$i$j external-ids:iface-id=lp$i$j options:tx_pcap=hv$i/vif$i$j-tx.pcap options:rxq_pcap=hv$i/vif$i$j-rx.pcap ofport-request=$i$j
568         ovn-nbctl lport-add lsw0 lp$i$j
569         if test $j = 1; then
570             ovn-nbctl lport-set-addresses lp$i$j "f0:00:00:00:00:$i$j 192.168.0.$i$j" unknown
571         else
572             if test $j = 3; then
573                 ip_addrs="192.168.0.$i$j fe80::ea2a:eaff:fe28:$i$j/64 192.169.0.$i$j"
574             else
575                 ip_addrs="192.168.0.$i$j"
576             fi
577             ovn-nbctl lport-set-addresses lp$i$j "f0:00:00:00:00:$i$j $ip_addrs"
578             ovn-nbctl lport-set-port-security lp$i$j f0:00:00:00:00:$i$j
579         fi
580     done
581 done
582 ovn-nbctl acl-add lsw0 from-lport 1000 'eth.type == 0x1234' drop
583 ovn-nbctl acl-add lsw0 from-lport 1000 'eth.type == 0x1235 && inport == "lp11"' drop
584 ovn-nbctl acl-add lsw0 to-lport 1000 'eth.type == 0x1236 && outport == "lp33"' drop
585
586 # Pre-populate the hypervisors' ARP tables so that we don't lose any
587 # packets for ARP resolution (native tunneling doesn't queue packets
588 # for ARP resolution).
589 ovn_populate_arp
590
591 # Allow some time for ovn-northd and ovn-controller to catch up.
592 # XXX This should be more systematic.
593 sleep 1
594
595 # Given the name of a logical port, prints the name of the hypervisor
596 # on which it is located.
597 vif_to_hv() {
598     echo hv${1%?}
599 }
600
601 # test_packet INPORT DST SRC ETHTYPE OUTPORT...
602 #
603 # This shell function causes a packet to be received on INPORT.  The packet's
604 # content has Ethernet destination DST and source SRC (each exactly 12 hex
605 # digits) and Ethernet type ETHTYPE (4 hex digits).  The OUTPORTs (zero or
606 # more) list the VIFs on which the packet should be received.  INPORT and the
607 # OUTPORTs are specified as lport numbers, e.g. 11 for vif11.
608 trim_zeros() {
609     sed 's/\(00\)\{1,\}$//'
610 }
611 for i in 1 2 3; do
612     for j in 1 2 3; do
613         : > $i$j.expected
614     done
615 done
616 test_packet() {
617     local inport=$1 packet=$2$3$4; shift; shift; shift; shift
618     hv=`vif_to_hv $inport`
619     vif=vif$inport
620     as $hv ovs-appctl netdev-dummy/receive $vif $packet
621     for outport; do
622         echo $packet | trim_zeros >> $outport.expected
623     done
624 }
625
626 # test_arp INPORT SHA SPA TPA [REPLY_HA]
627 #
628 # Causes a packet to be received on INPORT.  The packet is an ARP
629 # request with SHA, SPA, and TPA as specified.  If REPLY_HA is provided, then
630 # it should be the hardware address of the target to expect to receive in an
631 # ARP reply; otherwise no reply is expected.
632 #
633 # INPORT is an lport number, e.g. 11 for vif11.
634 # SHA and REPLY_HA are each 12 hex digits.
635 # SPA and TPA are each 8 hex digits.
636 test_arp() {
637     local inport=$1 sha=$2 spa=$3 tpa=$4 reply_ha=$5
638     local request=ffffffffffff${sha}08060001080006040001${sha}${spa}ffffffffffff${tpa}
639     hv=`vif_to_hv $inport`
640     as $hv ovs-appctl netdev-dummy/receive vif$inport $request
641
642     if test X$reply_ha = X; then
643         # Expect to receive the broadcast ARP on the other logical switch ports
644         # if no reply is expected.
645         local i j
646         for i in 1 2 3; do
647             for j in 1 2 3; do
648                 if test $i$j != $inport; then
649                     echo $request >> $i$j.expected
650                 fi
651             done
652         done
653     else
654         # Expect to receive the reply, if any.
655         local reply=${sha}${reply_ha}08060001080006040002${reply_ha}${tpa}${sha}${spa}
656         echo $reply >> $inport.expected
657     fi
658 }
659
660 ip_to_hex() {
661     printf "%02x%02x%02x%02x" "$@"
662 }
663
664 # Send packets between all pairs of source and destination ports:
665 #
666 # 1. Unicast packets are delivered to exactly one lport (except that packets
667 #    destined to their input ports are dropped).
668 #
669 # 2. Broadcast and multicast are delivered to all lports except the input port.
670 #
671 # 3. When port security is turned on, the lswitch drops packets from the wrong
672 #    MAC address.
673 #
674 # 4. The lswitch drops all packets with a VLAN tag.
675 #
676 # 5. The lswitch drops all packets with a multicast source address.  (This only
677 #    affects behavior when port security is turned off, since otherwise port
678 #    security would drop the packet anyway.)
679 #
680 # 6. The lswitch delivers packets with an unknown destination to lports with
681 #    "unknown" among their MAC addresses (and port security disabled).
682 #
683 # 7. The lswitch drops unicast packets that violate an ACL.
684 #
685 # 8. The lswitch drops multicast and broadcast packets that violate an ACL.
686 #
687 # 9. ARP requests to known IPs are responded directly.
688 #
689 # 10. No response to ARP requests for unknown IPs.
690 for is in 1 2 3; do
691     for js in 1 2 3; do
692         s=$is$js
693         bcast=
694         unknown=
695         bacl2=
696         bacl3=
697         for id in 1 2 3; do
698             for jd in 1 2 3; do
699                 d=$id$jd
700
701                 if test $d != $s; then unicast=$d; else unicast=; fi
702                 test_packet $s f000000000$d f000000000$s $s$d $unicast     #1
703
704                 if test $d != $s && test $js = 1; then
705                     impersonate=$d
706                 else
707                     impersonate=
708                 fi
709                 test_packet $s f000000000$d f00000000055 55$d $impersonate #3
710
711                 if test $d != $s && test $s != 11; then acl2=$d; else acl2=; fi
712                 if test $d != $s && test $d != 33; then acl3=$d; else acl3=; fi
713                 test_packet $s f000000000$d f000000000$s 1234        #7, acl1
714                 test_packet $s f000000000$d f000000000$s 1235 $acl2  #7, acl2
715                 test_packet $s f000000000$d f000000000$s 1236 $acl3  #7, acl3
716
717                 test_packet $s f000000000$d f00000000055 810000091234      #4
718                 test_packet $s f000000000$d 0100000000$s $s$d              #5
719
720                 if test $d != $s && test $jd = 1; then
721                     unknown="$unknown $d"
722                 fi
723                 bcast="$bcast $unicast"
724                 bacl2="$bacl2 $acl2"
725                 bacl3="$bacl3 $acl3"
726
727                 sip=`ip_to_hex 192 168 0 $i$j`
728                 tip=`ip_to_hex 192 168 0 $id$jd`
729                 tip_unknown=`ip_to_hex 11 11 11 11`
730                 test_arp $s f000000000$s $sip $tip f000000000$d            #9
731                 test_arp $s f000000000$s $sip $tip_unknown                 #10
732
733                 if test $jd = 3; then
734                     # lport[123]3 has an additional ip 192.169.0.[123]3.
735                     tip=`ip_to_hex 192 169 0 $id$jd`
736                     test_arp $s f000000000$s $sip $tip f000000000$d        #9
737                 fi
738             done
739         done
740
741         # Broadcast and multicast.
742         test_packet $s ffffffffffff f000000000$s ${s}ff $bcast             #2
743         test_packet $s 010000000000 f000000000$s ${s}ff $bcast             #2
744         if test $js = 1; then
745             bcast_impersonate=$bcast
746         else
747             bcast_impersonate=
748         fi
749         test_packet $s 010000000000 f00000000044 44ff $bcast_impersonate   #3
750
751         test_packet $s f0000000ffff f000000000$s ${s}66 $unknown           #6
752
753         test_packet $s ffffffffffff f000000000$s 1234                #8, acl1
754         test_packet $s ffffffffffff f000000000$s 1235 $bacl2         #8, acl2
755         test_packet $s ffffffffffff f000000000$s 1236 $bacl3         #8, acl3
756         test_packet $s 010000000000 f000000000$s 1234                #8, acl1
757         test_packet $s 010000000000 f000000000$s 1235 $bacl2         #8, acl2
758         test_packet $s 010000000000 f000000000$s 1236 $bacl3         #8, acl3
759     done
760 done
761
762 # set address for lp13 with invalid characters.
763 # lp13 should be configured with only 192.168.0.13.
764 ovn-nbctl lport-set-addresses lp13 "f0:00:00:00:00:13 192.168.0.13 invalid 192.169.0.13"
765 sip=`ip_to_hex 192 168 0 11`
766 tip=`ip_to_hex 192 168 0 13`
767 test_arp 11 f00000000011  $sip $tip f00000000013
768
769 tip=`ip_to_hex 192 169 0 13`
770 #arp request for 192.169.0.13 should be flooded
771 test_arp 11 f00000000011  $sip $tip
772
773 # Allow some time for packet forwarding.
774 # XXX This can be improved.
775 sleep 1
776
777 # dump information and flows with counters
778 ovn-sbctl dump-flows -- list multicast_group
779
780 echo "------ hv1 dump ------"
781 as hv1 ovs-vsctl show
782 as hv1 ovs-ofctl -O OpenFlow13 dump-flows br-int
783
784 echo "------ hv2 dump ------"
785 as hv2 ovs-vsctl show
786 as hv2 ovs-ofctl -O OpenFlow13 dump-flows br-int
787
788 echo "------ hv3 dump ------"
789 as hv3 ovs-vsctl show
790 as hv3 ovs-ofctl -O OpenFlow13 dump-flows br-int
791 # Now check the packets actually received against the ones expected.
792 for i in 1 2 3; do
793     for j in 1 2 3; do
794         file=hv$i/vif$i$j-tx.pcap
795         echo $file
796         $PYTHON "$top_srcdir/utilities/ovs-pcap.in" $file | trim_zeros > $i$j.packets
797         sort $i$j.expected > expout
798         AT_CHECK([sort $i$j.packets], [0], [expout])
799         echo
800     done
801 done
802
803 # Gracefully terminate daemons
804 for sim in hv1 hv2 hv3; do
805     as $sim
806     OVS_APP_EXIT_AND_WAIT([ovn-controller])
807     OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
808     OVS_APP_EXIT_AND_WAIT([ovsdb-server])
809 done
810
811 as ovn-sb
812 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
813
814 as ovn-nb
815 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
816
817 as northd
818 OVS_APP_EXIT_AND_WAIT([ovn-northd])
819
820 as main
821 OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
822 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
823
824 AT_CLEANUP
825
826 # 2 hypervisors, 4 logical ports per HV
827 # 2 locally attached networks (one flat, one vlan tagged over same device)
828 # 2 ports per HV on each network
829 AT_SETUP([ovn -- 2 HVs, 4 lports/HV, localnet ports])
830 AT_KEYWORDS([ovn-localnet])
831 AT_SKIP_IF([test $HAVE_PYTHON = no])
832 ovn_start
833
834 # In this test cases we create 3 lswitches, all connected to same
835 # physical network (through br-phys on each HV). Each lswitch has
836 # VIF ports across 2 HVs. Each HV has 5 VIF ports. The first digit
837 # of VIF port name indicates the hypervisor it is bound to, e.g.
838 # lp23 means VIF 3 on hv2.
839 #
840 # lswitch's VLAN tag and their lports are:
841 #   - ls1:
842 #       - untagged
843 #       - lports: lp11, lp12, lp21, lp22
844 #
845 #   - ls2:
846 #       - tagged with VLAN 101
847 #       - lports: lp13, lp14, lp23, lp24
848 #   - ls3:
849 #       - untagged
850 #       - lports: lp15, lp25
851 #
852 # Note: a localnet port is created for each lswitch to connect to
853 # physical network.
854
855 for i in 1 2 3; do
856     lswitch_name=ls$i
857     ovn-nbctl lswitch-add $lswitch_name
858     ln_port_name=ln$i
859     if test $i -eq 2; then
860         ovn-nbctl lport-add $lswitch_name $ln_port_name "" 101
861     else
862         ovn-nbctl lport-add $lswitch_name $ln_port_name
863     fi
864     ovn-nbctl lport-set-addresses $ln_port_name unknown
865     ovn-nbctl lport-set-type $ln_port_name localnet
866     ovn-nbctl lport-set-options $ln_port_name network_name=phys
867 done
868
869 net_add n1
870 for i in 1 2; do
871     sim_add hv$i
872     as hv$i
873     ovs-vsctl add-br br-phys
874     ovs-vsctl set open . external-ids:ovn-bridge-mappings=phys:br-phys
875     ovn_attach n1 br-phys 192.168.0.$i
876
877     for j in 1 2 3 4 5; do
878         ovs-vsctl add-port br-int vif$i$j -- \
879             set Interface vif$i$j external-ids:iface-id=lp$i$j \
880                                   options:tx_pcap=hv$i/vif$i$j-tx.pcap \
881                                   options:rxq_pcap=hv$i/vif$i$j-rx.pcap \
882                                   ofport-request=$i$j
883
884         lport_name=lp$i$j
885         if test $j -le 2; then
886             lswitch_name=ls1
887         elif test $j -le 4; then
888             lswitch_name=ls2
889         else
890             lswitch_name=ls3
891         fi
892
893         ovn-nbctl lport-add $lswitch_name $lport_name
894         ovn-nbctl lport-set-addresses $lport_name f0:00:00:00:00:$i$j
895         ovn-nbctl lport-set-port-security $lport_name f0:00:00:00:00:$i$j
896
897         OVS_WAIT_UNTIL([test x`ovn-nbctl lport-get-up $lport_name` = xup])
898     done
899 done
900
901 ovn_populate_arp
902
903 # XXX This is now the 3rd copy of these functions in this file ...
904
905 # Given the name of a logical port, prints the name of the hypervisor
906 # on which it is located.
907 vif_to_hv() {
908     echo hv${1%?}
909 }
910 #
911 # test_packet INPORT DST SRC ETHTYPE OUTPORT...
912 #
913 # This shell function causes a packet to be received on INPORT.  The packet's
914 # content has Ethernet destination DST and source SRC (each exactly 12 hex
915 # digits) and Ethernet type ETHTYPE (4 hex digits).  The OUTPORTs (zero or
916 # more) list the VIFs on which the packet should be received.  INPORT and the
917 # OUTPORTs are specified as lport numbers, e.g. 11 for vif11.
918 trim_zeros() {
919     sed 's/\(00\)\{1,\}$//'
920 }
921 for i in 1 2; do
922     for j in 1 2 3 4 5; do
923         : > $i$j.expected
924     done
925 done
926 test_packet() {
927     local inport=$1 src=$2 dst=$3 eth=$4; shift; shift; shift; shift
928     local packet=${src}${dst}${eth}
929     hv=`vif_to_hv $inport`
930     vif=vif$inport
931     as $hv ovs-appctl netdev-dummy/receive $vif $packet
932     for outport; do
933         echo $packet | trim_zeros >> $outport.expected
934     done
935 }
936
937 # lp11 and lp21 are on the same network (phys, untagged)
938 # and on different hypervisors
939 test_packet 11 f00000000021 f00000000011 1121 21
940 test_packet 21 f00000000011 f00000000021 2111 11
941
942 # lp11 and lp12 are on the same network (phys, untagged)
943 # and on the same hypervisor
944 test_packet 11 f00000000012 f00000000011 1112 12
945 test_packet 12 f00000000011 f00000000012 1211 11
946
947 # lp13 and lp23 are on the same network (phys, VLAN 101)
948 # and on different hypervisors
949 test_packet 13 f00000000023 f00000000013 1323 23
950 test_packet 23 f00000000013 f00000000023 2313 13
951
952 # lp13 and lp14 are on the same network (phys, VLAN 101)
953 # and on the same hypervisor
954 test_packet 13 f00000000014 f00000000013 1314 14
955 test_packet 14 f00000000013 f00000000014 1413 13
956
957 # lp11 and lp15 are on the same network (phys, untagged),
958 # same hypervisor, and on different lswitches
959 test_packet 11 f00000000015 f00000000011 1115 15
960 test_packet 15 f00000000011 f00000000015 1511 11
961
962 # lp11 and lp25 are on the same network (phys, untagged),
963 # different hypervisors, and on different lswitches
964 test_packet 11 f00000000025 f00000000011 1125 25
965 test_packet 25 f00000000011 f00000000025 2511 11
966
967 # Ports that should not be able to communicate
968 test_packet 11 f00000000013 f00000000011 1113
969 test_packet 11 f00000000023 f00000000011 1123
970 test_packet 21 f00000000013 f00000000021 2113
971 test_packet 21 f00000000023 f00000000021 2123
972 test_packet 13 f00000000011 f00000000013 1311
973 test_packet 13 f00000000021 f00000000013 1321
974 test_packet 23 f00000000011 f00000000023 2311
975 test_packet 23 f00000000021 f00000000023 2321
976
977 # Allow some time for packet forwarding.
978 # XXX This can be improved.
979 sleep 1
980
981 # Dump a bunch of info helpful for debugging if there's a failure.
982
983 echo "------ OVN dump ------"
984 ovn-nbctl show
985 ovn-sbctl show
986
987 echo "------ hv1 dump ------"
988 as hv1 ovs-vsctl show
989 as hv1 ovs-ofctl -O OpenFlow13 dump-flows br-int
990
991 echo "------ hv2 dump ------"
992 as hv2 ovs-vsctl show
993 as hv2 ovs-ofctl -O OpenFlow13 dump-flows br-int
994
995 # Now check the packets actually received against the ones expected.
996 for i in 1 2; do
997     for j in 1 2 3 4 5; do
998         file=hv$i/vif$i$j-tx.pcap
999         echo $file
1000         $PYTHON "$top_srcdir/utilities/ovs-pcap.in" $file | trim_zeros > $i$j.packets
1001         sort $i$j.expected > expout
1002         AT_CHECK([sort $i$j.packets], [0], [expout])
1003         echo
1004     done
1005 done
1006
1007 # Gracefully terminate daemons
1008 for sim in hv1 hv2; do
1009     as $sim
1010     OVS_APP_EXIT_AND_WAIT([ovn-controller])
1011     OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
1012     OVS_APP_EXIT_AND_WAIT([ovsdb-server])
1013 done
1014
1015 as ovn-sb
1016 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
1017
1018 as ovn-nb
1019 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
1020
1021 as northd
1022 OVS_APP_EXIT_AND_WAIT([ovn-northd])
1023
1024 as main
1025 OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
1026 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
1027 AT_CLEANUP
1028
1029 AT_SETUP([ovn -- vtep: 3 HVs, 1 VIFs/HV, 1 GW, 1 LS])
1030 AT_KEYWORDS([vtep])
1031 AT_SKIP_IF([test $HAVE_PYTHON = no])
1032 ovn_start
1033
1034 # Configure the Northbound database
1035 ovn-nbctl lswitch-add lsw0
1036
1037 ovn-nbctl lport-add lsw0 lp1
1038 ovn-nbctl lport-set-addresses lp1 f0:00:00:00:00:01
1039
1040 ovn-nbctl lport-add lsw0 lp2
1041 ovn-nbctl lport-set-addresses lp2 f0:00:00:00:00:02
1042
1043 ovn-nbctl lport-add lsw0 lp-vtep
1044 ovn-nbctl lport-set-type lp-vtep vtep
1045 ovn-nbctl lport-set-options lp-vtep vtep-physical-switch=br-vtep vtep-logical-switch=lsw0
1046 ovn-nbctl lport-set-addresses lp-vtep unknown
1047
1048 net_add n1               # Network to connect hv1, hv2, and vtep
1049 net_add n2               # Network to connect vtep and hv3
1050
1051 # Create hypervisor hv1 connected to n1
1052 sim_add hv1
1053 as hv1
1054 ovs-vsctl add-br br-phys
1055 ovn_attach n1 br-phys 192.168.0.1
1056 ovs-vsctl add-port br-int vif1 -- set Interface vif1 external-ids:iface-id=lp1 options:tx_pcap=hv1/vif1-tx.pcap options:rxq_pcap=hv1/vif1-rx.pcap ofport-request=1
1057
1058 # Create hypervisor hv2 connected to n1
1059 sim_add hv2
1060 as hv2
1061 ovs-vsctl add-br br-phys
1062 ovn_attach n1 br-phys 192.168.0.2
1063 ovs-vsctl add-port br-int vif2 -- set Interface vif2 external-ids:iface-id=lp2 options:tx_pcap=hv2/vif2-tx.pcap options:rxq_pcap=hv2/vif2-rx.pcap ofport-request=1
1064
1065
1066 # Start the vtep emulator with a leg in both networks
1067 sim_add vtep
1068 as vtep
1069
1070 ovsdb-tool create "$ovs_base"/vtep/vtep.db "$abs_top_srcdir"/vtep/vtep.ovsschema || return 1
1071 ovs-appctl -t ovsdb-server ovsdb-server/add-db "$ovs_base"/vtep/vtep.db
1072
1073 ovs-vsctl add-br br-phys
1074 net_attach n1 br-phys
1075
1076 mac=`ovs-vsctl get Interface br-phys mac_in_use | sed s/\"//g`
1077 arp_table="$arp_table $sandbox,br-phys,192.168.0.3,$mac"
1078 ovs-appctl netdev-dummy/ip4addr br-phys 192.168.0.3/24 >/dev/null || return 1
1079 ovs-appctl ovs/route/add 192.168.0.3/24 br-phys >/dev/null || return 1
1080
1081 ovs-vsctl add-br br-vtep
1082 net_attach n2 br-vtep
1083
1084 vtep-ctl add-ps br-vtep
1085 vtep-ctl set Physical_Switch br-vtep tunnel_ips=192.168.0.3
1086 vtep-ctl add-ls lsw0
1087
1088 start_daemon ovs-vtep br-vtep
1089 start_daemon ovn-controller-vtep --vtep-db=unix:"$ovs_base"/vtep/db.sock --ovnsb-db=unix:"$ovs_base"/ovn-sb/ovn-sb.sock
1090
1091 sleep 1
1092
1093 vtep-ctl bind-ls br-vtep br-vtep_n2 0 lsw0
1094
1095 sleep 1
1096
1097 # Add hv3 on the other side of the vtep
1098 sim_add hv3
1099 as hv3
1100 ovs-vsctl add-br br-phys
1101 net_attach n2 br-phys
1102
1103 ovs-vsctl add-port br-phys vif3 -- set Interface vif3 options:tx_pcap=hv3/vif3-tx.pcap options:rxq_pcap=hv3/vif3-rx.pcap ofport-request=1
1104
1105 # Pre-populate the hypervisors' ARP tables so that we don't lose any
1106 # packets for ARP resolution (native tunneling doesn't queue packets
1107 # for ARP resolution).
1108 ovn_populate_arp
1109
1110 # Allow some time for ovn-northd and ovn-controller to catch up.
1111 # XXX This should be more systematic.
1112 sleep 1
1113
1114 # test_packet INPORT DST SRC ETHTYPE OUTPORT...
1115 #
1116 # This shell function causes a packet to be received on INPORT.  The packet's
1117 # content has Ethernet destination DST and source SRC (each exactly 12 hex
1118 # digits) and Ethernet type ETHTYPE (4 hex digits).  The OUTPORTs (zero or
1119 # more) list the VIFs on which the packet should be received.  INPORT and the
1120 # OUTPORTs are specified as lport numbers, e.g. 1 for vif1.
1121 trim_zeros() {
1122     sed 's/\(00\)\{1,\}$//'
1123 }
1124 for i in 1 2 3; do
1125     : > $i.expected
1126 done
1127 test_packet() {
1128     local inport=$1 packet=$2$3$4; shift; shift; shift; shift
1129     #hv=hv`echo $inport | sed 's/^\(.\).*/\1/'`
1130     hv=hv$inport
1131     vif=vif$inport
1132     as $hv ovs-appctl netdev-dummy/receive $vif $packet
1133     for outport; do
1134         echo $packet | trim_zeros >> $outport.expected
1135     done
1136 }
1137
1138 # Send packets between all pairs of source and destination ports:
1139 #
1140 # 1. Unicast packets are delivered to exactly one lport (except that packets
1141 #    destined to their input ports are dropped).
1142 #
1143 # 2. Broadcast and multicast are delivered to all lports except the input port.
1144 #
1145 # 3. The lswitch delivers packets with an unknown destination to lports with
1146 #    "unknown" among their MAC addresses (and port security disabled).
1147 for s in 1 2 3; do
1148     bcast=
1149     unknown=
1150     for d in 1 2 3; do
1151         if test $d != $s; then unicast=$d; else unicast=; fi
1152         test_packet $s f0000000000$d f0000000000$s 00$s$d $unicast       #1
1153
1154         # The vtep (vif3) is the only one configured for "unknown"
1155         if test $d != $s && test $d = 3; then
1156             unknown="$unknown $d"
1157         fi
1158         bcast="$bcast $unicast"
1159     done
1160
1161     # Broadcast and multicast.
1162     test_packet $s ffffffffffff f0000000000$s 0${s}ff $bcast             #2
1163     test_packet $s 010000000000 f0000000000$s 0${s}ff $bcast             #2
1164
1165     test_packet $s f0000000ffff f0000000000$s 0${s}66 $unknown           #3
1166 done
1167
1168 # Allow some time for packet forwarding.
1169 # XXX This can be improved.
1170 sleep 1
1171
1172 # dump information with counters
1173 echo "------ OVN dump ------"
1174 ovn-nbctl show
1175 ovn-sbctl show
1176
1177 echo "------ hv1 dump ------"
1178 as hv1 ovs-vsctl show
1179 as hv1 ovs-ofctl show br-int
1180 as hv1 ovs-ofctl -O OpenFlow13 dump-flows br-int
1181
1182 echo "------ hv2 dump ------"
1183 as hv2 ovs-vsctl show
1184 as hv2 ovs-ofctl show br-int
1185 as hv2 ovs-ofctl -O OpenFlow13 dump-flows br-int
1186
1187 echo "------ hv3 dump ------"
1188 as hv3 ovs-vsctl show
1189 as hv3 ovs-ofctl show br-int
1190 as hv3 ovs-ofctl -O OpenFlow13 dump-flows br-int
1191
1192 # Now check the packets actually received against the ones expected.
1193 for i in 1 2 3; do
1194     file=hv$i/vif$i-tx.pcap
1195     echo $file
1196     $PYTHON "$top_srcdir/utilities/ovs-pcap.in" $file | trim_zeros > $i.packets
1197     sort $i.expected > expout
1198     AT_CHECK([sort $i.packets], [0], [expout])
1199     echo
1200 done
1201
1202 # Gracefully terminate daemons
1203 as vtep
1204 OVS_APP_EXIT_AND_WAIT([ovn-controller-vtep])
1205 OVS_APP_EXIT_AND_WAIT([ovs-vtep])
1206
1207 as hv1
1208 OVS_APP_EXIT_AND_WAIT([ovn-controller])
1209
1210 as hv2
1211 OVS_APP_EXIT_AND_WAIT([ovn-controller])
1212
1213 as ovn-sb
1214 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
1215
1216 as ovn-nb
1217 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
1218
1219 as northd
1220 OVS_APP_EXIT_AND_WAIT([ovn-northd])
1221
1222 for sim in hv1 hv2 hv3 vtep main; do
1223     as $sim
1224     for daemon in ovs-vswitchd ovsdb-server; do
1225         OVS_APP_EXIT_AND_WAIT([$daemon])
1226     done
1227 done
1228 AT_CLEANUP
1229
1230 # 3 hypervisors, 3 logical switches with 3 logical ports each, 1 logical router
1231 AT_SETUP([ovn -- 3 HVs, 3 LS, 3 lports/LS, 1 LR])
1232 AT_SKIP_IF([test $HAVE_PYTHON = no])
1233 ovn_start
1234
1235 # Logical network:
1236 #
1237 # Three logical switches ls1, ls2, ls3.
1238 # One logical router lr0 connected to ls[123],
1239 # with nine subnets, three per logical switch:
1240 #
1241 #    lrp11 on ls1 for subnet 192.168.11.0/24
1242 #    lrp12 on ls1 for subnet 192.168.12.0/24
1243 #    lrp13 on ls1 for subnet 192.168.13.0/24
1244 #    ...
1245 #    lrp33 on ls3 for subnet 192.168.33.0/24
1246 #
1247 # 27 VIFs, 9 per LS, 3 per subnet: lp[123][123][123], where the first two
1248 # digits are the subnet and the last digit distinguishes the VIF.
1249 for i in 1 2 3; do
1250     ovn-nbctl lswitch-add ls$i
1251     for j in 1 2 3; do
1252         for k in 1 2 3; do
1253             # Add "unknown" to MAC addresses for lp?11, so packets for
1254             # MAC-IP bindings discovered via ARP later have somewhere to go.
1255             if test $j$k = 11; then unknown=unknown; else unknown=; fi
1256
1257             ovn-nbctl \
1258                 -- lport-add ls$i lp$i$j$k \
1259                 -- lport-set-addresses lp$i$j$k "f0:00:00:00:0$i:$j$k 192.168.$i$j.$k" $unknown
1260         done
1261     done
1262 done
1263
1264 ovn-nbctl create Logical_Router name=lr0
1265 for i in 1 2 3; do
1266     for j in 1 2 3; do
1267         lrp_uuid=`ovn-nbctl \
1268             -- --id=@lrp create Logical_Router_Port name=lrp$i$j \
1269                network=192.168.$i$j.254/24 mac='"00:00:00:00:ff:'$i$j'"' \
1270             -- add Logical_Router lr0 ports @lrp \
1271             -- lport-add ls$i lrp$i$j-attachment`
1272         ovn-nbctl \
1273             set Logical_Port lrp$i$j-attachment type=router \
1274                              options:router-port=lrp$i$j \
1275                              addresses='"00:00:00:00:ff:'$i$j'"'
1276     done
1277 done
1278
1279 ovn-nbctl set Logical_Port lrp33-attachment \
1280     addresses='"00:00:00:00:ff:33 192.168.33.254"'
1281
1282 # Physical network:
1283 #
1284 # Three hypervisors hv[123].
1285 # lp?1[123] spread across hv[123]: lp?11 on hv1, lp?12 on hv2, lp?13 on hv3.
1286 # lp?2[123] spread across hv[23]: lp?21 and lp?22 on hv2, lp?23 on hv3.
1287 # lp?3[123] all on hv3.
1288
1289
1290 # Given the name of a logical port, prints the name of the hypervisor
1291 # on which it is located.
1292 vif_to_hv() {
1293     case $1 in dnl (
1294         ?11) echo 1 ;; dnl (
1295         ?12 | ?21 | ?22) echo 2 ;; dnl (
1296         ?13 | ?23 | ?3?) echo 3 ;;
1297     esac
1298 }
1299
1300 # Given the name of a logical port, prints the name of its logical router
1301 # port, e.g. "vif_to_lrp 123" yields 12.
1302 vif_to_lrp() {
1303     echo ${1%?}
1304 }
1305
1306 # Given the name of a logical port, prints the name of its logical
1307 # switch, e.g. "vif_to_ls 123" yields 1.
1308 vif_to_ls() {
1309     echo ${1%??}
1310 }
1311
1312 net_add n1
1313 for i in 1 2 3; do
1314     sim_add hv$i
1315     as hv$i
1316     ovs-vsctl add-br br-phys
1317     ovn_attach n1 br-phys 192.168.0.$i
1318 done
1319 for i in 1 2 3; do
1320     for j in 1 2 3; do
1321         for k in 1 2 3; do
1322             hv=`vif_to_hv $i$j$k`
1323             as hv$hv ovs-vsctl \
1324                 -- add-port br-int vif$i$j$k \
1325                 -- set Interface vif$i$j$k \
1326                        external-ids:iface-id=lp$i$j$k \
1327                        options:tx_pcap=hv$hv/vif$i$j$k-tx.pcap \
1328                        options:rxq_pcap=hv$hv/vif$i$j$k-rx.pcap \
1329                        ofport-request=$i$j$k
1330         done
1331     done
1332 done
1333
1334 # Pre-populate the hypervisors' ARP tables so that we don't lose any
1335 # packets for ARP resolution (native tunneling doesn't queue packets
1336 # for ARP resolution).
1337 ovn_populate_arp
1338
1339 # Allow some time for ovn-northd and ovn-controller to catch up.
1340 # XXX This should be more systematic.
1341 sleep 1
1342
1343 # test_ip INPORT SRC_MAC DST_MAC SRC_IP DST_IP OUTPORT...
1344 #
1345 # This shell function causes a packet to be received on INPORT.  The packet's
1346 # content has Ethernet destination DST and source SRC (each exactly 12 hex
1347 # digits) and Ethernet type ETHTYPE (4 hex digits).  The OUTPORTs (zero or
1348 # more) list the VIFs on which the packet should be received.  INPORT and the
1349 # OUTPORTs are specified as lport numbers, e.g. 123 for vif123.
1350 trim_zeros() {
1351     sed 's/\(00\)\{1,\}$//'
1352 }
1353 for i in 1 2 3; do
1354     for j in 1 2 3; do
1355         for k in 1 2 3; do
1356             : > $i$j$k.expected
1357         done
1358     done
1359 done
1360 test_ip() {
1361     # This packet has bad checksums but logical L3 routing doesn't check.
1362     local inport=$1 src_mac=$2 dst_mac=$3 src_ip=$4 dst_ip=$5
1363     local packet=${dst_mac}${src_mac}08004500001c0000000040110000${src_ip}${dst_ip}0035111100080000
1364     shift; shift; shift; shift; shift
1365     hv=hv`vif_to_hv $inport`
1366     as $hv ovs-appctl netdev-dummy/receive vif$inport $packet
1367     #as $hv ovs-appctl ofproto/trace br-int in_port=$inport $packet
1368     in_ls=`vif_to_ls $inport`
1369     in_lrp=`vif_to_lrp $inport`
1370     for outport; do
1371         out_ls=`vif_to_ls $outport`
1372         if test $in_ls = $out_ls; then
1373             # Ports on the same logical switch receive exactly the same packet.
1374             echo $packet
1375         else
1376             # Routing decrements TTL and updates source and dest MAC
1377             # (and checksum).
1378             out_lrp=`vif_to_lrp $outport`
1379             echo f00000000${outport}00000000ff${out_lrp}08004500001c00000000"3f1101"00${src_ip}${dst_ip}0035111100080000
1380         fi | trim_zeros >> $outport.expected
1381     done
1382 }
1383
1384 as hv1 ovs-vsctl --columns=name,ofport list interface
1385 as hv1 ovn-sbctl list port_binding
1386 as hv1 ovn-sbctl list datapath_binding
1387 as hv1 ovn-sbctl dump-flows
1388 as hv1 ovs-ofctl dump-flows br-int
1389
1390 # Send IP packets between all pairs of source and destination ports:
1391 #
1392 # 1. Unicast IP packets are delivered to exactly one lport (except
1393 #    that packets destined to their input ports are dropped).
1394 #
1395 # 2. Broadcast IP packets are delivered to all lports except the input port.
1396 ip_to_hex() {
1397     printf "%02x%02x%02x%02x" "$@"
1398 }
1399 for is in 1 2 3; do
1400     for js in 1 2 3; do
1401         for ks in 1 2 3; do
1402             bcast=
1403             s=$is$js$ks
1404             smac=f00000000$s
1405             sip=`ip_to_hex 192 168 $is$js $ks`
1406             for id in 1 2 3; do
1407                 for jd in 1 2 3; do
1408                     for kd in 1 2 3; do
1409                         d=$id$jd$kd
1410                         dip=`ip_to_hex 192 168 $id$jd $kd`
1411                         if test $is = $id; then dmac=f00000000$d; else dmac=00000000ff$is$js; fi
1412                         if test $d != $s; then unicast=$d; else unicast=; fi
1413
1414                         test_ip $s $smac $dmac $sip $dip $unicast #1
1415
1416                         if test $id = $is && test $d != $s; then bcast="$bcast $d"; fi
1417                     done
1418                 done
1419             done
1420             test_ip $s $smac ffffffffffff $sip ffffffff $bcast #2
1421         done
1422     done
1423 done
1424
1425 # 3. Send an IP packet from every logical port to every other subnet,
1426 #    to an IP address that does not have a static IP-MAC binding.
1427 #    This should generate a broadcast ARP request for the destination
1428 #    IP address in the destination subnet.
1429 for is in 1 2 3; do
1430     for js in 1 2 3; do
1431         for ks in 1 2 3; do
1432             s=$is$js$ks
1433             smac=f00000000$s
1434             sip=`ip_to_hex 192 168 $is$js $ks`
1435             for id in 1 2 3; do
1436                 for jd in 1 2 3; do
1437                     if test $is$js = $id$jd; then
1438                         continue
1439                     fi
1440
1441                     # Send the packet.
1442                     dmac=00000000ff$is$js
1443                     # Calculate a 4th octet for the destination that is
1444                     # unique per $s, avoids the .1 .2 .3 and .254 IP addresses
1445                     # that have static MAC bindings, and fits in the range
1446                     # 0-255.
1447                     o4=`expr $is '*' 9 + $js '*' 3 + $ks + 10`
1448                     dip=`ip_to_hex 192 168 $id$jd $o4`
1449                     test_ip $s $smac $dmac $sip $dip
1450
1451                     # Every LP on the destination subnet's lswitch should
1452                     # receive the ARP request.
1453                     lrmac=00000000ff$id$jd
1454                     lrip=`ip_to_hex 192 168 $id$jd 254`
1455                     arp=ffffffffffff${lrmac}08060001080006040001${lrmac}${lrip}000000000000${dip}
1456                     for jd2 in 1 2 3; do
1457                         for kd in 1 2 3; do
1458                             echo $arp | trim_zeros >> $id$jd2$kd.expected
1459                         done
1460                     done
1461                 done
1462             done
1463         done
1464     done
1465 done
1466
1467 # test_arp INPORT SHA SPA TPA [REPLY_HA]
1468 #
1469 # Causes a packet to be received on INPORT.  The packet is an ARP
1470 # request with SHA, SPA, and TPA as specified.  If REPLY_HA is provided, then
1471 # it should be the hardware address of the target to expect to receive in an
1472 # ARP reply; otherwise no reply is expected.
1473 #
1474 # INPORT is an lport number, e.g. 11 for vif11.
1475 # SHA and REPLY_HA are each 12 hex digits.
1476 # SPA and TPA are each 8 hex digits.
1477 test_arp() {
1478     local inport=$1 sha=$2 spa=$3 tpa=$4 reply_ha=$5
1479     local request=ffffffffffff${sha}08060001080006040001${sha}${spa}ffffffffffff${tpa}
1480     hv=hv`vif_to_hv $inport`
1481     as $hv ovs-appctl netdev-dummy/receive vif$inport $request
1482     #as $hv ovs-appctl ofproto/trace br-int in_port=$inport $request
1483
1484     # Expect to receive the broadcast ARP on the other logical switch ports if
1485     # IP address is not configured to the lswitch patch port.
1486     local i=`vif_to_ls $inport`
1487     local j k
1488     for j in 1 2 3; do
1489         for k in 1 2 3; do
1490             # 192.168.33.254 is configured to the lswitch patch port for lrp33,
1491             # so no ARP flooding expected for it.
1492             if test $i$j$k != $inport && test $tpa != `ip_to_hex 192 168 33 254`; then
1493                 echo $request >> $i$j$k.expected
1494             fi
1495         done
1496     done
1497
1498     # Expect to receive the reply, if any.
1499     if test X$reply_ha != X; then
1500         lrp=`vif_to_lrp $inport`
1501         local reply=${sha}00000000ff${lrp}08060001080006040002${reply_ha}${tpa}${sha}${spa}
1502         echo $reply >> $inport.expected
1503     fi
1504 }
1505
1506 # Test router replies to ARP requests from all source ports:
1507 #
1508 # 4. Router replies to query for its MAC address from port's own IP address.
1509 #
1510 # 5. Router replies to query for its MAC address from any random IP address
1511 #    in its subnet.
1512 #
1513 # 6. Router replies to query for its MAC address from another subnet.
1514 #
1515 # 7. No reply to query for IP address other than router IP.
1516 for i in 1 2 3; do
1517     for j in 1 2 3; do
1518         for k in 1 2 3; do
1519             smac=f00000000$i$j$k               # Source MAC
1520             sip=`ip_to_hex 192 168 $i$j $k`    # Source IP
1521             rip=`ip_to_hex 192 168 $i$j 254`   # Router IP
1522             rmac=00000000ff$i$j                # Router MAC
1523             otherip=`ip_to_hex 192 168 $i$j 55` # Some other IP in subnet
1524             test_arp $i$j$k $smac $sip        $rip        $rmac #4
1525             test_arp $i$j$k $smac $otherip    $rip        $rmac #5
1526             test_arp $i$j$k $smac 0a123456    $rip        $rmac #6
1527             test_arp $i$j$k $smac $sip        $otherip          #7
1528         done
1529     done
1530 done
1531
1532 # Allow some time for packet forwarding.
1533 # XXX This can be improved.
1534 sleep 1
1535
1536 # 8. Generate an ARP reply for each of the IP addresses ARPed for
1537 #    earlier as #3.
1538 #
1539 #    Here, the $s is the VIF that originated the ARP request and $d is
1540 #    the VIF that sends the ARP reply, which is somewhat backward but
1541 #    it means that $s and $d are the same as #3.
1542 : > mac_bindings.expected
1543 for is in 1 2 3; do
1544     for js in 1 2 3; do
1545         for ks in 1 2 3; do
1546             s=$is$js$ks
1547             for id in 1 2 3; do
1548                 for jd in 1 2 3; do
1549                     if test $is$js = $id$jd; then
1550                         continue
1551                     fi
1552
1553                     kd=1
1554                     d=$id$jd$kd
1555
1556                     o4=`expr $is '*' 9 + $js '*' 3 + $ks + 10`
1557                     host_ip=`ip_to_hex 192 168 $id$jd $o4`
1558                     host_mac=8000000000$o4
1559
1560                     lrmac=00000000ff$id$jd
1561                     lrip=`ip_to_hex 192 168 $id$jd 254`
1562
1563                     arp=${lrmac}${host_mac}08060001080006040002${host_mac}${host_ip}${lrmac}${lrip}
1564
1565                     echo
1566                     echo
1567                     echo
1568                     hv=hv`vif_to_hv $d`
1569                     as $hv ovs-appctl netdev-dummy/receive vif$d $arp
1570                     #as $hv ovs-appctl ofproto/trace br-int in_port=$d $arp
1571                     #as $hv ovs-ofctl dump-flows br-int table=19
1572
1573                     host_ip_pretty=192.168.$id$jd.$o4
1574                     host_mac_pretty=80:00:00:00:00:$o4
1575                     echo lrp$id$jd,$host_ip_pretty,$host_mac_pretty >> mac_bindings.expected
1576                 done
1577             done
1578         done
1579     done
1580 done
1581
1582 # Allow some time for packet forwarding.
1583 # XXX This can be improved.
1584 sleep 1
1585
1586 # 9. Send an IP packet from every logical port to every other subnet.  These
1587 #    are the same packets already sent as #3, but now the destinations' IP-MAC
1588 #    bindings have been discovered via ARP, so instead of provoking an ARP
1589 #    request, these packets now get routed to their destinations (which don't
1590 #    have static MAC bindings, so they go to the port we've designated as
1591 #    accepting "unknown" MACs.)
1592 for is in 1 2 3; do
1593     for js in 1 2 3; do
1594         for ks in 1 2 3; do
1595             s=$is$js$ks
1596             smac=f00000000$s
1597             sip=`ip_to_hex 192 168 $is$js $ks`
1598             for id in 1 2 3; do
1599                 for jd in 1 2 3; do
1600                     if test $is$js = $id$jd; then
1601                         continue
1602                     fi
1603
1604                     # Send the packet.
1605                     dmac=00000000ff$is$js
1606                     # Calculate a 4th octet for the destination that is
1607                     # unique per $s, avoids the .1 .2 .3 and .254 IP addresses
1608                     # that have static MAC bindings, and fits in the range
1609                     # 0-255.
1610                     o4=`expr $is '*' 9 + $js '*' 3 + $ks + 10`
1611                     dip=`ip_to_hex 192 168 $id$jd $o4`
1612                     test_ip $s $smac $dmac $sip $dip
1613
1614                     # Expect the packet egress.
1615                     host_mac=8000000000$o4
1616                     outport=${id}11
1617                     out_lrp=$id$jd
1618                     echo ${host_mac}00000000ff${out_lrp}08004500001c00000000"3f1101"00${sip}${dip}0035111100080000 | trim_zeros >> $outport.expected
1619                 done
1620             done
1621         done
1622     done
1623 done
1624
1625 # Allow some time for packet forwarding.
1626 # XXX This can be improved.
1627 sleep 1
1628
1629 ovn-sbctl -f csv -d bare --no-heading \
1630     -- --columns=logical_port,ip,mac list mac_binding > mac_bindings
1631
1632 # Now check the packets actually received against the ones expected.
1633 for i in 1 2 3; do
1634     for j in 1 2 3; do
1635         for k in 1 2 3; do
1636             file=hv`vif_to_hv $i$j$k`/vif$i$j$k-tx.pcap
1637             echo $file
1638             $PYTHON "$top_srcdir/utilities/ovs-pcap.in" $file | trim_zeros > $i$j$k.packets
1639             sort $i$j$k.expected > expout
1640             AT_CHECK([sort $i$j$k.packets], [0], [expout])
1641             echo
1642         done
1643     done
1644 done
1645
1646 # Check the MAC bindings against those expected.
1647 AT_CHECK_UNQUOTED([sort < mac_bindings], [0], [`sort < mac_bindings.expected`
1648 ])
1649
1650 # Gracefully terminate daemons
1651 for daemon in ovn-controller ovn-northd ovsdb-server; do
1652     ovs-appctl -t $daemon exit
1653 done
1654 AT_CLEANUP
1655
1656 # 3 hypervisors, one logical switch, 3 logical ports per hypervisor
1657 AT_SETUP([ovn -- portsecurity : 3 HVs, 1 LS, 3 lports/HV])
1658 AT_KEYWORDS([portsecurity])
1659 AT_SKIP_IF([test $HAVE_PYTHON = no])
1660 ovn_start
1661
1662 # Create hypervisors hv[123].
1663 # Add vif1[123] to hv1, vif2[123] to hv2, vif3[123] to hv3.
1664 # Add all of the vifs to a single logical switch lsw0.
1665 # Turn off port security on vifs vif[123]1
1666 # Turn on l2 port security on vifs vif[123]2
1667 # Turn of l2 and l3 port security on vifs vif[123]3
1668 # Make vif13, vif2[23], vif3[123] destinations for unknown MACs.
1669 ovn-nbctl lswitch-add lsw0
1670 net_add n1
1671 for i in 1 2 3; do
1672     sim_add hv$i
1673     as hv$i
1674     ovs-vsctl add-br br-phys
1675     ovn_attach n1 br-phys 192.168.0.$i
1676
1677     for j in 1 2 3; do
1678         ovs-vsctl add-port br-int vif$i$j -- set Interface vif$i$j external-ids:iface-id=lp$i$j options:tx_pcap=hv$i/vif$i$j-tx.pcap options:rxq_pcap=hv$i/vif$i$j-rx.pcap ofport-request=$i$j
1679         ovn-nbctl lport-add lsw0 lp$i$j
1680         if test $j = 1; then
1681             ovn-nbctl lport-set-addresses lp$i$j "f0:00:00:00:00:$i$j 192.168.0.$i$j" unknown
1682         elif test $j = 2; then
1683             ovn-nbctl lport-set-addresses lp$i$j "f0:00:00:00:00:$i$j 192.168.0.$i$j"
1684             ovn-nbctl lport-set-port-security lp$i$j f0:00:00:00:00:$i$j
1685         else
1686             extra_addr="f0:00:00:00:0$i:$i$j fe80::ea2a:eaff:fe28:$i$j"
1687             ovn-nbctl lport-set-addresses lp$i$j "f0:00:00:00:00:$i$j 192.168.0.$i$j" "$extra_addr"
1688             ovn-nbctl lport-set-port-security lp$i$j "f0:00:00:00:00:$i$j 192.168.0.$i$j" "$extra_addr"
1689         fi
1690     done
1691 done
1692
1693 # Pre-populate the hypervisors' ARP tables so that we don't lose any
1694 # packets for ARP resolution (native tunneling doesn't queue packets
1695 # for ARP resolution).
1696 ovn_populate_arp
1697
1698 # Allow some time for ovn-northd and ovn-controller to catch up.
1699 # XXX This should be more systematic.
1700 sleep 1
1701
1702 # Given the name of a logical port, prints the name of the hypervisor
1703 # on which it is located.
1704 vif_to_hv() {
1705     echo hv${1%?}
1706 }
1707
1708
1709 trim_zeros() {
1710     sed 's/\(00\)\{1,\}$//'
1711 }
1712 for i in 1 2 3; do
1713     for j in 1 2 3; do
1714         : > $i$j.expected
1715     done
1716 done
1717
1718 # test_ip INPORT SRC_MAC DST_MAC SRC_IP DST_IP OUTPORT...
1719 #
1720 # This shell function causes an ip packet to be received on INPORT.
1721 # The packet's content has Ethernet destination DST and source SRC
1722 # (each exactly 12 hex digits) and Ethernet type ETHTYPE (4 hex digits).
1723 # The OUTPORTs (zero or more) list the VIFs on which the packet should
1724 # be received.  INPORT and the OUTPORTs are specified as lport numbers,
1725 # e.g. 11 for vif11.
1726 test_ip() {
1727     # This packet has bad checksums but logical L3 routing doesn't check.
1728     local inport=$1 src_mac=$2 dst_mac=$3 src_ip=$4 dst_ip=$5
1729     local packet=${dst_mac}${src_mac}08004500001c0000000040110000${src_ip}${dst_ip}003511110008
1730     shift; shift; shift; shift; shift
1731     hv=`vif_to_hv $inport`
1732     as $hv ovs-appctl netdev-dummy/receive vif$inport $packet
1733     #as $hv ovs-appctl ofproto/trace br-int in_port=$inport $packet
1734     for outport; do
1735         echo $packet | trim_zeros >> $outport.expected
1736     done
1737 }
1738
1739 # test_arp INPORT SHA SPA TPA DROP [REPLY_HA]
1740 #
1741 # Causes a packet to be received on INPORT.  The packet is an ARP
1742 # request with SHA, SPA, and TPA as specified.  If REPLY_HA is provided, then
1743 # it should be the hardware address of the target to expect to receive in an
1744 # ARP reply; otherwise no reply is expected.
1745 #
1746 # INPORT is an lport number, e.g. 11 for vif11.
1747 # SHA and REPLY_HA are each 12 hex digits.
1748 # SPA and TPA are each 8 hex digits.
1749 test_arp() {
1750     local inport=$1 smac=$2 sha=$3 spa=$4 tpa=$5 drop=$6 reply_ha=$7
1751     local request=ffffffffffff${smac}08060001080006040001${sha}${spa}ffffffffffff${tpa}
1752     hv=`vif_to_hv $inport`
1753     as $hv ovs-appctl netdev-dummy/receive vif$inport $request
1754     #as $hv ovs-appctl ofproto/trace br-int in_port=$inport $request
1755     if test $drop != 1; then
1756         if test X$reply_ha == X; then
1757             # Expect to receive the broadcast ARP on the other logical switch ports
1758             # if no reply is expected.
1759             local i j
1760             for i in 1 2 3; do
1761                 for j in 1 2 3; do
1762                     if test $i$j != $inport; then
1763                         echo $request >> $i$j.expected
1764                     fi
1765                 done
1766             done
1767         else
1768             # Expect to receive the reply, if any.
1769             local reply=${smac}${reply_ha}08060001080006040002${reply_ha}${tpa}${sha}${spa}
1770             echo $reply >> $inport.expected
1771         fi
1772     fi
1773 }
1774
1775 # test_ipv6 INPORT SRC_MAC DST_MAC SRC_IP DST_IP OUTPORT...
1776 # This function is similar to test_ip() except that it sends
1777 # ipv6 packet
1778 test_ipv6() {
1779     local inport=$1 src_mac=$2 dst_mac=$3 src_ip=$4 dst_ip=$5
1780     local packet=${dst_mac}${src_mac}86dd6000000000083aff${src_ip}${dst_ip}0000000000000000
1781     shift; shift; shift; shift; shift
1782     hv=`vif_to_hv $inport`
1783     as $hv ovs-appctl netdev-dummy/receive vif$inport $packet
1784     #as $hv ovs-appctl ofproto/trace br-int in_port=$inport $packet
1785     for outport; do
1786         echo $packet | trim_zeros >> $outport.expected
1787     done
1788 }
1789
1790 ip_to_hex() {
1791     printf "%02x%02x%02x%02x" "$@"
1792 }
1793
1794 # no port security
1795 sip=`ip_to_hex 192 168 0 12`
1796 tip=`ip_to_hex 192 168 0 13`
1797 # the arp packet should be allowed even if lp[123]1 is
1798 # not configured with mac f00000000023 and ip 192.168.0.12
1799 for i in 1 2 3; do
1800     test_arp ${i}1 f00000000023 f00000000023 $sip $tip 0 f00000000013
1801     for j in 1 2 3; do
1802         if test $i != $j; then
1803             test_ip ${i}1 f000000000${i}1 f000000000${j}1 $sip $tip ${j}1
1804         fi
1805     done
1806 done
1807
1808 # l2 port security
1809 sip=`ip_to_hex 192 168 0 12`
1810 tip=`ip_to_hex 192 168 0 13`
1811
1812 # arp packet should be allowed since lp22 is configured with
1813 # mac f00000000022
1814 test_arp 22 f00000000022 f00000000022 $sip $tip 0 f00000000013
1815
1816 # arp packet should not be allowed since lp32 is not configured with
1817 # mac f00000000021
1818 test_arp 32 f00000000021 f00000000021 $sip $tip 1
1819
1820 # arp packet with sha set to f00000000021 should not be allowed
1821 # for lp12
1822 test_arp 12 f00000000012 f00000000021 $sip $tip 1
1823
1824 # ip packets should be allowed and received since lp[123]2 do not
1825 # have l3 port security
1826 sip=`ip_to_hex 192 168 0 55`
1827 tip=`ip_to_hex 192 168 0 66`
1828 for i in 1 2 3; do
1829     for j in 1 2 3; do
1830         if test $i != $j; then
1831             test_ip ${i}2 f000000000${i}2 f000000000${j}2 $sip $tip ${j}2
1832         fi
1833     done
1834 done
1835
1836 # ipv6 packets should be received by lp[123]2
1837 # lp[123]1 can send ipv6 traffic as there is no port security
1838 sip=fe800000000000000000000000000000
1839 tip=ff020000000000000000000000000000
1840
1841 for i in 1 2 3; do
1842     test_ipv6 ${i}1 f000000000${i}1 f000000000${i}2 $sip $tip ${i}2
1843 done
1844
1845
1846 # l2 and l3 port security
1847 sip=`ip_to_hex 192 168 0 13`
1848 tip=`ip_to_hex 192 168 0 22`
1849 # arp packet should be allowed since lp13 is configured with
1850 # f00000000013 and 192.168.0.13
1851 test_arp 13 f00000000013 f00000000013 $sip $tip 0 f00000000022
1852
1853 # the arp packet should be dropped because lp23 is not configured
1854 # with mac f00000000022
1855 sip=`ip_to_hex 192 168 0 13`
1856 tip=`ip_to_hex 192 168 0 22`
1857 test_arp 23 f00000000022 f00000000022 $sip $tip 1
1858
1859 # the arp packet should be dropped because lp33 is not configured
1860 # with ip 192.168.0.55
1861 spa=`ip_to_hex 192 168 0 55`
1862 tpa=`ip_to_hex 192 168 0 22`
1863 test_arp 33 f00000000031 f00000000031 $spa $tpa 1
1864
1865 # ip packets should not be received by lp[123]3 since
1866 # l3 port security is enabled
1867 sip=`ip_to_hex 192 168 0 55`
1868 tip=`ip_to_hex 192 168 0 66`
1869 for i in 1 2 3; do
1870     for j in 1 2 3; do
1871         test_ip ${i}2 f000000000${i}2 f000000000${j}3 $sip $tip
1872     done
1873 done
1874
1875 # ipv6 packets should be dropped for lp[123]3 since
1876 # it is configured with only ipv4 address
1877 sip=fe800000000000000000000000000000
1878 tip=ff020000000000000000000000000000
1879
1880 for i in 1 2 3; do
1881     test_ipv6 ${i}3 f000000000${i}3 f00000000022 $sip $tip
1882 done
1883
1884 # ipv6 packets should not be received by lp[123]3 with mac f000000000$[123]3
1885 # lp[123]1 can send ipv6 traffic as there is no port security
1886 for i in 1 2 3; do
1887     test_ipv6 ${i}1 f000000000${i}1 f000000000${i}3 $sip $tip
1888 done
1889
1890 # lp13 has extra port security with mac f0000000113 and ipv6 addr
1891 # fe80::ea2a:eaff:fe28:0012
1892
1893 # ipv4 packet should be dropped for lp13 with mac f0000000113
1894 sip=`ip_to_hex 192 168 0 13`
1895 tip=`ip_to_hex 192 168 0 23`
1896 test_ip 13 f00000000113 f00000000023 $sip $tip
1897
1898 # ipv6 packet should be received by lp[123]3 with mac f0000000{i}{i}3
1899 # and ip6.dst as fe80::ea2a:eaff:fe28:0{i}{i}3.
1900 # lp11 can send ipv6 traffic as there is no port security
1901 sip=ee800000000000000000000000000000
1902 for i in 1 2 3; do
1903     tip=fe80000000000000ea2aeafffe2800{i}3
1904     test_ipv6 11 f00000000011 f000000000{i}${i}3 $sip $tip {i}3
1905 done
1906
1907
1908 # ipv6 packet should not be received by lp33 with mac f0000000333
1909 # and ip6.dst as fe80::ea2a:eaff:fe28:0023 as it is
1910 # configured with fe80::ea2a:eaff:fe28:0033
1911 # lp11 can send ipv6 traffic as there is no port security
1912
1913 sip=ee800000000000000000000000000000
1914 tip=fe80000000000000ea2aeafffe280023
1915 test_ipv6 11 f00000000011 f00000000333 $sip $tip
1916
1917 # ipv6 packet should be allowed for lp[123]3 with mac f0000000{i}{i}3
1918 # and ip6.src fe80::ea2a:eaff:fe28:0{i}{i}3 and ip6.src ::.
1919 # and should be dropped for any other ip6.src
1920 # lp21 can receive ipv6 traffic as there is no port security
1921
1922 tip=ee800000000000000000000000000000
1923 for i in 1 2 3; do
1924     sip=fe80000000000000ea2aeafffe2800${i}3
1925     test_ipv6 ${i}3 f00000000${i}${i}3 f00000000021 $sip $tip 21
1926
1927     sip=00000000000000000000000000000000
1928     test_ipv6 ${i}3 f00000000${i}${i}3 f00000000021 $sip $tip 21
1929
1930     # should be dropped
1931     sip=ae80000000000000ea2aeafffe2800aa
1932     test_ipv6 ${i}3 f00000000${i}${i}3 f00000000021 $sip $tip
1933 done
1934
1935 # configure lport13 to send and received IPv4 packets with an address range
1936 ovn-nbctl lport-set-port-security lp13 "f0:00:00:00:00:13 192.168.0.13 20.0.0.4/24 10.0.0.0/24"
1937
1938 sleep 2
1939
1940 sip=`ip_to_hex 10 0 0 13`
1941 tip=`ip_to_hex 192 168 0 22`
1942 # arp packet with inner ip 10.0.0.13 should be allowed for lport13
1943 test_arp 13 f00000000013 f00000000013 $sip $tip 0 f00000000022
1944
1945 sip=`ip_to_hex 10 0 0 14`
1946 tip=`ip_to_hex 192 168 0 23`
1947 # IPv4 packet from lport13 with src ip 10.0.0.14 destined to lport23
1948 # with dst ip 192.168.0.23 should be allowed
1949 test_ip 13 f00000000013 f00000000023 $sip $tip 23
1950
1951 sip=`ip_to_hex 192 168 0 33`
1952 tip=`ip_to_hex 10 0 0 15`
1953 # IPv4 packet from lport33 with src ip 192.168.0.33 destined to lport13
1954 # with dst ip 10.0.0.15 should be received by lport13
1955 test_ip 33 f00000000033 f00000000013 $sip $tip 13
1956
1957 sip=`ip_to_hex 192 168 0 33`
1958 tip=`ip_to_hex 20 0 0 4`
1959 # IPv4 packet from lport33 with src ip 192.168.0.33 destined to lport13
1960 # with dst ip 20.0.0.4 should be received by lport13
1961 test_ip 33 f00000000033 f00000000013 $sip $tip 13
1962
1963 sip=`ip_to_hex 192 168 0 33`
1964 tip=`ip_to_hex 20 0 0 5`
1965 # IPv4 packet from lport33 with src ip 192.168.0.33 destined to lport13
1966 # with dst ip 20.0.0.5 should not be received by lport13
1967 test_ip 33 f00000000033 f00000000013 $sip $tip
1968
1969 sip=`ip_to_hex 192 168 0 33`
1970 tip=`ip_to_hex 20 0 0 255`
1971 # IPv4 packet from lport33 with src ip 192.168.0.33 destined to lport13
1972 # with dst ip 20.0.0.255 should be received by lport13
1973 test_ip 33 f00000000033 f00000000013 $sip $tip 13
1974
1975 sip=`ip_to_hex 192 168 0 33`
1976 tip=`ip_to_hex 192 168 0 255`
1977 # IPv4 packet from lport33 with src ip 192.168.0.33 destined to lport13
1978 # with dst ip 192.168.0.255 should not be received by lport13
1979 test_ip 33 f00000000033 f00000000013 $sip $tip
1980
1981 sip=`ip_to_hex 192 168 0 33`
1982 tip=`ip_to_hex 224 0 0 4`
1983 # IPv4 packet from lport33 with src ip 192.168.0.33 destined to lport13
1984 # with dst ip 224.0.0.4  should be received by lport13
1985 test_ip 33 f00000000033 f00000000013 $sip $tip 13
1986
1987 # Allow some time for packet forwarding.
1988
1989 # XXX This can be improved.
1990 sleep 1
1991
1992 #dump information including flow counters
1993 ovn-nbctl show
1994 ovn-sbctl dump-flows -- list multicast_group
1995
1996 echo "------ hv1 dump ------"
1997 as hv1 ovs-vsctl show
1998 as hv1 ovs-ofctl show br-int
1999 as hv1 ovs-ofctl -O OpenFlow13 dump-flows br-int
2000
2001 echo "------ hv2 dump ------"
2002 as hv2 ovs-vsctl show
2003 as hv2 ovs-ofctl show br-int
2004 as hv2 ovs-ofctl -O OpenFlow13 dump-flows br-int
2005
2006 echo "------ hv3 dump ------"
2007 as hv3 ovs-vsctl show
2008 as hv3 ovs-ofctl show br-int
2009 as hv3 ovs-ofctl -O OpenFlow13 dump-flows br-int
2010
2011 # Now check the packets actually received against the ones expected.
2012 for i in 1 2 3; do
2013     for j in 1 2 3; do
2014         file=hv$i/vif$i$j-tx.pcap
2015         echo $file
2016         $PYTHON "$top_srcdir/utilities/ovs-pcap.in" $file | trim_zeros > $i$j.packets
2017         sort $i$j.expected > expout
2018         AT_CHECK([sort $i$j.packets], [0], [expout])
2019         echo
2020     done
2021 done
2022
2023 # Gracefully terminate daemons
2024 for sim in hv1 hv2 hv3; do
2025     as $sim
2026     OVS_APP_EXIT_AND_WAIT([ovn-controller])
2027     OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
2028     OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2029 done
2030
2031 as ovn-sb
2032 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2033
2034 as ovn-nb
2035 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2036
2037 as northd
2038 OVS_APP_EXIT_AND_WAIT([ovn-northd])
2039
2040 as main
2041 OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
2042 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2043
2044 AT_CLEANUP
2045
2046 AT_SETUP([ovn -- 2 HVs, 2 LS, 1 lport/LS, 2 peer LRs])
2047 AT_KEYWORDS([ovnpeer])
2048 AT_SKIP_IF([test $HAVE_PYTHON = no])
2049 ovn_start
2050
2051 # Logical network:
2052 # Two LRs - R1 and R2 that are connected to each other as peers in 20.0.0.0/24
2053 # network. R1 has a switchs ls1 (191.168.1.0/24) connected to it.
2054 # R2 has ls2 (172.16.1.0/24) connected to it.
2055
2056 ovn-nbctl create Logical_Router name=R1
2057 ovn-nbctl create Logical_Router name=R2
2058
2059 ovn-nbctl lswitch-add ls1
2060 ovn-nbctl lswitch-add ls2
2061
2062 # Connect ls1 to R1
2063 ovn-nbctl -- --id=@lrp create Logical_Router_port name=ls1 \
2064 network=192.168.1.1/24 mac=\"00:00:00:01:02:03\" -- add Logical_Router R1 \
2065 ports @lrp -- lport-add ls1 rp-ls1
2066
2067 ovn-nbctl set Logical_port rp-ls1 type=router options:router-port=ls1 \
2068 addresses=\"00:00:00:01:02:03\"
2069
2070 # Connect ls2 to R2
2071 ovn-nbctl -- --id=@lrp create Logical_Router_port name=ls2 \
2072 network=172.16.1.1/24 mac=\"00:00:00:01:02:04\" -- add Logical_Router R2 \
2073 ports @lrp -- lport-add ls2 rp-ls2
2074
2075 ovn-nbctl set Logical_port rp-ls2 type=router options:router-port=ls2 \
2076 addresses=\"00:00:00:01:02:04\"
2077
2078 # Connect R1 to R2
2079 lrp1_uuid=`ovn-nbctl -- --id=@lrp create Logical_Router_port name=R1_R2 \
2080 network="20.0.0.1/24" mac=\"00:00:00:02:03:04\" \
2081 -- add Logical_Router R1 ports @lrp`
2082
2083 lrp2_uuid=`ovn-nbctl -- --id=@lrp create Logical_Router_port name=R2_R1 \
2084 network="20.0.0.2/24" mac=\"00:00:00:02:03:05\" \
2085 -- add Logical_Router R2 ports @lrp`
2086
2087 ovn-nbctl set logical_router_port $lrp1_uuid peer="R2_R1"
2088 ovn-nbctl set logical_router_port $lrp2_uuid peer="R1_R2"
2089
2090 ovn-nbctl set Logical_Router R1 default_gw="20.0.0.2"
2091 ovn-nbctl set Logical_Router R2 default_gw="20.0.0.1"
2092
2093 # Create logical port ls1-lp1 in ls1
2094 ovn-nbctl lport-add ls1 ls1-lp1 \
2095 -- lport-set-addresses ls1-lp1 "f0:00:00:01:02:03 192.168.1.2"
2096
2097 # Create logical port ls2-lp1 in ls2
2098 ovn-nbctl lport-add ls2 ls2-lp1 \
2099 -- lport-set-addresses ls2-lp1 "f0:00:00:01:02:04 172.16.1.2"
2100
2101 # Create two hypervisor and create OVS ports corresponding to logical ports.
2102 net_add n1
2103
2104 sim_add hv1
2105 as hv1
2106 ovs-vsctl add-br br-phys
2107 ovn_attach n1 br-phys 192.168.0.1
2108 ovs-vsctl -- add-port br-int hv1-vif1 -- \
2109     set interface hv1-vif1 external-ids:iface-id=ls1-lp1 \
2110     options:tx_pcap=hv1/vif1-tx.pcap \
2111     options:rxq_pcap=hv1/vif1-rx.pcap \
2112     ofport-request=1
2113
2114 sim_add hv2
2115 as hv2
2116 ovs-vsctl add-br br-phys
2117 ovn_attach n1 br-phys 192.168.0.2
2118 ovs-vsctl -- add-port br-int hv2-vif1 -- \
2119     set interface hv2-vif1 external-ids:iface-id=ls2-lp1 \
2120     options:tx_pcap=hv2/vif1-tx.pcap \
2121     options:rxq_pcap=hv2/vif1-rx.pcap \
2122     ofport-request=1
2123
2124
2125 # Pre-populate the hypervisors' ARP tables so that we don't lose any
2126 # packets for ARP resolution (native tunneling doesn't queue packets
2127 # for ARP resolution).
2128 ovn_populate_arp
2129
2130 # Allow some time for ovn-northd and ovn-controller to catch up.
2131 # XXX This should be more systematic.
2132 sleep 1
2133
2134 # Send ip packets between the two ports.
2135 ip_to_hex() {
2136     printf "%02x%02x%02x%02x" "$@"
2137 }
2138 trim_zeros() {
2139     sed 's/\(00\)\{1,\}$//'
2140 }
2141
2142 # Packet to send.
2143 src_mac="f00000010203"
2144 dst_mac="000000010203"
2145 src_ip=`ip_to_hex 192 168 1 2`
2146 dst_ip=`ip_to_hex 172 16 1 2`
2147 packet=${dst_mac}${src_mac}08004500001c0000000040110000${src_ip}${dst_ip}0035111100080000
2148 as hv1 ovs-appctl netdev-dummy/receive hv1-vif1 $packet
2149
2150
2151 echo "---------NB dump-----"
2152 ovn-nbctl show
2153 echo "---------------------"
2154 ovn-nbctl list logical_router
2155 echo "---------------------"
2156 ovn-nbctl list logical_router_port
2157 echo "---------------------"
2158
2159 echo "---------SB dump-----"
2160 ovn-sbctl list datapath_binding
2161 echo "---------------------"
2162 ovn-sbctl list port_binding
2163 echo "---------------------"
2164
2165 echo "------ hv1 dump ----------"
2166 as hv1 ovs-ofctl show br-int
2167 as hv1 ovs-ofctl dump-flows br-int
2168 echo "------ hv2 dump ----------"
2169 as hv2 ovs-ofctl show br-int
2170 as hv2 ovs-ofctl dump-flows br-int
2171
2172 # Packet to Expect
2173 src_mac="000000010204"
2174 dst_mac="f00000010204"
2175 expected=${dst_mac}${src_mac}08004500001c000000003e110200${src_ip}${dst_ip}0035111100080000
2176
2177 $PYTHON "$top_srcdir/utilities/ovs-pcap.in" hv2/vif1-tx.pcap | trim_zeros > received.packets
2178 echo $expected | trim_zeros > expout
2179 AT_CHECK([cat received.packets], [0], [expout])
2180
2181 for sim in hv1 hv2; do
2182     as $sim
2183     OVS_APP_EXIT_AND_WAIT([ovn-controller])
2184     OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
2185     OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2186 done
2187
2188 as ovn-sb
2189 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2190
2191 as ovn-nb
2192 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2193
2194 as northd
2195 OVS_APP_EXIT_AND_WAIT([ovn-northd])
2196
2197 as main
2198 OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
2199 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2200
2201 AT_CLEANUP
2202
2203
2204 AT_SETUP([ovn -- 1 HVs, 2 LSs, 1 lport/LS, 1 LR])
2205 AT_KEYWORDS([router-admin-state])
2206 AT_SKIP_IF([test $HAVE_PYTHON = no])
2207 ovn_start
2208
2209 # Logical network:
2210 # One LR - R1 has switch ls1 (191.168.1.0/24) connected to it,
2211 # and has switch ls2 (172.16.1.0/24) connected to it.
2212
2213 ovn-nbctl create Logical_Router name=R1
2214
2215 ovn-nbctl lswitch-add ls1
2216 ovn-nbctl lswitch-add ls2
2217
2218 # Connect ls1 to R1
2219 ovn-nbctl -- --id=@lrp create Logical_Router_port name=ls1 \
2220 network=192.168.1.1/24 mac=\"00:00:00:01:02:03\" -- add Logical_Router R1 \
2221 ports @lrp -- lport-add ls1 rp-ls1
2222
2223 ovn-nbctl set Logical_port rp-ls1 type=router options:router-port=ls1 \
2224 addresses=\"00:00:00:01:02:03\"
2225
2226 # Connect ls2 to R1
2227 ovn-nbctl -- --id=@lrp create Logical_Router_port name=ls2 \
2228 network=172.16.1.1/24 mac=\"00:00:00:01:02:04\" -- add Logical_Router R1 \
2229 ports @lrp -- lport-add ls2 rp-ls2
2230
2231 ovn-nbctl set Logical_port rp-ls2 type=router options:router-port=ls2 \
2232 addresses=\"00:00:00:01:02:04\"
2233
2234 # Create logical port ls1-lp1 in ls1
2235 ovn-nbctl lport-add ls1 ls1-lp1 \
2236 -- lport-set-addresses ls1-lp1 "f0:00:00:01:02:03 192.168.1.2"
2237
2238 # Create logical port ls2-lp1 in ls2
2239 ovn-nbctl lport-add ls2 ls2-lp1 \
2240 -- lport-set-addresses ls2-lp1 "f0:00:00:01:02:04 172.16.1.2"
2241
2242 # Create one hypervisor and create OVS ports corresponding to logical ports.
2243 net_add n1
2244
2245 sim_add hv1
2246 as hv1
2247 ovs-vsctl add-br br-phys
2248 ovn_attach n1 br-phys 192.168.0.1
2249 ovs-vsctl -- add-port br-int vif1 -- \
2250     set interface vif1 external-ids:iface-id=ls1-lp1 \
2251     options:tx_pcap=hv1/vif1-tx.pcap \
2252     options:rxq_pcap=hv1/vif1-rx.pcap \
2253     ofport-request=1
2254
2255 ovs-vsctl -- add-port br-int vif2 -- \
2256     set interface vif2 external-ids:iface-id=ls2-lp1 \
2257     options:tx_pcap=hv1/vif2-tx.pcap \
2258     options:rxq_pcap=hv1/vif2-rx.pcap \
2259     ofport-request=1
2260
2261
2262 # Allow some time for ovn-northd and ovn-controller to catch up.
2263 # XXX This should be more systematic.
2264 sleep 1
2265
2266 # Send ip packets between the two ports.
2267 ip_to_hex() {
2268     printf "%02x%02x%02x%02x" "$@"
2269 }
2270 trim_zeros() {
2271     sed 's/\(00\)\{1,\}$//'
2272 }
2273
2274 # Packet to send.
2275 src_mac="f00000010203"
2276 dst_mac="000000010203"
2277 src_ip=`ip_to_hex 192 168 1 2`
2278 dst_ip=`ip_to_hex 172 16 1 2`
2279 packet=${dst_mac}${src_mac}08004500001c0000000040110000${src_ip}${dst_ip}0035111100080000
2280 as hv1 ovs-appctl netdev-dummy/receive vif1 $packet
2281
2282
2283 echo "---------NB dump-----"
2284 ovn-nbctl show
2285 echo "---------------------"
2286 ovn-nbctl list logical_router
2287 echo "---------------------"
2288 ovn-nbctl list logical_router_port
2289 echo "---------------------"
2290
2291 echo "---------SB dump-----"
2292 ovn-sbctl list datapath_binding
2293 echo "---------------------"
2294 ovn-sbctl list logical_flow
2295 echo "---------------------"
2296
2297 echo "------ hv1 dump ----------"
2298 as hv1 ovs-ofctl dump-flows br-int
2299
2300
2301 #Disable router R1
2302 ovn-nbctl set Logical_Router R1 enabled=false
2303
2304 echo "---------SB dump-----"
2305 ovn-sbctl list datapath_binding
2306 echo "---------------------"
2307 ovn-sbctl list logical_flow
2308 echo "---------------------"
2309
2310 echo "------ hv1 dump ----------"
2311 as hv1 ovs-ofctl dump-flows br-int
2312
2313 as hv1 ovs-appctl netdev-dummy/receive vif1 $packet
2314
2315 # Packet to Expect
2316 expect_src_mac="000000010204"
2317 expect_dst_mac="f00000010204"
2318 expected=${expect_dst_mac}${expect_src_mac}08004500001c000000003f110100${src_ip}${dst_ip}0035111100080000
2319
2320 $PYTHON "$top_srcdir/utilities/ovs-pcap.in" hv1/vif2-tx.pcap | trim_zeros > received.packets
2321 echo $expected | trim_zeros > expout
2322 AT_CHECK([cat received.packets], [0], [expout])
2323
2324
2325 as hv1
2326 OVS_APP_EXIT_AND_WAIT([ovn-controller])
2327 OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
2328 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2329
2330 as ovn-sb
2331 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2332
2333 as ovn-nb
2334 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2335
2336 as northd
2337 OVS_APP_EXIT_AND_WAIT([ovn-northd])
2338
2339 as main
2340 OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
2341 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2342
2343 AT_CLEANUP
2344
2345 AT_SETUP([ovn -- 2 HVs, 3 LS, 1 lport/LS, 2 peer LRs, static routes])
2346 AT_KEYWORDS([ovnstaticroutespeer])
2347 AT_SKIP_IF([test $HAVE_PYTHON = no])
2348 ovn_start
2349
2350 # Logical network:
2351 # Two LRs - R1 and R2 that are connected to each other as peers in 20.0.0.0/24
2352 # network. R1 has switchess foo (192.168.1.0/24)
2353 # connected to it.
2354 # R2 has alice (172.16.1.0/24) and bob (172.16.2.0/24) connected to it.
2355
2356 ovn-nbctl create Logical_Router name=R1
2357 ovn-nbctl create Logical_Router name=R2
2358
2359 ovn-nbctl lswitch-add foo
2360 ovn-nbctl lswitch-add alice
2361 ovn-nbctl lswitch-add bob
2362
2363 # Connect foo to R1
2364 ovn-nbctl -- --id=@lrp create Logical_Router_port name=foo \
2365 network=192.168.1.1/24 mac=\"00:00:00:01:02:03\" -- add Logical_Router R1 \
2366 ports @lrp -- lport-add foo rp-foo
2367
2368 ovn-nbctl set Logical_port rp-foo type=router options:router-port=foo \
2369 addresses=\"00:00:00:01:02:03\"
2370
2371 # Connect alice to R2
2372 ovn-nbctl -- --id=@lrp create Logical_Router_port name=alice \
2373 network=172.16.1.1/24 mac=\"00:00:00:01:02:04\" -- add Logical_Router R2 \
2374 ports @lrp -- lport-add alice rp-alice
2375
2376 ovn-nbctl set Logical_port rp-alice type=router options:router-port=alice \
2377 addresses=\"00:00:00:01:02:04\"
2378
2379 # Connect bob to R2
2380 ovn-nbctl -- --id=@lrp create Logical_Router_port name=bob \
2381 network=172.16.2.1/24 mac=\"00:00:00:01:02:05\" -- add Logical_Router R2 \
2382 ports @lrp -- lport-add bob rp-bob
2383
2384 ovn-nbctl set Logical_port rp-bob type=router options:router-port=bob \
2385 addresses=\"00:00:00:01:02:05\"
2386
2387 # Connect R1 to R2
2388 lrp1_uuid=`ovn-nbctl -- --id=@lrp create Logical_Router_port name=R1_R2 \
2389 network="20.0.0.1/24" mac=\"00:00:00:02:03:04\" \
2390 -- add Logical_Router R1 ports @lrp`
2391
2392 lrp2_uuid=`ovn-nbctl -- --id=@lrp create Logical_Router_port name=R2_R1 \
2393 network="20.0.0.2/24" mac=\"00:00:00:02:03:05\" \
2394 -- add Logical_Router R2 ports @lrp`
2395
2396 ovn-nbctl set logical_router_port $lrp1_uuid peer="R2_R1"
2397 ovn-nbctl set logical_router_port $lrp2_uuid peer="R1_R2"
2398
2399 #install static routes
2400 ovn-nbctl -- --id=@lrt create Logical_Router_Static_Route \
2401 ip_prefix=172.16.1.0/24 nexthop=20.0.0.2 -- add Logical_Router \
2402 R1 static_routes @lrt
2403
2404 ovn-nbctl -- --id=@lrt create Logical_Router_Static_Route \
2405 ip_prefix=172.16.2.0/24 nexthop=20.0.0.2 output_port=R1_R2 -- add Logical_Router \
2406 R1 static_routes @lrt
2407
2408 ovn-nbctl -- --id=@lrt create Logical_Router_Static_Route \
2409 ip_prefix=192.168.1.0/24 nexthop=20.0.0.1 -- add Logical_Router \
2410 R2 static_routes @lrt
2411
2412 # Create logical port foo1 in foo
2413 ovn-nbctl lport-add foo foo1 \
2414 -- lport-set-addresses foo1 "f0:00:00:01:02:03 192.168.1.2"
2415
2416 # Create logical port alice1 in alice
2417 ovn-nbctl lport-add alice alice1 \
2418 -- lport-set-addresses alice1 "f0:00:00:01:02:04 172.16.1.2"
2419
2420 # Create logical port bob1 in bob
2421 ovn-nbctl lport-add bob bob1 \
2422 -- lport-set-addresses bob1 "f0:00:00:01:02:05 172.16.2.2"
2423
2424 # Create two hypervisor and create OVS ports corresponding to logical ports.
2425 net_add n1
2426
2427 sim_add hv1
2428 as hv1
2429 ovs-vsctl add-br br-phys
2430 ovn_attach n1 br-phys 192.168.0.1
2431 ovs-vsctl -- add-port br-int hv1-vif1 -- \
2432     set interface hv1-vif1 external-ids:iface-id=foo1 \
2433     options:tx_pcap=hv1/vif1-tx.pcap \
2434     options:rxq_pcap=hv1/vif1-rx.pcap \
2435     ofport-request=1
2436
2437 ovs-vsctl -- add-port br-int hv1-vif2 -- \
2438     set interface hv1-vif2 external-ids:iface-id=alice1 \
2439     options:tx_pcap=hv1/vif2-tx.pcap \
2440     options:rxq_pcap=hv1/vif2-rx.pcap \
2441     ofport-request=2
2442
2443 sim_add hv2
2444 as hv2
2445 ovs-vsctl add-br br-phys
2446 ovn_attach n1 br-phys 192.168.0.2
2447 ovs-vsctl -- add-port br-int hv2-vif1 -- \
2448     set interface hv2-vif1 external-ids:iface-id=bob1 \
2449     options:tx_pcap=hv2/vif1-tx.pcap \
2450     options:rxq_pcap=hv2/vif1-rx.pcap \
2451     ofport-request=1
2452
2453
2454 # Pre-populate the hypervisors' ARP tables so that we don't lose any
2455 # packets for ARP resolution (native tunneling doesn't queue packets
2456 # for ARP resolution).
2457 ovn_populate_arp
2458
2459 # Allow some time for ovn-northd and ovn-controller to catch up.
2460 # XXX This should be more systematic.
2461 sleep 1
2462
2463 ip_to_hex() {
2464     printf "%02x%02x%02x%02x" "$@"
2465 }
2466 trim_zeros() {
2467     sed 's/\(00\)\{1,\}$//'
2468 }
2469
2470 # Send ip packets between foo1 and alice1
2471 src_mac="f00000010203"
2472 dst_mac="000000010203"
2473 src_ip=`ip_to_hex 192 168 1 2`
2474 dst_ip=`ip_to_hex 172 16 1 2`
2475 packet=${dst_mac}${src_mac}08004500001c0000000040110000${src_ip}${dst_ip}0035111100080000
2476 as hv1 ovs-appctl netdev-dummy/receive hv1-vif1 $packet
2477
2478 # Send ip packets between foo1 and bob1
2479 src_mac="f00000010203"
2480 dst_mac="000000010203"
2481 src_ip=`ip_to_hex 192 168 1 2`
2482 dst_ip=`ip_to_hex 172 16 2 2`
2483 packet=${dst_mac}${src_mac}08004500001c0000000040110000${src_ip}${dst_ip}0035111100080000
2484 as hv1 ovs-appctl netdev-dummy/receive hv1-vif1 $packet
2485
2486 echo "---------NB dump-----"
2487 ovn-nbctl show
2488 echo "---------------------"
2489 ovn-nbctl list logical_router
2490 echo "---------------------"
2491 ovn-nbctl list logical_router_port
2492 echo "---------------------"
2493
2494 echo "---------SB dump-----"
2495 ovn-sbctl list datapath_binding
2496 echo "---------------------"
2497 ovn-sbctl list port_binding
2498 echo "---------------------"
2499
2500 echo "------ hv1 dump ----------"
2501 as hv1 ovs-ofctl dump-flows br-int
2502 echo "------ hv2 dump ----------"
2503 as hv2 ovs-ofctl dump-flows br-int
2504
2505 # Packet to Expect at bob1
2506 src_mac="000000010205"
2507 dst_mac="f00000010205"
2508 src_ip=`ip_to_hex 192 168 1 2`
2509 dst_ip=`ip_to_hex 172 16 2 2`
2510 expected=${dst_mac}${src_mac}08004500001c000000003e110200${src_ip}${dst_ip}0035111100080000
2511
2512 $PYTHON "$top_srcdir/utilities/ovs-pcap.in" hv2/vif1-tx.pcap | trim_zeros > received.packets
2513 echo $expected | trim_zeros > expout
2514 AT_CHECK([cat received.packets], [0], [expout])
2515
2516 # Packet to Expect at alice1
2517 src_mac="000000010204"
2518 dst_mac="f00000010204"
2519 src_ip=`ip_to_hex 192 168 1 2`
2520 dst_ip=`ip_to_hex 172 16 1 2`
2521 expected=${dst_mac}${src_mac}08004500001c000000003e110200${src_ip}${dst_ip}0035111100080000
2522
2523 $PYTHON "$top_srcdir/utilities/ovs-pcap.in" hv1/vif2-tx.pcap | trim_zeros > received1.packets
2524 echo $expected | trim_zeros > expout
2525 AT_CHECK([cat received1.packets], [0], [expout])
2526
2527 for sim in hv1 hv2; do
2528     as $sim
2529     OVS_APP_EXIT_AND_WAIT([ovn-controller])
2530     OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
2531     OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2532 done
2533
2534 as ovn-sb
2535 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2536
2537 as ovn-nb
2538 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2539
2540 as northd
2541 OVS_APP_EXIT_AND_WAIT([ovn-northd])
2542
2543 as main
2544 OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
2545 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2546
2547 AT_CLEANUP
2548
2549 AT_SETUP([ovn -- send gratuitous arp on localnet])
2550 AT_KEYWORDS([ovn])
2551 ovn_start
2552 ovn-nbctl lswitch-add lsw0
2553 net_add n1
2554 sim_add hv
2555 as hv
2556 ovs-vsctl \
2557     -- add-br br-phys \
2558     -- add-br br-eth0
2559
2560 ovn_attach n1 br-phys 192.168.0.1
2561
2562 AT_CHECK([ovs-vsctl set Open_vSwitch . external-ids:ovn-bridge-mappings=physnet1:br-eth0])
2563 AT_CHECK([ovs-vsctl add-port br-eth0 snoopvif -- set Interface snoopvif options:tx_pcap=hv/snoopvif-tx.pcap options:rxq_pcap=hv/snoopvif-rx.pcap])
2564
2565 # Create a vif.
2566 AT_CHECK([ovn-nbctl lport-add lsw0 localvif1])
2567 AT_CHECK([ovn-nbctl lport-set-addresses localvif1 "f0:00:00:00:00:01 192.168.1.2"])
2568 AT_CHECK([ovn-nbctl lport-set-port-security localvif1 "f0:00:00:00:00:01"])
2569
2570 # Create a localnet port.
2571 AT_CHECK([ovn-nbctl lport-add lsw0 ln_port])
2572 AT_CHECK([ovn-nbctl lport-set-addresses ln_port unknown])
2573 AT_CHECK([ovn-nbctl lport-set-type ln_port localnet])
2574 AT_CHECK([ovn-nbctl lport-set-options ln_port network_name=physnet1])
2575
2576 AT_CHECK([ovs-vsctl add-port br-int localvif1 -- set Interface localvif1 external_ids:iface-id=localvif1])
2577
2578 # Wait for packet to be received.
2579 OVS_WAIT_UNTIL([test `wc -c < "hv/snoopvif-tx.pcap"` -ge 50])
2580 trim_zeros() {
2581     sed 's/\(00\)\{1,\}$//'
2582 }
2583 $PYTHON "$top_srcdir/utilities/ovs-pcap.in" hv/snoopvif-tx.pcap | trim_zeros > packets
2584 expected="fffffffffffff0000000000108060001080006040001f00000000001c0a80102000000000000c0a80102"
2585 echo $expected > expout
2586 AT_CHECK([sort packets], [0], [expout])
2587 cat packets
2588
2589 # Delete the localnet ports.
2590 AT_CHECK([ovs-vsctl del-port localvif1])
2591 AT_CHECK([ovn-nbctl lport-del ln_port])
2592
2593 as hv
2594 OVS_APP_EXIT_AND_WAIT([ovn-controller])
2595 OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
2596 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2597
2598 as ovn-sb
2599 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2600
2601 as ovn-nb
2602 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2603
2604 as northd
2605 OVS_APP_EXIT_AND_WAIT([ovn-northd])
2606
2607 as main
2608 OVS_APP_EXIT_AND_WAIT([ovs-vswitchd])
2609 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
2610
2611 AT_CLEANUP