blob: 1202f7f44d3acfdea28aa8ae8634296bdbcf7620 [file] [log] [blame]
Florin Corase69f4952017-03-07 10:06:24 -08001/*
Florin Coras6416e622019-04-03 17:52:43 -07002 * 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
16#ifndef SRC_VNET_TCP_TCP_DEBUG_H_
17#define SRC_VNET_TCP_TCP_DEBUG_H_
18
19#include <vlib/vlib.h>
20
Florin Corasa436a422019-08-20 07:09:31 -070021/**
22 * Build debugging infra unconditionally. Debug components controlled via
23 * debug configuration. Comes with some overhead so it's not recommended for
24 * production/performance scenarios. Takes priority over TCP_DEBUG_ENABLE.
25 */
26#define TCP_DEBUG_ALWAYS (0)
27/**
28 * Build debugging infra only if enabled. Debug components controlled via
29 * macros that follow.
30 */
31#define TCP_DEBUG_ENABLE (0)
32
Florin Coras2f8d8fa2018-01-26 06:36:04 -080033#define TCP_DEBUG_SM (0)
Florin Corase5c57d72019-03-19 19:36:07 -070034#define TCP_DEBUG_CC (0)
Florin Corasa436a422019-08-20 07:09:31 -070035#define TCP_DEBUG_CS (0)
36#define TCP_DEBUG_LC (0 || TCP_DEBUG_SM || TCP_DEBUG_CC || TCP_DEBUG_CS)
Florin Corase69f4952017-03-07 10:06:24 -080037
Florin Corasa436a422019-08-20 07:09:31 -070038#define TCP_DEBUG (TCP_DEBUG_ALWAYS || TCP_DEBUG_ENABLE)
39#define TCP_DEBUG_BUF_ALLOC (0)
Florin Corase69f4952017-03-07 10:06:24 -080040
Florin Corasa436a422019-08-20 07:09:31 -070041#if TCP_DEBUG > 0
Florin Corase69f4952017-03-07 10:06:24 -080042#define TRANSPORT_DEBUG (1)
Florin Corasa436a422019-08-20 07:09:31 -070043#endif
44
45#define TCP_CONCAT_HELPER(_a, _b) _a##_b
46#define TCP_CC(_a, _b) TCP_CONCAT_HELPER(_a, _b)
47
48#define tcp_evt_lvl(_evt) TCP_CC(_evt, _LVL)
49#define tcp_evt_grp(_evt) TCP_CC(_evt, _GRP)
50#define tcp_evt_handler(_evt, _args...) TCP_CC(_evt, _HANDLER) (_args)
51#define tcp_evt_grp_dbg_lvl(_evt) tcp_dbg_main.grp_dbg_lvl[tcp_evt_grp (_evt)]
52
53#define foreach_tcp_evt_grp \
54 _(LC, "life cycle") \
55 _(SM, "state machine") \
56 _(CC, "congestion control") \
57 _(CS, "cc stats") \
58
59typedef enum tcp_evt_grp_
60{
61#define _(sym, str) TCP_EVT_GRP_ ## sym,
62 foreach_tcp_evt_grp
63#undef _
64 TCP_EVT_N_GRP
65} tcp_evt_grp_e;
66
67typedef struct tcp_dbg_main_
68{
69 u8 grp_dbg_lvl[TCP_EVT_N_GRP];
70 u32 *free_track_indices;
71} tcp_dbg_main_t;
72
73extern tcp_dbg_main_t tcp_dbg_main;
74
75#define foreach_tcp_dbg_evt \
76 _(INIT, LC, 1, "init") \
77 _(DEALLOC, LC, 1, "dealloc") \
78 _(OPEN, LC, 1, "open") \
79 _(CLOSE, LC, 1, "close") \
80 _(BIND, LC, 1, "bind") \
81 _(UNBIND, LC, 1, "unbind") \
82 _(DELETE, LC, 1, "delete") \
83 _(SYN_RCVD, LC, 1, "SYN rcvd") \
84 _(STATE_CHANGE, LC, 1, "state change") \
85 _(SYN_SENT, SM, 1, "SYN sent") \
86 _(SYN_RXT, SM, 1, "SYN retransmit") \
87 _(SYNACK_SENT, SM, 1, "SYNACK sent") \
88 _(SYNACK_RCVD, SM, 1, "SYNACK rcvd") \
89 _(FIN_SENT, SM, 1, "FIN sent") \
90 _(FIN_RCVD, SM, 1, "FIN rcvd") \
91 _(RST_SENT, SM, 1, "RST sent") \
92 _(RST_RCVD, SM, 1, "RST rcvd") \
93 _(TIMER_POP, SM, 1, "timer pop") \
94 _(SEG_INVALID, SM, 2, "invalid segment") \
95 _(PAWS_FAIL, SM, 2, "failed paws check") \
96 _(ACK_RCV_ERR, SM, 2, "invalid ack") \
97 _(RCV_WND_SHRUNK, SM, 2, "shrunk rcv_wnd") \
98 _(ACK_SENT, SM, 3, "ACK sent") \
99 _(ACK_RCVD, SM, 3, "ACK rcvd") \
100 _(PKTIZE, SM, 3, "packetize") \
101 _(INPUT, SM, 3, "in") \
102 _(OUTPUT, SM, 4, "output") \
103 _(SND_WND, SM, 4, "snd_wnd update") \
104 _(CC_EVT, CC, 1, "cc event") \
105 _(CC_RTX, CC, 2, "retransmit") \
106 _(CC_PACK, CC, 2, "cc partial ack") \
107 _(DUPACK_SENT, CC, 2, "DUPACK sent") \
108 _(DUPACK_RCVD, CC, 2, "DUPACK rcvd") \
109 _(CC_SCOREBOARD, CC, 2, "scoreboard stats") \
110 _(CC_SACKS, CC, 2, "snd sacks stats") \
111 _(CC_INPUT, CC, 2, "ooo data delivered") \
112 _(CC_STAT, CS, 1, "cc stats") \
113 _(CC_RTO_STAT, CS, 1, "cc rto stats") \
114
115typedef enum tcp_evt_types_
116{
117#define _(sym, grp, lvl, str) TCP_EVT_##sym,
118 foreach_tcp_dbg_evt
119#undef _
120} tcp_evt_types_e;
121
122typedef enum tcp_evt_lvl_
123{
124#define _(sym, grp, lvl, str) TCP_EVT_## sym ## _LVL = lvl,
125 foreach_tcp_dbg_evt
126#undef _
127} tcp_evt_lvl_e;
128
129typedef enum tcp_evt_to_grp_
130{
131#define _(sym, grp, lvl, str) TCP_EVT_ ## sym ## _GRP = TCP_EVT_GRP_ ## grp,
132 foreach_tcp_dbg_evt
133#undef _
134} tcp_evt_to_grp_e;
135
136#if TCP_DEBUG_ALWAYS > 0
137#define TCP_EVT(_evt, _args...) \
138 if (PREDICT_FALSE (tcp_evt_grp_dbg_lvl (_evt) >= tcp_evt_lvl (_evt))) \
139 tcp_evt_handler (_evt, _args)
140#define TCP_DBG(_fmt, _args...) clib_warning (_fmt, ##_args)
141#elif TCP_DEBUG_ENABLE > 0
142#define TCP_EVT(_evt, _args...) tcp_evt_handler(_evt, _args)
143#define TCP_DBG(_fmt, _args...) clib_warning (_fmt, ##_args)
144#else
145#define TCP_EVT(_evt, _args...)
146#define TCP_DBG(_fmt, _args...)
147#endif
148
149void tcp_evt_track_register (elog_track_t * et);
150void tcp_debug_init (void);
151
152#define TCP_DECLARE_ETD(_tc, _e, _size) \
153struct \
154{ \
155 u32 data[_size]; \
156} * ed; \
157ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, _e, \
158 _tc->c_elog_track) \
159
160/*
161 * Event handlers definitions
162 */
163
164#if TCP_DEBUG_LC || TCP_DEBUG_ALWAYS
Florin Corase69f4952017-03-07 10:06:24 -0800165
Florin Corasf03a59a2017-06-09 21:07:32 -0700166/*
167 * Infra and evt track setup
168 */
169
Florin Coras6534b7a2017-07-18 05:38:03 -0400170#define TCP_DBG_IP_TAG_LCL(_tc) \
Florin Corase69f4952017-03-07 10:06:24 -0800171{ \
Florin Coras6534b7a2017-07-18 05:38:03 -0400172 if (_tc->c_is_ip4) \
173 { \
174 ELOG_TYPE_DECLARE (_e) = \
175 { \
176 .format = "lcl: %d.%d.%d.%d:%d", \
177 .format_args = "i4i4i4i4i4", \
178 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700179 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Coras6534b7a2017-07-18 05:38:03 -0400180 ed->data[0] = _tc->c_lcl_ip.ip4.as_u8[0]; \
181 ed->data[1] = _tc->c_lcl_ip.ip4.as_u8[1]; \
182 ed->data[2] = _tc->c_lcl_ip.ip4.as_u8[2]; \
183 ed->data[3] = _tc->c_lcl_ip.ip4.as_u8[3]; \
184 ed->data[4] = clib_net_to_host_u16(_tc->c_lcl_port); \
185 } \
186}
187
188#define TCP_DBG_IP_TAG_RMT(_tc) \
189{ \
190 if (_tc->c_is_ip4) \
191 { \
192 ELOG_TYPE_DECLARE (_e) = \
193 { \
194 .format = "rmt: %d.%d.%d.%d:%d", \
195 .format_args = "i4i4i4i4i4", \
196 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700197 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Coras6534b7a2017-07-18 05:38:03 -0400198 ed->data[0] = _tc->c_rmt_ip.ip4.as_u8[0]; \
199 ed->data[1] = _tc->c_rmt_ip.ip4.as_u8[1]; \
200 ed->data[2] = _tc->c_rmt_ip.ip4.as_u8[2]; \
201 ed->data[3] = _tc->c_rmt_ip.ip4.as_u8[3]; \
202 ed->data[4] = clib_net_to_host_u16(_tc->c_rmt_port); \
203 } \
204}
205
206#define TCP_EVT_INIT_HANDLER(_tc, _is_l, ...) \
207{ \
208 char *_fmt = _is_l ? "l[%d].%d:%d%c" : "[%d].%d:%d->.%d:%d%c"; \
209 if (_tc->c_is_ip4) \
210 { \
211 _tc->c_elog_track.name = \
212 (char *) format (0, _fmt, _tc->c_thread_index, \
213 _tc->c_lcl_ip.ip4.as_u8[3], \
214 clib_net_to_host_u16(_tc->c_lcl_port), \
215 _tc->c_rmt_ip.ip4.as_u8[3], \
216 clib_net_to_host_u16(_tc->c_rmt_port), 0); \
217 } \
218 else \
219 _tc->c_elog_track.name = \
220 (char *) format (0, _fmt, _tc->c_thread_index, \
221 _tc->c_lcl_ip.ip6.as_u8[15], \
222 clib_net_to_host_u16(_tc->c_lcl_port), \
223 _tc->c_rmt_ip.ip6.as_u8[15], \
224 clib_net_to_host_u16(_tc->c_rmt_port), 0); \
Florin Corasa436a422019-08-20 07:09:31 -0700225 tcp_evt_track_register (&_tc->c_elog_track); \
Florin Coras6534b7a2017-07-18 05:38:03 -0400226 TCP_DBG_IP_TAG_LCL(_tc); \
227 TCP_DBG_IP_TAG_RMT(_tc); \
Florin Corase69f4952017-03-07 10:06:24 -0800228}
229
230#define TCP_EVT_DEALLOC_HANDLER(_tc, ...) \
231{ \
232 vec_free (_tc->c_elog_track.name); \
Florin Corasa436a422019-08-20 07:09:31 -0700233 vec_add1 (tcp_dbg_main.free_track_indices, \
234 _tc->c_elog_track.track_index_plus_one - 1); \
Florin Corase69f4952017-03-07 10:06:24 -0800235}
236
237#define TCP_EVT_OPEN_HANDLER(_tc, ...) \
238{ \
Florin Coras6534b7a2017-07-18 05:38:03 -0400239 TCP_EVT_INIT_HANDLER(_tc, 0); \
Florin Corase69f4952017-03-07 10:06:24 -0800240 ELOG_TYPE_DECLARE (_e) = \
241 { \
242 .format = "open: index %d", \
243 .format_args = "i4", \
244 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700245 TCP_DECLARE_ETD(_tc, _e, 1); \
Florin Corase69f4952017-03-07 10:06:24 -0800246 ed->data[0] = _tc->c_c_index; \
247}
248
249#define TCP_EVT_CLOSE_HANDLER(_tc, ...) \
250{ \
251 ELOG_TYPE_DECLARE (_e) = \
252 { \
Florin Coras6416e622019-04-03 17:52:43 -0700253 .format = "close: cidx %d", \
Florin Corase69f4952017-03-07 10:06:24 -0800254 .format_args = "i4", \
255 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700256 TCP_DECLARE_ETD(_tc, _e, 1); \
Florin Corase69f4952017-03-07 10:06:24 -0800257 ed->data[0] = _tc->c_c_index; \
258}
259
260#define TCP_EVT_BIND_HANDLER(_tc, ...) \
261{ \
Florin Coras6534b7a2017-07-18 05:38:03 -0400262 TCP_EVT_INIT_HANDLER(_tc, 1); \
Florin Corase69f4952017-03-07 10:06:24 -0800263 ELOG_TYPE_DECLARE (_e) = \
264 { \
265 .format = "bind: listener %d", \
266 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700267 TCP_DECLARE_ETD(_tc, _e, 1); \
Florin Corase69f4952017-03-07 10:06:24 -0800268 ed->data[0] = _tc->c_c_index; \
269}
270
Florin Corasca1c8f32018-05-23 21:01:30 -0700271#define TCP_EVT_SYN_RCVD_HANDLER(_tc,_init, ...) \
Florin Coras68810622017-07-24 17:40:28 -0700272{ \
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400273 if (_init) \
274 TCP_EVT_INIT_HANDLER(_tc, 0); \
Florin Coras68810622017-07-24 17:40:28 -0700275 ELOG_TYPE_DECLARE (_e) = \
276 { \
Florin Coras6416e622019-04-03 17:52:43 -0700277 .format = "syn-rx: cidx %u sidx %u irs %u", \
278 .format_args = "i4i4i4", \
Florin Coras68810622017-07-24 17:40:28 -0700279 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700280 TCP_DECLARE_ETD(_tc, _e, 3); \
Florin Coras070fd4b2019-04-02 19:03:23 -0700281 ed->data[0] = _tc->c_c_index; \
Florin Coras6416e622019-04-03 17:52:43 -0700282 ed->data[1] = _tc->c_s_index; \
283 ed->data[2] = _tc->irs; \
Florin Coras68810622017-07-24 17:40:28 -0700284 TCP_EVT_STATE_CHANGE_HANDLER(_tc); \
285}
286
Florin Corase69f4952017-03-07 10:06:24 -0800287#define TCP_EVT_UNBIND_HANDLER(_tc, ...) \
288{ \
289 TCP_EVT_DEALLOC_HANDLER(_tc); \
290 ELOG_TYPE_DECLARE (_e) = \
291 { \
292 .format = "unbind: listener %d", \
293 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700294 TCP_DECLARE_ETD(_tc, _e, 1); \
Florin Corase69f4952017-03-07 10:06:24 -0800295 ed->data[0] = _tc->c_c_index; \
296 TCP_EVT_DEALLOC_HANDLER(_tc); \
297}
298
299#define TCP_EVT_DELETE_HANDLER(_tc, ...) \
300{ \
301 ELOG_TYPE_DECLARE (_e) = \
302 { \
Florin Coras6416e622019-04-03 17:52:43 -0700303 .format = "delete: cidx %d sidx %d", \
304 .format_args = "i4i4", \
Florin Corase69f4952017-03-07 10:06:24 -0800305 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700306 TCP_DECLARE_ETD(_tc, _e, 2); \
Florin Corase69f4952017-03-07 10:06:24 -0800307 ed->data[0] = _tc->c_c_index; \
Florin Coras6416e622019-04-03 17:52:43 -0700308 ed->data[1] = _tc->c_s_index; \
Florin Corase69f4952017-03-07 10:06:24 -0800309 TCP_EVT_DEALLOC_HANDLER(_tc); \
310}
311
Florin Corasf03a59a2017-06-09 21:07:32 -0700312#endif
313
314/*
315 * State machine
316 */
Florin Corasa436a422019-08-20 07:09:31 -0700317#if TCP_DEBUG_SM > 0 || TCP_DEBUG_ALWAYS
Florin Corasf03a59a2017-06-09 21:07:32 -0700318
Florin Coras6534b7a2017-07-18 05:38:03 -0400319#define TCP_EVT_STATE_CHANGE_HANDLER(_tc, ...) \
320{ \
321 ELOG_TYPE_DECLARE (_e) = \
322 { \
323 .format = "state: %s", \
324 .format_args = "t4", \
325 .n_enum_strings = 11, \
326 .enum_strings = { \
327 "closed", \
328 "listen", \
329 "syn-sent", \
330 "syn-rcvd", \
331 "established", \
332 "close_wait", \
333 "fin-wait-1", \
334 "last-ack", \
335 "closing", \
336 "fin-wait-2", \
337 "time-wait", \
338 }, \
339 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700340 TCP_DECLARE_ETD(_tc, _e, 1); \
Florin Coras6534b7a2017-07-18 05:38:03 -0400341 ed->data[0] = _tc->state; \
342}
343
Florin Coras6534b7a2017-07-18 05:38:03 -0400344#define TCP_EVT_SYN_SENT_HANDLER(_tc, ...) \
345{ \
346 ELOG_TYPE_DECLARE (_e) = \
347 { \
Florin Coras9404a072020-11-24 17:29:17 -0800348 .format = "syn-tx: iss %u snd_una %u snd_nxt %u", \
349 .format_args = "i4i4i4", \
Florin Coras6534b7a2017-07-18 05:38:03 -0400350 }; \
Florin Coras9404a072020-11-24 17:29:17 -0800351 TCP_DECLARE_ETD(_tc, _e, 3); \
Florin Coras6534b7a2017-07-18 05:38:03 -0400352 ed->data[0] = _tc->iss; \
Florin Corasca1c8f32018-05-23 21:01:30 -0700353 ed->data[1] = _tc->snd_una - _tc->iss; \
Florin Coras9404a072020-11-24 17:29:17 -0800354 ed->data[2] = _tc->snd_nxt - _tc->iss; \
Florin Coras6534b7a2017-07-18 05:38:03 -0400355 TCP_EVT_STATE_CHANGE_HANDLER(_tc); \
356}
357
358#define TCP_EVT_SYNACK_SENT_HANDLER(_tc, ...) \
359{ \
360 ELOG_TYPE_DECLARE (_e) = \
361 { \
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400362 .format = "synack-tx: iss %u irs %u snd_una %u snd_nxt %u rcv_nxt %u",\
Florin Corasca1c8f32018-05-23 21:01:30 -0700363 .format_args = "i4i4i4i4i4", \
Florin Coras6534b7a2017-07-18 05:38:03 -0400364 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700365 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Coras6534b7a2017-07-18 05:38:03 -0400366 ed->data[0] = _tc->iss; \
367 ed->data[1] = _tc->irs; \
Florin Corasca1c8f32018-05-23 21:01:30 -0700368 ed->data[2] = _tc->snd_una - _tc->iss; \
369 ed->data[3] = _tc->snd_nxt - _tc->iss; \
370 ed->data[4] = _tc->rcv_nxt - _tc->irs; \
Florin Coras6534b7a2017-07-18 05:38:03 -0400371}
372
373#define TCP_EVT_SYNACK_RCVD_HANDLER(_tc, ...) \
374{ \
375 ELOG_TYPE_DECLARE (_e) = \
376 { \
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400377 .format = "synack-rx: iss %u irs %u snd_una %u snd_nxt %u rcv_nxt %u",\
Florin Corasca1c8f32018-05-23 21:01:30 -0700378 .format_args = "i4i4i4i4i4", \
Florin Coras6534b7a2017-07-18 05:38:03 -0400379 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700380 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Coras6534b7a2017-07-18 05:38:03 -0400381 ed->data[0] = _tc->iss; \
382 ed->data[1] = _tc->irs; \
Florin Corasca1c8f32018-05-23 21:01:30 -0700383 ed->data[2] = _tc->snd_una - _tc->iss; \
384 ed->data[3] = _tc->snd_nxt - _tc->iss; \
385 ed->data[4] = _tc->rcv_nxt - _tc->irs; \
Florin Coras6534b7a2017-07-18 05:38:03 -0400386 TCP_EVT_STATE_CHANGE_HANDLER(_tc); \
387}
388
389#define TCP_EVT_FIN_SENT_HANDLER(_tc, ...) \
390{ \
391 ELOG_TYPE_DECLARE (_e) = \
392 { \
393 .format = "fin-tx: snd_nxt %d rcv_nxt %d", \
394 .format_args = "i4i4", \
395 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700396 TCP_DECLARE_ETD(_tc, _e, 2); \
Florin Coras6534b7a2017-07-18 05:38:03 -0400397 ed->data[0] = _tc->snd_nxt - _tc->iss; \
398 ed->data[1] = _tc->rcv_nxt - _tc->irs; \
399}
400
401#define TCP_EVT_RST_SENT_HANDLER(_tc, ...) \
402{ \
Florin Corasfc804d92018-01-26 01:27:01 -0800403if (_tc) \
Florin Coras6534b7a2017-07-18 05:38:03 -0400404 { \
Florin Corasfc804d92018-01-26 01:27:01 -0800405 ELOG_TYPE_DECLARE (_e) = \
406 { \
407 .format = "rst-tx: snd_nxt %d rcv_nxt %d", \
408 .format_args = "i4i4", \
409 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700410 TCP_DECLARE_ETD(_tc, _e, 2); \
Florin Corasfc804d92018-01-26 01:27:01 -0800411 ed->data[0] = _tc->snd_nxt - _tc->iss; \
412 ed->data[1] = _tc->rcv_nxt - _tc->irs; \
413 TCP_EVT_STATE_CHANGE_HANDLER(_tc); \
414 } \
Florin Coras6534b7a2017-07-18 05:38:03 -0400415}
416
417#define TCP_EVT_FIN_RCVD_HANDLER(_tc, ...) \
418{ \
419 ELOG_TYPE_DECLARE (_e) = \
420 { \
421 .format = "fin-rx: snd_nxt %d rcv_nxt %d", \
422 .format_args = "i4i4", \
423 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700424 TCP_DECLARE_ETD(_tc, _e, 2); \
Florin Coras6534b7a2017-07-18 05:38:03 -0400425 ed->data[0] = _tc->snd_nxt - _tc->iss; \
426 ed->data[1] = _tc->rcv_nxt - _tc->irs; \
427}
428
429#define TCP_EVT_RST_RCVD_HANDLER(_tc, ...) \
430{ \
431 ELOG_TYPE_DECLARE (_e) = \
432 { \
433 .format = "rst-rx: snd_nxt %d rcv_nxt %d", \
434 .format_args = "i4i4", \
435 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700436 TCP_DECLARE_ETD(_tc, _e, 2); \
Florin Coras6534b7a2017-07-18 05:38:03 -0400437 ed->data[0] = _tc->snd_nxt - _tc->iss; \
438 ed->data[1] = _tc->rcv_nxt - _tc->irs; \
439}
440
441#define TCP_EVT_SYN_RXT_HANDLER(_tc, _type, ...) \
442{ \
443 ELOG_TYPE_DECLARE (_e) = \
444 { \
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400445 .format = "%s-rxt: iss %u irs %u snd_nxt %u rcv_nxt %u", \
Florin Corasca1c8f32018-05-23 21:01:30 -0700446 .format_args = "t4i4i4i4i4", \
Florin Coras6534b7a2017-07-18 05:38:03 -0400447 .n_enum_strings = 2, \
448 .enum_strings = { \
449 "syn", \
Florin Coras6416e622019-04-03 17:52:43 -0700450 "synack", \
Florin Coras6534b7a2017-07-18 05:38:03 -0400451 }, \
452 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700453 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Coras6534b7a2017-07-18 05:38:03 -0400454 ed->data[0] = _type; \
455 ed->data[1] = _tc->iss; \
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400456 ed->data[2] = _tc->irs; \
Florin Corasca1c8f32018-05-23 21:01:30 -0700457 ed->data[3] = _tc->snd_nxt - _tc->iss; \
458 ed->data[4] = _tc->rcv_nxt - _tc->irs; \
Florin Coras6534b7a2017-07-18 05:38:03 -0400459}
Florin Coras85a3ddd2018-12-24 16:54:34 -0800460
461#define TCP_EVT_TIMER_POP_HANDLER(_tc_index, _timer_id, ...) \
462{ \
463 tcp_connection_t *_tc; \
Florin Corasa436a422019-08-20 07:09:31 -0700464 if (_timer_id == TCP_TIMER_RETRANSMIT_SYN) \
Florin Coras85a3ddd2018-12-24 16:54:34 -0800465 { \
466 _tc = tcp_half_open_connection_get (_tc_index); \
467 } \
468 else \
469 { \
470 u32 _thread_index = vlib_get_thread_index (); \
471 _tc = tcp_connection_get (_tc_index, _thread_index); \
472 } \
473 ELOG_TYPE_DECLARE (_e) = \
474 { \
Florin Coras6416e622019-04-03 17:52:43 -0700475 .format = "timer-pop: %s cidx %u sidx %u", \
476 .format_args = "t4i4i4", \
Florin Coras85a3ddd2018-12-24 16:54:34 -0800477 .n_enum_strings = 8, \
478 .enum_strings = { \
479 "retransmit", \
480 "delack", \
481 "persist", \
482 "keep", \
483 "waitclose", \
484 "retransmit syn", \
485 "establish", \
486 "establish-ao", \
487 }, \
488 }; \
489 if (_tc) \
490 { \
Florin Corasa436a422019-08-20 07:09:31 -0700491 TCP_DECLARE_ETD(_tc, _e, 3); \
Florin Coras85a3ddd2018-12-24 16:54:34 -0800492 ed->data[0] = _timer_id; \
Florin Coras6416e622019-04-03 17:52:43 -0700493 ed->data[1] = _tc->c_c_index; \
494 ed->data[2] = _tc->c_s_index; \
Florin Coras85a3ddd2018-12-24 16:54:34 -0800495 } \
496 else \
497 { \
498 clib_warning ("pop %d for unexisting connection %d", _timer_id, \
499 _tc_index); \
500 } \
501}
502
Florin Coras6534b7a2017-07-18 05:38:03 -0400503#else
504#define TCP_EVT_SYN_SENT_HANDLER(_tc, ...)
505#define TCP_EVT_SYNACK_SENT_HANDLER(_tc, ...)
506#define TCP_EVT_SYNACK_RCVD_HANDLER(_tc, ...)
507#define TCP_EVT_SYN_RXT_HANDLER(_tc, ...)
508#define TCP_EVT_FIN_SENT_HANDLER(_tc, ...)
509#define TCP_EVT_RST_SENT_HANDLER(_tc, ...)
510#define TCP_EVT_FIN_RCVD_HANDLER(_tc, ...)
511#define TCP_EVT_RST_RCVD_HANDLER(_tc, ...)
512#define TCP_EVT_STATE_CHANGE_HANDLER(_tc, ...)
Florin Coras85a3ddd2018-12-24 16:54:34 -0800513#define TCP_EVT_TIMER_POP_HANDLER(_tc_index, _timer_id, ...)
Florin Coras6534b7a2017-07-18 05:38:03 -0400514#endif
515
Florin Corasa436a422019-08-20 07:09:31 -0700516#if TCP_DEBUG_SM > 1 || TCP_DEBUG_ALWAYS
Florin Corasca1c8f32018-05-23 21:01:30 -0700517#define TCP_EVT_SEG_INVALID_HANDLER(_tc, _btcp, ...) \
518{ \
519 ELOG_TYPE_DECLARE (_e) = \
520 { \
521 .format = "seg-inv: seq %u end %u rcv_las %u rcv_nxt %u rcv_wnd %u",\
522 .format_args = "i4i4i4i4i4", \
523 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700524 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Corasca1c8f32018-05-23 21:01:30 -0700525 ed->data[0] = _btcp.seq_number - _tc->irs; \
526 ed->data[1] = _btcp.seq_end - _tc->irs; \
527 ed->data[2] = _tc->rcv_las - _tc->irs; \
528 ed->data[3] = _tc->rcv_nxt - _tc->irs; \
529 ed->data[4] = _tc->rcv_wnd; \
530}
531
532#define TCP_EVT_PAWS_FAIL_HANDLER(_tc, _seq, _end, ...) \
533{ \
534 ELOG_TYPE_DECLARE (_e) = \
535 { \
536 .format = "paws-err: seq %u end %u tsval %u tsval_recent %u", \
537 .format_args = "i4i4i4i4", \
538 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700539 TCP_DECLARE_ETD(_tc, _e, 4); \
Florin Corasca1c8f32018-05-23 21:01:30 -0700540 ed->data[0] = _seq - _tc->irs; \
541 ed->data[1] = _end - _tc->irs; \
542 ed->data[2] = _tc->rcv_opts.tsval; \
543 ed->data[3] = _tc->tsval_recent; \
544}
545
546#define TCP_EVT_ACK_RCV_ERR_HANDLER(_tc, _type, _ack, ...) \
547{ \
548 ELOG_TYPE_DECLARE (_e) = \
549 { \
Florin Coras9404a072020-11-24 17:29:17 -0800550 .format = "ack-err: %s ack %u snd_una %u snd_nxt %u", \
551 .format_args = "t4i4i4i4", \
Florin Corasca1c8f32018-05-23 21:01:30 -0700552 .n_enum_strings = 3, \
553 .enum_strings = { \
554 "invalid", \
555 "old", \
556 "future", \
557 }, \
558 }; \
Florin Coras9404a072020-11-24 17:29:17 -0800559 TCP_DECLARE_ETD(_tc, _e, 4); \
Florin Corasca1c8f32018-05-23 21:01:30 -0700560 ed->data[0] = _type; \
561 ed->data[1] = _ack - _tc->iss; \
562 ed->data[2] = _tc->snd_una - _tc->iss; \
563 ed->data[3] = _tc->snd_nxt - _tc->iss; \
Florin Corasca1c8f32018-05-23 21:01:30 -0700564}
565
566#define TCP_EVT_RCV_WND_SHRUNK_HANDLER(_tc, _obs, _av, ...) \
567{ \
568if (_av > 0) \
569{ \
570 ELOG_TYPE_DECLARE (_e) = \
571 { \
572 .format = "huh?: rcv_wnd %u obsd %u av %u rcv_nxt %u rcv_las %u", \
573 .format_args = "i4i4i4i4i4", \
574 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700575 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Corasca1c8f32018-05-23 21:01:30 -0700576 ed->data[0] = _tc->rcv_wnd; \
577 ed->data[1] = _obs; \
578 ed->data[2] = _av; \
579 ed->data[3] = _tc->rcv_nxt - _tc->irs; \
580 ed->data[4] = _tc->rcv_las - _tc->irs; \
581} \
582}
583#else
584#define TCP_EVT_SEG_INVALID_HANDLER(_tc, _btcp, ...)
585#define TCP_EVT_PAWS_FAIL_HANDLER(_tc, _seq, _end, ...)
586#define TCP_EVT_ACK_RCV_ERR_HANDLER(_tc, _type, _ack, ...)
587#define TCP_EVT_RCV_WND_SHRUNK_HANDLER(_tc, _obs, _av, ...)
588#endif
589
Florin Corasa436a422019-08-20 07:09:31 -0700590#if TCP_DEBUG_SM > 2 || TCP_DEBUG_ALWAYS
Florin Coras6534b7a2017-07-18 05:38:03 -0400591
Florin Coras6792ec02017-03-13 03:49:51 -0700592#define TCP_EVT_ACK_SENT_HANDLER(_tc, ...) \
593{ \
594 ELOG_TYPE_DECLARE (_e) = \
595 { \
Florin Coras6534b7a2017-07-18 05:38:03 -0400596 .format = "ack-tx: acked %u rcv_nxt %u rcv_wnd %u snd_nxt %u snd_wnd %u",\
Florin Coras3e350af2017-03-30 02:54:28 -0700597 .format_args = "i4i4i4i4i4", \
Florin Coras6792ec02017-03-13 03:49:51 -0700598 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700599 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Coras6792ec02017-03-13 03:49:51 -0700600 ed->data[0] = _tc->rcv_nxt - _tc->rcv_las; \
601 ed->data[1] = _tc->rcv_nxt - _tc->irs; \
602 ed->data[2] = _tc->rcv_wnd; \
603 ed->data[3] = _tc->snd_nxt - _tc->iss; \
Florin Coras3e350af2017-03-30 02:54:28 -0700604 ed->data[4] = _tc->snd_wnd; \
Florin Coras6792ec02017-03-13 03:49:51 -0700605}
606
Florin Coras3e350af2017-03-30 02:54:28 -0700607#define TCP_EVT_ACK_RCVD_HANDLER(_tc, ...) \
Florin Corase69f4952017-03-07 10:06:24 -0800608{ \
609 ELOG_TYPE_DECLARE (_e) = \
610 { \
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400611 .format = "ack-rx: %u snd_una %u snd_wnd %u cwnd %u inflight %u", \
Florin Coras6792ec02017-03-13 03:49:51 -0700612 .format_args = "i4i4i4i4i4", \
Florin Corase69f4952017-03-07 10:06:24 -0800613 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700614 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Corase69f4952017-03-07 10:06:24 -0800615 ed->data[0] = _tc->bytes_acked; \
Florin Coras6792ec02017-03-13 03:49:51 -0700616 ed->data[1] = _tc->snd_una - _tc->iss; \
Florin Coras3e350af2017-03-30 02:54:28 -0700617 ed->data[2] = _tc->snd_wnd; \
Florin Coras6792ec02017-03-13 03:49:51 -0700618 ed->data[3] = _tc->cwnd; \
619 ed->data[4] = tcp_flight_size(_tc); \
620}
621
Florin Corase69f4952017-03-07 10:06:24 -0800622#define TCP_EVT_PKTIZE_HANDLER(_tc, ...) \
623{ \
624 ELOG_TYPE_DECLARE (_e) = \
625 { \
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400626 .format = "tx: una %u snd_nxt %u space %u flight %u rcv_wnd %u",\
Florin Coras6792ec02017-03-13 03:49:51 -0700627 .format_args = "i4i4i4i4i4", \
Florin Corase69f4952017-03-07 10:06:24 -0800628 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700629 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Corase69f4952017-03-07 10:06:24 -0800630 ed->data[0] = _tc->snd_una - _tc->iss; \
631 ed->data[1] = _tc->snd_nxt - _tc->iss; \
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400632 ed->data[2] = tcp_available_output_snd_space (_tc); \
Florin Coras6792ec02017-03-13 03:49:51 -0700633 ed->data[3] = tcp_flight_size (_tc); \
634 ed->data[4] = _tc->rcv_wnd; \
Florin Corase69f4952017-03-07 10:06:24 -0800635}
636
Florin Coras6792ec02017-03-13 03:49:51 -0700637#define TCP_EVT_INPUT_HANDLER(_tc, _type, _len, _written, ...) \
Florin Corase69f4952017-03-07 10:06:24 -0800638{ \
639 ELOG_TYPE_DECLARE (_e) = \
640 { \
Florin Coras3e350af2017-03-30 02:54:28 -0700641 .format = "in: %s len %u written %d rcv_nxt %u rcv_wnd(o) %d", \
Florin Coras6792ec02017-03-13 03:49:51 -0700642 .format_args = "t4i4i4i4i4", \
643 .n_enum_strings = 2, \
644 .enum_strings = { \
645 "order", \
646 "ooo", \
647 }, \
Florin Corase69f4952017-03-07 10:06:24 -0800648 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700649 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Coras6792ec02017-03-13 03:49:51 -0700650 ed->data[0] = _type; \
651 ed->data[1] = _len; \
652 ed->data[2] = _written; \
653 ed->data[3] = (_tc->rcv_nxt - _tc->irs) + _written; \
654 ed->data[4] = _tc->rcv_wnd - (_tc->rcv_nxt - _tc->rcv_las); \
Florin Corase69f4952017-03-07 10:06:24 -0800655}
656
Florin Corasf03a59a2017-06-09 21:07:32 -0700657#else
658#define TCP_EVT_ACK_SENT_HANDLER(_tc, ...)
Florin Corasf03a59a2017-06-09 21:07:32 -0700659#define TCP_EVT_ACK_RCVD_HANDLER(_tc, ...)
Florin Corasf03a59a2017-06-09 21:07:32 -0700660#define TCP_EVT_PKTIZE_HANDLER(_tc, ...)
661#define TCP_EVT_INPUT_HANDLER(_tc, _type, _len, _written, ...)
Florin Corasf03a59a2017-06-09 21:07:32 -0700662#endif
663
664/*
665 * State machine verbose
666 */
Florin Corasa436a422019-08-20 07:09:31 -0700667#if TCP_DEBUG_SM > 3 || TCP_DEBUG_ALWAYS
Florin Corasf03a59a2017-06-09 21:07:32 -0700668#define TCP_EVT_SND_WND_HANDLER(_tc, ...) \
669{ \
670 ELOG_TYPE_DECLARE (_e) = \
671 { \
Florin Coras6534b7a2017-07-18 05:38:03 -0400672 .format = "snd-wnd update: %u ", \
Florin Corasf03a59a2017-06-09 21:07:32 -0700673 .format_args = "i4", \
674 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700675 TCP_DECLARE_ETD(_tc, _e, 1); \
Florin Corasf03a59a2017-06-09 21:07:32 -0700676 ed->data[0] = _tc->snd_wnd; \
677}
678
679#define TCP_EVT_OUTPUT_HANDLER(_tc, flags, n_bytes,...) \
680{ \
681 ELOG_TYPE_DECLARE (_e) = \
682 { \
683 .format = "out: flags %x, bytes %u", \
684 .format_args = "i4i4", \
685 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700686 TCP_DECLARE_ETD(_tc, _e, 2); \
Florin Corasf03a59a2017-06-09 21:07:32 -0700687 ed->data[0] = flags; \
688 ed->data[1] = n_bytes; \
689}
690#else
691#define TCP_EVT_SND_WND_HANDLER(_tc, ...)
692#define TCP_EVT_OUTPUT_HANDLER(_tc, flags, n_bytes,...)
693#endif
694
Florin Coras6792ec02017-03-13 03:49:51 -0700695/*
696 * Congestion Control
697 */
698
Florin Corasa436a422019-08-20 07:09:31 -0700699#if TCP_DEBUG_CC || TCP_DEBUG_ALWAYS
Florin Corasf1762d62017-09-24 19:43:08 -0400700
Florin Corase55a6d72018-10-31 23:09:22 -0700701#define TCP_EVT_CC_EVT_PRINT(_tc, _sub_evt) \
Florin Corasf1762d62017-09-24 19:43:08 -0400702{ \
703 ELOG_TYPE_DECLARE (_e) = \
704 { \
Florin Corasca1c8f32018-05-23 21:01:30 -0700705 .format = "cc: %s snd_space %u snd_una %u out %u flight %u", \
706 .format_args = "t4i4i4i4i4", \
707 .n_enum_strings = 7, \
Florin Corasf1762d62017-09-24 19:43:08 -0400708 .enum_strings = { \
709 "fast-rxt", \
Florin Corasf1762d62017-09-24 19:43:08 -0400710 "first-rxt", \
Florin Corase55a6d72018-10-31 23:09:22 -0700711 "rxt-timeout", \
Florin Corasf1762d62017-09-24 19:43:08 -0400712 "recovered", \
713 "congestion", \
714 "undo", \
Florin Corasca1c8f32018-05-23 21:01:30 -0700715 "recovery", \
Florin Corasf1762d62017-09-24 19:43:08 -0400716 }, \
717 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700718 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Corasf1762d62017-09-24 19:43:08 -0400719 ed->data[0] = _sub_evt; \
Florin Corasca1c8f32018-05-23 21:01:30 -0700720 ed->data[1] = tcp_available_cc_snd_space (_tc); \
721 ed->data[2] = _tc->snd_una - _tc->iss; \
722 ed->data[3] = tcp_bytes_out(_tc); \
723 ed->data[4] = tcp_flight_size (_tc); \
Florin Corasf1762d62017-09-24 19:43:08 -0400724}
Florin Corase55a6d72018-10-31 23:09:22 -0700725
726#define TCP_EVT_CC_EVT_HANDLER(_tc, _sub_evt, ...) \
727{ \
728 if (_tc->snd_una != _tc->iss) \
729 TCP_EVT_CC_STAT_PRINT (_tc); \
730 if ((_sub_evt <= 1 && TCP_DEBUG_CC > 1) \
731 || (_sub_evt > 1 && TCP_DEBUG_CC > 0)) \
732 TCP_EVT_CC_EVT_PRINT (_tc, _sub_evt); \
733}
Florin Coras537b17e2018-09-28 10:35:45 -0700734#else
Florin Corase55a6d72018-10-31 23:09:22 -0700735#define TCP_EVT_CC_EVT_HANDLER(_tc, _sub_evt, ...) \
736
Florin Coras537b17e2018-09-28 10:35:45 -0700737#endif
Florin Corasf1762d62017-09-24 19:43:08 -0400738
Florin Corasa436a422019-08-20 07:09:31 -0700739#if TCP_DEBUG_CC > 1 || TCP_DEBUG_ALWAYS
Florin Coras6792ec02017-03-13 03:49:51 -0700740#define TCP_EVT_CC_RTX_HANDLER(_tc, offset, n_bytes, ...) \
741{ \
742 ELOG_TYPE_DECLARE (_e) = \
743 { \
Florin Coras93992a92017-05-24 18:03:56 -0700744 .format = "rxt: snd_nxt %u offset %u snd %u rxt %u", \
Florin Coras6792ec02017-03-13 03:49:51 -0700745 .format_args = "i4i4i4i4", \
746 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700747 TCP_DECLARE_ETD(_tc, _e, 4); \
Florin Coras6792ec02017-03-13 03:49:51 -0700748 ed->data[0] = _tc->snd_nxt - _tc->iss; \
749 ed->data[1] = offset; \
750 ed->data[2] = n_bytes; \
Florin Coras93992a92017-05-24 18:03:56 -0700751 ed->data[3] = _tc->snd_rxt_bytes; \
Florin Coras6792ec02017-03-13 03:49:51 -0700752}
753
Florin Corasca1c8f32018-05-23 21:01:30 -0700754#define TCP_EVT_DUPACK_SENT_HANDLER(_tc, _btcp, ...) \
Florin Coras6792ec02017-03-13 03:49:51 -0700755{ \
756 ELOG_TYPE_DECLARE (_e) = \
757 { \
Florin Corasca1c8f32018-05-23 21:01:30 -0700758 .format = "dack-tx: rcv_nxt %u seq %u rcv_wnd %u snd_nxt %u av_wnd %u",\
Florin Corasf1762d62017-09-24 19:43:08 -0400759 .format_args = "i4i4i4i4i4", \
Florin Coras6792ec02017-03-13 03:49:51 -0700760 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700761 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Corasf1762d62017-09-24 19:43:08 -0400762 ed->data[0] = _tc->rcv_nxt - _tc->irs; \
Florin Corasca1c8f32018-05-23 21:01:30 -0700763 ed->data[1] = _btcp.seq_number - _tc->irs; \
764 ed->data[2] = _tc->rcv_wnd; \
765 ed->data[3] = _tc->snd_nxt - _tc->iss; \
766 ed->data[4] = tcp_available_snd_wnd(_tc); \
Florin Corasf1762d62017-09-24 19:43:08 -0400767}
768
769#define TCP_EVT_DUPACK_RCVD_HANDLER(_tc, ...) \
770{ \
771 ELOG_TYPE_DECLARE (_e) = \
772 { \
773 .format = "dack-rx: snd_una %u cwnd %u snd_wnd %u flight %u rcv_wnd %u",\
774 .format_args = "i4i4i4i4i4", \
775 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700776 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Corasf1762d62017-09-24 19:43:08 -0400777 ed->data[0] = _tc->snd_una - _tc->iss; \
778 ed->data[1] = _tc->cwnd; \
779 ed->data[2] = _tc->snd_wnd; \
780 ed->data[3] = tcp_flight_size(_tc); \
781 ed->data[4] = _tc->rcv_wnd; \
Florin Coras6792ec02017-03-13 03:49:51 -0700782}
783
784#define TCP_EVT_CC_PACK_HANDLER(_tc, ...) \
785{ \
786 ELOG_TYPE_DECLARE (_e) = \
787 { \
Florin Coras9404a072020-11-24 17:29:17 -0800788 .format = "pack: snd_una %u snd_nxt %u", \
Florin Coras6792ec02017-03-13 03:49:51 -0700789 .format_args = "i4i4", \
790 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700791 TCP_DECLARE_ETD(_tc, _e, 2); \
Florin Coras6792ec02017-03-13 03:49:51 -0700792 ed->data[0] = _tc->snd_una - _tc->iss; \
Florin Coras9404a072020-11-24 17:29:17 -0800793 ed->data[1] = _tc->snd_nxt - _tc->iss; \
Florin Coras6792ec02017-03-13 03:49:51 -0700794}
Florin Corasca1c8f32018-05-23 21:01:30 -0700795#define TCP_EVT_CC_SCOREBOARD_HANDLER(_tc, ...) \
796{ \
797if (TCP_DEBUG_CC > 1 && _tc->sack_sb.last_sacked_bytes) \
798 { \
799 ELOG_TYPE_DECLARE (_e) = \
800 { \
801 .format = "sb1: holes %u lost %u sacked %u high %u highrxt %u", \
802 .format_args = "i4i4i4i4i4", \
803 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700804 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Corasca1c8f32018-05-23 21:01:30 -0700805 ed->data[0] = pool_elts(_tc->sack_sb.holes); \
806 ed->data[1] = _tc->sack_sb.lost_bytes; \
807 ed->data[2] = _tc->sack_sb.sacked_bytes; \
808 ed->data[3] = _tc->sack_sb.high_sacked - _tc->iss; \
809 ed->data[4] = _tc->sack_sb.high_rxt - _tc->iss; \
810 } \
811if (TCP_DEBUG_CC > 1 && _tc->sack_sb.last_sacked_bytes) \
812 { \
813 sack_scoreboard_hole_t *hole; \
814 hole = scoreboard_first_hole (&_tc->sack_sb); \
815 ELOG_TYPE_DECLARE (_e) = \
816 { \
817 .format = "sb2: first start: %u end %u last start %u end %u", \
818 .format_args = "i4i4i4i4", \
819 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700820 TCP_DECLARE_ETD(_tc, _e, 4); \
Florin Corasca1c8f32018-05-23 21:01:30 -0700821 ed->data[0] = hole ? hole->start - _tc->iss : 0; \
822 ed->data[1] = hole ? hole->end - _tc->iss : 0; \
823 hole = scoreboard_last_hole (&_tc->sack_sb); \
824 ed->data[2] = hole ? hole->start - _tc->iss : 0; \
825 ed->data[3] = hole ? hole->end - _tc->iss : 0; \
826 } \
827}
828#define TCP_EVT_CC_SACKS_HANDLER(_tc, ...) \
829{ \
830if (TCP_DEBUG_CC > 1) \
831 { \
832 ELOG_TYPE_DECLARE (_e) = \
833 { \
834 .format = "sacks: blocks %u bytes %u", \
835 .format_args = "i4i4", \
836 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700837 TCP_DECLARE_ETD(_tc, _e, 2); \
Florin Corasca1c8f32018-05-23 21:01:30 -0700838 ed->data[0] = vec_len (_tc->snd_sacks); \
839 ed->data[1] = tcp_sack_list_bytes (_tc); \
840 } \
841}
842#define TCP_EVT_CC_INPUT_HANDLER(_tc, _len, _written, ...) \
843{ \
844 ELOG_TYPE_DECLARE (_e) = \
845 { \
846 .format = "cc input: len %u written %d rcv_nxt %u rcv_wnd(o) %d", \
847 .format_args = "i4i4i4i4", \
848 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700849 TCP_DECLARE_ETD(_tc, _e, 4); \
Florin Corasca1c8f32018-05-23 21:01:30 -0700850 ed->data[0] = _len; \
851 ed->data[1] = _written; \
852 ed->data[2] = _tc->rcv_nxt - _tc->irs; \
853 ed->data[3] = _tc->rcv_wnd - (_tc->rcv_nxt - _tc->rcv_las); \
854}
Florin Corasf1762d62017-09-24 19:43:08 -0400855#else
856#define TCP_EVT_CC_RTX_HANDLER(_tc, offset, n_bytes, ...)
Florin Corasca1c8f32018-05-23 21:01:30 -0700857#define TCP_EVT_DUPACK_SENT_HANDLER(_tc, _btcp, ...)
Florin Corasf1762d62017-09-24 19:43:08 -0400858#define TCP_EVT_DUPACK_RCVD_HANDLER(_tc, ...)
859#define TCP_EVT_CC_PACK_HANDLER(_tc, ...)
Florin Corasca1c8f32018-05-23 21:01:30 -0700860#define TCP_EVT_CC_SCOREBOARD_HANDLER(_tc, ...)
861#define TCP_EVT_CC_SACKS_HANDLER(_tc, ...)
862#define TCP_EVT_CC_INPUT_HANDLER(_tc, _len, _written, ...)
Florin Corasf1762d62017-09-24 19:43:08 -0400863#endif
Florin Coras6792ec02017-03-13 03:49:51 -0700864
Florin Corasf03a59a2017-06-09 21:07:32 -0700865/*
866 * Congestion control stats
867 */
Florin Corasa436a422019-08-20 07:09:31 -0700868#if TCP_DEBUG_CS || TCP_DEBUG_ALWAYS
Florin Coras6792ec02017-03-13 03:49:51 -0700869
Florin Corasf03a59a2017-06-09 21:07:32 -0700870#define STATS_INTERVAL 1
871
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700872#define tcp_cc_time_to_print_stats(_tc) \
873 _tc->c_cc_stat_tstamp + STATS_INTERVAL < tcp_time_now() \
874 || tcp_in_fastrecovery (_tc) \
875
876#define TCP_EVT_CC_RTO_STAT_PRINT(_tc) \
Florin Coras3e350af2017-03-30 02:54:28 -0700877{ \
878 ELOG_TYPE_DECLARE (_e) = \
879 { \
Florin Corasefefc6b2018-11-07 12:49:19 -0800880 .format = "rcv_stat: rto %u srtt %u mrtt-us %u rttvar %u", \
881 .format_args = "i4i4i4i4", \
Florin Coras3e350af2017-03-30 02:54:28 -0700882 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700883 TCP_DECLARE_ETD(_tc, _e, 4); \
Florin Corasf03a59a2017-06-09 21:07:32 -0700884 ed->data[0] = _tc->rto; \
885 ed->data[1] = _tc->srtt; \
Florin Corasefefc6b2018-11-07 12:49:19 -0800886 ed->data[2] = (u32) (_tc->mrtt_us * 1e6); \
887 ed->data[3] = _tc->rttvar; \
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700888}
889
890#define TCP_EVT_CC_RTO_STAT_HANDLER(_tc, ...) \
891{ \
892if (tcp_cc_time_to_print_stats (_tc)) \
893{ \
894 TCP_EVT_CC_RTO_STAT_PRINT (_tc); \
Florin Coras3c514d52018-12-22 11:39:33 -0800895 _tc->c_cc_stat_tstamp = tcp_time_now (); \
Florin Coras3e350af2017-03-30 02:54:28 -0700896} \
897}
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700898
899#define TCP_EVT_CC_SND_STAT_PRINT(_tc) \
Florin Coras62166002018-04-18 16:40:55 -0700900{ \
901 ELOG_TYPE_DECLARE (_e) = \
902 { \
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700903 .format = "snd_stat: cc_space %u sacked %u lost %u out %u rxt %u", \
Florin Coras62166002018-04-18 16:40:55 -0700904 .format_args = "i4i4i4i4i4", \
905 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700906 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700907 ed->data[0] = tcp_available_cc_snd_space (_tc); \
Florin Coras62166002018-04-18 16:40:55 -0700908 ed->data[1] = _tc->sack_sb.sacked_bytes; \
909 ed->data[2] = _tc->sack_sb.lost_bytes; \
910 ed->data[3] = tcp_bytes_out (_tc); \
911 ed->data[3] = _tc->snd_rxt_bytes; \
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700912}
913
914#define TCP_EVT_CC_SND_STAT_HANDLER(_tc, ...) \
915{ \
916if (tcp_cc_time_to_print_stats (_tc)) \
917{ \
918 TCP_EVT_CC_SND_STAT_PRINT(_tc); \
Florin Coras3c514d52018-12-22 11:39:33 -0800919 _tc->c_cc_stat_tstamp = tcp_time_now (); \
Florin Coras62166002018-04-18 16:40:55 -0700920} \
921}
Florin Coras3e350af2017-03-30 02:54:28 -0700922
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700923#define TCP_EVT_CC_STAT_PRINT(_tc) \
Florin Coras6792ec02017-03-13 03:49:51 -0700924{ \
925 ELOG_TYPE_DECLARE (_e) = \
926 { \
Florin Corasf03a59a2017-06-09 21:07:32 -0700927 .format = "cc_stat: cwnd %u flight %u space %u ssthresh %u snd_wnd %u",\
928 .format_args = "i4i4i4i4i4", \
Florin Coras6792ec02017-03-13 03:49:51 -0700929 }; \
Florin Corasa436a422019-08-20 07:09:31 -0700930 TCP_DECLARE_ETD(_tc, _e, 5); \
Florin Corasf03a59a2017-06-09 21:07:32 -0700931 ed->data[0] = _tc->cwnd; \
932 ed->data[1] = tcp_flight_size (_tc); \
933 ed->data[2] = tcp_snd_space (_tc); \
934 ed->data[3] = _tc->ssthresh; \
935 ed->data[4] = _tc->snd_wnd; \
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700936 TCP_EVT_CC_RTO_STAT_PRINT (_tc); \
937 TCP_EVT_CC_SND_STAT_PRINT (_tc); \
938}
939
940#define TCP_EVT_CC_STAT_HANDLER(_tc, ...) \
941{ \
942if (tcp_cc_time_to_print_stats (_tc)) \
943{ \
944 TCP_EVT_CC_STAT_PRINT (_tc); \
Florin Corasf03a59a2017-06-09 21:07:32 -0700945 _tc->c_cc_stat_tstamp = tcp_time_now(); \
946} \
Florin Coras6792ec02017-03-13 03:49:51 -0700947}
Florin Corasc1a448b2018-04-20 10:51:49 -0700948#else
949#define TCP_EVT_CC_STAT_HANDLER(_tc, ...)
Florin Coras07025542019-01-19 16:45:13 -0800950#define TCP_EVT_CC_STAT_PRINT(_tc)
Florin Corasc1a448b2018-04-20 10:51:49 -0700951#endif
Florin Coras6792ec02017-03-13 03:49:51 -0700952
Florin Corasf988e692017-11-27 04:34:14 -0500953/*
954 * Buffer allocation
955 */
Florin Corasa436a422019-08-20 07:09:31 -0700956#if TCP_DEBUG_BUF_ALLOC
Florin Corasf988e692017-11-27 04:34:14 -0500957
958#define TCP_DBG_BUFFER_ALLOC_MAYBE_FAIL(thread_index) \
959{ \
960 static u32 *buffer_fail_counters; \
Florin Corasc1a448b2018-04-20 10:51:49 -0700961 if (PREDICT_FALSE (buffer_fail_counters == 0)) \
Florin Corasf988e692017-11-27 04:34:14 -0500962 { \
963 u32 num_threads; \
Florin Corasc1a448b2018-04-20 10:51:49 -0700964 vlib_thread_main_t *vtm = vlib_get_thread_main (); \
Florin Corasf988e692017-11-27 04:34:14 -0500965 num_threads = 1 /* main thread */ + vtm->n_threads; \
966 vec_validate (buffer_fail_counters, num_threads - 1); \
967 } \
Florin Coras9094b5c2019-08-12 14:17:47 -0700968 if (PREDICT_FALSE (tcp_cfg.buffer_fail_fraction != 0.0)) \
Florin Corasf988e692017-11-27 04:34:14 -0500969 { \
Florin Corasc1a448b2018-04-20 10:51:49 -0700970 if (PREDICT_TRUE (buffer_fail_counters[thread_index] > 0)) \
Florin Corasf988e692017-11-27 04:34:14 -0500971 { \
Florin Corasc1a448b2018-04-20 10:51:49 -0700972 if ((1.0 / (f32) (buffer_fail_counters[thread_index])) \
Florin Coras9094b5c2019-08-12 14:17:47 -0700973 < tcp_cfg.buffer_fail_fraction) \
Florin Corasf988e692017-11-27 04:34:14 -0500974 { \
975 buffer_fail_counters[thread_index] = 0.0000001; \
Florin Corasc1a448b2018-04-20 10:51:49 -0700976 return -1; \
Florin Corasf988e692017-11-27 04:34:14 -0500977 } \
978 } \
979 buffer_fail_counters[thread_index] ++; \
980 } \
981}
982#else
983#define TCP_DBG_BUFFER_ALLOC_MAYBE_FAIL(thread_index)
984#endif
985
Florin Corase69f4952017-03-07 10:06:24 -0800986#endif /* SRC_VNET_TCP_TCP_DEBUG_H_ */
987/*
988 * fd.io coding-style-patch-verification: ON
989 *
990 * Local Variables:
991 * eval: (c-set-style "gnu")
992 * End:
993 */