FD.io VPP  v20.01-48-g3e0dafb74
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/dpo/load_balance.h>
24 #include "lpm.h"
25 #include <vppinfra/lock.h>
26 
27 #define MAP_SKIP_IP6_LOOKUP 1
28 
29 #define MAP_ERR_GOOD 0
30 #define MAP_ERR_BAD_POOL_SIZE -1
31 #define MAP_ERR_BAD_HT_RATIO -2
32 #define MAP_ERR_BAD_LIFETIME -3
33 #define MAP_ERR_BAD_BUFFERS -4
34 #define MAP_ERR_BAD_BUFFERS_TOO_LARGE -5
35 #define MAP_ERR_UNSUPPORTED -6
36 
37 int map_create_domain (ip4_address_t * ip4_prefix, u8 ip4_prefix_len,
38  ip6_address_t * ip6_prefix, u8 ip6_prefix_len,
39  ip6_address_t * ip6_src, u8 ip6_src_len,
40  u8 ea_bits_len, u8 psid_offset, u8 psid_length,
41  u32 * map_domain_index, u16 mtu, u8 flags, u8 * tag);
42 int map_delete_domain (u32 map_domain_index);
43 int map_add_del_psid (u32 map_domain_index, u16 psid, ip6_address_t * tep,
44  bool is_add);
45 int map_if_enable_disable (bool is_enable, u32 sw_if_index,
46  bool is_translation);
47 u8 *format_map_trace (u8 * s, va_list * args);
48 
49 int map_param_set_fragmentation (bool inner, bool ignore_df);
50 int map_param_set_icmp (ip4_address_t * ip4_err_relay_src);
51 int map_param_set_icmp6 (u8 enable_unreachable);
52 void map_pre_resolve (ip4_address_t * ip4, ip6_address_t * ip6, bool is_del);
53 int map_param_set_security_check (bool enable, bool fragments);
54 int map_param_set_traffic_class (bool copy, u8 tc);
55 int map_param_set_tcp (u16 tcp_mss);
56 
57 
58 typedef enum
59 {
61  MAP_DOMAIN_TRANSLATION = 1 << 1, // The domain uses MAP-T
63 } __attribute__ ((__packed__)) map_domain_flags_e;
64 
65 //#define IP6_MAP_T_OVERRIDE_TOS 0
66 
67 /*
68  * This structure _MUST_ be no larger than a single cache line (64 bytes).
69  * If more space is needed make a union of ip6_prefix and *rules, as
70  * those are mutually exclusive.
71  */
72 typedef struct
73 {
74  /* Required for pool_get_aligned */
75  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
89 
90  /* helpers */
94 
95  /* not used by forwarding */
97 } map_domain_t;
98 
100  "MAP domain fits in one cacheline");
101 
102 /*
103  * Extra data about a domain that doesn't need to be time/space critical.
104  * This structure is in a vector parallel to the main map_domain_t,
105  * and indexed by the same map-domain-index values.
106  */
107 typedef struct
108 {
109  u8 *tag; /* Probably a user-assigned domain name. */
111 
112 #define MAP_REASS_INDEX_NONE ((u16)0xffff)
113 
114 /*
115  * MAP domain counters
116  */
117 typedef enum
118 {
119  /* Simple counters */
121  /* Combined counters */
126 
127 #ifdef MAP_SKIP_IP6_LOOKUP
128 /**
129  * A pre-resolved next-hop
130  */
132 {
133  /**
134  * Linkage into the FIB graph
135  */
137 
138  /**
139  * The FIB entry index of the next-hop
140  */
142 
143  /**
144  * This object sibling index on the FIB entry's child dependency list
145  */
147 
148  /**
149  * The Load-balance object index to use to forward
150  */
153 
154 /**
155  * Pre-resolved next hops for v4 and v6. Why these are global and not
156  * per-domain is beyond me.
157  */
158 extern map_main_pre_resolved_t pre_resolved[FIB_PROTOCOL_MAX];
159 #endif
160 
161 typedef struct
162 {
163  /* pool of MAP domains */
166 
167  /* MAP Domain packet/byte counters indexed by map domain index */
170  volatile u32 *counter_lock;
171 
172  /* API message id base */
174 
175  /* Traffic class: zero, copy (~0) or fixed value */
177  bool tc_copy;
178 
179  bool sec_check; /* Inbound security check */
180  bool sec_check_frag; /* Inbound security check for (subsequent) fragments */
181  bool icmp6_enabled; /* Send destination unreachable for security check failure */
182 
183  u16 tcp_mss; /* TCP MSS clamp value */
184 
185  /* ICMPv6 -> ICMPv4 relay parameters */
188 
189  /* convenience */
192 
193  bool frag_inner; /* Inner or outer fragmentation */
194  bool frag_ignore_df; /* Fragment (outer) packet even if DF is set */
195 
196  /* Graph node state */
199 
200  /* Lookup tables */
204 
206 } map_main_t;
207 
208 /*
209  * MAP Error counters/messages
210  */
211 #define foreach_map_error \
212  /* Must be first. */ \
213  _(NONE, "valid MAP packets") \
214  _(BAD_PROTOCOL, "bad protocol") \
215  _(SEC_CHECK, "security check failed") \
216  _(ENCAP_SEC_CHECK, "encap security check failed") \
217  _(DECAP_SEC_CHECK, "decap security check failed") \
218  _(ICMP, "unable to translate ICMP") \
219  _(ICMP_RELAY, "unable to relay ICMP") \
220  _(UNKNOWN, "unknown") \
221  _(NO_BINDING, "no binding") \
222  _(NO_DOMAIN, "no domain") \
223  _(FRAGMENTED, "packet is a fragment") \
224  _(FRAGMENT_MEMORY, "could not cache fragment") \
225  _(FRAGMENT_MALFORMED, "fragment has unexpected format")\
226  _(FRAGMENT_DROPPED, "dropped cached fragment") \
227  _(MALFORMED, "malformed packet") \
228  _(DF_SET, "can't fragment, DF set")
229 
230 typedef enum
231 {
232 #define _(sym,str) MAP_ERROR_##sym,
234 #undef _
236 } map_error_t;
237 
238 u64 map_error_counter_get (u32 node_index, map_error_t map_error);
239 
240 typedef struct
241 {
244 } map_trace_t;
245 
246 always_inline void
248  vlib_buffer_t * b, u32 map_domain_index, u16 port)
249 {
250  map_trace_t *tr = vlib_add_trace (vm, node, b, sizeof (*tr));
251  tr->map_domain_index = map_domain_index;
252  tr->port = port;
253 }
254 
255 extern map_main_t map_main;
256 
259 
264 
269 
270 /*
271  * map_get_pfx
272  */
275 {
276  u16 psid = (port >> d->psid_shift) & d->psid_mask;
277 
278  if (d->ea_bits_len == 0 && d->rules)
279  return clib_net_to_host_u64 (d->rules[psid].as_u64[0]);
280 
281  u32 suffix = (addr >> d->suffix_shift) & d->suffix_mask;
282  u64 ea =
283  d->ea_bits_len == 0 ? 0 : (((u64) suffix << d->psid_length)) | psid;
284 
285  return clib_net_to_host_u64 (d->ip6_prefix.as_u64[0]) | ea << d->ea_shift;
286 }
287 
290 {
291  return clib_host_to_net_u64 (map_get_pfx (d, clib_net_to_host_u32 (addr),
292  clib_net_to_host_u16 (port)));
293 }
294 
295 /*
296  * map_get_sfx
297  */
300 {
301  u16 psid = (port >> d->psid_shift) & d->psid_mask;
302 
303  /* Shared 1:1 mode. */
304  if (d->ea_bits_len == 0 && d->rules)
305  return clib_net_to_host_u64 (d->rules[psid].as_u64[1]);
306  if (d->ip6_prefix_len == 128)
307  return clib_net_to_host_u64 (d->ip6_prefix.as_u64[1]);
308 
309  if (d->ip6_src_len == 96)
310  return (clib_net_to_host_u64 (d->ip6_prefix.as_u64[1]) | addr);
311 
312  /* IPv4 prefix */
313  if (d->flags & MAP_DOMAIN_PREFIX)
314  return (u64) (addr & (0xFFFFFFFF << d->suffix_shift)) << 16;
315 
316  /* Shared or full IPv4 address */
317  return ((u64) addr << 16) | psid;
318 }
319 
322 {
323  return clib_host_to_net_u64 (map_get_sfx (d, clib_net_to_host_u32 (addr),
324  clib_net_to_host_u16 (port)));
325 }
326 
329 {
330  ASSERT (prefix_len == 64 || prefix_len == 96);
331  if (prefix_len == 96)
332  return clib_host_to_net_u32 (clib_net_to_host_u64 (addr->as_u64[1]));
333  else
334  return clib_host_to_net_u32 (clib_net_to_host_u64 (addr->as_u64[1]) >>
335  16);
336 }
337 
339 ip4_map_get_domain (ip4_address_t * addr, u32 * map_domain_index, u8 * error)
340 {
341  map_main_t *mm = &map_main;
342 
343  u32 mdi = mm->ip4_prefix_tbl->lookup (mm->ip4_prefix_tbl, addr, 32);
344  if (mdi == ~0)
345  {
346  *error = MAP_ERROR_NO_DOMAIN;
347  return 0;
348  }
349  *map_domain_index = mdi;
350  return pool_elt_at_index (mm->domains, mdi);
351 }
352 
353 /*
354  * Get the MAP domain from an IPv6 address.
355  * If the IPv6 address or
356  * prefix is shared the IPv4 address must be used.
357  */
359 ip6_map_get_domain (ip6_address_t * addr, u32 * map_domain_index, u8 * error)
360 {
361  map_main_t *mm = &map_main;
362  u32 mdi =
363  mm->ip6_src_prefix_tbl->lookup (mm->ip6_src_prefix_tbl, addr, 128);
364  if (mdi == ~0)
365  {
366  *error = MAP_ERROR_NO_DOMAIN;
367  return 0;
368  }
369 
370  *map_domain_index = mdi;
371  return pool_elt_at_index (mm->domains, mdi);
372 }
373 
375 
376 void map_ip6_drop_pi (u32 pi);
377 
378 /*
379  * Supports prefix of 96 or 64 (with u-octet)
380  */
383  ip6_address_t * ip6, const ip4_address_t * ip4)
384 {
385  ASSERT (d->ip6_src_len == 96 || d->ip6_src_len == 64); //No support for other lengths for now
386  u8 offset = d->ip6_src_len == 64 ? 9 : 12;
387  ip6->as_u64[0] = d->ip6_src.as_u64[0];
388  ip6->as_u64[1] = d->ip6_src.as_u64[1];
389  clib_memcpy_fast (&ip6->as_u8[offset], ip4, 4);
390 }
391 
394 {
395  ASSERT (d->ip6_src_len == 64 || d->ip6_src_len == 96);
396  u32 x;
397  u8 offset = d->ip6_src_len == 64 ? 9 : 12;
398  clib_memcpy (&x, &addr->as_u8[offset], 4);
399  return x;
400 }
401 
402 static inline void
404 {
405  if (mm->counter_lock)
407  /* zzzz */ ;
408 }
409 
410 static inline void
412 {
413  if (mm->counter_lock)
415 }
416 
417 
421  u32 next)
422 {
423  u32 n_left_from, *from, next_index, *to_next, n_left_to_next;
424  //Deal with fragments that are ready
425  from = pi_vector;
426  n_left_from = vec_len (pi_vector);
427  next_index = node->cached_next_index;
428  while (n_left_from > 0)
429  {
430  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
431  while (n_left_from > 0 && n_left_to_next > 0)
432  {
433  u32 pi0 = to_next[0] = from[0];
434  from += 1;
435  n_left_from -= 1;
436  to_next += 1;
437  n_left_to_next -= 1;
438  vlib_buffer_t *p0 = vlib_get_buffer (vm, pi0);
439  p0->error = *error;
440  vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
441  n_left_to_next, pi0, next);
442  }
443  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
444  }
445 }
446 
449 {
450  u8 *data;
451  u8 opt_len, opts_len, kind;
452  u16 mss;
453  u16 mss_value_net = clib_host_to_net_u16 (mss_clamping);
454 
455  if (!tcp_syn (tcp))
456  return;
457 
458  opts_len = (tcp_doff (tcp) << 2) - sizeof (tcp_header_t);
459  data = (u8 *) (tcp + 1);
460  for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
461  {
462  kind = data[0];
463 
464  if (kind == TCP_OPTION_EOL)
465  break;
466  else if (kind == TCP_OPTION_NOOP)
467  {
468  opt_len = 1;
469  continue;
470  }
471  else
472  {
473  if (opts_len < 2)
474  return;
475  opt_len = data[1];
476 
477  if (opt_len < 2 || opt_len > opts_len)
478  return;
479  }
480 
481  if (kind == TCP_OPTION_MSS)
482  {
483  mss = *(u16 *) (data + 2);
484  if (clib_net_to_host_u16 (mss) > mss_clamping)
485  {
486  *sum =
487  ip_csum_update (*sum, mss, mss_value_net, ip4_header_t,
488  length);
489  clib_memcpy (data + 2, &mss_value_net, 2);
490  }
491  return;
492  }
493  }
494 }
495 
496 /*
497  * fd.io coding-style-patch-verification: ON
498  *
499  * Local Variables:
500  * eval: (c-set-style "gnu")
501  * End:
502  */
int map_param_set_icmp(ip4_address_t *ip4_err_relay_src)
Definition: map_api.c:271
static void map_add_trace(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_buffer_t *b, u32 map_domain_index, u16 port)
Definition: map.h:247
u8 psid_length
Definition: map.h:88
End of options.
Definition: tcp_packet.h:104
fib_node_t node
Linkage into the FIB graph.
Definition: map.h:136
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:60
map_domain_flags_e flags
Definition: map.h:83
vlib_node_registration_t ip4_map_t_node
(constructor) VLIB_REGISTER_NODE (ip4_map_t_node)
Definition: ip4_map_t.c:718
static_always_inline u64 map_get_pfx(map_domain_t *d, u32 addr, u16 port)
Definition: map.h:274
volatile u32 * counter_lock
Definition: map.h:170
vlib_node_registration_t ip4_map_t_icmp_node
(constructor) VLIB_REGISTER_NODE (ip4_map_t_icmp_node)
Definition: ip4_map_t.c:678
int map_if_enable_disable(bool is_enable, u32 sw_if_index, bool is_translation)
Definition: map_api.c:449
u8 as_u8[16]
Definition: ip6_packet.h:48
u64 as_u64[2]
Definition: ip6_packet.h:51
unsigned long u64
Definition: types.h:89
map_error_t
Definition: map.h:230
u16 msg_id_base
Definition: map.h:173
#define clib_memcpy_fast(a, b, c)
Definition: string.h:81
dpo_id_t dpo
The Load-balance object index to use to forward.
Definition: map.h:151
vlib_main_t * vlib_main
Definition: map.h:190
#define tcp_doff(_th)
Definition: tcp_packet.h:78
u8 tc
Definition: map.h:176
static_always_inline map_domain_t * ip6_map_get_domain(ip6_address_t *addr, u32 *map_domain_index, u8 *error)
Definition: map.h:359
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, u8 *tag)
Definition: map.c:105
A pre-resolved next-hop.
Definition: map.h:131
manual_print typedef ip4_prefix
Definition: ip_types.api:106
static void map_domain_counter_unlock(map_main_t *mm)
Definition: map.h:411
u16 vlib_error_t
Definition: error.h:43
static_always_inline map_domain_t * ip4_map_get_domain(ip4_address_t *addr, u32 *map_domain_index, u8 *error)
Definition: map.h:339
u32 suffix_mask
Definition: map.h:79
bool sec_check_frag
Definition: map.h:180
uword ip_csum_t
Definition: ip_packet.h:244
uword * bm_trans_enabled_by_sw_if
Definition: map.h:197
No operation.
Definition: tcp_packet.h:105
struct _tcp_header tcp_header_t
vhost_vring_addr_t addr
Definition: vhost_user.h:147
unsigned char u8
Definition: types.h:56
u16 port
Definition: map.h:243
#define clib_memcpy(d, s, n)
Definition: string.h:180
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:684
Limit MSS.
Definition: tcp_packet.h:106
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:382
manual_print typedef ip6_prefix
Definition: ip_types.api:101
static_always_inline u32 ip6_map_t_embedded_address(map_domain_t *d, ip6_address_t *addr)
Definition: map.h:393
bool tc_copy
Definition: map.h:177
#define static_always_inline
Definition: clib.h:99
static_always_inline u32 map_get_ip4(ip6_address_t *addr, u16 prefix_len)
Definition: map.h:328
vl_api_interface_index_t sw_if_index
Definition: gre.api:59
vlib_combined_counter_main_t * domain_counters
Definition: map.h:169
ip4_address_t icmp4_src_address
Definition: map.h:186
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:419
vlib_simple_counter_main_t icmp_relayed
Definition: map.h:187
ip6_address_t * rules
Definition: map.h:78
u8 ea_bits_len
Definition: map.h:86
unsigned int u32
Definition: types.h:88
A collection of simple counters.
Definition: counter.h:57
u8 ip6_prefix_len
Definition: map.h:84
#define clib_atomic_test_and_set(a)
Definition: atomics.h:42
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:136
static void mss_clamping(snat_main_t *sm, tcp_header_t *tcp, ip_csum_t *sum)
Definition: nat_inlines.h:576
u32(* lookup)(struct lpm_ *lpm, void *addr_v, u8 pfxlen)
Definition: lpm.h:27
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:170
Definition: lpm.h:24
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:519
#define clib_atomic_release(a)
Definition: atomics.h:43
int map_add_del_psid(u32 map_domain_index, u16 psid, ip6_address_t *tep, bool is_add)
Definition: map.c:235
bool frag_ignore_df
Definition: map.h:194
int map_param_set_traffic_class(bool copy, u8 tc)
Definition: map_api.c:360
static_always_inline u64 map_get_pfx_net(map_domain_t *d, u32 addr, u16 port)
Definition: map.h:289
unsigned short u16
Definition: types.h:57
map_domain_t * domains
Definition: map.h:164
static_always_inline u64 map_get_sfx_net(map_domain_t *d, u32 addr, u16 port)
Definition: map.h:321
#define always_inline
Definition: ipsec.h:28
map_main_t map_main
Definition: map.c:27
STATIC_ASSERT((sizeof(map_domain_t)<=CLIB_CACHE_LINE_BYTES), "MAP domain fits in one cacheline")
#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:295
u8 ip6_src_len
Definition: map.h:85
#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:338
u8 psid_shift
Definition: map.h:91
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:698
u8 suffix_shift
Definition: map.h:92
vlib_node_registration_t ip4_map_t_fragmented_node
(constructor) VLIB_REGISTER_NODE (ip4_map_t_fragmented_node)
Definition: ip4_map_t.c:658
u8 ip6[16]
Definition: one.api:477
lpm_t * ip6_src_prefix_tbl
Definition: map.h:203
u32 flags
Definition: vhost_user.h:141
ip4_address_t ip4_prefix
Definition: map.h:80
vlib_node_registration_t ip6_map_t_icmp_node
(constructor) VLIB_REGISTER_NODE (ip6_map_t_icmp_node)
Definition: ip6_map_t.c:663
uword * bm_encap_enabled_by_sw_if
Definition: map.h:198
u8 psid_offset
Definition: map.h:87
bool icmp6_enabled
Definition: map.h:181
int map_param_set_fragmentation(bool inner, bool ignore_df)
Definition: map_api.c:246
u32 sibling
This object sibling index on the FIB entry&#39;s child dependency list.
Definition: map.h:146
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:30
map_domain_counter_t
Definition: map.h:117
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:456
#define foreach_map_error
Definition: map.h:211
ip6_address_t ip6_src
Definition: map.h:76
static void map_domain_counter_lock(map_main_t *mm)
Definition: map.h:403
void map_pre_resolve(ip4_address_t *ip4, ip6_address_t *ip6, bool is_del)
Definition: map.c:407
vlib_node_registration_t ip4_map_node
(constructor) VLIB_REGISTER_NODE (ip4_map_node)
Definition: ip4_map.c:358
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:515
#define ASSERT(truth)
vlib_node_registration_t ip6_map_node
(constructor) VLIB_REGISTER_NODE (ip6_map_node)
Definition: ip6_map.c:835
#define tcp_syn(_th)
Definition: tcp_packet.h:80
bool sec_check
Definition: map.h:179
u8 data[128]
Definition: ipsec_types.api:87
bool frag_inner
Definition: map.h:193
u16 psid_mask
Definition: map.h:81
u8 ea_shift
Definition: map.h:93
void map_ip6_drop_pi(u32 pi)
Definition: ip6_map.c:556
ip6_address_t ip6_prefix
Definition: map.h:77
static_always_inline void map_mss_clamping(tcp_header_t *tcp, ip_csum_t *sum, u16 mss_clamping)
Definition: map.h:448
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace_funcs.h:55
u8 * format_map_trace(u8 *s, va_list *args)
Definition: map.c:1203
struct _vlib_node_registration vlib_node_registration_t
template key/value backing page structure
Definition: bihash_doc.h:44
vnet_main_t * vnet_main
Definition: map.h:191
int map_param_set_security_check(bool enable, bool fragments)
Definition: map_api.c:335
u16 mtu
Definition: map.h:82
int map_param_set_icmp6(u8 enable_unreachable)
Definition: map_api.c:298
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
clib_error_t * map_plugin_api_hookup(vlib_main_t *vm)
Definition: map_api.c:524
fib_node_index_t fei
The FIB entry index of the next-hop.
Definition: map.h:141
map_domain_extra_t * domain_extras
Definition: map.h:165
VLIB buffer representation.
Definition: buffer.h:102
u64 uword
Definition: types.h:112
#define ip_csum_update(sum, old, new, type, field)
Definition: ip_packet.h:294
u16 tcp_mss
Definition: map.h:183
lpm_t * ip4_prefix_tbl
Definition: map.h:201
A collection of combined counters.
Definition: counter.h:188
u16 port
Definition: lb_types.api:72
uword ip4_sv_reass_custom_next_index
Definition: map.h:205
#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:96
vlib_simple_counter_main_t * simple_domain_counters
Definition: map.h:168
u64 map_error_counter_get(u32 node_index, map_error_t map_error)
Definition: map.c:1035
int map_param_set_tcp(u16 tcp_mss)
Definition: map_api.c:385
int map_delete_domain(u32 map_domain_index)
Definition: map.c:204
static_always_inline u64 map_get_sfx(map_domain_t *d, u32 addr, u16 port)
Definition: map.h:299
u32 map_domain_index
Definition: map.h:242
u32 ip4
Definition: one.api:440
vlib_node_registration_t ip6_map_t_fragmented_node
(constructor) VLIB_REGISTER_NODE (ip6_map_t_fragmented_node)
Definition: ip6_map_t.c:642
vlib_node_registration_t ip6_map_t_node
(constructor) VLIB_REGISTER_NODE (ip6_map_t_node)
Definition: ip6_map_t.c:712
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
lpm_t * ip6_prefix_tbl
Definition: map.h:202
map_domain_flags_e
Definition: map.h:58
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:85
struct map_main_pre_resolved_t_ map_main_pre_resolved_t
A pre-resolved next-hop.