blob: 3b3d8fc7cff82609224642378a2e60b7bd9afeaa [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 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 _vnet_tcp_h_
17#define _vnet_tcp_h_
18
19#include <vnet/vnet.h>
20#include <vnet/ip/ip.h>
21#include <vnet/tcp/tcp_packet.h>
22#include <vnet/tcp/tcp_timer.h>
23#include <vnet/session/transport.h>
24#include <vnet/session/session.h>
25
26#define TCP_TICK 10e-3 /**< TCP tick period (s) */
27#define THZ 1/TCP_TICK /**< TCP tick frequency */
28#define TCP_TSTAMP_RESOLUTION TCP_TICK /**< Time stamp resolution */
29#define TCP_PAWS_IDLE 24 * 24 * 60 * 60 * THZ /**< 24 days */
30#define TCP_MAX_OPTION_SPACE 40
31
32#define TCP_DUPACK_THRESHOLD 3
Florin Corase04c2992017-03-01 08:17:34 -080033#define TCP_MAX_RX_FIFO_SIZE 2 << 20
34#define TCP_IW_N_SEGMENTS 10
Dave Barach68b0fb02017-02-28 15:15:56 -050035
36/** TCP FSM state definitions as per RFC793. */
37#define foreach_tcp_fsm_state \
38 _(CLOSED, "CLOSED") \
39 _(LISTEN, "LISTEN") \
40 _(SYN_SENT, "SYN_SENT") \
41 _(SYN_RCVD, "SYN_RCVD") \
42 _(ESTABLISHED, "ESTABLISHED") \
43 _(CLOSE_WAIT, "CLOSE_WAIT") \
44 _(FIN_WAIT_1, "FIN_WAIT_1") \
45 _(LAST_ACK, "LAST_ACK") \
46 _(CLOSING, "CLOSING") \
47 _(FIN_WAIT_2, "FIN_WAIT_2") \
48 _(TIME_WAIT, "TIME_WAIT")
49
50typedef enum _tcp_state
51{
52#define _(sym, str) TCP_STATE_##sym,
53 foreach_tcp_fsm_state
54#undef _
55 TCP_N_STATES
56} tcp_state_t;
57
58format_function_t format_tcp_state;
59
60/** TCP timers */
61#define foreach_tcp_timer \
62 _(RETRANSMIT, "RETRANSMIT") \
63 _(DELACK, "DELAYED ACK") \
64 _(PERSIST, "PERSIST") \
65 _(KEEP, "KEEP") \
Florin Corasd79b41e2017-03-04 05:37:52 -080066 _(WAITCLOSE, "WAIT CLOSE") \
67 _(RETRANSMIT_SYN, "RETRANSMIT SYN") \
Dave Barach68b0fb02017-02-28 15:15:56 -050068 _(ESTABLISH, "ESTABLISH")
69
70typedef enum _tcp_timers
71{
72#define _(sym, str) TCP_TIMER_##sym,
73 foreach_tcp_timer
74#undef _
75 TCP_N_TIMERS
76} tcp_timers_e;
77
78typedef void (timer_expiration_handler) (u32 index);
79
80extern timer_expiration_handler tcp_timer_delack_handler;
81extern timer_expiration_handler tcp_timer_retransmit_handler;
82extern timer_expiration_handler tcp_timer_retransmit_syn_handler;
83
84#define TCP_TIMER_HANDLE_INVALID ((u32) ~0)
85
86/* Timer delays as multiples of 100ms */
87#define TCP_TO_TIMER_TICK TCP_TICK*10 /* Period for converting from TCP
88 * ticks to timer units */
89#define TCP_DELACK_TIME 1 /* 0.1s */
90#define TCP_ESTABLISH_TIME 750 /* 75s */
91#define TCP_2MSL_TIME 300 /* 30s */
Florin Corasd79b41e2017-03-04 05:37:52 -080092#define TCP_CLOSEWAIT_TIME 1 /* 0.1s */
93#define TCP_CLEANUP_TIME 5 /* 0.5s Time to wait before cleanup */
Dave Barach68b0fb02017-02-28 15:15:56 -050094
95#define TCP_RTO_MAX 60 * THZ /* Min max RTO (60s) as per RFC6298 */
96#define TCP_RTT_MAX 30 * THZ /* 30s (probably too much) */
97#define TCP_RTO_SYN_RETRIES 3 /* SYN retries without doubling RTO */
98#define TCP_RTO_INIT 1 * THZ /* Initial retransmit timer */
99
100void tcp_update_time (f64 now, u32 thread_index);
101
102/** TCP connection flags */
103#define foreach_tcp_connection_flag \
104 _(DELACK, "Delay ACK") \
105 _(SNDACK, "Send ACK") \
106 _(BURSTACK, "Burst ACK set") \
Florin Corasd79b41e2017-03-04 05:37:52 -0800107 _(FINSNT, "FIN sent") \
Dave Barach68b0fb02017-02-28 15:15:56 -0500108 _(SENT_RCV_WND0, "Sent 0 receive window") \
109 _(RECOVERY, "Recovery on") \
110 _(FAST_RECOVERY, "Fast Recovery on")
111
112typedef enum _tcp_connection_flag_bits
113{
114#define _(sym, str) TCP_CONN_##sym##_BIT,
115 foreach_tcp_connection_flag
116#undef _
117 TCP_CONN_N_FLAG_BITS
118} tcp_connection_flag_bits_e;
119
120typedef enum _tcp_connection_flag
121{
122#define _(sym, str) TCP_CONN_##sym = 1 << TCP_CONN_##sym##_BIT,
123 foreach_tcp_connection_flag
124#undef _
125 TCP_CONN_N_FLAGS
126} tcp_connection_flags_e;
127
128/** TCP buffer flags */
129#define foreach_tcp_buf_flag \
130 _ (ACK) /**< Sending ACK. */ \
131 _ (DUPACK) /**< Sending DUPACK. */ \
132
133enum
134{
135#define _(f) TCP_BUF_BIT_##f,
136 foreach_tcp_buf_flag
137#undef _
138 TCP_N_BUF_BITS,
139};
140
141enum
142{
143#define _(f) TCP_BUF_FLAG_##f = 1 << TCP_BUF_BIT_##f,
144 foreach_tcp_buf_flag
145#undef _
146};
147
148#define TCP_MAX_SACK_BLOCKS 5 /**< Max number of SACK blocks stored */
149#define TCP_INVALID_SACK_HOLE_INDEX ((u32)~0)
150
151typedef struct _sack_scoreboard_hole
152{
153 u32 next; /**< Index for next entry in linked list */
154 u32 prev; /**< Index for previous entry in linked list */
155 u32 start; /**< Start sequence number */
156 u32 end; /**< End sequence number */
157} sack_scoreboard_hole_t;
158
159typedef struct _sack_scoreboard
160{
161 sack_scoreboard_hole_t *holes; /**< Pool of holes */
162 u32 head; /**< Index to first entry */
163 u32 sacked_bytes; /**< Number of bytes sacked in sb */
164} sack_scoreboard_t;
165
166typedef enum _tcp_cc_algorithm_type
167{
168 TCP_CC_NEWRENO,
169} tcp_cc_algorithm_type_e;
170
171typedef struct _tcp_cc_algorithm tcp_cc_algorithm_t;
172
173typedef enum _tcp_cc_ack_t
174{
175 TCP_CC_ACK,
176 TCP_CC_DUPACK,
177 TCP_CC_PARTIALACK
178} tcp_cc_ack_t;
179
180typedef struct _tcp_connection
181{
182 transport_connection_t connection; /**< Common transport data. First! */
183
184 u8 state; /**< TCP state as per tcp_state_t */
185 u16 flags; /**< Connection flags (see tcp_conn_flags_e) */
186 u32 timers[TCP_N_TIMERS]; /**< Timer handles into timer wheel */
187
188 /* TODO RFC4898 */
189
190 /** Send sequence variables RFC793 */
191 u32 snd_una; /**< oldest unacknowledged sequence number */
192 u32 snd_una_max; /**< newest unacknowledged sequence number + 1*/
193 u32 snd_wnd; /**< send window */
194 u32 snd_wl1; /**< seq number used for last snd.wnd update */
195 u32 snd_wl2; /**< ack number used for last snd.wnd update */
196 u32 snd_nxt; /**< next seq number to be sent */
197
198 /** Receive sequence variables RFC793 */
199 u32 rcv_nxt; /**< next sequence number expected */
200 u32 rcv_wnd; /**< receive window we expect */
201
202 u32 rcv_las; /**< rcv_nxt at last ack sent/rcv_wnd update */
203 u32 iss; /**< initial sent sequence */
204 u32 irs; /**< initial remote sequence */
205
206 /* Options */
207 tcp_options_t opt; /**< TCP connection options parsed */
208 u8 rcv_wscale; /**< Window scale to advertise to peer */
209 u8 snd_wscale; /**< Window scale to use when sending */
210 u32 tsval_recent; /**< Last timestamp received */
211 u32 tsval_recent_age; /**< When last updated tstamp_recent*/
212
213 sack_block_t *snd_sacks; /**< Vector of SACKs to send. XXX Fixed size? */
214 sack_scoreboard_t sack_sb; /**< SACK "scoreboard" that tracks holes */
215
216 u8 rcv_dupacks; /**< Number of DUPACKs received */
217 u8 snt_dupacks; /**< Number of DUPACKs sent in a burst */
218
219 /* Congestion control */
220 u32 cwnd; /**< Congestion window */
221 u32 ssthresh; /**< Slow-start threshold */
222 u32 prev_ssthresh; /**< ssthresh before congestion */
223 u32 bytes_acked; /**< Bytes acknowledged by current segment */
224 u32 rtx_bytes; /**< Retransmitted bytes */
225 u32 tsecr_last_ack; /**< Timestamp echoed to us in last health ACK */
226 tcp_cc_algorithm_t *cc_algo; /**< Congestion control algorithm */
227
228 /* RTT and RTO */
229 u32 rto; /**< Retransmission timeout */
230 u32 rto_boff; /**< Index for RTO backoff */
231 u32 srtt; /**< Smoothed RTT */
232 u32 rttvar; /**< Smoothed mean RTT difference. Approximates variance */
233 u32 rtt_ts; /**< Timestamp for tracked ACK */
234 u32 rtt_seq; /**< Sequence number for tracked ACK */
235
236 u16 snd_mss; /**< Send MSS */
237} tcp_connection_t;
238
239struct _tcp_cc_algorithm
240{
241 void (*rcv_ack) (tcp_connection_t * tc);
242 void (*rcv_cong_ack) (tcp_connection_t * tc, tcp_cc_ack_t ack);
243 void (*congestion) (tcp_connection_t * tc);
244 void (*recovered) (tcp_connection_t * tc);
245 void (*init) (tcp_connection_t * tc);
246};
247
248#define tcp_fastrecovery_on(tc) (tc)->flags |= TCP_CONN_FAST_RECOVERY
249#define tcp_fastrecovery_off(tc) (tc)->flags &= ~TCP_CONN_FAST_RECOVERY
250#define tcp_in_fastrecovery(tc) ((tc)->flags & TCP_CONN_FAST_RECOVERY)
251#define tcp_in_recovery(tc) ((tc)->flags & (TCP_CONN_FAST_RECOVERY | TCP_CONN_RECOVERY))
252#define tcp_recovery_off(tc) ((tc)->flags &= ~(TCP_CONN_FAST_RECOVERY | TCP_CONN_RECOVERY))
253#define tcp_in_slowstart(tc) (tc->cwnd < tc->ssthresh)
254
255typedef enum
256{
257 TCP_IP4,
258 TCP_IP6,
259 TCP_N_AF,
260} tcp_af_t;
261
262typedef enum _tcp_error
263{
264#define tcp_error(n,s) TCP_ERROR_##n,
265#include <vnet/tcp/tcp_error.def>
266#undef tcp_error
267 TCP_N_ERROR,
268} tcp_error_t;
269
270typedef struct _tcp_lookup_dispatch
271{
272 u8 next, error;
273} tcp_lookup_dispatch_t;
274
275typedef struct _tcp_main
276{
277 /* Per-worker thread tcp connection pools */
278 tcp_connection_t **connections;
279
280 /* Pool of listeners. */
281 tcp_connection_t *listener_pool;
282
283 /** Dispatch table by state and flags */
284 tcp_lookup_dispatch_t dispatch_table[TCP_N_STATES][64];
285
286 u8 log2_tstamp_clocks_per_tick;
287 f64 tstamp_ticks_per_clock;
288
289 /** per-worker tx buffer free lists */
290 u32 **tx_buffers;
291
292 /* Per worker-thread timer wheel for connections timers */
293 tw_timer_wheel_16t_2w_512sl_t *timer_wheels;
294
295 /* Convenience per worker-thread vector of connections to DELACK */
296 u32 **delack_connections;
297
298 /* Pool of half-open connections on which we've sent a SYN */
299 tcp_connection_t *half_open_connections;
300
301 /* Pool of local TCP endpoints */
302 transport_endpoint_t *local_endpoints;
303
304 /* Local endpoints lookup table */
305 transport_endpoint_table_t local_endpoints_table;
306
307 /* Congestion control algorithms registered */
308 tcp_cc_algorithm_t *cc_algos;
309
Florin Corasa0b34a72017-03-07 01:20:52 -0800310 /* Flag that indicates if stack is on or off */
311 u8 is_enabled;
312
Dave Barach68b0fb02017-02-28 15:15:56 -0500313 /* convenience */
314 vlib_main_t *vlib_main;
315 vnet_main_t *vnet_main;
316 ip4_main_t *ip4_main;
317 ip6_main_t *ip6_main;
318} tcp_main_t;
319
320extern tcp_main_t tcp_main;
321extern vlib_node_registration_t tcp4_input_node;
322extern vlib_node_registration_t tcp6_input_node;
323extern vlib_node_registration_t tcp4_output_node;
324extern vlib_node_registration_t tcp6_output_node;
325
326always_inline tcp_main_t *
327vnet_get_tcp_main ()
328{
329 return &tcp_main;
330}
331
Florin Corasa0b34a72017-03-07 01:20:52 -0800332clib_error_t *vnet_tcp_enable_disable (vlib_main_t * vm, u8 is_en);
333
Dave Barach68b0fb02017-02-28 15:15:56 -0500334always_inline tcp_connection_t *
335tcp_connection_get (u32 conn_index, u32 thread_index)
336{
Florin Corasd79b41e2017-03-04 05:37:52 -0800337 if (pool_is_free_index (tcp_main.connections[thread_index], conn_index))
338 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500339 return pool_elt_at_index (tcp_main.connections[thread_index], conn_index);
340}
341
342always_inline tcp_connection_t *
343tcp_connection_get_if_valid (u32 conn_index, u32 thread_index)
344{
345 if (tcp_main.connections[thread_index] == 0)
346 return 0;
347 if (pool_is_free_index (tcp_main.connections[thread_index], conn_index))
348 return 0;
349 return pool_elt_at_index (tcp_main.connections[thread_index], conn_index);
350}
351
352void tcp_connection_close (tcp_connection_t * tc);
353void tcp_connection_cleanup (tcp_connection_t * tc);
354void tcp_connection_del (tcp_connection_t * tc);
Florin Corasd79b41e2017-03-04 05:37:52 -0800355void tcp_connection_reset (tcp_connection_t * tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500356
357always_inline tcp_connection_t *
358tcp_listener_get (u32 tli)
359{
360 return pool_elt_at_index (tcp_main.listener_pool, tli);
361}
362
363always_inline tcp_connection_t *
364tcp_half_open_connection_get (u32 conn_index)
365{
366 return pool_elt_at_index (tcp_main.half_open_connections, conn_index);
367}
368
369void tcp_make_ack (tcp_connection_t * ts, vlib_buffer_t * b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800370void tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500371void tcp_make_synack (tcp_connection_t * ts, vlib_buffer_t * b);
372void tcp_send_reset (vlib_buffer_t * pkt, u8 is_ip4);
373void tcp_send_syn (tcp_connection_t * tc);
374void tcp_send_fin (tcp_connection_t * tc);
375void tcp_set_snd_mss (tcp_connection_t * tc);
376
377always_inline u32
378tcp_end_seq (tcp_header_t * th, u32 len)
379{
380 return th->seq_number + tcp_is_syn (th) + tcp_is_fin (th) + len;
381}
382
383/* Modulo arithmetic for TCP sequence numbers */
384#define seq_lt(_s1, _s2) ((i32)((_s1)-(_s2)) < 0)
385#define seq_leq(_s1, _s2) ((i32)((_s1)-(_s2)) <= 0)
386#define seq_gt(_s1, _s2) ((i32)((_s1)-(_s2)) > 0)
387#define seq_geq(_s1, _s2) ((i32)((_s1)-(_s2)) >= 0)
388
389/* Modulo arithmetic for timestamps */
390#define timestamp_lt(_t1, _t2) ((i32)((_t1)-(_t2)) < 0)
391#define timestamp_leq(_t1, _t2) ((i32)((_t1)-(_t2)) <= 0)
392
393always_inline u32
394tcp_flight_size (const tcp_connection_t * tc)
395{
396 return tc->snd_una_max - tc->snd_una - tc->sack_sb.sacked_bytes
397 + tc->rtx_bytes;
398}
399
400/**
401 * Initial cwnd as per RFC5681
402 */
403always_inline u32
404tcp_initial_cwnd (const tcp_connection_t * tc)
405{
406 if (tc->snd_mss > 2190)
407 return 2 * tc->snd_mss;
408 else if (tc->snd_mss > 1095)
409 return 3 * tc->snd_mss;
410 else
411 return 4 * tc->snd_mss;
412}
413
414always_inline u32
415tcp_loss_wnd (const tcp_connection_t * tc)
416{
417 return tc->snd_mss;
418}
419
420always_inline u32
421tcp_available_wnd (const tcp_connection_t * tc)
422{
423 return clib_min (tc->cwnd, tc->snd_wnd);
424}
425
426always_inline u32
427tcp_available_snd_space (const tcp_connection_t * tc)
428{
429 u32 available_wnd = tcp_available_wnd (tc);
430 u32 flight_size = tcp_flight_size (tc);
431
432 if (available_wnd <= flight_size)
433 return 0;
434
435 return available_wnd - flight_size;
436}
437
438void tcp_retransmit_first_unacked (tcp_connection_t * tc);
439
440void tcp_fast_retransmit (tcp_connection_t * tc);
441
442always_inline u32
443tcp_time_now (void)
444{
445 return clib_cpu_time_now () * tcp_main.tstamp_ticks_per_clock;
446}
447
448u32 tcp_push_header (transport_connection_t * tconn, vlib_buffer_t * b);
449
450u32
451tcp_prepare_retransmit_segment (tcp_connection_t * tc, vlib_buffer_t * b,
452 u32 max_bytes);
453
454void tcp_connection_timers_init (tcp_connection_t * tc);
455void tcp_connection_timers_reset (tcp_connection_t * tc);
456
457void tcp_connection_init_vars (tcp_connection_t * tc);
458
459always_inline void
460tcp_connection_force_ack (tcp_connection_t * tc, vlib_buffer_t * b)
461{
462 /* Reset flags, make sure ack is sent */
463 tc->flags = TCP_CONN_SNDACK;
464 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
465}
466
467always_inline void
468tcp_timer_set (tcp_connection_t * tc, u8 timer_id, u32 interval)
469{
470 tc->timers[timer_id]
471 = tw_timer_start_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
472 tc->c_c_index, timer_id, interval);
473}
474
475always_inline void
Florin Corasd79b41e2017-03-04 05:37:52 -0800476tcp_retransmit_timer_set (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500477{
478 /* XXX Switch to faster TW */
479 tcp_timer_set (tc, TCP_TIMER_RETRANSMIT,
480 clib_max (tc->rto * TCP_TO_TIMER_TICK, 1));
481}
482
483always_inline void
484tcp_timer_reset (tcp_connection_t * tc, u8 timer_id)
485{
486 if (tc->timers[timer_id] == TCP_TIMER_HANDLE_INVALID)
487 return;
488
489 tw_timer_stop_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
490 tc->timers[timer_id]);
491 tc->timers[timer_id] = TCP_TIMER_HANDLE_INVALID;
492}
493
494always_inline void
495tcp_timer_update (tcp_connection_t * tc, u8 timer_id, u32 interval)
496{
497 if (tc->timers[timer_id] != TCP_TIMER_HANDLE_INVALID)
498 tw_timer_stop_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
499 tc->timers[timer_id]);
500 tc->timers[timer_id] =
501 tw_timer_start_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
502 tc->c_c_index, timer_id, interval);
503}
504
505always_inline u8
506tcp_timer_is_active (tcp_connection_t * tc, tcp_timers_e timer)
507{
508 return tc->timers[timer] != TCP_TIMER_HANDLE_INVALID;
509}
510
511void
512scoreboard_remove_hole (sack_scoreboard_t * sb,
513 sack_scoreboard_hole_t * hole);
514
515always_inline sack_scoreboard_hole_t *
516scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
517{
518 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
519 return pool_elt_at_index (sb->holes, hole->next);
520 return 0;
521}
522
523always_inline sack_scoreboard_hole_t *
524scoreboard_first_hole (sack_scoreboard_t * sb)
525{
526 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
527 return pool_elt_at_index (sb->holes, sb->head);
528 return 0;
529}
530
531always_inline void
532scoreboard_clear (sack_scoreboard_t * sb)
533{
534 sack_scoreboard_hole_t *hole = scoreboard_first_hole (sb);
535 while ((hole = scoreboard_first_hole (sb)))
536 {
537 scoreboard_remove_hole (sb, hole);
538 }
539}
540
541always_inline u32
542scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
543{
544 return hole->end - hole->start;
545}
546
547always_inline void
548tcp_cc_algo_register (tcp_cc_algorithm_type_e type,
549 const tcp_cc_algorithm_t * vft)
550{
551 tcp_main_t *tm = vnet_get_tcp_main ();
552 vec_validate (tm->cc_algos, type);
553
554 tm->cc_algos[type] = *vft;
555}
556
557always_inline tcp_cc_algorithm_t *
558tcp_cc_algo_get (tcp_cc_algorithm_type_e type)
559{
560 tcp_main_t *tm = vnet_get_tcp_main ();
561 return &tm->cc_algos[type];
562}
563
564void tcp_cc_init (tcp_connection_t * tc);
565
566/**
567 * Push TCP header to buffer
568 *
569 * @param vm - vlib_main
570 * @param b - buffer to write the header to
571 * @param sp_net - source port net order
572 * @param dp_net - destination port net order
573 * @param seq - sequence number net order
574 * @param ack - ack number net order
575 * @param tcp_hdr_opts_len - header and options length in bytes
576 * @param flags - header flags
577 * @param wnd - window size
578 *
579 * @return - pointer to start of TCP header
580 */
581always_inline void *
582vlib_buffer_push_tcp_net_order (vlib_buffer_t * b, u16 sp, u16 dp, u32 seq,
583 u32 ack, u8 tcp_hdr_opts_len, u8 flags,
584 u16 wnd)
585{
586 tcp_header_t *th;
587
588 th = vlib_buffer_push_uninit (b, tcp_hdr_opts_len);
589
590 th->src_port = sp;
591 th->dst_port = dp;
592 th->seq_number = seq;
593 th->ack_number = ack;
594 th->data_offset_and_reserved = (tcp_hdr_opts_len >> 2) << 4;
595 th->flags = flags;
596 th->window = wnd;
597 th->checksum = 0;
598 th->urgent_pointer = 0;
599 return th;
600}
601
602/**
603 * Push TCP header to buffer
604 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500605 * @param b - buffer to write the header to
606 * @param sp_net - source port net order
607 * @param dp_net - destination port net order
608 * @param seq - sequence number host order
609 * @param ack - ack number host order
610 * @param tcp_hdr_opts_len - header and options length in bytes
611 * @param flags - header flags
612 * @param wnd - window size
613 *
614 * @return - pointer to start of TCP header
615 */
616always_inline void *
617vlib_buffer_push_tcp (vlib_buffer_t * b, u16 sp_net, u16 dp_net, u32 seq,
618 u32 ack, u8 tcp_hdr_opts_len, u8 flags, u16 wnd)
619{
620 return vlib_buffer_push_tcp_net_order (b, sp_net, dp_net,
621 clib_host_to_net_u32 (seq),
622 clib_host_to_net_u32 (ack),
623 tcp_hdr_opts_len, flags,
624 clib_host_to_net_u16 (wnd));
625}
626
627#endif /* _vnet_tcp_h_ */
628
629/*
630 * fd.io coding-style-patch-verification: ON
631 *
632 * Local Variables:
633 * eval: (c-set-style "gnu")
634 * End:
635 */