blob: 811a0abc0401f6fc12efb1f489a41edc500f4637 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * map.c : MAP support
3 *
4 * Copyright (c) 2015 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
Neale Ranns0bfe5d82016-08-25 15:29:12 +010018#include <vnet/fib/fib_table.h>
19#include <vnet/fib/ip6_fib.h>
20#include <vnet/adj/adj.h>
21#include <vnet/map/map_dpo.h>
22
Ed Warnickecb9cada2015-12-08 15:45:58 -070023#include "map.h"
24
Damjan Marionc967a822016-10-28 22:35:17 +020025#ifdef __SSE4_2__
26static inline u32
27crc_u32 (u32 data, u32 value)
28{
29 __asm__ volatile ("crc32l %[data], %[value];":[value] "+r" (value):[data]
30 "rm" (data));
31 return value;
32}
33#else
Dave Barachbfdedbd2016-01-20 09:11:55 -050034#include <vppinfra/xxhash.h>
35
36static inline u32
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070037crc_u32 (u32 data, u32 value)
Dave Barachbfdedbd2016-01-20 09:11:55 -050038{
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070039 u64 tmp = ((u64) data << 32) | (u64) value;
40 return (u32) clib_xxhash (tmp);
Dave Barachbfdedbd2016-01-20 09:11:55 -050041}
42#endif
43
Neale Ranns80823802017-02-20 18:23:41 -080044
Ed Warnickecb9cada2015-12-08 15:45:58 -070045/*
46 * This code supports the following MAP modes:
Damjan Marion607de1a2016-08-16 22:53:54 +020047 *
Ed Warnickecb9cada2015-12-08 15:45:58 -070048 * Algorithmic Shared IPv4 address (ea_bits_len > 0):
49 * ea_bits_len + ip4_prefix > 32
50 * psid_length > 0, ip6_prefix < 64, ip4_prefix <= 32
51 * Algorithmic Full IPv4 address (ea_bits_len > 0):
52 * ea_bits_len + ip4_prefix = 32
53 * psid_length = 0, ip6_prefix < 64, ip4_prefix <= 32
54 * Algorithmic IPv4 prefix (ea_bits_len > 0):
55 * ea_bits_len + ip4_prefix < 32
56 * psid_length = 0, ip6_prefix < 64, ip4_prefix <= 32
57 *
58 * Independent Shared IPv4 address (ea_bits_len = 0):
59 * ip4_prefix = 32
60 * psid_length > 0
61 * Rule IPv6 address = 128, Rule PSID Set
62 * Independent Full IPv4 address (ea_bits_len = 0):
63 * ip4_prefix = 32
64 * psid_length = 0, ip6_prefix = 128
65 * Independent IPv4 prefix (ea_bits_len = 0):
66 * ip4_prefix < 32
67 * psid_length = 0, ip6_prefix = 128
68 *
69 */
70
71/*
72 * This code supports MAP-T:
73 *
74 * With DMR prefix length equal to 96.
75 *
76 */
77
78
79i32
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070080ip4_get_port (ip4_header_t * ip, map_dir_e dir, u16 buffer_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -070081{
82 //TODO: use buffer length
83 if (ip->ip_version_and_header_length != 0x45 ||
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070084 ip4_get_fragment_offset (ip))
85 return -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -070086
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070087 if (PREDICT_TRUE ((ip->protocol == IP_PROTOCOL_TCP) ||
88 (ip->protocol == IP_PROTOCOL_UDP)))
89 {
90 udp_header_t *udp = (void *) (ip + 1);
91 return (dir == MAP_SENDER) ? udp->src_port : udp->dst_port;
Ed Warnickecb9cada2015-12-08 15:45:58 -070092 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070093 else if (ip->protocol == IP_PROTOCOL_ICMP)
94 {
95 icmp46_header_t *icmp = (void *) (ip + 1);
96 if (icmp->type == ICMP4_echo_request || icmp->type == ICMP4_echo_reply)
97 {
98 return *((u16 *) (icmp + 1));
99 }
100 else if (clib_net_to_host_u16 (ip->length) >= 64)
101 {
102 ip = (ip4_header_t *) (icmp + 2);
103 if (PREDICT_TRUE ((ip->protocol == IP_PROTOCOL_TCP) ||
104 (ip->protocol == IP_PROTOCOL_UDP)))
105 {
106 udp_header_t *udp = (void *) (ip + 1);
107 return (dir == MAP_SENDER) ? udp->dst_port : udp->src_port;
108 }
109 else if (ip->protocol == IP_PROTOCOL_ICMP)
110 {
111 icmp46_header_t *icmp = (void *) (ip + 1);
112 if (icmp->type == ICMP4_echo_request ||
113 icmp->type == ICMP4_echo_reply)
114 {
115 return *((u16 *) (icmp + 1));
116 }
117 }
118 }
119 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 return -1;
121}
122
123i32
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700124ip6_get_port (ip6_header_t * ip6, map_dir_e dir, u16 buffer_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125{
126 u8 l4_protocol;
127 u16 l4_offset;
128 u16 frag_offset;
129 u8 *l4;
130
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700131 if (ip6_parse (ip6, buffer_len, &l4_protocol, &l4_offset, &frag_offset))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132 return -1;
133
134 //TODO: Use buffer length
135
136 if (frag_offset &&
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700137 ip6_frag_hdr_offset (((ip6_frag_hdr_t *)
138 u8_ptr_add (ip6, frag_offset))))
139 return -1; //Can't deal with non-first fragment for now
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700141 l4 = u8_ptr_add (ip6, l4_offset);
142 if (l4_protocol == IP_PROTOCOL_TCP || l4_protocol == IP_PROTOCOL_UDP)
143 {
144 return (dir ==
Ed Warnicke853e7202016-08-12 11:42:26 -0700145 MAP_SENDER) ? ((udp_header_t *) (l4))->src_port : ((udp_header_t
146 *)
147 (l4))->dst_port;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700149 else if (l4_protocol == IP_PROTOCOL_ICMP6)
150 {
151 icmp46_header_t *icmp = (icmp46_header_t *) (l4);
152 if (icmp->type == ICMP6_echo_request)
153 {
154 return (dir == MAP_SENDER) ? ((u16 *) (icmp))[2] : -1;
155 }
156 else if (icmp->type == ICMP6_echo_reply)
157 {
158 return (dir == MAP_SENDER) ? -1 : ((u16 *) (icmp))[2];
159 }
160 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161 return -1;
162}
163
164
165int
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700166map_create_domain (ip4_address_t * ip4_prefix,
167 u8 ip4_prefix_len,
168 ip6_address_t * ip6_prefix,
169 u8 ip6_prefix_len,
170 ip6_address_t * ip6_src,
171 u8 ip6_src_len,
172 u8 ea_bits_len,
173 u8 psid_offset,
174 u8 psid_length, u32 * map_domain_index, u16 mtu, u8 flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175{
Ole Troan07e7eab2016-08-25 00:24:08 +0200176 u8 suffix_len, suffix_shift;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100177 map_main_t *mm = &map_main;
Neale Ranns948e00f2016-10-20 13:39:34 +0100178 dpo_id_t dpo_v4 = DPO_INVALID;
179 dpo_id_t dpo_v6 = DPO_INVALID;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100180 map_domain_t *d;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182 /* Sanity check on the src prefix length */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700183 if (flags & MAP_DOMAIN_TRANSLATION)
184 {
185 if (ip6_src_len != 96)
186 {
187 clib_warning ("MAP-T only supports ip6_src_len = 96 for now.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 return -1;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700189 }
190 }
191 else
192 {
193 if (ip6_src_len != 128)
194 {
195 clib_warning
Ole Troan07e7eab2016-08-25 00:24:08 +0200196 ("MAP-E requires a BR address, not a prefix (ip6_src_len should "
197 "be 128).");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198 return -1;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700199 }
200 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201
Ole Troan07e7eab2016-08-25 00:24:08 +0200202 /* How many, and which bits to grab from the IPv4 DA */
203 if (ip4_prefix_len + ea_bits_len < 32)
204 {
205 flags |= MAP_DOMAIN_PREFIX;
Ole Troand575e692016-08-25 12:26:47 +0200206 suffix_shift = 32 - ip4_prefix_len - ea_bits_len;
207 suffix_len = ea_bits_len;
Ole Troan07e7eab2016-08-25 00:24:08 +0200208 }
209 else
210 {
211 suffix_shift = 0;
212 suffix_len = 32 - ip4_prefix_len;
213 }
214
215 /* EA bits must be within the first 64 bits */
216 if (ea_bits_len > 0 && ((ip6_prefix_len + ea_bits_len) > 64 ||
217 ip6_prefix_len + suffix_len + psid_length > 64))
218 {
219 clib_warning
220 ("Embedded Address bits must be within the first 64 bits of "
221 "the IPv6 prefix");
222 return -1;
223 }
224
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225 /* Get domain index */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700226 pool_get_aligned (mm->domains, d, CLIB_CACHE_LINE_BYTES);
227 memset (d, 0, sizeof (*d));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228 *map_domain_index = d - mm->domains;
229
230 /* Init domain struct */
231 d->ip4_prefix.as_u32 = ip4_prefix->as_u32;
232 d->ip4_prefix_len = ip4_prefix_len;
233 d->ip6_prefix = *ip6_prefix;
234 d->ip6_prefix_len = ip6_prefix_len;
235 d->ip6_src = *ip6_src;
236 d->ip6_src_len = ip6_src_len;
237 d->ea_bits_len = ea_bits_len;
238 d->psid_offset = psid_offset;
239 d->psid_length = psid_length;
240 d->mtu = mtu;
241 d->flags = flags;
Ole Troan07e7eab2016-08-25 00:24:08 +0200242 d->suffix_shift = suffix_shift;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700243 d->suffix_mask = (1 << suffix_len) - 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244
245 d->psid_shift = 16 - psid_length - psid_offset;
246 d->psid_mask = (1 << d->psid_length) - 1;
247 d->ea_shift = 64 - ip6_prefix_len - suffix_len - d->psid_length;
248
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100249 /* MAP data-plane object */
250 if (d->flags & MAP_DOMAIN_TRANSLATION)
251 map_t_dpo_create (DPO_PROTO_IP4, *map_domain_index, &dpo_v4);
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700252 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100253 map_dpo_create (DPO_PROTO_IP4, *map_domain_index, &dpo_v4);
254
255 /* Create ip4 route */
256 fib_prefix_t pfx = {
257 .fp_proto = FIB_PROTOCOL_IP4,
258 .fp_len = d->ip4_prefix_len,
259 .fp_addr = {
260 .ip4 = d->ip4_prefix,
261 }
262 ,
263 };
264 fib_table_entry_special_dpo_add (0, &pfx,
265 FIB_SOURCE_MAP,
266 FIB_ENTRY_FLAG_EXCLUSIVE, &dpo_v4);
267 dpo_reset (&dpo_v4);
268
269 /*
Neale Ranns9705c382017-02-20 20:29:41 -0800270 * construct a DPO to use the v6 domain
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100271 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100272 if (d->flags & MAP_DOMAIN_TRANSLATION)
273 map_t_dpo_create (DPO_PROTO_IP6, *map_domain_index, &dpo_v6);
274 else
275 map_dpo_create (DPO_PROTO_IP6, *map_domain_index, &dpo_v6);
276
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100277 /*
Neale Ranns9705c382017-02-20 20:29:41 -0800278 * Multiple MAP domains may share same source IPv6 TEP. Which is just dandy.
279 * We are not tracking the sharing. So a v4 lookup to find the correct
280 * domain post decap/trnaslate is always done
281 *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100282 * Create ip6 route. This is a reference counted add. If the prefix
283 * already exists and is MAP sourced, it is now MAP source n+1 times
284 * and will need to be removed n+1 times.
285 */
Neale Ranns9705c382017-02-20 20:29:41 -0800286 fib_prefix_t pfx6 = {
287 .fp_proto = FIB_PROTOCOL_IP6,
288 .fp_len = d->ip6_src_len,
289 .fp_addr.ip6 = d->ip6_src,
290 };
291
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100292 fib_table_entry_special_dpo_add (0, &pfx6,
293 FIB_SOURCE_MAP,
294 FIB_ENTRY_FLAG_EXCLUSIVE, &dpo_v6);
295 dpo_reset (&dpo_v6);
296
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 /* Validate packet/byte counters */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700298 map_domain_counter_lock (mm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 int i;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700300 for (i = 0; i < vec_len (mm->simple_domain_counters); i++)
301 {
302 vlib_validate_simple_counter (&mm->simple_domain_counters[i],
303 *map_domain_index);
304 vlib_zero_simple_counter (&mm->simple_domain_counters[i],
305 *map_domain_index);
306 }
307 for (i = 0; i < vec_len (mm->domain_counters); i++)
308 {
309 vlib_validate_combined_counter (&mm->domain_counters[i],
310 *map_domain_index);
311 vlib_zero_combined_counter (&mm->domain_counters[i], *map_domain_index);
312 }
313 map_domain_counter_unlock (mm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314
315 return 0;
316}
317
318/*
319 * map_delete_domain
320 */
321int
322map_delete_domain (u32 map_domain_index)
323{
324 map_main_t *mm = &map_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325 map_domain_t *d;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700327 if (pool_is_free_index (mm->domains, map_domain_index))
328 {
329 clib_warning ("MAP domain delete: domain does not exist: %d",
330 map_domain_index);
331 return -1;
332 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700334 d = pool_elt_at_index (mm->domains, map_domain_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100336 fib_prefix_t pfx = {
337 .fp_proto = FIB_PROTOCOL_IP4,
338 .fp_len = d->ip4_prefix_len,
339 .fp_addr = {
340 .ip4 = d->ip4_prefix,
341 }
342 ,
343 };
344 fib_table_entry_special_remove (0, &pfx, FIB_SOURCE_MAP);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100346 fib_prefix_t pfx6 = {
347 .fp_proto = FIB_PROTOCOL_IP6,
348 .fp_len = d->ip6_src_len,
349 .fp_addr = {
350 .ip6 = d->ip6_src,
351 }
352 ,
353 };
354 fib_table_entry_special_remove (0, &pfx6, FIB_SOURCE_MAP);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700355
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356 /* Deleting rules */
357 if (d->rules)
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700358 clib_mem_free (d->rules);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700360 pool_put (mm->domains, d);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361
362 return 0;
363}
364
365int
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700366map_add_del_psid (u32 map_domain_index, u16 psid, ip6_address_t * tep,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367 u8 is_add)
368{
369 map_domain_t *d;
370 map_main_t *mm = &map_main;
371
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700372 if (pool_is_free_index (mm->domains, map_domain_index))
373 {
374 clib_warning ("MAP rule: domain does not exist: %d", map_domain_index);
375 return -1;
376 }
377 d = pool_elt_at_index (mm->domains, map_domain_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378
379 /* Rules are only used in 1:1 independent case */
380 if (d->ea_bits_len > 0)
381 return (-1);
382
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700383 if (!d->rules)
384 {
385 u32 l = (0x1 << d->psid_length) * sizeof (ip6_address_t);
386 d->rules = clib_mem_alloc_aligned (l, CLIB_CACHE_LINE_BYTES);
387 if (!d->rules)
388 return -1;
389 memset (d->rules, 0, l);
390 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700392 if (psid >= (0x1 << d->psid_length))
393 {
394 clib_warning ("MAP rule: PSID outside bounds: %d [%d]", psid,
395 0x1 << d->psid_length);
396 return -1;
397 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700399 if (is_add)
400 {
401 d->rules[psid] = *tep;
402 }
403 else
404 {
405 memset (&d->rules[psid], 0, sizeof (ip6_address_t));
406 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407 return 0;
408}
409
410#ifdef MAP_SKIP_IP6_LOOKUP
Neale Ranns80823802017-02-20 18:23:41 -0800411/**
412 * Pre-resolvd per-protocol global next-hops
413 */
414map_main_pre_resolved_t pre_resolved[FIB_PROTOCOL_MAX];
415
416static void
417map_pre_resolve_init (map_main_pre_resolved_t * pr)
418{
419 pr->fei = FIB_NODE_INDEX_INVALID;
420 fib_node_init (&pr->node, FIB_NODE_TYPE_MAP_E);
421}
422
423static u8 *
424format_map_pre_resolve (u8 * s, va_list ap)
425{
426 map_main_pre_resolved_t *pr = va_arg (ap, map_main_pre_resolved_t *);
427
428 if (FIB_NODE_INDEX_INVALID != pr->fei)
429 {
430 fib_prefix_t pfx;
431
432 fib_entry_get_prefix (pr->fei, &pfx);
433
434 return (format (s, "%U (%u)",
435 format_ip46_address, &pfx.fp_addr, IP46_TYPE_ANY,
436 pr->dpo.dpoi_index));
437 }
438 else
439 {
440 return (format (s, "un-set"));
441 }
442}
443
444
445/**
446 * Function definition to inform the FIB node that its last lock has gone.
447 */
448static void
449map_last_lock_gone (fib_node_t * node)
450{
451 /*
452 * The MAP is a root of the graph. As such
453 * it never has children and thus is never locked.
454 */
455 ASSERT (0);
456}
457
458static map_main_pre_resolved_t *
459map_from_fib_node (fib_node_t * node)
460{
461#if (CLIB_DEBUG > 0)
462 ASSERT (FIB_NODE_TYPE_MAP_E == node->fn_type);
463#endif
464 return ((map_main_pre_resolved_t *)
465 (((char *) node) -
466 STRUCT_OFFSET_OF (map_main_pre_resolved_t, node)));
467}
468
469static void
470map_stack (map_main_pre_resolved_t * pr)
471{
472 const dpo_id_t *dpo;
473
474 dpo = fib_entry_contribute_ip_forwarding (pr->fei);
475
476 dpo_copy (&pr->dpo, dpo);
477}
478
479/**
480 * Function definition to backwalk a FIB node
481 */
482static fib_node_back_walk_rc_t
483map_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
484{
485 map_stack (map_from_fib_node (node));
486
487 return (FIB_NODE_BACK_WALK_CONTINUE);
488}
489
490/**
491 * Function definition to get a FIB node from its index
492 */
493static fib_node_t *
494map_fib_node_get (fib_node_index_t index)
495{
496 return (&pre_resolved[index].node);
497}
498
499/*
500 * Virtual function table registered by MPLS GRE tunnels
501 * for participation in the FIB object graph.
502 */
503const static fib_node_vft_t map_vft = {
504 .fnv_get = map_fib_node_get,
505 .fnv_last_lock = map_last_lock_gone,
506 .fnv_back_walk = map_back_walk,
507};
508
509static void
510map_fib_resolve (map_main_pre_resolved_t * pr,
511 fib_protocol_t proto, u8 len, const ip46_address_t * addr)
512{
513 fib_prefix_t pfx = {
514 .fp_proto = proto,
515 .fp_len = len,
516 .fp_addr = *addr,
517 };
518
519 pr->fei = fib_table_entry_special_add (0, // default fib
520 &pfx,
521 FIB_SOURCE_RR,
522 FIB_ENTRY_FLAG_NONE,
523 ADJ_INDEX_INVALID);
524 pr->sibling = fib_entry_child_add (pr->fei, FIB_NODE_TYPE_MAP_E, proto);
525 map_stack (pr);
526}
527
Ed Warnickecb9cada2015-12-08 15:45:58 -0700528static void
Neale Ranns69b7aa42017-03-10 03:04:12 -0800529map_fib_unresolve (map_main_pre_resolved_t * pr,
530 fib_protocol_t proto, u8 len, const ip46_address_t * addr)
531{
532 fib_prefix_t pfx = {
533 .fp_proto = proto,
534 .fp_len = len,
535 .fp_addr = *addr,
536 };
537
538 fib_entry_child_remove (pr->fei, pr->sibling);
539
540 fib_table_entry_special_remove (0, // default fib
541 &pfx, FIB_SOURCE_RR);
542 dpo_reset (&pr->dpo);
543
544 pr->fei = FIB_NODE_INDEX_INVALID;
545 pr->sibling = FIB_NODE_INDEX_INVALID;
546}
547
548static void
549map_pre_resolve (ip4_address_t * ip4, ip6_address_t * ip6, int is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550{
Neale Ranns80823802017-02-20 18:23:41 -0800551 if (ip6 && (ip6->as_u64[0] != 0 || ip6->as_u64[1] != 0))
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700552 {
Neale Ranns80823802017-02-20 18:23:41 -0800553 ip46_address_t addr = {
554 .ip6 = *ip6,
555 };
Neale Ranns69b7aa42017-03-10 03:04:12 -0800556 if (is_del)
557 map_fib_unresolve (&pre_resolved[FIB_PROTOCOL_IP6],
558 FIB_PROTOCOL_IP6, 128, &addr);
559 else
560 map_fib_resolve (&pre_resolved[FIB_PROTOCOL_IP6],
561 FIB_PROTOCOL_IP6, 128, &addr);
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700562 }
Neale Ranns80823802017-02-20 18:23:41 -0800563 if (ip4 && (ip4->as_u32 != 0))
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700564 {
Neale Ranns80823802017-02-20 18:23:41 -0800565 ip46_address_t addr = {
566 .ip4 = *ip4,
567 };
Neale Ranns69b7aa42017-03-10 03:04:12 -0800568 if (is_del)
569 map_fib_unresolve (&pre_resolved[FIB_PROTOCOL_IP4],
570 FIB_PROTOCOL_IP4, 32, &addr);
571 else
572 map_fib_resolve (&pre_resolved[FIB_PROTOCOL_IP4],
573 FIB_PROTOCOL_IP4, 32, &addr);
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700574 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575}
576#endif
577
578static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700579map_security_check_command_fn (vlib_main_t * vm,
580 unformat_input_t * input,
581 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582{
583 unformat_input_t _line_input, *line_input = &_line_input;
584 map_main_t *mm = &map_main;
Billy McFalla9a20e72017-02-15 11:39:12 -0500585 clib_error_t *error = NULL;
586
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587 /* Get a line of input. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700588 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700589 return 0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700590
591 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
592 {
593 if (unformat (line_input, "off"))
594 mm->sec_check = false;
595 else if (unformat (line_input, "on"))
596 mm->sec_check = true;
597 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500598 {
599 error = clib_error_return (0, "unknown input `%U'",
600 format_unformat_error, line_input);
601 goto done;
602 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700603 }
Billy McFalla9a20e72017-02-15 11:39:12 -0500604
605done:
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700606 unformat_free (line_input);
Billy McFalla9a20e72017-02-15 11:39:12 -0500607
608 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609}
610
611static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700612map_security_check_frag_command_fn (vlib_main_t * vm,
613 unformat_input_t * input,
614 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700615{
616 unformat_input_t _line_input, *line_input = &_line_input;
617 map_main_t *mm = &map_main;
Billy McFalla9a20e72017-02-15 11:39:12 -0500618 clib_error_t *error = NULL;
619
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620 /* Get a line of input. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700621 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622 return 0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700623
624 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
625 {
626 if (unformat (line_input, "off"))
627 mm->sec_check_frag = false;
628 else if (unformat (line_input, "on"))
629 mm->sec_check_frag = true;
630 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500631 {
632 error = clib_error_return (0, "unknown input `%U'",
633 format_unformat_error, line_input);
634 goto done;
635 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700636 }
Billy McFalla9a20e72017-02-15 11:39:12 -0500637
638done:
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700639 unformat_free (line_input);
Billy McFalla9a20e72017-02-15 11:39:12 -0500640
641 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642}
643
644static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700645map_add_domain_command_fn (vlib_main_t * vm,
646 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647{
648 unformat_input_t _line_input, *line_input = &_line_input;
649 ip4_address_t ip4_prefix;
650 ip6_address_t ip6_prefix;
651 ip6_address_t ip6_src;
Dave Barach042ffb42016-08-12 09:26:47 -0400652 u32 ip6_prefix_len = 0, ip4_prefix_len = 0, map_domain_index, ip6_src_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700653 u32 num_m_args = 0;
654 /* Optional arguments */
Dave Barach042ffb42016-08-12 09:26:47 -0400655 u32 ea_bits_len = 0, psid_offset = 0, psid_length = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700656 u32 mtu = 0;
657 u8 flags = 0;
658 ip6_src_len = 128;
Billy McFalla9a20e72017-02-15 11:39:12 -0500659 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660
661 /* Get a line of input. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700662 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700663 return 0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700664
665 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
666 {
667 if (unformat
668 (line_input, "ip4-pfx %U/%d", unformat_ip4_address, &ip4_prefix,
669 &ip4_prefix_len))
670 num_m_args++;
671 else
672 if (unformat
673 (line_input, "ip6-pfx %U/%d", unformat_ip6_address, &ip6_prefix,
674 &ip6_prefix_len))
675 num_m_args++;
676 else
677 if (unformat
678 (line_input, "ip6-src %U/%d", unformat_ip6_address, &ip6_src,
679 &ip6_src_len))
680 num_m_args++;
681 else
682 if (unformat
683 (line_input, "ip6-src %U", unformat_ip6_address, &ip6_src))
684 num_m_args++;
685 else if (unformat (line_input, "ea-bits-len %d", &ea_bits_len))
686 num_m_args++;
687 else if (unformat (line_input, "psid-offset %d", &psid_offset))
688 num_m_args++;
689 else if (unformat (line_input, "psid-len %d", &psid_length))
690 num_m_args++;
691 else if (unformat (line_input, "mtu %d", &mtu))
692 num_m_args++;
693 else if (unformat (line_input, "map-t"))
694 flags |= MAP_DOMAIN_TRANSLATION;
695 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500696 {
697 error = clib_error_return (0, "unknown input `%U'",
698 format_unformat_error, line_input);
699 goto done;
700 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700701 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702
703 if (num_m_args < 3)
Billy McFalla9a20e72017-02-15 11:39:12 -0500704 {
705 error = clib_error_return (0, "mandatory argument(s) missing");
706 goto done;
707 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700709 map_create_domain (&ip4_prefix, ip4_prefix_len,
710 &ip6_prefix, ip6_prefix_len, &ip6_src, ip6_src_len,
711 ea_bits_len, psid_offset, psid_length, &map_domain_index,
712 mtu, flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700713
Billy McFalla9a20e72017-02-15 11:39:12 -0500714done:
715 unformat_free (line_input);
716
717 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718}
719
720static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700721map_del_domain_command_fn (vlib_main_t * vm,
722 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723{
724 unformat_input_t _line_input, *line_input = &_line_input;
725 u32 num_m_args = 0;
726 u32 map_domain_index;
Billy McFalla9a20e72017-02-15 11:39:12 -0500727 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728
729 /* Get a line of input. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700730 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731 return 0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700732
733 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
734 {
735 if (unformat (line_input, "index %d", &map_domain_index))
736 num_m_args++;
737 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500738 {
739 error = clib_error_return (0, "unknown input `%U'",
740 format_unformat_error, line_input);
741 goto done;
742 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700743 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700744
745 if (num_m_args != 1)
Billy McFalla9a20e72017-02-15 11:39:12 -0500746 {
747 error = clib_error_return (0, "mandatory argument(s) missing");
748 goto done;
749 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700751 map_delete_domain (map_domain_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700752
Billy McFalla9a20e72017-02-15 11:39:12 -0500753done:
754 unformat_free (line_input);
755
756 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757}
758
759static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700760map_add_rule_command_fn (vlib_main_t * vm,
761 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762{
763 unformat_input_t _line_input, *line_input = &_line_input;
764 ip6_address_t tep;
765 u32 num_m_args = 0;
Dave Barach042ffb42016-08-12 09:26:47 -0400766 u32 psid = 0, map_domain_index;
Billy McFalla9a20e72017-02-15 11:39:12 -0500767 clib_error_t *error = NULL;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700768
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769 /* Get a line of input. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700770 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771 return 0;
772
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700773 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
774 {
775 if (unformat (line_input, "index %d", &map_domain_index))
776 num_m_args++;
777 else if (unformat (line_input, "psid %d", &psid))
778 num_m_args++;
779 else
780 if (unformat (line_input, "ip6-dst %U", unformat_ip6_address, &tep))
781 num_m_args++;
782 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500783 {
784 error = clib_error_return (0, "unknown input `%U'",
785 format_unformat_error, line_input);
786 goto done;
787 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700788 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789
790 if (num_m_args != 3)
Billy McFalla9a20e72017-02-15 11:39:12 -0500791 {
792 error = clib_error_return (0, "mandatory argument(s) missing");
793 goto done;
794 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700796 if (map_add_del_psid (map_domain_index, psid, &tep, 1) != 0)
797 {
Billy McFalla9a20e72017-02-15 11:39:12 -0500798 error = clib_error_return (0, "Failing to add Mapping Rule");
799 goto done;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700800 }
Billy McFalla9a20e72017-02-15 11:39:12 -0500801
802done:
803 unformat_free (line_input);
804
805 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806}
807
808#if MAP_SKIP_IP6_LOOKUP
809static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700810map_pre_resolve_command_fn (vlib_main_t * vm,
811 unformat_input_t * input,
812 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700813{
814 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns80823802017-02-20 18:23:41 -0800815 ip4_address_t ip4nh, *p_v4 = NULL;
816 ip6_address_t ip6nh, *p_v6 = NULL;
Billy McFalla9a20e72017-02-15 11:39:12 -0500817 clib_error_t *error = NULL;
Neale Ranns69b7aa42017-03-10 03:04:12 -0800818 int is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700819
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700820 memset (&ip4nh, 0, sizeof (ip4nh));
821 memset (&ip6nh, 0, sizeof (ip6nh));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822
823 /* Get a line of input. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700824 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700827 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
828 {
829 if (unformat (line_input, "ip4-nh %U", unformat_ip4_address, &ip4nh))
Neale Ranns80823802017-02-20 18:23:41 -0800830 p_v4 = &ip4nh;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700831 else
832 if (unformat (line_input, "ip6-nh %U", unformat_ip6_address, &ip6nh))
Neale Ranns80823802017-02-20 18:23:41 -0800833 p_v6 = &ip6nh;
Neale Ranns69b7aa42017-03-10 03:04:12 -0800834 else if (unformat (line_input, "del"))
835 is_del = 1;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700836 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500837 {
838 error = clib_error_return (0, "unknown input `%U'",
839 format_unformat_error, line_input);
840 goto done;
841 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700842 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700843
Neale Ranns69b7aa42017-03-10 03:04:12 -0800844 map_pre_resolve (p_v4, p_v6, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845
Billy McFalla9a20e72017-02-15 11:39:12 -0500846done:
847 unformat_free (line_input);
848
849 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700850}
851#endif
852
853static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700854map_icmp_relay_source_address_command_fn (vlib_main_t * vm,
855 unformat_input_t * input,
856 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700857{
858 unformat_input_t _line_input, *line_input = &_line_input;
859 ip4_address_t icmp_src_address;
860 map_main_t *mm = &map_main;
Billy McFalla9a20e72017-02-15 11:39:12 -0500861 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862
Ole Troancda94822016-01-07 14:37:25 +0100863 mm->icmp4_src_address.as_u32 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700864
865 /* Get a line of input. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700866 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867 return 0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700868
869 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
870 {
871 if (unformat
872 (line_input, "%U", unformat_ip4_address, &icmp_src_address))
873 mm->icmp4_src_address = icmp_src_address;
874 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500875 {
876 error = clib_error_return (0, "unknown input `%U'",
877 format_unformat_error, line_input);
878 goto done;
879 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700880 }
Billy McFalla9a20e72017-02-15 11:39:12 -0500881
882done:
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700883 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700884
Billy McFalla9a20e72017-02-15 11:39:12 -0500885 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700886}
887
888static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700889map_icmp_unreachables_command_fn (vlib_main_t * vm,
890 unformat_input_t * input,
891 vlib_cli_command_t * cmd)
Ole Troancda94822016-01-07 14:37:25 +0100892{
893 unformat_input_t _line_input, *line_input = &_line_input;
894 map_main_t *mm = &map_main;
895 int num_m_args = 0;
Billy McFalla9a20e72017-02-15 11:39:12 -0500896 clib_error_t *error = NULL;
Ole Troancda94822016-01-07 14:37:25 +0100897
898 /* Get a line of input. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700899 if (!unformat_user (input, unformat_line_input, line_input))
Ole Troancda94822016-01-07 14:37:25 +0100900 return 0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700901
902 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
903 {
904 num_m_args++;
905 if (unformat (line_input, "on"))
906 mm->icmp6_enabled = true;
907 else if (unformat (line_input, "off"))
908 mm->icmp6_enabled = false;
909 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500910 {
911 error = clib_error_return (0, "unknown input `%U'",
912 format_unformat_error, line_input);
913 goto done;
914 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700915 }
Ole Troancda94822016-01-07 14:37:25 +0100916
917
918 if (num_m_args != 1)
Billy McFalla9a20e72017-02-15 11:39:12 -0500919 error = clib_error_return (0, "mandatory argument(s) missing");
Ole Troancda94822016-01-07 14:37:25 +0100920
Billy McFalla9a20e72017-02-15 11:39:12 -0500921done:
922 unformat_free (line_input);
923
924 return error;
Ole Troancda94822016-01-07 14:37:25 +0100925}
926
927static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700928map_fragment_command_fn (vlib_main_t * vm,
929 unformat_input_t * input, vlib_cli_command_t * cmd)
Ole Troan9fb87552016-01-13 22:30:43 +0100930{
931 unformat_input_t _line_input, *line_input = &_line_input;
932 map_main_t *mm = &map_main;
Billy McFalla9a20e72017-02-15 11:39:12 -0500933 clib_error_t *error = NULL;
Ole Troan9fb87552016-01-13 22:30:43 +0100934
935 /* Get a line of input. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700936 if (!unformat_user (input, unformat_line_input, line_input))
Ole Troan9fb87552016-01-13 22:30:43 +0100937 return 0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700938
939 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
940 {
941 if (unformat (line_input, "inner"))
942 mm->frag_inner = true;
943 else if (unformat (line_input, "outer"))
944 mm->frag_inner = false;
945 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500946 {
947 error = clib_error_return (0, "unknown input `%U'",
948 format_unformat_error, line_input);
949 goto done;
950 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700951 }
Billy McFalla9a20e72017-02-15 11:39:12 -0500952
953done:
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700954 unformat_free (line_input);
Ole Troan9fb87552016-01-13 22:30:43 +0100955
Billy McFalla9a20e72017-02-15 11:39:12 -0500956 return error;
Ole Troan9fb87552016-01-13 22:30:43 +0100957}
958
959static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700960map_fragment_df_command_fn (vlib_main_t * vm,
961 unformat_input_t * input,
962 vlib_cli_command_t * cmd)
Ole Troan9fb87552016-01-13 22:30:43 +0100963{
964 unformat_input_t _line_input, *line_input = &_line_input;
965 map_main_t *mm = &map_main;
Billy McFalla9a20e72017-02-15 11:39:12 -0500966 clib_error_t *error = NULL;
Ole Troan9fb87552016-01-13 22:30:43 +0100967
968 /* Get a line of input. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700969 if (!unformat_user (input, unformat_line_input, line_input))
Ole Troan9fb87552016-01-13 22:30:43 +0100970 return 0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700971
972 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
973 {
974 if (unformat (line_input, "on"))
975 mm->frag_ignore_df = true;
976 else if (unformat (line_input, "off"))
977 mm->frag_ignore_df = false;
978 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500979 {
980 error = clib_error_return (0, "unknown input `%U'",
981 format_unformat_error, line_input);
982 goto done;
983 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700984 }
Billy McFalla9a20e72017-02-15 11:39:12 -0500985
986done:
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700987 unformat_free (line_input);
Ole Troan9fb87552016-01-13 22:30:43 +0100988
Billy McFalla9a20e72017-02-15 11:39:12 -0500989 return error;
Ole Troan9fb87552016-01-13 22:30:43 +0100990}
991
992static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700993map_traffic_class_command_fn (vlib_main_t * vm,
994 unformat_input_t * input,
995 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700996{
997 unformat_input_t _line_input, *line_input = &_line_input;
998 map_main_t *mm = &map_main;
999 u32 tc = 0;
Billy McFalla9a20e72017-02-15 11:39:12 -05001000 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001001
1002 mm->tc_copy = false;
1003
1004 /* Get a line of input. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001005 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001006 return 0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001007
1008 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1009 {
1010 if (unformat (line_input, "copy"))
1011 mm->tc_copy = true;
1012 else if (unformat (line_input, "%x", &tc))
1013 mm->tc = tc & 0xff;
1014 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001015 {
1016 error = clib_error_return (0, "unknown input `%U'",
1017 format_unformat_error, line_input);
1018 goto done;
1019 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001020 }
Billy McFalla9a20e72017-02-15 11:39:12 -05001021
1022done:
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001023 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024
Billy McFalla9a20e72017-02-15 11:39:12 -05001025 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001026}
1027
1028static u8 *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001029format_map_domain (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001030{
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001031 map_domain_t *d = va_arg (*args, map_domain_t *);
1032 bool counters = va_arg (*args, int);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001033 map_main_t *mm = &map_main;
1034 ip6_address_t ip6_prefix;
1035
1036 if (d->rules)
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001037 memset (&ip6_prefix, 0, sizeof (ip6_prefix));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001038 else
1039 ip6_prefix = d->ip6_prefix;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001040
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001041 s = format (s,
1042 "[%d] ip4-pfx %U/%d ip6-pfx %U/%d ip6-src %U/%d ea_bits_len %d psid-offset %d psid-len %d mtu %d %s",
1043 d - mm->domains,
1044 format_ip4_address, &d->ip4_prefix, d->ip4_prefix_len,
1045 format_ip6_address, &ip6_prefix, d->ip6_prefix_len,
1046 format_ip6_address, &d->ip6_src, d->ip6_src_len,
1047 d->ea_bits_len, d->psid_offset, d->psid_length, d->mtu,
1048 (d->flags & MAP_DOMAIN_TRANSLATION) ? "map-t" : "");
Ole Troan366ac6e2016-01-06 12:40:28 +01001049
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001050 if (counters)
1051 {
1052 map_domain_counter_lock (mm);
1053 vlib_counter_t v;
1054 vlib_get_combined_counter (&mm->domain_counters[MAP_DOMAIN_COUNTER_TX],
1055 d - mm->domains, &v);
1056 s = format (s, " TX: %lld/%lld", v.packets, v.bytes);
1057 vlib_get_combined_counter (&mm->domain_counters[MAP_DOMAIN_COUNTER_RX],
1058 d - mm->domains, &v);
1059 s = format (s, " RX: %lld/%lld", v.packets, v.bytes);
1060 map_domain_counter_unlock (mm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001062 s = format (s, "\n");
1063
1064 if (d->rules)
1065 {
1066 int i;
1067 ip6_address_t dst;
1068 for (i = 0; i < (0x1 << d->psid_length); i++)
1069 {
1070 dst = d->rules[i];
1071 if (dst.as_u64[0] == 0 && dst.as_u64[1] == 0)
1072 continue;
1073 s = format (s,
1074 " rule psid: %d ip6-dst %U\n", i, format_ip6_address,
1075 &dst);
1076 }
1077 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001078 return s;
1079}
1080
1081static u8 *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001082format_map_ip4_reass (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083{
1084 map_main_t *mm = &map_main;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001085 map_ip4_reass_t *r = va_arg (*args, map_ip4_reass_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001086 map_ip4_reass_key_t *k = &r->key;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001087 f64 now = vlib_time_now (mm->vlib_main);
1088 f64 lifetime = (((f64) mm->ip4_reass_conf_lifetime_ms) / 1000);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001089 f64 dt = (r->ts + lifetime > now) ? (r->ts + lifetime - now) : -1;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001090 s = format (s,
1091 "ip4-reass src=%U dst=%U protocol=%d identifier=%d port=%d lifetime=%.3lf\n",
1092 format_ip4_address, &k->src.as_u8, format_ip4_address,
1093 &k->dst.as_u8, k->protocol,
1094 clib_net_to_host_u16 (k->fragment_id),
1095 (r->port >= 0) ? clib_net_to_host_u16 (r->port) : -1, dt);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001096 return s;
1097}
1098
1099static u8 *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001100format_map_ip6_reass (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001101{
1102 map_main_t *mm = &map_main;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001103 map_ip6_reass_t *r = va_arg (*args, map_ip6_reass_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001104 map_ip6_reass_key_t *k = &r->key;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001105 f64 now = vlib_time_now (mm->vlib_main);
1106 f64 lifetime = (((f64) mm->ip6_reass_conf_lifetime_ms) / 1000);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001107 f64 dt = (r->ts + lifetime > now) ? (r->ts + lifetime - now) : -1;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001108 s = format (s,
1109 "ip6-reass src=%U dst=%U protocol=%d identifier=%d lifetime=%.3lf\n",
1110 format_ip6_address, &k->src.as_u8, format_ip6_address,
1111 &k->dst.as_u8, k->protocol,
1112 clib_net_to_host_u32 (k->fragment_id), dt);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001113 return s;
1114}
1115
1116static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001117show_map_domain_command_fn (vlib_main_t * vm, unformat_input_t * input,
1118 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001119{
1120 unformat_input_t _line_input, *line_input = &_line_input;
1121 map_main_t *mm = &map_main;
1122 map_domain_t *d;
1123 bool counters = false;
1124 u32 map_domain_index = ~0;
Billy McFalla9a20e72017-02-15 11:39:12 -05001125 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126
1127 /* Get a line of input. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001128 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001129 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001131 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1132 {
1133 if (unformat (line_input, "counters"))
1134 counters = true;
1135 else if (unformat (line_input, "index %d", &map_domain_index))
1136 ;
1137 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001138 {
1139 error = clib_error_return (0, "unknown input `%U'",
1140 format_unformat_error, line_input);
1141 goto done;
1142 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001143 }
1144
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001145 if (pool_elts (mm->domains) == 0)
1146 vlib_cli_output (vm, "No MAP domains are configured...");
1147
1148 if (map_domain_index == ~0)
1149 {
1150 /* *INDENT-OFF* */
1151 pool_foreach(d, mm->domains, ({vlib_cli_output(vm, "%U", format_map_domain, d, counters);}));
1152 /* *INDENT-ON* */
1153 }
1154 else
1155 {
1156 if (pool_is_free_index (mm->domains, map_domain_index))
1157 {
Billy McFalla9a20e72017-02-15 11:39:12 -05001158 error = clib_error_return (0, "MAP domain does not exists %d",
1159 map_domain_index);
1160 goto done;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001161 }
1162
1163 d = pool_elt_at_index (mm->domains, map_domain_index);
1164 vlib_cli_output (vm, "%U", format_map_domain, d, counters);
1165 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001166
Billy McFalla9a20e72017-02-15 11:39:12 -05001167done:
1168 unformat_free (line_input);
1169
1170 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001171}
1172
1173static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001174show_map_fragments_command_fn (vlib_main_t * vm, unformat_input_t * input,
1175 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001176{
1177 map_main_t *mm = &map_main;
1178 map_ip4_reass_t *f4;
1179 map_ip6_reass_t *f6;
1180
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001181 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001182 pool_foreach(f4, mm->ip4_reass_pool, ({vlib_cli_output (vm, "%U", format_map_ip4_reass, f4);}));
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001183 /* *INDENT-ON* */
1184 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001185 pool_foreach(f6, mm->ip6_reass_pool, ({vlib_cli_output (vm, "%U", format_map_ip6_reass, f6);}));
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001186 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001187 return (0);
1188}
1189
1190u64
1191map_error_counter_get (u32 node_index, map_error_t map_error)
1192{
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001193 vlib_main_t *vm = vlib_get_main ();
1194 vlib_node_runtime_t *error_node = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001195 vlib_error_main_t *em = &vm->error_main;
1196 vlib_error_t e = error_node->errors[map_error];
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001197 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001198 u32 ci;
1199
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001200 ci = vlib_error_get_code (e);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001201 ASSERT (ci < n->n_errors);
1202 ci += n->error_heap_index;
1203
1204 return (em->counters[ci]);
1205}
1206
1207static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001208show_map_stats_command_fn (vlib_main_t * vm, unformat_input_t * input,
1209 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001210{
1211 map_main_t *mm = &map_main;
1212 map_domain_t *d;
1213 int domains = 0, rules = 0, domaincount = 0, rulecount = 0;
1214 if (pool_elts (mm->domains) == 0)
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001215 vlib_cli_output (vm, "No MAP domains are configured...");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001216
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001217 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001218 pool_foreach(d, mm->domains, ({
1219 if (d->rules) {
1220 rulecount+= 0x1 << d->psid_length;
1221 rules += sizeof(ip6_address_t) * 0x1 << d->psid_length;
1222 }
1223 domains += sizeof(*d);
1224 domaincount++;
1225 }));
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001226 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001227
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001228 vlib_cli_output (vm, "MAP domains structure: %d\n", sizeof (map_domain_t));
1229 vlib_cli_output (vm, "MAP domains: %d (%d bytes)\n", domaincount, domains);
1230 vlib_cli_output (vm, "MAP rules: %d (%d bytes)\n", rulecount, rules);
1231 vlib_cli_output (vm, "Total: %d bytes)\n", rules + domains);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001232
1233#if MAP_SKIP_IP6_LOOKUP
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001234 vlib_cli_output (vm,
Neale Ranns80823802017-02-20 18:23:41 -08001235 "MAP pre-resolve: IP6 next-hop: %U, IP4 next-hop: %U\n",
1236 format_map_pre_resolve, &pre_resolved[FIB_PROTOCOL_IP6],
1237 format_map_pre_resolve, &pre_resolved[FIB_PROTOCOL_IP4]);
1238
Ed Warnickecb9cada2015-12-08 15:45:58 -07001239#endif
1240
1241 if (mm->tc_copy)
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001242 vlib_cli_output (vm, "MAP traffic-class: copy");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001243 else
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001244 vlib_cli_output (vm, "MAP traffic-class: %x", mm->tc);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001245
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001246 vlib_cli_output (vm,
1247 "MAP IPv6 inbound security check: %s, fragmented packet security check: %s",
1248 mm->sec_check ? "enabled" : "disabled",
1249 mm->sec_check_frag ? "enabled" : "disabled");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001250
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001251 vlib_cli_output (vm, "ICMP-relay IPv4 source address: %U\n",
1252 format_ip4_address, &mm->icmp4_src_address);
1253 vlib_cli_output (vm, "ICMP6 unreachables sent for unmatched packets: %s\n",
1254 mm->icmp6_enabled ? "enabled" : "disabled");
1255 vlib_cli_output (vm, "Inner fragmentation: %s\n",
1256 mm->frag_inner ? "enabled" : "disabled");
1257 vlib_cli_output (vm, "Fragment packets regardless of DF flag: %s\n",
1258 mm->frag_ignore_df ? "enabled" : "disabled");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001259
1260 /*
1261 * Counters
1262 */
1263 vlib_combined_counter_main_t *cm = mm->domain_counters;
1264 u64 total_pkts[MAP_N_DOMAIN_COUNTER];
1265 u64 total_bytes[MAP_N_DOMAIN_COUNTER];
1266 int which, i;
1267 vlib_counter_t v;
1268
1269 memset (total_pkts, 0, sizeof (total_pkts));
1270 memset (total_bytes, 0, sizeof (total_bytes));
1271
1272 map_domain_counter_lock (mm);
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001273 vec_foreach (cm, mm->domain_counters)
1274 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001275 which = cm - mm->domain_counters;
1276
Neale Ranns1bd01092017-03-15 15:41:17 -04001277 for (i = 0; i < vlib_combined_counter_n_counters (cm); i++)
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001278 {
1279 vlib_get_combined_counter (cm, i, &v);
1280 total_pkts[which] += v.packets;
1281 total_bytes[which] += v.bytes;
1282 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001283 }
1284 map_domain_counter_unlock (mm);
1285
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001286 vlib_cli_output (vm, "Encapsulated packets: %lld bytes: %lld\n",
1287 total_pkts[MAP_DOMAIN_COUNTER_TX],
1288 total_bytes[MAP_DOMAIN_COUNTER_TX]);
1289 vlib_cli_output (vm, "Decapsulated packets: %lld bytes: %lld\n",
1290 total_pkts[MAP_DOMAIN_COUNTER_RX],
1291 total_bytes[MAP_DOMAIN_COUNTER_RX]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001292
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001293 vlib_cli_output (vm, "ICMP relayed packets: %d\n",
1294 vlib_get_simple_counter (&mm->icmp_relayed, 0));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001295
1296 return 0;
1297}
1298
1299static clib_error_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001300map_params_reass_command_fn (vlib_main_t * vm, unformat_input_t * input,
1301 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001302{
1303 unformat_input_t _line_input, *line_input = &_line_input;
1304 u32 lifetime = ~0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001305 f64 ht_ratio = (MAP_IP4_REASS_CONF_HT_RATIO_MAX + 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001306 u32 pool_size = ~0;
1307 u64 buffers = ~(0ull);
1308 u8 ip4 = 0, ip6 = 0;
1309
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001310 if (!unformat_user (input, unformat_line_input, line_input))
1311 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001312
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001313 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1314 {
Ole Troan58a90a42016-08-04 10:19:17 +02001315 if (unformat (line_input, "lifetime %u", &lifetime))
1316 ;
1317 else if (unformat (line_input, "ht-ratio %lf", &ht_ratio))
1318 ;
1319 else if (unformat (line_input, "pool-size %u", &pool_size))
1320 ;
1321 else if (unformat (line_input, "buffers %llu", &buffers))
1322 ;
1323 else if (unformat (line_input, "ip4"))
1324 ip4 = 1;
1325 else if (unformat (line_input, "ip6"))
1326 ip6 = 1;
1327 else
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001328 {
1329 unformat_free (line_input);
1330 return clib_error_return (0, "invalid input");
1331 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001332 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001333 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001334
1335 if (!ip4 && !ip6)
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001336 return clib_error_return (0, "must specify ip4 and/or ip6");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001337
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001338 if (ip4)
1339 {
1340 if (pool_size != ~0 && pool_size > MAP_IP4_REASS_CONF_POOL_SIZE_MAX)
1341 return clib_error_return (0, "invalid ip4-reass pool-size ( > %d)",
1342 MAP_IP4_REASS_CONF_POOL_SIZE_MAX);
1343 if (ht_ratio != (MAP_IP4_REASS_CONF_HT_RATIO_MAX + 1)
1344 && ht_ratio > MAP_IP4_REASS_CONF_HT_RATIO_MAX)
1345 return clib_error_return (0, "invalid ip4-reass ht-ratio ( > %d)",
1346 MAP_IP4_REASS_CONF_HT_RATIO_MAX);
1347 if (lifetime != ~0 && lifetime > MAP_IP4_REASS_CONF_LIFETIME_MAX)
1348 return clib_error_return (0, "invalid ip4-reass lifetime ( > %d)",
1349 MAP_IP4_REASS_CONF_LIFETIME_MAX);
1350 if (buffers != ~(0ull) && buffers > MAP_IP4_REASS_CONF_BUFFERS_MAX)
1351 return clib_error_return (0, "invalid ip4-reass buffers ( > %ld)",
1352 MAP_IP4_REASS_CONF_BUFFERS_MAX);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001353 }
1354
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001355 if (ip6)
1356 {
1357 if (pool_size != ~0 && pool_size > MAP_IP6_REASS_CONF_POOL_SIZE_MAX)
1358 return clib_error_return (0, "invalid ip6-reass pool-size ( > %d)",
1359 MAP_IP6_REASS_CONF_POOL_SIZE_MAX);
1360 if (ht_ratio != (MAP_IP4_REASS_CONF_HT_RATIO_MAX + 1)
1361 && ht_ratio > MAP_IP6_REASS_CONF_HT_RATIO_MAX)
1362 return clib_error_return (0, "invalid ip6-reass ht-log2len ( > %d)",
1363 MAP_IP6_REASS_CONF_HT_RATIO_MAX);
1364 if (lifetime != ~0 && lifetime > MAP_IP6_REASS_CONF_LIFETIME_MAX)
1365 return clib_error_return (0, "invalid ip6-reass lifetime ( > %d)",
1366 MAP_IP6_REASS_CONF_LIFETIME_MAX);
1367 if (buffers != ~(0ull) && buffers > MAP_IP6_REASS_CONF_BUFFERS_MAX)
1368 return clib_error_return (0, "invalid ip6-reass buffers ( > %ld)",
1369 MAP_IP6_REASS_CONF_BUFFERS_MAX);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001370 }
1371
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001372 if (ip4)
1373 {
1374 u32 reass = 0, packets = 0;
1375 if (pool_size != ~0)
1376 {
1377 if (map_ip4_reass_conf_pool_size (pool_size, &reass, &packets))
1378 {
1379 vlib_cli_output (vm, "Could not set ip4-reass pool-size");
1380 }
1381 else
1382 {
1383 vlib_cli_output (vm,
1384 "Setting ip4-reass pool-size (destroyed-reassembly=%u , dropped-fragments=%u)",
1385 reass, packets);
1386 }
1387 }
1388 if (ht_ratio != (MAP_IP4_REASS_CONF_HT_RATIO_MAX + 1))
1389 {
1390 if (map_ip4_reass_conf_ht_ratio (ht_ratio, &reass, &packets))
1391 {
1392 vlib_cli_output (vm, "Could not set ip4-reass ht-log2len");
1393 }
1394 else
1395 {
1396 vlib_cli_output (vm,
1397 "Setting ip4-reass ht-log2len (destroyed-reassembly=%u , dropped-fragments=%u)",
1398 reass, packets);
1399 }
1400 }
1401 if (lifetime != ~0)
1402 {
1403 if (map_ip4_reass_conf_lifetime (lifetime))
1404 vlib_cli_output (vm, "Could not set ip4-reass lifetime");
1405 else
1406 vlib_cli_output (vm, "Setting ip4-reass lifetime");
1407 }
1408 if (buffers != ~(0ull))
1409 {
1410 if (map_ip4_reass_conf_buffers (buffers))
1411 vlib_cli_output (vm, "Could not set ip4-reass buffers");
1412 else
1413 vlib_cli_output (vm, "Setting ip4-reass buffers");
1414 }
1415
1416 if (map_main.ip4_reass_conf_buffers >
1417 map_main.ip4_reass_conf_pool_size *
1418 MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY)
1419 {
1420 vlib_cli_output (vm,
1421 "Note: 'ip4-reass buffers' > pool-size * max-fragments-per-reassembly.");
1422 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001423 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001424
1425 if (ip6)
1426 {
1427 u32 reass = 0, packets = 0;
1428 if (pool_size != ~0)
1429 {
1430 if (map_ip6_reass_conf_pool_size (pool_size, &reass, &packets))
1431 {
1432 vlib_cli_output (vm, "Could not set ip6-reass pool-size");
1433 }
1434 else
1435 {
1436 vlib_cli_output (vm,
1437 "Setting ip6-reass pool-size (destroyed-reassembly=%u , dropped-fragments=%u)",
1438 reass, packets);
1439 }
1440 }
1441 if (ht_ratio != (MAP_IP4_REASS_CONF_HT_RATIO_MAX + 1))
1442 {
1443 if (map_ip6_reass_conf_ht_ratio (ht_ratio, &reass, &packets))
1444 {
1445 vlib_cli_output (vm, "Could not set ip6-reass ht-log2len");
1446 }
1447 else
1448 {
1449 vlib_cli_output (vm,
1450 "Setting ip6-reass ht-log2len (destroyed-reassembly=%u , dropped-fragments=%u)",
1451 reass, packets);
1452 }
1453 }
1454 if (lifetime != ~0)
1455 {
1456 if (map_ip6_reass_conf_lifetime (lifetime))
1457 vlib_cli_output (vm, "Could not set ip6-reass lifetime");
1458 else
1459 vlib_cli_output (vm, "Setting ip6-reass lifetime");
1460 }
1461 if (buffers != ~(0ull))
1462 {
1463 if (map_ip6_reass_conf_buffers (buffers))
1464 vlib_cli_output (vm, "Could not set ip6-reass buffers");
1465 else
1466 vlib_cli_output (vm, "Setting ip6-reass buffers");
1467 }
1468
1469 if (map_main.ip6_reass_conf_buffers >
1470 map_main.ip6_reass_conf_pool_size *
1471 MAP_IP6_REASS_MAX_FRAGMENTS_PER_REASSEMBLY)
1472 {
1473 vlib_cli_output (vm,
1474 "Note: 'ip6-reass buffers' > pool-size * max-fragments-per-reassembly.");
1475 }
1476 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001477
1478 return 0;
1479}
1480
1481
1482/*
1483 * packet trace format function
1484 */
1485u8 *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001486format_map_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001487{
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001488 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1489 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001490 map_trace_t *t = va_arg (*args, map_trace_t *);
1491 u32 map_domain_index = t->map_domain_index;
1492 u16 port = t->port;
1493
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001494 s =
1495 format (s, "MAP domain index: %d L4 port: %u", map_domain_index,
1496 clib_net_to_host_u16 (port));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001497
1498 return s;
1499}
1500
1501static_always_inline map_ip4_reass_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001502map_ip4_reass_lookup (map_ip4_reass_key_t * k, u32 bucket, f64 now)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001503{
1504 map_main_t *mm = &map_main;
1505 u32 ri = mm->ip4_reass_hash_table[bucket];
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001506 while (ri != MAP_REASS_INDEX_NONE)
1507 {
1508 map_ip4_reass_t *r = pool_elt_at_index (mm->ip4_reass_pool, ri);
1509 if (r->key.as_u64[0] == k->as_u64[0] &&
1510 r->key.as_u64[1] == k->as_u64[1] &&
1511 now < r->ts + (((f64) mm->ip4_reass_conf_lifetime_ms) / 1000))
1512 {
1513 return r;
1514 }
1515 ri = r->bucket_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001516 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001517 return NULL;
1518}
1519
1520#define map_ip4_reass_pool_index(r) (r - map_main.ip4_reass_pool)
1521
1522void
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001523map_ip4_reass_free (map_ip4_reass_t * r, u32 ** pi_to_drop)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001524{
1525 map_main_t *mm = &map_main;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001526 map_ip4_reass_get_fragments (r, pi_to_drop);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001527
1528 // Unlink in hash bucket
1529 map_ip4_reass_t *r2 = NULL;
1530 u32 r2i = mm->ip4_reass_hash_table[r->bucket];
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001531 while (r2i != map_ip4_reass_pool_index (r))
1532 {
1533 ASSERT (r2i != MAP_REASS_INDEX_NONE);
1534 r2 = pool_elt_at_index (mm->ip4_reass_pool, r2i);
1535 r2i = r2->bucket_next;
1536 }
1537 if (r2)
1538 {
1539 r2->bucket_next = r->bucket_next;
1540 }
1541 else
1542 {
1543 mm->ip4_reass_hash_table[r->bucket] = r->bucket_next;
1544 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001545
1546 // Unlink in list
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001547 if (r->fifo_next == map_ip4_reass_pool_index (r))
1548 {
1549 mm->ip4_reass_fifo_last = MAP_REASS_INDEX_NONE;
1550 }
1551 else
1552 {
1553 if (mm->ip4_reass_fifo_last == map_ip4_reass_pool_index (r))
1554 mm->ip4_reass_fifo_last = r->fifo_prev;
1555 pool_elt_at_index (mm->ip4_reass_pool, r->fifo_prev)->fifo_next =
1556 r->fifo_next;
1557 pool_elt_at_index (mm->ip4_reass_pool, r->fifo_next)->fifo_prev =
1558 r->fifo_prev;
1559 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001560
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001561 pool_put (mm->ip4_reass_pool, r);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001562 mm->ip4_reass_allocated--;
1563}
1564
1565map_ip4_reass_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001566map_ip4_reass_get (u32 src, u32 dst, u16 fragment_id,
1567 u8 protocol, u32 ** pi_to_drop)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001568{
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001569 map_ip4_reass_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001570 map_main_t *mm = &map_main;
1571 map_ip4_reass_key_t k = {.src.data_u32 = src,
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001572 .dst.data_u32 = dst,
1573 .fragment_id = fragment_id,
1574 .protocol = protocol
1575 };
Ed Warnickecb9cada2015-12-08 15:45:58 -07001576
1577 u32 h = 0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001578 h = crc_u32 (k.as_u32[0], h);
1579 h = crc_u32 (k.as_u32[1], h);
1580 h = crc_u32 (k.as_u32[2], h);
1581 h = crc_u32 (k.as_u32[3], h);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001582 h = h >> (32 - mm->ip4_reass_ht_log2len);
1583
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001584 f64 now = vlib_time_now (mm->vlib_main);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001585
1586 //Cache garbage collection
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001587 while (mm->ip4_reass_fifo_last != MAP_REASS_INDEX_NONE)
1588 {
1589 map_ip4_reass_t *last =
1590 pool_elt_at_index (mm->ip4_reass_pool, mm->ip4_reass_fifo_last);
1591 if (last->ts + (((f64) mm->ip4_reass_conf_lifetime_ms) / 1000) < now)
1592 map_ip4_reass_free (last, pi_to_drop);
1593 else
1594 break;
1595 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001596
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001597 if ((r = map_ip4_reass_lookup (&k, h, now)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001598 return r;
1599
1600 if (mm->ip4_reass_allocated >= mm->ip4_reass_conf_pool_size)
1601 return NULL;
1602
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001603 pool_get (mm->ip4_reass_pool, r);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001604 mm->ip4_reass_allocated++;
1605 int i;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001606 for (i = 0; i < MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001607 r->fragments[i] = ~0;
1608
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001609 u32 ri = map_ip4_reass_pool_index (r);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001610
1611 //Link in new bucket
1612 r->bucket = h;
1613 r->bucket_next = mm->ip4_reass_hash_table[h];
1614 mm->ip4_reass_hash_table[h] = ri;
1615
1616 //Link in fifo
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001617 if (mm->ip4_reass_fifo_last != MAP_REASS_INDEX_NONE)
1618 {
1619 r->fifo_next =
1620 pool_elt_at_index (mm->ip4_reass_pool,
1621 mm->ip4_reass_fifo_last)->fifo_next;
1622 r->fifo_prev = mm->ip4_reass_fifo_last;
1623 pool_elt_at_index (mm->ip4_reass_pool, r->fifo_prev)->fifo_next = ri;
1624 pool_elt_at_index (mm->ip4_reass_pool, r->fifo_next)->fifo_prev = ri;
1625 }
1626 else
1627 {
1628 r->fifo_next = r->fifo_prev = ri;
1629 mm->ip4_reass_fifo_last = ri;
1630 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001631
1632 //Set other fields
1633 r->ts = now;
1634 r->key = k;
1635 r->port = -1;
1636#ifdef MAP_IP4_REASS_COUNT_BYTES
1637 r->expected_total = 0xffff;
1638 r->forwarded = 0;
1639#endif
1640
1641 return r;
1642}
1643
1644int
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001645map_ip4_reass_add_fragment (map_ip4_reass_t * r, u32 pi)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001646{
1647 if (map_main.ip4_reass_buffered_counter >= map_main.ip4_reass_conf_buffers)
1648 return -1;
1649
1650 int i;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001651 for (i = 0; i < MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY; i++)
1652 if (r->fragments[i] == ~0)
1653 {
1654 r->fragments[i] = pi;
1655 map_main.ip4_reass_buffered_counter++;
1656 return 0;
1657 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001658 return -1;
1659}
1660
1661static_always_inline map_ip6_reass_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001662map_ip6_reass_lookup (map_ip6_reass_key_t * k, u32 bucket, f64 now)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001663{
1664 map_main_t *mm = &map_main;
1665 u32 ri = mm->ip6_reass_hash_table[bucket];
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001666 while (ri != MAP_REASS_INDEX_NONE)
1667 {
1668 map_ip6_reass_t *r = pool_elt_at_index (mm->ip6_reass_pool, ri);
1669 if (now < r->ts + (((f64) mm->ip6_reass_conf_lifetime_ms) / 1000) &&
1670 r->key.as_u64[0] == k->as_u64[0] &&
1671 r->key.as_u64[1] == k->as_u64[1] &&
1672 r->key.as_u64[2] == k->as_u64[2] &&
1673 r->key.as_u64[3] == k->as_u64[3] &&
1674 r->key.as_u64[4] == k->as_u64[4])
1675 return r;
1676 ri = r->bucket_next;
1677 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001678 return NULL;
1679}
1680
1681#define map_ip6_reass_pool_index(r) (r - map_main.ip6_reass_pool)
1682
1683void
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001684map_ip6_reass_free (map_ip6_reass_t * r, u32 ** pi_to_drop)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001685{
1686 map_main_t *mm = &map_main;
1687 int i;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001688 for (i = 0; i < MAP_IP6_REASS_MAX_FRAGMENTS_PER_REASSEMBLY; i++)
1689 if (r->fragments[i].pi != ~0)
1690 {
1691 vec_add1 (*pi_to_drop, r->fragments[i].pi);
1692 r->fragments[i].pi = ~0;
1693 map_main.ip6_reass_buffered_counter--;
1694 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001695
1696 // Unlink in hash bucket
1697 map_ip6_reass_t *r2 = NULL;
1698 u32 r2i = mm->ip6_reass_hash_table[r->bucket];
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001699 while (r2i != map_ip6_reass_pool_index (r))
1700 {
1701 ASSERT (r2i != MAP_REASS_INDEX_NONE);
1702 r2 = pool_elt_at_index (mm->ip6_reass_pool, r2i);
1703 r2i = r2->bucket_next;
1704 }
1705 if (r2)
1706 {
1707 r2->bucket_next = r->bucket_next;
1708 }
1709 else
1710 {
1711 mm->ip6_reass_hash_table[r->bucket] = r->bucket_next;
1712 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001713
1714 // Unlink in list
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001715 if (r->fifo_next == map_ip6_reass_pool_index (r))
1716 {
1717 //Single element in the list, list is now empty
1718 mm->ip6_reass_fifo_last = MAP_REASS_INDEX_NONE;
1719 }
1720 else
1721 {
1722 if (mm->ip6_reass_fifo_last == map_ip6_reass_pool_index (r)) //First element
1723 mm->ip6_reass_fifo_last = r->fifo_prev;
1724 pool_elt_at_index (mm->ip6_reass_pool, r->fifo_prev)->fifo_next =
1725 r->fifo_next;
1726 pool_elt_at_index (mm->ip6_reass_pool, r->fifo_next)->fifo_prev =
1727 r->fifo_prev;
1728 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001729
1730 // Free from pool if necessary
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001731 pool_put (mm->ip6_reass_pool, r);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001732 mm->ip6_reass_allocated--;
1733}
1734
1735map_ip6_reass_t *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001736map_ip6_reass_get (ip6_address_t * src, ip6_address_t * dst, u32 fragment_id,
1737 u8 protocol, u32 ** pi_to_drop)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001738{
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001739 map_ip6_reass_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001740 map_main_t *mm = &map_main;
1741 map_ip6_reass_key_t k = {
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001742 .src = *src,
1743 .dst = *dst,
1744 .fragment_id = fragment_id,
1745 .protocol = protocol
1746 };
Ed Warnickecb9cada2015-12-08 15:45:58 -07001747
1748 u32 h = 0;
1749 int i;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001750 for (i = 0; i < 10; i++)
1751 h = crc_u32 (k.as_u32[i], h);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001752 h = h >> (32 - mm->ip6_reass_ht_log2len);
1753
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001754 f64 now = vlib_time_now (mm->vlib_main);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001755
1756 //Cache garbage collection
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001757 while (mm->ip6_reass_fifo_last != MAP_REASS_INDEX_NONE)
1758 {
1759 map_ip6_reass_t *last =
1760 pool_elt_at_index (mm->ip6_reass_pool, mm->ip6_reass_fifo_last);
1761 if (last->ts + (((f64) mm->ip6_reass_conf_lifetime_ms) / 1000) < now)
1762 map_ip6_reass_free (last, pi_to_drop);
1763 else
1764 break;
1765 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001766
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001767 if ((r = map_ip6_reass_lookup (&k, h, now)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001768 return r;
1769
1770 if (mm->ip6_reass_allocated >= mm->ip6_reass_conf_pool_size)
1771 return NULL;
1772
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001773 pool_get (mm->ip6_reass_pool, r);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001774 mm->ip6_reass_allocated++;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001775 for (i = 0; i < MAP_IP6_REASS_MAX_FRAGMENTS_PER_REASSEMBLY; i++)
1776 {
1777 r->fragments[i].pi = ~0;
1778 r->fragments[i].next_data_len = 0;
1779 r->fragments[i].next_data_offset = 0;
1780 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001781
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001782 u32 ri = map_ip6_reass_pool_index (r);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001783
1784 //Link in new bucket
1785 r->bucket = h;
1786 r->bucket_next = mm->ip6_reass_hash_table[h];
1787 mm->ip6_reass_hash_table[h] = ri;
1788
1789 //Link in fifo
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001790 if (mm->ip6_reass_fifo_last != MAP_REASS_INDEX_NONE)
1791 {
1792 r->fifo_next =
1793 pool_elt_at_index (mm->ip6_reass_pool,
1794 mm->ip6_reass_fifo_last)->fifo_next;
1795 r->fifo_prev = mm->ip6_reass_fifo_last;
1796 pool_elt_at_index (mm->ip6_reass_pool, r->fifo_prev)->fifo_next = ri;
1797 pool_elt_at_index (mm->ip6_reass_pool, r->fifo_next)->fifo_prev = ri;
1798 }
1799 else
1800 {
1801 r->fifo_next = r->fifo_prev = ri;
1802 mm->ip6_reass_fifo_last = ri;
1803 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001804
1805 //Set other fields
1806 r->ts = now;
1807 r->key = k;
1808 r->ip4_header.ip_version_and_header_length = 0;
1809#ifdef MAP_IP6_REASS_COUNT_BYTES
1810 r->expected_total = 0xffff;
1811 r->forwarded = 0;
1812#endif
1813 return r;
1814}
1815
1816int
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001817map_ip6_reass_add_fragment (map_ip6_reass_t * r, u32 pi,
1818 u16 data_offset, u16 next_data_offset,
1819 u8 * data_start, u16 data_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001820{
1821 map_ip6_fragment_t *f = NULL, *prev_f = NULL;
1822 u16 copied_len = (data_len > 20) ? 20 : data_len;
1823
1824 if (map_main.ip6_reass_buffered_counter >= map_main.ip6_reass_conf_buffers)
1825 return -1;
1826
1827 //Lookup for fragments for the current buffer
1828 //and the one before that
1829 int i;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001830 for (i = 0; i < MAP_IP6_REASS_MAX_FRAGMENTS_PER_REASSEMBLY; i++)
1831 {
1832 if (data_offset && r->fragments[i].next_data_offset == data_offset)
1833 {
1834 prev_f = &r->fragments[i]; // This is buffer for previous packet
1835 }
1836 else if (r->fragments[i].next_data_offset == next_data_offset)
1837 {
1838 f = &r->fragments[i]; // This is a buffer for the current packet
1839 }
1840 else if (r->fragments[i].next_data_offset == 0)
1841 { //Available
1842 if (f == NULL)
1843 f = &r->fragments[i];
1844 else if (prev_f == NULL)
1845 prev_f = &r->fragments[i];
1846 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001847 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001848
1849 if (!f || f->pi != ~0)
1850 return -1;
1851
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001852 if (data_offset)
1853 {
1854 if (!prev_f)
1855 return -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001856
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001857 clib_memcpy (prev_f->next_data, data_start, copied_len);
1858 prev_f->next_data_len = copied_len;
1859 prev_f->next_data_offset = data_offset;
1860 }
1861 else
1862 {
1863 if (((ip4_header_t *) data_start)->ip_version_and_header_length != 0x45)
1864 return -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001865
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001866 if (r->ip4_header.ip_version_and_header_length == 0)
1867 clib_memcpy (&r->ip4_header, data_start, sizeof (ip4_header_t));
1868 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001869
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001870 if (data_len > 20)
1871 {
1872 f->next_data_offset = next_data_offset;
1873 f->pi = pi;
1874 map_main.ip6_reass_buffered_counter++;
1875 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001876 return 0;
1877}
1878
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001879void
1880map_ip4_reass_reinit (u32 * trashed_reass, u32 * dropped_packets)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001881{
1882 map_main_t *mm = &map_main;
1883 int i;
1884
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001885 if (dropped_packets)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001886 *dropped_packets = mm->ip4_reass_buffered_counter;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001887 if (trashed_reass)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001888 *trashed_reass = mm->ip4_reass_allocated;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001889 if (mm->ip4_reass_fifo_last != MAP_REASS_INDEX_NONE)
1890 {
1891 u16 ri = mm->ip4_reass_fifo_last;
1892 do
1893 {
1894 map_ip4_reass_t *r = pool_elt_at_index (mm->ip4_reass_pool, ri);
1895 for (i = 0; i < MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY; i++)
1896 if (r->fragments[i] != ~0)
1897 map_ip4_drop_pi (r->fragments[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001898
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001899 ri = r->fifo_next;
1900 pool_put (mm->ip4_reass_pool, r);
1901 }
1902 while (ri != mm->ip4_reass_fifo_last);
1903 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001904
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001905 vec_free (mm->ip4_reass_hash_table);
1906 vec_resize (mm->ip4_reass_hash_table, 1 << mm->ip4_reass_ht_log2len);
1907 for (i = 0; i < (1 << mm->ip4_reass_ht_log2len); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001908 mm->ip4_reass_hash_table[i] = MAP_REASS_INDEX_NONE;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001909 pool_free (mm->ip4_reass_pool);
1910 pool_alloc (mm->ip4_reass_pool, mm->ip4_reass_conf_pool_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001911
1912 mm->ip4_reass_allocated = 0;
1913 mm->ip4_reass_fifo_last = MAP_REASS_INDEX_NONE;
1914 mm->ip4_reass_buffered_counter = 0;
1915}
1916
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001917u8
1918map_get_ht_log2len (f32 ht_ratio, u16 pool_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001919{
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001920 u32 desired_size = (u32) (pool_size * ht_ratio);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001921 u8 i;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001922 for (i = 1; i < 31; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001923 if ((1 << i) >= desired_size)
1924 return i;
1925 return 4;
1926}
1927
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001928int
1929map_ip4_reass_conf_ht_ratio (f32 ht_ratio, u32 * trashed_reass,
1930 u32 * dropped_packets)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001931{
1932 map_main_t *mm = &map_main;
1933 if (ht_ratio > MAP_IP4_REASS_CONF_HT_RATIO_MAX)
1934 return -1;
1935
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001936 map_ip4_reass_lock ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001937 mm->ip4_reass_conf_ht_ratio = ht_ratio;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001938 mm->ip4_reass_ht_log2len =
1939 map_get_ht_log2len (ht_ratio, mm->ip4_reass_conf_pool_size);
1940 map_ip4_reass_reinit (trashed_reass, dropped_packets);
1941 map_ip4_reass_unlock ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001942 return 0;
1943}
1944
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001945int
1946map_ip4_reass_conf_pool_size (u16 pool_size, u32 * trashed_reass,
1947 u32 * dropped_packets)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001948{
1949 map_main_t *mm = &map_main;
1950 if (pool_size > MAP_IP4_REASS_CONF_POOL_SIZE_MAX)
1951 return -1;
1952
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001953 map_ip4_reass_lock ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001954 mm->ip4_reass_conf_pool_size = pool_size;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001955 map_ip4_reass_reinit (trashed_reass, dropped_packets);
1956 map_ip4_reass_unlock ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001957 return 0;
1958}
1959
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001960int
1961map_ip4_reass_conf_lifetime (u16 lifetime_ms)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001962{
1963 map_main.ip4_reass_conf_lifetime_ms = lifetime_ms;
1964 return 0;
1965}
1966
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001967int
1968map_ip4_reass_conf_buffers (u32 buffers)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001969{
1970 map_main.ip4_reass_conf_buffers = buffers;
1971 return 0;
1972}
1973
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001974void
1975map_ip6_reass_reinit (u32 * trashed_reass, u32 * dropped_packets)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001976{
1977 map_main_t *mm = &map_main;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001978 if (dropped_packets)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001979 *dropped_packets = mm->ip6_reass_buffered_counter;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001980 if (trashed_reass)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001981 *trashed_reass = mm->ip6_reass_allocated;
1982 int i;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001983 if (mm->ip6_reass_fifo_last != MAP_REASS_INDEX_NONE)
1984 {
1985 u16 ri = mm->ip6_reass_fifo_last;
1986 do
1987 {
1988 map_ip6_reass_t *r = pool_elt_at_index (mm->ip6_reass_pool, ri);
1989 for (i = 0; i < MAP_IP6_REASS_MAX_FRAGMENTS_PER_REASSEMBLY; i++)
1990 if (r->fragments[i].pi != ~0)
1991 map_ip6_drop_pi (r->fragments[i].pi);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001992
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07001993 ri = r->fifo_next;
1994 pool_put (mm->ip6_reass_pool, r);
1995 }
1996 while (ri != mm->ip6_reass_fifo_last);
1997 mm->ip6_reass_fifo_last = MAP_REASS_INDEX_NONE;
1998 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001999
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002000 vec_free (mm->ip6_reass_hash_table);
2001 vec_resize (mm->ip6_reass_hash_table, 1 << mm->ip6_reass_ht_log2len);
2002 for (i = 0; i < (1 << mm->ip6_reass_ht_log2len); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002003 mm->ip6_reass_hash_table[i] = MAP_REASS_INDEX_NONE;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002004 pool_free (mm->ip6_reass_pool);
2005 pool_alloc (mm->ip6_reass_pool, mm->ip4_reass_conf_pool_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002006
2007 mm->ip6_reass_allocated = 0;
2008 mm->ip6_reass_buffered_counter = 0;
2009}
2010
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002011int
2012map_ip6_reass_conf_ht_ratio (f32 ht_ratio, u32 * trashed_reass,
2013 u32 * dropped_packets)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002014{
2015 map_main_t *mm = &map_main;
2016 if (ht_ratio > MAP_IP6_REASS_CONF_HT_RATIO_MAX)
2017 return -1;
2018
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002019 map_ip6_reass_lock ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002020 mm->ip6_reass_conf_ht_ratio = ht_ratio;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002021 mm->ip6_reass_ht_log2len =
2022 map_get_ht_log2len (ht_ratio, mm->ip6_reass_conf_pool_size);
2023 map_ip6_reass_reinit (trashed_reass, dropped_packets);
2024 map_ip6_reass_unlock ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002025 return 0;
2026}
2027
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002028int
2029map_ip6_reass_conf_pool_size (u16 pool_size, u32 * trashed_reass,
2030 u32 * dropped_packets)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002031{
2032 map_main_t *mm = &map_main;
2033 if (pool_size > MAP_IP6_REASS_CONF_POOL_SIZE_MAX)
2034 return -1;
2035
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002036 map_ip6_reass_lock ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002037 mm->ip6_reass_conf_pool_size = pool_size;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002038 map_ip6_reass_reinit (trashed_reass, dropped_packets);
2039 map_ip6_reass_unlock ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002040 return 0;
2041}
2042
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002043int
2044map_ip6_reass_conf_lifetime (u16 lifetime_ms)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002045{
2046 map_main.ip6_reass_conf_lifetime_ms = lifetime_ms;
2047 return 0;
2048}
2049
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002050int
2051map_ip6_reass_conf_buffers (u32 buffers)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002052{
2053 map_main.ip6_reass_conf_buffers = buffers;
2054 return 0;
2055}
2056
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002057/* *INDENT-OFF* */
Ole Troan96eefd42016-09-12 12:25:30 +02002058
2059/*?
2060 * Configure MAP reassembly behaviour
2061 *
2062 * @cliexpar
2063 * @cliexstart{map params reassembly}
2064 * @cliexend
2065 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002066VLIB_CLI_COMMAND(map_ip4_reass_lifetime_command, static) = {
2067 .path = "map params reassembly",
Ole Troan96eefd42016-09-12 12:25:30 +02002068 .short_help = "map params reassembly [ip4 | ip6] [lifetime <lifetime-ms>] "
2069 "[pool-size <pool-size>] [buffers <buffers>] "
2070 "[ht-ratio <ht-ratio>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002071 .function = map_params_reass_command_fn,
2072};
2073
Ole Troan96eefd42016-09-12 12:25:30 +02002074/*?
2075 * Set or copy the IP TOS/Traffic Class field
2076 *
2077 * @cliexpar
2078 * @cliexstart{map params traffic-class}
2079 *
2080 * This command is used to set the traffic-class field in translated
2081 * or encapsulated packets. If copy is specifed (the default) then the
2082 * traffic-class/TOS field is copied from the original packet to the
2083 * translated / encapsulating header.
2084 * @cliexend
2085 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002086VLIB_CLI_COMMAND(map_traffic_class_command, static) = {
2087 .path = "map params traffic-class",
Ole Troan96eefd42016-09-12 12:25:30 +02002088 .short_help = "map params traffic-class {0x0-0xff | copy}",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002089 .function = map_traffic_class_command_fn,
2090};
2091
Ole Troan96eefd42016-09-12 12:25:30 +02002092/*?
2093 * Bypass IP4/IP6 lookup
2094 *
2095 * @cliexpar
2096 * @cliexstart{map params pre-resolve}
2097 *
2098 * Bypass a second FIB lookup of the translated or encapsulated
2099 * packet, and forward the packet directly to the specified
2100 * next-hop. This optimization trades forwarding flexibility for
2101 * performance.
2102 * @cliexend
2103 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002104VLIB_CLI_COMMAND(map_pre_resolve_command, static) = {
2105 .path = "map params pre-resolve",
Ole Troan96eefd42016-09-12 12:25:30 +02002106 .short_help = " map params pre-resolve {ip4-nh <address>} "
2107 "| {ip6-nh <address>}",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002108 .function = map_pre_resolve_command_fn,
2109};
2110
Ole Troan96eefd42016-09-12 12:25:30 +02002111/*?
2112 * Enable or disable the MAP-E inbound security check
2113 *
2114 * @cliexpar
2115 * @cliexstart{map params security-check}
2116 *
2117 * By default, a decapsulated packet's IPv4 source address will be
2118 * verified against the outer header's IPv6 source address. Disabling
2119 * this feature will allow IPv4 source address spoofing.
2120 * @cliexend
2121 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002122VLIB_CLI_COMMAND(map_security_check_command, static) = {
2123 .path = "map params security-check",
Ole Troan96eefd42016-09-12 12:25:30 +02002124 .short_help = "map params security-check on|off",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002125 .function = map_security_check_command_fn,
2126};
2127
Ole Troan96eefd42016-09-12 12:25:30 +02002128/*?
2129 * Specifiy the IPv4 source address used for relayed ICMP error messages
2130 *
2131 * @cliexpar
2132 * @cliexstart{map params icmp source-address}
2133 *
2134 * This command specifies which IPv4 source address (must be local to
2135 * the system), that is used for relayed received IPv6 ICMP error
2136 * messages.
2137 * @cliexend
2138 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002139VLIB_CLI_COMMAND(map_icmp_relay_source_address_command, static) = {
Ole Troancda94822016-01-07 14:37:25 +01002140 .path = "map params icmp source-address",
Ole Troan96eefd42016-09-12 12:25:30 +02002141 .short_help = "map params icmp source-address <ip4-address>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002142 .function = map_icmp_relay_source_address_command_fn,
2143};
2144
Ole Troan96eefd42016-09-12 12:25:30 +02002145/*?
2146 * Send IPv6 ICMP unreachables
2147 *
2148 * @cliexpar
2149 * @cliexstart{map params icmp6 unreachables}
2150 *
2151 * Send IPv6 ICMP unreachable messages back if security check fails or
2152 * no MAP domain exists.
2153 * @cliexend
2154 ?*/
Ole Troancda94822016-01-07 14:37:25 +01002155VLIB_CLI_COMMAND(map_icmp_unreachables_command, static) = {
Ole Troan9fb87552016-01-13 22:30:43 +01002156 .path = "map params icmp6 unreachables",
Ole Troan96eefd42016-09-12 12:25:30 +02002157 .short_help = "map params icmp6 unreachables {on|off}",
Ole Troancda94822016-01-07 14:37:25 +01002158 .function = map_icmp_unreachables_command_fn,
2159};
2160
Ole Troan96eefd42016-09-12 12:25:30 +02002161/*?
2162 * Configure MAP fragmentation behaviour
2163 *
2164 * @cliexpar
2165 * @cliexstart{map params fragment}
2166 * @cliexend
2167 ?*/
Ole Troan9fb87552016-01-13 22:30:43 +01002168VLIB_CLI_COMMAND(map_fragment_command, static) = {
2169 .path = "map params fragment",
Ole Troan96eefd42016-09-12 12:25:30 +02002170 .short_help = "map params fragment inner|outer",
Ole Troan9fb87552016-01-13 22:30:43 +01002171 .function = map_fragment_command_fn,
2172};
2173
Ole Troan96eefd42016-09-12 12:25:30 +02002174/*?
2175 * Ignore the IPv4 Don't fragment bit
2176 *
2177 * @cliexpar
2178 * @cliexstart{map params fragment ignore-df}
2179 *
2180 * Allows fragmentation of the IPv4 packet even if the DF bit is
2181 * set. The choice between inner or outer fragmentation of tunnel
2182 * packets is complicated. The benefit of inner fragmentation is that
2183 * the ultimate endpoint must reassemble, instead of the tunnel
2184 * endpoint.
2185 * @cliexend
2186 ?*/
Ole Troan9fb87552016-01-13 22:30:43 +01002187VLIB_CLI_COMMAND(map_fragment_df_command, static) = {
2188 .path = "map params fragment ignore-df",
Ole Troan96eefd42016-09-12 12:25:30 +02002189 .short_help = "map params fragment ignore-df on|off",
Ole Troan9fb87552016-01-13 22:30:43 +01002190 .function = map_fragment_df_command_fn,
2191};
2192
Ole Troan96eefd42016-09-12 12:25:30 +02002193/*?
2194 * Specifiy if the inbound security check should be done on fragments
2195 *
2196 * @cliexpar
2197 * @cliexstart{map params security-check fragments}
2198 *
2199 * Typically the inbound on-decapsulation security check is only done
2200 * on the first packet. The packet that contains the L4
2201 * information. While a security check on every fragment is possible,
2202 * it has a cost. State must be created on the first fragment.
2203 * @cliexend
2204 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002205VLIB_CLI_COMMAND(map_security_check_frag_command, static) = {
2206 .path = "map params security-check fragments",
Ole Troan96eefd42016-09-12 12:25:30 +02002207 .short_help = "map params security-check fragments on|off",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002208 .function = map_security_check_frag_command_fn,
2209};
2210
Ole Troan96eefd42016-09-12 12:25:30 +02002211/*?
2212 * Add MAP domain
2213 *
2214 * @cliexpar
2215 * @cliexstart{map add domain}
2216 * @cliexend
2217 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002218VLIB_CLI_COMMAND(map_add_domain_command, static) = {
2219 .path = "map add domain",
Ole Troan96eefd42016-09-12 12:25:30 +02002220 .short_help = "map add domain ip4-pfx <ip4-pfx> ip6-pfx <ip6-pfx> "
2221 "ip6-src <ip6-pfx> ea-bits-len <n> psid-offset <n> psid-len <n> "
2222 "[map-t] [mtu <mtu>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002223 .function = map_add_domain_command_fn,
2224};
2225
Ole Troan96eefd42016-09-12 12:25:30 +02002226/*?
2227 * Add MAP rule to a domain
2228 *
2229 * @cliexpar
2230 * @cliexstart{map add rule}
2231 * @cliexend
2232 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002233VLIB_CLI_COMMAND(map_add_rule_command, static) = {
2234 .path = "map add rule",
Ole Troan96eefd42016-09-12 12:25:30 +02002235 .short_help = "map add rule index <domain> psid <psid> ip6-dst <ip6-addr>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002236 .function = map_add_rule_command_fn,
2237};
2238
Ole Troan96eefd42016-09-12 12:25:30 +02002239/*?
2240 * Delete MAP domain
2241 *
2242 * @cliexpar
2243 * @cliexstart{map del domain}
2244 * @cliexend
2245 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002246VLIB_CLI_COMMAND(map_del_command, static) = {
2247 .path = "map del domain",
Ole Troan96eefd42016-09-12 12:25:30 +02002248 .short_help = "map del domain index <domain>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002249 .function = map_del_domain_command_fn,
2250};
2251
Ole Troan96eefd42016-09-12 12:25:30 +02002252/*?
2253 * Show MAP domains
2254 *
2255 * @cliexpar
2256 * @cliexstart{show map domain}
2257 * @cliexend
2258 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002259VLIB_CLI_COMMAND(show_map_domain_command, static) = {
2260 .path = "show map domain",
Ole Troan96eefd42016-09-12 12:25:30 +02002261 .short_help = "show map domain index <n> [counters]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002262 .function = show_map_domain_command_fn,
2263};
2264
Ole Troan96eefd42016-09-12 12:25:30 +02002265/*?
2266 * Show MAP statistics
2267 *
2268 * @cliexpar
2269 * @cliexstart{show map stats}
2270 * @cliexend
2271 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002272VLIB_CLI_COMMAND(show_map_stats_command, static) = {
2273 .path = "show map stats",
Ole Troan96eefd42016-09-12 12:25:30 +02002274 .short_help = "show map stats",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002275 .function = show_map_stats_command_fn,
2276};
2277
Ole Troan96eefd42016-09-12 12:25:30 +02002278/*?
2279 * Show MAP fragmentation information
2280 *
2281 * @cliexpar
2282 * @cliexstart{show map fragments}
2283 * @cliexend
2284 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002285VLIB_CLI_COMMAND(show_map_fragments_command, static) = {
2286 .path = "show map fragments",
Ole Troan96eefd42016-09-12 12:25:30 +02002287 .short_help = "show map fragments",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002288 .function = show_map_fragments_command_fn,
2289};
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002290/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002291
2292/*
2293 * map_init
2294 */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002295clib_error_t *
2296map_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002297{
2298 map_main_t *mm = &map_main;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002299 mm->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07002300 mm->vlib_main = vm;
2301
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002302#ifdef MAP_SKIP_IP6_LOOKUP
Neale Ranns80823802017-02-20 18:23:41 -08002303 fib_protocol_t proto;
2304
2305 FOR_EACH_FIB_PROTOCOL (proto)
2306 {
2307 map_pre_resolve_init (&pre_resolved[proto]);
2308 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002309#endif
2310
2311 /* traffic class */
2312 mm->tc = 0;
2313 mm->tc_copy = true;
2314
2315 /* Inbound security check */
2316 mm->sec_check = true;
2317 mm->sec_check_frag = false;
2318
Ole Troancda94822016-01-07 14:37:25 +01002319 /* ICMP6 Type 1, Code 5 for security check failure */
2320 mm->icmp6_enabled = false;
2321
Ole Troan9fb87552016-01-13 22:30:43 +01002322 /* Inner or outer fragmentation */
2323 mm->frag_inner = false;
2324 mm->frag_ignore_df = false;
2325
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002326 vec_validate (mm->domain_counters, MAP_N_DOMAIN_COUNTER - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002327 mm->domain_counters[MAP_DOMAIN_COUNTER_RX].name = "rx";
2328 mm->domain_counters[MAP_DOMAIN_COUNTER_TX].name = "tx";
2329
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002330 vlib_validate_simple_counter (&mm->icmp_relayed, 0);
2331 vlib_zero_simple_counter (&mm->icmp_relayed, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002332
2333 /* IP4 virtual reassembly */
2334 mm->ip4_reass_hash_table = 0;
2335 mm->ip4_reass_pool = 0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002336 mm->ip4_reass_lock =
2337 clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002338 mm->ip4_reass_conf_ht_ratio = MAP_IP4_REASS_HT_RATIO_DEFAULT;
2339 mm->ip4_reass_conf_lifetime_ms = MAP_IP4_REASS_LIFETIME_DEFAULT;
2340 mm->ip4_reass_conf_pool_size = MAP_IP4_REASS_POOL_SIZE_DEFAULT;
2341 mm->ip4_reass_conf_buffers = MAP_IP4_REASS_BUFFERS_DEFAULT;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002342 mm->ip4_reass_ht_log2len =
2343 map_get_ht_log2len (mm->ip4_reass_conf_ht_ratio,
2344 mm->ip4_reass_conf_pool_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002345 mm->ip4_reass_fifo_last = MAP_REASS_INDEX_NONE;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002346 map_ip4_reass_reinit (NULL, NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002347
2348 /* IP6 virtual reassembly */
2349 mm->ip6_reass_hash_table = 0;
2350 mm->ip6_reass_pool = 0;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002351 mm->ip6_reass_lock =
2352 clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002353 mm->ip6_reass_conf_ht_ratio = MAP_IP6_REASS_HT_RATIO_DEFAULT;
2354 mm->ip6_reass_conf_lifetime_ms = MAP_IP6_REASS_LIFETIME_DEFAULT;
2355 mm->ip6_reass_conf_pool_size = MAP_IP6_REASS_POOL_SIZE_DEFAULT;
2356 mm->ip6_reass_conf_buffers = MAP_IP6_REASS_BUFFERS_DEFAULT;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002357 mm->ip6_reass_ht_log2len =
2358 map_get_ht_log2len (mm->ip6_reass_conf_ht_ratio,
2359 mm->ip6_reass_conf_pool_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002360 mm->ip6_reass_fifo_last = MAP_REASS_INDEX_NONE;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002361 map_ip6_reass_reinit (NULL, NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002362
Neale Ranns80823802017-02-20 18:23:41 -08002363#ifdef MAP_SKIP_IP6_LOOKUP
2364 fib_node_register_type (FIB_NODE_TYPE_MAP_E, &map_vft);
2365#endif
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002366 map_dpo_module_init ();
2367
Ed Warnickecb9cada2015-12-08 15:45:58 -07002368 return 0;
2369}
2370
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -07002371VLIB_INIT_FUNCTION (map_init);
2372
2373/*
2374 * fd.io coding-style-patch-verification: ON
2375 *
2376 * Local Variables:
2377 * eval: (c-set-style "gnu")
2378 * End:
2379 */