4291bbebb201175dd7cd08a31d9ab739c1864053
[vpp.git] / vnet / test / lisp-cp / test_lisp_types.c
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <vnet/vnet.h>
17 #include <vppinfra/error.h>
18 #include <vnet/lisp-cp/lisp_types.h>
19 #include <vnet/lisp-cp/lisp_cp_messages.h>
20
21 #define _assert(e)                    \
22   error = CLIB_ERROR_ASSERT (e);      \
23   if (error)                          \
24     goto done;
25
26 static clib_error_t * test_locator_type (void)
27 {
28   clib_error_t * error = 0;
29   gid_address_t _gid_addr, * gid = &_gid_addr;
30   ip_prefix_t * ippref;
31   gid_address_type (gid) = GID_ADDR_IP_PREFIX;
32   gid_address_ippref_len (gid) = 24;
33   ippref = &gid_address_ippref (gid);
34   ip_prefix_version (ippref) = IP4;
35   ip_prefix_len (ippref) = 0;
36   ip4_address_t * ip4 = &ip_prefix_v4 (ippref);
37   ip4->as_u32 = 0x20304050;
38
39   /* local locator */
40   locator_t loc1, loc2 = {
41     .local = 1,
42     .state = 2,
43     .sw_if_index = 8,
44     .priority = 3,
45     .weight = 100,
46     .mpriority = 4,
47     .mweight = 101
48   };
49   locator_copy (&loc1, &loc2);
50   _assert (0 == locator_cmp (&loc1, &loc2));
51
52   /* remote locator */
53   loc2.local = 0;
54
55   ip_prefix_t nested_ippref;
56   ip_prefix_version (&nested_ippref) = IP4;
57   ip_prefix_len (&nested_ippref) = 0;
58   ip4 = &ip_prefix_v4 (&nested_ippref);
59   ip4->as_u32 = 0x33882299;
60   gid_address_t nested_gid =
61     {
62       .type = GID_ADDR_IP_PREFIX,
63       .ippref = nested_ippref
64     };
65
66   lcaf_t lcaf =
67     {
68       .type = LCAF_INSTANCE_ID,
69       .uni =
70         {
71           .vni_mask_len = 5,
72           .vni = 0xa1b2c3d4,
73           .gid_addr = &nested_gid
74         }
75     };
76   gid_address_type (gid) = GID_ADDR_LCAF;
77   gid_address_lcaf (gid) = lcaf;
78
79   loc2.address = gid[0];
80   locator_copy(&loc1, &loc2);
81
82   _assert (0 == locator_cmp (&loc1, &loc2));
83
84 done:
85   locator_free (&loc1);
86   return error;
87 }
88
89 static clib_error_t * test_gid_parse_ip_pref ()
90 {
91   clib_error_t * error = 0;
92   gid_address_t _gid_addr, * gid_addr = &_gid_addr;
93   gid_address_t _gid_addr_copy, * gid_addr_copy = &_gid_addr_copy;
94   u8 data[] =
95     {
96       0x00, 0x01,             /* AFI = IPv4 */
97       0x10, 0xbb, 0xcc, 0xdd, /* ipv4 address */
98     };
99
100   u32 len = gid_address_parse (data, gid_addr);
101   _assert (6 == len);
102   gid_address_copy (gid_addr_copy, gid_addr);
103   _assert (0 == gid_address_cmp (gid_addr_copy, gid_addr));
104 done:
105   return error;
106 }
107
108 static clib_error_t * test_gid_parse_mac ()
109 {
110   clib_error_t * error = 0;
111   gid_address_t _gid, * gid = &_gid;
112   gid_address_t _gid_copy, * gid_copy = &_gid_copy;
113
114   u8 data[] =
115     {
116       0x00, 0x06,             /* AFI = MAC address */
117       0x10, 0xbb, 0xcc, 0xdd, /* MAC */
118       0x77, 0x99,
119     };
120
121   u32 len = gid_address_parse (data, gid);
122   _assert (8 == len);
123   _assert (GID_ADDR_MAC == gid_address_type (gid));
124   gid_address_copy (gid_copy, gid);
125   _assert (0 == gid_address_cmp (gid_copy, gid));
126 done:
127   return error;
128 }
129
130 static clib_error_t * test_gid_parse_lcaf ()
131 {
132   clib_error_t * error = 0;
133   gid_address_t _gid_addr, * gid_addr = &_gid_addr;
134   gid_address_t _gid_addr_copy, * gid_addr_copy = &_gid_addr_copy;
135
136   memset (gid_addr, 0, sizeof (gid_addr[0]));
137   memset (gid_addr_copy, 0, sizeof (gid_addr_copy[0]));
138
139   u8 data[] =
140     {
141       0x40, 0x03,             /* AFI = LCAF*/
142
143       /* LCAF header*/
144       0x00, 0x00,             /* reserved1, flags */
145       0x02,                   /* type = Instance ID */
146       0x18,                   /* IID mask-len */
147       0x00, 0x0a,             /* iid length + next AFI lenght */
148       /* LCAF Instance ID */
149       0x00, 0x00, 0x00, 0x09, /* iid */
150       0x00, 0x01,             /* AFI = ipv4 */
151       0x10, 0xbb, 0xcc, 0xdd, /* ipv4 address */
152     };
153   u32 len = gid_address_parse (data, gid_addr);
154   _assert (18 == len);
155   gid_address_copy (gid_addr_copy, gid_addr);
156   _assert (0 == gid_address_cmp (gid_addr_copy, gid_addr));
157   _assert (GID_ADDR_IP_PREFIX == gid_address_type (gid_addr));
158   _assert (9 == gid_address_vni (gid_addr));
159   _assert (0x18 == gid_address_vni_mask (gid_addr));
160   _assert (0xddccbb10 == gid_addr->ippref.addr.ip.v4.as_u32);
161
162 done:
163   gid_address_free (gid_addr);
164   gid_address_free (gid_addr_copy);
165   return error;
166 }
167
168 /* recursive LCAFs are not supported */
169 #if 0
170 static clib_error_t * test_gid_parse_lcaf_complex ()
171 {
172   clib_error_t * error = 0;
173   gid_address_t _gid_addr, * gid_addr = &_gid_addr;
174   gid_address_t _gid_addr_copy, * gid_addr_copy = &_gid_addr_copy;
175
176   memset (gid_addr, 0, sizeof (gid_addr[0]));
177   memset (gid_addr_copy, 0, sizeof (gid_addr_copy[0]));
178
179   u8 data[] =
180     {
181       0x40, 0x03,             /* AFI = LCAF*/
182
183       /* LCAF header*/
184       0x00, 0x00,             /* reserved1, flags */
185       0x02,                   /* type = Instance ID */
186       0x18,                   /* IID mask-len */
187       0x00, 0x0a,             /* iid length + next AFI lenght */
188       /* LCAF Instance ID */
189       0x00, 0x00, 0x00, 0x0b, /* iid */
190
191       0x40, 0x03,             /* AFI = LCAF*/
192       /* LCAF header*/
193       0x00, 0x00,             /* reserved1, flags */
194       0x02,                   /* type = Instance ID */
195       0x17,                   /* IID mask-len */
196       0x00, 0x0a,             /* iid length + next AFI lenght */
197       /* LCAF Instance ID */
198       0x00, 0x00, 0x00, 0x0c, /* iid */
199
200       0x40, 0x03,             /* AFI = LCAF*/
201       /* LCAF header*/
202       0x00, 0x00,             /* reserved1, flags */
203       0x02,                   /* type = Instance ID */
204       0x16,                   /* IID mask-len */
205       0x00, 0x16,             /* iid length + next AFI lenght */
206       /* LCAF Instance ID */
207       0x00, 0x00, 0x00, 0x0d, /* iid */
208
209       0x00, 0x02,             /* AFI = IPv6 */
210
211       0x10, 0xbb, 0xcc, 0xdd,
212       0x10, 0xbb, 0xcc, 0xdd,
213       0x10, 0xbb, 0xcc, 0xdd,
214       0x10, 0xbb, 0xcc, 0xdd, /* ipv6 address */
215     };
216   u32 len = gid_address_parse (data, gid_addr);
217   _assert (54 == len);
218   _assert (gid_addr->type == GID_ADDR_LCAF);
219   gid_address_copy (gid_addr_copy, gid_addr);
220   _assert (0 == gid_address_cmp (gid_addr_copy, gid_addr));
221   _assert (gid_addr_copy->type == GID_ADDR_LCAF);
222
223   lcaf_t * lcaf = &gid_address_lcaf (gid_addr_copy);
224   _assert (lcaf->type == LCAF_INSTANCE_ID);
225   vni_t * v = (vni_t *) lcaf;
226   _assert (v->vni == 0x0b);
227   _assert (v->vni_mask_len == 0x18);
228
229   gid_address_t * tmp = vni_gid (v);
230   _assert (gid_address_type (tmp) == GID_ADDR_LCAF);
231   lcaf = &gid_address_lcaf (tmp);
232   _assert (lcaf->type == LCAF_INSTANCE_ID);
233
234   v = (vni_t *) lcaf;
235   _assert (v->vni == 0x0c);
236   _assert (v->vni_mask_len == 0x17);
237
238   tmp = vni_gid (v);
239   _assert (gid_address_type (tmp) == GID_ADDR_LCAF);
240   lcaf = &gid_address_lcaf (tmp);
241
242   _assert (lcaf->type == LCAF_INSTANCE_ID);
243   v = (vni_t *) lcaf;
244   _assert (v->vni == 0x0d);
245   _assert (v->vni_mask_len == 0x16);
246
247   tmp = vni_gid (v);
248   _assert (gid_address_type (tmp) == GID_ADDR_IP_PREFIX);
249
250   ip_prefix_t * ip_pref = &gid_address_ippref (tmp);
251   ip6_address_t * ip6 = &ip_prefix_v6 (ip_pref);
252   _assert (ip6->as_u32[0] == 0xddccbb10);
253   _assert (ip6->as_u32[1] == 0xddccbb10);
254   _assert (ip6->as_u32[2] == 0xddccbb10);
255   _assert (ip6->as_u32[3] == 0xddccbb10);
256   _assert (ip_prefix_version (ip_pref) == IP6);
257
258 done:
259   gid_address_free (gid_addr);
260   gid_address_free (gid_addr_copy);
261   return error;
262 }
263 #endif
264
265 #if 0 /* uncomment this once VNI is supported */
266 static clib_error_t * test_write_mac_in_lcaf (void)
267 {
268   clib_error_t * error = 0;
269
270   u8 * b = clib_mem_alloc(500);
271   memset(b, 0, 500);
272
273   gid_address_t g =
274     {
275       .mac = {0x1, 0x2, 0x3, 0x4, 0x5, 0x6},
276       .vni = 0x30,
277       .vni_mask = 0x10,
278       .type = GID_ADDR_MAC,
279     };
280
281   u16 len = gid_address_put (b, &g);
282   _assert (8 == len);
283
284   u8 expected[] =
285     {
286       0x40, 0x03,             /* AFI = LCAF */
287       0x00,                   /* reserved1 */
288       0x00,                   /* flags */
289       0x02,                   /* LCAF type = Instance ID */
290       0x20,                   /* IID/VNI mask len */
291       0x00, 0x0a,             /* length */
292       0x01, 0x02, 0x03, 0x04, /* Instance ID / VNI */
293
294       0x00, 0x06,             /* AFI = MAC */
295       0x01, 0x02, 0x03, 0x04,
296       0x05, 0x06              /* MAC */
297     }
298   _assert (0 == memcmp (expected, b, len));
299 done:
300   clib_mem_free (b);
301   return error;
302 }
303 #endif
304
305 static clib_error_t * test_mac_address_write (void)
306 {
307   clib_error_t * error = 0;
308
309   u8 * b = clib_mem_alloc(500);
310   memset(b, 0, 500);
311
312   gid_address_t g =
313     {
314       .mac = {0x1, 0x2, 0x3, 0x4, 0x5, 0x6},
315       .type = GID_ADDR_MAC,
316     };
317
318   u16 len = gid_address_put (b, &g);
319   _assert (8 == len);
320
321   u8 expected[] =
322     {
323       0x00, 0x06,             /* AFI = MAC */
324       0x01, 0x02, 0x03, 0x04,
325       0x05, 0x06              /* MAC */
326     };
327   _assert (0 == memcmp (expected, b, len));
328 done:
329   clib_mem_free (b);
330   return error;
331 }
332
333 static clib_error_t * test_gid_address_write (void)
334 {
335   clib_error_t * error = 0;
336   ip_prefix_t ippref_data, * ippref = &ippref_data;
337
338   u8 * b = clib_mem_alloc(500);
339   memset(b, 0, 500);
340
341   ip_prefix_version (ippref) = IP4;
342   ip_prefix_len (ippref) = 9;
343   ip4_address_t * ip4 = &ip_prefix_v4 (ippref);
344   ip4->as_u32 = 0xaabbccdd;
345
346   gid_address_t g =
347     {
348       .ippref = ippref[0],
349       .type = GID_ADDR_IP_PREFIX,
350       .vni = 0x01020304,
351       .vni_mask = 0x18
352     };
353
354   _assert (18 == gid_address_size_to_put (&g));
355   _assert (gid_address_len (&g) == 9);
356
357   u16 write_len = gid_address_put (b, &g);
358   _assert (18 == write_len);
359
360   u8 expected_gid_data[] =
361     {
362       0x40, 0x03,             /* AFI = LCAF */
363       0x00,                   /* reserved1 */
364       0x00,                   /* flags */
365       0x02,                   /* LCAF type = Instance ID */
366       0x18,                   /* IID/VNI mask len */
367       0x00, 0x0a,             /* length */
368       0x01, 0x02, 0x03, 0x04, /* Instance ID / VNI */
369
370       0x00, 0x01,             /* AFI = IPv4 */
371       0xdd, 0xcc, 0xbb, 0xaa, /* ipv4 addr */
372     };
373   _assert (0 == memcmp (expected_gid_data, b, sizeof (expected_gid_data)));
374 done:
375   clib_mem_free (b);
376   return error;
377 }
378
379 #define foreach_test_case                 \
380   _(locator_type)                         \
381   _(gid_parse_ip_pref)                    \
382   _(gid_parse_mac)                        \
383   _(gid_parse_lcaf)                       \
384   _(mac_address_write)                    \
385   _(gid_address_write)
386
387 int run_tests (void)
388 {
389   clib_error_t * error;
390
391 #define _(_test_name)                   \
392   error = test_ ## _test_name ();       \
393   if (error)                            \
394     {                                   \
395       clib_error_report (error);        \
396       return 0;                         \
397     }
398
399   foreach_test_case
400 #undef _
401
402   return 0;
403 }
404
405 int main()
406 {
407   return run_tests ();
408 }
409