FD.io VPP  v16.06
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 
21 #define MAP_SKIP_IP6_LOOKUP 1
22 
23 typedef enum {
26 } map_dir_e;
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, u8 is_add);
35 u8 *format_map_trace(u8 *s, va_list *args);
36 i32 ip4_get_port(ip4_header_t *ip, map_dir_e dir, u16 buffer_len);
37 i32 ip6_get_port(ip6_header_t *ip6, map_dir_e dir, u16 buffer_len);
39 
40 typedef enum __attribute__ ((__packed__)) {
42  MAP_DOMAIN_TRANSLATION = 1 << 1, // The domain uses MAP-T
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 {
95 
96  /* helpers */
100 
101  /* not used by forwarding */
103 } map_domain_t;
104 
105 #define MAP_REASS_INDEX_NONE ((u16)0xffff)
106 
107 /*
108  * Hash key, padded out to 16 bytes for fast compare
109  */
110 typedef union {
111  CLIB_PACKED (struct {
112  ip4_address_t src;
113  ip4_address_t dst;
114  u16 fragment_id;
115  u8 protocol;
116  });
117  u64 as_u64[2];
118  u32 as_u32[4];
120 
121 typedef struct {
124 #ifdef MAP_IP4_REASS_COUNT_BYTES
127 #endif
135 
136 /*
137  * MAP domain counters
138  */
139 typedef enum {
140  /* Simple counters */
142  /* Combined counters */
147 
148 /*
149  * main_main_t
150  */
151 typedef union {
152  CLIB_PACKED (struct {
153  ip6_address_t src;
154  ip6_address_t dst;
155  u32 fragment_id;
156  u8 protocol;
157  });
158  u64 as_u64[5];
159  u32 as_u32[10];
161 
162 typedef struct {
163  u32 pi; //Cached packet or ~0
164  u16 next_data_offset; //The data offset of the additional 20 bytes or ~0
165  u8 next_data_len; //Number of bytes ready to be copied (20 if not last fragment)
166  u8 next_data[20]; //The 20 additional bytes
168 
169 typedef struct {
172 #ifdef MAP_IP6_REASS_COUNT_BYTES
175 #endif
176  u16 bucket; //What hash bucket this element is linked in
183 
184 typedef struct {
185  /* pool of MAP domains */
187 
188  /* MAP Domain packet/byte counters indexed by map domain index */
191  volatile u32 *counter_lock;
192 
193 #ifdef MAP_SKIP_IP6_LOOKUP
194  /* pre-presolve */
195  u32 adj6_index, adj4_index;
198 #endif
199 
200  /* Traffic class: zero, copy (~0) or fixed value */
202  bool tc_copy;
203 
204  bool sec_check; /* Inbound security check */
205  bool sec_check_frag; /* Inbound security check for (subsequent) fragments */
206  bool icmp6_enabled; /* Send destination unreachable for security check failure */
207 
208  /* ICMPv6 -> ICMPv4 relay parameters */
211 
212  /* convenience */
215 
216  /*
217  * IPv4 encap and decap reassembly
218  */
219  /* Configuration */
220  f32 ip4_reass_conf_ht_ratio; //Size of ht is 2^ceil(log2(ratio*pool_size))
221  u16 ip4_reass_conf_pool_size; //Max number of allocated reass structures
222  u16 ip4_reass_conf_lifetime_ms; //Time a reassembly struct is considered valid in ms
223  u32 ip4_reass_conf_buffers; //Maximum number of buffers used by ip4 reassembly
224 
225  /* Runtime */
227  u8 ip4_reass_ht_log2len; //Hash table size is 2^log2len
231  volatile u32 *ip4_reass_lock;
232 
233  /* Counters */
235 
236  bool frag_inner; /* Inner or outer fragmentation */
237  bool frag_ignore_df; /* Fragment (outer) packet even if DF is set */
238 
239  /*
240  * IPv6 decap reassembly
241  */
242  /* Configuration */
243  f32 ip6_reass_conf_ht_ratio; //Size of ht is 2^ceil(log2(ratio*pool_size))
244  u16 ip6_reass_conf_pool_size; //Max number of allocated reass structures
245  u16 ip6_reass_conf_lifetime_ms; //Time a reassembly struct is considered valid in ms
246  u32 ip6_reass_conf_buffers; //Maximum number of buffers used by ip6 reassembly
247 
248  /* Runtime */
250  u8 ip6_reass_ht_log2len; //Hash table size is 2^log2len
254  volatile u32 *ip6_reass_lock;
255 
256  /* Counters */
258 
259 } map_main_t;
260 
261 /*
262  * MAP Error counters/messages
263  */
264 #define foreach_map_error \
265  /* Must be first. */ \
266  _(NONE, "valid MAP packets") \
267  _(BAD_PROTOCOL, "bad protocol") \
268  _(SEC_CHECK, "security check failed") \
269  _(ENCAP_SEC_CHECK, "encap security check failed") \
270  _(DECAP_SEC_CHECK, "decap security check failed") \
271  _(ICMP, "unable to translate ICMP") \
272  _(ICMP_RELAY, "unable to relay ICMP") \
273  _(UNKNOWN, "unknown") \
274  _(NO_BINDING, "no binding") \
275  _(NO_DOMAIN, "no domain") \
276  _(FRAGMENTED, "packet is a fragment") \
277  _(FRAGMENT_MEMORY, "could not cache fragment") \
278  _(FRAGMENT_MALFORMED, "fragment has unexpected format")\
279  _(FRAGMENT_DROPPED, "dropped cached fragment") \
280  _(MALFORMED, "malformed packet") \
281  _(DF_SET, "can't fragment, DF set")
282 
283 typedef enum {
284 #define _(sym,str) MAP_ERROR_##sym,
286 #undef _
288  } map_error_t;
289 
290 u64 map_error_counter_get(u32 node_index, map_error_t map_error);
291 
292 typedef struct {
295 } map_trace_t;
296 
298 
301 
306 
311 
312 /*
313  * map_get_pfx
314  */
317 {
318  u16 psid = (port >> d->psid_shift) & d->psid_mask;
319 
320  if (d->ea_bits_len == 0 && d->rules)
321  return clib_net_to_host_u64(d->rules[psid].as_u64[0]);
322 
323  u32 suffix = (addr >> d->suffix_shift) & d->suffix_mask;
324  u64 ea = d->ea_bits_len == 0 ? 0 : (((u64) suffix << d->psid_length)) | psid;
325 
326  return clib_net_to_host_u64(d->ip6_prefix.as_u64[0]) | ea << d->ea_shift;
327 }
328 
331 {
332  return clib_host_to_net_u64(map_get_pfx(d, clib_net_to_host_u32(addr),
333  clib_net_to_host_u16(port)));
334 }
335 
336 /*
337  * map_get_sfx
338  */
341 {
342  u16 psid = (port >> d->psid_shift) & d->psid_mask;
343 
344  /* Shared 1:1 mode. */
345  if (d->ea_bits_len == 0 && d->rules)
346  return clib_net_to_host_u64(d->rules[psid].as_u64[1]);
347  if (d->ip6_prefix_len == 128)
348  return clib_net_to_host_u64(d->ip6_prefix.as_u64[1]);
349 
350  /* IPv4 prefix */
351  if (d->flags & MAP_DOMAIN_PREFIX)
352  return (u64) (addr & ~d->suffix_mask) << 16;
353 
354  /* Shared or full IPv4 address */
355  return ((u64) addr << 16) | psid;
356 }
357 
360 {
361  return clib_host_to_net_u64(map_get_sfx(d, clib_net_to_host_u32(addr),
362  clib_net_to_host_u16(port)));
363 }
364 
367 {
368  return clib_host_to_net_u32(clib_net_to_host_u64(addr->as_u64[1]) >> 16);
369 }
370 
371 /*
372  * Get the MAP domain from an IPv4 lookup adjacency.
373  */
375 ip4_map_get_domain (u32 adj_index, u32 *map_domain_index)
376 {
377  map_main_t *mm = &map_main;
379  ip_adjacency_t *adj = ip_get_adjacency(lm, adj_index);
380  ASSERT(adj);
381  uword *p = (uword *)adj->rewrite_data;
382  ASSERT(p);
383  *map_domain_index = p[0];
384  return pool_elt_at_index(mm->domains, p[0]);
385 }
386 
387 /*
388  * Get the MAP domain from an IPv6 lookup adjacency.
389  * If the IPv6 address or prefix is not shared, no lookup is required.
390  * The IPv4 address is used otherwise.
391  */
394  u32 *map_domain_index, u8 *error)
395 {
396  map_main_t *mm = &map_main;
397  ip4_main_t *im4 = &ip4_main;
399 
400  /*
401  * Disable direct MAP domain lookup on decap, until the security check is updated to verify IPv4 SA.
402  * (That's done implicitly when MAP domain is looked up in the IPv4 FIB)
403  */
404 #ifdef MAP_NONSHARED_DOMAIN_ENABLED
406  ip_adjacency_t *adj = ip_get_adjacency(lm6, adj_index);
407  ASSERT(adj);
408  uword *p = (uword *)adj->rewrite_data;
409  ASSERT(p);
410  *map_domain_index = p[0];
411  if (p[0] != ~0)
412  return pool_elt_at_index(mm->domains, p[0]);
413 #endif
414 
415  u32 ai = ip4_fib_lookup_with_table(im4, 0, addr, 0);
416  ip_adjacency_t *adj4 = ip_get_adjacency (lm4, ai);
419  uword *p = (uword *)adj4->rewrite_data;
420  *map_domain_index = p[0];
421  return pool_elt_at_index(mm->domains, *map_domain_index);
422  }
423  *error = MAP_ERROR_NO_DOMAIN;
424  return NULL;
425 }
426 
428 map_ip4_reass_get(u32 src, u32 dst, u16 fragment_id,
429  u8 protocol, u32 **pi_to_drop);
430 void
431 map_ip4_reass_free(map_ip4_reass_t *r, u32 **pi_to_drop);
432 
433 #define map_ip4_reass_lock() while (__sync_lock_test_and_set(map_main.ip4_reass_lock, 1)) {}
434 #define map_ip4_reass_unlock() do {CLIB_MEMORY_BARRIER(); *map_main.ip4_reass_lock = 0;} while(0)
435 
438 {
439  int i;
441  if(r->fragments[i] != ~0) {
442  vec_add1(*pi, r->fragments[i]);
443  r->fragments[i] = ~0;
444  map_main.ip4_reass_buffered_counter--;
445  }
446 }
447 
449 
451 map_ip6_reass_get(ip6_address_t *src, ip6_address_t *dst, u32 fragment_id,
452  u8 protocol, u32 **pi_to_drop);
453 void
454 map_ip6_reass_free(map_ip6_reass_t *r, u32 **pi_to_drop);
455 
456 #define map_ip6_reass_lock() while (__sync_lock_test_and_set(map_main.ip6_reass_lock, 1)) {}
457 #define map_ip6_reass_unlock() do {CLIB_MEMORY_BARRIER(); *map_main.ip6_reass_lock = 0;} while(0)
458 
459 int
461  u16 data_offset, u16 next_data_offset,
462  u8 *data_start, u16 data_len);
463 
464 void map_ip4_drop_pi(u32 pi);
465 
466 int map_ip4_reass_conf_ht_ratio(f32 ht_ratio, u32 *trashed_reass, u32 *dropped_packets);
467 #define MAP_IP4_REASS_CONF_HT_RATIO_MAX 100
468 int map_ip4_reass_conf_pool_size(u16 pool_size, u32 *trashed_reass, u32 *dropped_packets);
469 #define MAP_IP4_REASS_CONF_POOL_SIZE_MAX (0xfeff)
470 int map_ip4_reass_conf_lifetime(u16 lifetime_ms);
471 #define MAP_IP4_REASS_CONF_LIFETIME_MAX 0xffff
472 int map_ip4_reass_conf_buffers(u32 buffers);
473 #define MAP_IP4_REASS_CONF_BUFFERS_MAX (0xffffffff)
474 
475 void map_ip6_drop_pi(u32 pi);
476 
477 
478 int map_ip6_reass_conf_ht_ratio(f32 ht_ratio, u32 *trashed_reass, u32 *dropped_packets);
479 #define MAP_IP6_REASS_CONF_HT_RATIO_MAX 100
480 int map_ip6_reass_conf_pool_size(u16 pool_size, u32 *trashed_reass, u32 *dropped_packets);
481 #define MAP_IP6_REASS_CONF_POOL_SIZE_MAX (0xfeff)
482 int map_ip6_reass_conf_lifetime(u16 lifetime_ms);
483 #define MAP_IP6_REASS_CONF_LIFETIME_MAX 0xffff
484 int map_ip6_reass_conf_buffers(u32 buffers);
485 #define MAP_IP6_REASS_CONF_BUFFERS_MAX (0xffffffff)
486 
488 int ip6_parse(const ip6_header_t *ip6, u32 buff_len,
489  u8 *l4_protocol, u16 *l4_offset, u16 *frag_hdr_offset)
490 {
491  if (ip6->protocol == IP_PROTOCOL_IPV6_FRAGMENTATION) {
492  *l4_protocol = ((ip6_frag_hdr_t *)(ip6 + 1))->next_hdr;
493  *frag_hdr_offset = sizeof(*ip6);
494  *l4_offset = sizeof(*ip6) + sizeof(ip6_frag_hdr_t);
495  } else {
496  *l4_protocol = ip6->protocol;
497  *frag_hdr_offset = 0;
498  *l4_offset = sizeof(*ip6);
499  }
500 
501  return (buff_len < (*l4_offset + 4)) ||
502  (clib_net_to_host_u16(ip6->payload_length) < (*l4_offset + 4 - sizeof(*ip6)));
503 }
504 
505 
506 #define u8_ptr_add(ptr, index) (((u8 *)ptr) + index)
507 #define u16_net_add(u, val) clib_host_to_net_u16(clib_net_to_host_u16(u) + (val))
508 
509 #define frag_id_6to4(id) ((id) ^ ((id) >> 16))
510 
513  ip6_address_t *ip6, const ip4_address_t *ip4)
514 {
515  ASSERT(d->ip6_src_len == 96); //No support for other lengths for now
516  ip6->as_u64[0] = d->ip6_src.as_u64[0];
517  ip6->as_u32[2] = d->ip6_src.as_u32[2];
518  ip6->as_u32[3] = ip4->as_u32;
519 }
520 
523 {
524  ASSERT(d->ip6_src_len == 96); //No support for other lengths for now
525  return addr->as_u32[3];
526 }
527 
528 static inline void
530 {
531  if (mm->counter_lock)
532  while (__sync_lock_test_and_set(mm->counter_lock, 1))
533  /* zzzz */ ;
534 }
535 static inline void
537 {
538  if (mm->counter_lock)
539  *mm->counter_lock = 0;
540 }
541 
542 
545  vlib_node_runtime_t *node, vlib_error_t *error,
546  u32 next)
547 {
548  u32 n_left_from, *from, next_index, *to_next, n_left_to_next;
549  //Deal with fragments that are ready
550  from = pi_vector;
551  n_left_from = vec_len(pi_vector);
552  next_index = node->cached_next_index;
553  while (n_left_from > 0) {
554  vlib_get_next_frame(vm, node, next_index, to_next, n_left_to_next);
555  while (n_left_from > 0 && n_left_to_next > 0) {
556  u32 pi0 = to_next[0] = from[0];
557  from += 1;
558  n_left_from -= 1;
559  to_next += 1;
560  n_left_to_next -= 1;
561  vlib_buffer_t *p0 = vlib_get_buffer(vm, pi0);
562  p0->error = *error;
563  vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, pi0, next);
564  }
565  vlib_put_next_frame(vm, node, next_index, n_left_to_next);
566  }
567 }
u16 forwarded
Definition: map.h:174
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:1318
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Definition: main.c:459
i32 ip4_get_port(ip4_header_t *ip, map_dir_e dir, u16 buffer_len)
Definition: map.c:66
u8 psid_length
Definition: map.h:94
map_ip4_reass_t * ip4_reass_pool
Definition: map.h:226
int map_ip4_reass_add_fragment(map_ip4_reass_t *r, u32 pi)
Definition: map.c:1239
u32 ip4_reass_conf_buffers
Definition: map.h:223
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:267
map_domain_flags_e flags
Definition: map.h:89
u16 fifo_prev
Definition: map.h:178
vlib_node_registration_t ip4_map_t_node
(constructor) VLIB_REGISTER_NODE (ip4_map_t_node)
Definition: ip4_map_t.c:1075
static_always_inline u64 map_get_pfx(map_domain_t *d, u32 addr, u16 port)
Definition: map.h:316
u16 ip4_reass_allocated
Definition: map.h:228
volatile u32 * ip6_reass_lock
Definition: map.h:254
volatile u32 * counter_lock
Definition: map.h:191
u8 ip4_reass_ht_log2len
Definition: map.h:227
u32 fragments[MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY]
Definition: map.h:133
vlib_node_registration_t ip4_map_t_icmp_node
(constructor) VLIB_REGISTER_NODE (ip4_map_t_icmp_node)
Definition: ip4_map_t.c:1039
u16 bucket_next
Definition: map.h:177
ip_lookup_next_t lookup_next_index
Definition: lookup.h:163
#define PREDICT_TRUE(x)
Definition: clib.h:98
u64 as_u64[2]
Definition: ip6_packet.h:50
map_error_t
Definition: map.h:283
#define NULL
Definition: clib.h:55
int map_ip4_reass_conf_buffers(u32 buffers)
Definition: map.c:1519
static_always_inline int ip6_parse(const ip6_header_t *ip6, u32 buff_len, u8 *l4_protocol, u16 *l4_offset, u16 *frag_hdr_offset)
Definition: map.h:488
vlib_main_t * vlib_main
Definition: map.h:213
int map_ip6_reass_conf_lifetime(u16 lifetime_ms)
Definition: map.c:1585
u8 tc
Definition: map.h:201
int map_ip4_reass_conf_ht_ratio(f32 ht_ratio, u32 *trashed_reass, u32 *dropped_packets)
Definition: map.c:1486
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:480
static void map_domain_counter_unlock(map_main_t *mm)
Definition: map.h:536
struct _vlib_node_registration vlib_node_registration_t
u32 suffix_mask
Definition: map.h:85
bool sec_check_frag
Definition: map.h:205
ip_lookup_main_t lookup_main
Definition: ip4.h:129
u32 ip4_reass_buffered_counter
Definition: map.h:234
ip6_address_t preresolve_ip6
Definition: map.h:197
u16 ip4_reass_fifo_last
Definition: map.h:230
map_ip6_reass_t * ip6_reass_pool
Definition: map.h:249
u16 port
Definition: map.h:294
ip4_address_t preresolve_ip4
Definition: map.h:196
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:1106
float f32
Definition: types.h:141
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:512
#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:522
bool tc_copy
Definition: map.h:202
#define static_always_inline
Definition: clib.h:85
map_ip4_reass_key_t key
Definition: map.h:122
u16 bucket
Definition: map.h:176
vlib_combined_counter_main_t * domain_counters
Definition: map.h:190
ip4_address_t icmp4_src_address
Definition: map.h:209
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:544
u16 fifo_next
Definition: map.h:132
u32 ip4_fib_lookup_with_table(ip4_main_t *im, u32 fib_index, ip4_address_t *dst, u32 disable_default_route)
Definition: ip4_forward.c:50
vlib_simple_counter_main_t icmp_relayed
Definition: map.h:210
int map_ip4_reass_conf_pool_size(u16 pool_size, u32 *trashed_reass, u32 *dropped_packets)
Definition: map.c:1500
ip6_address_t * rules
Definition: map.h:84
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:1558
u8 ea_bits_len
Definition: map.h:92
u8 ip6_prefix_len
Definition: map.h:90
int map_ip6_reass_conf_buffers(u32 buffers)
Definition: map.c:1591
u16 ip6_reass_allocated
Definition: map.h:251
map_ip4_reass_t * map_ip4_reass_get(u32 src, u32 dst, u16 fragment_id, u8 protocol, u32 **pi_to_drop)
Definition: map.c:1168
#define pool_elt_at_index(p, i)
Definition: pool.h:346
u32 vlib_error_t
Definition: error.h:44
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:134
bool frag_ignore_df
Definition: map.h:237
volatile u32 * ip4_reass_lock
Definition: map.h:231
static_always_inline u64 map_get_pfx_net(map_domain_t *d, u32 addr, u16 port)
Definition: map.h:330
u16 ip4_reass_conf_pool_size
Definition: map.h:221
map_domain_t * domains
Definition: map.h:186
int map_ip6_reass_conf_pool_size(u16 pool_size, u32 *trashed_reass, u32 *dropped_packets)
Definition: map.c:1572
u16 bucket
Definition: map.h:129
static_always_inline u64 map_get_sfx_net(map_domain_t *d, u32 addr, u16 port)
Definition: map.h:359
static_always_inline map_domain_t * ip6_map_get_domain(u32 adj_index, ip4_address_t *addr, u32 *map_domain_index, u8 *error)
Definition: map.h:393
u16 * ip6_reass_hash_table
Definition: map.h:252
u16 * ip4_reass_hash_table
Definition: map.h:229
map_main_t map_main
Definition: map.h:297
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Definition: buffer_node.h:83
u8 ip6_src_len
Definition: map.h:91
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Definition: node_funcs.h:265
u8 psid_shift
Definition: map.h:97
u16 expected_total
Definition: map.h:125
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:129
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:1057
u8 suffix_shift
Definition: map.h:98
vlib_node_registration_t ip4_map_t_fragmented_node
(constructor) VLIB_REGISTER_NODE (ip4_map_t_fragmented_node)
Definition: ip4_map_t.c:1021
u8 ip6_reass_ht_log2len
Definition: map.h:250
u32 as_u32[4]
Definition: ip6_packet.h:49
u16 ip6_reass_fifo_last
Definition: map.h:253
u16 ip6_reass_conf_pool_size
Definition: map.h:244
map_dir_e
Definition: map.h:23
u8 next_data_len
Definition: map.h:165
void map_ip4_drop_pi(u32 pi)
Definition: ip6_map.c:515
ip4_address_t ip4_prefix
Definition: map.h:86
u16 next_data_offset
Definition: map.h:164
static_always_inline void map_ip4_reass_get_fragments(map_ip4_reass_t *r, u32 **pi)
Definition: map.h:437
vlib_node_registration_t ip6_map_t_icmp_node
(constructor) VLIB_REGISTER_NODE (ip6_map_t_icmp_node)
Definition: ip6_map_t.c:1088
u8 psid_offset
Definition: map.h:93
void map_ip6_reass_free(map_ip6_reass_t *r, u32 **pi_to_drop)
Definition: map.c:1276
u16 forwarded
Definition: map.h:126
bool icmp6_enabled
Definition: map.h:206
map_domain_counter_t
Definition: map.h:139
map_ip6_reass_key_t key
Definition: map.h:170
#define foreach_map_error
Definition: map.h:264
ip6_address_t ip6_src
Definition: map.h:82
static void map_domain_counter_lock(map_main_t *mm)
Definition: map.h:529
f32 ip4_reass_conf_ht_ratio
Definition: map.h:220
vlib_node_registration_t ip4_map_node
(constructor) VLIB_REGISTER_NODE (ip4_map_node)
Definition: ip4_map.c:597
u16 cached_next_index
Definition: node.h:422
#define ASSERT(truth)
vlib_node_registration_t ip6_map_node
(constructor) VLIB_REGISTER_NODE (ip6_map_node)
Definition: ip6_map.c:935
unsigned int u32
Definition: types.h:88
bool sec_check
Definition: map.h:204
ip6_main_t ip6_main
Definition: ip6_forward.c:2490
ip_lookup_main_t lookup_main
Definition: ip6.h:135
bool frag_inner
Definition: map.h:236
u16 psid_mask
Definition: map.h:87
ip4_header_t ip4_header
Definition: map.h:180
u16 ip4_map_get_port(ip4_header_t *ip, map_dir_e dir)
Definition: ip4_map.c:65
u8 ea_shift
Definition: map.h:99
void map_ip6_drop_pi(u32 pi)
Definition: ip6_map.c:507
always_inline ip_adjacency_t * ip_get_adjacency(ip_lookup_main_t *lm, u32 adj_index)
Definition: lookup.h:423
ip6_address_t ip6_prefix
Definition: map.h:83
u64 uword
Definition: types.h:112
f32 ip6_reass_conf_ht_ratio
Definition: map.h:243
u8 * format_map_trace(u8 *s, va_list *args)
Definition: map.c:1101
vnet_main_t * vnet_main
Definition: map.h:214
i32 ip6_get_port(ip6_header_t *ip6, map_dir_e dir, u16 buffer_len)
Definition: map.c:101
unsigned short u16
Definition: types.h:57
u16 mtu
Definition: map.h:88
u16 payload_length
Definition: ip6_packet.h:284
static_always_inline map_domain_t * ip4_map_get_domain(u32 adj_index, u32 *map_domain_index)
Definition: map.h:375
static_always_inline u32 map_get_ip4(ip6_address_t *addr)
Definition: map.h:366
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
double f64
Definition: types.h:140
u16 ip6_reass_conf_lifetime_ms
Definition: map.h:245
unsigned char u8
Definition: types.h:56
u32 adj6_index
Definition: map.h:195
i32 port
Definition: map.h:128
u16 bucket_next
Definition: map.h:130
u8 ip4_prefix_len
Definition: map.h:102
vlib_simple_counter_main_t * simple_domain_counters
Definition: map.h:189
u64 map_error_counter_get(u32 node_index, map_error_t map_error)
Definition: map.c:880
ip4_main_t ip4_main
Definition: ip4_forward.c:1394
#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:1134
u16 ip4_reass_conf_lifetime_ms
Definition: map.h:222
int map_delete_domain(u32 map_domain_index)
Definition: map.c:282
static_always_inline u64 map_get_sfx(map_domain_t *d, u32 addr, u16 port)
Definition: map.h:340
u32 map_domain_index
Definition: map.h:293
int map_add_del_psid(u32 map_domain_index, u16 psid, ip6_address_t *tep, u8 is_add)
Definition: map.c:346
vhost_vring_addr_t addr
Definition: vhost-user.h:78
u16 fifo_prev
Definition: map.h:131
Definition: map.h:24
int map_ip4_reass_conf_lifetime(u16 lifetime_ms)
Definition: map.c:1513
vlib_node_registration_t ip6_map_t_fragmented_node
(constructor) VLIB_REGISTER_NODE (ip6_map_t_fragmented_node)
Definition: ip6_map_t.c:1070
vlib_node_registration_t ip6_map_t_node
(constructor) VLIB_REGISTER_NODE (ip6_map_t_node)
Definition: ip6_map_t.c:1124
u32 flags
Definition: vhost-user.h:73
u32 ip6_reass_buffered_counter
Definition: map.h:257
u16 expected_total
Definition: map.h:173
map_domain_flags_e
Definition: map.h:40
always_inline vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:69
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:1390
u16 fifo_next
Definition: map.h:179
#define CLIB_PACKED(x)
Definition: clib.h:78
u32 ip6_reass_conf_buffers
Definition: map.h:246