blob: 559f0bd6ed174a83486c51bb31b10ae374c872fa [file] [log] [blame]
Florin Corase69f4952017-03-07 10:06:24 -08001/*
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#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
21#define foreach_session_dbg_evt \
22 _(ENQ, "enqueue") \
Florin Coras6792ec02017-03-13 03:49:51 -070023 _(DEQ, "dequeue") \
Florin Coras3e350af2017-03-30 02:54:28 -070024 _(DEQ_NODE, "dequeue") \
25 _(POLL_GAP_TRACK, "poll gap track") \
Florin Coras8b20bf52018-06-14 14:55:50 -070026 _(POLL_DISPATCH_TIME, "dispatch time")\
27 _(DISPATCH_END, "dispatch end") \
Florin Corase69f4952017-03-07 10:06:24 -080028
29typedef enum _session_evt_dbg
30{
31#define _(sym, str) SESSION_EVT_##sym,
32 foreach_session_dbg_evt
33#undef _
34} session_evt_dbg_e;
35
Florin Coras8b20bf52018-06-14 14:55:50 -070036#define SESSION_DEBUG 0 * (TRANSPORT_DEBUG > 0)
Florin Coras6792ec02017-03-13 03:49:51 -070037#define SESSION_DEQ_NODE_EVTS (0)
Florin Coras371ca502018-02-21 12:07:41 -080038#define SESSION_EVT_POLL_DBG (0)
Florin Coras6792ec02017-03-13 03:49:51 -070039
Florin Corascea194d2017-10-02 00:18:51 -070040#if SESSION_DEBUG
41
42#define SESSION_DBG(_fmt, _args...) clib_warning (_fmt, ##_args)
Florin Corase69f4952017-03-07 10:06:24 -080043
44#define DEC_SESSION_ETD(_s, _e, _size) \
45 struct \
46 { \
47 u32 data[_size]; \
48 } * ed; \
Florin Corasc1a448b2018-04-20 10:51:49 -070049 transport_connection_t *_tc = session_get_transport (_s); \
Florin Corase69f4952017-03-07 10:06:24 -080050 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, \
51 _e, _tc->elog_track)
52
Florin Coras6792ec02017-03-13 03:49:51 -070053#define DEC_SESSION_ED(_e, _size) \
54 struct \
55 { \
56 u32 data[_size]; \
57 } * ed; \
58 ed = ELOG_DATA (&vlib_global_main.elog_main, _e)
Florin Corase69f4952017-03-07 10:06:24 -080059
Florin Coras8b20bf52018-06-14 14:55:50 -070060#if SESSION_DEQ_NODE_EVTS && SESSION_DEBUG > 1
Florin Corase69f4952017-03-07 10:06:24 -080061#define SESSION_EVT_DEQ_HANDLER(_s, _body) \
62{ \
63 ELOG_TYPE_DECLARE (_e) = \
64 { \
65 .format = "deq: id %d len %d rd %d wnd %d", \
66 .format_args = "i4i4i4i4", \
67 }; \
68 DEC_SESSION_ETD(_s, _e, 4); \
69 do { _body; } while (0); \
70}
71
72#define SESSION_EVT_ENQ_HANDLER(_s, _body) \
73{ \
74 ELOG_TYPE_DECLARE (_e) = \
75 { \
76 .format = "enq: id %d length %d", \
77 .format_args = "i4i4", \
78 }; \
79 DEC_SESSION_ETD(_s, _e, 2); \
80 do { _body; } while (0); \
81}
82
Florin Coras6792ec02017-03-13 03:49:51 -070083#define SESSION_EVT_DEQ_NODE_HANDLER(_node_evt) \
84{ \
85 ELOG_TYPE_DECLARE (_e) = \
86 { \
87 .format = "deq-node: %s", \
88 .format_args = "t4", \
89 .n_enum_strings = 2, \
90 .enum_strings = { \
91 "start", \
92 "end", \
93 }, \
94 }; \
95 DEC_SESSION_ED(_e, 1); \
96 ed->data[0] = _node_evt; \
97}
98#else
Florin Coras8b20bf52018-06-14 14:55:50 -070099#define SESSION_EVT_DEQ_HANDLER(_s, _body)
100#define SESSION_EVT_ENQ_HANDLER(_s, _body)
Florin Coras6792ec02017-03-13 03:49:51 -0700101#define SESSION_EVT_DEQ_NODE_HANDLER(_node_evt)
Florin Corascea194d2017-10-02 00:18:51 -0700102#endif /* SESSION_DEQ_NODE_EVTS */
Florin Coras6792ec02017-03-13 03:49:51 -0700103
Florin Corascea194d2017-10-02 00:18:51 -0700104#if SESSION_EVT_POLL_DBG && SESSION_DEBUG > 1
Florin Corasc1a448b2018-04-20 10:51:49 -0700105#define SESSION_EVT_POLL_GAP(_smm, _ti) \
Florin Coras3e350af2017-03-30 02:54:28 -0700106{ \
107 ELOG_TYPE_DECLARE (_e) = \
108 { \
Florin Corasc1a448b2018-04-20 10:51:49 -0700109 .format = "nixon-gap: %d us", \
Florin Coras3e350af2017-03-30 02:54:28 -0700110 .format_args = "i4", \
111 }; \
112 DEC_SESSION_ED(_e, 1); \
113 ed->data[0] = (u32) ((now - \
Florin Corasc1a448b2018-04-20 10:51:49 -0700114 _smm->last_event_poll_by_thread[_ti])*1000000.0); \
Florin Coras3e350af2017-03-30 02:54:28 -0700115}
Florin Corasc1a448b2018-04-20 10:51:49 -0700116#define SESSION_EVT_POLL_GAP_TRACK_HANDLER(_smm, _ti) \
Florin Coras3e350af2017-03-30 02:54:28 -0700117{ \
Florin Corasc1a448b2018-04-20 10:51:49 -0700118 if (PREDICT_TRUE (smm->last_event_poll_by_thread[_ti] != 0.0)) \
119 if (now > smm->last_event_poll_by_thread[_ti] + 500e-6) \
120 SESSION_EVT_POLL_GAP(smm, _ti); \
121 _smm->last_event_poll_by_thread[_ti] = now; \
Florin Coras3e350af2017-03-30 02:54:28 -0700122}
123
Florin Coras8b20bf52018-06-14 14:55:50 -0700124#define SESSION_EVT_POLL_DISPATCH_TIME_HANDLER(_smm, _ti) \
125{ \
126 f64 diff = vlib_time_now (vlib_get_main ()) - \
127 _smm->last_event_poll_by_thread[_ti]; \
128 if (diff > 5e-2) \
129 { \
130 ELOG_TYPE_DECLARE (_e) = \
131 { \
132 .format = "dispatch time: %d us", \
133 .format_args = "i4", \
134 }; \
135 DEC_SESSION_ED(_e, 1); \
136 ed->data[0] = diff *1000000.0; \
137 } \
138}
139
Florin Coras3e350af2017-03-30 02:54:28 -0700140#else
141#define SESSION_EVT_POLL_GAP(_smm, _my_thread_index)
142#define SESSION_EVT_POLL_GAP_TRACK_HANDLER(_smm, _my_thread_index)
Florin Coras8b20bf52018-06-14 14:55:50 -0700143#define SESSION_EVT_POLL_DISPATCH_TIME_HANDLER(_smm, _ti)
Florin Corascea194d2017-10-02 00:18:51 -0700144#endif /* SESSION_EVT_POLL_DBG */
Florin Coras3e350af2017-03-30 02:54:28 -0700145
Florin Coras8b20bf52018-06-14 14:55:50 -0700146#define SESSION_EVT_DISPATCH_END_HANDLER(_smm, _ti) \
147{ \
148 SESSION_EVT_DEQ_NODE_HANDLER(1); \
149 SESSION_EVT_POLL_DISPATCH_TIME_HANDLER(_smm, _ti); \
150}
151
Florin Corase69f4952017-03-07 10:06:24 -0800152#define CONCAT_HELPER(_a, _b) _a##_b
153#define CC(_a, _b) CONCAT_HELPER(_a, _b)
Florin Coras6792ec02017-03-13 03:49:51 -0700154#define SESSION_EVT_DBG(_evt, _args...) CC(_evt, _HANDLER)(_args)
Florin Corase69f4952017-03-07 10:06:24 -0800155
156#else
Florin Coras6792ec02017-03-13 03:49:51 -0700157#define SESSION_EVT_DBG(_evt, _args...)
Florin Corascea194d2017-10-02 00:18:51 -0700158#define SESSION_DBG(_fmt, _args...)
159#endif /* SESSION_DEBUG */
Florin Corase69f4952017-03-07 10:06:24 -0800160
161#endif /* SRC_VNET_SESSION_SESSION_DEBUG_H_ */
162/*
163 * fd.io coding-style-patch-verification: ON
164 *
165 * Local Variables:
166 * eval: (c-set-style "gnu")
167 * End:
168 */