blob: 588cb603d39ca746a9ccbbb5ee2a5701d404a25c [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;
Dave Barach68b0fb02017-02-28 15:15:56 -050058 tp_vft = session_get_transport_vft (ss->session_type);
59
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
Dave Barach2c25a622017-06-26 11:35:07 -040066 if (ss->session_state == SESSION_STATE_READY
Florin Corasc87c91d2017-08-16 19:55:49 -070067 || ss->session_state == SESSION_STATE_ACCEPTING
68 || ss->session_state == SESSION_STATE_CLOSED)
Dave Barach68b0fb02017-02-28 15:15:56 -050069 {
Florin Corasbb292f42017-05-19 09:49:19 -070070 s = format (s, "%U", tp_vft->format_connection, ss->connection_index,
71 ss->thread_index, verbose);
72 if (verbose == 1)
73 s = format (s, "%v", str);
Florin Coras93992a92017-05-24 18:03:56 -070074 if (verbose > 1)
Florin Coras6534b7a2017-07-18 05:38:03 -040075 s = format (s, "%U", format_stream_session_fifos, ss, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -050076 }
77 else if (ss->session_state == SESSION_STATE_LISTENING)
78 {
79 s = format (s, "%-40U%v", tp_vft->format_listener, ss->connection_index,
80 str);
81 }
Florin Corasbb292f42017-05-19 09:49:19 -070082 else if (ss->session_state == SESSION_STATE_CONNECTING)
Dave Barach68b0fb02017-02-28 15:15:56 -050083 {
Florin Corasbb292f42017-05-19 09:49:19 -070084 s = format (s, "%-40U%v", tp_vft->format_half_open,
85 ss->connection_index, str);
Dave Barach68b0fb02017-02-28 15:15:56 -050086 }
Dave Barach68b0fb02017-02-28 15:15:56 -050087 else
88 {
Florin Corase04c2992017-03-01 08:17:34 -080089 clib_warning ("Session in state: %d!", ss->session_state);
Dave Barach68b0fb02017-02-28 15:15:56 -050090 }
Dave Barach68b0fb02017-02-28 15:15:56 -050091 vec_free (str);
92
93 return s;
94}
95
Florin Coras3eb50622017-07-13 01:24:57 -040096uword
97unformat_stream_session_id (unformat_input_t * input, va_list * args)
98{
99 u8 *proto = va_arg (*args, u8 *);
100 ip46_address_t *lcl = va_arg (*args, ip46_address_t *);
101 ip46_address_t *rmt = va_arg (*args, ip46_address_t *);
102 u16 *lcl_port = va_arg (*args, u16 *);
103 u16 *rmt_port = va_arg (*args, u16 *);
104 u8 *is_ip4 = va_arg (*args, u8 *);
105 u8 tuple_is_set = 0;
106
107 memset (lcl, 0, sizeof (*lcl));
108 memset (rmt, 0, sizeof (*rmt));
109
110 if (unformat (input, "tcp"))
111 {
112 *proto = TRANSPORT_PROTO_TCP;
113 }
114 if (unformat (input, "udp"))
115 {
116 *proto = TRANSPORT_PROTO_UDP;
117 }
Dave Barachb7f1faa2017-08-29 11:43:37 -0400118 if (unformat (input, "%U:%d->%U:%d", unformat_ip4_address, &lcl->ip4,
119 lcl_port, unformat_ip4_address, &rmt->ip4, rmt_port))
Florin Coras3eb50622017-07-13 01:24:57 -0400120 {
121 *is_ip4 = 1;
122 tuple_is_set = 1;
123 }
124 else if (unformat (input, "%U:%d->%U:%d", unformat_ip6_address, &lcl->ip6,
125 lcl_port, unformat_ip6_address, &rmt->ip6, rmt_port))
126 {
127 *is_ip4 = 0;
128 tuple_is_set = 1;
129 }
Florin Coras3eb50622017-07-13 01:24:57 -0400130
Chris Lukeb2bcad62017-09-18 08:51:22 -0400131 return tuple_is_set;
Florin Coras3eb50622017-07-13 01:24:57 -0400132}
133
134uword
135unformat_stream_session (unformat_input_t * input, va_list * args)
136{
137 stream_session_t **result = va_arg (*args, stream_session_t **);
138 stream_session_t *s;
139 u8 proto = ~0;
140 ip46_address_t lcl, rmt;
Florin Corascea194d2017-10-02 00:18:51 -0700141 u32 lcl_port = 0, rmt_port = 0, fib_index = 0;
142 u8 is_ip4 = 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400143
Chris Lukeb2bcad62017-09-18 08:51:22 -0400144 if (!unformat (input, "%U", unformat_stream_session_id, &proto, &lcl, &rmt,
145 &lcl_port, &rmt_port, &is_ip4))
Florin Coras3eb50622017-07-13 01:24:57 -0400146 return 0;
147
Florin Coras3eb50622017-07-13 01:24:57 -0400148 if (is_ip4)
Florin Corascea194d2017-10-02 00:18:51 -0700149 s = session_lookup4 (fib_index, &lcl.ip4, &rmt.ip4,
150 clib_host_to_net_u16 (lcl_port),
151 clib_host_to_net_u16 (rmt_port), proto);
Florin Coras3eb50622017-07-13 01:24:57 -0400152 else
Florin Corascea194d2017-10-02 00:18:51 -0700153 s = session_lookup6 (fib_index, &lcl.ip6, &rmt.ip6,
154 clib_host_to_net_u16 (lcl_port),
155 clib_host_to_net_u16 (rmt_port), proto);
Florin Coras3eb50622017-07-13 01:24:57 -0400156 if (s)
157 {
158 *result = s;
159 return 1;
160 }
161 return 0;
162}
163
164uword
165unformat_transport_connection (unformat_input_t * input, va_list * args)
166{
167 transport_connection_t **result = va_arg (*args, transport_connection_t **);
168 u32 suggested_proto = va_arg (*args, u32);
169 transport_connection_t *tc;
170 u8 proto = ~0;
171 ip46_address_t lcl, rmt;
Florin Corascea194d2017-10-02 00:18:51 -0700172 u32 lcl_port = 0, rmt_port = 0, fib_index = 0;
173 u8 is_ip4 = 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400174
Chris Lukeb2bcad62017-09-18 08:51:22 -0400175 if (!unformat (input, "%U", unformat_stream_session_id, &proto, &lcl, &rmt,
176 &lcl_port, &rmt_port, &is_ip4))
Florin Coras3eb50622017-07-13 01:24:57 -0400177 return 0;
178
Florin Coras3eb50622017-07-13 01:24:57 -0400179 proto = (proto == (u8) ~ 0) ? suggested_proto : proto;
180 if (proto == (u8) ~ 0)
181 return 0;
Florin Coras3eb50622017-07-13 01:24:57 -0400182 if (is_ip4)
Florin Corascea194d2017-10-02 00:18:51 -0700183 tc = session_lookup_connection4 (fib_index, &lcl.ip4, &rmt.ip4,
184 clib_host_to_net_u16 (lcl_port),
185 clib_host_to_net_u16 (rmt_port), proto);
Florin Coras3eb50622017-07-13 01:24:57 -0400186 else
Florin Corascea194d2017-10-02 00:18:51 -0700187 tc = session_lookup_connection6 (fib_index, &lcl.ip6, &rmt.ip6,
188 clib_host_to_net_u16 (lcl_port),
189 clib_host_to_net_u16 (rmt_port), proto);
Florin Coras3eb50622017-07-13 01:24:57 -0400190
191 if (tc)
192 {
193 *result = tc;
194 return 1;
195 }
196 return 0;
197}
198
Dave Barach68b0fb02017-02-28 15:15:56 -0500199static clib_error_t *
200show_session_command_fn (vlib_main_t * vm, unformat_input_t * input,
201 vlib_cli_command_t * cmd)
202{
203 session_manager_main_t *smm = &session_manager_main;
204 int verbose = 0, i;
205 stream_session_t *pool;
206 stream_session_t *s;
Florin Coras3eb50622017-07-13 01:24:57 -0400207 u8 *str = 0, one_session = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500208
Florin Corase04c2992017-03-01 08:17:34 -0800209 if (!smm->is_enabled)
210 {
flyingeagle23e2125062017-04-20 20:01:14 +0800211 return clib_error_return (0, "session layer is not enabled");
Florin Corase04c2992017-03-01 08:17:34 -0800212 }
213
Dave Barach68b0fb02017-02-28 15:15:56 -0500214 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
215 {
Florin Corasbb292f42017-05-19 09:49:19 -0700216 if (unformat (input, "verbose %d", &verbose))
217 ;
218 else if (unformat (input, "verbose"))
Dave Barach68b0fb02017-02-28 15:15:56 -0500219 verbose = 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400220 else if (unformat (input, "%U", unformat_stream_session, &s))
Dave Barach2c25a622017-06-26 11:35:07 -0400221 {
222 one_session = 1;
Dave Barach2c25a622017-06-26 11:35:07 -0400223 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500224 else
Florin Coras3eb50622017-07-13 01:24:57 -0400225 return clib_error_return (0, "unknown input `%U'",
226 format_unformat_error, input);
Dave Barach68b0fb02017-02-28 15:15:56 -0500227 }
228
Dave Barach2c25a622017-06-26 11:35:07 -0400229 if (one_session)
230 {
Florin Coras6534b7a2017-07-18 05:38:03 -0400231 vlib_cli_output (vm, "%U", format_stream_session, s, 3);
Dave Barach2c25a622017-06-26 11:35:07 -0400232 return 0;
233 }
234
Dave Barach68b0fb02017-02-28 15:15:56 -0500235 for (i = 0; i < vec_len (smm->sessions); i++)
236 {
237 u32 once_per_pool;
238 pool = smm->sessions[i];
239
240 once_per_pool = 1;
241
242 if (pool_elts (pool))
243 {
244
245 vlib_cli_output (vm, "Thread %d: %d active sessions",
246 i, pool_elts (pool));
247 if (verbose)
248 {
Florin Corasbb292f42017-05-19 09:49:19 -0700249 if (once_per_pool && verbose == 1)
Dave Barach68b0fb02017-02-28 15:15:56 -0500250 {
Florin Corasc87c91d2017-08-16 19:55:49 -0700251 str = format (str, "%-50s%-15s%-10s%-10s%-10s",
252 "Connection", "State", "Rx-f", "Tx-f",
253 "S-idx");
Dave Barach68b0fb02017-02-28 15:15:56 -0500254 vlib_cli_output (vm, "%v", str);
255 vec_reset_length (str);
256 once_per_pool = 0;
257 }
258
259 /* *INDENT-OFF* */
260 pool_foreach (s, pool,
261 ({
Florin Corasbb292f42017-05-19 09:49:19 -0700262 vec_reset_length (str);
263 str = format (str, "%U", format_stream_session, s, verbose);
Florin Corasbb292f42017-05-19 09:49:19 -0700264 vlib_cli_output (vm, "%v", str);
Dave Barach68b0fb02017-02-28 15:15:56 -0500265 }));
266 /* *INDENT-ON* */
267 }
268 }
269 else
270 vlib_cli_output (vm, "Thread %d: no active sessions", i);
Dave Barach2c25a622017-06-26 11:35:07 -0400271 vec_reset_length (str);
Dave Barach68b0fb02017-02-28 15:15:56 -0500272 }
273 vec_free (str);
274
275 return 0;
276}
277
Florin Corase04c2992017-03-01 08:17:34 -0800278/* *INDENT-OFF* */
Florin Coras66b11312017-07-31 17:18:03 -0700279VLIB_CLI_COMMAND (vlib_cli_show_session_command) =
Dave Barach68b0fb02017-02-28 15:15:56 -0500280{
Florin Corase04c2992017-03-01 08:17:34 -0800281 .path = "show session",
rootc9d1c5b2017-08-15 12:58:31 -0400282 .short_help = "show session [verbose [nnn]]",
Florin Corase04c2992017-03-01 08:17:34 -0800283 .function = show_session_command_fn,
284};
285/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500286
Dave Barach2c25a622017-06-26 11:35:07 -0400287static int
288clear_session (stream_session_t * s)
289{
290 application_t *server = application_get (s->app_index);
291 server->cb_fns.session_disconnect_callback (s);
292 return 0;
293}
294
Dave Barach68b0fb02017-02-28 15:15:56 -0500295static clib_error_t *
296clear_session_command_fn (vlib_main_t * vm, unformat_input_t * input,
297 vlib_cli_command_t * cmd)
298{
299 session_manager_main_t *smm = &session_manager_main;
Dave Barach2c25a622017-06-26 11:35:07 -0400300 u32 thread_index = 0, clear_all = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500301 u32 session_index = ~0;
Dave Barach2c25a622017-06-26 11:35:07 -0400302 stream_session_t **pool, *session;
Dave Barach68b0fb02017-02-28 15:15:56 -0500303
Florin Corase04c2992017-03-01 08:17:34 -0800304 if (!smm->is_enabled)
305 {
flyingeagle23e2125062017-04-20 20:01:14 +0800306 return clib_error_return (0, "session layer is not enabled");
Florin Corase04c2992017-03-01 08:17:34 -0800307 }
308
Dave Barach68b0fb02017-02-28 15:15:56 -0500309 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
310 {
311 if (unformat (input, "thread %d", &thread_index))
312 ;
313 else if (unformat (input, "session %d", &session_index))
314 ;
Dave Barach2c25a622017-06-26 11:35:07 -0400315 else if (unformat (input, "all"))
316 clear_all = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500317 else
318 return clib_error_return (0, "unknown input `%U'",
319 format_unformat_error, input);
320 }
321
Dave Barach2c25a622017-06-26 11:35:07 -0400322 if (!clear_all && session_index == ~0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500323 return clib_error_return (0, "session <nn> required, but not set.");
324
Dave Barach2c25a622017-06-26 11:35:07 -0400325 if (session_index != ~0)
326 {
327 session = stream_session_get_if_valid (session_index, thread_index);
328 if (!session)
329 return clib_error_return (0, "no session %d on thread %d",
330 session_index, thread_index);
331 clear_session (session);
332 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500333
Dave Barach2c25a622017-06-26 11:35:07 -0400334 if (clear_all)
335 {
336 /* *INDENT-OFF* */
337 vec_foreach (pool, smm->sessions)
338 {
339 pool_foreach(session, *pool, ({
340 clear_session (session);
341 }));
342 };
343 /* *INDENT-ON* */
344 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500345
346 return 0;
347}
348
Florin Corase04c2992017-03-01 08:17:34 -0800349/* *INDENT-OFF* */
350VLIB_CLI_COMMAND (clear_session_command, static) =
Dave Barach68b0fb02017-02-28 15:15:56 -0500351{
Florin Corase04c2992017-03-01 08:17:34 -0800352 .path = "clear session",
353 .short_help = "clear session thread <thread> session <index>",
354 .function = clear_session_command_fn,
355};
356/* *INDENT-ON* */
357
358static clib_error_t *
Florin Coras3eb50622017-07-13 01:24:57 -0400359show_session_fifo_trace_command_fn (vlib_main_t * vm,
360 unformat_input_t * input,
361 vlib_cli_command_t * cmd)
362{
363 stream_session_t *s = 0;
364 u8 is_rx = 0, *str = 0;
365
366 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
367 {
368 if (unformat (input, "%U", unformat_stream_session, &s))
369 ;
370 else if (unformat (input, "rx"))
371 is_rx = 1;
372 else if (unformat (input, "tx"))
373 is_rx = 0;
374 else
375 return clib_error_return (0, "unknown input `%U'",
376 format_unformat_error, input);
377 }
378
379 if (!SVM_FIFO_TRACE)
380 {
381 vlib_cli_output (vm, "fifo tracing not enabled");
382 return 0;
383 }
384
385 if (!s)
386 {
387 vlib_cli_output (vm, "could not find session");
388 return 0;
389 }
390
391 str = is_rx ?
392 svm_fifo_dump_trace (str, s->server_rx_fifo) :
393 svm_fifo_dump_trace (str, s->server_tx_fifo);
394
395 vlib_cli_output (vm, "%v", str);
396 return 0;
397}
398
399/* *INDENT-OFF* */
400VLIB_CLI_COMMAND (show_session_fifo_trace_command, static) =
401{
402 .path = "show session fifo trace",
403 .short_help = "show session fifo trace <session>",
404 .function = show_session_fifo_trace_command_fn,
405};
406/* *INDENT-ON* */
407
408static clib_error_t *
409session_replay_fifo_command_fn (vlib_main_t * vm, unformat_input_t * input,
410 vlib_cli_command_t * cmd)
411{
412 stream_session_t *s = 0;
413 u8 is_rx = 0, *str = 0;
414
415 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
416 {
417 if (unformat (input, "%U", unformat_stream_session, &s))
418 ;
419 else if (unformat (input, "rx"))
420 is_rx = 1;
421 else
422 return clib_error_return (0, "unknown input `%U'",
423 format_unformat_error, input);
424 }
425
426 if (!SVM_FIFO_TRACE)
427 {
428 vlib_cli_output (vm, "fifo tracing not enabled");
429 return 0;
430 }
431
432 if (!s)
433 {
434 vlib_cli_output (vm, "could not find session");
435 return 0;
436 }
437
438 str = is_rx ?
439 svm_fifo_replay (str, s->server_rx_fifo, 0, 1) :
440 svm_fifo_replay (str, s->server_tx_fifo, 0, 1);
441
442 vlib_cli_output (vm, "%v", str);
443 return 0;
444}
445
446/* *INDENT-OFF* */
447VLIB_CLI_COMMAND (session_replay_fifo_trace_command, static) =
448{
449 .path = "session replay fifo",
450 .short_help = "session replay fifo <session>",
451 .function = session_replay_fifo_command_fn,
452};
453/* *INDENT-ON* */
454
455static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -0800456session_enable_disable_fn (vlib_main_t * vm, unformat_input_t * input,
457 vlib_cli_command_t * cmd)
458{
459 u8 is_en = 1;
460
461 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
462 {
463 if (unformat (input, "enable"))
464 is_en = 1;
465 else if (unformat (input, "disable"))
466 is_en = 0;
467 else
468 return clib_error_return (0, "unknown input `%U'",
469 format_unformat_error, input);
470 }
471
472 return vnet_session_enable_disable (vm, is_en);
473}
474
475/* *INDENT-OFF* */
476VLIB_CLI_COMMAND (session_enable_disable_command, static) =
477{
478 .path = "session",
479 .short_help = "session [enable|disable]",
480 .function = session_enable_disable_fn,
481};
482/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500483
484/*
485 * fd.io coding-style-patch-verification: ON
486 *
487 * Local Variables:
488 * eval: (c-set-style "gnu")
489 * End:
490 */