blob: a42d90d471c185f2a4769b56e23898ae2e85fe02 [file] [log] [blame]
Florin Corase69f4952017-03-07 10:06:24 -08001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Florin Corase69f4952017-03-07 10:06:24 -08003 * 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#ifndef SRC_VNET_SESSION_SESSION_DEBUG_H_
16#define SRC_VNET_SESSION_SESSION_DEBUG_H_
17
18#include <vnet/session/transport.h>
Florin Corase69f4952017-03-07 10:06:24 -080019#include <vlib/vlib.h>
20
Florin Coras11166672020-04-13 01:20:25 +000021#define foreach_session_dbg_evt \
22 _(ENQ, "enqueue") \
23 _(DEQ, "dequeue") \
24 _(DEQ_NODE, "dequeue") \
25 _(POLL_GAP_TRACK, "poll gap track") \
26 _(POLL_DISPATCH_TIME, "dispatch time") \
27 _(DISPATCH_START, "dispatch start") \
28 _(DISPATCH_END, "dispatch end") \
29 _(FREE, "session free") \
30 _(DSP_CNTRS, "dispatch counters") \
31 _(IO_EVT_COUNTS, "io evt counts") \
32 _(EVT_COUNTS, "ctrl evt counts") \
Florin Corase69f4952017-03-07 10:06:24 -080033
34typedef enum _session_evt_dbg
35{
36#define _(sym, str) SESSION_EVT_##sym,
37 foreach_session_dbg_evt
38#undef _
39} session_evt_dbg_e;
40
Florin Coras11166672020-04-13 01:20:25 +000041#define foreach_session_events \
42_(CLK_UPDATE_TIME, 1, 1, "Time Update Time") \
43_(CLK_MQ_DEQ, 1, 1, "Time MQ Dequeue") \
Srikanth Akula73570432020-04-06 19:19:49 -070044_(CLK_CTRL_EVTS, 1, 1, "Time Ctrl Events") \
Florin Coras11166672020-04-13 01:20:25 +000045_(CLK_NEW_IO_EVTS, 1, 1, "Time New IO Events") \
46_(CLK_OLD_IO_EVTS, 1, 1, "Time Old IO Events") \
47_(CLK_TOTAL, 1, 1, "Time Total in Node") \
48_(CLK_START, 1, 1, "Time Since Last Reset") \
49 \
50_(CNT_MQ_EVTS, 1, 0, "# of MQ Events Processed" ) \
51_(CNT_CTRL_EVTS, 1, 0, "# of Ctrl Events Processed" ) \
52_(CNT_NEW_EVTS, 1, 0, "# of New Events Processed" ) \
53_(CNT_OLD_EVTS, 1, 0, "# of Old Events Processed" ) \
54_(CNT_IO_EVTS, 1, 0, "# of Events Processed" ) \
55_(CNT_NODE_CALL, 1, 0, "# of Node Calls") \
56 \
57_(BASE_OFFSET_IO_EVTS, 0, 0, "NULL") \
58_(SESSION_IO_EVT_RX, 1, 0, "# of IO Event RX") \
Srikanth Akula73570432020-04-06 19:19:49 -070059_(SESSION_IO_EVT_TX, 1, 0, "# of IO Event TX") \
60_(SESSION_IO_EVT_TX_FLUSH, 1, 0, "# of IO Event TX Flush") \
Florin Coras11166672020-04-13 01:20:25 +000061_(SESSION_IO_EVT_BUILTIN_RX, 1, 0, "# of IO Event BuiltIn RX") \
62_(SESSION_IO_EVT_BUILTIN_TX, 1, 0, "# of IO Event BuiltIn TX") \
Srikanth Akula73570432020-04-06 19:19:49 -070063
64typedef enum
65{
66#define _(sym, disp, type, str) SESS_Q_##sym,
67 foreach_session_events
68#undef _
69 SESS_Q_MAX_EVT_TYPES
70} sess_q_node_events_types_t;
71
72typedef struct session_dbg_counter_
73{
74 union
75 {
76 f64 f64;
77 u64 u64;
78 };
79} session_dbg_counter_t;
80
81typedef struct session_dbg_evts_t
82{
83 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
84 f64 last_time;
Florin Coras11166672020-04-13 01:20:25 +000085 f64 start_time;
Srikanth Akula73570432020-04-06 19:19:49 -070086 u64 prev_io;
Florin Coras11166672020-04-13 01:20:25 +000087 session_dbg_counter_t counters[SESS_Q_MAX_EVT_TYPES];
Srikanth Akula73570432020-04-06 19:19:49 -070088} session_dbg_evts_t;
89
90typedef struct session_dbg_main_
91{
92 session_dbg_evts_t *wrk;
93} session_dbg_main_t;
94
95extern session_dbg_main_t session_dbg_main;
96
Florin Coras8b20bf52018-06-14 14:55:50 -070097#define SESSION_DEBUG 0 * (TRANSPORT_DEBUG > 0)
Florin Corascca96182019-07-19 07:34:13 -070098#define SESSION_DEQ_EVTS (0)
Florin Corasba13c3b2019-10-30 17:11:53 -070099#define SESSION_DISPATCH_DBG (0)
Florin Coras371ca502018-02-21 12:07:41 -0800100#define SESSION_EVT_POLL_DBG (0)
Florin Coras6416e622019-04-03 17:52:43 -0700101#define SESSION_SM (0)
Srikanth Akula73570432020-04-06 19:19:49 -0700102#define SESSION_CLOCKS_EVT_DBG (0)
103#define SESSION_COUNTS_EVT_DBG (0)
Florin Coras6792ec02017-03-13 03:49:51 -0700104
Florin Corascea194d2017-10-02 00:18:51 -0700105#if SESSION_DEBUG
106
107#define SESSION_DBG(_fmt, _args...) clib_warning (_fmt, ##_args)
Florin Corase69f4952017-03-07 10:06:24 -0800108
109#define DEC_SESSION_ETD(_s, _e, _size) \
110 struct \
111 { \
112 u32 data[_size]; \
113 } * ed; \
Florin Corasc1a448b2018-04-20 10:51:49 -0700114 transport_connection_t *_tc = session_get_transport (_s); \
Florin Corase69f4952017-03-07 10:06:24 -0800115 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, \
116 _e, _tc->elog_track)
117
Florin Coras6792ec02017-03-13 03:49:51 -0700118#define DEC_SESSION_ED(_e, _size) \
119 struct \
120 { \
121 u32 data[_size]; \
122 } * ed; \
123 ed = ELOG_DATA (&vlib_global_main.elog_main, _e)
Florin Corase69f4952017-03-07 10:06:24 -0800124
Florin Coras6416e622019-04-03 17:52:43 -0700125#if SESSION_SM
126#define SESSION_EVT_FREE_HANDLER(_s) \
127{ \
128 ELOG_TYPE_DECLARE (_e) = \
129 { \
130 .format = "free: idx %u", \
131 .format_args = "i4", \
132 }; \
133 DEC_SESSION_ETD(_s, _e, 1); \
134 ed->data[0] = _s->session_index; \
135}
136#else
137#define SESSION_EVT_FREE_HANDLER(_s)
138#endif
139
Florin Corascca96182019-07-19 07:34:13 -0700140#if SESSION_DEQ_EVTS
141#define SESSION_EVT_DEQ_HANDLER(_s, _now, _max, _has_evt, _ts) \
Florin Corase69f4952017-03-07 10:06:24 -0800142{ \
143 ELOG_TYPE_DECLARE (_e) = \
144 { \
Florin Corascca96182019-07-19 07:34:13 -0700145 .format = "deq: now %u max %d evt %u ts %d", \
Florin Corase69f4952017-03-07 10:06:24 -0800146 .format_args = "i4i4i4i4", \
147 }; \
148 DEC_SESSION_ETD(_s, _e, 4); \
Florin Corascca96182019-07-19 07:34:13 -0700149 ed->data[0] = _now; \
150 ed->data[1] = _max; \
151 ed->data[2] = _has_evt; \
152 ed->data[3] = _ts * 1000000.0; \
Florin Corase69f4952017-03-07 10:06:24 -0800153}
154
Florin Corascca96182019-07-19 07:34:13 -0700155#define SESSION_EVT_ENQ_HANDLER(_s, _len) \
Florin Corase69f4952017-03-07 10:06:24 -0800156{ \
157 ELOG_TYPE_DECLARE (_e) = \
158 { \
Florin Corascca96182019-07-19 07:34:13 -0700159 .format = "enq: length %d", \
160 .format_args = "i4", \
Florin Corase69f4952017-03-07 10:06:24 -0800161 }; \
Florin Corascca96182019-07-19 07:34:13 -0700162 DEC_SESSION_ETD(_s, _e, 1); \
163 ed->data[0] = _len; \
Florin Corase69f4952017-03-07 10:06:24 -0800164}
Florin Corasba13c3b2019-10-30 17:11:53 -0700165#else
166#define SESSION_EVT_DEQ_HANDLER(_s, _now, _max, _has_evt, _ts)
167#define SESSION_EVT_ENQ_HANDLER(_s, _body)
168#endif /* SESSION_DEQ_NODE_EVTS */
Florin Corase69f4952017-03-07 10:06:24 -0800169
Florin Corasba13c3b2019-10-30 17:11:53 -0700170#if SESSION_DISPATCH_DBG
171#define SESSION_EVT_DEQ_NODE_HANDLER(_wrk, _node_evt, _ntx) \
Florin Coras6792ec02017-03-13 03:49:51 -0700172{ \
173 ELOG_TYPE_DECLARE (_e) = \
174 { \
Florin Corasba13c3b2019-10-30 17:11:53 -0700175 .format = "dispatch: %s pkts %u re-entry: %u dispatch %u", \
176 .format_args = "t4i4i4i4", \
Florin Coras6792ec02017-03-13 03:49:51 -0700177 .n_enum_strings = 2, \
178 .enum_strings = { \
179 "start", \
180 "end", \
181 }, \
182 }; \
Florin Corasba13c3b2019-10-30 17:11:53 -0700183 DEC_SESSION_ED(_e, 4); \
Florin Coras6792ec02017-03-13 03:49:51 -0700184 ed->data[0] = _node_evt; \
Florin Corasba13c3b2019-10-30 17:11:53 -0700185 ed->data[1] = _ntx; \
186 ed->data[2] = (_wrk->last_vlib_time - _wrk->last_event_poll) \
187 * 1000000.0; \
188 ed->data[3] = (vlib_time_now (_wrk->vm) - _wrk->last_vlib_time) \
189 * 1000000.0; \
Florin Coras6792ec02017-03-13 03:49:51 -0700190}
191#else
Florin Coras11166672020-04-13 01:20:25 +0000192#define SESSION_EVT_DEQ_NODE_HANDLER(_wrk, _node_evt, _ntx)
Florin Corasba13c3b2019-10-30 17:11:53 -0700193#endif /* SESSION_DISPATCH_DBG */
Florin Coras6792ec02017-03-13 03:49:51 -0700194
Florin Corascea194d2017-10-02 00:18:51 -0700195#if SESSION_EVT_POLL_DBG && SESSION_DEBUG > 1
Florin Corascca96182019-07-19 07:34:13 -0700196#define SESSION_EVT_POLL_GAP(_wrk) \
Florin Coras3e350af2017-03-30 02:54:28 -0700197{ \
198 ELOG_TYPE_DECLARE (_e) = \
199 { \
Florin Corasc1a448b2018-04-20 10:51:49 -0700200 .format = "nixon-gap: %d us", \
Florin Coras3e350af2017-03-30 02:54:28 -0700201 .format_args = "i4", \
202 }; \
203 DEC_SESSION_ED(_e, 1); \
Florin Corasba13c3b2019-10-30 17:11:53 -0700204 ed->data[0] = (u32) ((_wrk->last_vlib_time - _wrk->last_event_poll) \
205 *1000000.0); \
Florin Coras3e350af2017-03-30 02:54:28 -0700206}
Florin Corascca96182019-07-19 07:34:13 -0700207#define SESSION_EVT_POLL_GAP_TRACK_HANDLER(_wrk) \
Florin Coras3e350af2017-03-30 02:54:28 -0700208{ \
Florin Corasba13c3b2019-10-30 17:11:53 -0700209 if (PREDICT_TRUE (_wrk->last_event_poll != 0.0)) \
210 if (_wrk->last_vlib_time > _wrk->last_event_poll + 500e-6) \
211 SESSION_EVT_POLL_GAP(_wrk); \
212 _wrk->last_event_poll = _wrk->last_vlib_time; \
Florin Coras3e350af2017-03-30 02:54:28 -0700213}
214
Florin Corascca96182019-07-19 07:34:13 -0700215#define SESSION_EVT_POLL_DISPATCH_TIME_HANDLER(_wrk) \
Florin Coras8b20bf52018-06-14 14:55:50 -0700216{ \
Florin Corascca96182019-07-19 07:34:13 -0700217 f64 diff = vlib_time_now (vlib_get_main ()) - _wrk->last_event_poll; \
Florin Coras8b20bf52018-06-14 14:55:50 -0700218 if (diff > 5e-2) \
219 { \
220 ELOG_TYPE_DECLARE (_e) = \
221 { \
222 .format = "dispatch time: %d us", \
223 .format_args = "i4", \
224 }; \
225 DEC_SESSION_ED(_e, 1); \
226 ed->data[0] = diff *1000000.0; \
227 } \
228}
229
Florin Coras3e350af2017-03-30 02:54:28 -0700230#else
Florin Corascca96182019-07-19 07:34:13 -0700231#define SESSION_EVT_POLL_GAP(_wrk)
232#define SESSION_EVT_POLL_GAP_TRACK_HANDLER(_wrk)
233#define SESSION_EVT_POLL_DISPATCH_TIME_HANDLER(_wrk)
Srikanth Akula73570432020-04-06 19:19:49 -0700234#define SESSION_EVT_POLL_CLOCKS_TIME_HANDLER(_wrk)
235
Florin Corascea194d2017-10-02 00:18:51 -0700236#endif /* SESSION_EVT_POLL_DBG */
Florin Coras3e350af2017-03-30 02:54:28 -0700237
Srikanth Akula73570432020-04-06 19:19:49 -0700238#if SESSION_CLOCKS_EVT_DBG
239
240#define SESSION_EVT_DSP_CNTRS_UPDATE_TIME_HANDLER(_wrk, _diff, _args...) \
Florin Coras11166672020-04-13 01:20:25 +0000241 session_dbg_evts_t *sde = &session_dbg_main.wrk[_wrk->vm->thread_index]; \
242 sde->counters[SESS_Q_CLK_UPDATE_TIME].f64 += _diff; \
Srikanth Akula73570432020-04-06 19:19:49 -0700243
Florin Coras11166672020-04-13 01:20:25 +0000244#define SESSION_EVT_DSP_CNTRS_MQ_DEQ_HANDLER(_wrk, _diff, _cnt, _dq, _args...) \
245 session_dbg_evts_t *sde = &session_dbg_main.wrk[_wrk->vm->thread_index]; \
246 sde->counters[SESS_Q_CNT_MQ_EVTS].u64 += _dq * _cnt; \
247 sde->counters[SESS_Q_CLK_MQ_DEQ].f64 += _diff; \
Srikanth Akula73570432020-04-06 19:19:49 -0700248
249#define SESSION_EVT_DSP_CNTRS_CTRL_EVTS_HANDLER(_wrk, _diff, _args...) \
Florin Coras11166672020-04-13 01:20:25 +0000250 session_dbg_evts_t *sde = &session_dbg_main.wrk[_wrk->vm->thread_index]; \
251 sde->counters[SESS_Q_CLK_CTRL_EVTS].f64 += _diff; \
252 sde->prev_io = sde->counters[SESS_Q_CNT_IO_EVTS].u64; \
Srikanth Akula73570432020-04-06 19:19:49 -0700253
254#define SESSION_EVT_DSP_CNTRS_NEW_IO_EVTS_HANDLER(_wrk, _diff, _args...) \
Florin Coras11166672020-04-13 01:20:25 +0000255 session_dbg_evts_t *sde = &session_dbg_main.wrk[_wrk->vm->thread_index]; \
256 sde->counters[SESS_Q_CLK_NEW_IO_EVTS].f64 += _diff; \
257 sde->counters[SESS_Q_CNT_NEW_EVTS].u64 += \
258 sde->counters[SESS_Q_CNT_IO_EVTS].u64 - sde->prev_io; \
259 sde->prev_io = sde->counters[SESS_Q_CNT_IO_EVTS].u64; \
Srikanth Akula73570432020-04-06 19:19:49 -0700260
261#define SESSION_EVT_DSP_CNTRS_OLD_IO_EVTS_HANDLER(_wrk, _diff, _args...) \
Florin Coras11166672020-04-13 01:20:25 +0000262 session_dbg_evts_t *sde = &session_dbg_main.wrk[_wrk->vm->thread_index]; \
263 sde->counters[SESS_Q_CLK_OLD_IO_EVTS].f64 += _diff; \
264 sde->counters[SESS_Q_CNT_OLD_EVTS].u64 += \
265 sde->counters[SESS_Q_CNT_IO_EVTS].u64 - sde->prev_io; \
Srikanth Akula73570432020-04-06 19:19:49 -0700266
267#define SESSION_EVT_DSP_CNTRS_HANDLER(_disp_evt, _wrk, _args...) \
268{ \
Florin Coras11166672020-04-13 01:20:25 +0000269 f64 time_now = vlib_time_now (_wrk->vm), diff; \
270 diff = time_now - session_dbg_main.wrk[_wrk->vm->thread_index].last_time; \
Srikanth Akula73570432020-04-06 19:19:49 -0700271 session_dbg_main.wrk[_wrk->vm->thread_index].last_time = time_now; \
272 CC(CC(SESSION_EVT_DSP_CNTRS_,_disp_evt),_HANDLER)(wrk, diff, _args); \
273}
274#else
Florin Coras11166672020-04-13 01:20:25 +0000275#define SESSION_EVT_DSP_CNTRS_HANDLER(_disp_evt, _wrk, _args...)
Srikanth Akula73570432020-04-06 19:19:49 -0700276#endif /*SESSION_CLOCKS_EVT_DBG */
277
278#if SESSION_COUNTS_EVT_DBG
Florin Coras11166672020-04-13 01:20:25 +0000279#define SESSION_EVT_COUNTS_HANDLER(_node_evt, _cnt, _wrk) \
Srikanth Akula73570432020-04-06 19:19:49 -0700280{ \
281 session_dbg_main.wrk[_wrk->vm->thread_index]. \
Florin Coras11166672020-04-13 01:20:25 +0000282 counters[SESS_Q_##_node_evt].u64 += _cnt; \
Srikanth Akula73570432020-04-06 19:19:49 -0700283}
284
Florin Coras11166672020-04-13 01:20:25 +0000285#define SESSION_IO_EVT_COUNTS_HANDLER(_node_evt, _cnt, _wrk) \
286{ \
287 u8 type = SESS_Q_BASE_OFFSET_IO_EVTS + _node_evt + 1; \
288 session_dbg_evts_t *sde; \
289 sde = &session_dbg_main.wrk[_wrk->vm->thread_index]; \
290 sde->counters[type].u64 += _cnt; \
291 sde->counters[SESS_Q_CNT_IO_EVTS].u64 += _cnt ; \
Srikanth Akula73570432020-04-06 19:19:49 -0700292}
293#else
Florin Coras11166672020-04-13 01:20:25 +0000294#define SESSION_EVT_COUNTS_HANDLER(_node_evt, _cnt, _wrk)
Srikanth Akula73570432020-04-06 19:19:49 -0700295#define SESSION_IO_EVT_COUNTS_HANDLER(_node_evt, _cnt, _wrk)
296#endif /*SESSION_COUNTS_EVT_DBG */
297
298
Florin Corascca96182019-07-19 07:34:13 -0700299#define SESSION_EVT_DISPATCH_START_HANDLER(_wrk) \
Florin Coras8b20bf52018-06-14 14:55:50 -0700300{ \
Florin Coras11166672020-04-13 01:20:25 +0000301 session_dbg_evts_t *sde; \
302 sde = &session_dbg_main.wrk[_wrk->vm->thread_index]; \
Florin Corascca96182019-07-19 07:34:13 -0700303 if (SESSION_DEQ_EVTS > 1) \
Florin Corasba13c3b2019-10-30 17:11:53 -0700304 SESSION_EVT_DEQ_NODE_HANDLER (_wrk, 0, 0); \
Florin Corascca96182019-07-19 07:34:13 -0700305 SESSION_EVT_POLL_GAP_TRACK_HANDLER (wrk); \
Florin Coras11166672020-04-13 01:20:25 +0000306 sde->counters[SESS_Q_##CNT_NODE_CALL].u64 +=1; \
307 sde->last_time = vlib_time_now (_wrk->vm); \
Florin Corascca96182019-07-19 07:34:13 -0700308}
309
310#define SESSION_EVT_DISPATCH_END_HANDLER(_wrk, _ntx) \
311{ \
Florin Coras11166672020-04-13 01:20:25 +0000312 f64 now = vlib_time_now (_wrk->vm); \
313 session_dbg_evts_t *sde; \
314 sde = &session_dbg_main.wrk[_wrk->vm->thread_index]; \
Florin Corasba13c3b2019-10-30 17:11:53 -0700315 if (_ntx) \
316 SESSION_EVT_DEQ_NODE_HANDLER (_wrk, 1, _ntx); \
Florin Corascca96182019-07-19 07:34:13 -0700317 SESSION_EVT_POLL_DISPATCH_TIME_HANDLER(_wrk); \
Florin Coras11166672020-04-13 01:20:25 +0000318 _wrk->last_event_poll = now; \
319 sde->counters[SESS_Q_CLK_TOTAL].f64 += now - _wrk->last_vlib_time; \
320 sde->counters[SESS_Q_CLK_START].f64 = now - sde->start_time; \
Florin Coras8b20bf52018-06-14 14:55:50 -0700321}
322
Florin Corase69f4952017-03-07 10:06:24 -0800323#define CONCAT_HELPER(_a, _b) _a##_b
324#define CC(_a, _b) CONCAT_HELPER(_a, _b)
Florin Corascca96182019-07-19 07:34:13 -0700325#define SESSION_EVT(_evt, _args...) CC(_evt, _HANDLER)(_args)
Florin Corase69f4952017-03-07 10:06:24 -0800326
327#else
Florin Corascca96182019-07-19 07:34:13 -0700328#define SESSION_EVT(_evt, _args...)
Florin Corascea194d2017-10-02 00:18:51 -0700329#define SESSION_DBG(_fmt, _args...)
330#endif /* SESSION_DEBUG */
Florin Corase69f4952017-03-07 10:06:24 -0800331
Florin Coras11166672020-04-13 01:20:25 +0000332void session_debug_init (void);
333
Florin Corase69f4952017-03-07 10:06:24 -0800334#endif /* SRC_VNET_SESSION_SESSION_DEBUG_H_ */
335/*
336 * fd.io coding-style-patch-verification: ON
337 *
338 * Local Variables:
339 * eval: (c-set-style "gnu")
340 * End:
341 */