FD.io VPP  v20.09-64-g4f7b92f0a
Vector Packet Processing
dslite.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 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 #ifndef __included_dslite_h__
16 #define __included_dslite_h__
17 
18 #include <vppinfra/dlist.h>
19 #include <vppinfra/bihash_8_8.h>
20 #include <vppinfra/bihash_16_8.h>
21 #include <vppinfra/bihash_24_8.h>
22 
23 #include <nat/lib/lib.h>
24 #include <nat/lib/alloc.h>
25 #include <nat/lib/inlines.h>
26 
27 typedef struct
28 {
32 
33 /* session key (4-tuple) */
34 typedef struct
35 {
36  union
37  {
38  struct
39  {
42  u16 protocol:3, fib_index:13;
43  };
45  };
47 
48 typedef struct
49 {
50  union
51  {
52  struct
53  {
54  ip6_address_t softwire_id;
59  };
60  u64 as_u64[3];
61  };
63 
64 /* *INDENT-OFF* */
65 typedef CLIB_PACKED (struct
66 {
67  nat_session_key_t out2in;
68  dslite_session_key_t in2out;
69  u32 per_b4_index;
70  u32 per_b4_list_head_index;
71  f64 last_heard;
72  u64 total_bytes;
73  u32 total_pkts;
74 }) dslite_session_t;
75 /* *INDENT-ON* */
76 
77 typedef struct
78 {
79  ip6_address_t addr;
82 } dslite_b4_t;
83 
84 typedef struct
85 {
86  /* Main lookup tables */
87  clib_bihash_8_8_t out2in;
88  clib_bihash_24_8_t in2out;
89 
90  /* Find a B4 */
91  clib_bihash_16_8_t b4_hash;
92 
93  /* B4 pool */
95 
96  /* Session pool */
97  dslite_session_t *sessions;
98 
99  /* Pool of doubly-linked list elements */
102 
103 typedef struct
104 {
105  ip6_address_t aftr_ip6_addr;
107  ip6_address_t b4_ip6_addr;
113 
114  /* nat address pool */
116 
117  /* counters/gauges */
120 
121  /* node index */
125 
126  /* If set then the DSLite component behaves as CPE/B4
127  * otherwise it behaves as AFTR */
129 
131 } dslite_main_t;
132 
133 typedef struct
134 {
138 
139 typedef struct
140 {
143 
144 #define foreach_dslite_error \
145 _(IN2OUT, "valid in2out DS-Lite packets") \
146 _(OUT2IN, "valid out2in DS-Lite packets") \
147 _(CE_ENCAP, "valid CE encap DS-Lite packets") \
148 _(CE_DECAP, "valid CE decap DS-Lite packets") \
149 _(NO_TRANSLATION, "no translation") \
150 _(BAD_IP6_PROTOCOL, "bad ip6 protocol") \
151 _(OUT_OF_PORTS, "out of ports") \
152 _(UNSUPPORTED_PROTOCOL, "unsupported protocol") \
153 _(BAD_ICMP_TYPE, "unsupported icmp type") \
154 _(UNKNOWN, "unknown")
155 
156 typedef enum
157 {
158 #define _(sym,str) DSLITE_ERROR_##sym,
160 #undef _
163 
170 
171 void dslite_set_ce (dslite_main_t * dm, u8 set);
172 int dslite_set_aftr_ip6_addr (dslite_main_t * dm, ip6_address_t * addr);
173 int dslite_set_b4_ip6_addr (dslite_main_t * dm, ip6_address_t * addr);
177  u8 is_add);
178 u8 *format_dslite_trace (u8 * s, va_list * args);
179 u8 *format_dslite_ce_trace (u8 * s, va_list * args);
180 
181 #endif /* __included_dslite_h__ */
182 
183 /*
184  * fd.io coding-style-patch-verification: ON
185  *
186  * Local Variables:
187  * eval: (c-set-style "gnu")
188  * End:
189  */
int dslite_set_b4_ip6_addr(dslite_main_t *dm, ip6_address_t *addr)
Definition: dslite.c:176
u16 port_per_thread
Definition: dslite.h:112
u64 as_u64
Definition: bihash_doc.h:63
ip4_address_t aftr_ip4_addr
Definition: dslite.h:106
unsigned long u64
Definition: types.h:89
vlib_node_registration_t dslite_in2out_slowpath_node
(constructor) VLIB_REGISTER_NODE (dslite_in2out_slowpath_node)
int dslite_set_aftr_ip4_addr(dslite_main_t *dm, ip4_address_t *addr)
Definition: dslite.c:169
NAT port/address allocation lib.
u32 session_index
Definition: dslite.h:136
clib_bihash_16_8_t b4_hash
Definition: dslite.h:91
vhost_vring_addr_t addr
Definition: vhost_user.h:111
unsigned char u8
Definition: types.h:56
double f64
Definition: types.h:142
u32 first_worker_index
Definition: dslite.h:111
u8 * format_dslite_trace(u8 *s, va_list *args)
Definition: dslite.c:244
ip6_address_t b4_ip6_addr
Definition: dslite.h:107
u16 identifier
Definition: dslite.h:29
ip4_address_t addr
Definition: dslite.h:40
ip6_address_t addr
Definition: dslite.h:79
u32 num_workers
Definition: dslite.h:110
unsigned int u32
Definition: types.h:88
A collection of simple counters.
Definition: counter.h:57
dlist_elt_t * list_pool
Definition: dslite.h:100
void dslite_set_ce(dslite_main_t *dm, u8 set)
Definition: dslite.c:112
clib_bihash_8_8_t out2in
Definition: dslite.h:87
vlib_node_registration_t dslite_out2in_node
(constructor) VLIB_REGISTER_NODE (dslite_out2in_node)
u32 dslite_in2out_slowpath_node_index
Definition: dslite.h:123
unsigned short u16
Definition: types.h:57
int dslite_set_aftr_ip6_addr(dslite_main_t *dm, ip6_address_t *addr)
Definition: dslite.c:133
NAT port/address allocation lib.
ip6_address_t aftr_ip6_addr
Definition: dslite.h:105
ip4_address_t b4_ip4_addr
Definition: dslite.h:108
vlib_node_registration_t dslite_ce_encap_node
(constructor) VLIB_REGISTER_NODE (dslite_ce_encap_node)
u16 msg_id_base
Definition: dslite.h:130
u32 nsessions
Definition: dslite.h:81
u8 * format_dslite_ce_trace(u8 *s, va_list *args)
Definition: dslite.c:257
typedef CLIB_PACKED(struct { nat_session_key_t out2in;dslite_session_key_t in2out;u32 per_b4_index;u32 per_b4_list_head_index;f64 last_heard;u64 total_bytes;u32 total_pkts;}) dslite_session_t
int dslite_add_del_pool_addr(dslite_main_t *dm, ip4_address_t *addr, u8 is_add)
vlib_simple_counter_main_t total_b4s
Definition: dslite.h:118
int dslite_set_b4_ip4_addr(dslite_main_t *dm, ip4_address_t *addr)
Definition: dslite.c:206
dslite_b4_t * b4s
Definition: dslite.h:94
dslite_per_thread_data_t * per_thread_data
Definition: dslite.h:109
struct _vlib_node_registration vlib_node_registration_t
u32 next_index
Definition: dslite.h:135
dslite_error_t
Definition: dslite.h:156
nat_ip4_pool_t pool
Definition: dslite.h:115
vlib_simple_counter_main_t total_sessions
Definition: dslite.h:119
dslite_main_t dslite_main
Definition: dslite.c:21
ip6_address_t softwire_id
Definition: dslite.h:54
dslite_session_t * sessions
Definition: dslite.h:97
#define foreach_dslite_error
Definition: dslite.h:144
u16 sequence
Definition: dslite.h:30
clib_bihash_24_8_t in2out
Definition: dslite.h:88
u32 dslite_out2in_node_index
Definition: dslite.h:124
u32 sessions_per_b4_list_head_index
Definition: dslite.h:80
vlib_node_registration_t dslite_in2out_node
(constructor) VLIB_REGISTER_NODE (dslite_in2out_node)
u32 dslite_in2out_node_index
Definition: dslite.h:122
ip4_address_t addr
Definition: dslite.h:55
vlib_node_registration_t dslite_ce_decap_node
(constructor) VLIB_REGISTER_NODE (dslite_ce_decap_node)