FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
nat44_ed_format.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 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  * @file
17  * @brief NAT formatting
18  */
19 
20 #include <nat/nat44-ed/nat44_ed.h>
22 
23 uword
24 unformat_nat_protocol (unformat_input_t * input, va_list * args)
25 {
26  u32 *r = va_arg (*args, u32 *);
27 
28  if (0);
29 #define _(N, i, n, s) else if (unformat (input, s)) *r = NAT_PROTOCOL_##N;
31 #undef _
32  else
33  return 0;
34  return 1;
35 }
36 
37 u8 *
38 format_nat_protocol (u8 * s, va_list * args)
39 {
40  u32 i = va_arg (*args, u32);
41  u8 *t = 0;
42 
43  switch (i)
44  {
45 #define _(N, j, n, str) case NAT_PROTOCOL_##N: t = (u8 *) str; break;
47 #undef _
48  default:
49  s = format (s, "unknown");
50  return s;
51  }
52  s = format (s, "%s", t);
53  return s;
54 }
55 
56 u8 *
58 {
59  u32 i = va_arg (*args, u32);
60  u8 *t = 0;
61 
62  switch (i)
63  {
64 #define _(v, N, s) case NAT_ADDR_AND_PORT_ALLOC_ALG_##N: t = (u8 *) s; break;
66 #undef _
67  default:
68  s = format (s, "unknown");
69  return s;
70  }
71  s = format (s, "%s", t);
72  return s;
73 }
74 
75 u8 *
76 format_snat_key (u8 * s, va_list * args)
77 {
78  u64 key = va_arg (*args, u64);
79 
81  u16 port;
83  u32 fib_index;
84 
85  split_nat_key (key, &addr, &port, &fib_index, &protocol);
86 
87  s = format (s, "%U proto %U port %d fib %d",
90  clib_net_to_host_u16 (port), fib_index);
91  return s;
92 }
93 
94 u8 *
95 format_snat_session_state (u8 * s, va_list * args)
96 {
97  u32 i = va_arg (*args, u32);
98  u8 *t = 0;
99 
100  switch (i)
101  {
102 #define _(v, N, str) case SNAT_SESSION_##N: t = (u8 *) str; break;
104 #undef _
105  default:
106  t = format (t, "unknown");
107  }
108  s = format (s, "%s", t);
109  return s;
110 }
111 
112 u8 *
113 format_snat_session (u8 * s, va_list * args)
114 {
116  va_arg (*args, snat_main_per_thread_data_t *);
117  snat_session_t *sess = va_arg (*args, snat_session_t *);
118 
119  if (snat_is_unk_proto_session (sess))
120  {
121  s = format (s, " i2o %U proto %u fib %u\n",
122  format_ip4_address, &sess->in2out.addr,
123  sess->in2out.port, sess->in2out.fib_index);
124  s =
125  format (s, " o2i %U proto %u fib %u\n", format_ip4_address,
126  &sess->out2in.addr, sess->out2in.port, sess->out2in.fib_index);
127  }
128  else
129  {
130  s = format (s, " i2o %U proto %U port %d fib %d\n",
131  format_ip4_address, &sess->in2out.addr,
132  format_nat_protocol, sess->nat_proto,
133  clib_net_to_host_u16 (sess->in2out.port),
134  sess->in2out.fib_index);
135  s = format (s, " o2i %U proto %U port %d fib %d\n",
136  format_ip4_address, &sess->out2in.addr, format_nat_protocol,
137  sess->nat_proto, clib_net_to_host_u16 (sess->out2in.port),
138  sess->out2in.fib_index);
139  }
141  {
142  s = format (s, " external host o2i %U:%d i2o %U:%d\n",
143  format_ip4_address, &sess->ext_host_addr,
144  clib_net_to_host_u16 (sess->ext_host_port),
145  format_ip4_address, &sess->ext_host_nat_addr,
146  clib_net_to_host_u16 (sess->ext_host_nat_port));
147  }
148  else
149  {
150  if (sess->ext_host_addr.as_u32)
151  s = format (s, " external host %U:%u\n",
152  format_ip4_address, &sess->ext_host_addr,
153  clib_net_to_host_u16 (sess->ext_host_port));
154  }
155  s = format (s, " i2o flow: %U\n", format_nat_6t_flow, &sess->i2o);
156  s = format (s, " o2i flow: %U\n", format_nat_6t_flow, &sess->o2i);
157  s = format (s, " index %llu\n", sess - tsm->sessions);
158  s = format (s, " last heard %.2f\n", sess->last_heard);
159  s = format (s, " total pkts %d, total bytes %lld\n",
160  sess->total_pkts, sess->total_bytes);
161  if (nat44_ed_is_session_static (sess))
162  s = format (s, " static translation\n");
163  else
164  s = format (s, " dynamic translation\n");
166  s = format (s, " forwarding-bypass\n");
167  if (nat44_ed_is_lb_session (sess))
168  s = format (s, " load-balancing\n");
170  s = format (s, " twice-nat\n");
171  return s;
172 }
173 
174 u8 *
175 format_snat_static_mapping (u8 * s, va_list * args)
176 {
177  snat_static_mapping_t *m = va_arg (*args, snat_static_mapping_t *);
178  nat44_lb_addr_port_t *local;
179 
180  if (is_sm_identity_nat (m->flags))
181  {
182  if (is_sm_addr_only (m->flags))
183  s = format (s, "identity mapping %U",
185  else
186  s = format (s, "identity mapping %U %U:%d",
189  clib_net_to_host_u16 (m->local_port));
190 
191  pool_foreach (local, m->locals)
192  {
193  s = format (s, " vrf %d", local->vrf_id);
194  }
195 
196  return s;
197  }
198 
199  if (is_sm_addr_only (m->flags))
200  s =
201  format (s, "local %U external %U vrf %d %s %s", format_ip4_address,
203  is_sm_twice_nat (m->flags) ?
204  "twice-nat" :
205  is_sm_self_twice_nat (m->flags) ? "self-twice-nat" : "",
206  is_sm_out2in_only (m->flags) ? "out2in-only" : "");
207  else
208  {
209  if (is_sm_lb (m->flags))
210  {
211  s =
212  format (s, "%U external %U:%d %s %s", format_nat_protocol,
214  clib_net_to_host_u16 (m->external_port),
215  is_sm_twice_nat (m->flags) ?
216  "twice-nat" :
217  is_sm_self_twice_nat (m->flags) ? "self-twice-nat" : "",
218  is_sm_out2in_only (m->flags) ? "out2in-only" : "");
219 
220  pool_foreach (local, m->locals)
221  {
222  s = format (s, "\n local %U:%d vrf %d probability %d\%",
223  format_ip4_address, &local->addr,
224  clib_net_to_host_u16 (local->port), local->vrf_id,
225  local->probability);
226  }
227  }
228  else
229  s = format (s, "%U local %U:%d external %U:%d vrf %d %s %s",
231  &m->local_addr, clib_net_to_host_u16 (m->local_port),
233  clib_net_to_host_u16 (m->external_port), m->vrf_id,
234  is_sm_twice_nat (m->flags) ?
235  "twice-nat" :
236  is_sm_self_twice_nat (m->flags) ? "self-twice-nat" : "",
237  is_sm_out2in_only (m->flags) ? "out2in-only" : "");
238  }
239  return s;
240 }
241 
242 u8 *
244 {
246  vnet_main_t *vnm = vnet_get_main ();
247 
248  if (m->addr_only)
249  s = format (s, "local %U external %U vrf %d",
252  else
253  s = format (s, "%U local %U:%d external %U:%d vrf %d",
256  clib_net_to_host_u16 (m->l_port),
258  clib_net_to_host_u16 (m->e_port), m->vrf_id);
259 
260  return s;
261 }
262 
263 /*
264  * fd.io coding-style-patch-verification: ON
265  *
266  * Local Variables:
267  * eval: (c-set-style "gnu")
268  * End:
269  */
is_sm_lb
static bool is_sm_lb(u32 f)
Definition: nat44_ed.h:852
snat_is_unk_proto_session
static bool snat_is_unk_proto_session(snat_session_t *s)
Check if SNAT session for unknown protocol.
Definition: nat44_ed.h:738
format_snat_key
u8 * format_snat_key(u8 *s, va_list *args)
Definition: nat44_ed_format.c:76
snat_static_mapping_t::locals
nat44_lb_addr_port_t * locals
Definition: nat44_ed.h:437
nat44_lb_addr_port_t::addr
ip4_address_t addr
Definition: nat44_ed.h:382
format_ip4_address
format_function_t format_ip4_address
Definition: format.h:73
snat_static_mapping_t::vrf_id
u32 vrf_id
Definition: nat44_ed.h:426
foreach_snat_session_state
@ foreach_snat_session_state
Definition: nat44_ed.h:123
format_snat_session
u8 * format_snat_session(u8 *s, va_list *args)
Definition: nat44_ed_format.c:113
nat_protocol_t
nat_protocol_t
Definition: lib.h:63
snat_static_map_resolve_t::l_port
u16 l_port
Definition: nat44_ed.h:454
u16
unsigned short u16
Definition: types.h:57
is_sm_out2in_only
static bool is_sm_out2in_only(u32 f)
Definition: nat44_ed.h:840
port
u16 port
Definition: lb_types.api:73
snat_static_mapping_t::proto
nat_protocol_t proto
Definition: nat44_ed.h:429
nat44_lb_addr_port_t::port
u16 port
Definition: nat44_ed.h:384
snat_static_mapping_t::local_addr
ip4_address_t local_addr
Definition: nat44_ed.h:418
unformat_input_t
struct _unformat_input_t unformat_input_t
addr
vhost_vring_addr_t addr
Definition: vhost_user.h:130
r
vnet_hw_if_output_node_runtime_t * r
Definition: interface_output.c:1089
snat_static_mapping_t::flags
u32 flags
Definition: nat44_ed.h:441
key
typedef key
Definition: ipsec_types.api:91
format_nat_protocol
u8 * format_nat_protocol(u8 *s, va_list *args)
Definition: nat44_ed_format.c:38
foreach_nat_protocol
@ foreach_nat_protocol
Definition: lib.h:66
is_sm_twice_nat
static bool is_sm_twice_nat(u32 f)
Definition: nat44_ed.h:870
pool_foreach
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:534
vnet_get_main
vnet_main_t * vnet_get_main(void)
Definition: pnat_test_stubs.h:56
nat44_lb_addr_port_t::probability
u8 probability
Definition: nat44_ed.h:386
nat44_ed_is_lb_session
static bool nat44_ed_is_lb_session(snat_session_t *s)
Check if NAT session is load-balancing.
Definition: nat44_ed.h:758
is_sm_addr_only
static bool is_sm_addr_only(u32 f)
Definition: nat44_ed.h:834
uword
u64 uword
Definition: types.h:112
nat44_ed_is_session_static
static bool nat44_ed_is_session_static(snat_session_t *s)
Check if SNAT session is created from static mapping.
Definition: nat44_ed.h:728
nat44_lb_addr_port_t
Definition: nat44_ed.h:379
snat_static_mapping_t::external_port
u16 external_port
Definition: nat44_ed.h:424
snat_static_map_resolve_t::addr_only
int addr_only
Definition: nat44_ed.h:460
ip4_address_t
Definition: ip4_packet.h:50
foreach_nat_addr_and_port_alloc_alg
@ foreach_nat_addr_and_port_alloc_alg
Definition: nat44_ed.h:103
snat_main_per_thread_data_t::sessions
snat_session_t * sessions
Definition: nat44_ed.h:471
format_nat_addr_and_port_alloc_alg
u8 * format_nat_addr_and_port_alloc_alg(u8 *s, va_list *args)
Definition: nat44_ed_format.c:57
format_snat_static_mapping
u8 * format_snat_static_mapping(u8 *s, va_list *args)
Definition: nat44_ed_format.c:175
nat44_ed_is_twice_nat_session
static bool nat44_ed_is_twice_nat_session(snat_session_t *s)
Check if NAT session is twice NAT.
Definition: nat44_ed.h:748
vnet_main_t
Definition: vnet.h:76
nat44_ed_inlines.h
nat44_lb_addr_port_t::vrf_id
u32 vrf_id
Definition: nat44_ed.h:389
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
format
description fragment has unexpected format
Definition: map.api:433
is_sm_self_twice_nat
static bool is_sm_self_twice_nat(u32 f)
Definition: nat44_ed.h:864
is_sm_identity_nat
static bool is_sm_identity_nat(u32 f)
Definition: nat44_ed.h:846
u32
unsigned int u32
Definition: types.h:88
protocol
vl_api_ip_proto_t protocol
Definition: lb_types.api:72
unformat_nat_protocol
uword unformat_nat_protocol(unformat_input_t *input, va_list *args)
Definition: nat44_ed_format.c:24
nat44_ed.h
snat_static_map_resolve_t::vrf_id
u32 vrf_id
Definition: nat44_ed.h:457
format_nat_6t_flow
format_function_t format_nat_6t_flow
Definition: nat44_ed.h:1070
snat_static_map_resolve_t::proto
nat_protocol_t proto
Definition: nat44_ed.h:458
snat_static_map_resolve_t::sw_if_index
u32 sw_if_index
Definition: nat44_ed.h:456
u8
unsigned char u8
Definition: types.h:56
split_nat_key
static void split_nat_key(u64 key, ip4_address_t *addr, u16 *port, u32 *fib_index, nat_protocol_t *proto)
Definition: nat44_ei_inlines.h:34
i
int i
Definition: flowhash_template.h:376
snat_static_mapping_t::external_addr
ip4_address_t external_addr
Definition: nat44_ed.h:420
snat_static_mapping_t
Definition: nat44_ed.h:413
snat_static_map_resolve_t
Definition: nat44_ed.h:450
snat_main_per_thread_data_t
Definition: nat44_ed.h:468
snat_static_mapping_t::local_port
u16 local_port
Definition: nat44_ed.h:422
snat_static_map_resolve_t::e_port
u16 e_port
Definition: nat44_ed.h:455
snat_static_map_resolve_t::l_addr
ip4_address_t l_addr
Definition: nat44_ed.h:452
format_snat_session_state
u8 * format_snat_session_state(u8 *s, va_list *args)
Definition: nat44_ed_format.c:95
format_snat_static_map_to_resolve
u8 * format_snat_static_map_to_resolve(u8 *s, va_list *args)
Definition: nat44_ed_format.c:243
na44_ed_is_fwd_bypass_session
static bool na44_ed_is_fwd_bypass_session(snat_session_t *s)
Check if NAT session is forwarding bypass.
Definition: nat44_ed.h:768