blob: 929e604b01ecf9d9fb861833395a301c0f11ad28 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15#include <vnet/session/application.h>
16#include <vnet/session/session.h>
17
Florin Coras93992a92017-05-24 18:03:56 -070018u8 *
19format_stream_session_fifos (u8 * s, va_list * args)
20{
21 stream_session_t *ss = va_arg (*args, stream_session_t *);
Florin Coras6534b7a2017-07-18 05:38:03 -040022 int verbose = va_arg (*args, int);
23 session_fifo_event_t _e, *e = &_e;
24 u8 found;
25
Florin Coras93992a92017-05-24 18:03:56 -070026 s = format (s, " Rx fifo: %U", format_svm_fifo, ss->server_rx_fifo, 1);
Florin Coras6534b7a2017-07-18 05:38:03 -040027 if (verbose > 2 && ss->server_rx_fifo->has_event)
28 {
29 found = session_node_lookup_fifo_event (ss->server_rx_fifo, e);
30 s = format (s, " session node event: %s\n",
31 found ? "found" : "not found");
32 }
Florin Coras93992a92017-05-24 18:03:56 -070033 s = format (s, " Tx fifo: %U", format_svm_fifo, ss->server_tx_fifo, 1);
Florin Coras6534b7a2017-07-18 05:38:03 -040034 if (verbose > 2 && ss->server_tx_fifo->has_event)
35 {
36 found = session_node_lookup_fifo_event (ss->server_tx_fifo, e);
37 s = format (s, " session node event: %s\n",
38 found ? "found" : "not found");
39 }
Florin Coras93992a92017-05-24 18:03:56 -070040 return s;
41}
42
Dave Barach68b0fb02017-02-28 15:15:56 -050043/**
44 * Format stream session as per the following format
45 *
46 * verbose:
47 * "Connection", "Rx fifo", "Tx fifo", "Session Index"
48 * non-verbose:
49 * "Connection"
50 */
51u8 *
52format_stream_session (u8 * s, va_list * args)
53{
54 stream_session_t *ss = va_arg (*args, stream_session_t *);
55 int verbose = va_arg (*args, int);
56 transport_proto_vft_t *tp_vft;
57 u8 *str = 0;
Florin Coras561af9b2017-12-09 10:19:43 -080058 tp_vft = transport_protocol_get_vft (session_get_transport_proto (ss));
Dave Barach68b0fb02017-02-28 15:15:56 -050059
Florin Coras68810622017-07-24 17:40:28 -070060 if (verbose == 1 && ss->session_state >= SESSION_STATE_ACCEPTING)
Florin Corasbb292f42017-05-19 09:49:19 -070061 str = format (0, "%-10u%-10u%-10lld",
62 svm_fifo_max_dequeue (ss->server_rx_fifo),
63 svm_fifo_max_enqueue (ss->server_tx_fifo),
64 stream_session_get_index (ss));
Dave Barach68b0fb02017-02-28 15:15:56 -050065
Florin Coras3cbc04b2017-10-02 00:18:51 -070066 if (ss->session_state >= SESSION_STATE_ACCEPTING)
Dave Barach68b0fb02017-02-28 15:15:56 -050067 {
Florin Corasbb292f42017-05-19 09:49:19 -070068 s = format (s, "%U", tp_vft->format_connection, ss->connection_index,
69 ss->thread_index, verbose);
70 if (verbose == 1)
71 s = format (s, "%v", str);
Florin Coras93992a92017-05-24 18:03:56 -070072 if (verbose > 1)
Florin Coras6534b7a2017-07-18 05:38:03 -040073 s = format (s, "%U", format_stream_session_fifos, ss, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -050074 }
75 else if (ss->session_state == SESSION_STATE_LISTENING)
76 {
77 s = format (s, "%-40U%v", tp_vft->format_listener, ss->connection_index,
78 str);
79 }
Florin Corasbb292f42017-05-19 09:49:19 -070080 else if (ss->session_state == SESSION_STATE_CONNECTING)
Dave Barach68b0fb02017-02-28 15:15:56 -050081 {
Florin Corasbb292f42017-05-19 09:49:19 -070082 s = format (s, "%-40U%v", tp_vft->format_half_open,
83 ss->connection_index, str);
Dave Barach68b0fb02017-02-28 15:15:56 -050084 }
Dave Barach68b0fb02017-02-28 15:15:56 -050085 else
86 {
Florin Corase04c2992017-03-01 08:17:34 -080087 clib_warning ("Session in state: %d!", ss->session_state);
Dave Barach68b0fb02017-02-28 15:15:56 -050088 }
Dave Barach68b0fb02017-02-28 15:15:56 -050089 vec_free (str);
90
91 return s;
92}
93
Florin Coras3eb50622017-07-13 01:24:57 -040094uword
95unformat_stream_session_id (unformat_input_t * input, va_list * args)
96{
97 u8 *proto = va_arg (*args, u8 *);
98 ip46_address_t *lcl = va_arg (*args, ip46_address_t *);
99 ip46_address_t *rmt = va_arg (*args, ip46_address_t *);
100 u16 *lcl_port = va_arg (*args, u16 *);
101 u16 *rmt_port = va_arg (*args, u16 *);
102 u8 *is_ip4 = va_arg (*args, u8 *);
103 u8 tuple_is_set = 0;
104
105 memset (lcl, 0, sizeof (*lcl));
106 memset (rmt, 0, sizeof (*rmt));
107
108 if (unformat (input, "tcp"))
109 {
110 *proto = TRANSPORT_PROTO_TCP;
111 }
112 if (unformat (input, "udp"))
113 {
114 *proto = TRANSPORT_PROTO_UDP;
115 }
Dave Barachb7f1faa2017-08-29 11:43:37 -0400116 if (unformat (input, "%U:%d->%U:%d", unformat_ip4_address, &lcl->ip4,
117 lcl_port, unformat_ip4_address, &rmt->ip4, rmt_port))
Florin Coras3eb50622017-07-13 01:24:57 -0400118 {
119 *is_ip4 = 1;
120 tuple_is_set = 1;
121 }
122 else if (unformat (input, "%U:%d->%U:%d", unformat_ip6_address, &lcl->ip6,
123 lcl_port, unformat_ip6_address, &rmt->ip6, rmt_port))
124 {
125 *is_ip4 = 0;
126 tuple_is_set = 1;
127 }
Florin Coras3eb50622017-07-13 01:24:57 -0400128
Chris Lukeb2bcad62017-09-18 08:51:22 -0400129 return tuple_is_set;
Florin Coras3eb50622017-07-13 01:24:57 -0400130}
131
132uword
133unformat_stream_session (unformat_input_t * input, va_list * args)
134{
135 stream_session_t **result = va_arg (*args, stream_session_t **);
136 stream_session_t *s;
137 u8 proto = ~0;
138 ip46_address_t lcl, rmt;
Florin Corascea194d2017-10-02 00:18:51 -0700139 u32 lcl_port = 0, rmt_port = 0, fib_index = 0;
140 u8 is_ip4 = 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400141
Chris Lukeb2bcad62017-09-18 08:51:22 -0400142 if (!unformat (input, "%U", unformat_stream_session_id, &proto, &lcl, &rmt,
143 &lcl_port, &rmt_port, &is_ip4))
Florin Coras3eb50622017-07-13 01:24:57 -0400144 return 0;
145
Florin Coras3eb50622017-07-13 01:24:57 -0400146 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700147 s = session_lookup_safe4 (fib_index, &lcl.ip4, &rmt.ip4,
148 clib_host_to_net_u16 (lcl_port),
149 clib_host_to_net_u16 (rmt_port), proto);
Florin Coras3eb50622017-07-13 01:24:57 -0400150 else
Florin Coras3cbc04b2017-10-02 00:18:51 -0700151 s = session_lookup_safe6 (fib_index, &lcl.ip6, &rmt.ip6,
152 clib_host_to_net_u16 (lcl_port),
153 clib_host_to_net_u16 (rmt_port), proto);
Florin Coras3eb50622017-07-13 01:24:57 -0400154 if (s)
155 {
156 *result = s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700157 session_pool_remove_peeker (s->thread_index);
Florin Coras3eb50622017-07-13 01:24:57 -0400158 return 1;
159 }
160 return 0;
161}
162
163uword
164unformat_transport_connection (unformat_input_t * input, va_list * args)
165{
166 transport_connection_t **result = va_arg (*args, transport_connection_t **);
167 u32 suggested_proto = va_arg (*args, u32);
168 transport_connection_t *tc;
169 u8 proto = ~0;
170 ip46_address_t lcl, rmt;
Florin Corascea194d2017-10-02 00:18:51 -0700171 u32 lcl_port = 0, rmt_port = 0, fib_index = 0;
172 u8 is_ip4 = 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400173
Chris Lukeb2bcad62017-09-18 08:51:22 -0400174 if (!unformat (input, "%U", unformat_stream_session_id, &proto, &lcl, &rmt,
175 &lcl_port, &rmt_port, &is_ip4))
Florin Coras3eb50622017-07-13 01:24:57 -0400176 return 0;
177
Florin Coras3eb50622017-07-13 01:24:57 -0400178 proto = (proto == (u8) ~ 0) ? suggested_proto : proto;
179 if (proto == (u8) ~ 0)
180 return 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400181 if (is_ip4)
Florin Corascea194d2017-10-02 00:18:51 -0700182 tc = session_lookup_connection4 (fib_index, &lcl.ip4, &rmt.ip4,
183 clib_host_to_net_u16 (lcl_port),
184 clib_host_to_net_u16 (rmt_port), proto);
Florin Coras3eb50622017-07-13 01:24:57 -0400185 else
Florin Corascea194d2017-10-02 00:18:51 -0700186 tc = session_lookup_connection6 (fib_index, &lcl.ip6, &rmt.ip6,
187 clib_host_to_net_u16 (lcl_port),
188 clib_host_to_net_u16 (rmt_port), proto);
Florin Coras3eb50622017-07-13 01:24:57 -0400189
190 if (tc)
191 {
192 *result = tc;
193 return 1;
194 }
195 return 0;
196}
197
Dave Barach68b0fb02017-02-28 15:15:56 -0500198static clib_error_t *
199show_session_command_fn (vlib_main_t * vm, unformat_input_t * input,
200 vlib_cli_command_t * cmd)
201{
202 session_manager_main_t *smm = &session_manager_main;
Florin Corasdbd44562017-11-09 19:30:17 -0800203 u8 *str = 0, one_session = 0, do_listeners = 0, sst, *app_name;
Dave Barach68b0fb02017-02-28 15:15:56 -0500204 int verbose = 0, i;
Florin Corasdbd44562017-11-09 19:30:17 -0800205 stream_session_t *pool, *s;
206 u32 transport_proto = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500207
Florin Corase04c2992017-03-01 08:17:34 -0800208 if (!smm->is_enabled)
209 {
flyingeagle23e2125062017-04-20 20:01:14 +0800210 return clib_error_return (0, "session layer is not enabled");
Florin Corase04c2992017-03-01 08:17:34 -0800211 }
212
Dave Barach68b0fb02017-02-28 15:15:56 -0500213 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
214 {
Florin Corasbb292f42017-05-19 09:49:19 -0700215 if (unformat (input, "verbose %d", &verbose))
216 ;
217 else if (unformat (input, "verbose"))
Dave Barach68b0fb02017-02-28 15:15:56 -0500218 verbose = 1;
Florin Corasdbd44562017-11-09 19:30:17 -0800219 else if (unformat (input, "listeners %U", unformat_transport_proto,
220 &transport_proto))
221 do_listeners = 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400222 else if (unformat (input, "%U", unformat_stream_session, &s))
Dave Barach2c25a622017-06-26 11:35:07 -0400223 {
224 one_session = 1;
Dave Barach2c25a622017-06-26 11:35:07 -0400225 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500226 else
Florin Coras3eb50622017-07-13 01:24:57 -0400227 return clib_error_return (0, "unknown input `%U'",
228 format_unformat_error, input);
Dave Barach68b0fb02017-02-28 15:15:56 -0500229 }
230
Dave Barach2c25a622017-06-26 11:35:07 -0400231 if (one_session)
232 {
Florin Coras6534b7a2017-07-18 05:38:03 -0400233 vlib_cli_output (vm, "%U", format_stream_session, s, 3);
Dave Barach2c25a622017-06-26 11:35:07 -0400234 return 0;
235 }
236
Florin Corasdbd44562017-11-09 19:30:17 -0800237 if (do_listeners)
238 {
239 sst = session_type_from_proto_and_ip (transport_proto, 1);
240 vlib_cli_output (vm, "There are %d active %U listeners",
241 pool_elts (smm->listen_sessions[sst]),
242 format_transport_proto, transport_proto);
243 if (verbose)
244 {
245 vlib_cli_output (vm, "%-40s%-24s%-10s", "Listener", "App", "S-idx");
246 /* *INDENT-OFF* */
247 pool_foreach (s, smm->listen_sessions[sst], ({
248 app_name = application_name_from_index (s->app_index);
249 vlib_cli_output (vm, "%U%-25v%-10u", format_stream_session, s, 1,
250 app_name, s->session_index);
251 vec_free (app_name);
252 }));
253 /* *INDENT-ON* */
254 }
255 return 0;
256 }
257
Dave Barach68b0fb02017-02-28 15:15:56 -0500258 for (i = 0; i < vec_len (smm->sessions); i++)
259 {
260 u32 once_per_pool;
261 pool = smm->sessions[i];
262
263 once_per_pool = 1;
264
265 if (pool_elts (pool))
266 {
267
268 vlib_cli_output (vm, "Thread %d: %d active sessions",
269 i, pool_elts (pool));
270 if (verbose)
271 {
Florin Corasbb292f42017-05-19 09:49:19 -0700272 if (once_per_pool && verbose == 1)
Dave Barach68b0fb02017-02-28 15:15:56 -0500273 {
Florin Corasc87c91d2017-08-16 19:55:49 -0700274 str = format (str, "%-50s%-15s%-10s%-10s%-10s",
275 "Connection", "State", "Rx-f", "Tx-f",
276 "S-idx");
Dave Barach68b0fb02017-02-28 15:15:56 -0500277 vlib_cli_output (vm, "%v", str);
278 vec_reset_length (str);
279 once_per_pool = 0;
280 }
281
282 /* *INDENT-OFF* */
283 pool_foreach (s, pool,
284 ({
Florin Corasbb292f42017-05-19 09:49:19 -0700285 vec_reset_length (str);
286 str = format (str, "%U", format_stream_session, s, verbose);
Florin Corasbb292f42017-05-19 09:49:19 -0700287 vlib_cli_output (vm, "%v", str);
Dave Barach68b0fb02017-02-28 15:15:56 -0500288 }));
289 /* *INDENT-ON* */
290 }
291 }
292 else
293 vlib_cli_output (vm, "Thread %d: no active sessions", i);
Dave Barach2c25a622017-06-26 11:35:07 -0400294 vec_reset_length (str);
Dave Barach68b0fb02017-02-28 15:15:56 -0500295 }
296 vec_free (str);
297
298 return 0;
299}
300
Florin Corase04c2992017-03-01 08:17:34 -0800301/* *INDENT-OFF* */
Florin Coras66b11312017-07-31 17:18:03 -0700302VLIB_CLI_COMMAND (vlib_cli_show_session_command) =
Dave Barach68b0fb02017-02-28 15:15:56 -0500303{
Florin Corase04c2992017-03-01 08:17:34 -0800304 .path = "show session",
rootc9d1c5b2017-08-15 12:58:31 -0400305 .short_help = "show session [verbose [nnn]]",
Florin Corase04c2992017-03-01 08:17:34 -0800306 .function = show_session_command_fn,
307};
308/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500309
Dave Barach2c25a622017-06-26 11:35:07 -0400310static int
311clear_session (stream_session_t * s)
312{
313 application_t *server = application_get (s->app_index);
314 server->cb_fns.session_disconnect_callback (s);
315 return 0;
316}
317
Dave Barach68b0fb02017-02-28 15:15:56 -0500318static clib_error_t *
319clear_session_command_fn (vlib_main_t * vm, unformat_input_t * input,
320 vlib_cli_command_t * cmd)
321{
322 session_manager_main_t *smm = &session_manager_main;
Dave Barach2c25a622017-06-26 11:35:07 -0400323 u32 thread_index = 0, clear_all = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500324 u32 session_index = ~0;
Dave Barach2c25a622017-06-26 11:35:07 -0400325 stream_session_t **pool, *session;
Dave Barach68b0fb02017-02-28 15:15:56 -0500326
Florin Corase04c2992017-03-01 08:17:34 -0800327 if (!smm->is_enabled)
328 {
flyingeagle23e2125062017-04-20 20:01:14 +0800329 return clib_error_return (0, "session layer is not enabled");
Florin Corase04c2992017-03-01 08:17:34 -0800330 }
331
Dave Barach68b0fb02017-02-28 15:15:56 -0500332 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
333 {
334 if (unformat (input, "thread %d", &thread_index))
335 ;
336 else if (unformat (input, "session %d", &session_index))
337 ;
Dave Barach2c25a622017-06-26 11:35:07 -0400338 else if (unformat (input, "all"))
339 clear_all = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500340 else
341 return clib_error_return (0, "unknown input `%U'",
342 format_unformat_error, input);
343 }
344
Dave Barach2c25a622017-06-26 11:35:07 -0400345 if (!clear_all && session_index == ~0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500346 return clib_error_return (0, "session <nn> required, but not set.");
347
Dave Barach2c25a622017-06-26 11:35:07 -0400348 if (session_index != ~0)
349 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700350 session = session_get_if_valid (session_index, thread_index);
Dave Barach2c25a622017-06-26 11:35:07 -0400351 if (!session)
352 return clib_error_return (0, "no session %d on thread %d",
353 session_index, thread_index);
354 clear_session (session);
355 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500356
Dave Barach2c25a622017-06-26 11:35:07 -0400357 if (clear_all)
358 {
359 /* *INDENT-OFF* */
360 vec_foreach (pool, smm->sessions)
361 {
362 pool_foreach(session, *pool, ({
363 clear_session (session);
364 }));
365 };
366 /* *INDENT-ON* */
367 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500368
369 return 0;
370}
371
Florin Corase04c2992017-03-01 08:17:34 -0800372/* *INDENT-OFF* */
373VLIB_CLI_COMMAND (clear_session_command, static) =
Dave Barach68b0fb02017-02-28 15:15:56 -0500374{
Florin Corase04c2992017-03-01 08:17:34 -0800375 .path = "clear session",
376 .short_help = "clear session thread <thread> session <index>",
377 .function = clear_session_command_fn,
378};
379/* *INDENT-ON* */
380
381static clib_error_t *
Florin Coras3eb50622017-07-13 01:24:57 -0400382show_session_fifo_trace_command_fn (vlib_main_t * vm,
383 unformat_input_t * input,
384 vlib_cli_command_t * cmd)
385{
386 stream_session_t *s = 0;
387 u8 is_rx = 0, *str = 0;
388
389 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
390 {
391 if (unformat (input, "%U", unformat_stream_session, &s))
392 ;
393 else if (unformat (input, "rx"))
394 is_rx = 1;
395 else if (unformat (input, "tx"))
396 is_rx = 0;
397 else
398 return clib_error_return (0, "unknown input `%U'",
399 format_unformat_error, input);
400 }
401
402 if (!SVM_FIFO_TRACE)
403 {
404 vlib_cli_output (vm, "fifo tracing not enabled");
405 return 0;
406 }
407
408 if (!s)
409 {
410 vlib_cli_output (vm, "could not find session");
411 return 0;
412 }
413
414 str = is_rx ?
415 svm_fifo_dump_trace (str, s->server_rx_fifo) :
416 svm_fifo_dump_trace (str, s->server_tx_fifo);
417
418 vlib_cli_output (vm, "%v", str);
419 return 0;
420}
421
422/* *INDENT-OFF* */
423VLIB_CLI_COMMAND (show_session_fifo_trace_command, static) =
424{
425 .path = "show session fifo trace",
426 .short_help = "show session fifo trace <session>",
427 .function = show_session_fifo_trace_command_fn,
428};
429/* *INDENT-ON* */
430
431static clib_error_t *
432session_replay_fifo_command_fn (vlib_main_t * vm, unformat_input_t * input,
433 vlib_cli_command_t * cmd)
434{
435 stream_session_t *s = 0;
436 u8 is_rx = 0, *str = 0;
437
438 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
439 {
440 if (unformat (input, "%U", unformat_stream_session, &s))
441 ;
442 else if (unformat (input, "rx"))
443 is_rx = 1;
444 else
445 return clib_error_return (0, "unknown input `%U'",
446 format_unformat_error, input);
447 }
448
449 if (!SVM_FIFO_TRACE)
450 {
451 vlib_cli_output (vm, "fifo tracing not enabled");
452 return 0;
453 }
454
455 if (!s)
456 {
457 vlib_cli_output (vm, "could not find session");
458 return 0;
459 }
460
461 str = is_rx ?
462 svm_fifo_replay (str, s->server_rx_fifo, 0, 1) :
463 svm_fifo_replay (str, s->server_tx_fifo, 0, 1);
464
465 vlib_cli_output (vm, "%v", str);
466 return 0;
467}
468
469/* *INDENT-OFF* */
470VLIB_CLI_COMMAND (session_replay_fifo_trace_command, static) =
471{
472 .path = "session replay fifo",
473 .short_help = "session replay fifo <session>",
474 .function = session_replay_fifo_command_fn,
475};
476/* *INDENT-ON* */
477
478static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -0800479session_enable_disable_fn (vlib_main_t * vm, unformat_input_t * input,
480 vlib_cli_command_t * cmd)
481{
Dave Wallace8af20542017-10-26 03:29:30 -0400482 unformat_input_t _line_input, *line_input = &_line_input;
Florin Corase04c2992017-03-01 08:17:34 -0800483 u8 is_en = 1;
Dave Wallace8af20542017-10-26 03:29:30 -0400484 clib_error_t *error;
Florin Corase04c2992017-03-01 08:17:34 -0800485
Dave Wallace8af20542017-10-26 03:29:30 -0400486 if (!unformat_user (input, unformat_line_input, line_input))
Swarup Nayak82d8ec22017-12-04 11:54:43 +0530487 return clib_error_return (0, "expected enable | disable");
Dave Wallace8af20542017-10-26 03:29:30 -0400488
489 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Florin Corase04c2992017-03-01 08:17:34 -0800490 {
Dave Wallace8af20542017-10-26 03:29:30 -0400491 if (unformat (line_input, "enable"))
Florin Corase04c2992017-03-01 08:17:34 -0800492 is_en = 1;
Dave Wallace8af20542017-10-26 03:29:30 -0400493 else if (unformat (line_input, "disable"))
Florin Corase04c2992017-03-01 08:17:34 -0800494 is_en = 0;
495 else
Dave Wallace8af20542017-10-26 03:29:30 -0400496 {
497 error = clib_error_return (0, "unknown input `%U'",
498 format_unformat_error, line_input);
499 unformat_free (line_input);
500 return error;
501 }
Florin Corase04c2992017-03-01 08:17:34 -0800502 }
503
Dave Wallace8af20542017-10-26 03:29:30 -0400504 unformat_free (line_input);
Florin Corase04c2992017-03-01 08:17:34 -0800505 return vnet_session_enable_disable (vm, is_en);
506}
507
508/* *INDENT-OFF* */
509VLIB_CLI_COMMAND (session_enable_disable_command, static) =
510{
511 .path = "session",
512 .short_help = "session [enable|disable]",
513 .function = session_enable_disable_fn,
514};
515/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500516
517/*
518 * fd.io coding-style-patch-verification: ON
519 *
520 * Local Variables:
521 * eval: (c-set-style "gnu")
522 * End:
523 */