FD.io VPP  v21.06
Vector Packet Processing
cnat_snat_policy.h
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 #ifndef __CNAT_SNAT_H__
17 #define __CNAT_SNAT_H__
18 
19 #include <cnat/cnat_types.h>
20 #include <cnat/cnat_session.h>
21 
22 /* function to use to decide whether to snat connections in the output
23  * feature. Returns 1 if we should source NAT */
24 typedef int (*cnat_snat_policy_t) (vlib_buffer_t *b, cnat_session_t *session);
25 
27 {
32 
34 {
35  /* Stores (ip family, prefix & mask) */
36  clib_bihash_24_8_t ip_hash;
37  /* family dependant cache */
39  /* Precomputed ip masks (ip4 & ip6) */
40  ip6_address_t ip_masks[129];
42 
44 {
50 
52 {
57 
59 {
60  /* Longest prefix Match table for source NATing */
62 
63  /* interface maps including or excluding sw_if_indexes */
65 
66  /* SNAT policy for the output feature node */
68 
69  /* Ip4 Address to use for source NATing */
71 
72  /* Ip6 Address to use for source NATing */
74 
76 
78 
79 extern void cnat_set_snat (ip4_address_t *ip4, ip6_address_t *ip6,
81 extern int cnat_snat_policy_add_pfx (ip_prefix_t *pfx);
82 extern int cnat_snat_policy_del_pfx (ip_prefix_t *pfx);
84 extern int cnat_snat_policy_add_del_if (u32 sw_if_index, u8 is_add,
86 
87 int cnat_search_snat_prefix (ip46_address_t *addr, ip_address_family_t af);
88 
89 /*
90  * fd.io coding-style-patch-verification: ON
91  *
92  * Local Variables:
93  * eval: (c-set-style "gnu")
94  * End:
95  */
96 
97 #endif
int cnat_snat_policy_add_del_if(u32 sw_if_index, u8 is_add, cnat_snat_interface_map_type_t table)
int cnat_snat_policy_add_pfx(ip_prefix_t *pfx)
cnat_snat_policy_type_t_
vl_api_ipsec_spd_action_t policy
Definition: ipsec.api:99
void cnat_set_snat(ip4_address_t *ip4, ip6_address_t *ip6, u32 sw_if_index)
vhost_vring_addr_t addr
Definition: vhost_user.h:130
struct cnat_snat_exclude_pfx_table_t_ cnat_snat_exclude_pfx_table_t
unsigned char u8
Definition: types.h:56
vlib_buffer_t ** b
cnat_snat_policy_main_t cnat_snat_policy_main
unsigned int u32
Definition: types.h:88
A session represents the memory of a translation.
Definition: cnat_session.h:37
struct cnat_snat_pfx_table_meta_t_ cnat_snat_pfx_table_meta_t
vl_api_ip6_address_t ip6
Definition: one.api:424
int cnat_snat_policy_del_pfx(ip_prefix_t *pfx)
cnat_snat_policy_t snat_policy
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
unsigned short u16
Definition: types.h:57
vl_api_ip4_address_t ip4
Definition: one.api:376
cnat_snat_interface_map_type_t_
enum ip_address_family_t_ ip_address_family_t
int(* cnat_snat_policy_t)(vlib_buffer_t *b, cnat_session_t *session)
VLIB buffer representation.
Definition: buffer.h:111
u64 uword
Definition: types.h:112
uword clib_bitmap_t
Definition: bitmap.h:50
int cnat_set_snat_policy(cnat_snat_policy_type_t policy)
enum cnat_snat_interface_map_type_t_ cnat_snat_interface_map_type_t
struct cnat_snat_policy_main_t_ cnat_snat_policy_main_t
cnat_snat_exclude_pfx_table_t excluded_pfx
enum cnat_snat_policy_type_t_ cnat_snat_policy_type_t
int cnat_search_snat_prefix(ip46_address_t *addr, ip_address_family_t af)