blob: b03353e564ad8173e1da475e08ca6b1f7efbca17 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * 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{
Florin Coras288eaab2019-02-03 15:26:14 -080021 session_t *ss = va_arg (*args, 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 Coras288eaab2019-02-03 15:26:14 -080026 if (!ss->rx_fifo || !ss->tx_fifo)
Florin Coras7fb0fe12018-04-09 09:24:52 -070027 return s;
28
Florin Coras288eaab2019-02-03 15:26:14 -080029 s = format (s, " Rx fifo: %U", format_svm_fifo, ss->rx_fifo, verbose);
30 if (verbose > 2 && ss->rx_fifo->has_event)
Florin Coras6534b7a2017-07-18 05:38:03 -040031 {
Florin Coras288eaab2019-02-03 15:26:14 -080032 found = session_node_lookup_fifo_event (ss->rx_fifo, e);
Florin Coras6534b7a2017-07-18 05:38:03 -040033 s = format (s, " session node event: %s\n",
34 found ? "found" : "not found");
35 }
Florin Coras288eaab2019-02-03 15:26:14 -080036 s = format (s, " Tx fifo: %U", format_svm_fifo, ss->tx_fifo, verbose);
37 if (verbose > 2 && ss->tx_fifo->has_event)
Florin Coras6534b7a2017-07-18 05:38:03 -040038 {
Florin Coras288eaab2019-02-03 15:26:14 -080039 found = session_node_lookup_fifo_event (ss->tx_fifo, e);
Florin Coras6534b7a2017-07-18 05:38:03 -040040 s = format (s, " session node event: %s\n",
41 found ? "found" : "not found");
42 }
Florin Coras93992a92017-05-24 18:03:56 -070043 return s;
44}
45
Dave Barach68b0fb02017-02-28 15:15:56 -050046/**
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 */
54u8 *
Florin Coras31c99552019-03-01 13:00:58 -080055format_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -050056{
Florin Coras288eaab2019-02-03 15:26:14 -080057 session_t *ss = va_arg (*args, session_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -050058 int verbose = va_arg (*args, int);
Florin Corasde9a8492018-10-24 22:18:58 -070059 u32 tp = session_get_transport_proto (ss);
Dave Barach68b0fb02017-02-28 15:15:56 -050060 u8 *str = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -050061
Florin Coras5f066322019-07-22 19:03:03 -070062 if (ss->session_state >= SESSION_STATE_TRANSPORT_DELETED)
Florin Coras3389dd22019-02-01 18:00:05 -080063 {
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;
Aloys Augustin95dd1fe2019-07-12 17:11:04 +020071 u8 hasf = post_accept
72 || session_transport_service_type (ss) == TRANSPORT_SERVICE_CL;
Florin Coras3389dd22019-02-01 18:00:05 -080073 u32 rxf, txf;
74
Florin Coras288eaab2019-02-03 15:26:14 -080075 rxf = hasf ? svm_fifo_max_dequeue (ss->rx_fifo) : 0;
76 txf = hasf ? svm_fifo_max_dequeue (ss->tx_fifo) : 0;
Florin Coras3389dd22019-02-01 18:00:05 -080077 str = format (0, "%-10u%-10u", rxf, txf);
78 }
Dave Barach68b0fb02017-02-28 15:15:56 -050079
Florin Coras509028a2019-04-02 17:47:03 -070080 if (ss->session_state >= SESSION_STATE_ACCEPTING
81 || ss->session_state == SESSION_STATE_CREATED)
Dave Barach68b0fb02017-02-28 15:15:56 -050082 {
Florin Corasde9a8492018-10-24 22:18:58 -070083 s = format (s, "%U", format_transport_connection, tp,
84 ss->connection_index, ss->thread_index, verbose);
Florin Corasbb292f42017-05-19 09:49:19 -070085 if (verbose == 1)
86 s = format (s, "%v", str);
Florin Coras93992a92017-05-24 18:03:56 -070087 if (verbose > 1)
Florin Corasde9a8492018-10-24 22:18:58 -070088 s = format (s, "%U", format_session_fifos, ss, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -050089 }
90 else if (ss->session_state == SESSION_STATE_LISTENING)
91 {
Florin Coras3389dd22019-02-01 18:00:05 -080092 s = format (s, "%U%v", format_transport_listen_connection,
Aloys Augustina0abbff2019-07-12 12:16:16 +020093 tp, ss->connection_index, ss->thread_index, verbose, str);
Florin Coras7fb0fe12018-04-09 09:24:52 -070094 if (verbose > 1)
Florin Corasde9a8492018-10-24 22:18:58 -070095 s = format (s, "\n%U", format_session_fifos, ss, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -050096 }
Florin Corasbb292f42017-05-19 09:49:19 -070097 else if (ss->session_state == SESSION_STATE_CONNECTING)
Dave Barach68b0fb02017-02-28 15:15:56 -050098 {
Florin Corasde9a8492018-10-24 22:18:58 -070099 s = format (s, "%-40U%v", format_transport_half_open_connection,
Aloys Augustina0abbff2019-07-12 12:16:16 +0200100 tp, ss->connection_index, ss->thread_index, str);
Dave Barach68b0fb02017-02-28 15:15:56 -0500101 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500102 else
103 {
Florin Corase04c2992017-03-01 08:17:34 -0800104 clib_warning ("Session in state: %d!", ss->session_state);
Dave Barach68b0fb02017-02-28 15:15:56 -0500105 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500106 vec_free (str);
107
108 return s;
109}
110
Florin Coras3eb50622017-07-13 01:24:57 -0400111uword
112unformat_stream_session_id (unformat_input_t * input, va_list * args)
113{
114 u8 *proto = va_arg (*args, u8 *);
Florin Corasbaee8d42019-01-19 11:29:18 -0800115 u32 *fib_index = va_arg (*args, u32 *);
Florin Coras3eb50622017-07-13 01:24:57 -0400116 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;
Florin Corasbaee8d42019-01-19 11:29:18 -0800122 u32 vrf = ~0;
Florin Coras3eb50622017-07-13 01:24:57 -0400123
Dave Barachb7b92992018-10-17 10:38:51 -0400124 clib_memset (lcl, 0, sizeof (*lcl));
125 clib_memset (rmt, 0, sizeof (*rmt));
Florin Coras3eb50622017-07-13 01:24:57 -0400126
127 if (unformat (input, "tcp"))
128 {
129 *proto = TRANSPORT_PROTO_TCP;
130 }
Florin Corasbaee8d42019-01-19 11:29:18 -0800131 else if (unformat (input, "udp"))
Florin Coras3eb50622017-07-13 01:24:57 -0400132 {
133 *proto = TRANSPORT_PROTO_UDP;
134 }
Florin Corasbaee8d42019-01-19 11:29:18 -0800135 else
136 return 0;
137
138 if (unformat (input, "vrf %u", &vrf))
139 ;
140
Dave Barachb7f1faa2017-08-29 11:43:37 -0400141 if (unformat (input, "%U:%d->%U:%d", unformat_ip4_address, &lcl->ip4,
142 lcl_port, unformat_ip4_address, &rmt->ip4, rmt_port))
Florin Coras3eb50622017-07-13 01:24:57 -0400143 {
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 }
Florin Coras3eb50622017-07-13 01:24:57 -0400153
Florin Corasbaee8d42019-01-19 11:29:18 -0800154 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
Chris Lukeb2bcad62017-09-18 08:51:22 -0400161 return tuple_is_set;
Florin Coras3eb50622017-07-13 01:24:57 -0400162}
163
164uword
Florin Coras5bb23ec2019-08-31 09:45:13 -0700165unformat_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 _
180done:
181 vec_free (state_vec);
182 return rv;
183}
184
185uword
Florin Coras31c99552019-03-01 13:00:58 -0800186unformat_session (unformat_input_t * input, va_list * args)
Florin Coras3eb50622017-07-13 01:24:57 -0400187{
Florin Coras288eaab2019-02-03 15:26:14 -0800188 session_t **result = va_arg (*args, session_t **);
Florin Corasbaee8d42019-01-19 11:29:18 -0800189 u32 lcl_port = 0, rmt_port = 0, fib_index = 0;
190 ip46_address_t lcl, rmt;
Florin Coras288eaab2019-02-03 15:26:14 -0800191 session_t *s;
Florin Coras3eb50622017-07-13 01:24:57 -0400192 u8 proto = ~0;
Florin Corascea194d2017-10-02 00:18:51 -0700193 u8 is_ip4 = 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400194
Florin Corasbaee8d42019-01-19 11:29:18 -0800195 if (!unformat (input, "%U", unformat_stream_session_id, &proto, &fib_index,
196 &lcl, &rmt, &lcl_port, &rmt_port, &is_ip4))
Florin Coras3eb50622017-07-13 01:24:57 -0400197 return 0;
198
Florin Coras3eb50622017-07-13 01:24:57 -0400199 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700200 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);
Florin Coras3eb50622017-07-13 01:24:57 -0400203 else
Florin Coras3cbc04b2017-10-02 00:18:51 -0700204 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);
Florin Coras3eb50622017-07-13 01:24:57 -0400207 if (s)
208 {
209 *result = s;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700210 session_pool_remove_peeker (s->thread_index);
Florin Coras3eb50622017-07-13 01:24:57 -0400211 return 1;
212 }
213 return 0;
214}
215
216uword
217unformat_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;
Florin Corascea194d2017-10-02 00:18:51 -0700224 u32 lcl_port = 0, rmt_port = 0, fib_index = 0;
225 u8 is_ip4 = 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400226
Florin Corasbaee8d42019-01-19 11:29:18 -0800227 if (!unformat (input, "%U", unformat_stream_session_id, &fib_index, &proto,
228 &lcl, &rmt, &lcl_port, &rmt_port, &is_ip4))
Florin Coras3eb50622017-07-13 01:24:57 -0400229 return 0;
230
Florin Coras3eb50622017-07-13 01:24:57 -0400231 proto = (proto == (u8) ~ 0) ? suggested_proto : proto;
232 if (proto == (u8) ~ 0)
233 return 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400234 if (is_ip4)
Florin Corascea194d2017-10-02 00:18:51 -0700235 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);
Florin Coras3eb50622017-07-13 01:24:57 -0400238 else
Florin Corascea194d2017-10-02 00:18:51 -0700239 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);
Florin Coras3eb50622017-07-13 01:24:57 -0400242
243 if (tc)
244 {
245 *result = tc;
246 return 1;
247 }
248 return 0;
249}
250
Florin Coras5bb23ec2019-08-31 09:45:13 -0700251static void
252session_cli_show_all_sessions (vlib_main_t * vm, int verbose)
253{
254 session_main_t *smm = &session_main;
Florin Coras2d0b2bb2019-11-01 14:03:28 -0700255 u32 n_closed, thread_index;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700256 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
Florin Coras2d0b2bb2019-11-01 14:03:28 -0700288 n_closed = 0;
289
Florin Coras5bb23ec2019-08-31 09:45:13 -0700290 /* *INDENT-OFF* */
291 pool_foreach(s, pool, ({
292 if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED)
293 {
294 n_closed += 1;
295 continue;
296 }
297 vlib_cli_output (vm, "%U", format_session, s, verbose);
298 }));
299 /* *INDENT-ON* */
300
301 if (!n_closed)
302 vlib_cli_output (vm, "Thread %d: active sessions %u", thread_index,
303 pool_elts (pool) - n_closed);
304 else
305 vlib_cli_output (vm, "Thread %d: active sessions %u closed %u",
306 thread_index, pool_elts (pool) - n_closed, n_closed);
307 }
308}
309
310static int
311session_cli_filter_check (session_t * s, session_state_t * states,
312 transport_proto_t tp)
313{
314 if (states)
315 {
316 session_state_t *state;
317 vec_foreach (state, states) if (s->session_state == *state)
318 goto check_transport;
319 return 0;
320 }
321
322check_transport:
323
324 if (tp != TRANSPORT_N_PROTO && session_get_transport_proto (s) != tp)
325 return 0;
326
327 return 1;
328}
329
330static void
331session_cli_show_session_filter (vlib_main_t * vm, u32 thread_index,
332 u32 start, u32 end, session_state_t * states,
333 transport_proto_t tp, int verbose)
334{
335 u8 output_suppressed = 0;
336 session_worker_t *wrk;
337 session_t *pool, *s;
338 u32 count = 0, max_index;
339 int i;
340
341 wrk = session_main_get_worker_if_valid (thread_index);
342 if (!wrk)
343 {
344 vlib_cli_output (vm, "invalid thread index %u", thread_index);
345 return;
346 }
347
348 pool = wrk->sessions;
349
350 if (tp == TRANSPORT_N_PROTO && states == 0 && !verbose
351 && (start == 0 && end == ~0))
352 {
353 vlib_cli_output (vm, "Thread %d: %u sessions", thread_index,
354 pool_elts (pool));
355 return;
356 }
357
Florin Coras61a89f22019-09-09 19:22:36 -0700358 max_index = pool_len (pool) ? pool_len (pool) - 1 : 0;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700359 for (i = start; i <= clib_min (end, max_index); i++)
360 {
361 if (pool_is_free_index (pool, i))
362 continue;
363
364 s = pool_elt_at_index (pool, i);
365
366 if (session_cli_filter_check (s, states, tp))
367 {
368 count += 1;
369 if (verbose)
370 {
371 if (count > 50 || (verbose > 1 && count > 10))
372 {
373 output_suppressed = 1;
374 continue;
375 }
376 if (s->session_state < SESSION_STATE_TRANSPORT_DELETED)
377 vlib_cli_output (vm, "%U", format_session, s, verbose);
378 }
379 }
380 }
381
382 if (!output_suppressed)
383 vlib_cli_output (vm, "Thread %d: %u sessions matched filter",
384 thread_index, count);
385 else
386 vlib_cli_output (vm, "Thread %d: %u sessions matched filter. Not all"
387 " shown. Use finer grained filter.", thread_index,
388 count);
389}
390
391static void
392session_cli_print_transport_protos (vlib_main_t * vm)
393{
394#define _(sym, str, sstr) vlib_cli_output (vm, str);
395 foreach_transport_proto
396#undef _
397}
398
399static void
400session_cli_print_session_states (vlib_main_t * vm)
401{
402#define _(sym, str) vlib_cli_output (vm, str);
403 foreach_session_state
404#undef _
405}
406
Dave Barach68b0fb02017-02-28 15:15:56 -0500407static clib_error_t *
408show_session_command_fn (vlib_main_t * vm, unformat_input_t * input,
409 vlib_cli_command_t * cmd)
410{
Florin Coras5bb23ec2019-08-31 09:45:13 -0700411 u8 one_session = 0, do_listeners = 0, sst, do_elog = 0, do_filter = 0;
412 u32 track_index, thread_index = 0, start = 0, end = ~0, session_index;
413 unformat_input_t _line_input, *line_input = &_line_input;
414 transport_proto_t transport_proto = TRANSPORT_N_PROTO;
415 session_state_t state = SESSION_N_STATES, *states = 0;
Florin Coras31c99552019-03-01 13:00:58 -0800416 session_main_t *smm = &session_main;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700417 clib_error_t *error = 0;
Florin Coras053a0e42018-11-13 15:52:38 -0800418 app_worker_t *app_wrk;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700419 u32 transport_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800420 const u8 *app_name;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700421 int verbose = 0;
422 session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500423
Florin Coras5bb23ec2019-08-31 09:45:13 -0700424 session_cli_return_if_not_enabled ();
425
426 if (!unformat_user (input, unformat_line_input, line_input))
Florin Corase04c2992017-03-01 08:17:34 -0800427 {
Florin Coras5bb23ec2019-08-31 09:45:13 -0700428 session_cli_show_all_sessions (vm, 0);
429 return 0;
Florin Corase04c2992017-03-01 08:17:34 -0800430 }
431
Florin Coras5bb23ec2019-08-31 09:45:13 -0700432 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Dave Barach68b0fb02017-02-28 15:15:56 -0500433 {
Florin Coras5bb23ec2019-08-31 09:45:13 -0700434 if (unformat (line_input, "verbose %d", &verbose))
Florin Corasbb292f42017-05-19 09:49:19 -0700435 ;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700436 else if (unformat (line_input, "verbose"))
Dave Barach68b0fb02017-02-28 15:15:56 -0500437 verbose = 1;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700438 else if (unformat (line_input, "listeners %U", unformat_transport_proto,
Florin Corasdbd44562017-11-09 19:30:17 -0800439 &transport_proto))
440 do_listeners = 1;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700441 else if (unformat (line_input, "%U", unformat_session, &s))
Dave Barach2c25a622017-06-26 11:35:07 -0400442 {
443 one_session = 1;
Dave Barach2c25a622017-06-26 11:35:07 -0400444 }
Florin Coras5bb23ec2019-08-31 09:45:13 -0700445 else if (unformat (line_input, "thread %u index %u", &thread_index,
446 &session_index))
447 {
448 s = session_get_if_valid (session_index, thread_index);
449 if (!s)
450 {
451 vlib_cli_output (vm, "session is not allocated");
452 goto done;
453 }
454 one_session = 1;
455 }
456 else if (unformat (line_input, "thread %u", &thread_index))
457 {
458 do_filter = 1;
459 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500460 else
Florin Coras5bb23ec2019-08-31 09:45:13 -0700461 if (unformat (line_input, "state %U", unformat_session_state, &state))
462 {
463 vec_add1 (states, state);
464 do_filter = 1;
465 }
466 else if (unformat (line_input, "proto %U index %u",
467 unformat_transport_proto, &transport_proto,
468 &transport_index))
469 {
470 transport_connection_t *tc;
471 tc = transport_get_connection (transport_proto, transport_index,
472 thread_index);
473 if (!tc)
474 {
475 vlib_cli_output (vm, "transport connection %u thread %u is not"
476 " allocated", transport_index, thread_index);
477 goto done;
478 }
479 s = session_get_if_valid (tc->s_index, thread_index);
480 if (!s)
481 {
482 vlib_cli_output (vm, "session for transport connection %u "
483 "thread %u does not exist", transport_index,
484 thread_index);
485 goto done;
486 }
487 one_session = 1;
488 }
489 else if (unformat (line_input, "proto %U", unformat_transport_proto,
490 &transport_proto))
491 do_filter = 1;
492 else if (unformat (line_input, "range %u %u", &start, &end))
493 do_filter = 1;
494 else if (unformat (line_input, "range %u", &start))
495 {
496 end = start + 50;
497 do_filter = 1;
498 }
499 else if (unformat (line_input, "elog"))
500 do_elog = 1;
501 else if (unformat (line_input, "protos"))
502 {
503 session_cli_print_transport_protos (vm);
504 goto done;
505 }
506 else if (unformat (line_input, "states"))
507 {
508 session_cli_print_session_states (vm);
509 goto done;
510 }
511 else
512 {
513 error = clib_error_return (0, "unknown input `%U'",
514 format_unformat_error, line_input);
515 goto done;
516 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500517 }
518
Dave Barach2c25a622017-06-26 11:35:07 -0400519 if (one_session)
520 {
Florin Coras31c99552019-03-01 13:00:58 -0800521 u8 *str = format (0, "%U", format_session, s, 3);
Florin Coras844a36d2018-12-20 09:50:50 -0800522 if (do_elog && s->session_state != SESSION_STATE_LISTENING)
Florin Corasaefbede2018-12-19 13:07:49 -0800523 {
524 elog_main_t *em = &vm->elog_main;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700525 transport_connection_t *tc;
Florin Corasaefbede2018-12-19 13:07:49 -0800526 f64 dt;
527
528 tc = session_get_transport (s);
529 track_index = transport_elog_track_index (tc);
530 dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
531 * vm->clib_time.seconds_per_clock;
532 if (track_index != ~0)
533 str = format (str, " session elog:\n%U", format_elog_track, em,
534 dt, track_index);
535 }
536 vlib_cli_output (vm, "%v", str);
Florin Coras3389dd22019-02-01 18:00:05 -0800537 vec_free (str);
Florin Coras5bb23ec2019-08-31 09:45:13 -0700538 goto done;
Dave Barach2c25a622017-06-26 11:35:07 -0400539 }
540
Florin Corasdbd44562017-11-09 19:30:17 -0800541 if (do_listeners)
542 {
543 sst = session_type_from_proto_and_ip (transport_proto, 1);
Florin Coras3389dd22019-02-01 18:00:05 -0800544 vlib_cli_output (vm, "%-50s%-24s", "Listener", "App");
Florin Coras5c9083d2018-04-13 06:39:07 -0700545 /* *INDENT-OFF* */
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700546 pool_foreach (s, smm->wrk[0].sessions, ({
Florin Coras5c9083d2018-04-13 06:39:07 -0700547 if (s->session_state != SESSION_STATE_LISTENING
548 || s->session_type != sst)
549 continue;
Florin Coras053a0e42018-11-13 15:52:38 -0800550 app_wrk = app_worker_get (s->app_wrk_index);
551 app_name = application_name_from_index (app_wrk->app_index);
Florin Coras31c99552019-03-01 13:00:58 -0800552 vlib_cli_output (vm, "%U%-25v%", format_session, s, 0,
Florin Corasde9a8492018-10-24 22:18:58 -0700553 app_name);
Florin Coras5c9083d2018-04-13 06:39:07 -0700554 }));
555 /* *INDENT-ON* */
Florin Coras5bb23ec2019-08-31 09:45:13 -0700556 goto done;
Florin Corasdbd44562017-11-09 19:30:17 -0800557 }
558
Florin Coras5bb23ec2019-08-31 09:45:13 -0700559 if (do_filter)
Dave Barach68b0fb02017-02-28 15:15:56 -0500560 {
Florin Coras5bb23ec2019-08-31 09:45:13 -0700561 if (end < start)
Dave Barach68b0fb02017-02-28 15:15:56 -0500562 {
Florin Coras5bb23ec2019-08-31 09:45:13 -0700563 error = clib_error_return (0, "invalid range start: %u end: %u",
564 start, end);
565 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -0500566 }
Florin Coras5bb23ec2019-08-31 09:45:13 -0700567 session_cli_show_session_filter (vm, thread_index, start, end, states,
568 transport_proto, verbose);
569 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -0500570 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500571
Florin Coras5bb23ec2019-08-31 09:45:13 -0700572 session_cli_show_all_sessions (vm, verbose);
573
574done:
575 unformat_free (line_input);
576 vec_free (states);
577 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500578}
579
Florin Corase04c2992017-03-01 08:17:34 -0800580/* *INDENT-OFF* */
Florin Coras66b11312017-07-31 17:18:03 -0700581VLIB_CLI_COMMAND (vlib_cli_show_session_command) =
Dave Barach68b0fb02017-02-28 15:15:56 -0500582{
Florin Corase04c2992017-03-01 08:17:34 -0800583 .path = "show session",
Florin Coras3389dd22019-02-01 18:00:05 -0800584 .short_help = "show session [verbose [n]] [listeners <proto>] "
Florin Coras5bb23ec2019-08-31 09:45:13 -0700585 "[<session-id> [elog]] [thread <n> [index <n>] "
586 "[proto <proto>] [state <state>] [range <min> [<max>]] "
587 "[protos] [states] ",
Florin Corase04c2992017-03-01 08:17:34 -0800588 .function = show_session_command_fn,
589};
590/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500591
Dave Barach2c25a622017-06-26 11:35:07 -0400592static int
Florin Coras288eaab2019-02-03 15:26:14 -0800593clear_session (session_t * s)
Dave Barach2c25a622017-06-26 11:35:07 -0400594{
Florin Coras15531972018-08-12 23:50:53 -0700595 app_worker_t *server_wrk = app_worker_get (s->app_wrk_index);
Florin Coras69b68ef2019-04-02 11:38:51 -0700596 app_worker_close_notify (server_wrk, s);
Dave Barach2c25a622017-06-26 11:35:07 -0400597 return 0;
598}
599
Dave Barach68b0fb02017-02-28 15:15:56 -0500600static clib_error_t *
601clear_session_command_fn (vlib_main_t * vm, unformat_input_t * input,
602 vlib_cli_command_t * cmd)
603{
Florin Coras31c99552019-03-01 13:00:58 -0800604 session_main_t *smm = &session_main;
Dave Barach2c25a622017-06-26 11:35:07 -0400605 u32 thread_index = 0, clear_all = 0;
Florin Coras31c99552019-03-01 13:00:58 -0800606 session_worker_t *wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500607 u32 session_index = ~0;
Florin Coras288eaab2019-02-03 15:26:14 -0800608 session_t *session;
Dave Barach68b0fb02017-02-28 15:15:56 -0500609
Florin Corase04c2992017-03-01 08:17:34 -0800610 if (!smm->is_enabled)
611 {
flyingeagle23e2125062017-04-20 20:01:14 +0800612 return clib_error_return (0, "session layer is not enabled");
Florin Corase04c2992017-03-01 08:17:34 -0800613 }
614
Dave Barach68b0fb02017-02-28 15:15:56 -0500615 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
616 {
617 if (unformat (input, "thread %d", &thread_index))
618 ;
619 else if (unformat (input, "session %d", &session_index))
620 ;
Dave Barach2c25a622017-06-26 11:35:07 -0400621 else if (unformat (input, "all"))
622 clear_all = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500623 else
624 return clib_error_return (0, "unknown input `%U'",
625 format_unformat_error, input);
626 }
627
Dave Barach2c25a622017-06-26 11:35:07 -0400628 if (!clear_all && session_index == ~0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500629 return clib_error_return (0, "session <nn> required, but not set.");
630
Dave Barach2c25a622017-06-26 11:35:07 -0400631 if (session_index != ~0)
632 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700633 session = session_get_if_valid (session_index, thread_index);
Dave Barach2c25a622017-06-26 11:35:07 -0400634 if (!session)
635 return clib_error_return (0, "no session %d on thread %d",
636 session_index, thread_index);
637 clear_session (session);
638 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500639
Dave Barach2c25a622017-06-26 11:35:07 -0400640 if (clear_all)
641 {
642 /* *INDENT-OFF* */
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700643 vec_foreach (wrk, smm->wrk)
Dave Barach2c25a622017-06-26 11:35:07 -0400644 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700645 pool_foreach(session, wrk->sessions, ({
Dave Barach2c25a622017-06-26 11:35:07 -0400646 clear_session (session);
647 }));
648 };
649 /* *INDENT-ON* */
650 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500651
652 return 0;
653}
654
Florin Corase04c2992017-03-01 08:17:34 -0800655/* *INDENT-OFF* */
656VLIB_CLI_COMMAND (clear_session_command, static) =
Dave Barach68b0fb02017-02-28 15:15:56 -0500657{
Florin Corase04c2992017-03-01 08:17:34 -0800658 .path = "clear session",
659 .short_help = "clear session thread <thread> session <index>",
660 .function = clear_session_command_fn,
661};
662/* *INDENT-ON* */
663
664static clib_error_t *
Florin Coras3eb50622017-07-13 01:24:57 -0400665show_session_fifo_trace_command_fn (vlib_main_t * vm,
666 unformat_input_t * input,
667 vlib_cli_command_t * cmd)
668{
Florin Coras288eaab2019-02-03 15:26:14 -0800669 session_t *s = 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400670 u8 is_rx = 0, *str = 0;
671
672 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
673 {
Florin Coras31c99552019-03-01 13:00:58 -0800674 if (unformat (input, "%U", unformat_session, &s))
Florin Coras3eb50622017-07-13 01:24:57 -0400675 ;
676 else if (unformat (input, "rx"))
677 is_rx = 1;
678 else if (unformat (input, "tx"))
679 is_rx = 0;
680 else
681 return clib_error_return (0, "unknown input `%U'",
682 format_unformat_error, input);
683 }
684
685 if (!SVM_FIFO_TRACE)
686 {
687 vlib_cli_output (vm, "fifo tracing not enabled");
688 return 0;
689 }
690
691 if (!s)
692 {
693 vlib_cli_output (vm, "could not find session");
694 return 0;
695 }
696
697 str = is_rx ?
Florin Coras288eaab2019-02-03 15:26:14 -0800698 svm_fifo_dump_trace (str, s->rx_fifo) :
699 svm_fifo_dump_trace (str, s->tx_fifo);
Florin Coras3eb50622017-07-13 01:24:57 -0400700
701 vlib_cli_output (vm, "%v", str);
702 return 0;
703}
704
705/* *INDENT-OFF* */
706VLIB_CLI_COMMAND (show_session_fifo_trace_command, static) =
707{
708 .path = "show session fifo trace",
709 .short_help = "show session fifo trace <session>",
710 .function = show_session_fifo_trace_command_fn,
711};
712/* *INDENT-ON* */
713
714static clib_error_t *
715session_replay_fifo_command_fn (vlib_main_t * vm, unformat_input_t * input,
716 vlib_cli_command_t * cmd)
717{
Florin Coras288eaab2019-02-03 15:26:14 -0800718 session_t *s = 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400719 u8 is_rx = 0, *str = 0;
720
721 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
722 {
Florin Coras31c99552019-03-01 13:00:58 -0800723 if (unformat (input, "%U", unformat_session, &s))
Florin Coras3eb50622017-07-13 01:24:57 -0400724 ;
725 else if (unformat (input, "rx"))
726 is_rx = 1;
727 else
728 return clib_error_return (0, "unknown input `%U'",
729 format_unformat_error, input);
730 }
731
732 if (!SVM_FIFO_TRACE)
733 {
734 vlib_cli_output (vm, "fifo tracing not enabled");
735 return 0;
736 }
737
738 if (!s)
739 {
740 vlib_cli_output (vm, "could not find session");
741 return 0;
742 }
743
744 str = is_rx ?
Florin Coras288eaab2019-02-03 15:26:14 -0800745 svm_fifo_replay (str, s->rx_fifo, 0, 1) :
746 svm_fifo_replay (str, s->tx_fifo, 0, 1);
Florin Coras3eb50622017-07-13 01:24:57 -0400747
748 vlib_cli_output (vm, "%v", str);
749 return 0;
750}
751
752/* *INDENT-OFF* */
753VLIB_CLI_COMMAND (session_replay_fifo_trace_command, static) =
754{
755 .path = "session replay fifo",
756 .short_help = "session replay fifo <session>",
757 .function = session_replay_fifo_command_fn,
758};
759/* *INDENT-ON* */
760
761static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -0800762session_enable_disable_fn (vlib_main_t * vm, unformat_input_t * input,
763 vlib_cli_command_t * cmd)
764{
Dave Wallace8af20542017-10-26 03:29:30 -0400765 unformat_input_t _line_input, *line_input = &_line_input;
Florin Corase04c2992017-03-01 08:17:34 -0800766 u8 is_en = 1;
Dave Wallace8af20542017-10-26 03:29:30 -0400767 clib_error_t *error;
Florin Corase04c2992017-03-01 08:17:34 -0800768
Dave Wallace8af20542017-10-26 03:29:30 -0400769 if (!unformat_user (input, unformat_line_input, line_input))
Swarup Nayak82d8ec22017-12-04 11:54:43 +0530770 return clib_error_return (0, "expected enable | disable");
Dave Wallace8af20542017-10-26 03:29:30 -0400771
772 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Florin Corase04c2992017-03-01 08:17:34 -0800773 {
Dave Wallace8af20542017-10-26 03:29:30 -0400774 if (unformat (line_input, "enable"))
Florin Corase04c2992017-03-01 08:17:34 -0800775 is_en = 1;
Dave Wallace8af20542017-10-26 03:29:30 -0400776 else if (unformat (line_input, "disable"))
Florin Corase04c2992017-03-01 08:17:34 -0800777 is_en = 0;
778 else
Dave Wallace8af20542017-10-26 03:29:30 -0400779 {
780 error = clib_error_return (0, "unknown input `%U'",
781 format_unformat_error, line_input);
782 unformat_free (line_input);
783 return error;
784 }
Florin Corase04c2992017-03-01 08:17:34 -0800785 }
786
Dave Wallace8af20542017-10-26 03:29:30 -0400787 unformat_free (line_input);
Florin Corase04c2992017-03-01 08:17:34 -0800788 return vnet_session_enable_disable (vm, is_en);
789}
790
791/* *INDENT-OFF* */
792VLIB_CLI_COMMAND (session_enable_disable_command, static) =
793{
794 .path = "session",
795 .short_help = "session [enable|disable]",
796 .function = session_enable_disable_fn,
797};
798/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500799
800/*
801 * fd.io coding-style-patch-verification: ON
802 *
803 * Local Variables:
804 * eval: (c-set-style "gnu")
805 * End:
806 */