blob: f63509d1ffb8d35e7dffa09eba69721f7fe56825 [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 Corase69f4952017-03-07 10:06:24 -080026
27typedef enum _session_evt_dbg
28{
29#define _(sym, str) SESSION_EVT_##sym,
30 foreach_session_dbg_evt
31#undef _
32} session_evt_dbg_e;
33
Florin Corascea194d2017-10-02 00:18:51 -070034#define SESSION_DEBUG (0 && TRANSPORT_DEBUG)
Florin Coras6792ec02017-03-13 03:49:51 -070035#define SESSION_DEQ_NODE_EVTS (0)
Florin Coras371ca502018-02-21 12:07:41 -080036#define SESSION_EVT_POLL_DBG (0)
Florin Coras6792ec02017-03-13 03:49:51 -070037
Florin Corascea194d2017-10-02 00:18:51 -070038#if SESSION_DEBUG
39
40#define SESSION_DBG(_fmt, _args...) clib_warning (_fmt, ##_args)
Florin Corase69f4952017-03-07 10:06:24 -080041
42#define DEC_SESSION_ETD(_s, _e, _size) \
43 struct \
44 { \
45 u32 data[_size]; \
46 } * ed; \
Florin Corasc1a448b2018-04-20 10:51:49 -070047 transport_connection_t *_tc = session_get_transport (_s); \
Florin Corase69f4952017-03-07 10:06:24 -080048 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, \
49 _e, _tc->elog_track)
50
Florin Coras6792ec02017-03-13 03:49:51 -070051#define DEC_SESSION_ED(_e, _size) \
52 struct \
53 { \
54 u32 data[_size]; \
55 } * ed; \
56 ed = ELOG_DATA (&vlib_global_main.elog_main, _e)
Florin Corase69f4952017-03-07 10:06:24 -080057
58#define SESSION_EVT_DEQ_HANDLER(_s, _body) \
59{ \
60 ELOG_TYPE_DECLARE (_e) = \
61 { \
62 .format = "deq: id %d len %d rd %d wnd %d", \
63 .format_args = "i4i4i4i4", \
64 }; \
65 DEC_SESSION_ETD(_s, _e, 4); \
66 do { _body; } while (0); \
67}
68
69#define SESSION_EVT_ENQ_HANDLER(_s, _body) \
70{ \
71 ELOG_TYPE_DECLARE (_e) = \
72 { \
73 .format = "enq: id %d length %d", \
74 .format_args = "i4i4", \
75 }; \
76 DEC_SESSION_ETD(_s, _e, 2); \
77 do { _body; } while (0); \
78}
79
Florin Corascea194d2017-10-02 00:18:51 -070080#if SESSION_DEQ_NODE_EVTS && SESSION_DEBUG > 1
Florin Coras6792ec02017-03-13 03:49:51 -070081#define SESSION_EVT_DEQ_NODE_HANDLER(_node_evt) \
82{ \
83 ELOG_TYPE_DECLARE (_e) = \
84 { \
85 .format = "deq-node: %s", \
86 .format_args = "t4", \
87 .n_enum_strings = 2, \
88 .enum_strings = { \
89 "start", \
90 "end", \
91 }, \
92 }; \
93 DEC_SESSION_ED(_e, 1); \
94 ed->data[0] = _node_evt; \
95}
96#else
97#define SESSION_EVT_DEQ_NODE_HANDLER(_node_evt)
Florin Corascea194d2017-10-02 00:18:51 -070098#endif /* SESSION_DEQ_NODE_EVTS */
Florin Coras6792ec02017-03-13 03:49:51 -070099
Florin Corascea194d2017-10-02 00:18:51 -0700100#if SESSION_EVT_POLL_DBG && SESSION_DEBUG > 1
Florin Corasc1a448b2018-04-20 10:51:49 -0700101#define SESSION_EVT_POLL_GAP(_smm, _ti) \
Florin Coras3e350af2017-03-30 02:54:28 -0700102{ \
103 ELOG_TYPE_DECLARE (_e) = \
104 { \
Florin Corasc1a448b2018-04-20 10:51:49 -0700105 .format = "nixon-gap: %d us", \
Florin Coras3e350af2017-03-30 02:54:28 -0700106 .format_args = "i4", \
107 }; \
108 DEC_SESSION_ED(_e, 1); \
109 ed->data[0] = (u32) ((now - \
Florin Corasc1a448b2018-04-20 10:51:49 -0700110 _smm->last_event_poll_by_thread[_ti])*1000000.0); \
Florin Coras3e350af2017-03-30 02:54:28 -0700111}
Florin Corasc1a448b2018-04-20 10:51:49 -0700112#define SESSION_EVT_POLL_GAP_TRACK_HANDLER(_smm, _ti) \
Florin Coras3e350af2017-03-30 02:54:28 -0700113{ \
Florin Corasc1a448b2018-04-20 10:51:49 -0700114 if (PREDICT_TRUE (smm->last_event_poll_by_thread[_ti] != 0.0)) \
115 if (now > smm->last_event_poll_by_thread[_ti] + 500e-6) \
116 SESSION_EVT_POLL_GAP(smm, _ti); \
117 _smm->last_event_poll_by_thread[_ti] = now; \
Florin Coras3e350af2017-03-30 02:54:28 -0700118}
119
120#else
121#define SESSION_EVT_POLL_GAP(_smm, _my_thread_index)
122#define SESSION_EVT_POLL_GAP_TRACK_HANDLER(_smm, _my_thread_index)
Florin Corascea194d2017-10-02 00:18:51 -0700123#endif /* SESSION_EVT_POLL_DBG */
Florin Coras3e350af2017-03-30 02:54:28 -0700124
Florin Corase69f4952017-03-07 10:06:24 -0800125#define CONCAT_HELPER(_a, _b) _a##_b
126#define CC(_a, _b) CONCAT_HELPER(_a, _b)
Florin Coras6792ec02017-03-13 03:49:51 -0700127#define SESSION_EVT_DBG(_evt, _args...) CC(_evt, _HANDLER)(_args)
Florin Corase69f4952017-03-07 10:06:24 -0800128
129#else
Florin Coras6792ec02017-03-13 03:49:51 -0700130#define SESSION_EVT_DBG(_evt, _args...)
Florin Corascea194d2017-10-02 00:18:51 -0700131#define SESSION_DBG(_fmt, _args...)
132#endif /* SESSION_DEBUG */
Florin Corase69f4952017-03-07 10:06:24 -0800133
134#endif /* SRC_VNET_SESSION_SESSION_DEBUG_H_ */
135/*
136 * fd.io coding-style-patch-verification: ON
137 *
138 * Local Variables:
139 * eval: (c-set-style "gnu")
140 * End:
141 */