2e67c84cc334648ae1c2cc6e4c7f3c3e8e8703cf
[vpp.git] / src / vnet / tcp / tcp_debug.h
1 /*
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
16 #ifndef SRC_VNET_TCP_TCP_DEBUG_H_
17 #define SRC_VNET_TCP_TCP_DEBUG_H_
18
19 #include <vlib/vlib.h>
20
21 #define TCP_DEBUG (1)
22 #define TCP_DEBUG_SM (0)
23 #define TCP_DEBUG_CC (0)
24 #define TCP_DEBUG_CC_STAT (0)
25 #define TCP_DEBUG_BUFFER_ALLOCATION (0)
26
27 #define foreach_tcp_dbg_evt             \
28   _(INIT, "")                           \
29   _(DEALLOC, "")                        \
30   _(OPEN, "open")                       \
31   _(CLOSE, "close")                     \
32   _(BIND, "bind")                       \
33   _(UNBIND, "unbind")                   \
34   _(DELETE, "delete")                   \
35   _(SYN_SENT, "SYN sent")               \
36   _(SYNACK_SENT, "SYNACK sent")         \
37   _(SYNACK_RCVD, "SYNACK rcvd")         \
38   _(SYN_RXT, "SYN retransmit")          \
39   _(FIN_SENT, "FIN sent")               \
40   _(ACK_SENT, "ACK sent")               \
41   _(DUPACK_SENT, "DUPACK sent")         \
42   _(RST_SENT, "RST sent")               \
43   _(SYN_RCVD, "SYN rcvd")               \
44   _(ACK_RCVD, "ACK rcvd")               \
45   _(DUPACK_RCVD, "DUPACK rcvd")         \
46   _(FIN_RCVD, "FIN rcvd")               \
47   _(RST_RCVD, "RST rcvd")               \
48   _(STATE_CHANGE, "state change")       \
49   _(PKTIZE, "packetize")                \
50   _(INPUT, "in")                        \
51   _(SND_WND, "snd_wnd update")          \
52   _(OUTPUT, "output")                   \
53   _(TIMER_POP, "timer pop")             \
54   _(CC_RTX, "retransmit")               \
55   _(CC_EVT, "cc event")                 \
56   _(CC_PACK, "cc partial ack")          \
57   _(CC_STAT, "cc stats")                \
58   _(CC_RTO_STAT, "cc rto stats")        \
59   _(SEG_INVALID, "invalid segment")     \
60   _(PAWS_FAIL, "failed paws check")     \
61   _(ACK_RCV_ERR, "invalid ack")         \
62   _(RCV_WND_SHRUNK, "shrunk rcv_wnd")   \
63
64 typedef enum _tcp_dbg
65 {
66 #define _(sym, str) TCP_DBG_##sym,
67   foreach_tcp_dbg_evt
68 #undef _
69 } tcp_dbg_e;
70
71 typedef enum _tcp_dbg_evt
72 {
73 #define _(sym, str) TCP_EVT_##sym,
74   foreach_tcp_dbg_evt
75 #undef _
76 } tcp_dbg_evt_e;
77
78 #if TCP_DEBUG
79
80 #define TRANSPORT_DEBUG (1)
81
82 /*
83  * Infra and evt track setup
84  */
85
86 #define TCP_DBG(_fmt, _args...) clib_warning (_fmt, ##_args)
87
88 #define DECLARE_ETD(_tc, _e, _size)                                     \
89   struct                                                                \
90   {                                                                     \
91     u32 data[_size];                                                    \
92   } * ed;                                                               \
93   ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main,                    \
94                         _e, _tc->c_elog_track)
95
96 #define TCP_DBG_IP_TAG_LCL(_tc)                                         \
97 {                                                                       \
98   if (_tc->c_is_ip4)                                                    \
99     {                                                                   \
100       ELOG_TYPE_DECLARE (_e) =                                          \
101       {                                                                 \
102         .format = "lcl: %d.%d.%d.%d:%d",                                \
103         .format_args = "i4i4i4i4i4",                                    \
104       };                                                                \
105       DECLARE_ETD(_tc, _e, 5);                                          \
106       ed->data[0] = _tc->c_lcl_ip.ip4.as_u8[0];                         \
107       ed->data[1] = _tc->c_lcl_ip.ip4.as_u8[1];                         \
108       ed->data[2] = _tc->c_lcl_ip.ip4.as_u8[2];                         \
109       ed->data[3] = _tc->c_lcl_ip.ip4.as_u8[3];                         \
110       ed->data[4] = clib_net_to_host_u16(_tc->c_lcl_port);              \
111     }                                                                   \
112 }
113
114 #define TCP_DBG_IP_TAG_RMT(_tc)                                         \
115 {                                                                       \
116   if (_tc->c_is_ip4)                                                    \
117     {                                                                   \
118       ELOG_TYPE_DECLARE (_e) =                                          \
119       {                                                                 \
120         .format = "rmt: %d.%d.%d.%d:%d",                                \
121         .format_args = "i4i4i4i4i4",                                    \
122       };                                                                \
123       DECLARE_ETD(_tc, _e, 5);                                          \
124       ed->data[0] = _tc->c_rmt_ip.ip4.as_u8[0];                         \
125       ed->data[1] = _tc->c_rmt_ip.ip4.as_u8[1];                         \
126       ed->data[2] = _tc->c_rmt_ip.ip4.as_u8[2];                         \
127       ed->data[3] = _tc->c_rmt_ip.ip4.as_u8[3];                         \
128       ed->data[4] = clib_net_to_host_u16(_tc->c_rmt_port);              \
129     }                                                                   \
130 }
131
132 #define TCP_EVT_INIT_HANDLER(_tc, _is_l, ...)                           \
133 {                                                                       \
134   char *_fmt = _is_l ? "l[%d].%d:%d%c" : "[%d].%d:%d->.%d:%d%c";        \
135   if (_tc->c_is_ip4)                                                    \
136     {                                                                   \
137       _tc->c_elog_track.name =                                          \
138         (char *) format (0, _fmt, _tc->c_thread_index,                  \
139                          _tc->c_lcl_ip.ip4.as_u8[3],                    \
140                          clib_net_to_host_u16(_tc->c_lcl_port),         \
141                          _tc->c_rmt_ip.ip4.as_u8[3],                    \
142                          clib_net_to_host_u16(_tc->c_rmt_port), 0);     \
143     }                                                                   \
144   else                                                                  \
145       _tc->c_elog_track.name =                                          \
146         (char *) format (0, _fmt, _tc->c_thread_index,                  \
147                          _tc->c_lcl_ip.ip6.as_u8[15],                   \
148                          clib_net_to_host_u16(_tc->c_lcl_port),         \
149                          _tc->c_rmt_ip.ip6.as_u8[15],                   \
150                          clib_net_to_host_u16(_tc->c_rmt_port), 0);     \
151   elog_track_register (&vlib_global_main.elog_main, &_tc->c_elog_track);\
152   TCP_DBG_IP_TAG_LCL(_tc);                                              \
153   TCP_DBG_IP_TAG_RMT(_tc);                                              \
154 }
155
156 #define TCP_EVT_DEALLOC_HANDLER(_tc, ...)                               \
157 {                                                                       \
158   vec_free (_tc->c_elog_track.name);                                    \
159 }
160
161 #define TCP_EVT_OPEN_HANDLER(_tc, ...)                                  \
162 {                                                                       \
163   TCP_EVT_INIT_HANDLER(_tc, 0);                                         \
164   ELOG_TYPE_DECLARE (_e) =                                              \
165   {                                                                     \
166     .format = "open: index %d",                                         \
167     .format_args = "i4",                                                \
168   };                                                                    \
169   DECLARE_ETD(_tc, _e, 1);                                              \
170   ed->data[0] = _tc->c_c_index;                                         \
171 }
172
173 #define TCP_EVT_CLOSE_HANDLER(_tc, ...)                                 \
174 {                                                                       \
175   ELOG_TYPE_DECLARE (_e) =                                              \
176   {                                                                     \
177     .format = "close: %d",                                              \
178     .format_args = "i4",                                                \
179   };                                                                    \
180   DECLARE_ETD(_tc, _e, 1);                                              \
181   ed->data[0] = _tc->c_c_index;                                         \
182 }
183
184 #define TCP_EVT_BIND_HANDLER(_tc, ...)                                  \
185 {                                                                       \
186   TCP_EVT_INIT_HANDLER(_tc, 1);                                         \
187   ELOG_TYPE_DECLARE (_e) =                                              \
188   {                                                                     \
189     .format = "bind: listener %d",                                      \
190   };                                                                    \
191   DECLARE_ETD(_tc, _e, 1);                                              \
192   ed->data[0] = _tc->c_c_index;                                         \
193 }
194
195 #define TCP_EVT_SYN_RCVD_HANDLER(_tc,_init, ...)                                \
196 {                                                                       \
197   if (_init)                                                            \
198     TCP_EVT_INIT_HANDLER(_tc, 0);                                       \
199   ELOG_TYPE_DECLARE (_e) =                                              \
200   {                                                                     \
201     .format = "syn-rx: irs %u",                                         \
202     .format_args = "i4",                                                \
203   };                                                                    \
204   DECLARE_ETD(_tc, _e, 1);                                              \
205   ed->data[0] = _tc->irs;                                               \
206   TCP_EVT_STATE_CHANGE_HANDLER(_tc);                                    \
207 }
208
209 #define TCP_EVT_UNBIND_HANDLER(_tc, ...)                                \
210 {                                                                       \
211   TCP_EVT_DEALLOC_HANDLER(_tc);                                         \
212   ELOG_TYPE_DECLARE (_e) =                                              \
213   {                                                                     \
214     .format = "unbind: listener %d",                                    \
215   };                                                                    \
216   DECLARE_ETD(_tc, _e, 1);                                              \
217   ed->data[0] = _tc->c_c_index;                                         \
218   TCP_EVT_DEALLOC_HANDLER(_tc);                                         \
219 }
220
221 #define TCP_EVT_DELETE_HANDLER(_tc, ...)                                \
222 {                                                                       \
223   ELOG_TYPE_DECLARE (_e) =                                              \
224   {                                                                     \
225     .format = "delete: %d",                                             \
226     .format_args = "i4",                                                \
227   };                                                                    \
228   DECLARE_ETD(_tc, _e, 1);                                              \
229   ed->data[0] = _tc->c_c_index;                                         \
230   TCP_EVT_DEALLOC_HANDLER(_tc);                                         \
231 }
232
233 #define CONCAT_HELPER(_a, _b) _a##_b
234 #define CC(_a, _b) CONCAT_HELPER(_a, _b)
235 #define TCP_EVT_DBG(_evt, _args...) CC(_evt, _HANDLER)(_args)
236 #else
237 #define TCP_EVT_DBG(_evt, _args...)
238 #define TCP_DBG(_fmt, _args...)
239 #endif
240
241 /*
242  * State machine
243  */
244 #if TCP_DEBUG_SM
245
246 #define TCP_EVT_STATE_CHANGE_HANDLER(_tc, ...)                          \
247 {                                                                       \
248   ELOG_TYPE_DECLARE (_e) =                                              \
249   {                                                                     \
250     .format = "state: %s",                                              \
251     .format_args = "t4",                                                \
252     .n_enum_strings = 11,                                               \
253     .enum_strings = {                                                   \
254       "closed",                                                         \
255       "listen",                                                         \
256       "syn-sent",                                                       \
257       "syn-rcvd",                                                       \
258       "established",                                                    \
259       "close_wait",                                                     \
260       "fin-wait-1",                                                     \
261       "last-ack",                                                       \
262       "closing",                                                        \
263       "fin-wait-2",                                                     \
264       "time-wait",                                                      \
265     },                                                                  \
266   };                                                                    \
267   DECLARE_ETD(_tc, _e, 1);                                              \
268   ed->data[0] = _tc->state;                                             \
269 }
270
271 #define TCP_EVT_SYN_SENT_HANDLER(_tc, ...)                              \
272 {                                                                       \
273   ELOG_TYPE_DECLARE (_e) =                                              \
274   {                                                                     \
275     .format = "syn-tx: iss %u snd_una %u snd_una_max %u snd_nxt %u",    \
276     .format_args = "i4i4i4i4",                                          \
277   };                                                                    \
278   DECLARE_ETD(_tc, _e, 4);                                              \
279   ed->data[0] = _tc->iss;                                               \
280   ed->data[1] = _tc->snd_una - _tc->iss;                                        \
281   ed->data[2] = _tc->snd_una_max - _tc->iss;                            \
282   ed->data[3] = _tc->snd_nxt - _tc->iss;                                        \
283   TCP_EVT_STATE_CHANGE_HANDLER(_tc);                                    \
284 }
285
286 #define TCP_EVT_SYNACK_SENT_HANDLER(_tc, ...)                           \
287 {                                                                       \
288   ELOG_TYPE_DECLARE (_e) =                                              \
289   {                                                                     \
290     .format = "synack-tx: iss %u irs %u snd_una %u snd_nxt %u rcv_nxt %u",\
291     .format_args = "i4i4i4i4i4",                                                \
292   };                                                                    \
293   DECLARE_ETD(_tc, _e, 5);                                              \
294   ed->data[0] = _tc->iss;                                               \
295   ed->data[1] = _tc->irs;                                               \
296   ed->data[2] = _tc->snd_una - _tc->iss;                                        \
297   ed->data[3] = _tc->snd_nxt - _tc->iss;                                        \
298   ed->data[4] = _tc->rcv_nxt - _tc->irs;                                        \
299 }
300
301 #define TCP_EVT_SYNACK_RCVD_HANDLER(_tc, ...)                           \
302 {                                                                       \
303   ELOG_TYPE_DECLARE (_e) =                                              \
304   {                                                                     \
305     .format = "synack-rx: iss %u irs %u snd_una %u snd_nxt %u rcv_nxt %u",\
306     .format_args = "i4i4i4i4i4",                                                \
307   };                                                                    \
308   DECLARE_ETD(_tc, _e, 5);                                              \
309   ed->data[0] = _tc->iss;                                               \
310   ed->data[1] = _tc->irs;                                               \
311   ed->data[2] = _tc->snd_una - _tc->iss;                                        \
312   ed->data[3] = _tc->snd_nxt - _tc->iss;                                        \
313   ed->data[4] = _tc->rcv_nxt - _tc->irs;                                        \
314   TCP_EVT_STATE_CHANGE_HANDLER(_tc);                                    \
315 }
316
317 #define TCP_EVT_FIN_SENT_HANDLER(_tc, ...)                              \
318 {                                                                       \
319   ELOG_TYPE_DECLARE (_e) =                                              \
320   {                                                                     \
321     .format = "fin-tx: snd_nxt %d rcv_nxt %d",                          \
322     .format_args = "i4i4",                                              \
323   };                                                                    \
324   DECLARE_ETD(_tc, _e, 2);                                              \
325   ed->data[0] = _tc->snd_nxt - _tc->iss;                                \
326   ed->data[1] = _tc->rcv_nxt - _tc->irs;                                \
327 }
328
329 #define TCP_EVT_RST_SENT_HANDLER(_tc, ...)                              \
330 {                                                                       \
331 if (_tc)                                                                \
332   {                                                                     \
333     ELOG_TYPE_DECLARE (_e) =                                            \
334     {                                                                   \
335       .format = "rst-tx: snd_nxt %d rcv_nxt %d",                        \
336       .format_args = "i4i4",                                            \
337     };                                                                  \
338     DECLARE_ETD(_tc, _e, 2);                                            \
339     ed->data[0] = _tc->snd_nxt - _tc->iss;                              \
340     ed->data[1] = _tc->rcv_nxt - _tc->irs;                              \
341     TCP_EVT_STATE_CHANGE_HANDLER(_tc);                                  \
342   }                                                                     \
343 }
344
345 #define TCP_EVT_FIN_RCVD_HANDLER(_tc, ...)                              \
346 {                                                                       \
347   ELOG_TYPE_DECLARE (_e) =                                              \
348   {                                                                     \
349     .format = "fin-rx: snd_nxt %d rcv_nxt %d",                          \
350     .format_args = "i4i4",                                              \
351   };                                                                    \
352   DECLARE_ETD(_tc, _e, 2);                                              \
353   ed->data[0] = _tc->snd_nxt - _tc->iss;                                \
354   ed->data[1] = _tc->rcv_nxt - _tc->irs;                                \
355 }
356
357 #define TCP_EVT_RST_RCVD_HANDLER(_tc, ...)                              \
358 {                                                                       \
359   ELOG_TYPE_DECLARE (_e) =                                              \
360   {                                                                     \
361     .format = "rst-rx: snd_nxt %d rcv_nxt %d",                          \
362     .format_args = "i4i4",                                              \
363   };                                                                    \
364   DECLARE_ETD(_tc, _e, 2);                                              \
365   ed->data[0] = _tc->snd_nxt - _tc->iss;                                \
366   ed->data[1] = _tc->rcv_nxt - _tc->irs;                                \
367 }
368
369 #define TCP_EVT_SYN_RXT_HANDLER(_tc, _type, ...)                        \
370 {                                                                       \
371   ELOG_TYPE_DECLARE (_e) =                                              \
372   {                                                                     \
373     .format = "%s-rxt: iss %u irs %u snd_nxt %u rcv_nxt %u",            \
374     .format_args = "t4i4i4i4i4",                                                \
375     .n_enum_strings = 2,                                                \
376     .enum_strings = {                                                   \
377         "syn",                                                          \
378         "syn-ack",                                                      \
379     },                                                                  \
380   };                                                                    \
381   DECLARE_ETD(_tc, _e, 5);                                              \
382   ed->data[0] = _type;                                                  \
383   ed->data[1] = _tc->iss;                                               \
384   ed->data[2] = _tc->irs;                                               \
385   ed->data[3] = _tc->snd_nxt - _tc->iss;                                        \
386   ed->data[4] = _tc->rcv_nxt - _tc->irs;                                        \
387 }
388
389 #else
390 #define TCP_EVT_SYN_SENT_HANDLER(_tc, ...)
391 #define TCP_EVT_SYNACK_SENT_HANDLER(_tc, ...)
392 #define TCP_EVT_SYNACK_RCVD_HANDLER(_tc, ...)
393 #define TCP_EVT_SYN_RXT_HANDLER(_tc, ...)
394 #define TCP_EVT_FIN_SENT_HANDLER(_tc, ...)
395 #define TCP_EVT_RST_SENT_HANDLER(_tc, ...)
396 #define TCP_EVT_FIN_RCVD_HANDLER(_tc, ...)
397 #define TCP_EVT_RST_RCVD_HANDLER(_tc, ...)
398 #define TCP_EVT_STATE_CHANGE_HANDLER(_tc, ...)
399 #endif
400
401 #if TCP_DEBUG_SM > 1
402
403 #define TCP_EVT_ACK_SENT_HANDLER(_tc, ...)                              \
404 {                                                                       \
405   ELOG_TYPE_DECLARE (_e) =                                              \
406   {                                                                     \
407     .format = "ack-tx: acked %u rcv_nxt %u rcv_wnd %u snd_nxt %u snd_wnd %u",\
408     .format_args = "i4i4i4i4i4",                                        \
409   };                                                                    \
410   DECLARE_ETD(_tc, _e, 5);                                              \
411   ed->data[0] = _tc->rcv_nxt - _tc->rcv_las;                            \
412   ed->data[1] = _tc->rcv_nxt - _tc->irs;                                \
413   ed->data[2] = _tc->rcv_wnd;                                           \
414   ed->data[3] = _tc->snd_nxt - _tc->iss;                                \
415   ed->data[4] = _tc->snd_wnd;                                           \
416 }
417
418 #define TCP_EVT_ACK_RCVD_HANDLER(_tc, ...)                              \
419 {                                                                       \
420   ELOG_TYPE_DECLARE (_e) =                                              \
421   {                                                                     \
422     .format = "ack-rx: %u snd_una %u snd_wnd %u cwnd %u inflight %u",   \
423     .format_args = "i4i4i4i4i4",                                        \
424   };                                                                    \
425   DECLARE_ETD(_tc, _e, 5);                                              \
426   ed->data[0] = _tc->bytes_acked;                                       \
427   ed->data[1] = _tc->snd_una - _tc->iss;                                \
428   ed->data[2] = _tc->snd_wnd;                                           \
429   ed->data[3] = _tc->cwnd;                                              \
430   ed->data[4] = tcp_flight_size(_tc);                                   \
431 }
432
433 #define TCP_EVT_PKTIZE_HANDLER(_tc, ...)                                \
434 {                                                                       \
435   ELOG_TYPE_DECLARE (_e) =                                              \
436   {                                                                     \
437     .format = "tx: una %u snd_nxt %u space %u flight %u rcv_wnd %u",\
438     .format_args = "i4i4i4i4i4",                                        \
439   };                                                                    \
440   DECLARE_ETD(_tc, _e, 5);                                              \
441   ed->data[0] = _tc->snd_una - _tc->iss;                                \
442   ed->data[1] = _tc->snd_nxt - _tc->iss;                                \
443   ed->data[2] = tcp_available_output_snd_space (_tc);                   \
444   ed->data[3] = tcp_flight_size (_tc);                                  \
445   ed->data[4] = _tc->rcv_wnd;                                           \
446 }
447
448 #define TCP_EVT_INPUT_HANDLER(_tc, _type, _len, _written, ...)          \
449 {                                                                       \
450   ELOG_TYPE_DECLARE (_e) =                                              \
451   {                                                                     \
452     .format = "in: %s len %u written %d rcv_nxt %u rcv_wnd(o) %d",      \
453     .format_args = "t4i4i4i4i4",                                        \
454     .n_enum_strings = 2,                                                \
455     .enum_strings = {                                                   \
456       "order",                                                          \
457       "ooo",                                                            \
458     },                                                                  \
459   };                                                                    \
460   DECLARE_ETD(_tc, _e, 5);                                              \
461   ed->data[0] = _type;                                                  \
462   ed->data[1] = _len;                                                   \
463   ed->data[2] = _written;                                               \
464   ed->data[3] = (_tc->rcv_nxt - _tc->irs) + _written;                   \
465   ed->data[4] = _tc->rcv_wnd - (_tc->rcv_nxt - _tc->rcv_las);           \
466 }
467
468 #define TCP_EVT_TIMER_POP_HANDLER(_tc_index, _timer_id, ...)            \
469 {                                                                       \
470   tcp_connection_t *_tc;                                                \
471   if (_timer_id == TCP_TIMER_RETRANSMIT_SYN                             \
472     || _timer_id == TCP_TIMER_ESTABLISH)                                \
473     {                                                                   \
474       _tc = tcp_half_open_connection_get (_tc_index);                   \
475     }                                                                   \
476   else                                                                  \
477     {                                                                   \
478       u32 _thread_index = vlib_get_thread_index ();                     \
479       _tc = tcp_connection_get (_tc_index, _thread_index);              \
480     }                                                                   \
481   ELOG_TYPE_DECLARE (_e) =                                              \
482   {                                                                     \
483     .format = "timer-pop: %s (%d)",                                     \
484     .format_args = "t4i4",                                              \
485     .n_enum_strings = 7,                                                \
486     .enum_strings = {                                                   \
487       "retransmit",                                                     \
488       "delack",                                                         \
489       "persist",                                                        \
490       "keep",                                                           \
491       "waitclose",                                                      \
492       "retransmit syn",                                                 \
493       "establish",                                                      \
494     },                                                                  \
495   };                                                                    \
496   if (_tc)                                                              \
497     {                                                                   \
498       DECLARE_ETD(_tc, _e, 2);                                          \
499       ed->data[0] = _timer_id;                                          \
500       ed->data[1] = _timer_id;                                          \
501     }                                                                   \
502   else                                                                  \
503     {                                                                   \
504       clib_warning ("pop %d for unexisting connection %d", _timer_id,   \
505                     _tc_index);                                         \
506     }                                                                   \
507 }
508
509 #define TCP_EVT_SEG_INVALID_HANDLER(_tc, _seq, _end, ...)               \
510 {                                                                       \
511   ELOG_TYPE_DECLARE (_e) =                                              \
512   {                                                                     \
513     .format = "seg-inv: seq %u end %u rcv_las %u rcv_nxt %u rcv_wnd %u",\
514     .format_args = "i4i4i4i4i4",                                        \
515   };                                                                    \
516   DECLARE_ETD(_tc, _e, 5);                                              \
517   ed->data[0] = _seq - _tc->irs;                                        \
518   ed->data[1] = _end - _tc->irs;                                        \
519   ed->data[2] = _tc->rcv_las - _tc->irs;                                \
520   ed->data[3] = _tc->rcv_nxt - _tc->irs;                                \
521   ed->data[4] = _tc->rcv_wnd;                                           \
522 }
523
524 #define TCP_EVT_PAWS_FAIL_HANDLER(_tc, _seq, _end, ...)                 \
525 {                                                                       \
526   ELOG_TYPE_DECLARE (_e) =                                              \
527   {                                                                     \
528     .format = "paws-err: seq %u end %u tsval %u tsval_recent %u",       \
529     .format_args = "i4i4i4i4",                                          \
530   };                                                                    \
531   DECLARE_ETD(_tc, _e, 4);                                              \
532   ed->data[0] = _seq - _tc->irs;                                        \
533   ed->data[1] = _end - _tc->irs;                                        \
534   ed->data[2] = _tc->rcv_opts.tsval;                                    \
535   ed->data[3] = _tc->tsval_recent;                                      \
536 }
537
538 #define TCP_EVT_ACK_RCV_ERR_HANDLER(_tc, _type, _ack, ...)              \
539 {                                                                       \
540   ELOG_TYPE_DECLARE (_e) =                                              \
541   {                                                                     \
542     .format = "ack-err: %s ack %u snd_una %u snd_nxt %u una_max %u",    \
543     .format_args = "t4i4i4i4i4",                                        \
544     .n_enum_strings = 3,                                                \
545     .enum_strings = {                                                   \
546       "invalid",                                                        \
547       "old",                                                            \
548       "future",                                                         \
549     },                                                                  \
550   };                                                                    \
551   DECLARE_ETD(_tc, _e, 5);                                              \
552   ed->data[0] = _type;                                                  \
553   ed->data[1] = _ack - _tc->iss;                                        \
554   ed->data[2] = _tc->snd_una - _tc->iss;                                \
555   ed->data[3] = _tc->snd_nxt - _tc->iss;                                \
556   ed->data[4] = _tc->snd_una_max - _tc->iss;                            \
557 }
558
559 #define TCP_EVT_RCV_WND_SHRUNK_HANDLER(_tc, _obs, _av, ...)             \
560 {                                                                       \
561 if (_av > 0)                                                            \
562 {                                                                       \
563   ELOG_TYPE_DECLARE (_e) =                                              \
564   {                                                                     \
565     .format = "huh?: rcv_wnd %u obsd %u av %u rcv_nxt %u rcv_las %u",   \
566     .format_args = "i4i4i4i4i4",                                        \
567   };                                                                    \
568   DECLARE_ETD(_tc, _e, 5);                                              \
569   ed->data[0] = _tc->rcv_wnd;                                           \
570   ed->data[1] = _obs;                                                   \
571   ed->data[2] = _av;                                                    \
572   ed->data[3] = _tc->rcv_nxt - _tc->irs;                                \
573   ed->data[4] = _tc->rcv_las - _tc->irs;                                \
574 }                                                                       \
575 }
576 #else
577 #define TCP_EVT_ACK_SENT_HANDLER(_tc, ...)
578 #define TCP_EVT_ACK_RCVD_HANDLER(_tc, ...)
579 #define TCP_EVT_PKTIZE_HANDLER(_tc, ...)
580 #define TCP_EVT_INPUT_HANDLER(_tc, _type, _len, _written, ...)
581 #define TCP_EVT_TIMER_POP_HANDLER(_tc_index, _timer_id, ...)
582 #define TCP_EVT_SEG_INVALID_HANDLER(_tc, _seq, _end, ...)
583 #define TCP_EVT_PAWS_FAIL_HANDLER(_tc, _seq, _end, ...)
584 #define TCP_EVT_ACK_RCV_ERR_HANDLER(_tc, _type, _ack, ...)
585 #define TCP_EVT_RCV_WND_SHRUNK_HANDLER(_tc, _obs, _av, ...)
586 #endif
587
588 /*
589  * State machine verbose
590  */
591 #if TCP_DEBUG_SM > 2
592 #define TCP_EVT_SND_WND_HANDLER(_tc, ...)                               \
593 {                                                                       \
594   ELOG_TYPE_DECLARE (_e) =                                              \
595   {                                                                     \
596     .format = "snd-wnd update: %u ",                                    \
597     .format_args = "i4",                                                \
598   };                                                                    \
599   DECLARE_ETD(_tc, _e, 1);                                              \
600   ed->data[0] = _tc->snd_wnd;                                           \
601 }
602
603 #define TCP_EVT_OUTPUT_HANDLER(_tc, flags, n_bytes,...)                 \
604 {                                                                       \
605   ELOG_TYPE_DECLARE (_e) =                                              \
606   {                                                                     \
607     .format = "out: flags %x, bytes %u",                                \
608     .format_args = "i4i4",                                              \
609   };                                                                    \
610   DECLARE_ETD(_tc, _e, 2);                                              \
611   ed->data[0] = flags;                                                  \
612   ed->data[1] = n_bytes;                                                \
613 }
614 #else
615 #define TCP_EVT_SND_WND_HANDLER(_tc, ...)
616 #define TCP_EVT_OUTPUT_HANDLER(_tc, flags, n_bytes,...)
617 #endif
618
619 /*
620  * Congestion Control
621  */
622
623 #if TCP_DEBUG_CC
624
625 #define TCP_EVT_CC_EVT_HANDLER(_tc, _sub_evt, ...)                      \
626 {                                                                       \
627   ELOG_TYPE_DECLARE (_e) =                                              \
628   {                                                                     \
629     .format = "cc: %s wnd %u snd_cong %u rxt_bytes %u",                 \
630     .format_args = "t4i4i4i4",                                          \
631     .n_enum_strings = 6,                                                \
632     .enum_strings = {                                                   \
633       "fast-rxt",                                                       \
634       "rxt-timeout",                                                    \
635       "first-rxt",                                                      \
636       "recovered",                                                      \
637       "congestion",                                                     \
638       "undo",                                                           \
639     },                                                                  \
640   };                                                                    \
641   DECLARE_ETD(_tc, _e, 4);                                              \
642   ed->data[0] = _sub_evt;                                               \
643   ed->data[1] = tcp_available_snd_space (_tc);                          \
644   ed->data[2] = _tc->snd_congestion - _tc->iss;                         \
645   ed->data[3] = _tc->snd_rxt_bytes;                                     \
646 }
647
648 #define TCP_EVT_CC_RTX_HANDLER(_tc, offset, n_bytes, ...)               \
649 {                                                                       \
650   ELOG_TYPE_DECLARE (_e) =                                              \
651   {                                                                     \
652     .format = "rxt: snd_nxt %u offset %u snd %u rxt %u",                \
653     .format_args = "i4i4i4i4",                                          \
654   };                                                                    \
655   DECLARE_ETD(_tc, _e, 4);                                              \
656   ed->data[0] = _tc->snd_nxt - _tc->iss;                                \
657   ed->data[1] = offset;                                                 \
658   ed->data[2] = n_bytes;                                                \
659   ed->data[3] = _tc->snd_rxt_bytes;                                     \
660 }
661
662 #define TCP_EVT_DUPACK_SENT_HANDLER(_tc, ...)                           \
663 {                                                                       \
664   ELOG_TYPE_DECLARE (_e) =                                              \
665   {                                                                     \
666     .format = "dack-tx: rcv_nxt %u rcv_wnd %u snd_nxt %u av_wnd %u snd_wnd %u",\
667     .format_args = "i4i4i4i4i4",                                        \
668   };                                                                    \
669   DECLARE_ETD(_tc, _e, 5);                                              \
670   ed->data[0] = _tc->rcv_nxt - _tc->irs;                                \
671   ed->data[1] = _tc->rcv_wnd;                                           \
672   ed->data[2] = _tc->snd_nxt - _tc->iss;                                \
673   ed->data[3] = tcp_available_snd_wnd(_tc);                             \
674   ed->data[4] = _tc->snd_wnd;                                           \
675 }
676
677 #define TCP_EVT_DUPACK_RCVD_HANDLER(_tc, ...)                           \
678 {                                                                       \
679   ELOG_TYPE_DECLARE (_e) =                                              \
680   {                                                                     \
681     .format = "dack-rx: snd_una %u cwnd %u snd_wnd %u flight %u rcv_wnd %u",\
682     .format_args = "i4i4i4i4i4",                                        \
683   };                                                                    \
684   DECLARE_ETD(_tc, _e, 5);                                              \
685   ed->data[0] = _tc->snd_una - _tc->iss;                                \
686   ed->data[1] = _tc->cwnd;                                              \
687   ed->data[2] = _tc->snd_wnd;                                           \
688   ed->data[3] = tcp_flight_size(_tc);                                   \
689   ed->data[4] = _tc->rcv_wnd;                                           \
690 }
691
692 #define TCP_EVT_CC_PACK_HANDLER(_tc, ...)                               \
693 {                                                                       \
694   ELOG_TYPE_DECLARE (_e) =                                              \
695   {                                                                     \
696     .format = "pack: snd_una %u snd_una_max %u",                        \
697     .format_args = "i4i4",                                              \
698   };                                                                    \
699   DECLARE_ETD(_tc, _e, 2);                                              \
700   ed->data[0] = _tc->snd_una - _tc->iss;                                \
701   ed->data[1] = _tc->snd_una_max - _tc->iss;                            \
702 }
703 #else
704 #define TCP_EVT_CC_RTX_HANDLER(_tc, offset, n_bytes, ...)
705 #define TCP_EVT_DUPACK_SENT_HANDLER(_tc, ...)
706 #define TCP_EVT_DUPACK_RCVD_HANDLER(_tc, ...)
707 #define TCP_EVT_CC_PACK_HANDLER(_tc, ...)
708 #define TCP_EVT_CC_EVT_HANDLER(_tc, _sub_evt, ...)
709 #endif
710
711 /*
712  * Congestion control stats
713  */
714 #if TCP_DEBUG_CC_STAT
715
716 #define STATS_INTERVAL 1
717
718 #define TCP_EVT_CC_RTO_STAT_HANDLER(_tc, ...)                           \
719 {                                                                       \
720 if (_tc->c_cc_stat_tstamp + STATS_INTERVAL < tcp_time_now())            \
721 {                                                                       \
722   ELOG_TYPE_DECLARE (_e) =                                              \
723   {                                                                     \
724     .format = "rcv_stat: rto %u srtt %u rttvar %u ",                    \
725     .format_args = "i4i4i4",                                            \
726   };                                                                    \
727   DECLARE_ETD(_tc, _e, 3);                                              \
728   ed->data[0] = _tc->rto;                                               \
729   ed->data[1] = _tc->srtt;                                              \
730   ed->data[2] = _tc->rttvar;                                            \
731 }                                                                       \
732 }
733 #define TCP_EVT_CC_SND_STAT_HANDLER(_tc, ...)                           \
734 {                                                                       \
735 if (_tc->c_cc_stat_tstamp + STATS_INTERVAL < tcp_time_now())            \
736 {                                                                       \
737   ELOG_TYPE_DECLARE (_e) =                                              \
738   {                                                                     \
739     .format = "snd_stat: dack %u sacked %u lost %u out %u rxt %u",      \
740     .format_args = "i4i4i4i4i4",                                        \
741   };                                                                    \
742   DECLARE_ETD(_tc, _e, 5);                                              \
743   ed->data[0] = _tc->rcv_dupacks;                                       \
744   ed->data[1] = _tc->sack_sb.sacked_bytes;                              \
745   ed->data[2] = _tc->sack_sb.lost_bytes;                                \
746   ed->data[3] = tcp_bytes_out (_tc);                                    \
747   ed->data[3] = _tc->snd_rxt_bytes;                                     \
748 }                                                                       \
749 }
750
751 #define TCP_EVT_CC_STAT_HANDLER(_tc, ...)                               \
752 {                                                                       \
753 if (_tc->c_cc_stat_tstamp + STATS_INTERVAL < tcp_time_now())            \
754 {                                                                       \
755   ELOG_TYPE_DECLARE (_e) =                                              \
756   {                                                                     \
757     .format = "cc_stat: cwnd %u flight %u space %u ssthresh %u snd_wnd %u",\
758     .format_args = "i4i4i4i4i4",                                        \
759   };                                                                    \
760   DECLARE_ETD(_tc, _e, 5);                                              \
761   ed->data[0] = _tc->cwnd;                                              \
762   ed->data[1] = tcp_flight_size (_tc);                                  \
763   ed->data[2] = tcp_snd_space (_tc);                                    \
764   ed->data[3] = _tc->ssthresh;                                          \
765   ed->data[4] = _tc->snd_wnd;                                           \
766   TCP_EVT_CC_RTO_STAT_HANDLER (_tc);                                    \
767   _tc->c_cc_stat_tstamp = tcp_time_now();                               \
768 }                                                                       \
769 }
770 #else
771 #define TCP_EVT_CC_STAT_HANDLER(_tc, ...)
772 #endif
773
774 /*
775  * Buffer allocation
776  */
777 #if TCP_DEBUG_BUFFER_ALLOCATION
778
779 #define TCP_DBG_BUFFER_ALLOC_MAYBE_FAIL(thread_index)                   \
780 {                                                                       \
781   static u32 *buffer_fail_counters;                                     \
782   if (PREDICT_FALSE (buffer_fail_counters == 0))                        \
783     {                                                                   \
784       u32 num_threads;                                                  \
785       vlib_thread_main_t *vtm = vlib_get_thread_main ();                \
786       num_threads = 1 /* main thread */  + vtm->n_threads;              \
787       vec_validate (buffer_fail_counters, num_threads - 1);             \
788     }                                                                   \
789   if (PREDICT_FALSE (tcp_main.buffer_fail_fraction != 0.0))             \
790     {                                                                   \
791       if (PREDICT_TRUE (buffer_fail_counters[thread_index] > 0))        \
792         {                                                               \
793           if ((1.0 / (f32) (buffer_fail_counters[thread_index]))        \
794               < tcp_main.buffer_fail_fraction)                          \
795             {                                                           \
796               buffer_fail_counters[thread_index] = 0.0000001;           \
797               return -1;                                                \
798             }                                                           \
799         }                                                               \
800       buffer_fail_counters[thread_index] ++;                            \
801     }                                                                   \
802 }
803 #else
804 #define TCP_DBG_BUFFER_ALLOC_MAYBE_FAIL(thread_index)
805 #endif
806
807 #endif /* SRC_VNET_TCP_TCP_DEBUG_H_ */
808 /*
809  * fd.io coding-style-patch-verification: ON
810  *
811  * Local Variables:
812  * eval: (c-set-style "gnu")
813  * End:
814  */