NAT44: do not create session record for identity mapping (VPP-1439)
[vpp.git] / src / plugins / nat / nat_format.c
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/nat.h>
21 #include <nat/nat_det.h>
22
23 uword
24 unformat_snat_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 = SNAT_PROTOCOL_##N;
30   foreach_snat_protocol
31 #undef _
32     else
33     return 0;
34   return 1;
35 }
36
37 u8 *
38 format_snat_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 SNAT_PROTOCOL_##N: t = (u8 *) str; break;
46       foreach_snat_protocol
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 *
57 format_nat_addr_and_port_alloc_alg (u8 * s, va_list * args)
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;
65       foreach_nat_addr_and_port_alloc_alg
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   snat_session_key_t *key = va_arg (*args, snat_session_key_t *);
79
80   s = format (s, "%U proto %U port %d fib %d",
81               format_ip4_address, &key->addr,
82               format_snat_protocol, key->protocol,
83               clib_net_to_host_u16 (key->port), key->fib_index);
84   return s;
85 }
86
87 u8 *
88 format_static_mapping_key (u8 * s, va_list * args)
89 {
90   snat_session_key_t *key = va_arg (*args, snat_session_key_t *);
91
92   s = format (s, "%U proto %U port %d fib %d",
93               format_ip4_address, &key->addr,
94               format_snat_protocol, key->protocol, key->port, key->fib_index);
95   return s;
96 }
97
98 u8 *
99 format_snat_session_state (u8 * s, va_list * args)
100 {
101   u32 i = va_arg (*args, u32);
102   u8 *t = 0;
103
104   switch (i)
105     {
106 #define _(v, N, str) case SNAT_SESSION_##N: t = (u8 *) str; break;
107       foreach_snat_session_state
108 #undef _
109     default:
110       t = format (t, "unknown");
111     }
112   s = format (s, "%s", t);
113   return s;
114 }
115
116 u8 *
117 format_snat_session (u8 * s, va_list * args)
118 {
119   snat_main_per_thread_data_t *sm =
120     va_arg (*args, snat_main_per_thread_data_t *);
121   snat_session_t *sess = va_arg (*args, snat_session_t *);
122
123   if (snat_is_unk_proto_session (sess))
124     {
125       s = format (s, "  i2o %U proto %u fib %u\n",
126                   format_ip4_address, &sess->in2out.addr,
127                   clib_net_to_host_u16 (sess->in2out.port),
128                   sess->in2out.fib_index);
129       s = format (s, "    o2i %U proto %u fib %u\n",
130                   format_ip4_address, &sess->out2in.addr,
131                   clib_net_to_host_u16 (sess->out2in.port),
132                   sess->out2in.fib_index);
133     }
134   else
135     {
136       s = format (s, "  i2o %U\n", format_snat_key, &sess->in2out);
137       s = format (s, "    o2i %U\n", format_snat_key, &sess->out2in);
138     }
139   if (is_ed_session (sess) || is_fwd_bypass_session (sess))
140     {
141       if (is_twice_nat_session (sess))
142         {
143           s = format (s, "       external host o2i %U:%d i2o %U:%d\n",
144                       format_ip4_address, &sess->ext_host_addr,
145                       clib_net_to_host_u16 (sess->ext_host_port),
146                       format_ip4_address, &sess->ext_host_nat_addr,
147                       clib_net_to_host_u16 (sess->ext_host_nat_port));
148         }
149       else
150         {
151           if (sess->ext_host_addr.as_u32)
152             s = format (s, "       external host %U:%u\n",
153                         format_ip4_address, &sess->ext_host_addr,
154                         clib_net_to_host_u16 (sess->ext_host_port));
155         }
156     }
157   s = format (s, "       index %llu\n", sess - sm->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 (snat_is_session_static (sess))
162     s = format (s, "       static translation\n");
163   else
164     s = format (s, "       dynamic translation\n");
165   if (is_fwd_bypass_session (sess))
166     s = format (s, "       forwarding-bypass\n");
167   if (is_lb_session (sess))
168     s = format (s, "       load-balancing\n");
169   if (is_twice_nat_session (sess))
170     s = format (s, "       twice-nat\n");
171
172   return s;
173 }
174
175 u8 *
176 format_snat_user (u8 * s, va_list * args)
177 {
178   snat_main_per_thread_data_t *sm =
179     va_arg (*args, snat_main_per_thread_data_t *);
180   snat_user_t *u = va_arg (*args, snat_user_t *);
181   int verbose = va_arg (*args, int);
182   dlist_elt_t *head, *elt;
183   u32 elt_index, head_index;
184   u32 session_index;
185   snat_session_t *sess;
186
187   s = format (s, "%U: %d dynamic translations, %d static translations\n",
188               format_ip4_address, &u->addr, u->nsessions, u->nstaticsessions);
189
190   if (verbose == 0)
191     return s;
192
193   if (u->nsessions || u->nstaticsessions)
194     {
195       head_index = u->sessions_per_user_list_head_index;
196       head = pool_elt_at_index (sm->list_pool, head_index);
197
198       elt_index = head->next;
199       elt = pool_elt_at_index (sm->list_pool, elt_index);
200       session_index = elt->value;
201
202       while (session_index != ~0)
203         {
204           sess = pool_elt_at_index (sm->sessions, session_index);
205
206           s = format (s, "  %U\n", format_snat_session, sm, sess);
207
208           elt_index = elt->next;
209           elt = pool_elt_at_index (sm->list_pool, elt_index);
210           session_index = elt->value;
211         }
212     }
213
214   return s;
215 }
216
217 u8 *
218 format_snat_static_mapping (u8 * s, va_list * args)
219 {
220   snat_static_mapping_t *m = va_arg (*args, snat_static_mapping_t *);
221   nat44_lb_addr_port_t *local;
222
223   if (is_addr_only_static_mapping (m))
224     s = format (s, "local %U external %U vrf %d %s %s",
225                 format_ip4_address, &m->local_addr,
226                 format_ip4_address, &m->external_addr,
227                 m->vrf_id,
228                 m->twice_nat == TWICE_NAT ? "twice-nat" :
229                 m->twice_nat == TWICE_NAT_SELF ? "self-twice-nat" : "",
230                 is_out2in_only_static_mapping (m) ? "out2in-only" : "");
231   else
232     {
233       if (vec_len (m->locals))
234         {
235           s = format (s, "%U external %U:%d %s %s",
236                       format_snat_protocol, m->proto,
237                       format_ip4_address, &m->external_addr, m->external_port,
238                       m->twice_nat == TWICE_NAT ? "twice-nat" :
239                       m->twice_nat == TWICE_NAT_SELF ? "self-twice-nat" : "",
240                       is_out2in_only_static_mapping (m) ? "out2in-only" : "");
241           vec_foreach (local, m->locals)
242             s = format (s, "\n  local %U:%d vrf %d probability %d\%",
243                         format_ip4_address, &local->addr, local->port,
244                         local->vrf_id, local->probability);
245         }
246       else
247         s = format (s, "%U local %U:%d external %U:%d vrf %d %s %s",
248                     format_snat_protocol, m->proto,
249                     format_ip4_address, &m->local_addr, m->local_port,
250                     format_ip4_address, &m->external_addr, m->external_port,
251                     m->vrf_id,
252                     m->twice_nat == TWICE_NAT ? "twice-nat" :
253                     m->twice_nat == TWICE_NAT_SELF ? "self-twice-nat" : "",
254                     is_out2in_only_static_mapping (m) ? "out2in-only" : "");
255     }
256   return s;
257 }
258
259 u8 *
260 format_snat_static_map_to_resolve (u8 * s, va_list * args)
261 {
262   snat_static_map_resolve_t *m = va_arg (*args, snat_static_map_resolve_t *);
263   vnet_main_t *vnm = vnet_get_main ();
264
265   if (m->addr_only)
266     s = format (s, "local %U external %U vrf %d",
267                 format_ip4_address, &m->l_addr,
268                 format_vnet_sw_if_index_name, vnm, m->sw_if_index, m->vrf_id);
269   else
270     s = format (s, "%U local %U:%d external %U:%d vrf %d",
271                 format_snat_protocol, m->proto,
272                 format_ip4_address, &m->l_addr, m->l_port,
273                 format_vnet_sw_if_index_name, vnm, m->sw_if_index,
274                 m->e_port, m->vrf_id);
275
276   return s;
277 }
278
279 u8 *
280 format_det_map_ses (u8 * s, va_list * args)
281 {
282   snat_det_map_t *det_map = va_arg (*args, snat_det_map_t *);
283   ip4_address_t in_addr, out_addr;
284   u32 in_offset, out_offset;
285   snat_det_session_t *ses = va_arg (*args, snat_det_session_t *);
286   u32 *i = va_arg (*args, u32 *);
287
288   u32 user_index = *i / SNAT_DET_SES_PER_USER;
289   in_addr.as_u32 =
290     clib_host_to_net_u32 (clib_net_to_host_u32 (det_map->in_addr.as_u32) +
291                           user_index);
292   in_offset =
293     clib_net_to_host_u32 (in_addr.as_u32) -
294     clib_net_to_host_u32 (det_map->in_addr.as_u32);
295   out_offset = in_offset / det_map->sharing_ratio;
296   out_addr.as_u32 =
297     clib_host_to_net_u32 (clib_net_to_host_u32 (det_map->out_addr.as_u32) +
298                           out_offset);
299   s =
300     format (s,
301             "in %U:%d out %U:%d external host %U:%d state: %U expire: %d\n",
302             format_ip4_address, &in_addr, clib_net_to_host_u16 (ses->in_port),
303             format_ip4_address, &out_addr,
304             clib_net_to_host_u16 (ses->out.out_port), format_ip4_address,
305             &ses->out.ext_host_addr,
306             clib_net_to_host_u16 (ses->out.ext_host_port),
307             format_snat_session_state, ses->state, ses->expire);
308
309   return s;
310 }
311
312 u8 *
313 format_nat44_reass_trace (u8 * s, va_list * args)
314 {
315   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
316   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
317   nat44_reass_trace_t *t = va_arg (*args, nat44_reass_trace_t *);
318
319   s = format (s, "NAT44_REASS: sw_if_index %d, next index %d, status %s",
320               t->sw_if_index, t->next_index,
321               t->cached ? "cached" : "translated");
322
323   return s;
324 }
325
326 /*
327  * fd.io coding-style-patch-verification: ON
328  *
329  * Local Variables:
330  * eval: (c-set-style "gnu")
331  * End:
332  */