nat: NAT44 ED improvements and fixes
[vpp.git] / src / plugins / nat / nat44-ed / nat44_ed_cli.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 NAT44 CLI
18  */
19
20 #include <vnet/fib/fib_table.h>
21
22 #include <nat/lib/log.h>
23 #include <nat/lib/nat_inlines.h>
24 #include <nat/lib/ipfix_logging.h>
25
26 #include <nat/nat44-ed/nat44_ed.h>
27 #include <nat/nat44-ed/nat44_ed_inlines.h>
28 #include <nat/nat44-ed/nat44_ed_affinity.h>
29
30 #define NAT44_ED_EXPECTED_ARGUMENT "expected required argument(s)"
31
32 static clib_error_t *
33 nat44_ed_enable_disable_command_fn (vlib_main_t *vm, unformat_input_t *input,
34                                     vlib_cli_command_t *cmd)
35 {
36   snat_main_t *sm = &snat_main;
37   unformat_input_t _line_input, *line_input = &_line_input;
38   clib_error_t *error = 0;
39
40   nat44_config_t c = { 0 };
41   u8 enable_set = 0, enable = 0, mode_set = 0;
42
43   if (!unformat_user (input, unformat_line_input, line_input))
44     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
45
46   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
47     {
48       if (!mode_set && unformat (line_input, "static-mapping-only"))
49         {
50           mode_set = 1;
51           c.static_mapping_only = 1;
52           if (unformat (line_input, "connection-tracking"))
53             {
54               c.connection_tracking = 1;
55             }
56         }
57       else if (unformat (line_input, "inside-vrf %u", &c.inside_vrf));
58       else if (unformat (line_input, "outside-vrf %u", &c.outside_vrf));
59       else if (unformat (line_input, "sessions %u", &c.sessions));
60       else if (!enable_set)
61         {
62           enable_set = 1;
63           if (unformat (line_input, "disable"))
64             ;
65           else if (unformat (line_input, "enable"))
66             enable = 1;
67         }
68       else
69         {
70           error = clib_error_return (0, "unknown input '%U'",
71                                      format_unformat_error, line_input);
72           goto done;
73         }
74     }
75
76   if (!enable_set)
77     {
78       error = clib_error_return (0, "expected enable | disable");
79       goto done;
80     }
81
82   if (enable)
83     {
84       if (sm->enabled)
85         {
86           error = clib_error_return (0, "already enabled");
87           goto done;
88         }
89
90       if (nat44_plugin_enable (c) != 0)
91         error = clib_error_return (0, "enable failed");
92     }
93   else
94     {
95       if (!sm->enabled)
96         {
97           error = clib_error_return (0, "already disabled");
98           goto done;
99         }
100
101       if (nat44_plugin_disable () != 0)
102         error = clib_error_return (0, "disable failed");
103     }
104
105 done:
106   unformat_free (line_input);
107   return error;
108 }
109
110 static clib_error_t *
111 set_workers_command_fn (vlib_main_t * vm,
112                         unformat_input_t * input, vlib_cli_command_t * cmd)
113 {
114   unformat_input_t _line_input, *line_input = &_line_input;
115   uword *bitmap = 0;
116   int rv = 0;
117   clib_error_t *error = 0;
118
119   /* Get a line of input. */
120   if (!unformat_user (input, unformat_line_input, line_input))
121     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
122
123   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
124     {
125       if (unformat (line_input, "%U", unformat_bitmap_list, &bitmap))
126         ;
127       else
128         {
129           error = clib_error_return (0, "unknown input '%U'",
130                                      format_unformat_error, line_input);
131           goto done;
132         }
133     }
134
135   if (bitmap == 0)
136     {
137       error = clib_error_return (0, "List of workers must be specified.");
138       goto done;
139     }
140
141   rv = snat_set_workers (bitmap);
142
143   clib_bitmap_free (bitmap);
144
145   switch (rv)
146     {
147     case VNET_API_ERROR_INVALID_WORKER:
148       error = clib_error_return (0, "Invalid worker(s).");
149       goto done;
150     case VNET_API_ERROR_FEATURE_DISABLED:
151       error = clib_error_return (0,
152                                  "Supported only if 2 or more workes available.");
153       goto done;
154     default:
155       break;
156     }
157
158 done:
159   unformat_free (line_input);
160
161   return error;
162 }
163
164 static clib_error_t *
165 nat_show_workers_commnad_fn (vlib_main_t * vm, unformat_input_t * input,
166                              vlib_cli_command_t * cmd)
167 {
168   snat_main_t *sm = &snat_main;
169   u32 *worker;
170
171   if (sm->num_workers > 1)
172     {
173       vlib_cli_output (vm, "%d workers", vec_len (sm->workers));
174       vec_foreach (worker, sm->workers)
175         {
176           vlib_worker_thread_t *w =
177             vlib_worker_threads + *worker + sm->first_worker_index;
178           vlib_cli_output (vm, "  %s", w->name);
179         }
180     }
181
182   return 0;
183 }
184
185 static clib_error_t *
186 snat_set_log_level_command_fn (vlib_main_t * vm,
187                                unformat_input_t * input,
188                                vlib_cli_command_t * cmd)
189 {
190   unformat_input_t _line_input, *line_input = &_line_input;
191   snat_main_t *sm = &snat_main;
192   u8 log_level = NAT_LOG_NONE;
193   clib_error_t *error = 0;
194
195   /* Get a line of input. */
196   if (!unformat_user (input, unformat_line_input, line_input))
197     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
198
199   if (!unformat (line_input, "%d", &log_level))
200     {
201       error = clib_error_return (0, "unknown input '%U'",
202                                  format_unformat_error, line_input);
203       goto done;
204     }
205   if (log_level > NAT_LOG_DEBUG)
206     {
207       error = clib_error_return (0, "unknown logging level '%d'", log_level);
208       goto done;
209     }
210   sm->log_level = log_level;
211
212 done:
213   unformat_free (line_input);
214
215   return error;
216 }
217
218 static clib_error_t *
219 snat_ipfix_logging_enable_disable_command_fn (vlib_main_t * vm,
220                                               unformat_input_t * input,
221                                               vlib_cli_command_t * cmd)
222 {
223   unformat_input_t _line_input, *line_input = &_line_input;
224   clib_error_t *error = 0;
225
226   u32 domain_id = 0, src_port = 0;
227   u8 enable_set = 0, enable = 0;
228
229   if (!unformat_user (input, unformat_line_input, line_input))
230     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
231
232   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
233     {
234       if (unformat (line_input, "domain %d", &domain_id))
235         ;
236       else if (unformat (line_input, "src-port %d", &src_port))
237         ;
238       else if (!enable_set)
239         {
240           enable_set = 1;
241           if (unformat (line_input, "disable"))
242             ;
243           else if (unformat (line_input, "enable"))
244             enable = 1;
245         }
246       else
247         {
248           error = clib_error_return (0, "unknown input '%U'",
249                                      format_unformat_error, line_input);
250           goto done;
251         }
252     }
253
254   if (!enable_set)
255     {
256       error = clib_error_return (0, "expected enable | disable");
257       goto done;
258     }
259
260   if (nat_ipfix_logging_enable_disable (enable, domain_id, (u16) src_port))
261     {
262       error = clib_error_return (0, "ipfix logging enable failed");
263       goto done;
264     }
265
266 done:
267   unformat_free (line_input);
268
269   return error;
270 }
271
272 static clib_error_t *
273 nat44_show_hash_command_fn (vlib_main_t * vm, unformat_input_t * input,
274                             vlib_cli_command_t * cmd)
275 {
276   snat_main_t *sm = &snat_main;
277   nat_affinity_main_t *nam = &nat_affinity_main;
278   int i;
279   int verbose = 0;
280
281   if (unformat (input, "detail"))
282     verbose = 1;
283   else if (unformat (input, "verbose"))
284     verbose = 2;
285
286   vlib_cli_output (vm, "%U", format_bihash_8_8, &sm->static_mapping_by_local,
287                    verbose);
288   vlib_cli_output (vm, "%U",
289                    format_bihash_8_8, &sm->static_mapping_by_external,
290                    verbose);
291       vlib_cli_output (vm, "%U", format_bihash_16_8, &sm->flow_hash, verbose);
292   vec_foreach_index (i, sm->per_thread_data)
293   {
294     vlib_cli_output (vm, "-------- thread %d %s --------\n",
295                      i, vlib_worker_threads[i].name);
296     vlib_cli_output (vm, "%U", format_bihash_16_8, &sm->flow_hash, verbose);
297   }
298
299       vlib_cli_output (vm, "%U", format_bihash_16_8, &nam->affinity_hash,
300                        verbose);
301
302   vlib_cli_output (vm, "-------- hash table parameters --------\n");
303   vlib_cli_output (vm, "translation buckets: %u", sm->translation_buckets);
304   return 0;
305 }
306
307 static clib_error_t *
308 nat_set_mss_clamping_command_fn (vlib_main_t * vm, unformat_input_t * input,
309                                  vlib_cli_command_t * cmd)
310 {
311   unformat_input_t _line_input, *line_input = &_line_input;
312   snat_main_t *sm = &snat_main;
313   clib_error_t *error = 0;
314   u32 mss;
315
316   /* Get a line of input. */
317   if (!unformat_user (input, unformat_line_input, line_input))
318     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
319
320   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
321     {
322       if (unformat (line_input, "disable"))
323         sm->mss_clamping = 0;
324       else if (unformat (line_input, "%d", &mss))
325         sm->mss_clamping = (u16) mss;
326       else
327         {
328           error = clib_error_return (0, "unknown input '%U'",
329                                      format_unformat_error, line_input);
330           goto done;
331         }
332     }
333
334 done:
335   unformat_free (line_input);
336
337   return error;
338 }
339
340 static clib_error_t *
341 nat_show_mss_clamping_command_fn (vlib_main_t * vm, unformat_input_t * input,
342                                   vlib_cli_command_t * cmd)
343 {
344   snat_main_t *sm = &snat_main;
345
346   if (sm->mss_clamping)
347     vlib_cli_output (vm, "mss-clamping %d", sm->mss_clamping);
348   else
349     vlib_cli_output (vm, "mss-clamping disabled");
350
351   return 0;
352 }
353
354 static clib_error_t *
355 add_address_command_fn (vlib_main_t * vm,
356                         unformat_input_t * input, vlib_cli_command_t * cmd)
357 {
358   unformat_input_t _line_input, *line_input = &_line_input;
359   snat_main_t *sm = &snat_main;
360   ip4_address_t start_addr, end_addr, this_addr;
361   u32 start_host_order, end_host_order;
362   u32 vrf_id = ~0;
363   int i, count;
364   int is_add = 1;
365   int rv = 0;
366   clib_error_t *error = 0;
367   u8 twice_nat = 0;
368
369   /* Get a line of input. */
370   if (!unformat_user (input, unformat_line_input, line_input))
371     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
372
373   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
374     {
375       if (unformat (line_input, "%U - %U",
376                     unformat_ip4_address, &start_addr,
377                     unformat_ip4_address, &end_addr))
378         ;
379       else if (unformat (line_input, "tenant-vrf %u", &vrf_id))
380         ;
381       else if (unformat (line_input, "%U", unformat_ip4_address, &start_addr))
382         end_addr = start_addr;
383       else if (unformat (line_input, "twice-nat"))
384         twice_nat = 1;
385       else if (unformat (line_input, "del"))
386         is_add = 0;
387       else
388         {
389           error = clib_error_return (0, "unknown input '%U'",
390                                      format_unformat_error, line_input);
391           goto done;
392         }
393     }
394
395   if (sm->static_mapping_only)
396     {
397       error = clib_error_return (0, "static mapping only mode");
398       goto done;
399     }
400
401   start_host_order = clib_host_to_net_u32 (start_addr.as_u32);
402   end_host_order = clib_host_to_net_u32 (end_addr.as_u32);
403
404   if (end_host_order < start_host_order)
405     {
406       error = clib_error_return (0, "end address less than start address");
407       goto done;
408     }
409
410   count = (end_host_order - start_host_order) + 1;
411
412   if (count > 1024)
413     nat_log_info ("%U - %U, %d addresses...",
414                   format_ip4_address, &start_addr,
415                   format_ip4_address, &end_addr, count);
416
417   this_addr = start_addr;
418
419   for (i = 0; i < count; i++)
420     {
421       if (is_add)
422         {
423           rv = nat44_ed_add_address (&this_addr, vrf_id, twice_nat);
424         }
425       else
426         {
427           rv = nat44_ed_del_address (this_addr, 0, twice_nat);
428         }
429
430       switch (rv)
431         {
432         case VNET_API_ERROR_VALUE_EXIST:
433           error = clib_error_return (0, "NAT address already in use.");
434           goto done;
435         case VNET_API_ERROR_NO_SUCH_ENTRY:
436           error = clib_error_return (0, "NAT address not exist.");
437           goto done;
438         case VNET_API_ERROR_UNSPECIFIED:
439           error =
440             clib_error_return (0, "NAT address used in static mapping.");
441           goto done;
442         default:
443           break;
444         }
445
446       increment_v4_address (&this_addr);
447     }
448
449 done:
450   unformat_free (line_input);
451
452   return error;
453 }
454
455 static void
456 nat44_show_lru_summary (vlib_main_t * vm, snat_main_per_thread_data_t * tsm,
457                         u64 now, u64 sess_timeout_time)
458 {
459   snat_main_t *sm = &snat_main;
460   dlist_elt_t *oldest_elt;
461   snat_session_t *s;
462   u32 oldest_index;
463
464   if (tsm->lru_pool)
465     {
466 #define _(n, d)                                                               \
467   oldest_index =                                                              \
468     clib_dlist_remove_head (tsm->lru_pool, tsm->n##_lru_head_index);          \
469   if (~0 != oldest_index)                                                     \
470     {                                                                         \
471       oldest_elt = pool_elt_at_index (tsm->lru_pool, oldest_index);           \
472       s = pool_elt_at_index (tsm->sessions, oldest_elt->value);               \
473       sess_timeout_time =                                                     \
474         s->last_heard + (f64) nat44_session_get_timeout (sm, s);              \
475       vlib_cli_output (vm, d " LRU min session timeout %llu (now %llu)",      \
476                        sess_timeout_time, now);                               \
477       clib_dlist_addhead (tsm->lru_pool, tsm->n##_lru_head_index,             \
478                           oldest_index);                                      \
479     }
480       _ (tcp_estab, "established tcp");
481       _ (tcp_trans, "transitory tcp");
482       _ (udp, "udp");
483       _ (unk_proto, "unknown protocol");
484       _ (icmp, "icmp");
485 #undef _
486     }
487 }
488
489 static clib_error_t *
490 nat44_show_summary_command_fn (vlib_main_t * vm, unformat_input_t * input,
491                                vlib_cli_command_t * cmd)
492 {
493   snat_main_per_thread_data_t *tsm;
494   snat_main_t *sm = &snat_main;
495   snat_session_t *s;
496
497   u32 count = 0;
498
499   u64 now = vlib_time_now (vm);
500   u64 sess_timeout_time = 0;
501
502   u32 udp_sessions = 0;
503   u32 tcp_sessions = 0;
504   u32 icmp_sessions = 0;
505
506   u32 timed_out = 0;
507   u32 transitory = 0;
508   u32 transitory_wait_closed = 0;
509   u32 transitory_closed = 0;
510   u32 established = 0;
511
512   u32 fib;
513
514   for (fib = 0; fib < vec_len (sm->max_translations_per_fib); fib++)
515     vlib_cli_output (vm, "max translations per thread: %u fib %u",
516                      sm->max_translations_per_fib[fib], fib);
517
518   if (sm->num_workers > 1)
519     {
520       vec_foreach (tsm, sm->per_thread_data)
521         {
522           pool_foreach (s, tsm->sessions)
523            {
524             sess_timeout_time = s->last_heard +
525               (f64) nat44_session_get_timeout (sm, s);
526             if (now >= sess_timeout_time)
527               timed_out++;
528
529             switch (s->nat_proto)
530               {
531               case NAT_PROTOCOL_ICMP:
532                 icmp_sessions++;
533                 break;
534               case NAT_PROTOCOL_TCP:
535                 tcp_sessions++;
536                 if (s->state)
537                   {
538                     if (s->tcp_closed_timestamp)
539                       {
540                         if (now >= s->tcp_closed_timestamp)
541                           {
542                             ++transitory_closed;
543                           }
544                         else
545                           {
546                             ++transitory_wait_closed;
547                           }
548                       }
549                     transitory++;
550                   }
551                 else
552                   established++;
553                 break;
554               case NAT_PROTOCOL_UDP:
555               default:
556                 udp_sessions++;
557                 break;
558               }
559           }
560           nat44_show_lru_summary (vm, tsm, now, sess_timeout_time);
561           count += pool_elts (tsm->sessions);
562         }
563     }
564   else
565     {
566       tsm = vec_elt_at_index (sm->per_thread_data, sm->num_workers);
567       pool_foreach (s, tsm->sessions)
568        {
569         sess_timeout_time = s->last_heard +
570             (f64) nat44_session_get_timeout (sm, s);
571         if (now >= sess_timeout_time)
572           timed_out++;
573
574         switch (s->nat_proto)
575           {
576           case NAT_PROTOCOL_ICMP:
577             icmp_sessions++;
578             break;
579           case NAT_PROTOCOL_TCP:
580             tcp_sessions++;
581             if (s->state)
582               {
583                 if (s->tcp_closed_timestamp)
584                   {
585                     if (now >= s->tcp_closed_timestamp)
586                       {
587                         ++transitory_closed;
588                       }
589                     else
590                       {
591                         ++transitory_wait_closed;
592                       }
593                   }
594                 transitory++;
595               }
596             else
597               established++;
598             break;
599           case NAT_PROTOCOL_UDP:
600           default:
601             udp_sessions++;
602             break;
603           }
604       }
605       nat44_show_lru_summary (vm, tsm, now, sess_timeout_time);
606       count = pool_elts (tsm->sessions);
607     }
608
609   vlib_cli_output (vm, "total timed out sessions: %u", timed_out);
610   vlib_cli_output (vm, "total sessions: %u", count);
611   vlib_cli_output (vm, "total tcp sessions: %u", tcp_sessions);
612   vlib_cli_output (vm, "total tcp established sessions: %u", established);
613   vlib_cli_output (vm, "total tcp transitory sessions: %u", transitory);
614   vlib_cli_output (vm, "total tcp transitory (WAIT-CLOSED) sessions: %u",
615                    transitory_wait_closed);
616   vlib_cli_output (vm, "total tcp transitory (CLOSED) sessions: %u",
617                    transitory_closed);
618   vlib_cli_output (vm, "total udp sessions: %u", udp_sessions);
619   vlib_cli_output (vm, "total icmp sessions: %u", icmp_sessions);
620   return 0;
621 }
622
623 static clib_error_t *
624 nat44_show_addresses_command_fn (vlib_main_t * vm, unformat_input_t * input,
625                                  vlib_cli_command_t * cmd)
626 {
627   snat_main_t *sm = &snat_main;
628   snat_address_t *ap;
629
630   vlib_cli_output (vm, "NAT44 pool addresses:");
631   vec_foreach (ap, sm->addresses)
632     {
633       vlib_cli_output (vm, "%U", format_ip4_address, &ap->addr);
634       if (ap->fib_index != ~0)
635           vlib_cli_output (vm, "  tenant VRF: %u",
636             fib_table_get(ap->fib_index, FIB_PROTOCOL_IP4)->ft_table_id);
637       else
638         vlib_cli_output (vm, "  tenant VRF independent");
639     #define _(N, i, n, s) \
640       vlib_cli_output (vm, "  %d busy %s ports", ap->busy_##n##_ports, s);
641       foreach_nat_protocol
642     #undef _
643     }
644   vlib_cli_output (vm, "NAT44 twice-nat pool addresses:");
645   vec_foreach (ap, sm->twice_nat_addresses)
646     {
647       vlib_cli_output (vm, "%U", format_ip4_address, &ap->addr);
648       if (ap->fib_index != ~0)
649           vlib_cli_output (vm, "  tenant VRF: %u",
650             fib_table_get(ap->fib_index, FIB_PROTOCOL_IP4)->ft_table_id);
651       else
652         vlib_cli_output (vm, "  tenant VRF independent");
653     #define _(N, i, n, s) \
654       vlib_cli_output (vm, "  %d busy %s ports", ap->busy_##n##_ports, s);
655       foreach_nat_protocol
656     #undef _
657     }
658   return 0;
659 }
660
661 static clib_error_t *
662 snat_feature_command_fn (vlib_main_t * vm,
663                          unformat_input_t * input, vlib_cli_command_t * cmd)
664 {
665   unformat_input_t _line_input, *line_input = &_line_input;
666   vnet_main_t *vnm = vnet_get_main ();
667   clib_error_t *error = 0;
668   u32 sw_if_index;
669   u32 *inside_sw_if_indices = 0;
670   u32 *outside_sw_if_indices = 0;
671   u8 is_output_feature = 0;
672   int i, rv, is_del = 0;
673
674   sw_if_index = ~0;
675
676   /* Get a line of input. */
677   if (!unformat_user (input, unformat_line_input, line_input))
678     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
679
680   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
681     {
682       if (unformat (line_input, "in %U", unformat_vnet_sw_interface,
683                     vnm, &sw_if_index))
684         vec_add1 (inside_sw_if_indices, sw_if_index);
685       else if (unformat (line_input, "out %U", unformat_vnet_sw_interface,
686                          vnm, &sw_if_index))
687         vec_add1 (outside_sw_if_indices, sw_if_index);
688       else if (unformat (line_input, "output-feature"))
689         is_output_feature = 1;
690       else if (unformat (line_input, "del"))
691         is_del = 1;
692       else
693         {
694           error = clib_error_return (0, "unknown input '%U'",
695                                      format_unformat_error, line_input);
696           goto done;
697         }
698     }
699
700   if (vec_len (inside_sw_if_indices))
701     {
702       for (i = 0; i < vec_len (inside_sw_if_indices); i++)
703         {
704           sw_if_index = inside_sw_if_indices[i];
705           if (is_output_feature)
706             {
707               if (is_del)
708                 {
709                   rv = nat44_ed_del_output_interface (sw_if_index);
710                 }
711               else
712                 {
713                   rv = nat44_ed_add_output_interface (sw_if_index);
714                 }
715               if (rv)
716                 {
717                   error = clib_error_return (0, "%s %U failed",
718                                              is_del ? "del" : "add",
719                                              format_vnet_sw_if_index_name,
720                                              vnm, sw_if_index);
721                   goto done;
722                 }
723             }
724           else
725             {
726               if (is_del)
727                 {
728                   rv = nat44_ed_del_interface (sw_if_index, 1);
729                 }
730               else
731                 {
732                   rv = nat44_ed_add_interface (sw_if_index, 1);
733                 }
734               if (rv)
735                 {
736                   error = clib_error_return (0, "%s %U failed",
737                                              is_del ? "del" : "add",
738                                              format_vnet_sw_if_index_name,
739                                              vnm, sw_if_index);
740                   goto done;
741                 }
742             }
743         }
744     }
745
746   if (vec_len (outside_sw_if_indices))
747     {
748       for (i = 0; i < vec_len (outside_sw_if_indices); i++)
749         {
750           sw_if_index = outside_sw_if_indices[i];
751           if (is_output_feature)
752             {
753               if (is_del)
754                 {
755                   rv = nat44_ed_del_output_interface (sw_if_index);
756                 }
757               else
758                 {
759                   rv = nat44_ed_add_output_interface (sw_if_index);
760                 }
761               if (rv)
762                 {
763                   error = clib_error_return (0, "%s %U failed",
764                                              is_del ? "del" : "add",
765                                              format_vnet_sw_if_index_name,
766                                              vnm, sw_if_index);
767                   goto done;
768                 }
769             }
770           else
771             {
772               if (is_del)
773                 {
774                   rv = nat44_ed_del_interface (sw_if_index, 0);
775                 }
776               else
777                 {
778                   rv = nat44_ed_add_interface (sw_if_index, 0);
779                 }
780               if (rv)
781                 {
782                   error = clib_error_return (0, "%s %U failed",
783                                              is_del ? "del" : "add",
784                                              format_vnet_sw_if_index_name,
785                                              vnm, sw_if_index);
786                   goto done;
787                 }
788             }
789         }
790     }
791
792 done:
793   unformat_free (line_input);
794   vec_free (inside_sw_if_indices);
795   vec_free (outside_sw_if_indices);
796
797   return error;
798 }
799
800 static clib_error_t *
801 nat44_show_interfaces_command_fn (vlib_main_t * vm, unformat_input_t * input,
802                                   vlib_cli_command_t * cmd)
803 {
804   snat_main_t *sm = &snat_main;
805   snat_interface_t *i;
806   vnet_main_t *vnm = vnet_get_main ();
807
808   vlib_cli_output (vm, "NAT44 interfaces:");
809   pool_foreach (i, sm->interfaces)
810    {
811      vlib_cli_output (vm, " %U %s", format_vnet_sw_if_index_name, vnm,
812                       i->sw_if_index,
813                       (nat44_ed_is_interface_inside (i) &&
814                        nat44_ed_is_interface_outside (i)) ?
815                         "in out" :
816                         (nat44_ed_is_interface_inside (i) ? "in" : "out"));
817   }
818
819   pool_foreach (i, sm->output_feature_interfaces)
820    {
821      vlib_cli_output (vm, " %U output-feature %s",
822                       format_vnet_sw_if_index_name, vnm, i->sw_if_index,
823                       (nat44_ed_is_interface_inside (i) &&
824                        nat44_ed_is_interface_outside (i)) ?
825                         "in out" :
826                         (nat44_ed_is_interface_inside (i) ? "in" : "out"));
827   }
828
829   return 0;
830 }
831
832 static clib_error_t *
833 add_static_mapping_command_fn (vlib_main_t * vm,
834                                unformat_input_t * input,
835                                vlib_cli_command_t * cmd)
836 {
837   unformat_input_t _line_input, *line_input = &_line_input;
838   vnet_main_t *vnm = vnet_get_main ();
839   clib_error_t *error = 0;
840   int rv;
841
842   nat_protocol_t proto = NAT_PROTOCOL_OTHER;
843   ip4_address_t l_addr, e_addr, pool_addr;
844   u32 l_port = 0, e_port = 0, vrf_id = ~0;
845   u8 l_port_set = 0, e_port_set = 0;
846   u32 sw_if_index, flags = 0;
847   int is_add = 1;
848
849   if (!unformat_user (input, unformat_line_input, line_input))
850     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
851
852   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
853     {
854       if (unformat (line_input, "local %U %u", unformat_ip4_address, &l_addr,
855                     &l_port))
856         {
857           l_port_set = 1;
858         }
859       else
860         if (unformat (line_input, "local %U", unformat_ip4_address, &l_addr))
861         ;
862       else if (unformat (line_input, "external %U %u", unformat_ip4_address,
863                          &e_addr, &e_port))
864         {
865           e_port_set = 1;
866         }
867       else if (unformat (line_input, "external %U", unformat_ip4_address,
868                          &e_addr))
869         ;
870       else if (unformat (line_input, "external %U %u",
871                          unformat_vnet_sw_interface, vnm, &sw_if_index,
872                          &e_port))
873         {
874           flags |= NAT_SM_FLAG_SWITCH_ADDRESS;
875           e_port_set = 1;
876         }
877       else if (unformat (line_input, "external %U",
878                          unformat_vnet_sw_interface, vnm, &sw_if_index))
879         {
880           flags |= NAT_SM_FLAG_SWITCH_ADDRESS;
881         }
882       else if (unformat (line_input, "exact %U", unformat_ip4_address,
883                          &pool_addr))
884         {
885           flags |= NAT_SM_FLAG_EXACT_ADDRESS;
886         }
887       else if (unformat (line_input, "vrf %u", &vrf_id))
888         ;
889       else if (unformat (line_input, "%U", unformat_nat_protocol, &proto))
890         ;
891       else if (unformat (line_input, "self-twice-nat"))
892         {
893           flags |= NAT_SM_FLAG_SELF_TWICE_NAT;
894         }
895       else if (unformat (line_input, "twice-nat"))
896         {
897           flags |= NAT_SM_FLAG_TWICE_NAT;
898         }
899       else if (unformat (line_input, "out2in-only"))
900         {
901           flags |= NAT_SM_FLAG_OUT2IN_ONLY;
902         }
903       else if (unformat (line_input, "del"))
904         {
905           is_add = 0;
906         }
907       else
908         {
909           error = clib_error_return (0, "unknown input: '%U'",
910                                      format_unformat_error, line_input);
911           goto done;
912         }
913     }
914
915   if (l_port_set != e_port_set)
916     {
917       error = clib_error_return (0, "Either both ports are set or none.");
918       goto done;
919     }
920
921   if (!l_port_set)
922     {
923       flags |= NAT_SM_FLAG_ADDR_ONLY;
924     }
925   else
926     {
927       l_port = clib_host_to_net_u16 (l_port);
928       e_port = clib_host_to_net_u16 (e_port);
929     }
930
931   // TODO: specific pool_addr for both pool & twice nat pool ?
932
933   if (is_add)
934     {
935       rv =
936         nat44_ed_add_static_mapping (l_addr, e_addr, l_port, e_port, proto,
937                                      vrf_id, sw_if_index, flags, pool_addr, 0);
938     }
939   else
940     {
941       rv = nat44_ed_del_static_mapping (l_addr, e_addr, l_port, e_port, proto,
942                                         vrf_id, sw_if_index, flags);
943     }
944
945   // TODO: fix returns
946
947   switch (rv)
948     {
949     case VNET_API_ERROR_INVALID_VALUE:
950       error = clib_error_return (0, "External port already in use.");
951       goto done;
952     case VNET_API_ERROR_NO_SUCH_ENTRY:
953       if (is_add)
954         error = clib_error_return (0, "External address must be allocated.");
955       else
956         error = clib_error_return (0, "Mapping not exist.");
957       goto done;
958     case VNET_API_ERROR_NO_SUCH_FIB:
959       error = clib_error_return (0, "No such VRF id.");
960       goto done;
961     case VNET_API_ERROR_VALUE_EXIST:
962       error = clib_error_return (0, "Mapping already exist.");
963       goto done;
964     default:
965       break;
966     }
967
968 done:
969   unformat_free (line_input);
970
971   return error;
972 }
973
974 // TODO: either delete this bullshit or update it
975 static clib_error_t *
976 add_identity_mapping_command_fn (vlib_main_t * vm,
977                                  unformat_input_t * input,
978                                  vlib_cli_command_t * cmd)
979 {
980   unformat_input_t _line_input, *line_input = &_line_input;
981   vnet_main_t *vnm = vnet_get_main ();
982   clib_error_t *error = 0;
983
984   int rv, is_add = 1, port_set = 0;
985   u32 sw_if_index, port, flags, vrf_id = ~0;
986   nat_protocol_t proto;
987   ip4_address_t addr;
988
989   flags = NAT_SM_FLAG_IDENTITY_NAT;
990
991   /* Get a line of input. */
992   if (!unformat_user (input, unformat_line_input, line_input))
993     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
994
995   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
996     {
997       if (unformat (line_input, "%U", unformat_ip4_address, &addr))
998         ;
999       else if (unformat (line_input, "external %U",
1000                          unformat_vnet_sw_interface, vnm, &sw_if_index))
1001         {
1002           flags |= NAT_SM_FLAG_SWITCH_ADDRESS;
1003         }
1004       else if (unformat (line_input, "vrf %u", &vrf_id))
1005         ;
1006       else if (unformat (line_input, "%U %u", unformat_nat_protocol, &proto,
1007                          &port))
1008         {
1009           port_set = 1;
1010         }
1011       else if (unformat (line_input, "del"))
1012         {
1013           is_add = 0;
1014         }
1015       else
1016         {
1017           error = clib_error_return (0, "unknown input: '%U'",
1018                                      format_unformat_error, line_input);
1019           goto done;
1020         }
1021     }
1022
1023   if (!port_set)
1024     {
1025       flags |= NAT_SM_FLAG_ADDR_ONLY;
1026     }
1027   else
1028     {
1029       port = clib_host_to_net_u16 (port);
1030     }
1031
1032   if (is_add)
1033     {
1034
1035       rv = nat44_ed_add_static_mapping (addr, addr, port, port, proto, vrf_id,
1036                                         sw_if_index, flags, addr, 0);
1037     }
1038   else
1039     {
1040       rv = nat44_ed_del_static_mapping (addr, addr, port, port, proto, vrf_id,
1041                                         sw_if_index, flags);
1042     }
1043
1044   // TODO: fix returns
1045
1046   switch (rv)
1047     {
1048     case VNET_API_ERROR_INVALID_VALUE:
1049       error = clib_error_return (0, "External port already in use.");
1050       goto done;
1051     case VNET_API_ERROR_NO_SUCH_ENTRY:
1052       if (is_add)
1053         error = clib_error_return (0, "External address must be allocated.");
1054       else
1055         error = clib_error_return (0, "Mapping not exist.");
1056       goto done;
1057     case VNET_API_ERROR_NO_SUCH_FIB:
1058       error = clib_error_return (0, "No such VRF id.");
1059       goto done;
1060     case VNET_API_ERROR_VALUE_EXIST:
1061       error = clib_error_return (0, "Mapping already exist.");
1062       goto done;
1063     default:
1064       break;
1065     }
1066
1067 done:
1068   unformat_free (line_input);
1069
1070   return error;
1071 }
1072
1073 static clib_error_t *
1074 add_lb_static_mapping_command_fn (vlib_main_t * vm,
1075                                   unformat_input_t * input,
1076                                   vlib_cli_command_t * cmd)
1077 {
1078   unformat_input_t _line_input, *line_input = &_line_input;
1079   clib_error_t *error = 0;
1080   ip4_address_t l_addr, e_addr;
1081   u32 l_port = 0, e_port = 0, vrf_id = 0, probability = 0, affinity = 0;
1082   u8 proto_set = 0;
1083   nat_protocol_t proto;
1084   nat44_lb_addr_port_t *locals = 0, local;
1085   int rv, is_add = 1;
1086   u32 flags = 0;
1087
1088   /* Get a line of input. */
1089   if (!unformat_user (input, unformat_line_input, line_input))
1090     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
1091
1092   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1093     {
1094       if (unformat (line_input, "local %U:%u probability %u",
1095                     unformat_ip4_address, &l_addr, &l_port, &probability))
1096         {
1097           clib_memset (&local, 0, sizeof (local));
1098           local.addr = l_addr;
1099           local.port = (u16) l_port;
1100           local.probability = (u8) probability;
1101           vec_add1 (locals, local);
1102         }
1103       else if (unformat (line_input, "local %U:%u vrf %u probability %u",
1104                          unformat_ip4_address, &l_addr, &l_port, &vrf_id,
1105                          &probability))
1106         {
1107           clib_memset (&local, 0, sizeof (local));
1108           local.addr = l_addr;
1109           local.port = (u16) l_port;
1110           local.probability = (u8) probability;
1111           local.vrf_id = vrf_id;
1112           vec_add1 (locals, local);
1113         }
1114       else if (unformat (line_input, "external %U:%u", unformat_ip4_address,
1115                          &e_addr, &e_port))
1116         ;
1117       else if (unformat (line_input, "protocol %U", unformat_nat_protocol,
1118                          &proto))
1119         {
1120           proto_set = 1;
1121         }
1122       else if (unformat (line_input, "twice-nat"))
1123         {
1124           flags |= NAT_SM_FLAG_TWICE_NAT;
1125         }
1126       else if (unformat (line_input, "self-twice-nat"))
1127         {
1128           flags |= NAT_SM_FLAG_SELF_TWICE_NAT;
1129         }
1130       else if (unformat (line_input, "out2in-only"))
1131         {
1132           flags |= NAT_SM_FLAG_OUT2IN_ONLY;
1133         }
1134       else if (unformat (line_input, "del"))
1135         {
1136           is_add = 0;
1137         }
1138       else if (unformat (line_input, "affinity %u", &affinity))
1139         ;
1140       else
1141         {
1142           error = clib_error_return (0, "unknown input: '%U'",
1143                                      format_unformat_error, line_input);
1144           goto done;
1145         }
1146     }
1147
1148   if (vec_len (locals) < 2)
1149     {
1150       error = clib_error_return (0, "at least two local must be set");
1151       goto done;
1152     }
1153
1154   if (!proto_set)
1155     {
1156       error = clib_error_return (0, "missing protocol");
1157       goto done;
1158     }
1159
1160   if (is_add)
1161     {
1162       rv = nat44_ed_add_lb_static_mapping (e_addr, (u16) e_port, proto, locals,
1163                                            flags, 0, affinity);
1164     }
1165   else
1166     {
1167       rv = nat44_ed_del_lb_static_mapping (e_addr, (u16) e_port, proto, flags);
1168     }
1169
1170   switch (rv)
1171     {
1172     case VNET_API_ERROR_INVALID_VALUE:
1173       error = clib_error_return (0, "External port already in use.");
1174       goto done;
1175     case VNET_API_ERROR_NO_SUCH_ENTRY:
1176       if (is_add)
1177         error = clib_error_return (0, "External address must be allocated.");
1178       else
1179         error = clib_error_return (0, "Mapping not exist.");
1180       goto done;
1181     case VNET_API_ERROR_VALUE_EXIST:
1182       error = clib_error_return (0, "Mapping already exist.");
1183       goto done;
1184     default:
1185       break;
1186     }
1187
1188 done:
1189   unformat_free (line_input);
1190   vec_free (locals);
1191
1192   return error;
1193 }
1194
1195 static clib_error_t *
1196 add_lb_backend_command_fn (vlib_main_t * vm,
1197                            unformat_input_t * input, vlib_cli_command_t * cmd)
1198 {
1199   unformat_input_t _line_input, *line_input = &_line_input;
1200   clib_error_t *error = 0;
1201   ip4_address_t l_addr, e_addr;
1202   u32 l_port = 0, e_port = 0, vrf_id = 0, probability = 0;
1203   int is_add = 1;
1204   int rv;
1205   nat_protocol_t proto;
1206   u8 proto_set = 0;
1207
1208   /* Get a line of input. */
1209   if (!unformat_user (input, unformat_line_input, line_input))
1210     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
1211
1212   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1213     {
1214       if (unformat (line_input, "local %U:%u probability %u",
1215                     unformat_ip4_address, &l_addr, &l_port, &probability))
1216         ;
1217       else if (unformat (line_input, "local %U:%u vrf %u probability %u",
1218                          unformat_ip4_address, &l_addr, &l_port, &vrf_id,
1219                          &probability))
1220         ;
1221       else if (unformat (line_input, "external %U:%u", unformat_ip4_address,
1222                          &e_addr, &e_port))
1223         ;
1224       else if (unformat (line_input, "protocol %U", unformat_nat_protocol,
1225                          &proto))
1226         proto_set = 1;
1227       else if (unformat (line_input, "del"))
1228         is_add = 0;
1229       else
1230         {
1231           error = clib_error_return (0, "unknown input: '%U'",
1232                                      format_unformat_error, line_input);
1233           goto done;
1234         }
1235     }
1236
1237   if (!l_port || !e_port)
1238     {
1239       error = clib_error_return (0, "local or external must be set");
1240       goto done;
1241     }
1242
1243   if (!proto_set)
1244     {
1245       error = clib_error_return (0, "missing protocol");
1246       goto done;
1247     }
1248
1249   rv = nat44_ed_add_del_lb_static_mapping_local (
1250     e_addr, (u16) e_port, l_addr, l_port, proto, vrf_id, probability, is_add);
1251
1252   switch (rv)
1253     {
1254     case VNET_API_ERROR_INVALID_VALUE:
1255       error = clib_error_return (0, "External is not load-balancing static "
1256                                  "mapping.");
1257       goto done;
1258     case VNET_API_ERROR_NO_SUCH_ENTRY:
1259       error = clib_error_return (0, "Mapping or back-end not exist.");
1260       goto done;
1261     case VNET_API_ERROR_VALUE_EXIST:
1262       error = clib_error_return (0, "Back-end already exist.");
1263       goto done;
1264     case VNET_API_ERROR_UNSPECIFIED:
1265       error = clib_error_return (0, "At least two back-ends must remain");
1266       goto done;
1267     default:
1268       break;
1269     }
1270
1271 done:
1272   unformat_free (line_input);
1273
1274   return error;
1275 }
1276
1277 static clib_error_t *
1278 nat44_show_static_mappings_command_fn (vlib_main_t * vm,
1279                                        unformat_input_t * input,
1280                                        vlib_cli_command_t * cmd)
1281 {
1282   snat_main_t *sm = &snat_main;
1283   snat_static_mapping_t *m;
1284   snat_static_map_resolve_t *rp;
1285
1286   vlib_cli_output (vm, "NAT44 static mappings:");
1287   pool_foreach (m, sm->static_mappings)
1288    {
1289     vlib_cli_output (vm, " %U", format_snat_static_mapping, m);
1290   }
1291   vec_foreach (rp, sm->to_resolve)
1292     vlib_cli_output (vm, " %U", format_snat_static_map_to_resolve, rp);
1293
1294   return 0;
1295 }
1296
1297 static clib_error_t *
1298 snat_add_interface_address_command_fn (vlib_main_t * vm,
1299                                        unformat_input_t * input,
1300                                        vlib_cli_command_t * cmd)
1301 {
1302   unformat_input_t _line_input, *line_input = &_line_input;
1303   snat_main_t *sm = &snat_main;
1304   clib_error_t *error = 0;
1305   int rv, is_del = 0;
1306   u8 twice_nat = 0;
1307   u32 sw_if_index;
1308
1309   if (!unformat_user (input, unformat_line_input, line_input))
1310     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
1311
1312   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1313     {
1314       if (unformat (line_input, "%U", unformat_vnet_sw_interface,
1315                     sm->vnet_main, &sw_if_index))
1316         ;
1317       else if (unformat (line_input, "twice-nat"))
1318         {
1319           twice_nat = 1;
1320         }
1321       else if (unformat (line_input, "del"))
1322         {
1323           is_del = 1;
1324         }
1325       else
1326         {
1327           error = clib_error_return (0, "unknown input '%U'",
1328                                      format_unformat_error, line_input);
1329           goto done;
1330         }
1331     }
1332
1333   if (!is_del)
1334     {
1335       rv = nat44_ed_add_interface_address (sw_if_index, twice_nat);
1336       if (rv)
1337         {
1338           error = clib_error_return (0, "add address returned %d", rv);
1339         }
1340     }
1341   else
1342     {
1343       rv = nat44_ed_del_interface_address (sw_if_index, twice_nat);
1344       if (rv)
1345         {
1346           error = clib_error_return (0, "del address returned %d", rv);
1347         }
1348     }
1349
1350 done:
1351   unformat_free (line_input);
1352
1353   return error;
1354 }
1355
1356 static clib_error_t *
1357 nat44_show_interface_address_command_fn (vlib_main_t * vm,
1358                                          unformat_input_t * input,
1359                                          vlib_cli_command_t * cmd)
1360 {
1361   snat_main_t *sm = &snat_main;
1362   vnet_main_t *vnm = vnet_get_main ();
1363   u32 *sw_if_index;
1364
1365   vlib_cli_output (vm, "NAT44 pool address interfaces:");
1366   vec_foreach (sw_if_index, sm->auto_add_sw_if_indices)
1367     {
1368       vlib_cli_output (vm, " %U", format_vnet_sw_if_index_name, vnm,
1369                        *sw_if_index);
1370     }
1371   vlib_cli_output (vm, "NAT44 twice-nat pool address interfaces:");
1372   vec_foreach (sw_if_index, sm->auto_add_sw_if_indices_twice_nat)
1373     {
1374       vlib_cli_output (vm, " %U", format_vnet_sw_if_index_name, vnm,
1375                        *sw_if_index);
1376     }
1377
1378   return 0;
1379 }
1380
1381 static clib_error_t *
1382 nat44_show_sessions_command_fn (vlib_main_t * vm, unformat_input_t * input,
1383                                 vlib_cli_command_t * cmd)
1384 {
1385   unformat_input_t _line_input, *line_input = &_line_input;
1386   clib_error_t *error = 0;
1387   snat_main_per_thread_data_t *tsm;
1388   snat_main_t *sm = &snat_main;
1389
1390   int i = 0;
1391
1392   if (!unformat_user (input, unformat_line_input, line_input))
1393     goto print;
1394
1395   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1396     {
1397       error = clib_error_return (0, "unknown input '%U'",
1398                                  format_unformat_error, line_input);
1399       break;
1400     }
1401   unformat_free (line_input);
1402
1403 print:
1404     vlib_cli_output (vm, "NAT44 ED sessions:");
1405
1406   vec_foreach_index (i, sm->per_thread_data)
1407     {
1408       tsm = vec_elt_at_index (sm->per_thread_data, i);
1409
1410       vlib_cli_output (vm, "-------- thread %d %s: %d sessions --------\n",
1411                        i, vlib_worker_threads[i].name,
1412                        pool_elts (tsm->sessions));
1413
1414           snat_session_t *s;
1415           pool_foreach (s, tsm->sessions)
1416            {
1417             vlib_cli_output (vm, "  %U\n", format_snat_session, tsm, s);
1418           }
1419     }
1420   return error;
1421 }
1422
1423 static clib_error_t *
1424 nat44_set_session_limit_command_fn (vlib_main_t * vm,
1425                                     unformat_input_t * input,
1426                                     vlib_cli_command_t * cmd)
1427 {
1428   unformat_input_t _line_input, *line_input = &_line_input;
1429   clib_error_t *error = 0;
1430
1431   u32 session_limit = 0, vrf_id = 0;
1432
1433   if (!unformat_user (input, unformat_line_input, line_input))
1434     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
1435
1436   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1437     {
1438       if (unformat (line_input, "%u", &session_limit))
1439         ;
1440       else if (unformat (line_input, "vrf %u", &vrf_id))
1441         ;
1442       else
1443         {
1444           error = clib_error_return (0, "unknown input '%U'",
1445                                      format_unformat_error, line_input);
1446           goto done;
1447         }
1448     }
1449
1450   if (!session_limit)
1451     error = clib_error_return (0, "missing value of session limit");
1452   else if (nat44_update_session_limit (session_limit, vrf_id))
1453     error = clib_error_return (0, "nat44_set_session_limit failed");
1454
1455 done:
1456   unformat_free (line_input);
1457
1458   return error;
1459 }
1460
1461 static clib_error_t *
1462 nat44_del_session_command_fn (vlib_main_t * vm,
1463                               unformat_input_t * input,
1464                               vlib_cli_command_t * cmd)
1465 {
1466   snat_main_t *sm = &snat_main;
1467   unformat_input_t _line_input, *line_input = &_line_input;
1468   u32 port = 0, eh_port = 0, vrf_id = sm->outside_vrf_id;
1469   clib_error_t *error = 0;
1470   ip4_address_t addr, eh_addr;
1471   nat_protocol_t proto;
1472   int is_in = 0;
1473   int rv;
1474
1475   if (!unformat_user (input, unformat_line_input, line_input))
1476     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
1477
1478   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1479     {
1480       if (unformat
1481           (line_input, "%U:%u %U", unformat_ip4_address, &addr, &port,
1482            unformat_nat_protocol, &proto))
1483         ;
1484       else if (unformat (line_input, "in"))
1485         {
1486           is_in = 1;
1487           vrf_id = sm->inside_vrf_id;
1488         }
1489       else if (unformat (line_input, "out"))
1490         {
1491           is_in = 0;
1492           vrf_id = sm->outside_vrf_id;
1493         }
1494       else if (unformat (line_input, "vrf %u", &vrf_id))
1495         ;
1496       else if (unformat (line_input, "external-host %U:%u",
1497                          unformat_ip4_address, &eh_addr, &eh_port))
1498         ;
1499       else
1500         {
1501           error = clib_error_return (0, "unknown input '%U'",
1502                                      format_unformat_error, line_input);
1503           goto done;
1504         }
1505     }
1506
1507   rv = nat44_ed_del_session (sm, &addr, clib_host_to_net_u16 (port), &eh_addr,
1508                              clib_host_to_net_u16 (eh_port),
1509                              nat_proto_to_ip_proto (proto), vrf_id, is_in);
1510
1511   switch (rv)
1512     {
1513     case 0:
1514       break;
1515
1516     default:
1517       error = clib_error_return (0, "nat44_del_session returned %d", rv);
1518       goto done;
1519     }
1520
1521 done:
1522   unformat_free (line_input);
1523
1524   return error;
1525 }
1526
1527 static clib_error_t *
1528 snat_forwarding_set_command_fn (vlib_main_t * vm,
1529                                 unformat_input_t * input,
1530                                 vlib_cli_command_t * cmd)
1531 {
1532   snat_main_t *sm = &snat_main;
1533   unformat_input_t _line_input, *line_input = &_line_input;
1534   clib_error_t *error = 0;
1535
1536   u8 enable_set = 0, enable = 0;
1537
1538   if (!unformat_user (input, unformat_line_input, line_input))
1539     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
1540
1541   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1542     {
1543       if (!enable_set)
1544         {
1545           enable_set = 1;
1546           if (unformat (line_input, "disable"))
1547             ;
1548           else if (unformat (line_input, "enable"))
1549             enable = 1;
1550         }
1551       else
1552         {
1553           error = clib_error_return (0, "unknown input '%U'",
1554                                      format_unformat_error, line_input);
1555           goto done;
1556         }
1557     }
1558
1559   if (!enable_set)
1560     error = clib_error_return (0, "expected enable | disable");
1561   else
1562     sm->forwarding_enabled = enable;
1563
1564 done:
1565   unformat_free (line_input);
1566   return error;
1567 }
1568
1569 static clib_error_t *
1570 set_timeout_command_fn (vlib_main_t * vm,
1571                         unformat_input_t * input, vlib_cli_command_t * cmd)
1572 {
1573   snat_main_t *sm = &snat_main;
1574   unformat_input_t _line_input, *line_input = &_line_input;
1575   clib_error_t *error = 0;
1576
1577   if (!unformat_user (input, unformat_line_input, line_input))
1578     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
1579
1580   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1581     {
1582       if (unformat (line_input, "udp %u", &sm->timeouts.udp));
1583       else if (unformat (line_input, "tcp-established %u",
1584                          &sm->timeouts.tcp.established));
1585       else if (unformat (line_input, "tcp-transitory %u",
1586                          &sm->timeouts.tcp.transitory));
1587       else if (unformat (line_input, "icmp %u", &sm->timeouts.icmp));
1588       else if (unformat (line_input, "reset"))
1589         nat_reset_timeouts (&sm->timeouts);
1590       else
1591         {
1592           error = clib_error_return (0, "unknown input '%U'",
1593                                      format_unformat_error, line_input);
1594           goto done;
1595         }
1596     }
1597 done:
1598   unformat_free (line_input);
1599   return error;
1600 }
1601
1602 static clib_error_t *
1603 nat_show_timeouts_command_fn (vlib_main_t * vm,
1604                               unformat_input_t * input,
1605                               vlib_cli_command_t * cmd)
1606 {
1607   snat_main_t *sm = &snat_main;
1608
1609   vlib_cli_output (vm, "udp timeout: %dsec", sm->timeouts.udp);
1610   vlib_cli_output (vm, "tcp-established timeout: %dsec",
1611                    sm->timeouts.tcp.established);
1612   vlib_cli_output (vm, "tcp-transitory timeout: %dsec",
1613                    sm->timeouts.tcp.transitory);
1614   vlib_cli_output (vm, "icmp timeout: %dsec", sm->timeouts.icmp);
1615
1616   return 0;
1617 }
1618
1619 static clib_error_t *
1620 set_frame_queue_nelts_command_fn (vlib_main_t *vm, unformat_input_t *input,
1621                                   vlib_cli_command_t *cmd)
1622 {
1623   unformat_input_t _line_input, *line_input = &_line_input;
1624   clib_error_t *error = 0;
1625   u32 frame_queue_nelts = 0;
1626
1627   if (!unformat_user (input, unformat_line_input, line_input))
1628     return clib_error_return (0, NAT44_ED_EXPECTED_ARGUMENT);
1629
1630   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1631     {
1632       if (unformat (line_input, "%u", &frame_queue_nelts))
1633         ;
1634       else
1635         {
1636           error = clib_error_return (0, "unknown input '%U'",
1637                                      format_unformat_error, line_input);
1638           goto done;
1639         }
1640     }
1641   if (!frame_queue_nelts)
1642     {
1643       error = clib_error_return (0, "frame_queue_nelts cannot be zero");
1644       goto done;
1645     }
1646   if (nat44_ed_set_frame_queue_nelts (frame_queue_nelts) != 0)
1647     {
1648       error = clib_error_return (0, "snat_set_frame_queue_nelts failed");
1649       goto done;
1650     }
1651 done:
1652   unformat_free (line_input);
1653   return error;
1654 }
1655
1656 /*?
1657  * @cliexpar
1658  * @cliexstart{nat44}
1659  * Enable nat44 plugin
1660  * To enable nat44-ed, use:
1661  *  vpp# nat44 enable
1662  * To disable nat44-ed, use:
1663  *  vpp# nat44 disable
1664  * To enable nat44-ed static mapping with connection tracking, use:
1665  *  vpp# nat44-ed enable static-mapping connection-tracking
1666  * To set inside-vrf outside-vrf, use:
1667  *  vpp# nat44 enable inside-vrf <id> outside-vrf <id>
1668  * @cliexend
1669 ?*/
1670 VLIB_CLI_COMMAND (nat44_ed_enable_disable_command, static) = {
1671   .path = "nat44",
1672   .short_help = "nat44 <enable [sessions <max-number>] [static-mapping-only "
1673                 "connection-tracking] [inside-vrf <vrf-id>] "
1674                 "[outside-vrf <vrf-id>]>|disable",
1675   .function = nat44_ed_enable_disable_command_fn,
1676 };
1677
1678 /*?
1679  * @cliexpar
1680  * @cliexstart{set snat workers}
1681  * Set NAT workers if 2 or more workers available, use:
1682  *  vpp# set snat workers 0-2,5
1683  * @cliexend
1684 ?*/
1685 VLIB_CLI_COMMAND (set_workers_command, static) = {
1686   .path = "set nat workers",
1687   .function = set_workers_command_fn,
1688   .short_help = "set nat workers <workers-list>",
1689 };
1690
1691 /*?
1692  * @cliexpar
1693  * @cliexstart{show nat workers}
1694  * Show NAT workers.
1695  *  vpp# show nat workers:
1696  *  2 workers
1697  *    vpp_wk_0
1698  *    vpp_wk_1
1699  * @cliexend
1700 ?*/
1701 VLIB_CLI_COMMAND (nat_show_workers_command, static) = {
1702   .path = "show nat workers",
1703   .short_help = "show nat workers",
1704   .function = nat_show_workers_commnad_fn,
1705 };
1706
1707 /*?
1708  * @cliexpar
1709  * @cliexstart{set nat timeout}
1710  * Set values of timeouts for NAT sessions (in seconds), use:
1711  *  vpp# set nat timeout udp 120 tcp-established 7500 tcp-transitory 250 icmp 90
1712  * To reset default values use:
1713  *  vpp# set nat timeout reset
1714  * @cliexend
1715 ?*/
1716 VLIB_CLI_COMMAND (set_timeout_command, static) = {
1717   .path = "set nat timeout",
1718   .function = set_timeout_command_fn,
1719   .short_help =
1720     "set nat timeout [udp <sec> | tcp-established <sec> "
1721     "tcp-transitory <sec> | icmp <sec> | reset]",
1722 };
1723
1724 /*?
1725  * @cliexpar
1726  * @cliexstart{show nat timeouts}
1727  * Show values of timeouts for NAT sessions.
1728  * vpp# show nat timeouts
1729  * udp timeout: 300sec
1730  * tcp-established timeout: 7440sec
1731  * tcp-transitory timeout: 240sec
1732  * icmp timeout: 60sec
1733  * @cliexend
1734 ?*/
1735 VLIB_CLI_COMMAND (nat_show_timeouts_command, static) = {
1736   .path = "show nat timeouts",
1737   .short_help = "show nat timeouts",
1738   .function = nat_show_timeouts_command_fn,
1739 };
1740
1741 /*?
1742  * @cliexpar
1743  * @cliexstart{set nat frame-queue-nelts}
1744  * Set number of worker handoff frame queue elements.
1745  * @cliexend
1746 ?*/
1747 VLIB_CLI_COMMAND (set_frame_queue_nelts_command, static) = {
1748   .path = "set nat frame-queue-nelts",
1749   .function = set_frame_queue_nelts_command_fn,
1750   .short_help = "set nat frame-queue-nelts <number>",
1751 };
1752
1753 /*?
1754  * @cliexpar
1755  * @cliexstart{nat set logging level}
1756  * To set NAT logging level use:
1757  * Set nat logging level
1758  * @cliexend
1759 ?*/
1760 VLIB_CLI_COMMAND (snat_set_log_level_command, static) = {
1761   .path = "nat set logging level",
1762   .function = snat_set_log_level_command_fn,
1763   .short_help = "nat set logging level <level>",
1764 };
1765
1766 /*?
1767  * @cliexpar
1768  * @cliexstart{snat ipfix logging}
1769  * To enable NAT IPFIX logging use:
1770  *  vpp# nat ipfix logging
1771  * To set IPFIX exporter use:
1772  *  vpp# set ipfix exporter collector 10.10.10.3 src 10.10.10.1
1773  * @cliexend
1774 ?*/
1775 VLIB_CLI_COMMAND (snat_ipfix_logging_enable_disable_command, static) = {
1776   .path = "nat ipfix logging",
1777   .function = snat_ipfix_logging_enable_disable_command_fn,
1778   .short_help = "nat ipfix logging disable|<enable [domain <domain-id>] "
1779                 "[src-port <port>]>",
1780 };
1781
1782 /*?
1783  * @cliexpar
1784  * @cliexstart{nat mss-clamping}
1785  * Set TCP MSS rewriting configuration
1786  * To enable TCP MSS rewriting use:
1787  *  vpp# nat mss-clamping 1452
1788  * To disbale TCP MSS rewriting use:
1789  *  vpp# nat mss-clamping disable
1790  * @cliexend
1791 ?*/
1792 VLIB_CLI_COMMAND (nat_set_mss_clamping_command, static) = {
1793     .path = "nat mss-clamping",
1794     .short_help = "nat mss-clamping <mss-value>|disable",
1795     .function = nat_set_mss_clamping_command_fn,
1796 };
1797
1798 /*?
1799  * @cliexpar
1800  * @cliexstart{show nat mss-clamping}
1801  * Show TCP MSS rewriting configuration
1802  * @cliexend
1803 ?*/
1804 VLIB_CLI_COMMAND (nat_show_mss_clamping_command, static) = {
1805     .path = "show nat mss-clamping",
1806     .short_help = "show nat mss-clamping",
1807     .function = nat_show_mss_clamping_command_fn,
1808 };
1809
1810 /*?
1811  * @cliexpar
1812  * @cliexstart{show nat44 hash tables}
1813  * Show NAT44 hash tables
1814  * @cliexend
1815 ?*/
1816 VLIB_CLI_COMMAND (nat44_show_hash, static) = {
1817   .path = "show nat44 hash tables",
1818   .short_help = "show nat44 hash tables [detail|verbose]",
1819   .function = nat44_show_hash_command_fn,
1820 };
1821
1822 /*?
1823  * @cliexpar
1824  * @cliexstart{nat44 add address}
1825  * Add/delete NAT44 pool address.
1826  * To add NAT44 pool address use:
1827  *  vpp# nat44 add address 172.16.1.3
1828  *  vpp# nat44 add address 172.16.2.2 - 172.16.2.24
1829  * To add NAT44 pool address for specific tenant (identified by VRF id) use:
1830  *  vpp# nat44 add address 172.16.1.3 tenant-vrf 10
1831  * @cliexend
1832 ?*/
1833 VLIB_CLI_COMMAND (add_address_command, static) = {
1834   .path = "nat44 add address",
1835   .short_help = "nat44 add address <ip4-range-start> [- <ip4-range-end>] "
1836                 "[tenant-vrf <vrf-id>] [twice-nat] [del]",
1837   .function = add_address_command_fn,
1838 };
1839
1840 /*?
1841  * @cliexpar
1842  * @cliexstart{show nat44 summary}
1843  * Show NAT44 summary
1844  * vpp# show nat44 summary
1845  * @cliexend
1846 ?*/
1847 VLIB_CLI_COMMAND (nat44_show_summary_command, static) = {
1848   .path = "show nat44 summary",
1849   .short_help = "show nat44 summary",
1850   .function = nat44_show_summary_command_fn,
1851 };
1852
1853 /*?
1854  * @cliexpar
1855  * @cliexstart{show nat44 addresses}
1856  * Show NAT44 pool addresses.
1857  * vpp# show nat44 addresses
1858  * NAT44 pool addresses:
1859  * 172.16.2.2
1860  *   tenant VRF independent
1861  *   10 busy udp ports
1862  *   0 busy tcp ports
1863  *   0 busy icmp ports
1864  * 172.16.1.3
1865  *   tenant VRF: 10
1866  *   0 busy udp ports
1867  *   2 busy tcp ports
1868  *   0 busy icmp ports
1869  * NAT44 twice-nat pool addresses:
1870  * 10.20.30.72
1871  *   tenant VRF independent
1872  *   0 busy udp ports
1873  *   0 busy tcp ports
1874  *   0 busy icmp ports
1875  * @cliexend
1876 ?*/
1877 VLIB_CLI_COMMAND (nat44_show_addresses_command, static) = {
1878   .path = "show nat44 addresses",
1879   .short_help = "show nat44 addresses",
1880   .function = nat44_show_addresses_command_fn,
1881 };
1882
1883 /*?
1884  * @cliexpar
1885  * @cliexstart{set interface nat44}
1886  * Enable/disable NAT44 feature on the interface.
1887  * To enable NAT44 feature with local network interface use:
1888  *  vpp# set interface nat44 in GigabitEthernet0/8/0
1889  * To enable NAT44 feature with external network interface use:
1890  *  vpp# set interface nat44 out GigabitEthernet0/a/0
1891  * @cliexend
1892 ?*/
1893 VLIB_CLI_COMMAND (set_interface_snat_command, static) = {
1894   .path = "set interface nat44",
1895   .function = snat_feature_command_fn,
1896   .short_help = "set interface nat44 in <intfc> out <intfc> [output-feature] "
1897                 "[del]",
1898 };
1899
1900 /*?
1901  * @cliexpar
1902  * @cliexstart{show nat44 interfaces}
1903  * Show interfaces with NAT44 feature.
1904  * vpp# show nat44 interfaces
1905  * NAT44 interfaces:
1906  *  GigabitEthernet0/8/0 in
1907  *  GigabitEthernet0/a/0 out
1908  * @cliexend
1909 ?*/
1910 VLIB_CLI_COMMAND (nat44_show_interfaces_command, static) = {
1911   .path = "show nat44 interfaces",
1912   .short_help = "show nat44 interfaces",
1913   .function = nat44_show_interfaces_command_fn,
1914 };
1915
1916 /*?
1917  * @cliexpar
1918  * @cliexstart{nat44 add static mapping}
1919  * Static mapping allows hosts on the external network to initiate connection
1920  * to to the local network host.
1921  * To create static mapping between local host address 10.0.0.3 port 6303 and
1922  * external address 4.4.4.4 port 3606 for TCP protocol use:
1923  *  vpp# nat44 add static mapping tcp local 10.0.0.3 6303 external 4.4.4.4 3606
1924  * If not runnig "static mapping only" NAT plugin mode use before:
1925  *  vpp# nat44 add address 4.4.4.4
1926  * To create address only static mapping between local and external address use:
1927  *  vpp# nat44 add static mapping local 10.0.0.3 external 4.4.4.4
1928  * To create ICMP static mapping between local and external with ICMP echo
1929  * identifier 10 use:
1930  *  vpp# nat44 add static mapping icmp local 10.0.0.3 10 external 4.4.4.4 10
1931  * To force use of specific pool address, vrf independent
1932  *  vpp# nat44 add static mapping local 10.0.0.2 1234 external 10.0.2.2 1234 twice-nat exact 10.0.1.2
1933  * @cliexend
1934 ?*/
1935 VLIB_CLI_COMMAND (add_static_mapping_command, static) = {
1936   .path = "nat44 add static mapping",
1937   .function = add_static_mapping_command_fn,
1938   .short_help =
1939     "nat44 add static mapping tcp|udp|icmp local <addr> [<port|icmp-echo-id>] "
1940     "external <addr> [<port|icmp-echo-id>] [vrf <table-id>] [twice-nat|self-twice-nat] "
1941     "[out2in-only] [exact <pool-addr>] [del]",
1942 };
1943
1944 /*?
1945  * @cliexpar
1946  * @cliexstart{nat44 add identity mapping}
1947  * Identity mapping translate an IP address to itself.
1948  * To create identity mapping for address 10.0.0.3 port 6303 for TCP protocol
1949  * use:
1950  *  vpp# nat44 add identity mapping 10.0.0.3 tcp 6303
1951  * To create identity mapping for address 10.0.0.3 use:
1952  *  vpp# nat44 add identity mapping 10.0.0.3
1953  * To create identity mapping for DHCP addressed interface use:
1954  *  vpp# nat44 add identity mapping external GigabitEthernet0/a/0 tcp 3606
1955  * @cliexend
1956 ?*/
1957 VLIB_CLI_COMMAND (add_identity_mapping_command, static) = {
1958   .path = "nat44 add identity mapping",
1959   .function = add_identity_mapping_command_fn,
1960   .short_help = "nat44 add identity mapping <ip4-addr>|external <interface> "
1961     "[<protocol> <port>] [vrf <table-id>] [del]",
1962 };
1963
1964 /*?
1965  * @cliexpar
1966  * @cliexstart{nat44 add load-balancing static mapping}
1967  * Service load balancing using NAT44
1968  * To add static mapping with load balancing for service with external IP
1969  * address 1.2.3.4 and TCP port 80 and mapped to 2 local servers
1970  * 10.100.10.10:8080 and 10.100.10.20:8080 with probability 80% resp. 20% use:
1971  *  vpp# nat44 add load-balancing static mapping protocol tcp external 1.2.3.4:80 local 10.100.10.10:8080 probability 80 local 10.100.10.20:8080 probability 20
1972  * @cliexend
1973 ?*/
1974 VLIB_CLI_COMMAND (add_lb_static_mapping_command, static) = {
1975   .path = "nat44 add load-balancing static mapping",
1976   .function = add_lb_static_mapping_command_fn,
1977   .short_help =
1978     "nat44 add load-balancing static mapping protocol tcp|udp "
1979     "external <addr>:<port> local <addr>:<port> [vrf <table-id>] "
1980     "probability <n> [twice-nat|self-twice-nat] [out2in-only] "
1981     "[affinity <timeout-seconds>] [del]",
1982 };
1983
1984 /*?
1985  * @cliexpar
1986  * @cliexstart{nat44 add load-balancing static mapping}
1987  * Modify service load balancing using NAT44
1988  * To add new back-end server 10.100.10.30:8080 for service load balancing
1989  * static mapping with external IP address 1.2.3.4 and TCP port 80 use:
1990  *  vpp# nat44 add load-balancing back-end protocol tcp external 1.2.3.4:80 local 10.100.10.30:8080 probability 25
1991  * @cliexend
1992 ?*/
1993 VLIB_CLI_COMMAND (add_lb_backend_command, static) = {
1994   .path = "nat44 add load-balancing back-end",
1995   .function = add_lb_backend_command_fn,
1996   .short_help =
1997     "nat44 add load-balancing back-end protocol tcp|udp "
1998     "external <addr>:<port> local <addr>:<port> [vrf <table-id>] "
1999     "probability <n> [del]",
2000 };
2001
2002 /*?
2003  * @cliexpar
2004  * @cliexstart{show nat44 static mappings}
2005  * Show NAT44 static mappings.
2006  * vpp# show nat44 static mappings
2007  * NAT44 static mappings:
2008  *  local 10.0.0.3 external 4.4.4.4 vrf 0
2009  *  tcp local 192.168.0.4:6303 external 4.4.4.3:3606 vrf 0
2010  *  tcp vrf 0 external 1.2.3.4:80  out2in-only
2011  *   local 10.100.10.10:8080 probability 80
2012  *   local 10.100.10.20:8080 probability 20
2013  *  tcp local 10.100.3.8:8080 external 169.10.10.1:80 vrf 0 twice-nat
2014  *  tcp local 10.0.0.10:3603 external GigabitEthernet0/a/0:6306 vrf 10
2015  * @cliexend
2016 ?*/
2017 VLIB_CLI_COMMAND (nat44_show_static_mappings_command, static) = {
2018   .path = "show nat44 static mappings",
2019   .short_help = "show nat44 static mappings",
2020   .function = nat44_show_static_mappings_command_fn,
2021 };
2022
2023 /*?
2024  * @cliexpar
2025  * @cliexstart{nat44 add interface address}
2026  * Use NAT44 pool address from specific interfce
2027  * To add NAT44 pool address from specific interface use:
2028  *  vpp# nat44 add interface address GigabitEthernet0/8/0
2029  * @cliexend
2030 ?*/
2031 VLIB_CLI_COMMAND (snat_add_interface_address_command, static) = {
2032     .path = "nat44 add interface address",
2033     .short_help = "nat44 add interface address <interface> [twice-nat] [del]",
2034     .function = snat_add_interface_address_command_fn,
2035 };
2036
2037 /*?
2038  * @cliexpar
2039  * @cliexstart{show nat44 interface address}
2040  * Show NAT44 pool address interfaces
2041  * vpp# show nat44 interface address
2042  * NAT44 pool address interfaces:
2043  *  GigabitEthernet0/a/0
2044  * NAT44 twice-nat pool address interfaces:
2045  *  GigabitEthernet0/8/0
2046  * @cliexend
2047 ?*/
2048 VLIB_CLI_COMMAND (nat44_show_interface_address_command, static) = {
2049   .path = "show nat44 interface address",
2050   .short_help = "show nat44 interface address",
2051   .function = nat44_show_interface_address_command_fn,
2052 };
2053
2054 /*?
2055  * @cliexpar
2056  * @cliexstart{show nat44 sessions}
2057  * Show NAT44 sessions.
2058  * @cliexend
2059 ?*/
2060 VLIB_CLI_COMMAND (nat44_show_sessions_command, static) = {
2061   .path = "show nat44 sessions",
2062   .short_help = "show nat44 sessions",
2063   .function = nat44_show_sessions_command_fn,
2064 };
2065
2066 /*?
2067  * @cliexpar
2068  * @cliexstart{set nat44 session limit}
2069  * Set NAT44 session limit.
2070  * @cliexend
2071 ?*/
2072 VLIB_CLI_COMMAND (nat44_set_session_limit_command, static) = {
2073   .path = "set nat44 session limit",
2074   .short_help = "set nat44 session limit <limit> [vrf <table-id>]",
2075   .function = nat44_set_session_limit_command_fn,
2076 };
2077
2078 /*?
2079  * @cliexpar
2080  * @cliexstart{nat44 del session}
2081  * To administratively delete NAT44 session by inside address and port use:
2082  *  vpp# nat44 del session in 10.0.0.3:6303 tcp
2083  * To administratively delete NAT44 session by outside address and port use:
2084  *  vpp# nat44 del session out 1.0.0.3:6033 udp
2085  * @cliexend
2086 ?*/
2087 VLIB_CLI_COMMAND (nat44_del_session_command, static) = {
2088     .path = "nat44 del session",
2089     .short_help = "nat44 del session in|out <addr>:<port> tcp|udp|icmp [vrf <id>] [external-host <addr>:<port>]",
2090     .function = nat44_del_session_command_fn,
2091 };
2092
2093 /*?
2094  * @cliexpar
2095  * @cliexstart{nat44 forwarding}
2096  * Enable or disable forwarding
2097  * Forward packets which don't match existing translation
2098  * or static mapping instead of dropping them.
2099  * To enable forwarding, use:
2100  *  vpp# nat44 forwarding enable
2101  * To disable forwarding, use:
2102  *  vpp# nat44 forwarding disable
2103  * @cliexend
2104 ?*/
2105 VLIB_CLI_COMMAND (snat_forwarding_set_command, static) = {
2106   .path = "nat44 forwarding",
2107   .short_help = "nat44 forwarding enable|disable",
2108   .function = snat_forwarding_set_command_fn,
2109 };
2110
2111 /*
2112  * fd.io coding-style-patch-verification: ON
2113  *
2114  * Local Variables:
2115  * eval: (c-set-style "gnu")
2116  * End:
2117  */