FD.io VPP  v17.07.01-10-g3be13f0
Vector Packet Processing
session_cli.c
Go to the documentation of this file.
1 /*
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  */
16 #include <vnet/session/session.h>
17 
18 u8 *
19 format_stream_session_fifos (u8 * s, va_list * args)
20 {
21  stream_session_t *ss = va_arg (*args, stream_session_t *);
22  s = format (s, " Rx fifo: %U", format_svm_fifo, ss->server_rx_fifo, 1);
23  s = format (s, " Tx fifo: %U", format_svm_fifo, ss->server_tx_fifo, 1);
24  return s;
25 }
26 
27 /**
28  * Format stream session as per the following format
29  *
30  * verbose:
31  * "Connection", "Rx fifo", "Tx fifo", "Session Index"
32  * non-verbose:
33  * "Connection"
34  */
35 u8 *
36 format_stream_session (u8 * s, va_list * args)
37 {
38  stream_session_t *ss = va_arg (*args, stream_session_t *);
39  int verbose = va_arg (*args, int);
40  transport_proto_vft_t *tp_vft;
41  u8 *str = 0;
42  tp_vft = session_get_transport_vft (ss->session_type);
43 
44  if (verbose == 1)
45  str = format (0, "%-10u%-10u%-10lld",
46  svm_fifo_max_dequeue (ss->server_rx_fifo),
47  svm_fifo_max_enqueue (ss->server_tx_fifo),
49 
50  if (ss->session_state == SESSION_STATE_READY)
51  {
52  s = format (s, "%U", tp_vft->format_connection, ss->connection_index,
53  ss->thread_index, verbose);
54  if (verbose == 1)
55  s = format (s, "%v", str);
56  if (verbose > 1)
57  s = format (s, "%U", format_stream_session_fifos, ss);
58  }
59  else if (ss->session_state == SESSION_STATE_LISTENING)
60  {
61  s = format (s, "%-40U%v", tp_vft->format_listener, ss->connection_index,
62  str);
63  }
64  else if (ss->session_state == SESSION_STATE_CONNECTING)
65  {
66  s = format (s, "%-40U%v", tp_vft->format_half_open,
67  ss->connection_index, str);
68  }
69  else if (ss->session_state == SESSION_STATE_CLOSED)
70  {
71  s = format (s, "[CL] %-40U", tp_vft->format_connection,
72  ss->connection_index, ss->thread_index, verbose);
73  if (verbose == 1)
74  s = format (s, "%v", str);
75  if (verbose > 1)
76  s = format (s, "%U", format_stream_session_fifos, ss);
77  }
78  else
79  {
80  clib_warning ("Session in state: %d!", ss->session_state);
81  }
82 
83  vec_free (str);
84 
85  return s;
86 }
87 
88 static clib_error_t *
90  vlib_cli_command_t * cmd)
91 {
93  int verbose = 0, i;
94  stream_session_t *pool;
96  u8 *str = 0;
97 
98  if (!smm->is_enabled)
99  {
100  return clib_error_return (0, "session layer is not enabled");
101  }
102 
104  {
105  if (unformat (input, "verbose %d", &verbose))
106  ;
107  else if (unformat (input, "verbose"))
108  verbose = 1;
109  else
110  break;
111  }
112 
113  for (i = 0; i < vec_len (smm->sessions); i++)
114  {
115  u32 once_per_pool;
116  pool = smm->sessions[i];
117 
118  once_per_pool = 1;
119 
120  if (pool_elts (pool))
121  {
122 
123  vlib_cli_output (vm, "Thread %d: %d active sessions",
124  i, pool_elts (pool));
125  if (verbose)
126  {
127  if (once_per_pool && verbose == 1)
128  {
129  str =
130  format (str, "%-50s%-15s%-10s%-10s%-10s", "Connection",
131  "State", "Rx-f", "Tx-f", "S-idx");
132  vlib_cli_output (vm, "%v", str);
133  vec_reset_length (str);
134  once_per_pool = 0;
135  }
136 
137  /* *INDENT-OFF* */
138  pool_foreach (s, pool,
139  ({
140  vec_reset_length (str);
141  str = format (str, "%U", format_stream_session, s, verbose);
142  vlib_cli_output (vm, "%v", str);
143  }));
144  /* *INDENT-ON* */
145  }
146  }
147  else
148  vlib_cli_output (vm, "Thread %d: no active sessions", i);
149  }
150  vec_free (str);
151 
152  return 0;
153 }
154 
155 /* *INDENT-OFF* */
156 VLIB_CLI_COMMAND (show_session_command, static) =
157 {
158  .path = "show session",
159  .short_help = "show session [verbose]",
160  .function = show_session_command_fn,
161 };
162 /* *INDENT-ON* */
163 
164 static clib_error_t *
166  vlib_cli_command_t * cmd)
167 {
169  u32 thread_index = 0;
170  u32 session_index = ~0;
171  stream_session_t *pool, *session;
172  application_t *server;
173 
174  if (!smm->is_enabled)
175  {
176  return clib_error_return (0, "session layer is not enabled");
177  }
178 
180  {
181  if (unformat (input, "thread %d", &thread_index))
182  ;
183  else if (unformat (input, "session %d", &session_index))
184  ;
185  else
186  return clib_error_return (0, "unknown input `%U'",
187  format_unformat_error, input);
188  }
189 
190  if (session_index == ~0)
191  return clib_error_return (0, "session <nn> required, but not set.");
192 
193  if (thread_index > vec_len (smm->sessions))
194  return clib_error_return (0, "thread %d out of range [0-%d]",
195  thread_index, vec_len (smm->sessions));
196 
197  pool = smm->sessions[thread_index];
198 
199  if (pool_is_free_index (pool, session_index))
200  return clib_error_return (0, "session %d not active", session_index);
201 
202  session = pool_elt_at_index (pool, session_index);
203  server = application_get (session->app_index);
204 
205  /* Disconnect both app and transport */
206  server->cb_fns.session_disconnect_callback (session);
207 
208  return 0;
209 }
210 
211 /* *INDENT-OFF* */
212 VLIB_CLI_COMMAND (clear_session_command, static) =
213 {
214  .path = "clear session",
215  .short_help = "clear session thread <thread> session <index>",
216  .function = clear_session_command_fn,
217 };
218 /* *INDENT-ON* */
219 
220 static clib_error_t *
222  vlib_cli_command_t * cmd)
223 {
224  u8 is_en = 1;
225 
227  {
228  if (unformat (input, "enable"))
229  is_en = 1;
230  else if (unformat (input, "disable"))
231  is_en = 0;
232  else
233  return clib_error_return (0, "unknown input `%U'",
234  format_unformat_error, input);
235  }
236 
237  return vnet_session_enable_disable (vm, is_en);
238 }
239 
240 /* *INDENT-OFF* */
241 VLIB_CLI_COMMAND (session_enable_disable_command, static) =
242 {
243  .path = "session",
244  .short_help = "session [enable|disable]",
245  .function = session_enable_disable_fn,
246 };
247 /* *INDENT-ON* */
248 
249 /*
250  * fd.io coding-style-patch-verification: ON
251  *
252  * Local Variables:
253  * eval: (c-set-style "gnu")
254  * End:
255  */
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:337
format_function_t format_svm_fifo
Definition: svm_fifo.h:125
session_manager_main_t session_manager_main
Definition: session.c:33
static clib_error_t * clear_session_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: session_cli.c:165
static u32 svm_fifo_max_enqueue(svm_fifo_t *f)
Definition: svm_fifo.h:77
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
struct _stream_session_t stream_session_t
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:376
static u32 svm_fifo_max_dequeue(svm_fifo_t *f)
Definition: svm_fifo.h:71
#define clib_error_return(e, args...)
Definition: error.h:99
static clib_error_t * show_session_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: session_cli.c:89
u8 * format_stream_session(u8 *s, va_list *args)
Format stream session as per the following format.
Definition: session_cli.c:36
struct _transport_proto_vft transport_proto_vft_t
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:397
struct _unformat_input_t unformat_input_t
struct _session_manager_main session_manager_main_t
Definition: session.h:157
clib_error_t * vnet_session_enable_disable(vlib_main_t *vm, u8 is_en)
Definition: session.c:1179
#define UNFORMAT_END_OF_INPUT
Definition: format.h:143
static u32 stream_session_get_index(stream_session_t *s)
Definition: session.h:339
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:340
u8 * format_stream_session_fifos(u8 *s, va_list *args)
Definition: session_cli.c:19
#define clib_warning(format, args...)
Definition: error.h:59
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:238
struct _application application_t
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:154
unsigned int u32
Definition: types.h:88
transport_proto_vft_t * session_get_transport_vft(u8 type)
Definition: session.c:1055
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unsigned char u8
Definition: types.h:56
application_t * application_get(u32 index)
Definition: application.c:189
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
static clib_error_t * session_enable_disable_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: session_cli.c:221
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:680
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:169
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:109