blob: 9da7f5b46b85db82e75af13ca6c3ed5bff3002c7 [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 *
Florin Corasde9a8492018-10-24 22:18:58 -070019format_session_fifos (u8 * s, va_list * args)
Florin Coras93992a92017-05-24 18:03:56 -070020{
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);
Florin Coras52207f12018-07-12 14:48:06 -070023 session_event_t _e, *e = &_e;
Florin Coras6534b7a2017-07-18 05:38:03 -040024 u8 found;
25
Florin Coras7fb0fe12018-04-09 09:24:52 -070026 if (!ss->server_rx_fifo || !ss->server_tx_fifo)
27 return s;
28
Florin Coras54693d22018-07-17 10:46:29 -070029 s = format (s, " Rx fifo: %U", format_svm_fifo, ss->server_rx_fifo,
30 verbose);
Florin Coras6534b7a2017-07-18 05:38:03 -040031 if (verbose > 2 && ss->server_rx_fifo->has_event)
32 {
33 found = session_node_lookup_fifo_event (ss->server_rx_fifo, e);
34 s = format (s, " session node event: %s\n",
35 found ? "found" : "not found");
36 }
Florin Coras54693d22018-07-17 10:46:29 -070037 s = format (s, " Tx fifo: %U", format_svm_fifo, ss->server_tx_fifo,
38 verbose);
Florin Coras6534b7a2017-07-18 05:38:03 -040039 if (verbose > 2 && ss->server_tx_fifo->has_event)
40 {
41 found = session_node_lookup_fifo_event (ss->server_tx_fifo, e);
42 s = format (s, " session node event: %s\n",
43 found ? "found" : "not found");
44 }
Florin Coras93992a92017-05-24 18:03:56 -070045 return s;
46}
47
Dave Barach68b0fb02017-02-28 15:15:56 -050048/**
49 * Format stream session as per the following format
50 *
51 * verbose:
52 * "Connection", "Rx fifo", "Tx fifo", "Session Index"
53 * non-verbose:
54 * "Connection"
55 */
56u8 *
57format_stream_session (u8 * s, va_list * args)
58{
59 stream_session_t *ss = va_arg (*args, stream_session_t *);
60 int verbose = va_arg (*args, int);
Florin Corasde9a8492018-10-24 22:18:58 -070061 u32 tp = session_get_transport_proto (ss);
Dave Barach68b0fb02017-02-28 15:15:56 -050062 u8 *str = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -050063
Florin Coras68810622017-07-24 17:40:28 -070064 if (verbose == 1 && ss->session_state >= SESSION_STATE_ACCEPTING)
Florin Corasde9a8492018-10-24 22:18:58 -070065 str = format (0, "%-10u%-10u",
Florin Corasbb292f42017-05-19 09:49:19 -070066 svm_fifo_max_dequeue (ss->server_rx_fifo),
Florin Corasde9a8492018-10-24 22:18:58 -070067 svm_fifo_max_dequeue (ss->server_tx_fifo));
Dave Barach68b0fb02017-02-28 15:15:56 -050068
Florin Coras3cbc04b2017-10-02 00:18:51 -070069 if (ss->session_state >= SESSION_STATE_ACCEPTING)
Dave Barach68b0fb02017-02-28 15:15:56 -050070 {
Florin Corasde9a8492018-10-24 22:18:58 -070071 s = format (s, "%U", format_transport_connection, tp,
72 ss->connection_index, ss->thread_index, verbose);
Florin Corasbb292f42017-05-19 09:49:19 -070073 if (verbose == 1)
74 s = format (s, "%v", str);
Florin Coras93992a92017-05-24 18:03:56 -070075 if (verbose > 1)
Florin Corasde9a8492018-10-24 22:18:58 -070076 s = format (s, "%U", format_session_fifos, ss, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -050077 }
78 else if (ss->session_state == SESSION_STATE_LISTENING)
79 {
Florin Corasde9a8492018-10-24 22:18:58 -070080 s = format (s, "%-40U%v", format_transport_listen_connection,
81 tp, ss->connection_index, str);
Florin Coras7fb0fe12018-04-09 09:24:52 -070082 if (verbose > 1)
Florin Corasde9a8492018-10-24 22:18:58 -070083 s = format (s, "\n%U", format_session_fifos, ss, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -050084 }
Florin Corasbb292f42017-05-19 09:49:19 -070085 else if (ss->session_state == SESSION_STATE_CONNECTING)
Dave Barach68b0fb02017-02-28 15:15:56 -050086 {
Florin Corasde9a8492018-10-24 22:18:58 -070087 s = format (s, "%-40U%v", format_transport_half_open_connection,
88 tp, ss->connection_index, str);
Dave Barach68b0fb02017-02-28 15:15:56 -050089 }
Dave Barach68b0fb02017-02-28 15:15:56 -050090 else
91 {
Florin Corase04c2992017-03-01 08:17:34 -080092 clib_warning ("Session in state: %d!", ss->session_state);
Dave Barach68b0fb02017-02-28 15:15:56 -050093 }
Dave Barach68b0fb02017-02-28 15:15:56 -050094 vec_free (str);
95
96 return s;
97}
98
Florin Coras3eb50622017-07-13 01:24:57 -040099uword
100unformat_stream_session_id (unformat_input_t * input, va_list * args)
101{
102 u8 *proto = va_arg (*args, u8 *);
Florin Corasbaee8d42019-01-19 11:29:18 -0800103 u32 *fib_index = va_arg (*args, u32 *);
Florin Coras3eb50622017-07-13 01:24:57 -0400104 ip46_address_t *lcl = va_arg (*args, ip46_address_t *);
105 ip46_address_t *rmt = va_arg (*args, ip46_address_t *);
106 u16 *lcl_port = va_arg (*args, u16 *);
107 u16 *rmt_port = va_arg (*args, u16 *);
108 u8 *is_ip4 = va_arg (*args, u8 *);
109 u8 tuple_is_set = 0;
Florin Corasbaee8d42019-01-19 11:29:18 -0800110 u32 vrf = ~0;
Florin Coras3eb50622017-07-13 01:24:57 -0400111
Dave Barachb7b92992018-10-17 10:38:51 -0400112 clib_memset (lcl, 0, sizeof (*lcl));
113 clib_memset (rmt, 0, sizeof (*rmt));
Florin Coras3eb50622017-07-13 01:24:57 -0400114
115 if (unformat (input, "tcp"))
116 {
117 *proto = TRANSPORT_PROTO_TCP;
118 }
Florin Corasbaee8d42019-01-19 11:29:18 -0800119 else if (unformat (input, "udp"))
Florin Coras3eb50622017-07-13 01:24:57 -0400120 {
121 *proto = TRANSPORT_PROTO_UDP;
122 }
Florin Corasbaee8d42019-01-19 11:29:18 -0800123 else
124 return 0;
125
126 if (unformat (input, "vrf %u", &vrf))
127 ;
128
Dave Barachb7f1faa2017-08-29 11:43:37 -0400129 if (unformat (input, "%U:%d->%U:%d", unformat_ip4_address, &lcl->ip4,
130 lcl_port, unformat_ip4_address, &rmt->ip4, rmt_port))
Florin Coras3eb50622017-07-13 01:24:57 -0400131 {
132 *is_ip4 = 1;
133 tuple_is_set = 1;
134 }
135 else if (unformat (input, "%U:%d->%U:%d", unformat_ip6_address, &lcl->ip6,
136 lcl_port, unformat_ip6_address, &rmt->ip6, rmt_port))
137 {
138 *is_ip4 = 0;
139 tuple_is_set = 1;
140 }
Florin Coras3eb50622017-07-13 01:24:57 -0400141
Florin Corasbaee8d42019-01-19 11:29:18 -0800142 if (vrf != ~0)
143 {
144 fib_protocol_t fib_proto;
145 fib_proto = *is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
146 *fib_index = fib_table_find (fib_proto, vrf);
147 }
148
Chris Lukeb2bcad62017-09-18 08:51:22 -0400149 return tuple_is_set;
Florin Coras3eb50622017-07-13 01:24:57 -0400150}
151
152uword
153unformat_stream_session (unformat_input_t * input, va_list * args)
154{
155 stream_session_t **result = va_arg (*args, stream_session_t **);
Florin Corasbaee8d42019-01-19 11:29:18 -0800156 u32 lcl_port = 0, rmt_port = 0, fib_index = 0;
157 ip46_address_t lcl, rmt;
Florin Coras3eb50622017-07-13 01:24:57 -0400158 stream_session_t *s;
159 u8 proto = ~0;
Florin Corascea194d2017-10-02 00:18:51 -0700160 u8 is_ip4 = 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400161
Florin Corasbaee8d42019-01-19 11:29:18 -0800162 if (!unformat (input, "%U", unformat_stream_session_id, &proto, &fib_index,
163 &lcl, &rmt, &lcl_port, &rmt_port, &is_ip4))
Florin Coras3eb50622017-07-13 01:24:57 -0400164 return 0;
165
Florin Coras3eb50622017-07-13 01:24:57 -0400166 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700167 s = session_lookup_safe4 (fib_index, &lcl.ip4, &rmt.ip4,
168 clib_host_to_net_u16 (lcl_port),
169 clib_host_to_net_u16 (rmt_port), proto);
Florin Coras3eb50622017-07-13 01:24:57 -0400170 else
Florin Coras3cbc04b2017-10-02 00:18:51 -0700171 s = session_lookup_safe6 (fib_index, &lcl.ip6, &rmt.ip6,
172 clib_host_to_net_u16 (lcl_port),
173 clib_host_to_net_u16 (rmt_port), proto);
Florin Coras3eb50622017-07-13 01:24:57 -0400174 if (s)
175 {
176 *result = s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700177 session_pool_remove_peeker (s->thread_index);
Florin Coras3eb50622017-07-13 01:24:57 -0400178 return 1;
179 }
180 return 0;
181}
182
183uword
184unformat_transport_connection (unformat_input_t * input, va_list * args)
185{
186 transport_connection_t **result = va_arg (*args, transport_connection_t **);
187 u32 suggested_proto = va_arg (*args, u32);
188 transport_connection_t *tc;
189 u8 proto = ~0;
190 ip46_address_t lcl, rmt;
Florin Corascea194d2017-10-02 00:18:51 -0700191 u32 lcl_port = 0, rmt_port = 0, fib_index = 0;
192 u8 is_ip4 = 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400193
Florin Corasbaee8d42019-01-19 11:29:18 -0800194 if (!unformat (input, "%U", unformat_stream_session_id, &fib_index, &proto,
195 &lcl, &rmt, &lcl_port, &rmt_port, &is_ip4))
Florin Coras3eb50622017-07-13 01:24:57 -0400196 return 0;
197
Florin Coras3eb50622017-07-13 01:24:57 -0400198 proto = (proto == (u8) ~ 0) ? suggested_proto : proto;
199 if (proto == (u8) ~ 0)
200 return 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400201 if (is_ip4)
Florin Corascea194d2017-10-02 00:18:51 -0700202 tc = session_lookup_connection4 (fib_index, &lcl.ip4, &rmt.ip4,
203 clib_host_to_net_u16 (lcl_port),
204 clib_host_to_net_u16 (rmt_port), proto);
Florin Coras3eb50622017-07-13 01:24:57 -0400205 else
Florin Corascea194d2017-10-02 00:18:51 -0700206 tc = session_lookup_connection6 (fib_index, &lcl.ip6, &rmt.ip6,
207 clib_host_to_net_u16 (lcl_port),
208 clib_host_to_net_u16 (rmt_port), proto);
Florin Coras3eb50622017-07-13 01:24:57 -0400209
210 if (tc)
211 {
212 *result = tc;
213 return 1;
214 }
215 return 0;
216}
217
Dave Barach68b0fb02017-02-28 15:15:56 -0500218static clib_error_t *
219show_session_command_fn (vlib_main_t * vm, unformat_input_t * input,
220 vlib_cli_command_t * cmd)
221{
Florin Coras844a36d2018-12-20 09:50:50 -0800222 u8 *str = 0, one_session = 0, do_listeners = 0, sst, do_elog = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500223 session_manager_main_t *smm = &session_manager_main;
Florin Corasaefbede2018-12-19 13:07:49 -0800224 u32 transport_proto = ~0, track_index;
Florin Corasdbd44562017-11-09 19:30:17 -0800225 stream_session_t *pool, *s;
Florin Corasaefbede2018-12-19 13:07:49 -0800226 transport_connection_t *tc;
Florin Coras053a0e42018-11-13 15:52:38 -0800227 app_worker_t *app_wrk;
228 int verbose = 0, i;
229 const u8 *app_name;
Dave Barach68b0fb02017-02-28 15:15:56 -0500230
Florin Corase04c2992017-03-01 08:17:34 -0800231 if (!smm->is_enabled)
232 {
flyingeagle23e2125062017-04-20 20:01:14 +0800233 return clib_error_return (0, "session layer is not enabled");
Florin Corase04c2992017-03-01 08:17:34 -0800234 }
235
Dave Barach68b0fb02017-02-28 15:15:56 -0500236 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
237 {
Florin Corasbb292f42017-05-19 09:49:19 -0700238 if (unformat (input, "verbose %d", &verbose))
239 ;
240 else if (unformat (input, "verbose"))
Dave Barach68b0fb02017-02-28 15:15:56 -0500241 verbose = 1;
Florin Corasdbd44562017-11-09 19:30:17 -0800242 else if (unformat (input, "listeners %U", unformat_transport_proto,
243 &transport_proto))
244 do_listeners = 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400245 else if (unformat (input, "%U", unformat_stream_session, &s))
Dave Barach2c25a622017-06-26 11:35:07 -0400246 {
247 one_session = 1;
Dave Barach2c25a622017-06-26 11:35:07 -0400248 }
Florin Corasaefbede2018-12-19 13:07:49 -0800249 else if (unformat (input, "elog"))
250 do_elog = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500251 else
Florin Coras3eb50622017-07-13 01:24:57 -0400252 return clib_error_return (0, "unknown input `%U'",
253 format_unformat_error, input);
Dave Barach68b0fb02017-02-28 15:15:56 -0500254 }
255
Dave Barach2c25a622017-06-26 11:35:07 -0400256 if (one_session)
257 {
Florin Corasaefbede2018-12-19 13:07:49 -0800258 str = format (0, "%U", format_stream_session, s, 3);
Florin Coras844a36d2018-12-20 09:50:50 -0800259 if (do_elog && s->session_state != SESSION_STATE_LISTENING)
Florin Corasaefbede2018-12-19 13:07:49 -0800260 {
261 elog_main_t *em = &vm->elog_main;
262 f64 dt;
263
264 tc = session_get_transport (s);
265 track_index = transport_elog_track_index (tc);
266 dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
267 * vm->clib_time.seconds_per_clock;
268 if (track_index != ~0)
269 str = format (str, " session elog:\n%U", format_elog_track, em,
270 dt, track_index);
271 }
272 vlib_cli_output (vm, "%v", str);
Dave Barach2c25a622017-06-26 11:35:07 -0400273 return 0;
274 }
275
Florin Corasdbd44562017-11-09 19:30:17 -0800276 if (do_listeners)
277 {
278 sst = session_type_from_proto_and_ip (transport_proto, 1);
Florin Corasde9a8492018-10-24 22:18:58 -0700279 vlib_cli_output (vm, "%-40s%-24s", "Listener", "App");
Florin Coras5c9083d2018-04-13 06:39:07 -0700280 /* *INDENT-OFF* */
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700281 pool_foreach (s, smm->wrk[0].sessions, ({
Florin Coras5c9083d2018-04-13 06:39:07 -0700282 if (s->session_state != SESSION_STATE_LISTENING
283 || s->session_type != sst)
284 continue;
Florin Coras053a0e42018-11-13 15:52:38 -0800285 app_wrk = app_worker_get (s->app_wrk_index);
286 app_name = application_name_from_index (app_wrk->app_index);
Florin Corasde9a8492018-10-24 22:18:58 -0700287 vlib_cli_output (vm, "%U%-25v%", format_stream_session, s, 1,
288 app_name);
Florin Coras5c9083d2018-04-13 06:39:07 -0700289 }));
290 /* *INDENT-ON* */
Florin Corasdbd44562017-11-09 19:30:17 -0800291 return 0;
292 }
293
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700294 for (i = 0; i < vec_len (smm->wrk); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500295 {
296 u32 once_per_pool;
Florin Coras0d883a42018-10-31 12:25:38 -0700297 pool = smm->wrk[i].sessions;
Dave Barach68b0fb02017-02-28 15:15:56 -0500298
299 once_per_pool = 1;
300
301 if (pool_elts (pool))
302 {
303
304 vlib_cli_output (vm, "Thread %d: %d active sessions",
305 i, pool_elts (pool));
306 if (verbose)
307 {
Florin Corasbb292f42017-05-19 09:49:19 -0700308 if (once_per_pool && verbose == 1)
Dave Barach68b0fb02017-02-28 15:15:56 -0500309 {
Florin Corasde9a8492018-10-24 22:18:58 -0700310 str = format (str, "%-50s%-15s%-10s%-10s",
311 "Connection", "State", "Rx-f", "Tx-f");
Dave Barach68b0fb02017-02-28 15:15:56 -0500312 vlib_cli_output (vm, "%v", str);
313 vec_reset_length (str);
314 once_per_pool = 0;
315 }
316
317 /* *INDENT-OFF* */
318 pool_foreach (s, pool,
319 ({
Florin Corasbb292f42017-05-19 09:49:19 -0700320 vec_reset_length (str);
321 str = format (str, "%U", format_stream_session, s, verbose);
Florin Corasbb292f42017-05-19 09:49:19 -0700322 vlib_cli_output (vm, "%v", str);
Dave Barach68b0fb02017-02-28 15:15:56 -0500323 }));
324 /* *INDENT-ON* */
325 }
326 }
327 else
328 vlib_cli_output (vm, "Thread %d: no active sessions", i);
Dave Barach2c25a622017-06-26 11:35:07 -0400329 vec_reset_length (str);
Dave Barach68b0fb02017-02-28 15:15:56 -0500330 }
331 vec_free (str);
332
333 return 0;
334}
335
Florin Corase04c2992017-03-01 08:17:34 -0800336/* *INDENT-OFF* */
Florin Coras66b11312017-07-31 17:18:03 -0700337VLIB_CLI_COMMAND (vlib_cli_show_session_command) =
Dave Barach68b0fb02017-02-28 15:15:56 -0500338{
Florin Corase04c2992017-03-01 08:17:34 -0800339 .path = "show session",
rootc9d1c5b2017-08-15 12:58:31 -0400340 .short_help = "show session [verbose [nnn]]",
Florin Corase04c2992017-03-01 08:17:34 -0800341 .function = show_session_command_fn,
342};
343/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500344
Dave Barach2c25a622017-06-26 11:35:07 -0400345static int
346clear_session (stream_session_t * s)
347{
Florin Coras15531972018-08-12 23:50:53 -0700348 app_worker_t *server_wrk = app_worker_get (s->app_wrk_index);
349 application_t *server = application_get (server_wrk->app_index);
Dave Barach2c25a622017-06-26 11:35:07 -0400350 server->cb_fns.session_disconnect_callback (s);
351 return 0;
352}
353
Dave Barach68b0fb02017-02-28 15:15:56 -0500354static clib_error_t *
355clear_session_command_fn (vlib_main_t * vm, unformat_input_t * input,
356 vlib_cli_command_t * cmd)
357{
358 session_manager_main_t *smm = &session_manager_main;
Dave Barach2c25a622017-06-26 11:35:07 -0400359 u32 thread_index = 0, clear_all = 0;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700360 session_manager_worker_t *wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500361 u32 session_index = ~0;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700362 stream_session_t *session;
Dave Barach68b0fb02017-02-28 15:15:56 -0500363
Florin Corase04c2992017-03-01 08:17:34 -0800364 if (!smm->is_enabled)
365 {
flyingeagle23e2125062017-04-20 20:01:14 +0800366 return clib_error_return (0, "session layer is not enabled");
Florin Corase04c2992017-03-01 08:17:34 -0800367 }
368
Dave Barach68b0fb02017-02-28 15:15:56 -0500369 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
370 {
371 if (unformat (input, "thread %d", &thread_index))
372 ;
373 else if (unformat (input, "session %d", &session_index))
374 ;
Dave Barach2c25a622017-06-26 11:35:07 -0400375 else if (unformat (input, "all"))
376 clear_all = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500377 else
378 return clib_error_return (0, "unknown input `%U'",
379 format_unformat_error, input);
380 }
381
Dave Barach2c25a622017-06-26 11:35:07 -0400382 if (!clear_all && session_index == ~0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500383 return clib_error_return (0, "session <nn> required, but not set.");
384
Dave Barach2c25a622017-06-26 11:35:07 -0400385 if (session_index != ~0)
386 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700387 session = session_get_if_valid (session_index, thread_index);
Dave Barach2c25a622017-06-26 11:35:07 -0400388 if (!session)
389 return clib_error_return (0, "no session %d on thread %d",
390 session_index, thread_index);
391 clear_session (session);
392 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500393
Dave Barach2c25a622017-06-26 11:35:07 -0400394 if (clear_all)
395 {
396 /* *INDENT-OFF* */
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700397 vec_foreach (wrk, smm->wrk)
Dave Barach2c25a622017-06-26 11:35:07 -0400398 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700399 pool_foreach(session, wrk->sessions, ({
Dave Barach2c25a622017-06-26 11:35:07 -0400400 clear_session (session);
401 }));
402 };
403 /* *INDENT-ON* */
404 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500405
406 return 0;
407}
408
Florin Corase04c2992017-03-01 08:17:34 -0800409/* *INDENT-OFF* */
410VLIB_CLI_COMMAND (clear_session_command, static) =
Dave Barach68b0fb02017-02-28 15:15:56 -0500411{
Florin Corase04c2992017-03-01 08:17:34 -0800412 .path = "clear session",
413 .short_help = "clear session thread <thread> session <index>",
414 .function = clear_session_command_fn,
415};
416/* *INDENT-ON* */
417
418static clib_error_t *
Florin Coras3eb50622017-07-13 01:24:57 -0400419show_session_fifo_trace_command_fn (vlib_main_t * vm,
420 unformat_input_t * input,
421 vlib_cli_command_t * cmd)
422{
423 stream_session_t *s = 0;
424 u8 is_rx = 0, *str = 0;
425
426 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
427 {
428 if (unformat (input, "%U", unformat_stream_session, &s))
429 ;
430 else if (unformat (input, "rx"))
431 is_rx = 1;
432 else if (unformat (input, "tx"))
433 is_rx = 0;
434 else
435 return clib_error_return (0, "unknown input `%U'",
436 format_unformat_error, input);
437 }
438
439 if (!SVM_FIFO_TRACE)
440 {
441 vlib_cli_output (vm, "fifo tracing not enabled");
442 return 0;
443 }
444
445 if (!s)
446 {
447 vlib_cli_output (vm, "could not find session");
448 return 0;
449 }
450
451 str = is_rx ?
452 svm_fifo_dump_trace (str, s->server_rx_fifo) :
453 svm_fifo_dump_trace (str, s->server_tx_fifo);
454
455 vlib_cli_output (vm, "%v", str);
456 return 0;
457}
458
459/* *INDENT-OFF* */
460VLIB_CLI_COMMAND (show_session_fifo_trace_command, static) =
461{
462 .path = "show session fifo trace",
463 .short_help = "show session fifo trace <session>",
464 .function = show_session_fifo_trace_command_fn,
465};
466/* *INDENT-ON* */
467
468static clib_error_t *
469session_replay_fifo_command_fn (vlib_main_t * vm, unformat_input_t * input,
470 vlib_cli_command_t * cmd)
471{
472 stream_session_t *s = 0;
473 u8 is_rx = 0, *str = 0;
474
475 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
476 {
477 if (unformat (input, "%U", unformat_stream_session, &s))
478 ;
479 else if (unformat (input, "rx"))
480 is_rx = 1;
481 else
482 return clib_error_return (0, "unknown input `%U'",
483 format_unformat_error, input);
484 }
485
486 if (!SVM_FIFO_TRACE)
487 {
488 vlib_cli_output (vm, "fifo tracing not enabled");
489 return 0;
490 }
491
492 if (!s)
493 {
494 vlib_cli_output (vm, "could not find session");
495 return 0;
496 }
497
498 str = is_rx ?
499 svm_fifo_replay (str, s->server_rx_fifo, 0, 1) :
500 svm_fifo_replay (str, s->server_tx_fifo, 0, 1);
501
502 vlib_cli_output (vm, "%v", str);
503 return 0;
504}
505
506/* *INDENT-OFF* */
507VLIB_CLI_COMMAND (session_replay_fifo_trace_command, static) =
508{
509 .path = "session replay fifo",
510 .short_help = "session replay fifo <session>",
511 .function = session_replay_fifo_command_fn,
512};
513/* *INDENT-ON* */
514
515static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -0800516session_enable_disable_fn (vlib_main_t * vm, unformat_input_t * input,
517 vlib_cli_command_t * cmd)
518{
Dave Wallace8af20542017-10-26 03:29:30 -0400519 unformat_input_t _line_input, *line_input = &_line_input;
Florin Corase04c2992017-03-01 08:17:34 -0800520 u8 is_en = 1;
Dave Wallace8af20542017-10-26 03:29:30 -0400521 clib_error_t *error;
Florin Corase04c2992017-03-01 08:17:34 -0800522
Dave Wallace8af20542017-10-26 03:29:30 -0400523 if (!unformat_user (input, unformat_line_input, line_input))
Swarup Nayak82d8ec22017-12-04 11:54:43 +0530524 return clib_error_return (0, "expected enable | disable");
Dave Wallace8af20542017-10-26 03:29:30 -0400525
526 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Florin Corase04c2992017-03-01 08:17:34 -0800527 {
Dave Wallace8af20542017-10-26 03:29:30 -0400528 if (unformat (line_input, "enable"))
Florin Corase04c2992017-03-01 08:17:34 -0800529 is_en = 1;
Dave Wallace8af20542017-10-26 03:29:30 -0400530 else if (unformat (line_input, "disable"))
Florin Corase04c2992017-03-01 08:17:34 -0800531 is_en = 0;
532 else
Dave Wallace8af20542017-10-26 03:29:30 -0400533 {
534 error = clib_error_return (0, "unknown input `%U'",
535 format_unformat_error, line_input);
536 unformat_free (line_input);
537 return error;
538 }
Florin Corase04c2992017-03-01 08:17:34 -0800539 }
540
Dave Wallace8af20542017-10-26 03:29:30 -0400541 unformat_free (line_input);
Florin Corase04c2992017-03-01 08:17:34 -0800542 return vnet_session_enable_disable (vm, is_en);
543}
544
545/* *INDENT-OFF* */
546VLIB_CLI_COMMAND (session_enable_disable_command, static) =
547{
548 .path = "session",
549 .short_help = "session [enable|disable]",
550 .function = session_enable_disable_fn,
551};
552/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500553
554/*
555 * fd.io coding-style-patch-verification: ON
556 *
557 * Local Variables:
558 * eval: (c-set-style "gnu")
559 * End:
560 */