68fcc9a95974263ddf3ea6d9c4cf739074abd1e0
[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 # Positive tests.
441 drop; => actions=drop, prereqs=1
442 next; => actions=resubmit(,27), prereqs=1
443 next(0); => actions=resubmit(,16), prereqs=1
444 next(15); => actions=resubmit(,31), prereqs=1
445 ct_next; => actions=ct(table=27,zone=NXM_NX_REG5[0..15]), prereqs=ip
446 ct_commit; => actions=ct(commit,zone=NXM_NX_REG5[0..15]), prereqs=ip
447 output; => actions=resubmit(,64), prereqs=1
448 outport="eth0"; next; outport="LOCAL"; next; => actions=set_field:0x5->reg7,resubmit(,27),set_field:0xfffe->reg7,resubmit(,27), prereqs=1
449 tcp.dst=80; => actions=set_field:80->tcp_dst, prereqs=ip.proto == 0x6 && (eth.type == 0x800 || eth.type == 0x86dd)
450 eth.dst[40] = 1; => actions=set_field:01:00:00:00:00:00/01:00:00:00:00:00->eth_dst, prereqs=1
451 vlan.pcp = 2; => actions=set_field:0x4000/0xe000->vlan_tci, prereqs=vlan.tci[12]
452 vlan.tci[13..15] = 2; => actions=set_field:0x4000/0xe000->vlan_tci, prereqs=1
453 reg0 = reg1; => actions=move:OXM_OF_PKT_REG0[0..31]->OXM_OF_PKT_REG0[32..63], prereqs=1
454 vlan.pcp = reg0[0..2]; => actions=move:OXM_OF_PKT_REG0[32..34]->NXM_OF_VLAN_TCI[13..15], prereqs=vlan.tci[12]
455 reg0[10] = vlan.pcp[1]; => actions=move:NXM_OF_VLAN_TCI[14]->OXM_OF_PKT_REG0[42], prereqs=vlan.tci[12]
456 outport = inport; => actions=move:NXM_NX_REG6[]->NXM_NX_REG7[], prereqs=1
457 inport = ""; => actions=set_field:0->reg6,set_field:0->in_port, prereqs=1
458 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
459 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]
460 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]
461 outport <-> inport; => actions=push:NXM_NX_REG6[],push:NXM_NX_REG7[],pop:NXM_NX_REG6[],pop:NXM_NX_REG7[], prereqs=1
462 ip.ttl--; => actions=dec_ttl, prereqs=ip
463 ip.ttl = 4; => actions=set_field:4->nw_ttl, prereqs=eth.type == 0x800 || eth.type == 0x86dd
464
465 # Contradictionary prerequisites (allowed but not useful):
466 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
467 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
468
469 ## Negative tests.
470
471 ; => Syntax error at `;'.
472 xyzzy; => Syntax error at `xyzzy' expecting action.
473 next; 123; => Syntax error at `123'.
474 next; xyzzy; => Syntax error at `xyzzy' expecting action.
475
476 # "drop;" must be on its own:
477 drop; next; => Syntax error at `next' expecting end of input.
478 next; drop; => Syntax error at `drop' expecting action.
479
480 # Missing ";":
481 next => Syntax error at end of input expecting ';'.
482
483 next(); => Syntax error at `)' expecting small integer.
484 next(10; => Syntax error at `;' expecting `)'.
485 next(16); => "next" argument must be in range 0 to 15.
486
487 inport[1] = 1; => Cannot select subfield of string field inport.
488 ip.proto[1] = 1; => Cannot select subfield of nominal field ip.proto.
489 eth.dst[40] == 1; => Syntax error at `==' expecting `='.
490 ip = 1; => Predicate symbol ip cannot be used in assignment.
491 ip.proto = 6; => Field ip.proto is not modifiable.
492 inport = {"a", "b"}; => Assignments require a single value.
493 inport = {}; => Syntax error at `}' expecting constant.
494 bad_prereq = 123; => Error parsing expression `xyzzy' encountered as prerequisite or predicate of initial expression: Syntax error at `xyzzy' expecting field name.
495 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'.
496 vlan.present = 0; => Predicate symbol vlan.present cannot be used in assignment.
497 reg0[0] = vlan.present; => Predicate symbol vlan.present cannot be used in assignment.
498 reg0 = reg1[0..10]; => Can't assign 11-bit value to 32-bit destination.
499 inport = reg0; => Can't assign integer field (reg0) to string field (inport).
500 inport = big_string; => String fields inport and big_string are incompatible for assignment.
501 ip.proto = reg0[0..7]; => Field ip.proto is not modifiable.
502 reg0[0] <-> vlan.present; => Predicate symbol vlan.present cannot be used in exchange.
503 reg0 <-> reg1[0..10]; => Can't exchange 32-bit field with 11-bit field.
504 inport <-> reg0; => Can't exchange string field (inport) with integer field (reg0).
505 inport <-> big_string; => String fields inport and big_string are incompatible for exchange.
506 ip.proto <-> reg0[0..7]; => Field ip.proto is not modifiable.
507 reg0[0..7] <-> ip.proto; => Field ip.proto is not modifiable.
508 ip.ttl => Syntax error at end of input expecting `--'.
509 ]])
510 sed 's/ =>.*//' test-cases.txt > input.txt
511 sed 's/.* => //' test-cases.txt > expout
512 AT_CHECK([ovstest test-ovn parse-actions < input.txt], [0], [expout])
513 AT_CLEANUP
514
515 AT_BANNER([OVN end-to-end tests])
516
517 # 3 hypervisors, one logical switch, 3 logical ports per hypervisor
518 AT_SETUP([ovn -- 3 HVs, 1 LS, 3 lports/HV])
519 AT_SKIP_IF([test $HAVE_PYTHON = no])
520 ovn_start
521
522 # Create hypervisors hv[123].
523 # Add vif1[123] to hv1, vif2[123] to hv2, vif3[123] to hv3.
524 # Add all of the vifs to a single logical switch lsw0.
525 # Turn on port security on all the vifs except vif[123]1.
526 # Make vif13, vif2[23], vif3[123] destinations for unknown MACs.
527 # Add some ACLs for Ethertypes 1234, 1235, 1236.
528 ovn-nbctl lswitch-add lsw0
529 net_add n1
530 for i in 1 2 3; do
531     sim_add hv$i
532     as hv$i
533     ovs-vsctl add-br br-phys
534     ovn_attach n1 br-phys 192.168.0.$i
535
536     for j in 1 2 3; do
537         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
538         ovn-nbctl lport-add lsw0 lp$i$j
539         if test $j = 1; then
540             ovn-nbctl lport-set-addresses lp$i$j f0:00:00:00:00:$i$j unknown
541         else
542             ovn-nbctl lport-set-addresses lp$i$j f0:00:00:00:00:$i$j
543             ovn-nbctl lport-set-port-security lp$i$j f0:00:00:00:00:$i$j
544         fi
545     done
546 done
547 ovn-nbctl acl-add lsw0 from-lport 1000 'eth.type == 0x1234' drop
548 ovn-nbctl acl-add lsw0 from-lport 1000 'eth.type == 0x1235 && inport == "lp11"' drop
549 ovn-nbctl acl-add lsw0 to-lport 1000 'eth.type == 0x1236 && outport == "lp33"' drop
550
551 # Pre-populate the hypervisors' ARP tables so that we don't lose any
552 # packets for ARP resolution (native tunneling doesn't queue packets
553 # for ARP resolution).
554 ovn_populate_arp
555
556 # Allow some time for ovn-northd and ovn-controller to catch up.
557 # XXX This should be more systematic.
558 sleep 1
559 ovn-sbctl dump-flows -- list multicast_group
560
561 # test_packet INPORT DST SRC ETHTYPE OUTPORT...
562 #
563 # This shell function causes a packet to be received on INPORT.  The packet's
564 # content has Ethernet destination DST and source SRC (each exactly 12 hex
565 # digits) and Ethernet type ETHTYPE (4 hex digits).  The OUTPORTs (zero or
566 # more) list the VIFs on which the packet should be received.  INPORT and the
567 # OUTPORTs are specified as lport numbers, e.g. 11 for vif11.
568 trim_zeros() {
569     sed 's/\(00\)\{1,\}$//'
570 }
571 for i in 1 2 3; do
572     for j in 1 2 3; do
573         : > $i$j.expected
574     done
575 done
576 test_packet() {
577     local inport=$1 packet=$2$3$4; shift; shift; shift; shift
578     hv=hv`echo $inport | sed 's/^\(.\).*/\1/'`
579     vif=vif$inport
580     as $hv ovs-appctl netdev-dummy/receive $vif $packet
581     for outport; do
582         echo $packet | trim_zeros >> $outport.expected
583     done
584 }
585
586 # Send packets between all pairs of source and destination ports:
587 #
588 # 1. Unicast packets are delivered to exactly one lport (except that packets
589 #    destined to their input ports are dropped).
590 #
591 # 2. Broadcast and multicast are delivered to all lports except the input port.
592 #
593 # 3. When port security is turned on, the lswitch drops packets from the wrong
594 #    MAC address.
595 #
596 # 4. The lswitch drops all packets with a VLAN tag.
597 #
598 # 5. The lswitch drops all packets with a multicast source address.  (This only
599 #    affects behavior when port security is turned off, since otherwise port
600 #    security would drop the packet anyway.)
601 #
602 # 6. The lswitch delivers packets with an unknown destination to lports with
603 #    "unknown" among their MAC addresses (and port security disabled).
604 #
605 # 7. The lswitch drops unicast packets that violate an ACL.
606 #
607 # 8. The lswitch drops multicast and broadcast packets that violate an ACL.
608 for is in 1 2 3; do
609     for js in 1 2 3; do
610         s=$is$js
611         bcast=
612         unknown=
613         bacl2=
614         bacl3=
615         for id in 1 2 3; do
616             for jd in 1 2 3; do
617                 d=$id$jd
618
619                 if test $d != $s; then unicast=$d; else unicast=; fi
620                 test_packet $s f000000000$d f000000000$s $s$d $unicast     #1
621
622                 if test $d != $s && test $js = 1; then
623                     impersonate=$d
624                 else
625                     impersonate=
626                 fi
627                 test_packet $s f000000000$d f00000000055 55$d $impersonate #3
628
629                 if test $d != $s && test $s != 11; then acl2=$d; else acl2=; fi
630                 if test $d != $s && test $d != 33; then acl3=$d; else acl3=; fi
631                 test_packet $s f000000000$d f000000000$s 1234        #7, acl1
632                 test_packet $s f000000000$d f000000000$s 1235 $acl2  #7, acl2
633                 test_packet $s f000000000$d f000000000$s 1236 $acl3  #7, acl3
634
635                 test_packet $s f000000000$d f00000000055 810000091234      #4
636                 test_packet $s f000000000$d 0100000000$s $s$d              #5
637
638                 if test $d != $s && test $jd = 1; then
639                     unknown="$unknown $d"
640                 fi
641                 bcast="$bcast $unicast"
642                 bacl2="$bacl2 $acl2"
643                 bacl3="$bacl3 $acl3"
644             done
645         done
646
647         # Broadcast and multicast.
648         test_packet $s ffffffffffff f000000000$s ${s}ff $bcast             #2
649         test_packet $s 010000000000 f000000000$s ${s}ff $bcast             #2
650         if test $js = 1; then
651             bcast_impersonate=$bcast
652         else
653             bcast_impersonate=
654         fi
655         test_packet $s 010000000000 f00000000044 44ff $bcast_impersonate   #3
656
657         test_packet $s f0000000ffff f000000000$s ${s}66 $unknown           #6
658
659         test_packet $s ffffffffffff f000000000$s 1234                #8, acl1
660         test_packet $s ffffffffffff f000000000$s 1235 $bacl2         #8, acl2
661         test_packet $s ffffffffffff f000000000$s 1236 $bacl3         #8, acl3
662         test_packet $s 010000000000 f000000000$s 1234                #8, acl1
663         test_packet $s 010000000000 f000000000$s 1235 $bacl2         #8, acl2
664         test_packet $s 010000000000 f000000000$s 1236 $bacl3         #8, acl3
665     done
666 done
667
668 # Allow some time for packet forwarding.
669 # XXX This can be improved.
670 sleep 1
671
672 # Now check the packets actually received against the ones expected.
673 for i in 1 2 3; do
674     for j in 1 2 3; do
675         file=hv$i/vif$i$j-tx.pcap
676         echo $file
677         $PYTHON "$top_srcdir/utilities/ovs-pcap.in" $file | trim_zeros > $i$j.packets
678         cp $i$j.expected expout
679         AT_CHECK([cat $i$j.packets], [0], [expout])
680         echo
681     done
682 done
683 AT_CLEANUP
684
685 AT_SETUP([ovn -- 3 HVs, 1 VIFs/HV, 1 GW, 1 LS])
686 AT_SKIP_IF([test $HAVE_PYTHON = no])
687 ovn_start
688
689 # Configure the Northbound database
690 ovn-nbctl lswitch-add lsw0
691
692 ovn-nbctl lport-add lsw0 lp1
693 ovn-nbctl lport-set-addresses lp1 f0:00:00:00:00:01
694
695 ovn-nbctl lport-add lsw0 lp2
696 ovn-nbctl lport-set-addresses lp2 f0:00:00:00:00:02
697
698 ovn-nbctl lport-add lsw0 lp-vtep
699 ovn-nbctl lport-set-type lp-vtep vtep
700 ovn-nbctl lport-set-options lp-vtep vtep-physical-switch=br-vtep vtep-logical-switch=lsw0
701 ovn-nbctl lport-set-addresses lp-vtep unknown
702
703 net_add n1               # Network to connect hv1, hv2, and vtep
704 net_add n2               # Network to connect vtep and hv3
705
706 # Create hypervisor hv1 connected to n1
707 sim_add hv1
708 as hv1
709 ovs-vsctl add-br br-phys
710 ovn_attach n1 br-phys 192.168.0.1
711 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
712
713 # Create hypervisor hv2 connected to n1
714 sim_add hv2
715 as hv2
716 ovs-vsctl add-br br-phys
717 ovn_attach n1 br-phys 192.168.0.2
718 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
719
720
721 # Start the vtep emulator with a leg in both networks
722 sim_add vtep
723 as vtep
724
725 ovsdb-tool create "$ovs_base"/vtep/vtep.db "$abs_top_srcdir"/vtep/vtep.ovsschema || return 1
726 ovs-appctl -t ovsdb-server ovsdb-server/add-db "$ovs_base"/vtep/vtep.db
727
728 ovs-vsctl add-br br-phys
729 net_attach n1 br-phys
730
731 mac=`ovs-vsctl get Interface br-phys mac_in_use | sed s/\"//g`
732 arp_table="$arp_table $sandbox,br-phys,192.168.0.3,$mac"
733 ovs-appctl netdev-dummy/ip4addr br-phys 192.168.0.3/24 >/dev/null || return 1
734 ovs-appctl ovs/route/add 192.168.0.3/24 br-phys >/dev/null || return 1
735
736 ovs-vsctl add-br br-vtep
737 net_attach n2 br-vtep
738
739 vtep-ctl add-ps br-vtep
740 vtep-ctl set Physical_Switch br-vtep tunnel_ips=192.168.0.3
741 vtep-ctl add-ls lsw0
742
743 start_daemon ovs-vtep br-vtep
744 start_daemon ovn-controller-vtep --vtep-db=unix:"$ovs_base"/vtep/db.sock --ovnsb-db=unix:"$ovs_base"/ovn-sb/ovn-sb.sock
745
746 sleep 1
747
748 vtep-ctl bind-ls br-vtep br-vtep_n2 0 lsw0
749
750 sleep 1
751
752 # Add hv3 on the other side of the vtep
753 sim_add hv3
754 as hv3
755 ovs-vsctl add-br br-phys
756 net_attach n2 br-phys
757
758 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
759
760 # Pre-populate the hypervisors' ARP tables so that we don't lose any
761 # packets for ARP resolution (native tunneling doesn't queue packets
762 # for ARP resolution).
763 ovn_populate_arp
764
765 # Allow some time for ovn-northd and ovn-controller to catch up.
766 # XXX This should be more systematic.
767 sleep 1
768 ovn-sbctl show
769
770 # test_packet INPORT DST SRC ETHTYPE OUTPORT...
771 #
772 # This shell function causes a packet to be received on INPORT.  The packet's
773 # content has Ethernet destination DST and source SRC (each exactly 12 hex
774 # digits) and Ethernet type ETHTYPE (4 hex digits).  The OUTPORTs (zero or
775 # more) list the VIFs on which the packet should be received.  INPORT and the
776 # OUTPORTs are specified as lport numbers, e.g. 1 for vif1.
777 trim_zeros() {
778     sed 's/\(00\)\{1,\}$//'
779 }
780 for i in 1 2 3; do
781     : > $i.expected
782 done
783 test_packet() {
784     local inport=$1 packet=$2$3$4; shift; shift; shift; shift
785     #hv=hv`echo $inport | sed 's/^\(.\).*/\1/'`
786     hv=hv$inport
787     vif=vif$inport
788     as $hv ovs-appctl netdev-dummy/receive $vif $packet
789     for outport; do
790         echo $packet | trim_zeros >> $outport.expected
791     done
792 }
793
794 # Send packets between all pairs of source and destination ports:
795 #
796 # 1. Unicast packets are delivered to exactly one lport (except that packets
797 #    destined to their input ports are dropped).
798 #
799 # 2. Broadcast and multicast are delivered to all lports except the input port.
800 #
801 # 3. The lswitch delivers packets with an unknown destination to lports with
802 #    "unknown" among their MAC addresses (and port security disabled).
803 for s in 1 2 3; do
804     bcast=
805     unknown=
806     for d in 1 2 3; do
807         if test $d != $s; then unicast=$d; else unicast=; fi
808         test_packet $s f0000000000$d f0000000000$s 00$s$d $unicast       #1
809
810         # The vtep (vif3) is the only one configured for "unknown"
811         if test $d != $s && test $d = 3; then
812             unknown="$unknown $d"
813         fi
814         bcast="$bcast $unicast"
815     done
816
817     # Broadcast and multicast.
818     # xxx ovn-controller-vtep doesn't handle multicast traffic that is
819     # xxx sourced from the gateway properly.
820     #test_packet $s ffffffffffff f0000000000$s 0${s}ff $bcast             #2
821     #test_packet $s 010000000000 f0000000000$s 0${s}ff $bcast             #2
822
823     test_packet $s f0000000ffff f0000000000$s 0${s}66 $unknown           #3
824 done
825
826 # Allow some time for packet forwarding.
827 # XXX This can be improved.
828 sleep 1
829
830 # Now check the packets actually received against the ones expected.
831 for i in 1 2 3; do
832     file=hv$i/vif$i-tx.pcap
833     echo $file
834     $PYTHON "$top_srcdir/utilities/ovs-pcap.in" $file | trim_zeros > $i.packets
835     cp $i.expected expout
836     AT_CHECK([cat $i.packets], [0], [expout])
837     echo
838 done
839 AT_CLEANUP
840
841 # 3 hypervisors, 3 logical switches with 3 logical ports each, 1 logical router
842 AT_SETUP([ovn -- 3 HVs, 3 LS, 3 lports/LS, 1 LR])
843 AT_SKIP_IF([test $HAVE_PYTHON = no])
844 ovn_start
845
846 # Logical network:
847 #
848 # Three logical switches ls1, ls2, ls3.
849 # One logical router lr0 connected to ls[123],
850 # with nine subnets, three per logical switch:
851 #
852 #    lrp11 on ls1 for subnet 192.168.11.0/24
853 #    lrp12 on ls1 for subnet 192.168.12.0/24
854 #    lrp13 on ls1 for subnet 192.168.13.0/24
855 #    ...
856 #    lrp33 on ls3 for subnet 192.168.33.0/24
857 #
858 # 27 VIFs, 9 per LS, 3 per subnet: lp[123][123][123], where the first two
859 # digits are the subnet and the last digit distinguishes the VIF.
860 for i in 1 2 3; do
861     ovn-nbctl lswitch-add ls$i
862     for j in 1 2 3; do
863         for k in 1 2 3; do
864             ovn-nbctl \
865                 -- lport-add ls$i lp$i$j$k \
866                 -- lport-set-addresses lp$i$j$k "f0:00:00:00:0$i:$j$k 192.168.$i$j.$k"
867         done
868     done
869 done
870
871 ovn-nbctl create Logical_Router name=lr0
872 for i in 1 2 3; do
873     for j in 1 2 3; do
874         lrp_uuid=`ovn-nbctl \
875             -- --id=@lrp create Logical_Router_Port name=lrp$i$j \
876                network=192.168.$i$j.254/24 mac='"00:00:00:00:ff:'$i$j'"' \
877             -- add Logical_Router lr0 ports @lrp \
878             -- lport-add ls$i lrp$i$j-attachment`
879         ovn-nbctl \
880             set Logical_Port lrp$i$j-attachment type=router \
881                              options:router-port=$lrp_uuid \
882                              addresses='"00:00:00:00:ff:'$i$j'"'
883     done
884 done
885
886 # Physical network:
887 #
888 # Three hypervisors hv[123].
889 # lp?1[123] spread across hv[123]: lp?11 on hv1, lp?12 on hv2, lp?13 on hv3.
890 # lp?2[123] spread across hv[23]: lp?21 and lp?22 on hv2, lp?23 on hv3.
891 # lp?3[123] all on hv3.
892
893
894 # Given the name of a logical port, prints the name of the hypervisor
895 # on which it is located.
896 vif_to_hv() {
897     case $1 in dnl (
898         ?11) echo 1 ;; dnl (
899         ?12 | ?21 | ?22) echo 2 ;; dnl (
900         ?13 | ?23 | ?3?) echo 3 ;;
901     esac
902 }
903
904 # Given the name of a logical port, prints the name of its logical router
905 # port, e.g. "vif_to_lrp 123" yields 12.
906 vif_to_lrp() {
907     echo ${1%?}
908 }
909
910 # Given the name of a logical port, prints the name of its logical
911 # switch, e.g. "vif_to_ls 123" yields 1.
912 vif_to_ls() {
913     echo ${1%??}
914 }
915
916 net_add n1
917 for i in 1 2 3; do
918     sim_add hv$i
919     as hv$i
920     ovs-vsctl add-br br-phys
921     ovn_attach n1 br-phys 192.168.0.$i
922 done
923 for i in 1 2 3; do
924     for j in 1 2 3; do
925         for k in 1 2 3; do
926             hv=`vif_to_hv $i$j$k`
927             as hv$hv ovs-vsctl \
928                 -- add-port br-int vif$i$j$k \
929                 -- set Interface vif$i$j$k \
930                        external-ids:iface-id=lp$i$j$k \
931                        options:tx_pcap=hv$hv/vif$i$j$k-tx.pcap \
932                        options:rxq_pcap=hv$hv/vif$i$j$k-rx.pcap \
933                        ofport-request=$i$j$k
934         done
935     done
936 done
937
938 # Pre-populate the hypervisors' ARP tables so that we don't lose any
939 # packets for ARP resolution (native tunneling doesn't queue packets
940 # for ARP resolution).
941 ovn_populate_arp
942
943 # Allow some time for ovn-northd and ovn-controller to catch up.
944 # XXX This should be more systematic.
945 sleep 1
946
947 # test_ip INPORT SRC_MAC DST_MAC SRC_IP DST_IP OUTPORT...
948 #
949 # This shell function causes a packet to be received on INPORT.  The packet's
950 # content has Ethernet destination DST and source SRC (each exactly 12 hex
951 # digits) and Ethernet type ETHTYPE (4 hex digits).  The OUTPORTs (zero or
952 # more) list the VIFs on which the packet should be received.  INPORT and the
953 # OUTPORTs are specified as lport numbers, e.g. 11 for vif11.
954 trim_zeros() {
955     sed 's/\(00\)\{1,\}$//'
956 }
957 for i in 1 2 3; do
958     for j in 1 2 3; do
959         for k in 1 2 3; do
960             : > $i$j$k.expected
961         done
962     done
963 done
964 test_ip() {
965     # This packet has bad checksums but logical L3 routing doesn't check.
966     local inport=$1 src_mac=$2 dst_mac=$3 src_ip=$4 dst_ip=$5
967     local packet=$3$208004500001c0000000040110000$4$50035111100080000
968     shift; shift; shift; shift; shift
969     hv=hv`vif_to_hv $inport`
970     as $hv ovs-appctl netdev-dummy/receive vif$inport $packet
971     #as $hv ovs-appctl ofproto/trace br-int in_port=$inport $packet
972     in_ls=`vif_to_ls $inport`
973     in_lrp=`vif_to_lrp $inport`
974     for outport; do
975         out_ls=`vif_to_ls $outport`
976         if test $in_ls = $out_ls; then
977             # Ports on the same logical switch receive exactly the same packet.
978             echo $packet
979         else
980             # Routing decrements TTL and updates source and dest MAC
981             # (and checksum).
982             out_lrp=`vif_to_lrp $outport`
983             echo f00000000${outport}00000000ff${out_lrp}08004500001c00000000"3f1101"00${src_ip}${dst_ip}0035111100080000
984         fi | trim_zeros >> $outport.expected
985     done
986 }
987
988 as hv1 ovs-vsctl --columns=name,ofport list interface
989 as hv1 ovn-sbctl dump-flows
990 as hv1 ovs-ofctl dump-flows br-int
991
992 # Send IP packets between all pairs of source and destination ports:
993 #
994 # 1. Unicast IP packets are delivered to exactly one lport (except
995 #    that packets destined to their input ports are dropped).
996 #
997 # 2. Broadcast IP packets are delivered to all lports except the input port.
998 ip_to_hex() {
999     printf "%02x%02x%02x%02x" "$@"
1000 }
1001 for is in 1 2 3; do
1002     for js in 1 2 3; do
1003         for ks in 1 2 3; do
1004             bcast=
1005             s=$is$js$ks
1006             smac=f00000000$s
1007             sip=`ip_to_hex 192 168 $is$js $ks`
1008             for id in 1 2 3; do
1009                 for jd in 1 2 3; do
1010                     for kd in 1 2 3; do
1011                         d=$id$jd$kd
1012                         dip=`ip_to_hex 192 168 $id$jd $kd`
1013                         if test $is = $id; then dmac=f00000000$d; else dmac=00000000ff$is$js; fi
1014                         if test $d != $s; then unicast=$d; else unicast=; fi
1015
1016                         test_ip $s $smac $dmac $sip $dip $unicast #1
1017
1018                         if test $id = $is && test $d != $s; then bcast="$bcast $d"; fi
1019                     done
1020                 done
1021             done
1022             test_ip $s $smac ffffffffffff $sip ffffffff $bcast #2
1023         done
1024     done
1025 done
1026
1027 # test_arp INPORT SHA SPA TPA [REPLY_HA]
1028 #
1029 # Causes a packet to be received on INPORT.  The packet is an ARP
1030 # request with SHA, SPA, and TPA as specified.  If REPLY_HA is provided, then
1031 # it should be the hardware address of the target to expect to receive in an
1032 # ARP reply; otherwise no reply is expected.
1033 #
1034 # INPORT is an lport number, e.g. 11 for vif11.
1035 # SHA and REPLY_HA are each 12 hex digits.
1036 # SPA and TPA are each 8 hex digits.
1037 test_arp() {
1038     local inport=$1 sha=$2 spa=$3 tpa=$4 reply_ha=$5
1039     local request=ffffffffffff${sha}08060001080006040001${sha}${spa}ffffffffffff${tpa}
1040     hv=hv`vif_to_hv $inport`
1041     as $hv ovs-appctl netdev-dummy/receive vif$inport $request
1042     #as $hv ovs-appctl ofproto/trace br-int in_port=$inport $request
1043
1044     # Expect to receive the broadcast ARP on the other logical switch ports.
1045     # (OVN should probably suppress these.)
1046     local i=`vif_to_ls $inport`
1047     local j k
1048     for j in 1 2 3; do
1049         for k in 1 2 3; do
1050             if test $i$j$k != $inport; then
1051                 echo $request >> $i$j$k.expected
1052             fi
1053         done
1054     done
1055
1056     # Expect to receive the reply, if any.
1057     if test X$reply_ha != X; then
1058         lrp=`vif_to_lrp $inport`
1059         local reply=${sha}00000000ff${lrp}08060001080006040002${reply_ha}${tpa}${sha}${spa}
1060         echo $reply >> $inport.expected
1061     fi
1062 }
1063
1064 # Test router replies to ARP requests from all source ports:
1065 #
1066 # 3. Router replies to query for its MAC address from port's own IP address.
1067 #
1068 # 4. Router replies to query for its MAC address from any random IP address
1069 #    in its subnet.
1070 #
1071 # 5. Router replies to query for its MAC address from another subnet.
1072 #
1073 # 6. No reply to query for IP address other than router IP.
1074 for i in 1 2 3; do
1075     for j in 1 2 3; do
1076         for k in 1 2 3; do
1077             smac=f00000000$i$j$k               # Source MAC
1078             sip=`ip_to_hex 192 168 $i$j $k`    # Source IP
1079             rip=`ip_to_hex 192 168 $i$j 254`   # Router IP
1080             rmac=00000000ff$i$j                # Router MAC
1081             otherip=`ip_to_hex 192 168 $i$j 55` # Some other IP in subnet
1082             test_arp $i$j$k $smac $sip        $rip        $rmac #3
1083             test_arp $i$j$k $smac $otherip    $rip        $rmac #4
1084             test_arp $i$j$k $smac 0a123456    $rip        $rmac #5
1085             test_arp $i$j$k $smac $sip        $otherip          #6
1086         done
1087     done
1088 done
1089 # Allow some time for packet forwarding.
1090 # XXX This can be improved.
1091 sleep 1
1092
1093 # Now check the packets actually received against the ones expected.
1094 for i in 1 2 3; do
1095     for j in 1 2 3; do
1096         for k in 1 2 3; do
1097             file=hv`vif_to_hv $i$j$k`/vif$i$j$k-tx.pcap
1098             echo $file
1099             $PYTHON "$top_srcdir/utilities/ovs-pcap.in" $file | trim_zeros > $i$j$k.packets
1100             cp $i$j$k.expected expout
1101             AT_CHECK([cat $i$j$k.packets], [0], [expout])
1102             echo
1103         done
1104     done
1105 done
1106 AT_CLEANUP