FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
cnat_snat_policy.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include <vnet/ip/ip.h>
17 #include <cnat/cnat_snat_policy.h>
18 #include <cnat/cnat_translation.h>
19 
21 
22 uword
24 {
25  u8 *a = va_arg (*args, u8 *);
26  if (unformat (input, "include-v4"))
28  else if (unformat (input, "include-v6"))
30  else if (unformat (input, "k8s"))
32  else
33  return 0;
34  return 1;
35 }
36 
37 u8 *
39 {
40  cnat_snat_interface_map_type_t mtype = va_arg (*args, int);
41  switch (mtype)
42  {
44  s = format (s, "Included v4");
45  break;
47  s = format (s, "Included v6");
48  break;
50  s = format (s, "k8s pod");
51  break;
52  default:
53  s = format (s, "(unknown)");
54  break;
55  }
56  return (s);
57 }
58 
59 u8 *
60 format_cnat_snat_prefix (u8 *s, va_list *args)
61 {
62  clib_bihash_kv_24_8_t *kv = va_arg (*args, clib_bihash_kv_24_8_t *);
63  CLIB_UNUSED (int verbose) = va_arg (*args, int);
64  u32 af = kv->key[2] >> 32;
65  u32 len = kv->key[2] & 0xffffffff;
66  if (AF_IP4 == af)
67  s = format (s, "%U/%d", format_ip4_address, &kv->key[0], len);
68  else
69  s = format (s, "%U/%d", format_ip6_address, &kv->key[0], len);
70  return (s);
71 }
72 
73 static void
76 {
77  int i;
79  /* Note: bitmap reversed so this is in fact a longest prefix match */
81  {
82  int dst_address_length = 128 - i;
84  dst_address_length);
85  }
86 }
87 
88 int
91 {
93 
94  if (table >= ARRAY_LEN (cpm->interface_maps))
95  return VNET_API_ERROR_INVALID_VALUE;
96 
97  clib_bitmap_t **map = &cpm->interface_maps[table];
98 
99  *map = clib_bitmap_set (*map, sw_if_index, is_add);
100  return 0;
101 }
102 
103 static clib_error_t *
105  unformat_input_t *input,
106  vlib_cli_command_t *cmd)
107 {
108  vnet_main_t *vnm = vnet_get_main ();
109  int is_add = 1;
110  u32 sw_if_index = ~0;
111  u32 table;
112  int rv;
113 
115  {
116  if (unformat (input, "del"))
117  is_add = 0;
118  else if (unformat (input, "table %U",
120  ;
121  else if (unformat (input, "%U", unformat_vnet_sw_interface, vnm,
122  &sw_if_index))
123  ;
124  else
125  return clib_error_return (0, "unknown input '%U'",
126  format_unformat_error, input);
127  }
128 
129  if (sw_if_index == ~0)
130  return clib_error_return (0, "Interface not specified");
131 
132  rv = cnat_snat_policy_add_del_if (sw_if_index, is_add, table);
133 
134  if (rv)
135  return clib_error_return (0, "Error %d", rv);
136 
137  return NULL;
138 }
139 
141  .path = "set cnat snat-policy if",
142  .short_help = "set cnat snat-policy if [del]"
143  "[table [include-v4 include-v6 k8s]] [interface]",
145 };
146 
147 int
149 {
150  /* All packets destined to this prefix won't be source-NAT-ed */
153  ip6_address_t *mask;
154  u64 af = ip_prefix_version (pfx);
155  ;
156 
157  mask = &table->ip_masks[pfx->len];
158  if (AF_IP4 == af)
159  {
160  kv.key[0] = (u64) ip_prefix_v4 (pfx).as_u32 & mask->as_u64[0];
161  kv.key[1] = 0;
162  }
163  else
164  {
165  kv.key[0] = ip_prefix_v6 (pfx).as_u64[0] & mask->as_u64[0];
166  kv.key[1] = ip_prefix_v6 (pfx).as_u64[1] & mask->as_u64[1];
167  }
168  kv.key[2] = ((u64) af << 32) | pfx->len;
169  clib_bihash_add_del_24_8 (&table->ip_hash, &kv, 1 /* is_add */);
170 
171  table->meta[af].dst_address_length_refcounts[pfx->len]++;
173  table->meta[af].non_empty_dst_address_length_bitmap, 128 - pfx->len, 1);
175  return 0;
176 }
177 
178 int
180 {
182  clib_bihash_kv_24_8_t kv, val;
183  ip6_address_t *mask;
184  u64 af = ip_prefix_version (pfx);
185  ;
186 
187  mask = &table->ip_masks[pfx->len];
188  if (AF_IP4 == af)
189  {
190  kv.key[0] = (u64) ip_prefix_v4 (pfx).as_u32 & mask->as_u64[0];
191  kv.key[1] = 0;
192  }
193  else
194  {
195  kv.key[0] = ip_prefix_v6 (pfx).as_u64[0] & mask->as_u64[0];
196  kv.key[1] = ip_prefix_v6 (pfx).as_u64[1] & mask->as_u64[1];
197  }
198  kv.key[2] = ((u64) af << 32) | pfx->len;
199 
200  if (clib_bihash_search_24_8 (&table->ip_hash, &kv, &val))
201  {
202  return 1;
203  }
204  clib_bihash_add_del_24_8 (&table->ip_hash, &kv, 0 /* is_add */);
205  /* refcount accounting */
206  ASSERT (table->meta[af].dst_address_length_refcounts[pfx->len] > 0);
207  if (--table->meta[af].dst_address_length_refcounts[pfx->len] == 0)
208  {
211  128 - pfx->len, 0);
213  }
214  return 0;
215 }
216 
217 int
219 {
220  /* Returns 0 if addr matches any of the listed prefixes */
222  clib_bihash_kv_24_8_t kv, val;
223  int i, n_p, rv;
225  if (AF_IP4 == af)
226  {
227  kv.key[0] = addr->ip4.as_u32;
228  kv.key[1] = 0;
229  }
230  else
231  {
232  kv.key[0] = addr->as_u64[0];
233  kv.key[1] = addr->as_u64[1];
234  }
235 
236  /*
237  * start search from a mask length same length or shorter.
238  * we don't want matches longer than the mask passed
239  */
240  i = 0;
241  for (; i < n_p; i++)
242  {
243  int dst_address_length =
245  ip6_address_t *mask = &table->ip_masks[dst_address_length];
246 
247  ASSERT (dst_address_length >= 0 && dst_address_length <= 128);
248  /* As lengths are decreasing, masks are increasingly specific. */
249  kv.key[0] &= mask->as_u64[0];
250  kv.key[1] &= mask->as_u64[1];
251  kv.key[2] = ((u64) af << 32) | dst_address_length;
252  rv = clib_bihash_search_inline_2_24_8 (&table->ip_hash, &kv, &val);
253  if (rv == 0)
254  return 0;
255  }
256  return -1;
257 }
258 
261 {
264 }
265 
266 int
268 {
269  /* srcNAT everything by default */
270  return 1;
271 }
272 
273 int
275 {
276  ip46_address_t *dst_addr = &session->key.cs_ip[VLIB_TX];
277  u32 in_if = vnet_buffer (b)->sw_if_index[VLIB_RX];
278  ip_address_family_t af = session->key.cs_af;
279 
280  /* source nat for outgoing connections */
283  /* Destination is not in the prefixes that don't require snat */
284  return 1;
285  return 0;
286 }
287 
288 int
290 {
292  ip_address_family_t af = session->key.cs_af;
293 
294  ip46_address_t *src_addr = &session->key.cs_ip[VLIB_RX];
295  ip46_address_t *dst_addr = &session->key.cs_ip[VLIB_TX];
296  u32 in_if = vnet_buffer (b)->sw_if_index[VLIB_RX];
297  u32 out_if = vnet_buffer (b)->sw_if_index[VLIB_TX];
298 
299  /* source nat for outgoing connections */
302  /* Destination is not in the prefixes that don't require snat */
303  return 1;
304 
305  /* source nat for translations that come from the outside:
306  src not not a pod interface, dst not a pod interface */
308  in_if) &&
310  out_if))
311  {
312  if (AF_IP6 == af &&
314  &ip_addr_v6 (&cpm->snat_ip6.ce_ip)))
315  return 0;
316  if (AF_IP4 == af &&
318  &ip_addr_v4 (&cpm->snat_ip4.ce_ip)))
319  return 0;
320  return 1;
321  }
322 
323  /* handle the case where a container is connecting to itself via a service */
325  return 1;
326 
327  return 0;
328 }
329 
330 void
332 {
334 
335  cnat_lazy_init ();
336 
338 
343 
344  cnat_resolve_ep (&cpm->snat_ip4);
345  cnat_resolve_ep (&cpm->snat_ip6);
350 }
351 
352 static clib_error_t *
354  vlib_cli_command_t *cmd)
355 {
356  unformat_input_t _line_input, *line_input = &_line_input;
357  vnet_main_t *vnm = vnet_get_main ();
358  ip4_address_t ip4 = { { 0 } };
359  ip6_address_t ip6 = { { 0 } };
360  clib_error_t *e = 0;
362 
363  cnat_lazy_init ();
364 
365  /* Get a line of input. */
366  if (!unformat_user (input, unformat_line_input, line_input))
367  return 0;
368 
369  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
370  {
371  if (unformat_user (line_input, unformat_ip4_address, &ip4))
372  ;
373  else if (unformat_user (line_input, unformat_ip6_address, &ip6))
374  ;
375  else if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
376  &sw_if_index))
377  ;
378  else
379  {
380  e = clib_error_return (0, "unknown input '%U'",
381  format_unformat_error, input);
382  goto done;
383  }
384  }
385 
387 
388 done:
389  unformat_free (line_input);
390 
391  return (e);
392 }
393 
395  .path = "set cnat snat-policy addr",
396  .short_help =
397  "set cnat snat-policy addr [<ip4-address>][<ip6-address>][sw_if_index]",
398  .function = cnat_set_snat_cli,
399 };
400 
401 static clib_error_t *
403  unformat_input_t *input,
404  vlib_cli_command_t *cmd)
405 {
406  ip_prefix_t pfx;
407  u8 is_add = 1;
408  int rv;
409 
411  {
412  if (unformat (input, "%U", unformat_ip_prefix, &pfx))
413  ;
414  else if (unformat (input, "del"))
415  is_add = 0;
416  else
417  return (clib_error_return (0, "unknown input '%U'",
418  format_unformat_error, input));
419  }
420 
421  if (is_add)
422  rv = cnat_snat_policy_add_pfx (&pfx);
423  else
424  rv = cnat_snat_policy_del_pfx (&pfx);
425 
426  if (rv)
427  return (clib_error_return (0, "error %d", rv, input));
428 
429  return (NULL);
430 }
431 
433  .path = "set cnat snat-policy prefix",
434  .short_help = "set cnat snat-policy prefix [del] [prefix]",
436 };
437 
438 static clib_error_t *
440  vlib_cli_command_t *cmd)
441 {
442  cnat_snat_exclude_pfx_table_t *excluded_pfx =
445  vnet_main_t *vnm = vnet_get_main ();
447 
448  vlib_cli_output (vm, "Source NAT\n ip4: %U\n ip6: %U\n\n",
450  &cpm->snat_ip6);
451  vlib_cli_output (vm, "Excluded prefixes:\n %U\n", format_bihash_24_8,
452  &excluded_pfx->ip_hash, 1);
453 
454  for (int i = 0; i < CNAT_N_SNAT_IF_MAP; i++)
455  {
456  vlib_cli_output (vm, "\n%U interfaces:\n",
460  sw_if_index);
461  }
462 
463  return (NULL);
464 }
465 
467  .path = "show cnat snat-policy",
468  .short_help = "show cnat snat-policy",
469  .function = cnat_show_snat,
470 };
471 
472 int
474 {
476  switch (policy)
477  {
480  break;
483  break;
486  break;
487  default:
488  return 1;
489  }
490  return 0;
491 }
492 
493 static clib_error_t *
495  vlib_cli_command_t *cmd)
496 {
499  {
500  if (unformat (input, "none"))
501  ;
502  else if (unformat (input, "if-pfx"))
504  else if (unformat (input, "k8s"))
506  else
507  return clib_error_return (0, "unknown input '%U'",
508  format_unformat_error, input);
509  }
510 
512  return NULL;
513 }
514 
516  .path = "set cnat snat-policy",
517  .short_help = "set cnat snat-policy [none][if-pfx][k8s]",
518  .function = cnat_snat_policy_set_cmd_fn,
519 };
520 
521 static void
523  u8 is_del)
524 {
526  cnat_endpoint_t *ep;
527 
528  ep = AF_IP4 == ar->af ? &cpm->snat_ip4 : &cpm->snat_ip6;
529 
530  if (!is_del && ep->ce_flags & CNAT_EP_FLAG_RESOLVED)
531  return;
532 
533  if (is_del)
534  {
536  /* Are there remaining addresses ? */
537  if (0 == cnat_resolve_addr (ar->sw_if_index, ar->af, address))
538  is_del = 0;
539  }
540 
541  if (!is_del)
542  {
543  ip_address_copy (&ep->ce_ip, address);
545  }
546 }
547 
548 static clib_error_t *
550 {
553  cnat_snat_exclude_pfx_table_t *excluded_pfx = &cpm->excluded_pfx;
554 
555  int i;
556  for (i = 0; i < ARRAY_LEN (excluded_pfx->ip_masks); i++)
557  {
558  u32 j, i0, i1;
559 
560  i0 = i / 32;
561  i1 = i % 32;
562 
563  for (j = 0; j < i0; j++)
564  excluded_pfx->ip_masks[i].as_u32[j] = ~0;
565 
566  if (i1)
567  excluded_pfx->ip_masks[i].as_u32[i0] =
568  clib_host_to_net_u32 (pow2_mask (i1) << (32 - i1));
569  }
570  clib_bihash_init_24_8 (&excluded_pfx->ip_hash, "snat prefixes",
571  cm->snat_hash_buckets, cm->snat_hash_memory);
572  clib_bihash_set_kvp_format_fn_24_8 (&excluded_pfx->ip_hash,
574 
575  for (int i = 0; i < CNAT_N_SNAT_IF_MAP; i++)
576  clib_bitmap_validate (cpm->interface_maps[i], cm->snat_if_map_length);
577 
580 
582 
583  return (NULL);
584 }
585 
587 
588 /*
589  * fd.io coding-style-patch-verification: ON
590  *
591  * Local Variables:
592  * eval: (c-set-style "gnu")
593  * End:
594  */
vec_reset_length
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
Definition: vec_bootstrap.h:194
ip_address
Definition: ip_types.h:79
cnat_snat_policy_add_pfx
int cnat_snat_policy_add_pfx(ip_prefix_t *pfx)
Definition: cnat_snat_policy.c:148
CNAT_SNAT_POLICY_NONE
@ CNAT_SNAT_POLICY_NONE
Definition: cnat_snat_policy.h:53
ip6_address_is_equal
static uword ip6_address_is_equal(const ip6_address_t *a, const ip6_address_t *b)
Definition: ip6_packet.h:167
cnat_snat_policy_interface_enabled
static_always_inline int cnat_snat_policy_interface_enabled(u32 sw_if_index, ip_address_family_t af)
Definition: cnat_snat_policy.c:260
cnat_translation.h
CNAT_EP_FLAG_RESOLVED
@ CNAT_EP_FLAG_RESOLVED
Definition: cnat_types.h:70
unformat_user
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:989
cnat_session_t_::cs_ip
ip46_address_t cs_ip[VLIB_N_DIR]
IP 4/6 address in the rx/tx direction.
Definition: cnat_session.h:47
unformat_ip_prefix
uword unformat_ip_prefix(unformat_input_t *input, va_list *args)
Definition: ip_types.c:64
cnat_snat_policy_add_del_pfx_command_fn
static clib_error_t * cnat_snat_policy_add_del_pfx_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: cnat_snat_policy.c:402
cnat_resolve_ep
u8 cnat_resolve_ep(cnat_endpoint_t *ep)
Resolve endpoint address.
Definition: cnat_types.c:63
addr_resolution_t_::sw_if_index
u32 sw_if_index
The interface index to resolve.
Definition: cnat_translation.h:94
format_ip4_address
format_function_t format_ip4_address
Definition: format.h:73
ip4
vl_api_ip4_address_t ip4
Definition: one.api:376
ip_prefix
Definition: ip_types.h:116
pow2_mask
static uword pow2_mask(uword x)
Definition: clib.h:252
policy
vl_api_ipsec_spd_action_t policy
Definition: ipsec.api:99
unformat_line_input
unformat_function_t unformat_line_input
Definition: format.h:275
cnat_snat_policy_set_cmd_fn
static clib_error_t * cnat_snat_policy_set_cmd_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: cnat_snat_policy.c:494
cnat_main
cnat_main_t cnat_main
Definition: cnat_types.c:18
clib_bitmap_t
uword clib_bitmap_t
Definition: bitmap.h:50
cnat_snat_pfx_table_meta_t_::prefix_lengths_in_search_order
u16 * prefix_lengths_in_search_order
Definition: cnat_snat_policy.h:29
format_cnat_snat_prefix
u8 * format_cnat_snat_prefix(u8 *s, va_list *args)
Definition: cnat_snat_policy.c:60
cnat_translation_register_addr_add_cb
void cnat_translation_register_addr_add_cb(cnat_addr_resol_type_t typ, cnat_if_addr_add_cb_t fn)
Definition: cnat_translation.c:814
cnat_translation_watch_addr
void cnat_translation_watch_addr(index_t cti, u64 opaque, cnat_endpoint_t *ep, cnat_addr_resol_type_t type)
Add an address resolution request.
Definition: cnat_translation.c:39
clib_error_return
#define clib_error_return(e, args...)
Definition: error.h:99
vlib_cli_command_t::path
char * path
Definition: cli.h:96
cnat_endpoint_t_::ce_sw_if_index
u32 ce_sw_if_index
Definition: cnat_types.h:76
clib_bihash_kv_24_8_t
Definition: bihash_24_8.h:40
cnat_compute_prefix_lengths_in_search_order
static void cnat_compute_prefix_lengths_in_search_order(cnat_snat_exclude_pfx_table_t *table, ip_address_family_t af)
Definition: cnat_snat_policy.c:74
cnat_translation_unwatch_addr
void cnat_translation_unwatch_addr(u32 cti, cnat_addr_resol_type_t type)
Cleanup matching addr resolution requests.
Definition: cnat_translation.c:63
ip4_address_is_equal
static_always_inline int ip4_address_is_equal(const ip4_address_t *ip4_1, const ip4_address_t *ip4_2)
Definition: ip46_address.h:101
cnat_snat_policy_main_t_::excluded_pfx
cnat_snat_exclude_pfx_table_t excluded_pfx
Definition: cnat_snat_policy.h:61
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
AF_IP4
@ AF_IP4
Definition: ip_types.h:23
VLIB_RX
@ VLIB_RX
Definition: defs.h:46
cnat_snat_exclude_pfx_table_t_::meta
cnat_snat_pfx_table_meta_t meta[2]
Definition: cnat_snat_policy.h:38
cnat_session_t_
A session represents the memory of a translation.
Definition: cnat_session.h:37
CNAT_SNAT_IF_MAP_INCLUDE_V4
@ CNAT_SNAT_IF_MAP_INCLUDE_V4
Definition: cnat_snat_policy.h:45
unformat_input_t
struct _unformat_input_t unformat_input_t
cnat_session_t_::key
struct cnat_session_t_::@645 key
this key sits in the same memory location a 'key' in the bihash kvp
addr
vhost_vring_addr_t addr
Definition: vhost_user.h:130
cnat_session_t_::cs_af
u8 cs_af
The address family describing the IP addresses.
Definition: cnat_session.h:62
cnat_endpoint_t_
Definition: cnat_types.h:73
cnat_snat_interface_map_type_t
enum cnat_snat_interface_map_type_t_ cnat_snat_interface_map_type_t
cnat_snat_policy_main_t_::snat_ip4
cnat_endpoint_t snat_ip4
Definition: cnat_snat_policy.h:70
ip_prefix::len
u8 len
Definition: ip_types.h:119
CNAT_RESOLV_ADDR_SNAT
@ CNAT_RESOLV_ADDR_SNAT
Definition: cnat_translation.h:74
cnat_show_snat_command
static vlib_cli_command_t cnat_show_snat_command
(constructor) VLIB_CLI_COMMAND (cnat_show_snat_command)
Definition: cnat_snat_policy.c:466
unformat
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
cnat_snat_policy_add_del_if
int cnat_snat_policy_add_del_if(u32 sw_if_index, u8 is_add, cnat_snat_interface_map_type_t table)
Definition: cnat_snat_policy.c:89
cnat_snat_pfx_table_meta_t_::non_empty_dst_address_length_bitmap
uword * non_empty_dst_address_length_bitmap
Definition: cnat_snat_policy.h:30
cnat_set_snat
void cnat_set_snat(ip4_address_t *ip4, ip6_address_t *ip6, u32 sw_if_index)
Definition: cnat_snat_policy.c:331
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
cnat_snat_policy_main_t_::interface_maps
clib_bitmap_t * interface_maps[CNAT_N_SNAT_IF_MAP]
Definition: cnat_snat_policy.h:64
ip46_address_is_equal
static u8 ip46_address_is_equal(const ip46_address_t *ip46_1, const ip46_address_t *ip46_2)
Definition: ip46_address.h:93
unformat_free
static void unformat_free(unformat_input_t *i)
Definition: format.h:155
clib_bitmap_get
static uword clib_bitmap_get(uword *ai, uword i)
Gets the ith bit value from a bitmap.
Definition: bitmap.h:197
len
u8 len
Definition: ip_types.api:103
map
counters map
Definition: map.api:356
vec_add1
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:606
cnat_if_addr_add_del_snat_cb
static void cnat_if_addr_add_del_snat_cb(addr_resolution_t *ar, ip_address_t *address, u8 is_del)
Definition: cnat_snat_policy.c:522
CLIB_UNUSED
#define CLIB_UNUSED(x)
Definition: clib.h:90
vnet_buffer
#define vnet_buffer(b)
Definition: buffer.h:441
vnet_get_main
vnet_main_t * vnet_get_main(void)
Definition: pnat_test_stubs.h:56
ip_addr_v6
#define ip_addr_v6(_a)
Definition: ip_types.h:92
src_addr
vl_api_mac_address_t src_addr
Definition: flow_types.api:64
ARRAY_LEN
#define ARRAY_LEN(x)
Definition: clib.h:70
unformat_check_input
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:163
cnat_snat_policy_none
int cnat_snat_policy_none(vlib_buffer_t *b, cnat_session_t *session)
Definition: cnat_snat_policy.c:267
unformat_cnat_snat_interface_map_type
uword unformat_cnat_snat_interface_map_type(unformat_input_t *input, va_list *args)
Definition: cnat_snat_policy.c:23
static_always_inline
#define static_always_inline
Definition: clib.h:112
cnat_snat_exclude_pfx_table_t_::ip_masks
ip6_address_t ip_masks[129]
Definition: cnat_snat_policy.h:40
uword
u64 uword
Definition: types.h:112
if
if(node->flags &VLIB_NODE_FLAG_TRACE) vnet_interface_output_trace(vm
ip_addr_v4
#define ip_addr_v4(_a)
Definition: ip_types.h:91
CNAT_SNAT_IF_MAP_INCLUDE_V6
@ CNAT_SNAT_IF_MAP_INCLUDE_V6
Definition: cnat_snat_policy.h:46
dst_addr
vl_api_mac_address_t dst_addr
Definition: flow_types.api:65
cnat_snat_init
static clib_error_t * cnat_snat_init(vlib_main_t *vm)
Definition: cnat_snat_policy.c:549
mask
vl_api_pnat_mask_t mask
Definition: pnat.api:45
cm
vnet_feature_config_main_t * cm
Definition: nat44_ei_hairpinning.c:594
format_unformat_error
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
address
manual_print typedef address
Definition: ip_types.api:96
VLIB_CLI_COMMAND
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:163
ip_address_set
void ip_address_set(ip_address_t *dst, const void *src, ip_address_family_t af)
Definition: ip_types.c:207
ip4_address_t
Definition: ip4_packet.h:50
clib_bitmap_set
static uword * clib_bitmap_set(uword *ai, uword i, uword value)
Sets the ith bit of a bitmap to new_value Removes trailing zeros from the bitmap.
Definition: bitmap.h:167
cnat_set_snat_policy
int cnat_set_snat_policy(cnat_snat_policy_type_t policy)
Definition: cnat_snat_policy.c:473
cnat_snat_policy_k8s
int cnat_snat_policy_k8s(vlib_buffer_t *b, cnat_session_t *session)
Definition: cnat_snat_policy.c:289
vlib_cli_output
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:716
cnat_snat_policy_if_pfx
int cnat_snat_policy_if_pfx(vlib_buffer_t *b, cnat_session_t *session)
Definition: cnat_snat_policy.c:274
cnat_snat_policy_add_del_if_command
static vlib_cli_command_t cnat_snat_policy_add_del_if_command
(constructor) VLIB_CLI_COMMAND (cnat_snat_policy_add_del_if_command)
Definition: cnat_snat_policy.c:140
clib_bitmap_validate
#define clib_bitmap_validate(v, n_bits)
Definition: bitmap.h:115
vnet_main_t
Definition: vnet.h:76
cnat_snat_exclude_pfx_table_t_
Definition: cnat_snat_policy.h:33
cnat_snat_policy_del_pfx
int cnat_snat_policy_del_pfx(ip_prefix_t *pfx)
Definition: cnat_snat_policy.c:179
u64
unsigned long u64
Definition: types.h:89
format_vnet_sw_if_index_name
format_function_t format_vnet_sw_if_index_name
Definition: interface_funcs.h:458
unformat_vnet_sw_interface
unformat_function_t unformat_vnet_sw_interface
Definition: interface_funcs.h:462
format
description fragment has unexpected format
Definition: map.api:433
ASSERT
#define ASSERT(truth)
Definition: error_bootstrap.h:69
ip.h
u32
unsigned int u32
Definition: types.h:88
VLIB_INIT_FUNCTION
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:172
af
vl_api_address_family_t af
Definition: ip.api:619
cnat_lazy_init
void cnat_lazy_init()
Lazy initialization when first adding a translation or using snat.
Definition: cnat_types.c:176
ip6
vl_api_ip6_address_t ip6
Definition: one.api:424
clib_bihash_kv_24_8_t::key
u64 key[3]
Definition: bihash_24_8.h:42
cnat_snat_policy_main_t_::snat_policy
cnat_snat_policy_t snat_policy
Definition: cnat_snat_policy.h:67
ip_prefix_v6
#define ip_prefix_v6(_a)
Definition: ip_types.h:127
AF_IP6
@ AF_IP6
Definition: ip_types.h:24
addr_resolution_t_::af
ip_address_family_t af
ip4 or ip6 resolution
Definition: cnat_translation.h:98
CNAT_SNAT_POLICY_IF_PFX
@ CNAT_SNAT_POLICY_IF_PFX
Definition: cnat_snat_policy.h:54
cnat_snat_policy_main_t_
Definition: cnat_snat_policy.h:58
vlib_main_t
Definition: main.h:102
format_cnat_endpoint
u8 * format_cnat_endpoint(u8 *s, va_list *args)
Definition: cnat_types.c:134
cnat_snat_policy_main_t_::snat_ip6
cnat_endpoint_t snat_ip6
Definition: cnat_snat_policy.h:73
cnat_endpoint_t_::ce_ip
ip_address_t ce_ip
Definition: cnat_types.h:75
b
vlib_buffer_t ** b
Definition: nat44_ei_out2in.c:717
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
a
a
Definition: bitmap.h:525
ip_prefix_version
#define ip_prefix_version(_a)
Definition: ip_types.h:124
vlib_init_function_t
clib_error_t *() vlib_init_function_t(struct vlib_main_t *vm)
Definition: init.h:51
cnat_search_snat_prefix
int cnat_search_snat_prefix(ip46_address_t *addr, ip_address_family_t af)
Definition: cnat_snat_policy.c:218
format_ip6_address
format_function_t format_ip6_address
Definition: format.h:91
cnat_set_snat_cli
static clib_error_t * cnat_set_snat_cli(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: cnat_snat_policy.c:353
format_cnat_snat_interface_map_type
u8 * format_cnat_snat_interface_map_type(u8 *s, va_list *args)
Definition: cnat_snat_policy.c:38
i
int i
Definition: flowhash_template.h:376
cnat_snat_exclude_pfx_table_t_::ip_hash
clib_bihash_24_8_t ip_hash
Definition: cnat_snat_policy.h:36
cnat_resolve_addr
u8 cnat_resolve_addr(u32 sw_if_index, ip_address_family_t af, ip_address_t *addr)
Definition: cnat_types.c:29
unformat_ip6_address
unformat_function_t unformat_ip6_address
Definition: format.h:89
rv
int __clib_unused rv
Definition: application.c:491
unformat_ip4_address
unformat_function_t unformat_ip4_address
Definition: format.h:68
cnat_snat_policy_type_t
enum cnat_snat_policy_type_t_ cnat_snat_policy_type_t
ip_prefix_v4
#define ip_prefix_v4(_a)
Definition: ip_types.h:126
CNAT_SNAT_IF_MAP_INCLUDE_POD
@ CNAT_SNAT_IF_MAP_INCLUDE_POD
Definition: cnat_snat_policy.h:47
cnat_endpoint_t_::ce_flags
u8 ce_flags
Definition: cnat_types.h:78
cnat_snat_pfx_table_meta_t_::dst_address_length_refcounts
u32 dst_address_length_refcounts[129]
Definition: cnat_snat_policy.h:28
clib_bitmap_foreach
#define clib_bitmap_foreach(i, ai)
Macro to iterate across set bits in a bitmap.
Definition: bitmap.h:361
cnat_snat_policy_set_cmd
static vlib_cli_command_t cnat_snat_policy_set_cmd
(constructor) VLIB_CLI_COMMAND (cnat_snat_policy_set_cmd)
Definition: cnat_snat_policy.c:515
cnat_snat_policy_main
cnat_snat_policy_main_t cnat_snat_policy_main
Definition: cnat_snat_policy.c:20
vlib_cli_command_t
Definition: cli.h:92
cnat_snat_policy_add_del_pfx_command
static vlib_cli_command_t cnat_snat_policy_add_del_pfx_command
(constructor) VLIB_CLI_COMMAND (cnat_snat_policy_add_del_pfx_command)
Definition: cnat_snat_policy.c:432
INDEX_INVALID
#define INDEX_INVALID
Invalid index - used when no index is known blazoned capitals INVALID speak volumes where ~0 does not...
Definition: dpo.h:49
ip_address_copy
void ip_address_copy(ip_address_t *dst, const ip_address_t *src)
Definition: ip_types.c:133
cnat_set_snat_command
static vlib_cli_command_t cnat_set_snat_command
(constructor) VLIB_CLI_COMMAND (cnat_set_snat_command)
Definition: cnat_snat_policy.c:394
sw_if_index
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
VLIB_TX
@ VLIB_TX
Definition: defs.h:47
CNAT_N_SNAT_IF_MAP
@ CNAT_N_SNAT_IF_MAP
Definition: cnat_snat_policy.h:48
CNAT_SNAT_POLICY_K8S
@ CNAT_SNAT_POLICY_K8S
Definition: cnat_snat_policy.h:55
cnat_show_snat
static clib_error_t * cnat_show_snat(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: cnat_snat_policy.c:439
cnat_snat_policy.h
addr_resolution_t_
Entry used to account for a translation's backend waiting for address resolution.
Definition: cnat_translation.h:89
UNFORMAT_END_OF_INPUT
#define UNFORMAT_END_OF_INPUT
Definition: format.h:137
cnat_snat_policy_add_del_if_command_fn
static clib_error_t * cnat_snat_policy_add_del_if_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: cnat_snat_policy.c:104
ip_address_family_t
enum ip_address_family_t_ ip_address_family_t
vlib_buffer_t
VLIB buffer representation.
Definition: buffer.h:111
cnat_main_
Definition: cnat_types.h:94