Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2020 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 | |
| 16 | #include <vnet/session/session_debug.h> |
| 17 | #include <vnet/session/session.h> |
| 18 | |
| 19 | #if SESSION_DEBUG > 0 |
| 20 | |
| 21 | session_dbg_main_t session_dbg_main; |
| 22 | |
| 23 | static clib_error_t * |
| 24 | show_session_dbg_clock_cycles_fn (vlib_main_t * vm, unformat_input_t * input, |
| 25 | vlib_cli_command_t * cmd) |
| 26 | { |
| 27 | u32 thread; |
| 28 | |
| 29 | if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 30 | return clib_error_return (0, "unknown input `%U'", format_unformat_error, |
| 31 | input); |
| 32 | |
| 33 | for (thread = 0; thread < vec_len (session_dbg_main.wrk); thread++) |
| 34 | { |
| 35 | vlib_cli_output (vm, "Threads %u:\n", thread); |
| 36 | session_dbg_evts_t *sdm = &session_dbg_main.wrk[thread]; |
| 37 | |
| 38 | #define _(sym, disp, type, str) \ |
| 39 | if(disp) \ |
| 40 | { \ |
| 41 | if (!type) \ |
| 42 | vlib_cli_output (vm, "\t %25s : %12lu ", str, \ |
| 43 | sdm->counters[SESS_Q_##sym].u64); \ |
| 44 | else \ |
| 45 | vlib_cli_output (vm, "\t %25s : %12.3f ", str, \ |
| 46 | sdm->counters[SESS_Q_##sym].f64); \ |
| 47 | } |
| 48 | foreach_session_events |
| 49 | #undef _ |
| 50 | } |
| 51 | return 0; |
| 52 | } |
| 53 | |
| 54 | |
| 55 | /* *INDENT-OFF* */ |
| 56 | VLIB_CLI_COMMAND (show_session_dbg_clock_cycles_command, static) = |
| 57 | { |
| 58 | .path = "show session dbg clock_cycles", |
| 59 | .short_help = "show session dbg clock_cycles", |
| 60 | .function = show_session_dbg_clock_cycles_fn, |
| 61 | }; |
| 62 | /* *INDENT-ON* */ |
| 63 | |
| 64 | |
| 65 | static clib_error_t * |
| 66 | clear_session_dbg_clock_cycles_fn (vlib_main_t * vm, unformat_input_t * input, |
| 67 | vlib_cli_command_t * cmd) |
| 68 | { |
| 69 | session_dbg_evts_t *sde; |
| 70 | u32 thread; |
| 71 | |
| 72 | if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 73 | return clib_error_return (0, "unknown input `%U'", format_unformat_error, |
| 74 | input); |
| 75 | |
| 76 | for (thread = 0; thread < vec_len (session_dbg_main.wrk); thread++) |
| 77 | { |
| 78 | sde = &session_dbg_main.wrk[thread]; |
| 79 | clib_memset (sde, 0, sizeof (session_dbg_evts_t)); |
| 80 | sde->last_time = vlib_time_now (vlib_mains[thread]); |
| 81 | sde->start_time = sde->last_time; |
| 82 | } |
| 83 | |
| 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | |
| 88 | /* *INDENT-OFF* */ |
| 89 | VLIB_CLI_COMMAND (clear_session_clock_cycles_command, static) = |
| 90 | { |
| 91 | .path = "clear session dbg clock_cycles", |
| 92 | .short_help = "clear session dbg clock_cycles", |
| 93 | .function = clear_session_dbg_clock_cycles_fn, |
| 94 | }; |
| 95 | /* *INDENT-ON* */ |
| 96 | |
| 97 | void |
| 98 | session_debug_init (void) |
| 99 | { |
| 100 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
| 101 | session_dbg_main_t *sdm = &session_dbg_main; |
| 102 | u32 num_threads, thread; |
| 103 | |
| 104 | num_threads = vtm->n_vlib_mains; |
| 105 | |
| 106 | vec_validate_aligned (sdm->wrk, num_threads - 1, CLIB_CACHE_LINE_BYTES); |
| 107 | for (thread = 0; thread < num_threads; thread++) |
| 108 | { |
| 109 | clib_memset (&sdm->wrk[thread], 0, sizeof (session_dbg_evts_t)); |
| 110 | sdm->wrk[thread].start_time = vlib_time_now (vlib_mains[thread]); |
| 111 | } |
| 112 | } |
| 113 | #else |
| 114 | void |
| 115 | session_debug_init (void) |
| 116 | { |
| 117 | } |
| 118 | #endif |
| 119 | |
| 120 | void |
| 121 | dump_thread_0_event_queue (void) |
| 122 | { |
Damjan Marion | 6ffb7c6 | 2021-03-26 13:06:13 +0100 | [diff] [blame^] | 123 | vlib_main_t *vm = vlib_get_first_main (); |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 124 | u32 my_thread_index = vm->thread_index; |
| 125 | session_event_t _e, *e = &_e; |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 126 | svm_msg_q_shared_queue_t *sq; |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 127 | svm_msg_q_ring_t *ring; |
| 128 | session_t *s0; |
| 129 | svm_msg_q_msg_t *msg; |
| 130 | svm_msg_q_t *mq; |
| 131 | int i, index; |
| 132 | |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 133 | mq = session_main_get_vpp_event_queue (my_thread_index); |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 134 | sq = mq->q.shr; |
| 135 | index = sq->head; |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 136 | |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 137 | for (i = 0; i < sq->cursize; i++) |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 138 | { |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 139 | msg = (svm_msg_q_msg_t *) (&sq->data[0] + sq->elsize * index); |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 140 | ring = svm_msg_q_ring (mq, msg->ring_index); |
| 141 | clib_memcpy_fast (e, svm_msg_q_msg_data (mq, msg), ring->elsize); |
| 142 | |
| 143 | switch (e->event_type) |
| 144 | { |
| 145 | case SESSION_IO_EVT_TX: |
| 146 | s0 = session_get_if_valid (e->session_index, my_thread_index); |
| 147 | fformat (stdout, "[%04d] TX session %d\n", i, s0->session_index); |
| 148 | break; |
| 149 | |
| 150 | case SESSION_CTRL_EVT_CLOSE: |
| 151 | s0 = session_get_from_handle (e->session_handle); |
| 152 | fformat (stdout, "[%04d] disconnect session %d\n", i, |
| 153 | s0->session_index); |
| 154 | break; |
| 155 | |
| 156 | case SESSION_IO_EVT_BUILTIN_RX: |
| 157 | s0 = session_get_if_valid (e->session_index, my_thread_index); |
| 158 | fformat (stdout, "[%04d] builtin_rx %d\n", i, s0->session_index); |
| 159 | break; |
| 160 | |
| 161 | case SESSION_CTRL_EVT_RPC: |
| 162 | fformat (stdout, "[%04d] RPC call %llx with %llx\n", |
| 163 | i, (u64) (uword) (e->rpc_args.fp), |
| 164 | (u64) (uword) (e->rpc_args.arg)); |
| 165 | break; |
| 166 | |
| 167 | default: |
| 168 | fformat (stdout, "[%04d] unhandled event type %d\n", |
| 169 | i, e->event_type); |
| 170 | break; |
| 171 | } |
| 172 | |
| 173 | index++; |
| 174 | |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 175 | if (index == sq->maxsize) |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 176 | index = 0; |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | static u8 |
| 181 | session_node_cmp_event (session_event_t * e, svm_fifo_t * f) |
| 182 | { |
| 183 | session_t *s; |
| 184 | switch (e->event_type) |
| 185 | { |
| 186 | case SESSION_IO_EVT_RX: |
| 187 | case SESSION_IO_EVT_TX: |
| 188 | case SESSION_IO_EVT_BUILTIN_RX: |
| 189 | case SESSION_IO_EVT_BUILTIN_TX: |
| 190 | case SESSION_IO_EVT_TX_FLUSH: |
Florin Coras | c547e91 | 2020-12-08 17:50:45 -0800 | [diff] [blame] | 191 | if (e->session_index == f->shr->master_session_index) |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 192 | return 1; |
| 193 | break; |
| 194 | case SESSION_CTRL_EVT_CLOSE: |
| 195 | break; |
| 196 | case SESSION_CTRL_EVT_RPC: |
| 197 | s = session_get_from_handle (e->session_handle); |
| 198 | if (!s) |
| 199 | { |
| 200 | clib_warning ("session has event but doesn't exist!"); |
| 201 | break; |
| 202 | } |
| 203 | if (s->rx_fifo == f || s->tx_fifo == f) |
| 204 | return 1; |
| 205 | break; |
| 206 | default: |
| 207 | break; |
| 208 | } |
| 209 | return 0; |
| 210 | } |
| 211 | |
| 212 | u8 |
| 213 | session_node_lookup_fifo_event (svm_fifo_t * f, session_event_t * e) |
| 214 | { |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 215 | svm_msg_q_shared_queue_t *sq; |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 216 | session_evt_elt_t *elt; |
| 217 | session_worker_t *wrk; |
| 218 | int i, index, found = 0; |
| 219 | svm_msg_q_msg_t *msg; |
| 220 | svm_msg_q_ring_t *ring; |
| 221 | svm_msg_q_t *mq; |
| 222 | u8 thread_index; |
| 223 | |
| 224 | ASSERT (e); |
| 225 | thread_index = f->master_thread_index; |
| 226 | wrk = session_main_get_worker (thread_index); |
| 227 | |
| 228 | /* |
| 229 | * Search evt queue |
| 230 | */ |
| 231 | mq = wrk->vpp_event_queue; |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 232 | sq = mq->q.shr; |
| 233 | index = sq->head; |
| 234 | for (i = 0; i < sq->cursize; i++) |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 235 | { |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 236 | msg = (svm_msg_q_msg_t *) (&sq->data[0] + sq->elsize * index); |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 237 | ring = svm_msg_q_ring (mq, msg->ring_index); |
| 238 | clib_memcpy_fast (e, svm_msg_q_msg_data (mq, msg), ring->elsize); |
| 239 | found = session_node_cmp_event (e, f); |
| 240 | if (found) |
| 241 | return 1; |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 242 | index = (index + 1) % sq->maxsize; |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 243 | } |
| 244 | /* |
| 245 | * Search pending events vector |
| 246 | */ |
| 247 | |
| 248 | /* *INDENT-OFF* */ |
| 249 | clib_llist_foreach (wrk->event_elts, evt_list, |
| 250 | pool_elt_at_index (wrk->event_elts, wrk->new_head), |
| 251 | elt, ({ |
| 252 | found = session_node_cmp_event (&elt->evt, f); |
| 253 | if (found) |
| 254 | { |
| 255 | clib_memcpy_fast (e, &elt->evt, sizeof (*e)); |
| 256 | goto done; |
| 257 | } |
| 258 | })); |
| 259 | /* *INDENT-ON* */ |
| 260 | |
| 261 | /* *INDENT-OFF* */ |
| 262 | clib_llist_foreach (wrk->event_elts, evt_list, |
| 263 | pool_elt_at_index (wrk->event_elts, wrk->old_head), |
| 264 | elt, ({ |
| 265 | found = session_node_cmp_event (&elt->evt, f); |
| 266 | if (found) |
| 267 | { |
| 268 | clib_memcpy_fast (e, &elt->evt, sizeof (*e)); |
| 269 | goto done; |
| 270 | } |
| 271 | })); |
| 272 | /* *INDENT-ON* */ |
| 273 | |
| 274 | done: |
| 275 | return found; |
| 276 | } |
| 277 | |
| 278 | /* |
| 279 | * fd.io coding-style-patch-verification: ON |
| 280 | * |
| 281 | * Local Variables: |
| 282 | * eval: (c-set-style "gnu") |
| 283 | * End: |
| 284 | */ |