Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 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 | */ |
| 15 | #include <vnet/session/application.h> |
| 16 | #include <vnet/session/session.h> |
| 17 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 18 | u8 * |
| 19 | format_stream_session_fifos (u8 * s, va_list * args) |
| 20 | { |
| 21 | stream_session_t *ss = va_arg (*args, stream_session_t *); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 22 | int verbose = va_arg (*args, int); |
| 23 | session_fifo_event_t _e, *e = &_e; |
| 24 | u8 found; |
| 25 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 26 | s = format (s, " Rx fifo: %U", format_svm_fifo, ss->server_rx_fifo, 1); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 27 | 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 Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 33 | s = format (s, " Tx fifo: %U", format_svm_fifo, ss->server_tx_fifo, 1); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 34 | 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 Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 40 | return s; |
| 41 | } |
| 42 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 43 | /** |
| 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 | */ |
| 51 | u8 * |
| 52 | format_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 Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 58 | tp_vft = transport_protocol_get_vft (ss->session_type); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 59 | |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 60 | if (verbose == 1 && ss->session_state >= SESSION_STATE_ACCEPTING) |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 61 | 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 Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 65 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 66 | if (ss->session_state >= SESSION_STATE_ACCEPTING) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 67 | { |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 68 | 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 Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 72 | if (verbose > 1) |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 73 | s = format (s, "%U", format_stream_session_fifos, ss, verbose); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 74 | } |
| 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 Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 80 | else if (ss->session_state == SESSION_STATE_CONNECTING) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 81 | { |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 82 | s = format (s, "%-40U%v", tp_vft->format_half_open, |
| 83 | ss->connection_index, str); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 84 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 85 | else |
| 86 | { |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 87 | clib_warning ("Session in state: %d!", ss->session_state); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 88 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 89 | vec_free (str); |
| 90 | |
| 91 | return s; |
| 92 | } |
| 93 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 94 | uword |
| 95 | unformat_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 Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 116 | if (unformat (input, "%U:%d->%U:%d", unformat_ip4_address, &lcl->ip4, |
| 117 | lcl_port, unformat_ip4_address, &rmt->ip4, rmt_port)) |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 118 | { |
| 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 Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 128 | |
Chris Luke | b2bcad6 | 2017-09-18 08:51:22 -0400 | [diff] [blame] | 129 | return tuple_is_set; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | uword |
| 133 | unformat_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 Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 139 | u32 lcl_port = 0, rmt_port = 0, fib_index = 0; |
| 140 | u8 is_ip4 = 0; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 141 | |
Chris Luke | b2bcad6 | 2017-09-18 08:51:22 -0400 | [diff] [blame] | 142 | if (!unformat (input, "%U", unformat_stream_session_id, &proto, &lcl, &rmt, |
| 143 | &lcl_port, &rmt_port, &is_ip4)) |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 144 | return 0; |
| 145 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 146 | if (is_ip4) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 147 | 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 Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 150 | else |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 151 | 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 Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 154 | if (s) |
| 155 | { |
| 156 | *result = s; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 157 | session_pool_remove_peeker (s->thread_index); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 158 | return 1; |
| 159 | } |
| 160 | return 0; |
| 161 | } |
| 162 | |
| 163 | uword |
| 164 | unformat_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 Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 171 | u32 lcl_port = 0, rmt_port = 0, fib_index = 0; |
| 172 | u8 is_ip4 = 0; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 173 | |
Chris Luke | b2bcad6 | 2017-09-18 08:51:22 -0400 | [diff] [blame] | 174 | if (!unformat (input, "%U", unformat_stream_session_id, &proto, &lcl, &rmt, |
| 175 | &lcl_port, &rmt_port, &is_ip4)) |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 176 | return 0; |
| 177 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 178 | proto = (proto == (u8) ~ 0) ? suggested_proto : proto; |
| 179 | if (proto == (u8) ~ 0) |
| 180 | return 0; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 181 | if (is_ip4) |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 182 | 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 Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 185 | else |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 186 | 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 Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 189 | |
| 190 | if (tc) |
| 191 | { |
| 192 | *result = tc; |
| 193 | return 1; |
| 194 | } |
| 195 | return 0; |
| 196 | } |
| 197 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 198 | static clib_error_t * |
| 199 | show_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; |
| 203 | int verbose = 0, i; |
| 204 | stream_session_t *pool; |
| 205 | stream_session_t *s; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 206 | u8 *str = 0, one_session = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 207 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 208 | if (!smm->is_enabled) |
| 209 | { |
flyingeagle23 | e212506 | 2017-04-20 20:01:14 +0800 | [diff] [blame] | 210 | return clib_error_return (0, "session layer is not enabled"); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 211 | } |
| 212 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 213 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 214 | { |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 215 | if (unformat (input, "verbose %d", &verbose)) |
| 216 | ; |
| 217 | else if (unformat (input, "verbose")) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 218 | verbose = 1; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 219 | else if (unformat (input, "%U", unformat_stream_session, &s)) |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 220 | { |
| 221 | one_session = 1; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 222 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 223 | else |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 224 | return clib_error_return (0, "unknown input `%U'", |
| 225 | format_unformat_error, input); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 226 | } |
| 227 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 228 | if (one_session) |
| 229 | { |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 230 | vlib_cli_output (vm, "%U", format_stream_session, s, 3); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 231 | return 0; |
| 232 | } |
| 233 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 234 | for (i = 0; i < vec_len (smm->sessions); i++) |
| 235 | { |
| 236 | u32 once_per_pool; |
| 237 | pool = smm->sessions[i]; |
| 238 | |
| 239 | once_per_pool = 1; |
| 240 | |
| 241 | if (pool_elts (pool)) |
| 242 | { |
| 243 | |
| 244 | vlib_cli_output (vm, "Thread %d: %d active sessions", |
| 245 | i, pool_elts (pool)); |
| 246 | if (verbose) |
| 247 | { |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 248 | if (once_per_pool && verbose == 1) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 249 | { |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 250 | str = format (str, "%-50s%-15s%-10s%-10s%-10s", |
| 251 | "Connection", "State", "Rx-f", "Tx-f", |
| 252 | "S-idx"); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 253 | vlib_cli_output (vm, "%v", str); |
| 254 | vec_reset_length (str); |
| 255 | once_per_pool = 0; |
| 256 | } |
| 257 | |
| 258 | /* *INDENT-OFF* */ |
| 259 | pool_foreach (s, pool, |
| 260 | ({ |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 261 | vec_reset_length (str); |
| 262 | str = format (str, "%U", format_stream_session, s, verbose); |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 263 | vlib_cli_output (vm, "%v", str); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 264 | })); |
| 265 | /* *INDENT-ON* */ |
| 266 | } |
| 267 | } |
| 268 | else |
| 269 | vlib_cli_output (vm, "Thread %d: no active sessions", i); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 270 | vec_reset_length (str); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 271 | } |
| 272 | vec_free (str); |
| 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 277 | /* *INDENT-OFF* */ |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 278 | VLIB_CLI_COMMAND (vlib_cli_show_session_command) = |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 279 | { |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 280 | .path = "show session", |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 281 | .short_help = "show session [verbose [nnn]]", |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 282 | .function = show_session_command_fn, |
| 283 | }; |
| 284 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 285 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 286 | static int |
| 287 | clear_session (stream_session_t * s) |
| 288 | { |
| 289 | application_t *server = application_get (s->app_index); |
| 290 | server->cb_fns.session_disconnect_callback (s); |
| 291 | return 0; |
| 292 | } |
| 293 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 294 | static clib_error_t * |
| 295 | clear_session_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 296 | vlib_cli_command_t * cmd) |
| 297 | { |
| 298 | session_manager_main_t *smm = &session_manager_main; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 299 | u32 thread_index = 0, clear_all = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 300 | u32 session_index = ~0; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 301 | stream_session_t **pool, *session; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 302 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 303 | if (!smm->is_enabled) |
| 304 | { |
flyingeagle23 | e212506 | 2017-04-20 20:01:14 +0800 | [diff] [blame] | 305 | return clib_error_return (0, "session layer is not enabled"); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 306 | } |
| 307 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 308 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 309 | { |
| 310 | if (unformat (input, "thread %d", &thread_index)) |
| 311 | ; |
| 312 | else if (unformat (input, "session %d", &session_index)) |
| 313 | ; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 314 | else if (unformat (input, "all")) |
| 315 | clear_all = 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 316 | else |
| 317 | return clib_error_return (0, "unknown input `%U'", |
| 318 | format_unformat_error, input); |
| 319 | } |
| 320 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 321 | if (!clear_all && session_index == ~0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 322 | return clib_error_return (0, "session <nn> required, but not set."); |
| 323 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 324 | if (session_index != ~0) |
| 325 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 326 | session = session_get_if_valid (session_index, thread_index); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 327 | if (!session) |
| 328 | return clib_error_return (0, "no session %d on thread %d", |
| 329 | session_index, thread_index); |
| 330 | clear_session (session); |
| 331 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 332 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 333 | if (clear_all) |
| 334 | { |
| 335 | /* *INDENT-OFF* */ |
| 336 | vec_foreach (pool, smm->sessions) |
| 337 | { |
| 338 | pool_foreach(session, *pool, ({ |
| 339 | clear_session (session); |
| 340 | })); |
| 341 | }; |
| 342 | /* *INDENT-ON* */ |
| 343 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 344 | |
| 345 | return 0; |
| 346 | } |
| 347 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 348 | /* *INDENT-OFF* */ |
| 349 | VLIB_CLI_COMMAND (clear_session_command, static) = |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 350 | { |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 351 | .path = "clear session", |
| 352 | .short_help = "clear session thread <thread> session <index>", |
| 353 | .function = clear_session_command_fn, |
| 354 | }; |
| 355 | /* *INDENT-ON* */ |
| 356 | |
| 357 | static clib_error_t * |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 358 | show_session_fifo_trace_command_fn (vlib_main_t * vm, |
| 359 | unformat_input_t * input, |
| 360 | vlib_cli_command_t * cmd) |
| 361 | { |
| 362 | stream_session_t *s = 0; |
| 363 | u8 is_rx = 0, *str = 0; |
| 364 | |
| 365 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 366 | { |
| 367 | if (unformat (input, "%U", unformat_stream_session, &s)) |
| 368 | ; |
| 369 | else if (unformat (input, "rx")) |
| 370 | is_rx = 1; |
| 371 | else if (unformat (input, "tx")) |
| 372 | is_rx = 0; |
| 373 | else |
| 374 | return clib_error_return (0, "unknown input `%U'", |
| 375 | format_unformat_error, input); |
| 376 | } |
| 377 | |
| 378 | if (!SVM_FIFO_TRACE) |
| 379 | { |
| 380 | vlib_cli_output (vm, "fifo tracing not enabled"); |
| 381 | return 0; |
| 382 | } |
| 383 | |
| 384 | if (!s) |
| 385 | { |
| 386 | vlib_cli_output (vm, "could not find session"); |
| 387 | return 0; |
| 388 | } |
| 389 | |
| 390 | str = is_rx ? |
| 391 | svm_fifo_dump_trace (str, s->server_rx_fifo) : |
| 392 | svm_fifo_dump_trace (str, s->server_tx_fifo); |
| 393 | |
| 394 | vlib_cli_output (vm, "%v", str); |
| 395 | return 0; |
| 396 | } |
| 397 | |
| 398 | /* *INDENT-OFF* */ |
| 399 | VLIB_CLI_COMMAND (show_session_fifo_trace_command, static) = |
| 400 | { |
| 401 | .path = "show session fifo trace", |
| 402 | .short_help = "show session fifo trace <session>", |
| 403 | .function = show_session_fifo_trace_command_fn, |
| 404 | }; |
| 405 | /* *INDENT-ON* */ |
| 406 | |
| 407 | static clib_error_t * |
| 408 | session_replay_fifo_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 409 | vlib_cli_command_t * cmd) |
| 410 | { |
| 411 | stream_session_t *s = 0; |
| 412 | u8 is_rx = 0, *str = 0; |
| 413 | |
| 414 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 415 | { |
| 416 | if (unformat (input, "%U", unformat_stream_session, &s)) |
| 417 | ; |
| 418 | else if (unformat (input, "rx")) |
| 419 | is_rx = 1; |
| 420 | else |
| 421 | return clib_error_return (0, "unknown input `%U'", |
| 422 | format_unformat_error, input); |
| 423 | } |
| 424 | |
| 425 | if (!SVM_FIFO_TRACE) |
| 426 | { |
| 427 | vlib_cli_output (vm, "fifo tracing not enabled"); |
| 428 | return 0; |
| 429 | } |
| 430 | |
| 431 | if (!s) |
| 432 | { |
| 433 | vlib_cli_output (vm, "could not find session"); |
| 434 | return 0; |
| 435 | } |
| 436 | |
| 437 | str = is_rx ? |
| 438 | svm_fifo_replay (str, s->server_rx_fifo, 0, 1) : |
| 439 | svm_fifo_replay (str, s->server_tx_fifo, 0, 1); |
| 440 | |
| 441 | vlib_cli_output (vm, "%v", str); |
| 442 | return 0; |
| 443 | } |
| 444 | |
| 445 | /* *INDENT-OFF* */ |
| 446 | VLIB_CLI_COMMAND (session_replay_fifo_trace_command, static) = |
| 447 | { |
| 448 | .path = "session replay fifo", |
| 449 | .short_help = "session replay fifo <session>", |
| 450 | .function = session_replay_fifo_command_fn, |
| 451 | }; |
| 452 | /* *INDENT-ON* */ |
| 453 | |
| 454 | static clib_error_t * |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 455 | session_enable_disable_fn (vlib_main_t * vm, unformat_input_t * input, |
| 456 | vlib_cli_command_t * cmd) |
| 457 | { |
Dave Wallace | 8af2054 | 2017-10-26 03:29:30 -0400 | [diff] [blame] | 458 | unformat_input_t _line_input, *line_input = &_line_input; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 459 | u8 is_en = 1; |
Dave Wallace | 8af2054 | 2017-10-26 03:29:30 -0400 | [diff] [blame] | 460 | clib_error_t *error; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 461 | |
Dave Wallace | 8af2054 | 2017-10-26 03:29:30 -0400 | [diff] [blame] | 462 | if (!unformat_user (input, unformat_line_input, line_input)) |
| 463 | return 0; |
| 464 | |
| 465 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 466 | { |
Dave Wallace | 8af2054 | 2017-10-26 03:29:30 -0400 | [diff] [blame] | 467 | if (unformat (line_input, "enable")) |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 468 | is_en = 1; |
Dave Wallace | 8af2054 | 2017-10-26 03:29:30 -0400 | [diff] [blame] | 469 | else if (unformat (line_input, "disable")) |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 470 | is_en = 0; |
| 471 | else |
Dave Wallace | 8af2054 | 2017-10-26 03:29:30 -0400 | [diff] [blame] | 472 | { |
| 473 | error = clib_error_return (0, "unknown input `%U'", |
| 474 | format_unformat_error, line_input); |
| 475 | unformat_free (line_input); |
| 476 | return error; |
| 477 | } |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 478 | } |
| 479 | |
Dave Wallace | 8af2054 | 2017-10-26 03:29:30 -0400 | [diff] [blame] | 480 | unformat_free (line_input); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 481 | return vnet_session_enable_disable (vm, is_en); |
| 482 | } |
| 483 | |
| 484 | /* *INDENT-OFF* */ |
| 485 | VLIB_CLI_COMMAND (session_enable_disable_command, static) = |
| 486 | { |
| 487 | .path = "session", |
| 488 | .short_help = "session [enable|disable]", |
| 489 | .function = session_enable_disable_fn, |
| 490 | }; |
| 491 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 492 | |
| 493 | /* |
| 494 | * fd.io coding-style-patch-verification: ON |
| 495 | * |
| 496 | * Local Variables: |
| 497 | * eval: (c-set-style "gnu") |
| 498 | * End: |
| 499 | */ |