FD.io VPP  v18.04-17-g3a0d853
Vector Packet Processing
map.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #include <stdbool.h>
16 #include <vppinfra/error.h>
17 #include <vnet/vnet.h>
18 #include <vnet/ip/ip.h>
19 #include <vlib/vlib.h>
20 #include <vnet/fib/fib_types.h>
21 #include <vnet/fib/ip4_fib.h>
22 #include <vnet/adj/adj.h>
23 #include <vnet/map/map_dpo.h>
24 #include <vnet/dpo/load_balance.h>
25 
26 #define MAP_SKIP_IP6_LOOKUP 1
27 
28 int map_create_domain (ip4_address_t * ip4_prefix, u8 ip4_prefix_len,
29  ip6_address_t * ip6_prefix, u8 ip6_prefix_len,
30  ip6_address_t * ip6_src, u8 ip6_src_len,
31  u8 ea_bits_len, u8 psid_offset, u8 psid_length,
32  u32 * map_domain_index, u16 mtu, u8 flags);
33 int map_delete_domain (u32 map_domain_index);
34 int map_add_del_psid (u32 map_domain_index, u16 psid, ip6_address_t * tep,
35  u8 is_add);
36 u8 *format_map_trace (u8 * s, va_list * args);
37 
38 typedef enum
39 {
41  MAP_DOMAIN_TRANSLATION = 1 << 1, // The domain uses MAP-T
43 } __attribute__ ((__packed__)) map_domain_flags_e;
44 
45 /**
46  * IP4 reassembly logic:
47  * One virtually reassembled flow requires a map_ip4_reass_t structure in order
48  * to keep the first-fragment port number and, optionally, cache out of sequence
49  * packets.
50  * There are up to MAP_IP4_REASS_MAX_REASSEMBLY such structures.
51  * When in use, those structures are stored in a hash table of MAP_IP4_REASS_BUCKETS buckets.
52  * When a new structure needs to be used, it is allocated from available ones.
53  * If there is no structure available, the oldest in use is selected and used if and
54  * only if it was first allocated more than MAP_IP4_REASS_LIFETIME seconds ago.
55  * In case no structure can be allocated, the fragment is dropped.
56  */
57 
58 #define MAP_IP4_REASS_LIFETIME_DEFAULT (100) /* ms */
59 #define MAP_IP4_REASS_HT_RATIO_DEFAULT (1.0)
60 #define MAP_IP4_REASS_POOL_SIZE_DEFAULT 1024 // Number of reassembly structures
61 #define MAP_IP4_REASS_BUFFERS_DEFAULT 2048
62 
63 #define MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY 5 // Number of fragment per reassembly
64 
65 #define MAP_IP6_REASS_LIFETIME_DEFAULT (100) /* ms */
66 #define MAP_IP6_REASS_HT_RATIO_DEFAULT (1.0)
67 #define MAP_IP6_REASS_POOL_SIZE_DEFAULT 1024 // Number of reassembly structures
68 #define MAP_IP6_REASS_BUFFERS_DEFAULT 2048
69 
70 #define MAP_IP6_REASS_MAX_FRAGMENTS_PER_REASSEMBLY 5
71 
72 #define MAP_IP6_REASS_COUNT_BYTES
73 #define MAP_IP4_REASS_COUNT_BYTES
74 
75 //#define IP6_MAP_T_OVERRIDE_TOS 0
76 
77 /*
78  * This structure _MUST_ be no larger than a single cache line (64 bytes).
79  * If more space is needed make a union of ip6_prefix and *rules, those are mutually exclusive.
80  */
81 typedef struct
82 {
83  /* Required for pool_get_aligned */
84  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
92  map_domain_flags_e flags;
98 
99  /* helpers */
103 
104  /* not used by forwarding */
106 } map_domain_t;
107 
109  "MAP domain fits in one cacheline");
110 
111 #define MAP_REASS_INDEX_NONE ((u16)0xffff)
112 
113 /*
114  * Hash key, padded out to 16 bytes for fast compare
115  */
116 /* *INDENT-OFF* */
117 typedef union {
118  CLIB_PACKED (struct {
119  ip4_address_t src;
120  ip4_address_t dst;
121  u16 fragment_id;
122  u8 protocol;
123  });
125  u32 as_u32[4];
127 /* *INDENT-ON* */
128 
129 typedef struct
130 {
133 #ifdef MAP_IP4_REASS_COUNT_BYTES
136 #endif
144 
145 /*
146  * MAP domain counters
147  */
148 typedef enum
149 {
150  /* Simple counters */
152  /* Combined counters */
157 
158 /*
159  * main_main_t
160  */
161 /* *INDENT-OFF* */
162 typedef union {
163  CLIB_PACKED (struct {
164  ip6_address_t src;
165  ip6_address_t dst;
166  u32 fragment_id;
167  u8 protocol;
168  });
170  u32 as_u32[10];
172 /* *INDENT-OFF* */
173 
174 typedef struct {
175  u32 pi; //Cached packet or ~0
176  u16 next_data_offset; //The data offset of the additional 20 bytes or ~0
177  u8 next_data_len; //Number of bytes ready to be copied (20 if not last fragment)
178  u8 next_data[20]; //The 20 additional bytes
180 
181 typedef struct {
184 #ifdef MAP_IP6_REASS_COUNT_BYTES
187 #endif
188  u16 bucket; //What hash bucket this element is linked in
195 
196 #ifdef MAP_SKIP_IP6_LOOKUP
197 /**
198  * A pre-resolved next-hop
199  */
201 {
202  /**
203  * Linkage into the FIB graph
204  */
206 
207  /**
208  * The FIB entry index of the next-hop
209  */
211 
212  /**
213  * This object sibling index on the FIB entry's child dependency list
214  */
216 
217  /**
218  * The Load-balance object index to use to forward
219  */
222 
223 /**
224  * Pre-resolved next hops for v4 and v6. Why these are global and not
225  * per-domain is beyond me.
226  */
227 extern map_main_pre_resolved_t pre_resolved[FIB_PROTOCOL_MAX];
228 #endif
229 
230 typedef struct {
231  /* pool of MAP domains */
233 
234  /* MAP Domain packet/byte counters indexed by map domain index */
237  volatile u32 *counter_lock;
238 
239  /* Traffic class: zero, copy (~0) or fixed value */
241  bool tc_copy;
242 
243  bool sec_check; /* Inbound security check */
244  bool sec_check_frag; /* Inbound security check for (subsequent) fragments */
245  bool icmp6_enabled; /* Send destination unreachable for security check failure */
246 
247  bool is_ce; /* If this MAP node is a Customer Edge router*/
248 
249  /* ICMPv6 -> ICMPv4 relay parameters */
252 
253  /* convenience */
256 
257  /*
258  * IPv4 encap and decap reassembly
259  */
260  /* Configuration */
261  f32 ip4_reass_conf_ht_ratio; //Size of ht is 2^ceil(log2(ratio*pool_size))
262  u16 ip4_reass_conf_pool_size; //Max number of allocated reass structures
263  u16 ip4_reass_conf_lifetime_ms; //Time a reassembly struct is considered valid in ms
264  u32 ip4_reass_conf_buffers; //Maximum number of buffers used by ip4 reassembly
265 
266  /* Runtime */
268  u8 ip4_reass_ht_log2len; //Hash table size is 2^log2len
272  volatile u32 *ip4_reass_lock;
273 
274  /* Counters */
276 
277  bool frag_inner; /* Inner or outer fragmentation */
278  bool frag_ignore_df; /* Fragment (outer) packet even if DF is set */
279 
280  /*
281  * IPv6 decap reassembly
282  */
283  /* Configuration */
284  f32 ip6_reass_conf_ht_ratio; //Size of ht is 2^ceil(log2(ratio*pool_size))
285  u16 ip6_reass_conf_pool_size; //Max number of allocated reass structures
286  u16 ip6_reass_conf_lifetime_ms; //Time a reassembly struct is considered valid in ms
287  u32 ip6_reass_conf_buffers; //Maximum number of buffers used by ip6 reassembly
288 
289  /* Runtime */
291  u8 ip6_reass_ht_log2len; //Hash table size is 2^log2len
295  volatile u32 *ip6_reass_lock;
296 
297  /* Counters */
299 
300 } map_main_t;
301 
302 /*
303  * MAP Error counters/messages
304  */
305 #define foreach_map_error \
306  /* Must be first. */ \
307  _(NONE, "valid MAP packets") \
308  _(BAD_PROTOCOL, "bad protocol") \
309  _(SEC_CHECK, "security check failed") \
310  _(ENCAP_SEC_CHECK, "encap security check failed") \
311  _(DECAP_SEC_CHECK, "decap security check failed") \
312  _(ICMP, "unable to translate ICMP") \
313  _(ICMP_RELAY, "unable to relay ICMP") \
314  _(UNKNOWN, "unknown") \
315  _(NO_BINDING, "no binding") \
316  _(NO_DOMAIN, "no domain") \
317  _(FRAGMENTED, "packet is a fragment") \
318  _(FRAGMENT_MEMORY, "could not cache fragment") \
319  _(FRAGMENT_MALFORMED, "fragment has unexpected format")\
320  _(FRAGMENT_DROPPED, "dropped cached fragment") \
321  _(MALFORMED, "malformed packet") \
322  _(DF_SET, "can't fragment, DF set")
323 
324 typedef enum {
325 #define _(sym,str) MAP_ERROR_##sym,
327 #undef _
329  } map_error_t;
330 
331 u64 map_error_counter_get(u32 node_index, map_error_t map_error);
332 
333 typedef struct {
336 } map_trace_t;
337 
338 extern map_main_t map_main;
339 
342 
347 
352 
353 /*
354  * map_get_pfx
355  */
358 {
359  u16 psid = (port >> d->psid_shift) & d->psid_mask;
360 
361  if (d->ea_bits_len == 0 && d->rules)
362  return clib_net_to_host_u64(d->rules[psid].as_u64[0]);
363 
364  u32 suffix = (addr >> d->suffix_shift) & d->suffix_mask;
365  u64 ea = d->ea_bits_len == 0 ? 0 : (((u64) suffix << d->psid_length)) | psid;
366 
367  return clib_net_to_host_u64(d->ip6_prefix.as_u64[0]) | ea << d->ea_shift;
368 }
369 
372 {
373  return clib_host_to_net_u64(map_get_pfx(d, clib_net_to_host_u32(addr),
374  clib_net_to_host_u16(port)));
375 }
376 
377 /*
378  * map_get_sfx
379  */
382 {
383  u16 psid = (port >> d->psid_shift) & d->psid_mask;
384 
385  /* Shared 1:1 mode. */
386  if (d->ea_bits_len == 0 && d->rules)
387  return clib_net_to_host_u64(d->rules[psid].as_u64[1]);
388  if (d->ip6_prefix_len == 128)
389  return clib_net_to_host_u64(d->ip6_prefix.as_u64[1]);
390 
391  if (d->flags & MAP_DOMAIN_RFC6052)
392  return (clib_net_to_host_u64(d->ip6_prefix.as_u64[1]) | addr);
393 
394  /* IPv4 prefix */
395  if (d->flags & MAP_DOMAIN_PREFIX)
396  return (u64) (addr & (0xFFFFFFFF << d->suffix_shift)) << 16;
397 
398  /* Shared or full IPv4 address */
399  return ((u64) addr << 16) | psid;
400 }
401 
404 {
405  return clib_host_to_net_u64(map_get_sfx(d, clib_net_to_host_u32(addr),
406  clib_net_to_host_u16(port)));
407 }
408 
410 map_get_ip4 (ip6_address_t *addr, map_domain_flags_e flags)
411 {
412  if (flags & MAP_DOMAIN_RFC6052)
413  return clib_host_to_net_u32(clib_net_to_host_u64(addr->as_u64[1]));
414  else
415  return clib_host_to_net_u32(clib_net_to_host_u64(addr->as_u64[1]) >> 16);
416 }
417 
418 /*
419  * Get the MAP domain from an IPv4 lookup adjacency.
420  */
423 {
424  map_main_t *mm = &map_main;
425 
426  return pool_elt_at_index(mm->domains, mdi);
427 }
428 
429 /*
430  * Get the MAP domain from an IPv6 lookup adjacency.
431  * If the IPv6 address or prefix is not shared, no lookup is required.
432  * The IPv4 address is used otherwise.
433  */
437  u32 *map_domain_index,
438  u8 *error)
439 {
440  map_main_t *mm = &map_main;
441 
442 #ifdef TODO
443  /*
444  * Disable direct MAP domain lookup on decap, until the security check is updated to verify IPv4 SA.
445  * (That's done implicitly when MAP domain is looked up in the IPv4 FIB)
446  */
447  //#ifdef MAP_NONSHARED_DOMAIN_ENABLED
448  //#error "How can you be sure this domain is not shared?"
449 #endif
450 
451  *map_domain_index = mdi;
452  return pool_elt_at_index(mm->domains, mdi);
453 
454 #ifdef TODO
455  u32 lbi = ip4_fib_forwarding_lookup(0, addr);
456  const dpo_id_t *dpo = load_balance_get_bucket(lbi, 0);
457  if (PREDICT_TRUE(dpo->dpoi_type == map_dpo_type ||
458  dpo->dpoi_type == map_t_dpo_type))
459  {
460  *map_domain_index = dpo->dpoi_index;
461  return pool_elt_at_index(mm->domains, *map_domain_index);
462  }
463  *error = MAP_ERROR_NO_DOMAIN;
464  return NULL;
465 #endif
466 }
467 
469 map_ip4_reass_get(u32 src, u32 dst, u16 fragment_id,
470  u8 protocol, u32 **pi_to_drop);
471 void
472 map_ip4_reass_free(map_ip4_reass_t *r, u32 **pi_to_drop);
473 
474 #define map_ip4_reass_lock() while (__sync_lock_test_and_set(map_main.ip4_reass_lock, 1)) {}
475 #define map_ip4_reass_unlock() do {CLIB_MEMORY_BARRIER(); *map_main.ip4_reass_lock = 0;} while(0)
476 
479 {
480  int i;
482  if(r->fragments[i] != ~0) {
483  vec_add1(*pi, r->fragments[i]);
484  r->fragments[i] = ~0;
485  map_main.ip4_reass_buffered_counter--;
486  }
487 }
488 
490 
492 map_ip6_reass_get(ip6_address_t *src, ip6_address_t *dst, u32 fragment_id,
493  u8 protocol, u32 **pi_to_drop);
494 void
495 map_ip6_reass_free(map_ip6_reass_t *r, u32 **pi_to_drop);
496 
497 #define map_ip6_reass_lock() while (__sync_lock_test_and_set(map_main.ip6_reass_lock, 1)) {}
498 #define map_ip6_reass_unlock() do {CLIB_MEMORY_BARRIER(); *map_main.ip6_reass_lock = 0;} while(0)
499 
500 int
502  u16 data_offset, u16 next_data_offset,
503  u8 *data_start, u16 data_len);
504 
505 void map_ip4_drop_pi(u32 pi);
506 
507 int map_ip4_reass_conf_ht_ratio(f32 ht_ratio, u32 *trashed_reass, u32 *dropped_packets);
508 #define MAP_IP4_REASS_CONF_HT_RATIO_MAX 100
509 int map_ip4_reass_conf_pool_size(u16 pool_size, u32 *trashed_reass, u32 *dropped_packets);
510 #define MAP_IP4_REASS_CONF_POOL_SIZE_MAX (0xfeff)
511 int map_ip4_reass_conf_lifetime(u16 lifetime_ms);
512 #define MAP_IP4_REASS_CONF_LIFETIME_MAX 0xffff
513 int map_ip4_reass_conf_buffers(u32 buffers);
514 #define MAP_IP4_REASS_CONF_BUFFERS_MAX (0xffffffff)
515 
516 void map_ip6_drop_pi(u32 pi);
517 
518 
519 int map_ip6_reass_conf_ht_ratio(f32 ht_ratio, u32 *trashed_reass, u32 *dropped_packets);
520 #define MAP_IP6_REASS_CONF_HT_RATIO_MAX 100
521 int map_ip6_reass_conf_pool_size(u16 pool_size, u32 *trashed_reass, u32 *dropped_packets);
522 #define MAP_IP6_REASS_CONF_POOL_SIZE_MAX (0xfeff)
523 int map_ip6_reass_conf_lifetime(u16 lifetime_ms);
524 #define MAP_IP6_REASS_CONF_LIFETIME_MAX 0xffff
525 int map_ip6_reass_conf_buffers(u32 buffers);
526 #define MAP_IP6_REASS_CONF_BUFFERS_MAX (0xffffffff)
527 
530  ip6_address_t *ip6, const ip4_address_t *ip4)
531 {
532  ASSERT(d->ip6_src_len == 96); //No support for other lengths for now
533  ip6->as_u64[0] = d->ip6_src.as_u64[0];
534  ip6->as_u32[2] = d->ip6_src.as_u32[2];
535  ip6->as_u32[3] = ip4->as_u32;
536 }
537 
540 {
541  ASSERT(d->ip6_src_len == 96); //No support for other lengths for now
542  return addr->as_u32[3];
543 }
544 
545 static inline void
547 {
548  if (mm->counter_lock)
549  while (__sync_lock_test_and_set(mm->counter_lock, 1))
550  /* zzzz */ ;
551 }
552 static inline void
554 {
555  if (mm->counter_lock)
556  *mm->counter_lock = 0;
557 }
558 
559 
563  u32 next)
564 {
565  u32 n_left_from, *from, next_index, *to_next, n_left_to_next;
566  //Deal with fragments that are ready
567  from = pi_vector;
568  n_left_from = vec_len(pi_vector);
569  next_index = node->cached_next_index;
570  while (n_left_from > 0) {
571  vlib_get_next_frame(vm, node, next_index, to_next, n_left_to_next);
572  while (n_left_from > 0 && n_left_to_next > 0) {
573  u32 pi0 = to_next[0] = from[0];
574  from += 1;
575  n_left_from -= 1;
576  to_next += 1;
577  n_left_to_next -= 1;
578  vlib_buffer_t *p0 = vlib_get_buffer(vm, pi0);
579  p0->error = *error;
580  vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, pi0, next);
581  }
582  vlib_put_next_frame(vm, node, next_index, n_left_to_next);
583  }
584 }
585 
586 /*
587  * fd.io coding-style-patch-verification: ON
588  *
589  * Local Variables:
590  * eval: (c-set-style "gnu")
591  * End:
592  */
u16 forwarded
Definition: map.h:186
map_ip6_reass_t * map_ip6_reass_get(ip6_address_t *src, ip6_address_t *dst, u32 fragment_id, u8 protocol, u32 **pi_to_drop)
Definition: map.c:1687
u8 psid_length
Definition: map.h:97
map_ip4_reass_t * ip4_reass_pool
Definition: map.h:267
int map_ip4_reass_add_fragment(map_ip4_reass_t *r, u32 pi)
Definition: map.c:1596
u32 ip4_reass_conf_buffers
Definition: map.h:264
fib_node_t node
Linkage into the FIB graph.
Definition: map.h:205
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:60
map_domain_flags_e flags
Definition: map.h:92
u16 fifo_prev
Definition: map.h:190
vlib_node_registration_t ip4_map_t_node
(constructor) VLIB_REGISTER_NODE (ip4_map_t_node)
Definition: ip4_map_t.c:872
static_always_inline u64 map_get_pfx(map_domain_t *d, u32 addr, u16 port)
Definition: map.h:357
u16 ip4_reass_allocated
Definition: map.h:269
volatile u32 * ip6_reass_lock
Definition: map.h:295
volatile u32 * counter_lock
Definition: map.h:237
u8 ip4_reass_ht_log2len
Definition: map.h:268
u32 fragments[MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY]
Definition: map.h:142
vlib_node_registration_t ip4_map_t_icmp_node
(constructor) VLIB_REGISTER_NODE (ip4_map_t_icmp_node)
Definition: ip4_map_t.c:832
u16 bucket_next
Definition: map.h:189
u64 as_u64
Definition: bihash_doc.h:63
#define PREDICT_TRUE(x)
Definition: clib.h:106
u64 as_u64[2]
Definition: ip6_packet.h:51
map_error_t
Definition: map.h:324
dpo_id_t dpo
The Load-balance object index to use to forward.
Definition: map.h:220
#define NULL
Definition: clib.h:55
int map_ip4_reass_conf_buffers(u32 buffers)
Definition: map.c:1926
vlib_main_t * vlib_main
Definition: map.h:254
int map_ip6_reass_conf_lifetime(u16 lifetime_ms)
Definition: map.c:2002
u8 tc
Definition: map.h:240
int map_ip4_reass_conf_ht_ratio(f32 ht_ratio, u32 *trashed_reass, u32 *dropped_packets)
Definition: map.c:1887
A pre-resolved next-hop.
Definition: map.h:200
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:520
static void map_domain_counter_unlock(map_main_t *mm)
Definition: map.h:553
int i
u32 suffix_mask
Definition: map.h:88
bool sec_check_frag
Definition: map.h:244
u32 ip4_reass_buffered_counter
Definition: map.h:275
u16 ip4_reass_fifo_last
Definition: map.h:271
map_ip6_reass_t * ip6_reass_pool
Definition: map.h:290
u16 port
Definition: map.h:335
vlib_node_registration_t ip6_map_t_tcp_udp_node
(constructor) VLIB_REGISTER_NODE (ip6_map_t_tcp_udp_node)
Definition: ip6_map_t.c:1140
float f32
Definition: types.h:143
static_always_inline void ip4_map_t_embedded_address(map_domain_t *d, ip6_address_t *ip6, const ip4_address_t *ip4)
Definition: map.h:529
#define MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY
Definition: map.h:63
static_always_inline u32 ip6_map_t_embedded_address(map_domain_t *d, ip6_address_t *addr)
Definition: map.h:539
bool tc_copy
Definition: map.h:241
#define static_always_inline
Definition: clib.h:93
map_ip4_reass_key_t key
Definition: map.h:131
u16 bucket
Definition: map.h:188
vlib_combined_counter_main_t * domain_counters
Definition: map.h:236
ip4_address_t icmp4_src_address
Definition: map.h:250
int i32
Definition: types.h:81
static_always_inline void map_send_all_to_node(vlib_main_t *vm, u32 *pi_vector, vlib_node_runtime_t *node, vlib_error_t *error, u32 next)
Definition: map.h:561
u16 fifo_next
Definition: map.h:141
vlib_simple_counter_main_t icmp_relayed
Definition: map.h:251
int map_ip4_reass_conf_pool_size(u16 pool_size, u32 *trashed_reass, u32 *dropped_packets)
Definition: map.c:1904
ip6_address_t * rules
Definition: map.h:87
unsigned long u64
Definition: types.h:89
int map_ip6_reass_conf_ht_ratio(f32 ht_ratio, u32 *trashed_reass, u32 *dropped_packets)
Definition: map.c:1970
u8 ea_bits_len
Definition: map.h:95
A collection of simple counters.
Definition: counter.h:58
u8 ip6_prefix_len
Definition: map.h:93
int map_ip6_reass_conf_buffers(u32 buffers)
Definition: map.c:2009
u16 ip6_reass_allocated
Definition: map.h:292
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:168
map_ip4_reass_t * map_ip4_reass_get(u32 src, u32 dst, u16 fragment_id, u8 protocol, u32 **pi_to_drop)
Definition: map.c:1515
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:461
bool is_ce
Definition: map.h:247
int map_create_domain(ip4_address_t *ip4_prefix, u8 ip4_prefix_len, ip6_address_t *ip6_prefix, u8 ip6_prefix_len, ip6_address_t *ip6_src, u8 ip6_src_len, u8 ea_bits_len, u8 psid_offset, u8 psid_length, u32 *map_domain_index, u16 mtu, u8 flags)
Definition: map.c:64
dpo_type_t dpoi_type
the type
Definition: dpo.h:172
bool frag_ignore_df
Definition: map.h:278
volatile u32 * ip4_reass_lock
Definition: map.h:272
static_always_inline u64 map_get_pfx_net(map_domain_t *d, u32 addr, u16 port)
Definition: map.h:371
static_always_inline map_domain_t * ip6_map_get_domain(u32 mdi, ip4_address_t *addr, u32 *map_domain_index, u8 *error)
Definition: map.h:435
u16 ip4_reass_conf_pool_size
Definition: map.h:262
map_domain_t * domains
Definition: map.h:232
int map_ip6_reass_conf_pool_size(u16 pool_size, u32 *trashed_reass, u32 *dropped_packets)
Definition: map.c:1987
u16 bucket
Definition: map.h:138
static_always_inline u64 map_get_sfx_net(map_domain_t *d, u32 addr, u16 port)
Definition: map.h:403
u16 * ip6_reass_hash_table
Definition: map.h:293
u16 * ip4_reass_hash_table
Definition: map.h:270
u32 vlib_error_t
Definition: error.h:44
map_main_t map_main
Definition: map.c:26
static_always_inline map_domain_t * ip4_map_get_domain(u32 mdi)
Definition: map.h:422
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:218
An node in the FIB graph.
Definition: fib_node.h:286
u8 ip6_src_len
Definition: map.h:94
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:364
u8 psid_shift
Definition: map.h:100
dpo_type_t map_dpo_type
The register MAP DPO type.
Definition: map_dpo.c:22
const dpo_id_t * load_balance_get_bucket(index_t lbi, u32 bucket)
Definition: load_balance.c:294
u16 expected_total
Definition: map.h:134
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:130
vlib_node_registration_t ip4_map_t_tcp_udp_node
(constructor) VLIB_REGISTER_NODE (ip4_map_t_tcp_udp_node)
Definition: ip4_map_t.c:852
u8 suffix_shift
Definition: map.h:101
vlib_node_registration_t ip4_map_t_fragmented_node
(constructor) VLIB_REGISTER_NODE (ip4_map_t_fragmented_node)
Definition: ip4_map_t.c:812
u8 ip6_reass_ht_log2len
Definition: map.h:291
u32 as_u32[4]
Definition: ip6_packet.h:50
u16 ip6_reass_fifo_last
Definition: map.h:294
u16 ip6_reass_conf_pool_size
Definition: map.h:285
u8 next_data_len
Definition: map.h:177
void map_ip4_drop_pi(u32 pi)
Definition: ip6_map.c:664
ip4_address_t ip4_prefix
Definition: map.h:89
u16 next_data_offset
Definition: map.h:176
static_always_inline void map_ip4_reass_get_fragments(map_ip4_reass_t *r, u32 **pi)
Definition: map.h:478
vlib_main_t * vm
Definition: buffer.c:294
vlib_node_registration_t ip6_map_t_icmp_node
(constructor) VLIB_REGISTER_NODE (ip6_map_t_icmp_node)
Definition: ip6_map_t.c:1120
u8 psid_offset
Definition: map.h:96
void map_ip6_reass_free(map_ip6_reass_t *r, u32 **pi_to_drop)
Definition: map.c:1635
u16 forwarded
Definition: map.h:135
bool icmp6_enabled
Definition: map.h:245
u32 sibling
This object sibling index on the FIB entry&#39;s child dependency list.
Definition: map.h:215
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:30
map_domain_counter_t
Definition: map.h:148
map_ip6_reass_key_t key
Definition: map.h:182
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:454
static_always_inline u32 map_get_ip4(ip6_address_t *addr, map_domain_flags_e flags)
Definition: map.h:410
#define foreach_map_error
Definition: map.h:305
ip6_address_t ip6_src
Definition: map.h:85
static void map_domain_counter_lock(map_main_t *mm)
Definition: map.h:546
f32 ip4_reass_conf_ht_ratio
Definition: map.h:261
vlib_node_registration_t ip4_map_node
(constructor) VLIB_REGISTER_NODE (ip4_map_node)
Definition: ip4_map.c:703
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:456
#define ASSERT(truth)
vlib_node_registration_t ip6_map_node
(constructor) VLIB_REGISTER_NODE (ip6_map_node)
Definition: ip6_map.c:1180
unsigned int u32
Definition: types.h:88
bool sec_check
Definition: map.h:243
bool frag_inner
Definition: map.h:277
u16 psid_mask
Definition: map.h:90
STATIC_ASSERT((sizeof(map_domain_t)<=CLIB_CACHE_LINE_BYTES),"MAP domain fits in one cacheline")
static index_t ip4_fib_forwarding_lookup(u32 fib_index, const ip4_address_t *addr)
Definition: ip4_fib.h:164
ip4_header_t ip4_header
Definition: map.h:192
u8 ea_shift
Definition: map.h:102
void map_ip6_drop_pi(u32 pi)
Definition: ip6_map.c:655
ip6_address_t ip6_prefix
Definition: map.h:86
f32 ip6_reass_conf_ht_ratio
Definition: map.h:284
u8 * format_map_trace(u8 *s, va_list *args)
Definition: map.c:1435
struct _vlib_node_registration vlib_node_registration_t
vnet_main_t * vnet_main
Definition: map.h:255
unsigned short u16
Definition: types.h:57
u16 mtu
Definition: map.h:91
index_t dpoi_index
the index of objects of that type
Definition: dpo.h:184
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
double f64
Definition: types.h:142
u16 ip6_reass_conf_lifetime_ms
Definition: map.h:286
unsigned char u8
Definition: types.h:56
fib_node_index_t fei
The FIB entry index of the next-hop.
Definition: map.h:210
i32 port
Definition: map.h:137
dpo_type_t map_t_dpo_type
Definition: map_dpo.c:23
A collection of combined counters.
Definition: counter.h:180
u16 bucket_next
Definition: map.h:139
#define FIB_PROTOCOL_MAX
Definition outside of enum so it does not need to be included in non-defaulted switch statements...
Definition: fib_types.h:52
u8 ip4_prefix_len
Definition: map.h:105
vlib_simple_counter_main_t * simple_domain_counters
Definition: map.h:235
u64 map_error_counter_get(u32 node_index, map_error_t map_error)
Definition: map.c:1137
#define MAP_IP6_REASS_MAX_FRAGMENTS_PER_REASSEMBLY
Definition: map.h:70
void map_ip4_reass_free(map_ip4_reass_t *r, u32 **pi_to_drop)
Definition: map.c:1472
u16 ip4_reass_conf_lifetime_ms
Definition: map.h:263
int map_delete_domain(u32 map_domain_index)
Definition: map.c:257
static_always_inline u64 map_get_sfx(map_domain_t *d, u32 addr, u16 port)
Definition: map.h:381
u32 map_domain_index
Definition: map.h:334
int map_add_del_psid(u32 map_domain_index, u16 psid, ip6_address_t *tep, u8 is_add)
Definition: map.c:301
vhost_vring_addr_t addr
Definition: vhost-user.h:83
u16 fifo_prev
Definition: map.h:140
int map_ip4_reass_conf_lifetime(u16 lifetime_ms)
Definition: map.c:1919
vlib_node_registration_t ip6_map_t_fragmented_node
(constructor) VLIB_REGISTER_NODE (ip6_map_t_fragmented_node)
Definition: ip6_map_t.c:1100
vlib_node_registration_t ip6_map_t_node
(constructor) VLIB_REGISTER_NODE (ip6_map_t_node)
Definition: ip6_map_t.c:1160
u32 flags
Definition: vhost-user.h:77
u32 ip6_reass_buffered_counter
Definition: map.h:298
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
u16 expected_total
Definition: map.h:185
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:57
int map_ip6_reass_add_fragment(map_ip6_reass_t *r, u32 pi, u16 data_offset, u16 next_data_offset, u8 *data_start, u16 data_len)
Definition: map.c:1775
struct map_main_pre_resolved_t_ map_main_pre_resolved_t
A pre-resolved next-hop.
u16 fifo_next
Definition: map.h:191
#define CLIB_PACKED(x)
Definition: clib.h:78
u32 ip6_reass_conf_buffers
Definition: map.h:287