session: fix session filter range
[vpp.git] / src / vnet / session / session_cli.c
1 /*
2  * Copyright (c) 2017-2019 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 #include <vnet/session/application.h>
16 #include <vnet/session/session.h>
17
18 u8 *
19 format_session_fifos (u8 * s, va_list * args)
20 {
21   session_t *ss = va_arg (*args, session_t *);
22   int verbose = va_arg (*args, int);
23   session_event_t _e, *e = &_e;
24   u8 found;
25
26   if (!ss->rx_fifo || !ss->tx_fifo)
27     return s;
28
29   s = format (s, " Rx fifo: %U", format_svm_fifo, ss->rx_fifo, verbose);
30   if (verbose > 2 && ss->rx_fifo->has_event)
31     {
32       found = session_node_lookup_fifo_event (ss->rx_fifo, e);
33       s = format (s, " session node event: %s\n",
34                   found ? "found" : "not found");
35     }
36   s = format (s, " Tx fifo: %U", format_svm_fifo, ss->tx_fifo, verbose);
37   if (verbose > 2 && ss->tx_fifo->has_event)
38     {
39       found = session_node_lookup_fifo_event (ss->tx_fifo, e);
40       s = format (s, " session node event: %s\n",
41                   found ? "found" : "not found");
42     }
43   return s;
44 }
45
46 /**
47  * Format stream session as per the following format
48  *
49  * verbose:
50  *   "Connection", "Rx fifo", "Tx fifo", "Session Index"
51  * non-verbose:
52  *   "Connection"
53  */
54 u8 *
55 format_session (u8 * s, va_list * args)
56 {
57   session_t *ss = va_arg (*args, session_t *);
58   int verbose = va_arg (*args, int);
59   u32 tp = session_get_transport_proto (ss);
60   u8 *str = 0;
61
62   if (ss->session_state >= SESSION_STATE_TRANSPORT_DELETED)
63     {
64       s = format (s, "[%u:%u] CLOSED", ss->thread_index, ss->session_index);
65       return s;
66     }
67
68   if (verbose == 1)
69     {
70       u8 post_accept = ss->session_state >= SESSION_STATE_ACCEPTING;
71       u8 hasf = post_accept
72         || session_transport_service_type (ss) == TRANSPORT_SERVICE_CL;
73       u32 rxf, txf;
74
75       rxf = hasf ? svm_fifo_max_dequeue (ss->rx_fifo) : 0;
76       txf = hasf ? svm_fifo_max_dequeue (ss->tx_fifo) : 0;
77       str = format (0, "%-10u%-10u", rxf, txf);
78     }
79
80   if (ss->session_state >= SESSION_STATE_ACCEPTING
81       || ss->session_state == SESSION_STATE_CREATED)
82     {
83       s = format (s, "%U", format_transport_connection, tp,
84                   ss->connection_index, ss->thread_index, verbose);
85       if (verbose == 1)
86         s = format (s, "%v", str);
87       if (verbose > 1)
88         s = format (s, "%U", format_session_fifos, ss, verbose);
89     }
90   else if (ss->session_state == SESSION_STATE_LISTENING)
91     {
92       s = format (s, "%U%v", format_transport_listen_connection,
93                   tp, ss->connection_index, ss->thread_index, verbose, str);
94       if (verbose > 1)
95         s = format (s, "\n%U", format_session_fifos, ss, verbose);
96     }
97   else if (ss->session_state == SESSION_STATE_CONNECTING)
98     {
99       s = format (s, "%-40U%v", format_transport_half_open_connection,
100                   tp, ss->connection_index, ss->thread_index, str);
101     }
102   else
103     {
104       clib_warning ("Session in state: %d!", ss->session_state);
105     }
106   vec_free (str);
107
108   return s;
109 }
110
111 uword
112 unformat_stream_session_id (unformat_input_t * input, va_list * args)
113 {
114   u8 *proto = va_arg (*args, u8 *);
115   u32 *fib_index = va_arg (*args, u32 *);
116   ip46_address_t *lcl = va_arg (*args, ip46_address_t *);
117   ip46_address_t *rmt = va_arg (*args, ip46_address_t *);
118   u16 *lcl_port = va_arg (*args, u16 *);
119   u16 *rmt_port = va_arg (*args, u16 *);
120   u8 *is_ip4 = va_arg (*args, u8 *);
121   u8 tuple_is_set = 0;
122   u32 vrf = ~0;
123
124   clib_memset (lcl, 0, sizeof (*lcl));
125   clib_memset (rmt, 0, sizeof (*rmt));
126
127   if (unformat (input, "tcp"))
128     {
129       *proto = TRANSPORT_PROTO_TCP;
130     }
131   else if (unformat (input, "udp"))
132     {
133       *proto = TRANSPORT_PROTO_UDP;
134     }
135   else
136     return 0;
137
138   if (unformat (input, "vrf %u", &vrf))
139     ;
140
141   if (unformat (input, "%U:%d->%U:%d", unformat_ip4_address, &lcl->ip4,
142                 lcl_port, unformat_ip4_address, &rmt->ip4, rmt_port))
143     {
144       *is_ip4 = 1;
145       tuple_is_set = 1;
146     }
147   else if (unformat (input, "%U:%d->%U:%d", unformat_ip6_address, &lcl->ip6,
148                      lcl_port, unformat_ip6_address, &rmt->ip6, rmt_port))
149     {
150       *is_ip4 = 0;
151       tuple_is_set = 1;
152     }
153
154   if (vrf != ~0)
155     {
156       fib_protocol_t fib_proto;
157       fib_proto = *is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
158       *fib_index = fib_table_find (fib_proto, vrf);
159     }
160
161   return tuple_is_set;
162 }
163
164 uword
165 unformat_session_state (unformat_input_t * input, va_list * args)
166 {
167   session_state_t *state = va_arg (*args, session_state_t *);
168   u8 *state_vec = 0;
169   int rv = 0;
170
171 #define _(sym, str)                                     \
172   if (unformat (input, str))                            \
173     {                                                   \
174       *state = SESSION_STATE_ ## sym;                   \
175       rv = 1;                                           \
176       goto done;                                        \
177     }
178   foreach_session_state
179 #undef _
180 done:
181   vec_free (state_vec);
182   return rv;
183 }
184
185 uword
186 unformat_session (unformat_input_t * input, va_list * args)
187 {
188   session_t **result = va_arg (*args, session_t **);
189   u32 lcl_port = 0, rmt_port = 0, fib_index = 0;
190   ip46_address_t lcl, rmt;
191   session_t *s;
192   u8 proto = ~0;
193   u8 is_ip4 = 0;
194
195   if (!unformat (input, "%U", unformat_stream_session_id, &proto, &fib_index,
196                  &lcl, &rmt, &lcl_port, &rmt_port, &is_ip4))
197     return 0;
198
199   if (is_ip4)
200     s = session_lookup_safe4 (fib_index, &lcl.ip4, &rmt.ip4,
201                               clib_host_to_net_u16 (lcl_port),
202                               clib_host_to_net_u16 (rmt_port), proto);
203   else
204     s = session_lookup_safe6 (fib_index, &lcl.ip6, &rmt.ip6,
205                               clib_host_to_net_u16 (lcl_port),
206                               clib_host_to_net_u16 (rmt_port), proto);
207   if (s)
208     {
209       *result = s;
210       session_pool_remove_peeker (s->thread_index);
211       return 1;
212     }
213   return 0;
214 }
215
216 uword
217 unformat_transport_connection (unformat_input_t * input, va_list * args)
218 {
219   transport_connection_t **result = va_arg (*args, transport_connection_t **);
220   u32 suggested_proto = va_arg (*args, u32);
221   transport_connection_t *tc;
222   u8 proto = ~0;
223   ip46_address_t lcl, rmt;
224   u32 lcl_port = 0, rmt_port = 0, fib_index = 0;
225   u8 is_ip4 = 0;
226
227   if (!unformat (input, "%U", unformat_stream_session_id, &fib_index, &proto,
228                  &lcl, &rmt, &lcl_port, &rmt_port, &is_ip4))
229     return 0;
230
231   proto = (proto == (u8) ~ 0) ? suggested_proto : proto;
232   if (proto == (u8) ~ 0)
233     return 0;
234   if (is_ip4)
235     tc = session_lookup_connection4 (fib_index, &lcl.ip4, &rmt.ip4,
236                                      clib_host_to_net_u16 (lcl_port),
237                                      clib_host_to_net_u16 (rmt_port), proto);
238   else
239     tc = session_lookup_connection6 (fib_index, &lcl.ip6, &rmt.ip6,
240                                      clib_host_to_net_u16 (lcl_port),
241                                      clib_host_to_net_u16 (rmt_port), proto);
242
243   if (tc)
244     {
245       *result = tc;
246       return 1;
247     }
248   return 0;
249 }
250
251 static void
252 session_cli_show_all_sessions (vlib_main_t * vm, int verbose)
253 {
254   session_main_t *smm = &session_main;
255   u32 n_closed = 0, thread_index;
256   session_t *pool, *s;
257
258   for (thread_index = 0; thread_index < vec_len (smm->wrk); thread_index++)
259     {
260       pool = smm->wrk[thread_index].sessions;
261
262       if (!pool_elts (pool))
263         {
264           vlib_cli_output (vm, "Thread %d: no sessions", thread_index);
265           continue;
266         }
267
268       if (!verbose)
269         {
270           vlib_cli_output (vm, "Thread %d: %d sessions", thread_index,
271                            pool_elts (pool));
272           continue;
273         }
274
275       if (pool_elts (pool) > 50)
276         {
277           vlib_cli_output (vm, "Thread %u: %d sessions. Verbose output "
278                            "suppressed. For more details use filters.",
279                            thread_index, pool_elts (pool));
280           continue;
281         }
282
283       if (verbose == 1)
284         vlib_cli_output (vm, "%s%-50s%-15s%-10s%-10s",
285                          thread_index ? "\n" : "",
286                          "Connection", "State", "Rx-f", "Tx-f");
287
288       /* *INDENT-OFF* */
289       pool_foreach(s, pool, ({
290         if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED)
291           {
292             n_closed += 1;
293             continue;
294           }
295         vlib_cli_output (vm, "%U", format_session, s, verbose);
296       }));
297       /* *INDENT-ON* */
298
299       if (!n_closed)
300         vlib_cli_output (vm, "Thread %d: active sessions %u", thread_index,
301                          pool_elts (pool) - n_closed);
302       else
303         vlib_cli_output (vm, "Thread %d: active sessions %u closed %u",
304                          thread_index, pool_elts (pool) - n_closed, n_closed);
305     }
306 }
307
308 static int
309 session_cli_filter_check (session_t * s, session_state_t * states,
310                           transport_proto_t tp)
311 {
312   if (states)
313     {
314       session_state_t *state;
315       vec_foreach (state, states) if (s->session_state == *state)
316         goto check_transport;
317       return 0;
318     }
319
320 check_transport:
321
322   if (tp != TRANSPORT_N_PROTO && session_get_transport_proto (s) != tp)
323     return 0;
324
325   return 1;
326 }
327
328 static void
329 session_cli_show_session_filter (vlib_main_t * vm, u32 thread_index,
330                                  u32 start, u32 end, session_state_t * states,
331                                  transport_proto_t tp, int verbose)
332 {
333   u8 output_suppressed = 0;
334   session_worker_t *wrk;
335   session_t *pool, *s;
336   u32 count = 0, max_index;
337   int i;
338
339   wrk = session_main_get_worker_if_valid (thread_index);
340   if (!wrk)
341     {
342       vlib_cli_output (vm, "invalid thread index %u", thread_index);
343       return;
344     }
345
346   pool = wrk->sessions;
347
348   if (tp == TRANSPORT_N_PROTO && states == 0 && !verbose
349       && (start == 0 && end == ~0))
350     {
351       vlib_cli_output (vm, "Thread %d: %u sessions", thread_index,
352                        pool_elts (pool));
353       return;
354     }
355
356   max_index = pool_len (pool) ? pool_len (pool) - 1 : 0;
357   for (i = start; i <= clib_min (end, max_index); i++)
358     {
359       if (pool_is_free_index (pool, i))
360         continue;
361
362       s = pool_elt_at_index (pool, i);
363
364       if (session_cli_filter_check (s, states, tp))
365         {
366           count += 1;
367           if (verbose)
368             {
369               if (count > 50 || (verbose > 1 && count > 10))
370                 {
371                   output_suppressed = 1;
372                   continue;
373                 }
374               if (s->session_state < SESSION_STATE_TRANSPORT_DELETED)
375                 vlib_cli_output (vm, "%U", format_session, s, verbose);
376             }
377         }
378     }
379
380   if (!output_suppressed)
381     vlib_cli_output (vm, "Thread %d: %u sessions matched filter",
382                      thread_index, count);
383   else
384     vlib_cli_output (vm, "Thread %d: %u sessions matched filter. Not all"
385                      " shown. Use finer grained filter.", thread_index,
386                      count);
387 }
388
389 static void
390 session_cli_print_transport_protos (vlib_main_t * vm)
391 {
392 #define _(sym, str, sstr) vlib_cli_output (vm, str);
393   foreach_transport_proto
394 #undef _
395 }
396
397 static void
398 session_cli_print_session_states (vlib_main_t * vm)
399 {
400 #define _(sym, str) vlib_cli_output (vm, str);
401   foreach_session_state
402 #undef _
403 }
404
405 static clib_error_t *
406 show_session_command_fn (vlib_main_t * vm, unformat_input_t * input,
407                          vlib_cli_command_t * cmd)
408 {
409   u8 one_session = 0, do_listeners = 0, sst, do_elog = 0, do_filter = 0;
410   u32 track_index, thread_index = 0, start = 0, end = ~0, session_index;
411   unformat_input_t _line_input, *line_input = &_line_input;
412   transport_proto_t transport_proto = TRANSPORT_N_PROTO;
413   session_state_t state = SESSION_N_STATES, *states = 0;
414   session_main_t *smm = &session_main;
415   clib_error_t *error = 0;
416   app_worker_t *app_wrk;
417   u32 transport_index;
418   const u8 *app_name;
419   int verbose = 0;
420   session_t *s;
421
422   session_cli_return_if_not_enabled ();
423
424   if (!unformat_user (input, unformat_line_input, line_input))
425     {
426       session_cli_show_all_sessions (vm, 0);
427       return 0;
428     }
429
430   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
431     {
432       if (unformat (line_input, "verbose %d", &verbose))
433         ;
434       else if (unformat (line_input, "verbose"))
435         verbose = 1;
436       else if (unformat (line_input, "listeners %U", unformat_transport_proto,
437                          &transport_proto))
438         do_listeners = 1;
439       else if (unformat (line_input, "%U", unformat_session, &s))
440         {
441           one_session = 1;
442         }
443       else if (unformat (line_input, "thread %u index %u", &thread_index,
444                          &session_index))
445         {
446           s = session_get_if_valid (session_index, thread_index);
447           if (!s)
448             {
449               vlib_cli_output (vm, "session is not allocated");
450               goto done;
451             }
452           one_session = 1;
453         }
454       else if (unformat (line_input, "thread %u", &thread_index))
455         {
456           do_filter = 1;
457         }
458       else
459         if (unformat (line_input, "state %U", unformat_session_state, &state))
460         {
461           vec_add1 (states, state);
462           do_filter = 1;
463         }
464       else if (unformat (line_input, "proto %U index %u",
465                          unformat_transport_proto, &transport_proto,
466                          &transport_index))
467         {
468           transport_connection_t *tc;
469           tc = transport_get_connection (transport_proto, transport_index,
470                                          thread_index);
471           if (!tc)
472             {
473               vlib_cli_output (vm, "transport connection %u thread %u is not"
474                                " allocated", transport_index, thread_index);
475               goto done;
476             }
477           s = session_get_if_valid (tc->s_index, thread_index);
478           if (!s)
479             {
480               vlib_cli_output (vm, "session for transport connection %u "
481                                "thread %u does not exist", transport_index,
482                                thread_index);
483               goto done;
484             }
485           one_session = 1;
486         }
487       else if (unformat (line_input, "proto %U", unformat_transport_proto,
488                          &transport_proto))
489         do_filter = 1;
490       else if (unformat (line_input, "range %u %u", &start, &end))
491         do_filter = 1;
492       else if (unformat (line_input, "range %u", &start))
493         {
494           end = start + 50;
495           do_filter = 1;
496         }
497       else if (unformat (line_input, "elog"))
498         do_elog = 1;
499       else if (unformat (line_input, "protos"))
500         {
501           session_cli_print_transport_protos (vm);
502           goto done;
503         }
504       else if (unformat (line_input, "states"))
505         {
506           session_cli_print_session_states (vm);
507           goto done;
508         }
509       else
510         {
511           error = clib_error_return (0, "unknown input `%U'",
512                                      format_unformat_error, line_input);
513           goto done;
514         }
515     }
516
517   if (one_session)
518     {
519       u8 *str = format (0, "%U", format_session, s, 3);
520       if (do_elog && s->session_state != SESSION_STATE_LISTENING)
521         {
522           elog_main_t *em = &vm->elog_main;
523           transport_connection_t *tc;
524           f64 dt;
525
526           tc = session_get_transport (s);
527           track_index = transport_elog_track_index (tc);
528           dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
529             * vm->clib_time.seconds_per_clock;
530           if (track_index != ~0)
531             str = format (str, " session elog:\n%U", format_elog_track, em,
532                           dt, track_index);
533         }
534       vlib_cli_output (vm, "%v", str);
535       vec_free (str);
536       goto done;
537     }
538
539   if (do_listeners)
540     {
541       sst = session_type_from_proto_and_ip (transport_proto, 1);
542       vlib_cli_output (vm, "%-50s%-24s", "Listener", "App");
543       /* *INDENT-OFF* */
544       pool_foreach (s, smm->wrk[0].sessions, ({
545         if (s->session_state != SESSION_STATE_LISTENING
546             || s->session_type != sst)
547           continue;
548         app_wrk = app_worker_get (s->app_wrk_index);
549         app_name = application_name_from_index (app_wrk->app_index);
550         vlib_cli_output (vm, "%U%-25v%", format_session, s, 0,
551                          app_name);
552       }));
553       /* *INDENT-ON* */
554       goto done;
555     }
556
557   if (do_filter)
558     {
559       if (end < start)
560         {
561           error = clib_error_return (0, "invalid range start: %u end: %u",
562                                      start, end);
563           goto done;
564         }
565       session_cli_show_session_filter (vm, thread_index, start, end, states,
566                                        transport_proto, verbose);
567       goto done;
568     }
569
570   session_cli_show_all_sessions (vm, verbose);
571
572 done:
573   unformat_free (line_input);
574   vec_free (states);
575   return error;
576 }
577
578 /* *INDENT-OFF* */
579 VLIB_CLI_COMMAND (vlib_cli_show_session_command) =
580 {
581   .path = "show session",
582   .short_help = "show session [verbose [n]] [listeners <proto>] "
583                 "[<session-id> [elog]] [thread <n> [index <n>] "
584                 "[proto <proto>] [state <state>] [range <min> [<max>]] "
585                 "[protos] [states] ",
586   .function = show_session_command_fn,
587 };
588 /* *INDENT-ON* */
589
590 static int
591 clear_session (session_t * s)
592 {
593   app_worker_t *server_wrk = app_worker_get (s->app_wrk_index);
594   app_worker_close_notify (server_wrk, s);
595   return 0;
596 }
597
598 static clib_error_t *
599 clear_session_command_fn (vlib_main_t * vm, unformat_input_t * input,
600                           vlib_cli_command_t * cmd)
601 {
602   session_main_t *smm = &session_main;
603   u32 thread_index = 0, clear_all = 0;
604   session_worker_t *wrk;
605   u32 session_index = ~0;
606   session_t *session;
607
608   if (!smm->is_enabled)
609     {
610       return clib_error_return (0, "session layer is not enabled");
611     }
612
613   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
614     {
615       if (unformat (input, "thread %d", &thread_index))
616         ;
617       else if (unformat (input, "session %d", &session_index))
618         ;
619       else if (unformat (input, "all"))
620         clear_all = 1;
621       else
622         return clib_error_return (0, "unknown input `%U'",
623                                   format_unformat_error, input);
624     }
625
626   if (!clear_all && session_index == ~0)
627     return clib_error_return (0, "session <nn> required, but not set.");
628
629   if (session_index != ~0)
630     {
631       session = session_get_if_valid (session_index, thread_index);
632       if (!session)
633         return clib_error_return (0, "no session %d on thread %d",
634                                   session_index, thread_index);
635       clear_session (session);
636     }
637
638   if (clear_all)
639     {
640       /* *INDENT-OFF* */
641       vec_foreach (wrk, smm->wrk)
642         {
643           pool_foreach(session, wrk->sessions, ({
644             clear_session (session);
645           }));
646         };
647       /* *INDENT-ON* */
648     }
649
650   return 0;
651 }
652
653 /* *INDENT-OFF* */
654 VLIB_CLI_COMMAND (clear_session_command, static) =
655 {
656   .path = "clear session",
657   .short_help = "clear session thread <thread> session <index>",
658   .function = clear_session_command_fn,
659 };
660 /* *INDENT-ON* */
661
662 static clib_error_t *
663 show_session_fifo_trace_command_fn (vlib_main_t * vm,
664                                     unformat_input_t * input,
665                                     vlib_cli_command_t * cmd)
666 {
667   session_t *s = 0;
668   u8 is_rx = 0, *str = 0;
669
670   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
671     {
672       if (unformat (input, "%U", unformat_session, &s))
673         ;
674       else if (unformat (input, "rx"))
675         is_rx = 1;
676       else if (unformat (input, "tx"))
677         is_rx = 0;
678       else
679         return clib_error_return (0, "unknown input `%U'",
680                                   format_unformat_error, input);
681     }
682
683   if (!SVM_FIFO_TRACE)
684     {
685       vlib_cli_output (vm, "fifo tracing not enabled");
686       return 0;
687     }
688
689   if (!s)
690     {
691       vlib_cli_output (vm, "could not find session");
692       return 0;
693     }
694
695   str = is_rx ?
696     svm_fifo_dump_trace (str, s->rx_fifo) :
697     svm_fifo_dump_trace (str, s->tx_fifo);
698
699   vlib_cli_output (vm, "%v", str);
700   return 0;
701 }
702
703 /* *INDENT-OFF* */
704 VLIB_CLI_COMMAND (show_session_fifo_trace_command, static) =
705 {
706   .path = "show session fifo trace",
707   .short_help = "show session fifo trace <session>",
708   .function = show_session_fifo_trace_command_fn,
709 };
710 /* *INDENT-ON* */
711
712 static clib_error_t *
713 session_replay_fifo_command_fn (vlib_main_t * vm, unformat_input_t * input,
714                                 vlib_cli_command_t * cmd)
715 {
716   session_t *s = 0;
717   u8 is_rx = 0, *str = 0;
718
719   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
720     {
721       if (unformat (input, "%U", unformat_session, &s))
722         ;
723       else if (unformat (input, "rx"))
724         is_rx = 1;
725       else
726         return clib_error_return (0, "unknown input `%U'",
727                                   format_unformat_error, input);
728     }
729
730   if (!SVM_FIFO_TRACE)
731     {
732       vlib_cli_output (vm, "fifo tracing not enabled");
733       return 0;
734     }
735
736   if (!s)
737     {
738       vlib_cli_output (vm, "could not find session");
739       return 0;
740     }
741
742   str = is_rx ?
743     svm_fifo_replay (str, s->rx_fifo, 0, 1) :
744     svm_fifo_replay (str, s->tx_fifo, 0, 1);
745
746   vlib_cli_output (vm, "%v", str);
747   return 0;
748 }
749
750 /* *INDENT-OFF* */
751 VLIB_CLI_COMMAND (session_replay_fifo_trace_command, static) =
752 {
753   .path = "session replay fifo",
754   .short_help = "session replay fifo <session>",
755   .function = session_replay_fifo_command_fn,
756 };
757 /* *INDENT-ON* */
758
759 static clib_error_t *
760 session_enable_disable_fn (vlib_main_t * vm, unformat_input_t * input,
761                            vlib_cli_command_t * cmd)
762 {
763   unformat_input_t _line_input, *line_input = &_line_input;
764   u8 is_en = 1;
765   clib_error_t *error;
766
767   if (!unformat_user (input, unformat_line_input, line_input))
768     return clib_error_return (0, "expected enable | disable");
769
770   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
771     {
772       if (unformat (line_input, "enable"))
773         is_en = 1;
774       else if (unformat (line_input, "disable"))
775         is_en = 0;
776       else
777         {
778           error = clib_error_return (0, "unknown input `%U'",
779                                      format_unformat_error, line_input);
780           unformat_free (line_input);
781           return error;
782         }
783     }
784
785   unformat_free (line_input);
786   return vnet_session_enable_disable (vm, is_en);
787 }
788
789 /* *INDENT-OFF* */
790 VLIB_CLI_COMMAND (session_enable_disable_command, static) =
791 {
792   .path = "session",
793   .short_help = "session [enable|disable]",
794   .function = session_enable_disable_fn,
795 };
796 /* *INDENT-ON* */
797
798 /*
799  * fd.io coding-style-patch-verification: ON
800  *
801  * Local Variables:
802  * eval: (c-set-style "gnu")
803  * End:
804  */