1/*-
   2 * SPDX-License-Identifier: BSD-3-Clause
   3 *
   4 * Copyright (c) 1982, 1986, 1993, 1994, 1995
   5 *	The Regents of the University of California.  All rights reserved.
   6 *
   7 * Redistribution and use in source and binary forms, with or without
   8 * modification, are permitted provided that the following conditions
   9 * are met:
  10 * 1. Redistributions of source code must retain the above copyright
  11 *    notice, this list of conditions and the following disclaimer.
  12 * 2. Redistributions in binary form must reproduce the above copyright
  13 *    notice, this list of conditions and the following disclaimer in the
  14 *    documentation and/or other materials provided with the distribution.
  15 * 3. Neither the name of the University nor the names of its contributors
  16 *    may be used to endorse or promote products derived from this software
  17 *    without specific prior written permission.
  18 *
  19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  29 * SUCH DAMAGE.
  30 *
  31 *	@(#)tcp_var.h	8.4 (Berkeley) 5/24/95
  32 */
  33
  34#ifndef _NETINET_TCP_VAR_H_
  35#define _NETINET_TCP_VAR_H_
  36
  37#include <netinet/tcp.h>
  38#include <netinet/tcp_fsm.h>
  39
  40#ifdef _KERNEL
  41#include <net/vnet.h>
  42#include <sys/mbuf.h>
  43#include <sys/ktls.h>
  44#endif
  45
  46#define TCP_END_BYTE_INFO 8	/* Bytes that makeup the "end information array" */
  47/* Types of ending byte info */
  48#define TCP_EI_EMPTY_SLOT	0
  49#define TCP_EI_STATUS_CLIENT_FIN	0x1
  50#define TCP_EI_STATUS_CLIENT_RST	0x2
  51#define TCP_EI_STATUS_SERVER_FIN	0x3
  52#define TCP_EI_STATUS_SERVER_RST	0x4
  53#define TCP_EI_STATUS_RETRAN		0x5
  54#define TCP_EI_STATUS_PROGRESS		0x6
  55#define TCP_EI_STATUS_PERSIST_MAX	0x7
  56#define TCP_EI_STATUS_KEEP_MAX		0x8
  57#define TCP_EI_STATUS_DATA_A_CLOSE	0x9
  58#define TCP_EI_STATUS_RST_IN_FRONT	0xa
  59#define TCP_EI_STATUS_2MSL		0xb
  60#define TCP_EI_STATUS_MAX_VALUE		0xb
  61
  62#define TCP_TRK_REQ_LOG_NEW		0x01
  63#define TCP_TRK_REQ_LOG_COMPLETE	0x02
  64#define TCP_TRK_REQ_LOG_FREED		0x03
  65#define TCP_TRK_REQ_LOG_ALLOCFAIL	0x04
  66#define TCP_TRK_REQ_LOG_MOREYET	0x05
  67#define TCP_TRK_REQ_LOG_FORCEFREE	0x06
  68#define TCP_TRK_REQ_LOG_STALE		0x07
  69#define TCP_TRK_REQ_LOG_SEARCH		0x08
  70
  71/************************************************/
  72/* Status bits we track to assure no duplicates,
  73 * the bits here are not used by the code but
  74 * for human representation. To check a bit we
  75 * take and shift over by 1 minus the value (1-8).
  76 */
  77/************************************************/
  78#define TCP_EI_BITS_CLIENT_FIN	0x001
  79#define TCP_EI_BITS_CLIENT_RST	0x002
  80#define TCP_EI_BITS_SERVER_FIN	0x004
  81#define TCP_EI_BITS_SERVER_RST	0x008
  82#define TCP_EI_BITS_RETRAN	0x010
  83#define TCP_EI_BITS_PROGRESS	0x020
  84#define TCP_EI_BITS_PRESIST_MAX	0x040
  85#define TCP_EI_BITS_KEEP_MAX	0x080
  86#define TCP_EI_BITS_DATA_A_CLO  0x100
  87#define TCP_EI_BITS_RST_IN_FR	0x200	/* a front state reset */
  88#define TCP_EI_BITS_2MS_TIMER	0x400	/* 2 MSL timer expired */
  89
  90#if defined(_KERNEL) || defined(_WANT_TCPCB)
  91#include <sys/_callout.h>
  92#include <sys/osd.h>
  93
  94#include <netinet/cc/cc.h>
  95
  96/* TCP segment queue entry */
  97struct tseg_qent {
  98	TAILQ_ENTRY(tseg_qent) tqe_q;
  99	struct	mbuf   *tqe_m;		/* mbuf contains packet */
 100	struct  mbuf   *tqe_last;	/* last mbuf in chain */
 101	tcp_seq tqe_start;		/* TCP Sequence number start */
 102	int	tqe_len;		/* TCP segment data length */
 103	uint32_t tqe_flags;		/* The flags from tcp_get_flags() */
 104	uint32_t tqe_mbuf_cnt;		/* Count of mbuf overhead */
 105};
 106TAILQ_HEAD(tsegqe_head, tseg_qent);
 107
 108struct sackblk {
 109	tcp_seq start;		/* start seq no. of sack block */
 110	tcp_seq end;		/* end seq no. */
 111};
 112
 113struct sackhole {
 114	tcp_seq start;		/* start seq no. of hole */
 115	tcp_seq end;		/* end seq no. */
 116	tcp_seq rxmit;		/* next seq. no in hole to be retransmitted */
 117	TAILQ_ENTRY(sackhole) scblink;	/* scoreboard linkage */
 118};
 119
 120struct sackhint {
 121	struct sackhole	*nexthole;
 122	int32_t		sack_bytes_rexmit;
 123	tcp_seq		last_sack_ack;	/* Most recent/largest sacked ack */
 124
 125	int32_t		delivered_data; /* Newly acked data from last SACK */
 126
 127	int32_t		sacked_bytes;	/* Total sacked bytes reported by the
 128					 * receiver via sack option
 129					 */
 130	uint32_t	recover_fs;	/* Flight Size at the start of Loss recovery */
 131	uint32_t	prr_delivered;	/* Total bytes delivered using PRR */
 132	uint32_t	prr_out;	/* Bytes sent during IN_RECOVERY */
 133};
 134
 135#define SEGQ_EMPTY(tp) TAILQ_EMPTY(&(tp)->t_segq)
 136
 137STAILQ_HEAD(tcp_log_stailq, tcp_log_mem);
 138
 139#define TCP_TRK_TRACK_FLG_EMPTY 0x00	/* Available */
 140#define TCP_TRK_TRACK_FLG_USED  0x01	/* In use */
 141#define TCP_TRK_TRACK_FLG_OPEN  0x02	/* End is not valid (open range request) */
 142#define TCP_TRK_TRACK_FLG_SEQV  0x04	/* We had a sendfile that touched it  */
 143#define TCP_TRK_TRACK_FLG_COMP  0x08	/* Sendfile as placed the last bits (range req only) */
 144#define TCP_TRK_TRACK_FLG_FSND	 0x10	/* First send has been done into the seq space */
 145#define MAX_TCP_TRK_REQ 5		/* Max we will have at once */
 146
 147struct tcp_sendfile_track {
 148	uint64_t timestamp;	/* User sent timestamp */
 149	uint64_t start;		/* Start of sendfile offset */
 150	uint64_t end;		/* End if not open-range req */
 151	uint64_t localtime;	/* Time we actually got the req */
 152	uint64_t deadline;	/* If in CU mode, deadline to delivery */
 153	uint64_t first_send;	/* Time of first send in the range */
 154	uint64_t cspr;		/* Client suggested pace rate */
 155	uint64_t sent_at_fs;	/* What was t_sndbytes as we begun sending */
 156	uint64_t rxt_at_fs;	/* What was t_snd_rxt_bytes as we begun sending */
 157	tcp_seq start_seq;	/* First TCP Seq assigned */
 158	tcp_seq end_seq;	/* If range req last seq */
 159	uint32_t flags;		/* Type of request open etc */
 160	uint32_t sbcc_at_s;	/* When we allocate what is the sb_cc */
 161	uint32_t hint_maxseg;	/* Client hinted maxseg */
 162	uint32_t hybrid_flags;	/* Hybrid flags on this request */
 163};
 164
 165
 166/*
 167 * Change Query responses for a stack switch we create a structure
 168 * that allows query response from the new stack to the old, if
 169 * supported.
 170 *
 171 * There are three queries currently defined.
 172 *  - sendmap
 173 *  - timers
 174 *  - rack_times
 175 *
 176 * For the sendmap query the caller fills in the
 177 * req and the req_param as the first seq (usually
 178 * snd_una). When the response comes back indicating
 179 * that there was data (return value 1), then the caller
 180 * can build a sendmap entry based on the range and the
 181 * times. The next query would then be done at the 
 182 * newly created sendmap_end. Repeated until sendmap_end == snd_max.
 183 *
 184 * Flags in sendmap_flags are defined below as well.
 185 *
 186 * For timers the standard PACE_TMR_XXXX flags are returned indicating
 187 * a pacing timer (possibly) and one other timer. If pacing timer then
 188 * the expiration timeout time in microseconds is in timer_pacing_to.
 189 * And the value used with whatever timer (if a flag is set) is in
 190 * timer_rxt. If no timers are running a 0 is returned and of
 191 * course no flags are set in timer_hpts_flags.
 192 *
 193 * The rack_times are a misc collection of information that
 194 * the old stack might possibly fill in. Of course its possible
 195 * that an old stack may not have a piece of information. If so
 196 * then setting that value to zero is advised. Setting any 
 197 * timestamp passed should only place a zero in it when it
 198 * is unfilled. This may mean that a time is off by a micro-second
 199 * but this is ok in the grand scheme of things.
 200 *
 201 * When switching stacks it is desireable to get as much information
 202 * from the old stack to the new stack as possible. Though not always
 203 * will the stack be compatible in the types of information. The
 204 * init() function needs to take care when it begins changing 
 205 * things such as inp_flags2 and the timer units to position these
 206 * changes at a point where it is unlikely they will fail after
 207 * making such changes. A stack optionally can have an "undo"
 208 * function  
 209 *
 210 * To transfer information to the old stack from the new in 
 211 * respect to LRO and the inp_flags2, the new stack should set
 212 * the inp_flags2 to what it supports. The old stack in its
 213 * fini() function should call the tcp_handle_orphaned_packets()
 214 * to clean up any packets. Note that a new stack should attempt
 215 */
 216
 217/* Query types */
 218#define TCP_QUERY_SENDMAP	1
 219#define TCP_QUERY_TIMERS_UP	2
 220#define TCP_QUERY_RACK_TIMES	3
 221
 222/* Flags returned in sendmap_flags */
 223#define SNDMAP_ACKED		0x000001/* The remote endpoint acked this */
 224#define SNDMAP_OVERMAX		0x000008/* We have more retran's then we can fit */
 225#define SNDMAP_SACK_PASSED	0x000010/* A sack was done above this block */
 226#define SNDMAP_HAS_FIN		0x000040/* segment is sent with fin */
 227#define SNDMAP_TLP		0x000080/* segment sent as tail-loss-probe */
 228#define SNDMAP_HAS_SYN		0x000800/* SYN is on this guy */
 229#define SNDMAP_HAD_PUSH		0x008000/* Push was sent on original send */
 230#define SNDMAP_MASK  (SNDMAP_ACKED|SNDMAP_OVERMAX|SNDMAP_SACK_PASSED|SNDMAP_HAS_FIN\
 231		      |SNDMAP_TLP|SNDMAP_HAS_SYN|SNDMAP_HAD_PUSH)
 232#define SNDMAP_NRTX 3
 233
 234struct tcp_query_resp {
 235	int req;
 236	uint32_t req_param;
 237	union {
 238		struct {
 239			tcp_seq sendmap_start;
 240			tcp_seq sendmap_end;
 241			int sendmap_send_cnt;
 242			uint64_t sendmap_time[SNDMAP_NRTX];
 243			uint64_t sendmap_ack_arrival;
 244			int sendmap_flags;
 245			uint32_t sendmap_r_rtr_bytes;
 246			/* If FAS is available if not 0 */
 247			uint32_t sendmap_fas;
 248			uint8_t sendmap_dupacks;
 249		};
 250		struct {
 251			uint32_t timer_hpts_flags;
 252			uint32_t timer_pacing_to;
 253			uint32_t timer_timer_exp;
 254		};
 255		struct {
 256			/* Timestamps and rtt's */
 257			uint32_t rack_reorder_ts;	/* Last uscts that reordering was seen */
 258			uint32_t rack_num_dsacks;	/* Num of dsacks seen */
 259			uint32_t rack_rxt_last_time; 	/* Last time a RXT/TLP or rack tmr  went off */
 260			uint32_t rack_min_rtt;		/* never 0 smallest rtt seen */
 261			uint32_t rack_rtt;		/* Last rtt used by rack */
 262			uint32_t rack_tmit_time;	/* The time the rtt seg was tmited */
 263			uint32_t rack_time_went_idle;	/* If in persist the time we went idle */
 264			/* Prr data  */
 265			uint32_t rack_sacked;
 266			uint32_t rack_holes_rxt;
 267			uint32_t rack_prr_delivered;
 268			uint32_t rack_prr_recovery_fs;
 269			uint32_t rack_prr_out;
 270			uint32_t rack_prr_sndcnt;
 271			/* TLP data */
 272			uint16_t rack_tlp_cnt_out;	/* How many tlp's have been sent */
 273			/* Various bits */
 274			uint8_t  rack_tlp_out;		/* Is a TLP outstanding */
 275			uint8_t  rack_srtt_measured;	/* The previous stack has measured srtt */
 276			uint8_t  rack_in_persist;	/* Is the old stack in persists? */
 277			uint8_t	 rack_wanted_output;	/* Did the prevous stack have a want output set */
 278		};
 279	};
 280};
 281
 282#define TCP_TMR_GRANULARITY_TICKS	1	/* TCP timers are in ticks (msec if hz=1000)  */
 283#define TCP_TMR_GRANULARITY_USEC	2	/* TCP timers are in microseconds */
 284
 285typedef enum {
 286	TT_REXMT = 0,
 287	TT_PERSIST,
 288	TT_KEEP,
 289	TT_2MSL,
 290	TT_DELACK,
 291	TT_N,
 292} tt_which;
 293
 294typedef enum {
 295	TT_PROCESSING = 0,
 296	TT_PROCESSED,
 297	TT_STARTING,
 298	TT_STOPPING,
 299} tt_what;
 300
 301/*
 302 * Tcp control block, one per tcp connection.
 303 */
 304struct tcpcb {
 305	struct inpcb t_inpcb;		/* embedded protocol independent cb */
 306#define	t_start_zero	t_fb
 307#define	t_zero_size	(sizeof(struct tcpcb) - \
 308			    offsetof(struct tcpcb, t_start_zero))
 309	struct tcp_function_block *t_fb;/* TCP function call block */
 310	void	*t_fb_ptr;		/* Pointer to t_fb specific data */
 311
 312	struct callout t_callout;
 313	sbintime_t t_timers[TT_N];
 314	sbintime_t t_precisions[TT_N];
 315
 316	/* HPTS. Used by BBR and Rack stacks. See tcp_hpts.c for more info. */
 317	TAILQ_ENTRY(tcpcb)	t_hpts;		/* linkage to HPTS ring */
 318	STAILQ_HEAD(, mbuf)	t_inqueue;	/* HPTS input packets queue */
 319	uint32_t t_hpts_request;	/* Current hpts request, zero if
 320					 * fits in the pacing window. */
 321	uint32_t t_hpts_slot;		/* HPTS wheel slot this tcb is. */
 322	uint32_t t_hpts_drop_reas;	/* Reason we are dropping the pcb. */
 323	uint32_t t_hpts_gencnt;
 324	uint16_t t_hpts_cpu;		/* CPU chosen by hpts_cpuid(). */
 325	uint16_t t_lro_cpu;		/* CPU derived from LRO. */
 326#define	HPTS_CPU_NONE	((uint16_t)-1)
 327	enum {
 328		IHPTS_NONE = 0,
 329		IHPTS_ONQUEUE,
 330		IHPTS_MOVING,
 331	} t_in_hpts;			/* Is it linked into HPTS? */
 332
 333	uint32_t t_maxseg:24,		/* maximum segment size */
 334		_t_logstate:8;		/* State of "black box" logging */
 335	uint32_t t_port:16,		/* Tunneling (over udp) port */
 336		t_state:4,		/* state of this connection */
 337		t_idle_reduce : 1,
 338		t_delayed_ack: 7,	/* Delayed ack variable */
 339		t_fin_is_rst: 1,	/* Are fin's treated as resets */
 340		t_log_state_set: 1,
 341		bits_spare : 2;
 342	u_int	t_flags;
 343	tcp_seq	snd_una;		/* sent but unacknowledged */
 344	tcp_seq	snd_max;		/* highest sequence number sent;
 345					 * used to recognize retransmits
 346					 */
 347	tcp_seq snd_nxt;		/* send next */
 348	tcp_seq snd_up;			/* send urgent pointer */
 349	uint32_t snd_wnd;		/* send window */
 350	uint32_t snd_cwnd;		/* congestion-controlled window */
 351	uint32_t ts_offset;		/* our timestamp offset */
 352	uint32_t rfbuf_ts;		/* recv buffer autoscaling timestamp */
 353	int	rcv_numsacks;		/* # distinct sack blks present */
 354	u_int	t_tsomax;		/* TSO total burst length limit */
 355	u_int	t_tsomaxsegcount;	/* TSO maximum segment count */
 356	u_int	t_tsomaxsegsize;	/* TSO maximum segment size in bytes */
 357	tcp_seq	rcv_nxt;		/* receive next */
 358	tcp_seq	rcv_adv;		/* advertised window */
 359	uint32_t rcv_wnd;		/* receive window */
 360	u_int	t_flags2;		/* More tcpcb flags storage */
 361	int	t_srtt;			/* smoothed round-trip time */
 362	int	t_rttvar;		/* variance in round-trip time */
 363	uint32_t ts_recent;		/* timestamp echo data */
 364	u_char	snd_scale;		/* window scaling for send window */
 365	u_char	rcv_scale;		/* window scaling for recv window */
 366	u_char	snd_limited;		/* segments limited transmitted */
 367	u_char	request_r_scale;	/* pending window scaling */
 368	tcp_seq	last_ack_sent;
 369	u_int	t_rcvtime;		/* inactivity time */
 370	tcp_seq	rcv_up;			/* receive urgent pointer */
 371	int	t_segqlen;		/* segment reassembly queue length */
 372	uint32_t t_segqmbuflen;		/* total reassembly queue byte length */
 373	struct	tsegqe_head t_segq;	/* segment reassembly queue */
 374	uint32_t snd_ssthresh;		/* snd_cwnd size threshold for
 375					 * for slow start exponential to
 376					 * linear switch
 377					 */
 378	tcp_seq	snd_wl1;		/* window update seg seq number */
 379	tcp_seq	snd_wl2;		/* window update seg ack number */
 380
 381	tcp_seq	irs;			/* initial receive sequence number */
 382	tcp_seq	iss;			/* initial send sequence number */
 383	u_int	t_acktime;		/* RACK and BBR incoming new data was acked */
 384	u_int	t_sndtime;		/* time last data was sent */
 385	u_int	ts_recent_age;		/* when last updated */
 386	tcp_seq	snd_recover;		/* for use in NewReno Fast Recovery */
 387	char	t_oobflags;		/* have some */
 388	char	t_iobc;			/* input character */
 389	uint8_t t_nic_ktls_xmit:1,	/* active nic ktls xmit sessions */
 390		t_nic_ktls_xmit_dis:1,	/* disabled nic xmit ktls? */
 391		t_nic_ktls_spare:6;	/* spare nic ktls */
 392	int	t_rxtcur;		/* current retransmit value (ticks) */
 393
 394	int	t_rxtshift;		/* log(2) of rexmt exp. backoff */
 395	u_int	t_rtttime;		/* RTT measurement start time */
 396
 397	tcp_seq	t_rtseq;		/* sequence number being timed */
 398	u_int	t_starttime;		/* time connection was established */
 399	u_int	t_fbyte_in;		/* ticks time first byte queued in */
 400	u_int	t_fbyte_out;		/* ticks time first byte queued out */
 401
 402	u_int	t_pmtud_saved_maxseg;	/* pre-blackhole MSS */
 403	int	t_blackhole_enter;	/* when to enter blackhole detection */
 404	int	t_blackhole_exit;	/* when to exit blackhole detection */
 405	u_int	t_rttmin;		/* minimum rtt allowed */
 406
 407	int	t_softerror;		/* possible error not yet reported */
 408	uint32_t max_sndwnd;		/* largest window peer has offered */
 409	uint32_t snd_cwnd_prev;		/* cwnd prior to retransmit */
 410	uint32_t snd_ssthresh_prev;	/* ssthresh prior to retransmit */
 411	tcp_seq	snd_recover_prev;	/* snd_recover prior to retransmit */
 412	int	t_sndzerowin;		/* zero-window updates sent */
 413	int	snd_numholes;		/* number of holes seen by sender */
 414	u_int	t_badrxtwin;		/* window for retransmit recovery */
 415	TAILQ_HEAD(sackhole_head, sackhole) snd_holes;
 416					/* SACK scoreboard (sorted) */
 417	tcp_seq	snd_fack;		/* last seq number(+1) sack'd by rcv'r*/
 418	struct sackblk sackblks[MAX_SACK_BLKS]; /* seq nos. of sack blocks */
 419	struct sackhint	sackhint;	/* SACK scoreboard hint */
 420	int	t_rttlow;		/* smallest observerved RTT */
 421	int	rfbuf_cnt;		/* recv buffer autoscaling byte count */
 422	struct toedev	*tod;		/* toedev handling this connection */
 423	int	t_sndrexmitpack;	/* retransmit packets sent */
 424	int	t_rcvoopack;		/* out-of-order packets received */
 425	void	*t_toe;			/* TOE pcb pointer */
 426	struct cc_algo	*t_cc;		/* congestion control algorithm */
 427	struct cc_var	t_ccv;		/* congestion control specific vars */
 428	int	t_bytes_acked;		/* # bytes acked during current RTT */
 429	u_int	t_maxunacktime;
 430	u_int	t_keepinit;		/* time to establish connection */
 431	u_int	t_keepidle;		/* time before keepalive probes begin */
 432	u_int	t_keepintvl;		/* interval between keepalives */
 433	u_int	t_keepcnt;		/* number of keepalives before close */
 434	int	t_dupacks;		/* consecutive dup acks recd */
 435	int	t_lognum;		/* Number of log entries */
 436	int	t_loglimit;		/* Maximum number of log entries */
 437	uint32_t t_rcep;		/* Number of received CE marked pkts */
 438	uint32_t t_scep;		/* Synced number of delivered CE pkts */
 439	int64_t	t_pacing_rate;		/* bytes / sec, -1 => unlimited */
 440	struct tcp_log_stailq t_logs;	/* Log buffer */
 441	struct tcp_log_id_node *t_lin;
 442	struct tcp_log_id_bucket *t_lib;
 443	const char *t_output_caller;	/* Function that called tcp_output */
 444	struct statsblob *t_stats;	/* Per-connection stats */
 445	/* Should these be a pointer to the arrays or an array? */
 446	uint32_t t_logsn;		/* Log "serial number" */
 447	uint32_t gput_ts;		/* Time goodput measurement started */
 448	tcp_seq gput_seq;		/* Outbound measurement seq */
 449	tcp_seq gput_ack;		/* Inbound measurement ack */
 450	int32_t t_stats_gput_prev;	/* XXXLAS: Prev gput measurement */
 451	uint32_t t_maxpeakrate;		/* max peak rate set by user, bytes/s */
 452	uint32_t t_sndtlppack;		/* tail loss probe packets sent */
 453	uint64_t t_sndtlpbyte;		/* total tail loss probe bytes sent */
 454	uint64_t t_sndbytes;		/* total bytes sent */
 455	uint64_t t_snd_rxt_bytes;	/* total bytes retransmitted */
 456	uint32_t t_dsack_bytes;		/* dsack bytes received */
 457	uint32_t t_dsack_tlp_bytes;	/* dsack bytes received for TLPs sent */
 458	uint32_t t_dsack_pack;		/* dsack packets we have eceived */
 459	uint8_t t_tmr_granularity;	/* Granularity of all timers srtt etc */
 460	uint8_t t_rttupdated;		/* number of times rtt sampled */
 461	/* TCP Fast Open */
 462	uint8_t t_tfo_client_cookie_len; /* TFO client cookie length */
 463	uint32_t t_end_info_status;	/* Status flag of end info */
 464	sbintime_t t_challenge_ack_end;	/* End of the challenge ack epoch */
 465	uint32_t t_challenge_ack_cnt;	/* Number of challenge ACKs sent in
 466					 * current epoch
 467					 */
 468
 469	unsigned int *t_tfo_pending;	/* TFO server pending counter */
 470	union {
 471		uint8_t client[TCP_FASTOPEN_MAX_COOKIE_LEN];
 472		uint64_t server;
 473	} t_tfo_cookie;			/* TCP Fast Open cookie to send */
 474	union {
 475		uint8_t t_end_info_bytes[TCP_END_BYTE_INFO];
 476		uint64_t t_end_info;
 477	};
 478	struct osd	t_osd;		/* storage for Khelp module data */
 479	uint8_t _t_logpoint;	/* Used when a BB log points is enabled */
 480	/*
 481	 * Keep all #ifdef'ed components at the end of the structure!
 482	 * This is important to minimize problems when compiling modules
 483	 * using this structure from within the modules' directory.
 484	 */
 485#ifdef TCP_REQUEST_TRK
 486	/* Response tracking addons. */
 487	uint8_t t_tcpreq_req;	/* Request count */
 488	uint8_t t_tcpreq_open;	/* Number of open range requests */
 489	uint8_t t_tcpreq_closed;	/* Number of closed range requests */
 490	uint32_t tcp_hybrid_start;	/* Num of times we started hybrid pacing */
 491	uint32_t tcp_hybrid_stop;	/* Num of times we stopped hybrid pacing */
 492	uint32_t tcp_hybrid_error;	/* Num of times we failed to start hybrid pacing */
 493	struct tcp_sendfile_track t_tcpreq_info[MAX_TCP_TRK_REQ];
 494#endif
 495#ifdef TCP_ACCOUNTING
 496	uint64_t tcp_cnt_counters[TCP_NUM_CNT_COUNTERS];
 497	uint64_t tcp_proc_time[TCP_NUM_CNT_COUNTERS];
 498#endif
 499#ifdef TCPPCAP
 500	struct mbufq t_inpkts;		/* List of saved input packets. */
 501	struct mbufq t_outpkts;		/* List of saved output packets. */
 502#endif
 503};
 504#endif	/* _KERNEL || _WANT_TCPCB */
 505
 506#ifdef _KERNEL
 507struct tcptemp {
 508	u_char	tt_ipgen[40]; /* the size must be of max ip header, now IPv6 */
 509	struct	tcphdr tt_t;
 510};
 511
 512/* SACK scoreboard update status */
 513typedef enum {
 514	SACK_NOCHANGE = 0,
 515	SACK_CHANGE,
 516	SACK_NEWLOSS
 517} sackstatus_t;
 518
 519/* Enable TCP/UDP tunneling port */
 520#define TCP_TUNNELING_PORT_MIN		0
 521#define TCP_TUNNELING_PORT_MAX		65535
 522#define TCP_TUNNELING_PORT_DEFAULT	0
 523
 524/* Enable TCP/UDP tunneling port */
 525#define TCP_TUNNELING_OVERHEAD_MIN	sizeof(struct udphdr)
 526#define TCP_TUNNELING_OVERHEAD_MAX	1024
 527#define TCP_TUNNELING_OVERHEAD_DEFAULT	TCP_TUNNELING_OVERHEAD_MIN
 528
 529/* Minimum map entries limit value, if set */
 530#define TCP_MIN_MAP_ENTRIES_LIMIT	128
 531
 532/*
 533 * TODO: We yet need to brave plowing in
 534 * to tcp_input() and the pru_usrreq() block.
 535 * Right now these go to the old standards which
 536 * are somewhat ok, but in the long term may
 537 * need to be changed. If we do tackle tcp_input()
 538 * then we need to get rid of the tcp_do_segment()
 539 * function below.
 540 */
 541/* Flags for tcp functions */
 542#define	TCP_FUNC_BEING_REMOVED	0x01   	/* Can no longer be referenced */
 543#define	TCP_FUNC_OUTPUT_CANDROP	0x02   	/* tfb_tcp_output may ask tcp_drop */
 544#define	TCP_FUNC_DEFAULT_OK	0x04   	/* Can be used as default */
 545
 546/**
 547 * If defining the optional tcp_timers, in the
 548 * tfb_tcp_timer_stop call you must use the
 549 * callout_async_drain() function with the
 550 * tcp_timer_discard callback. You should check
 551 * the return of callout_async_drain() and if 0
 552 * increment tt_draincnt. Since the timer sub-system
 553 * does not know your callbacks you must provide a
 554 * stop_all function that loops through and calls
 555 * tcp_timer_stop() with each of your defined timers.
 556 *
 557 * tfb_tcp_handoff_ok is a mandatory function allowing
 558 * to query a stack, if it can take over a tcpcb.
 559 * You return 0 to say you can take over and run your stack,
 560 * you return non-zero (an error number) to say no you can't.
 561 *
 562 * tfb_tcp_fb_init is used to allow the new stack to
 563 * setup its control block. Among the things it must
 564 * do is:
 565 * a) Make sure that the inp_flags2 is setup correctly
 566 *    for LRO. There are two flags that the previous
 567 *    stack may have set INP_MBUF_ACKCMP and 
 568 *    INP_SUPPORTS_MBUFQ. If the new stack does not
 569 *    support these it *should* clear the flags.
 570 * b) Make sure that the timers are in the proper
 571 *    granularity that the stack wants. The stack
 572 *    should check the t_tmr_granularity field. Currently
 573 *    there are two values that it may hold 
 574 *    TCP_TMR_GRANULARITY_TICKS and TCP_TMR_GRANULARITY_USEC.
 575 *    Use the functions tcp_timer_convert(tp, granularity);
 576 *    to move the timers to the correct format for your stack.
 577 *
 578 * The new stack may also optionally query the tfb_chg_query
 579 * function if the old stack has one. The new stack may ask
 580 * for one of three entries and can also state to the old
 581 * stack its support for the INP_MBUF_ACKCMP and 
 582 * INP_SUPPORTS_MBUFQ. This is important since if there are
 583 * queued ack's without that statement the old stack will
 584 * be forced to discard the queued acks. The requests that
 585 * can be made for information by the new stacks are:
 586 *
 587 * Note also that the tfb_tcp_fb_init() when called can
 588 * determine if a query is needed by looking at the 
 589 * value passed in the ptr. The ptr is designed to be
 590 * set in with any allocated memory, but the address
 591 * of the condtion (ptr == &tp->t_fb_ptr) will be
 592 * true if this is not a stack switch but the initial
 593 * setup of a tcb (which means no query would be needed).
 594 * If, however, the value is not t_fb_ptr, then the caller
 595 * is in the middle of a stack switch and is the new stack.
 596 * A query would be appropriate (if the new stack support 
 597 * the query mechanism).
 598 *
 599 * TCP_QUERY_SENDMAP - Query of outstanding data.
 600 * TCP_QUERY_TIMERS_UP	- Query about running timers.
 601 * TCP_SUPPORTED_LRO - Declaration in req_param of 
 602 *                     the inp_flags2 supported by 
 603 *                     the new stack.
 604 * TCP_QUERY_RACK_TIMES	- Enquire about various timestamps
 605 *                        and states the old stack may be in.
 606 * 
 607 * tfb_tcp_fb_fini is changed to add a flag to tell
 608 * the old stack if the tcb is being destroyed or
 609 * not. A one in the flag means the TCB is being
 610 * destroyed, a zero indicates its transitioning to
 611 * another stack (via socket option). The
 612 * tfb_tcp_fb_fini() function itself should not change timers
 613 * or inp_flags2 (the tfb_tcp_fb_init() must do that). However
 614 * if the old stack supports the LRO mbuf queuing, and the new
 615 * stack does not communicate via chg messages that it too does,
 616 * it must assume it does not and free any queued mbufs.
 617 *
 618 */
 619struct tcp_function_block {
 620	char tfb_tcp_block_name[TCP_FUNCTION_NAME_LEN_MAX];
 621	int	(*tfb_tcp_output)(struct tcpcb *);
 622	void	(*tfb_tcp_do_segment)(struct tcpcb *, struct mbuf *,
 623		    struct tcphdr *, int, int, uint8_t);
 624	int      (*tfb_do_segment_nounlock)(struct tcpcb *, struct mbuf *,
 625		    struct tcphdr *, int, int, uint8_t, int, struct timeval *);
 626	int     (*tfb_do_queued_segments)(struct tcpcb *, int);
 627	int     (*tfb_tcp_ctloutput)(struct tcpcb *, struct sockopt *);
 628	/* Optional memory allocation/free routine */
 629	int	(*tfb_tcp_fb_init)(struct tcpcb *, void **);
 630	void	(*tfb_tcp_fb_fini)(struct tcpcb *, int);
 631	/* Optional timers, must define all if you define one */
 632	int	(*tfb_tcp_timer_stop_all)(struct tcpcb *);
 633	void	(*tfb_tcp_rexmit_tmr)(struct tcpcb *);
 634	int	(*tfb_tcp_handoff_ok)(struct tcpcb *);
 635	void	(*tfb_tcp_mtu_chg)(struct tcpcb *tp);
 636	int	(*tfb_pru_options)(struct tcpcb *, int);
 637	void	(*tfb_hwtls_change)(struct tcpcb *, int);
 638	int	(*tfb_chg_query)(struct tcpcb *, struct tcp_query_resp *);
 639	void	(*tfb_switch_failed)(struct tcpcb *);
 640	bool	(*tfb_early_wake_check)(struct tcpcb *);
 641	int     (*tfb_compute_pipe)(struct tcpcb *tp);
 642	volatile uint32_t tfb_refcnt;
 643	uint32_t  tfb_flags;
 644	uint8_t	tfb_id;
 645};
 646
 647/* Maximum number of names each TCP function block can be registered with. */
 648#define	TCP_FUNCTION_NAME_NUM_MAX	8
 649
 650struct tcp_function {
 651	TAILQ_ENTRY(tcp_function)	tf_next;
 652	char				tf_name[TCP_FUNCTION_NAME_LEN_MAX];
 653	struct tcp_function_block	*tf_fb;
 654};
 655
 656TAILQ_HEAD(tcp_funchead, tcp_function);
 657
 658struct tcpcb * tcp_drop(struct tcpcb *, int);
 659
 660#ifdef _NETINET_IN_PCB_H_
 661#define	intotcpcb(inp)	__containerof((inp), struct tcpcb, t_inpcb)
 662#define	sototcpcb(so)	intotcpcb(sotoinpcb(so))
 663#define	tptoinpcb(tp)	(&(tp)->t_inpcb)
 664#define	tptosocket(tp)	(tp)->t_inpcb.inp_socket
 665
 666/*
 667 * tcp_output()
 668 * Handles tcp_drop request from advanced stacks and reports that inpcb is
 669 * gone with negative return code.
 670 * Drop in replacement for the default stack.
 671 */
 672static inline int
 673tcp_output(struct tcpcb *tp)
 674{
 675	struct inpcb *inp = tptoinpcb(tp);
 676	int rv;
 677
 678	INP_WLOCK_ASSERT(inp);
 679
 680	rv = tp->t_fb->tfb_tcp_output(tp);
 681	if (rv < 0) {
 682		KASSERT(tp->t_fb->tfb_flags & TCP_FUNC_OUTPUT_CANDROP,
 683		    ("TCP stack %s requested tcp_drop(%p)",
 684		    tp->t_fb->tfb_tcp_block_name, tp));
 685		tp = tcp_drop(tp, -rv);
 686		if (tp)
 687			INP_WUNLOCK(inp);
 688	}
 689
 690	return (rv);
 691}
 692
 693/*
 694 * tcp_output_unlock()
 695 * Always returns unlocked, handles drop request from advanced stacks.
 696 * Always returns positive error code.
 697 */
 698static inline int
 699tcp_output_unlock(struct tcpcb *tp)
 700{
 701	struct inpcb *inp = tptoinpcb(tp);
 702	int rv;
 703
 704	INP_WLOCK_ASSERT(inp);
 705
 706	rv = tp->t_fb->tfb_tcp_output(tp);
 707	if (rv < 0) {
 708		KASSERT(tp->t_fb->tfb_flags & TCP_FUNC_OUTPUT_CANDROP,
 709		    ("TCP stack %s requested tcp_drop(%p)",
 710		    tp->t_fb->tfb_tcp_block_name, tp));
 711		rv = -rv;
 712		tp = tcp_drop(tp, rv);
 713		if (tp)
 714			INP_WUNLOCK(inp);
 715	} else
 716		INP_WUNLOCK(inp);
 717
 718	return (rv);
 719}
 720
 721/*
 722 * tcp_output_nodrop()
 723 * Always returns locked.  It is caller's responsibility to run tcp_drop()!
 724 * Useful in syscall implementations, when we want to perform some logging
 725 * and/or tracing with tcpcb before calling tcp_drop().  To be used with
 726 * tcp_unlock_or_drop() later.
 727 *
 728 * XXXGL: maybe don't allow stacks to return a drop request at certain
 729 * TCP states? Why would it do in connect(2)? In recv(2)?
 730 */
 731static inline int
 732tcp_output_nodrop(struct tcpcb *tp)
 733{
 734	int rv;
 735
 736	INP_WLOCK_ASSERT(tptoinpcb(tp));
 737
 738	rv = tp->t_fb->tfb_tcp_output(tp);
 739	KASSERT(rv >= 0 || tp->t_fb->tfb_flags & TCP_FUNC_OUTPUT_CANDROP,
 740	    ("TCP stack %s requested tcp_drop(%p)",
 741	    tp->t_fb->tfb_tcp_block_name, tp));
 742	return (rv);
 743}
 744
 745/*
 746 * tcp_unlock_or_drop()
 747 * Handle return code from tfb_tcp_output() after we have logged/traced,
 748 * to be used with tcp_output_nodrop().
 749 */
 750static inline int
 751tcp_unlock_or_drop(struct tcpcb *tp, int tcp_output_retval)
 752{
 753	struct inpcb *inp = tptoinpcb(tp);
 754
 755	INP_WLOCK_ASSERT(inp);
 756
 757        if (tcp_output_retval < 0) {
 758                tcp_output_retval = -tcp_output_retval;
 759                if (tcp_drop(tp, tcp_output_retval) != NULL)
 760                        INP_WUNLOCK(inp);
 761        } else
 762		INP_WUNLOCK(inp);
 763
 764	return (tcp_output_retval);
 765}
 766#endif	/* _NETINET_IN_PCB_H_ */
 767
 768static int inline
 769tcp_packets_this_ack(struct tcpcb *tp, tcp_seq ack)
 770{
 771	return ((ack - tp->snd_una) / tp->t_maxseg +
 772		((((ack - tp->snd_una) % tp->t_maxseg) != 0) ? 1 : 0));
 773}
 774#endif	/* _KERNEL */
 775
 776/*
 777 * Flags and utility macros for the t_flags field.
 778 */
 779#define	TF_ACKNOW	0x00000001	/* ack peer immediately */
 780#define	TF_DELACK	0x00000002	/* ack, but try to delay it */
 781#define	TF_NODELAY	0x00000004	/* don't delay packets to coalesce */
 782#define	TF_NOOPT	0x00000008	/* don't use tcp options */
 783#define	TF_SENTFIN	0x00000010	/* have sent FIN */
 784#define	TF_REQ_SCALE	0x00000020	/* have/will request window scaling */
 785#define	TF_RCVD_SCALE	0x00000040	/* other side has requested scaling */
 786#define	TF_REQ_TSTMP	0x00000080	/* have/will request timestamps */
 787#define	TF_RCVD_TSTMP	0x00000100	/* a timestamp was received in SYN */
 788#define	TF_SACK_PERMIT	0x00000200	/* other side said I could SACK */
 789#define	TF_NEEDSYN	0x00000400	/* send SYN (implicit state) */
 790#define	TF_NEEDFIN	0x00000800	/* send FIN (implicit state) */
 791#define	TF_NOPUSH	0x00001000	/* don't push */
 792#define	TF_PREVVALID	0x00002000	/* saved values for bad rxmit valid
 793					 * Note: accessing and restoring from
 794					 * these may only be done in the 1st
 795					 * RTO recovery round (t_rxtshift == 1)
 796					 */
 797#define	TF_WAKESOR	0x00004000	/* wake up receive socket */
 798#define	TF_GPUTINPROG	0x00008000	/* Goodput measurement in progress */
 799#define	TF_MORETOCOME	0x00010000	/* More data to be appended to sock */
 800#define	TF_SONOTCONN	0x00020000	/* needs soisconnected() on ESTAB */
 801#define	TF_LASTIDLE	0x00040000	/* connection was previously idle */
 802#define	TF_RXWIN0SENT	0x00080000	/* sent a receiver win 0 in response */
 803#define	TF_FASTRECOVERY	0x00100000	/* in NewReno Fast Recovery */
 804#define	TF_WASFRECOVERY	0x00200000	/* was in NewReno Fast Recovery */
 805#define	TF_SIGNATURE	0x00400000	/* require MD5 digests (RFC2385) */
 806#define	TF_FORCEDATA	0x00800000	/* force out a byte */
 807#define	TF_TSO		0x01000000	/* TSO enabled on this connection */
 808#define	TF_TOE		0x02000000	/* this connection is offloaded */
 809#define	TF_CLOSED	0x04000000	/* close(2) called on socket */
 810#define	TF_UNUSED1	0x08000000	/* unused */
 811#define	TF_LRD		0x10000000	/* Lost Retransmission Detection */
 812#define	TF_CONGRECOVERY	0x20000000	/* congestion recovery mode */
 813#define	TF_WASCRECOVERY	0x40000000	/* was in congestion recovery */
 814#define	TF_FASTOPEN	0x80000000	/* TCP Fast Open indication */
 815
 816#define	IN_FASTRECOVERY(t_flags)	(t_flags & TF_FASTRECOVERY)
 817#define	ENTER_FASTRECOVERY(t_flags)	t_flags |= TF_FASTRECOVERY
 818#define	EXIT_FASTRECOVERY(t_flags)	t_flags &= ~TF_FASTRECOVERY
 819
 820#define	IN_CONGRECOVERY(t_flags)	(t_flags & TF_CONGRECOVERY)
 821#define	ENTER_CONGRECOVERY(t_flags)	t_flags |= TF_CONGRECOVERY
 822#define	EXIT_CONGRECOVERY(t_flags)	t_flags &= ~TF_CONGRECOVERY
 823
 824#define	IN_RECOVERY(t_flags) (t_flags & (TF_CONGRECOVERY | TF_FASTRECOVERY))
 825#define	ENTER_RECOVERY(t_flags) t_flags |= (TF_CONGRECOVERY | TF_FASTRECOVERY)
 826#define	EXIT_RECOVERY(t_flags) t_flags &= ~(TF_CONGRECOVERY | TF_FASTRECOVERY)
 827
 828#if defined(_KERNEL)
 829#if !defined(TCP_RFC7413)
 830#define	IS_FASTOPEN(t_flags)		(false)
 831#else
 832#define	IS_FASTOPEN(t_flags)		(t_flags & TF_FASTOPEN)
 833#endif
 834#endif
 835
 836#define	BYTES_THIS_ACK(tp, th)	(th->th_ack - tp->snd_una)
 837
 838/*
 839 * Flags for the t_oobflags field.
 840 */
 841#define	TCPOOB_HAVEDATA	0x01
 842#define	TCPOOB_HADDATA	0x02
 843
 844/*
 845 * Flags for the extended TCP flags field, t_flags2
 846 */
 847#define	TF2_PLPMTU_BLACKHOLE	0x00000001 /* Possible PLPMTUD Black Hole. */
 848#define	TF2_PLPMTU_PMTUD	0x00000002 /* Allowed to attempt PLPMTUD. */
 849#define	TF2_PLPMTU_MAXSEGSNT	0x00000004 /* Last seg sent was full seg. */
 850#define	TF2_LOG_AUTO		0x00000008 /* Session is auto-logging. */
 851#define	TF2_DROP_AF_DATA	0x00000010 /* Drop after all data ack'd */
 852#define	TF2_ECN_PERMIT		0x00000020 /* connection ECN-ready */
 853#define	TF2_ECN_SND_CWR		0x00000040 /* ECN CWR in queue */
 854#define	TF2_ECN_SND_ECE		0x00000080 /* ECN ECE in queue */
 855#define	TF2_ACE_PERMIT		0x00000100 /* Accurate ECN mode */
 856#define	TF2_HPTS_CPU_SET	0x00000200 /* t_hpts_cpu is not random */
 857#define	TF2_FBYTES_COMPLETE	0x00000400 /* We have first bytes in and out */
 858#define	TF2_ECN_USE_ECT1	0x00000800 /* Use ECT(1) marking on session */
 859#define TF2_TCP_ACCOUNTING	0x00001000 /* Do TCP accounting */
 860#define	TF2_HPTS_CALLS		0x00002000 /* tcp_output() called via HPTS */
 861#define	TF2_MBUF_L_ACKS		0x00004000 /* large mbufs for ack compression */
 862#define	TF2_MBUF_ACKCMP		0x00008000 /* mbuf ack compression ok */
 863#define	TF2_SUPPORTS_MBUFQ	0x00010000 /* Supports the mbuf queue method */
 864#define	TF2_MBUF_QUEUE_READY	0x00020000 /* Inputs can be queued */
 865#define	TF2_DONT_SACK_QUEUE	0x00040000 /* Don't wake on sack */
 866#define	TF2_CANNOT_DO_ECN	0x00080000 /* The stack does not do ECN */
 867#define	TF2_NO_ISS_CHECK	0x00400000 /* Don't check SEG.ACK against ISS */
 868
 869/*
 870 * Structure to hold TCP options that are only used during segment
 871 * processing (in tcp_input), but not held in the tcpcb.
 872 * It's basically used to reduce the number of parameters
 873 * to tcp_dooptions and tcp_addoptions.
 874 * The binary order of the to_flags is relevant for packing of the
 875 * options in tcp_addoptions.
 876 */
 877struct tcpopt {
 878	u_int32_t	to_flags;	/* which options are present */
 879#define	TOF_MSS		0x0001		/* maximum segment size */
 880#define	TOF_SCALE	0x0002		/* window scaling */
 881#define	TOF_SACKPERM	0x0004		/* SACK permitted */
 882#define	TOF_TS		0x0010		/* timestamp */
 883#define	TOF_SIGNATURE	0x0040		/* TCP-MD5 signature option (RFC2385) */
 884#define	TOF_SACK	0x0080		/* Peer sent SACK option */
 885#define	TOF_FASTOPEN	0x0100		/* TCP Fast Open (TFO) cookie */
 886#define	TOF_MAXOPT	0x0200
 887	u_int32_t	to_tsval;	/* new timestamp */
 888	u_int32_t	to_tsecr;	/* reflected timestamp */
 889	u_char		*to_sacks;	/* pointer to the first SACK blocks */
 890	u_char		*to_signature;	/* pointer to the TCP-MD5 signature */
 891	u_int8_t	*to_tfo_cookie; /* pointer to the TFO cookie */
 892	u_int16_t	to_mss;		/* maximum segment size */
 893	u_int8_t	to_wscale;	/* window scaling */
 894	u_int8_t	to_nsacks;	/* number of SACK blocks */
 895	u_int8_t	to_tfo_len;	/* TFO cookie length */
 896	u_int32_t	to_spare;	/* UTO */
 897};
 898
 899/*
 900 * Flags for tcp_dooptions.
 901 */
 902#define	TO_SYN		0x01		/* parse SYN-only options */
 903
 904struct hc_metrics_lite {	/* must stay in sync with hc_metrics */
 905	uint32_t	rmx_mtu;	/* MTU for this path */
 906	uint32_t	rmx_ssthresh;	/* outbound gateway buffer limit */
 907	uint32_t	rmx_rtt;	/* estimated round trip time */
 908	uint32_t	rmx_rttvar;	/* estimated rtt variance */
 909	uint32_t	rmx_cwnd;	/* congestion window */
 910	uint32_t	rmx_sendpipe;   /* outbound delay-bandwidth product */
 911	uint32_t	rmx_recvpipe;   /* inbound delay-bandwidth product */
 912};
 913
 914/*
 915 * Used by tcp_maxmtu() to communicate interface specific features
 916 * and limits at the time of connection setup.
 917 */
 918struct tcp_ifcap {
 919	int	ifcap;
 920	u_int	tsomax;
 921	u_int	tsomaxsegcount;
 922	u_int	tsomaxsegsize;
 923};
 924
 925#ifndef _NETINET_IN_PCB_H_
 926struct in_conninfo;
 927#endif /* _NETINET_IN_PCB_H_ */
 928
 929/*
 930 * The smoothed round-trip time and estimated variance
 931 * are stored as fixed point numbers scaled by the values below.
 932 * For convenience, these scales are also used in smoothing the average
 933 * (smoothed = (1/scale)sample + ((scale-1)/scale)smoothed).
 934 * With these scales, srtt has 3 bits to the right of the binary point,
 935 * and thus an "ALPHA" of 0.875.  rttvar has 2 bits to the right of the
 936 * binary point, and is smoothed with an ALPHA of 0.75.
 937 */
 938#define	TCP_RTT_SCALE		32	/* multiplier for srtt; 5 bits frac. */
 939#define	TCP_RTT_SHIFT		5	/* shift for srtt; 5 bits frac. */
 940#define	TCP_RTTVAR_SCALE	16	/* multiplier for rttvar; 4 bits */
 941#define	TCP_RTTVAR_SHIFT	4	/* shift for rttvar; 4 bits */
 942#define	TCP_DELTA_SHIFT		2	/* see tcp_input.c */
 943
 944/*
 945 * The initial retransmission should happen at rtt + 4 * rttvar.
 946 * Because of the way we do the smoothing, srtt and rttvar
 947 * will each average +1/2 tick of bias.  When we compute
 948 * the retransmit timer, we want 1/2 tick of rounding and
 949 * 1 extra tick because of +-1/2 tick uncertainty in the
 950 * firing of the timer.  The bias will give us exactly the
 951 * 1.5 tick we need.  But, because the bias is
 952 * statistical, we have to test that we don't drop below
 953 * the minimum feasible timer (which is 2 ticks).
 954 * This version of the macro adapted from a paper by Lawrence
 955 * Brakmo and Larry Peterson which outlines a problem caused
 956 * by insufficient precision in the original implementation,
 957 * which results in inappropriately large RTO values for very
 958 * fast networks.
 959 */
 960#define	TCP_REXMTVAL(tp) \
 961	max((tp)->t_rttmin, (((tp)->t_srtt >> (TCP_RTT_SHIFT - TCP_DELTA_SHIFT))  \
 962	  + (tp)->t_rttvar) >> TCP_DELTA_SHIFT)
 963
 964/*
 965 * TCP statistics.
 966 * Many of these should be kept per connection,
 967 * but that's inconvenient at the moment.
 968 */
 969struct	tcpstat {
 970	uint64_t tcps_connattempt;	/* connections initiated */
 971	uint64_t tcps_accepts;		/* connections accepted */
 972	uint64_t tcps_connects;		/* connections established */
 973	uint64_t tcps_drops;		/* connections dropped */
 974	uint64_t tcps_conndrops;	/* embryonic connections dropped */
 975	uint64_t tcps_minmssdrops;	/* average minmss too low drops */
 976	uint64_t tcps_closed;		/* conn. closed (includes drops) */
 977	uint64_t tcps_segstimed;	/* segs where we tried to get rtt */
 978	uint64_t tcps_rttupdated;	/* times we succeeded */
 979	uint64_t tcps_delack;		/* delayed acks sent */
 980	uint64_t tcps_timeoutdrop;	/* conn. dropped in rxmt timeout */
 981	uint64_t tcps_rexmttimeo;	/* retransmit timeouts */
 982	uint64_t tcps_persisttimeo;	/* persist timeouts */
 983	uint64_t tcps_keeptimeo;	/* keepalive timeouts */
 984	uint64_t tcps_keepprobe;	/* keepalive probes sent */
 985	uint64_t tcps_keepdrops;	/* connections dropped in keepalive */
 986	uint64_t tcps_progdrops;	/* drops due to no progress */
 987
 988	uint64_t tcps_sndtotal;		/* total packets sent */
 989	uint64_t tcps_sndpack;		/* data packets sent */
 990	uint64_t tcps_sndbyte;		/* data bytes sent */
 991	uint64_t tcps_sndrexmitpack;	/* data packets retransmitted */
 992	uint64_t tcps_sndrexmitbyte;	/* data bytes retransmitted */
 993	uint64_t tcps_sndrexmitbad;	/* unnecessary packet retransmissions */
 994	uint64_t tcps_sndacks;		/* ack-only packets sent */
 995	uint64_t tcps_sndprobe;		/* window probes sent */
 996	uint64_t tcps_sndurg;		/* packets sent with URG only */
 997	uint64_t tcps_sndwinup;		/* window update-only packets sent */
 998	uint64_t tcps_sndctrl;		/* control (SYN|FIN|RST) packets sent */
 999
1000	uint64_t tcps_rcvtotal;		/* total packets received */
1001	uint64_t tcps_rcvpack;		/* packets received in sequence */
1002	uint64_t tcps_rcvbyte;		/* bytes received in sequence */
1003	uint64_t tcps_rcvbadsum;	/* packets received with ccksum errs */
1004	uint64_t tcps_rcvbadoff;	/* packets received with bad offset */
1005	uint64_t tcps_rcvreassfull;	/* packets dropped for no reass space */
1006	uint64_t tcps_rcvshort;		/* packets received too short */
1007	uint64_t tcps_rcvduppack;	/* duplicate-only packets received */
1008	uint64_t tcps_rcvdupbyte;	/* duplicate-only bytes received */
1009	uint64_t tcps_rcvpartduppack;	/* packets with some duplicate data */
1010	uint64_t tcps_rcvpartdupbyte;	/* dup. bytes in part-dup. packets */
1011	uint64_t tcps_rcvoopack;	/* out-of-order packets received */
1012	uint64_t tcps_rcvoobyte;	/* out-of-order bytes received */
1013	uint64_t tcps_rcvpackafterwin;	/* packets with data after window */
1014	uint64_t tcps_rcvbyteafterwin;	/* bytes rcvd after window */
1015	uint64_t tcps_rcvafterclose;	/* packets rcvd after "close" */
1016	uint64_t tcps_rcvwinprobe;	/* rcvd window probe packets */
1017	uint64_t tcps_rcvdupack;	/* rcvd duplicate acks */
1018	uint64_t tcps_rcvacktoomuch;	/* rcvd acks for unsent data */
1019	uint64_t tcps_rcvackpack;	/* rcvd ack packets */
1020	uint64_t tcps_rcvackbyte;	/* bytes acked by rcvd acks */
1021	uint64_t tcps_rcvwinupd;	/* rcvd window update packets */
1022	uint64_t tcps_pawsdrop;		/* segments dropped due to PAWS */
1023	uint64_t tcps_predack;		/* times hdr predict ok for acks */
1024	uint64_t tcps_preddat;		/* times hdr predict ok for data pkts */
1025	uint64_t tcps_pcbcachemiss;
1026	uint64_t tcps_cachedrtt;	/* times cached RTT in route updated */
1027	uint64_t tcps_cachedrttvar;	/* times cached rttvar updated */
1028	uint64_t tcps_cachedssthresh;	/* times cached ssthresh updated */
1029	uint64_t tcps_usedrtt;		/* times RTT initialized from route */
1030	uint64_t tcps_usedrttvar;	/* times RTTVAR initialized from rt */
1031	uint64_t tcps_usedssthresh;	/* times ssthresh initialized from rt*/
1032	uint64_t tcps_persistdrop;	/* timeout in persist state */
1033	uint64_t tcps_badsyn;		/* bogus SYN, e.g. premature ACK */
1034	uint64_t tcps_mturesent;	/* resends due to MTU discovery */
1035	uint64_t tcps_listendrop;	/* listen queue overflows */
1036	uint64_t tcps_badrst;		/* ignored RSTs in the window */
1037
1038	uint64_t tcps_sc_added;		/* entry added to syncache */
1039	uint64_t tcps_sc_retransmitted;	/* syncache entry was retransmitted */
1040	uint64_t tcps_sc_dupsyn;	/* duplicate SYN packet */
1041	uint64_t tcps_sc_dropped;	/* could not reply to packet */
1042	uint64_t tcps_sc_completed;	/* successful extraction of entry */
1043	uint64_t tcps_sc_bucketoverflow;/* syncache per-bucket limit hit */
1044	uint64_t tcps_sc_cacheoverflow;	/* syncache cache limit hit */
1045	uint64_t tcps_sc_reset;		/* RST removed entry from syncache */
1046	uint64_t tcps_sc_stale;		/* timed out or listen socket gone */
1047	uint64_t tcps_sc_aborted;	/* syncache entry aborted */
1048	uint64_t tcps_sc_badack;	/* removed due to bad ACK */
1049	uint64_t tcps_sc_unreach;	/* ICMP unreachable received */
1050	uint64_t tcps_sc_zonefail;	/* zalloc() failed */
1051	uint64_t tcps_sc_sendcookie;	/* SYN cookie sent */
1052	uint64_t tcps_sc_recvcookie;	/* SYN cookie received */
1053
1054	uint64_t tcps_hc_added;		/* entry added to hostcache */
1055	uint64_t tcps_hc_bucketoverflow;/* hostcache per bucket limit hit */
1056
1057	uint64_t tcps_finwait2_drops;    /* Drop FIN_WAIT_2 connection after time limit */
1058
1059	/* SACK related stats */
1060	uint64_t tcps_sack_recovery_episode; /* SACK recovery episodes */
1061	uint64_t tcps_sack_rexmits;	    /* SACK rexmit segments   */
1062	uint64_t tcps_sack_rexmit_bytes;    /* SACK rexmit bytes      */
1063	uint64_t tcps_sack_rcv_blocks;	    /* SACK blocks (options) received */
1064	uint64_t tcps_sack_send_blocks;	    /* SACK blocks (options) sent     */
1065	uint64_t tcps_sack_lostrexmt;	    /* SACK lost retransmission recovered */
1066	uint64_t tcps_sack_sboverflow;	    /* times scoreboard overflowed */
1067
1068	/* ECN related stats */
1069	uint64_t tcps_ecn_rcvce;		/* ECN Congestion Experienced */
1070	uint64_t tcps_ecn_rcvect0;		/* ECN Capable Transport */
1071	uint64_t tcps_ecn_rcvect1;		/* ECN Capable Transport */
1072	uint64_t tcps_ecn_shs;		/* ECN successful handshakes */
1073	uint64_t tcps_ecn_rcwnd;	/* # times ECN reduced the cwnd */
1074
1075	/* TCP_SIGNATURE related stats */
1076	uint64_t tcps_sig_rcvgoodsig;	/* Total matching signature received */
1077	uint64_t tcps_sig_rcvbadsig;	/* Total bad signature received */
1078	uint64_t tcps_sig_err_buildsig;	/* Failed to make signature */
1079	uint64_t tcps_sig_err_sigopt;	/* No signature expected by socket */
1080	uint64_t tcps_sig_err_nosigopt;	/* No signature provided by segment */
1081
1082	/* Path MTU Discovery Black Hole Detection related stats */
1083	uint64_t tcps_pmtud_blackhole_activated;	 /* Black Hole Count */
1084	uint64_t tcps_pmtud_blackhole_activated_min_mss; /* BH at min MSS Count */
1085	uint64_t tcps_pmtud_blackhole_failed;		 /* Black Hole Failure Count */
1086
1087	uint64_t tcps_tunneled_pkts;	/* Packets encap's in UDP received */
1088	uint64_t tcps_tunneled_errs;	/* Packets that had errors that were UDP encaped */
1089
1090	/* Dsack related stats */
1091	uint64_t tcps_dsack_count;	/* Number of ACKs arriving with DSACKs */
1092	uint64_t tcps_dsack_bytes;	/* Number of bytes DSACK'ed no TLP */
1093	uint64_t tcps_dsack_tlp_bytes;	/* Number of bytes DSACK'ed due to TLPs */
1094
1095	/* TCPS_TIME_WAIT usage stats */
1096	uint64_t tcps_tw_recycles;	/* Times time-wait was recycled. */
1097	uint64_t tcps_tw_resets;	/* Times time-wait sent a reset. */
1098	uint64_t tcps_tw_responds;	/* Times time-wait sent a valid ack. */
1099
1100	/* Accurate ECN Handshake stats */
1101	uint64_t tcps_ace_nect;		/* ACE SYN packet with Non-ECT */
1102	uint64_t tcps_ace_ect1;		/* ACE SYN packet with ECT1 */
1103	uint64_t tcps_ace_ect0;		/* ACE SYN packet with ECT0 */
1104	uint64_t tcps_ace_ce;		/* ACE SYN packet with CE */
1105
1106	/* ECN related stats */
1107	uint64_t tcps_ecn_sndect0;		/* ECN Capable Transport */
1108	uint64_t tcps_ecn_sndect1;		/* ECN Capable Transport */
1109
1110	/*
1111	 * BBR and Rack implement TLP's these values count TLP bytes in
1112	 * two catagories, bytes that were retransmitted and bytes that
1113	 * were newly transmited. Both types can serve as TLP's but they
1114	 * are accounted differently.
1115	 */
1116	uint64_t tcps_tlpresends;	/* number of tlp resends */
1117	uint64_t tcps_tlpresend_bytes;	/* number of bytes resent by tlp */
1118
1119	/* SEG.ACK validation failures */
1120	uint64_t tcps_rcvghostack;	/* received ACK for data never sent */
1121	uint64_t tcps_rcvacktooold;	/* received ACK for data too long ago */
1122
1123	uint64_t _pad[2];		/* 2 TBD placeholder for STABLE */
1124};
1125
1126#define	tcps_rcvmemdrop	tcps_rcvreassfull	/* compat */
1127
1128#ifdef _KERNEL
1129#define	TI_UNLOCKED	1
1130#define	TI_RLOCKED	2
1131#include <sys/counter.h>
1132
1133VNET_PCPUSTAT_DECLARE(struct tcpstat, tcpstat);	/* tcp statistics */
1134/*
1135 * In-kernel consumers can use these accessor macros directly to update
1136 * stats.
1137 */
1138#define	TCPSTAT_ADD(name, val)	\
1139    VNET_PCPUSTAT_ADD(struct tcpstat, tcpstat, name, (val))
1140#define	TCPSTAT_INC(name)	TCPSTAT_ADD(name, 1)
1141
1142/*
1143 * Kernel module consumers must use this accessor macro.
1144 */
1145void	kmod_tcpstat_add(int statnum, int val);
1146#define	KMOD_TCPSTAT_ADD(name, val)					\
1147    kmod_tcpstat_add(offsetof(struct tcpstat, name) / sizeof(uint64_t), val)
1148#define	KMOD_TCPSTAT_INC(name)	KMOD_TCPSTAT_ADD(name, 1)
1149
1150/*
1151 * Running TCP connection count by state.
1152 */
1153VNET_DECLARE(counter_u64_t, tcps_states[TCP_NSTATES]);
1154#define	V_tcps_states	VNET(tcps_states)
1155#define	TCPSTATES_INC(state)	counter_u64_add(V_tcps_states[state], 1)
1156#define	TCPSTATES_DEC(state)	counter_u64_add(V_tcps_states[state], -1)
1157
1158/*
1159 * TCP specific helper hook point identifiers.
1160 */
1161#define	HHOOK_TCP_EST_IN		0
1162#define	HHOOK_TCP_EST_OUT		1
1163#define	HHOOK_TCP_LAST			HHOOK_TCP_EST_OUT
1164
1165struct tcp_hhook_data {
1166	struct tcpcb	*tp;
1167	struct tcphdr	*th;
1168	struct tcpopt	*to;
1169	uint32_t	len;
1170	int		tso;
1171	tcp_seq		curack;
1172};
1173#ifdef TCP_HHOOK
1174void hhook_run_tcp_est_out(struct tcpcb *tp,
1175	struct tcphdr *th, struct tcpopt *to,
1176	uint32_t len, int tso);
1177#endif
1178#endif
1179
1180/*
1181 * TCB structure exported to user-land via sysctl(3).
1182 *
1183 * Fields prefixed with "xt_" are unique to the export structure, and fields
1184 * with "t_" or other prefixes match corresponding fields of 'struct tcpcb'.
1185 *
1186 * Legend:
1187 * (s) - used by userland utilities in src
1188 * (p) - used by utilities in ports
1189 * (3) - is known to be used by third party software not in ports
1190 * (n) - no known usage
1191 *
1192 * Evil hack: declare only if in_pcb.h and sys/socketvar.h have been
1193 * included.  Not all of our clients do.
1194 */
1195#if defined(_NETINET_IN_PCB_H_) && defined(_SYS_SOCKETVAR_H_)
1196struct xtcpcb {
1197	ksize_t	xt_len;		/* length of this structure */
1198	struct xinpcb	xt_inp;
1199	char		xt_stack[TCP_FUNCTION_NAME_LEN_MAX];	/* (s) */
1200	char		xt_logid[TCP_LOG_ID_LEN];	/* (s) */
1201	char		xt_cc[TCP_CA_NAME_MAX];	/* (s) */
1202	int64_t		spare64[6];
1203	int32_t		t_state;		/* (s,p) */
1204	uint32_t	t_flags;		/* (s,p) */
1205	int32_t		t_sndzerowin;		/* (s) */
1206	int32_t		t_sndrexmitpack;	/* (s) */
1207	int32_t		t_rcvoopack;		/* (s) */
1208	int32_t		t_rcvtime;		/* (s) */
1209	int32_t		tt_rexmt;		/* (s) */
1210	int32_t		tt_persist;		/* (s) */
1211	int32_t		tt_keep;		/* (s) */
1212	int32_t		tt_2msl;		/* (s) */
1213	int32_t		tt_delack;		/* (s) */
1214	int32_t		t_logstate;		/* (3) */
1215	uint32_t	t_snd_cwnd;		/* (s) */
1216	uint32_t	t_snd_ssthresh;		/* (s) */
1217	uint32_t	t_maxseg;		/* (s) */
1218	uint32_t	t_rcv_wnd;		/* (s) */
1219	uint32_t	t_snd_wnd;		/* (s) */
1220	uint32_t	xt_ecn;			/* (s) */
1221	uint32_t	t_dsack_bytes;		/* (n) */
1222	uint32_t	t_dsack_tlp_bytes;	/* (n) */
1223	uint32_t	t_dsack_pack;		/* (n) */
1224	uint16_t	xt_encaps_port;		/* (s) */
1225	int16_t		spare16;
1226	int32_t		spare32[22];
1227} __aligned(8);
1228
1229#ifdef _KERNEL
1230void	tcp_inptoxtp(const struct inpcb *, struct xtcpcb *);
1231#endif
1232#endif
1233
1234/*
1235 * TCP function information (name-to-id mapping, aliases, and refcnt)
1236 * exported to user-land via sysctl(3).
1237 */
1238struct tcp_function_info {
1239	uint32_t	tfi_refcnt;
1240	uint8_t		tfi_id;
1241	char		tfi_name[TCP_FUNCTION_NAME_LEN_MAX];
1242	char		tfi_alias[TCP_FUNCTION_NAME_LEN_MAX];
1243};
1244
1245/*
1246 * Identifiers for TCP sysctl nodes
1247 */
1248#define	TCPCTL_DO_RFC1323	1	/* use RFC-1323 extensions */
1249#define	TCPCTL_MSSDFLT		3	/* MSS default */
1250#define TCPCTL_STATS		4	/* statistics */
1251#define	TCPCTL_RTTDFLT		5	/* default RTT estimate */
1252#define	TCPCTL_KEEPIDLE		6	/* keepalive idle timer */
1253#define	TCPCTL_KEEPINTVL	7	/* interval to send keepalives */
1254#define	TCPCTL_SENDSPACE	8	/* send buffer space */
1255#define	TCPCTL_RECVSPACE	9	/* receive buffer space */
1256#define	TCPCTL_KEEPINIT		10	/* timeout for establishing syn */
1257#define	TCPCTL_PCBLIST		11	/* list of all outstanding PCBs */
1258#define	TCPCTL_DELACKTIME	12	/* time before sending delayed ACK */
1259#define	TCPCTL_V6MSSDFLT	13	/* MSS default for IPv6 */
1260#define	TCPCTL_SACK		14	/* Selective Acknowledgement,rfc 2018 */
1261#define	TCPCTL_DROP		15	/* drop tcp connection */
1262#define	TCPCTL_STATES		16	/* connection counts by TCP state */
1263
1264#ifdef _KERNEL
1265#ifdef SYSCTL_DECL
1266SYSCTL_DECL(_net_inet_tcp);
1267SYSCTL_DECL(_net_inet_tcp_sack);
1268MALLOC_DECLARE(M_TCPLOG);
1269#endif
1270
1271VNET_DECLARE(int, tcp_log_in_vain);
1272#define	V_tcp_log_in_vain		VNET(tcp_log_in_vain)
1273
1274/*
1275 * Global TCP tunables shared between different stacks.
1276 * Please keep the list sorted.
1277 */
1278VNET_DECLARE(int, drop_synfin);
1279VNET_DECLARE(int, path_mtu_discovery);
1280VNET_DECLARE(int, tcp_abc_l_var);
1281VNET_DECLARE(uint32_t, tcp_ack_war_cnt);
1282VNET_DECLARE(uint32_t, tcp_ack_war_time_window);
1283VNET_DECLARE(int, tcp_autorcvbuf_max);
1284VNET_DECLARE(int, tcp_autosndbuf_inc);
1285VNET_DECLARE(int, tcp_autosndbuf_max);
1286VNET_DECLARE(int, tcp_delack_enabled);
1287VNET_DECLARE(int, tcp_do_autorcvbuf);
1288VNET_DECLARE(int, tcp_do_autosndbuf);
1289VNET_DECLARE(int, tcp_do_ecn);
1290VNET_DECLARE(int, tcp_do_lrd);
1291VNET_DECLARE(int, tcp_do_prr);
1292VNET_DECLARE(int, tcp_do_prr_conservative);
1293VNET_DECLARE(int, tcp_do_newcwv);
1294VNET_DECLARE(int, tcp_do_rfc1323);
1295VNET_DECLARE(int, tcp_tolerate_missing_ts);
1296VNET_DECLARE(int, tcp_do_rfc3042);
1297VNET_DECLARE(int, tcp_do_rfc3390);
1298VNET_DECLARE(int, tcp_do_rfc3465);
1299VNET_DECLARE(int, tcp_do_newsack);
1300VNET_DECLARE(int, tcp_do_sack);
1301VNET_DECLARE(int, tcp_do_tso);
1302VNET_DECLARE(int, tcp_ecn_maxretries);
1303VNET_DECLARE(int, tcp_initcwnd_segments);
1304VNET_DECLARE(int, tcp_insecure_rst);
1305VNET_DECLARE(int, tcp_insecure_syn);
1306VNET_DECLARE(int, tcp_insecure_ack);
1307VNET_DECLARE(uint32_t, tcp_map_entries_limit);
1308VNET_DECLARE(uint32_t, tcp_map_split_limit);
1309VNET_DECLARE(int, tcp_minmss);
1310VNET_DECLARE(int, tcp_mssdflt);
1311#ifdef STATS
1312VNET_DECLARE(int, tcp_perconn_stats_dflt_tpl);
1313VNET_DECLARE(int, tcp_perconn_stats_enable);
1314#endif /* STATS */
1315VNET_DECLARE(int, tcp_recvspace);
1316VNET_DECLARE(int, tcp_retries);
1317VNET_DECLARE(int, tcp_sack_globalholes);
1318VNET_DECLARE(int, tcp_sack_globalmaxholes);
1319VNET_DECLARE(int, tcp_sack_maxholes);
1320VNET_DECLARE(int, tcp_sc_rst_sock_fail);
1321VNET_DECLARE(int, tcp_sendspace);
1322VNET_DECLARE(int, tcp_udp_tunneling_overhead);
1323VNET_DECLARE(int, tcp_udp_tunneling_port);
1324VNET_DECLARE(struct inpcbinfo, tcbinfo);
1325
1326#define	V_tcp_do_lrd			VNET(tcp_do_lrd)
1327#define	V_tcp_do_prr			VNET(tcp_do_prr)
1328#define	V_tcp_do_newcwv			VNET(tcp_do_newcwv)
1329#define	V_drop_synfin			VNET(drop_synfin)
1330#define	V_path_mtu_discovery		VNET(path_mtu_discovery)
1331#define	V_tcbinfo			VNET(tcbinfo)
1332#define	V_tcp_abc_l_var			VNET(tcp_abc_l_var)
1333#define	V_tcp_ack_war_cnt		VNET(tcp_ack_war_cnt)
1334#define	V_tcp_ack_war_time_window	VNET(tcp_ack_war_time_window)
1335#define	V_tcp_autorcvbuf_max		VNET(tcp_autorcvbuf_max)
1336#define	V_tcp_autosndbuf_inc		VNET(tcp_autosndbuf_inc)
1337#define	V_tcp_autosndbuf_max		VNET(tcp_autosndbuf_max)
1338#define	V_tcp_delack_enabled		VNET(tcp_delack_enabled)
1339#define	V_tcp_do_autorcvbuf		VNET(tcp_do_autorcvbuf)
1340#define	V_tcp_do_autosndbuf		VNET(tcp_do_autosndbuf)
1341#define	V_tcp_do_ecn			VNET(tcp_do_ecn)
1342#define	V_tcp_do_rfc1323		VNET(tcp_do_rfc1323)
1343#define	V_tcp_tolerate_missing_ts	VNET(tcp_tolerate_missing_ts)
1344#define V_tcp_ts_offset_per_conn	VNET(tcp_ts_offset_per_conn)
1345#define	V_tcp_do_rfc3042		VNET(tcp_do_rfc3042)
1346#define	V_tcp_do_rfc3390		VNET(tcp_do_rfc3390)
1347#define	V_tcp_do_rfc3465		VNET(tcp_do_rfc3465)
1348#define	V_tcp_do_newsack		VNET(tcp_do_newsack)
1349#define	V_tcp_do_sack			VNET(tcp_do_sack)
1350#define	V_tcp_do_tso			VNET(tcp_do_tso)
1351#define	V_tcp_ecn_maxretries		VNET(tcp_ecn_maxretries)
1352#define	V_tcp_initcwnd_segments		VNET(tcp_initcwnd_segments)
1353#define	V_tcp_insecure_rst		VNET(tcp_insecure_rst)
1354#define	V_tcp_insecure_syn		VNET(tcp_insecure_syn)
1355#define	V_tcp_insecure_ack		VNET(tcp_insecure_ack)
1356#define	V_tcp_map_entries_limit		VNET(tcp_map_entries_limit)
1357#define	V_tcp_map_split_limit		VNET(tcp_map_split_limit)
1358#define	V_tcp_minmss			VNET(tcp_minmss)
1359#define	V_tcp_mssdflt			VNET(tcp_mssdflt)
1360#ifdef STATS
1361#define	V_tcp_perconn_stats_dflt_tpl	VNET(tcp_perconn_stats_dflt_tpl)
1362#define	V_tcp_perconn_stats_enable	VNET(tcp_perconn_stats_enable)
1363#endif /* STATS */
1364#define	V_tcp_recvspace			VNET(tcp_recvspace)
1365#define	V_tcp_retries			VNET(tcp_retries)
1366#define	V_tcp_sack_globalholes		VNET(tcp_sack_globalholes)
1367#define	V_tcp_sack_globalmaxholes	VNET(tcp_sack_globalmaxholes)
1368#define	V_tcp_sack_maxholes		VNET(tcp_sack_maxholes)
1369#define	V_tcp_sc_rst_sock_fail		VNET(tcp_sc_rst_sock_fail)
1370#define	V_tcp_sendspace			VNET(tcp_sendspace)
1371#define	V_tcp_udp_tunneling_overhead	VNET(tcp_udp_tunneling_overhead)
1372#define	V_tcp_udp_tunneling_port	VNET(tcp_udp_tunneling_port)
1373
1374#ifdef TCP_HHOOK
1375VNET_DECLARE(struct hhook_head *, tcp_hhh[HHOOK_TCP_LAST + 1]);
1376#define	V_tcp_hhh		VNET(tcp_hhh)
1377#endif
1378
1379void	tcp_account_for_send(struct tcpcb *, uint32_t, uint8_t, uint8_t, bool);
1380int	 tcp_addoptions(struct tcpopt *, u_char *);
1381struct tcpcb *
1382	 tcp_close(struct tcpcb *);
1383void	 tcp_discardcb(struct tcpcb *);
1384void	 tcp_twstart(struct tcpcb *);
1385int	 tcp_ctloutput(struct socket *, struct sockopt *);
1386void	 tcp_fini(void *);
1387char	*tcp_log_addrs(struct in_conninfo *, struct tcphdr *, const void *,
1388	    const void *);
1389char	*tcp_log_vain(struct in_conninfo *, struct tcphdr *, const void *,
1390	    const void *);
1391int	 tcp_reass(struct tcpcb *, struct tcphdr *, tcp_seq *, int *,
1392	    struct mbuf *);
1393void	 tcp_reass_global_init(void);
1394void	 tcp_reass_flush(struct tcpcb *);
1395void	 tcp_dooptions(struct tcpopt *, u_char *, int, int);
1396void	tcp_dropwithreset(struct mbuf *, struct tcphdr *,
1397		     struct tcpcb *, int, int);
1398void	tcp_pulloutofband(struct socket *,
1399		     struct tcphdr *, struct mbuf *, int);
1400void	tcp_xmit_timer(struct tcpcb *, int);
1401void	tcp_newreno_partial_ack(struct tcpcb *, struct tcphdr *);
1402void	cc_ack_received(struct tcpcb *tp, struct tcphdr *th,
1403			    uint16_t nsegs, uint16_t type);
1404void 	cc_conn_init(struct tcpcb *tp);
1405void 	cc_post_recovery(struct tcpcb *tp, struct tcphdr *th);
1406void    cc_ecnpkt_handler(struct tcpcb *tp, struct tcphdr *th, uint8_t iptos);
1407void	cc_ecnpkt_handler_flags(struct tcpcb *tp, uint16_t flags, uint8_t iptos);
1408void	cc_cong_signal(struct tcpcb *tp, struct tcphdr *th, uint32_t type);
1409#ifdef TCP_HHOOK
1410void	hhook_run_tcp_est_in(struct tcpcb *tp,
1411			    struct tcphdr *th, struct tcpopt *to);
1412#endif
1413
1414int	 tcp_input(struct mbuf **, int *, int);
1415int	 tcp_autorcvbuf(struct mbuf *, struct tcphdr *, struct socket *,
1416	    struct tcpcb *, int);
1417int	 tcp_input_with_port(struct mbuf **, int *, int, uint16_t);
1418void	tcp_do_segment(struct tcpcb *, struct mbuf *, struct tcphdr *, int,
1419    int, uint8_t);
1420
1421int register_tcp_functions(struct tcp_function_block *blk, int wait);
1422int register_tcp_functions_as_names(struct tcp_function_block *blk,
1423    int wait, const char *names[], int *num_names);
1424int register_tcp_functions_as_name(struct tcp_function_block *blk,
1425    const char *name, int wait);
1426int deregister_tcp_functions(struct tcp_function_block *blk, bool quiesce,
1427    bool force);
1428struct tcp_function_block *find_and_ref_tcp_functions(struct tcp_function_set *fs);
1429int find_tcp_function_alias(struct tcp_function_block *blk, struct tcp_function_set *fs);
1430uint32_t tcp_get_srtt(struct tcpcb *tp, int granularity);
1431void tcp_switch_back_to_default(struct tcpcb *tp);
1432struct tcp_function_block *
1433find_and_ref_tcp_fb(struct tcp_function_block *fs);
1434int tcp_default_ctloutput(struct tcpcb *tp, struct sockopt *sopt);
1435int tcp_ctloutput_set(struct inpcb *inp, struct sockopt *sopt);
1436void tcp_log_socket_option(struct tcpcb *tp, uint32_t option_num,
1437    uint32_t option_val, int err);
1438
1439
1440extern counter_u64_t tcp_inp_lro_direct_queue;
1441extern counter_u64_t tcp_inp_lro_wokeup_queue;
1442extern counter_u64_t tcp_inp_lro_compressed;
1443extern counter_u64_t tcp_inp_lro_locks_taken;
1444extern counter_u64_t tcp_extra_mbuf;
1445extern counter_u64_t tcp_would_have_but;
1446extern counter_u64_t tcp_comp_total;
1447extern counter_u64_t tcp_uncomp_total;
1448extern counter_u64_t tcp_bad_csums;
1449
1450#ifdef TCP_SAD_DETECTION
1451/* Various SACK attack thresholds */
1452extern int32_t tcp_force_detection;
1453extern int32_t tcp_sad_limit;
1454extern int32_t tcp_sack_to_ack_thresh;
1455extern int32_t tcp_sack_to_move_thresh;
1456extern int32_t tcp_restoral_thresh;
1457extern int32_t tcp_sad_decay_val;
1458extern int32_t tcp_sad_pacing_interval;
1459extern int32_t tcp_sad_low_pps;
1460extern int32_t tcp_map_minimum;
1461extern int32_t tcp_attack_on_turns_on_logging;
1462#endif
1463extern uint32_t tcp_ack_war_time_window;
1464extern uint32_t tcp_ack_war_cnt;
1465
1466uint32_t tcp_maxmtu(struct in_conninfo *, struct tcp_ifcap *);
1467uint32_t tcp_maxmtu6(struct in_conninfo *, struct tcp_ifcap *);
1468void	 tcp6_use_min_mtu(struct tcpcb *);
1469u_int	 tcp_maxseg(const struct tcpcb *);
1470u_int	 tcp_fixed_maxseg(const struct tcpcb *);
1471void	 tcp_mss_update(struct tcpcb *, int, int, struct hc_metrics_lite *,
1472	    struct tcp_ifcap *);
1473void	 tcp_mss(struct tcpcb *, int);
1474int	 tcp_mssopt(struct in_conninfo *);
1475struct tcpcb *
1476	 tcp_newtcpcb(struct inpcb *, struct tcpcb *);
1477int	 tcp_default_output(struct tcpcb *);
1478void	 tcp_state_change(struct tcpcb *, int);
1479void	 tcp_respond(struct tcpcb *, void *,
1480	    struct tcphdr *, struct mbuf *, tcp_seq, tcp_seq, uint16_t);
1481void	 tcp_send_challenge_ack(struct tcpcb *, struct tcphdr *, struct mbuf *);
1482bool	 tcp_twcheck(struct inpcb *, struct tcpopt *, struct tcphdr *,
1483	    struct mbuf *, int);
1484void	 tcp_setpersist(struct tcpcb *);
1485void	 tcp_record_dsack(struct tcpcb *tp, tcp_seq start, tcp_seq end, int tlp);
1486struct tcptemp *
1487	 tcpip_maketemplate(struct inpcb *);
1488void	 tcpip_fillheaders(struct inpcb *, uint16_t, void *, void *);
1489void	 tcp_timer_activate(struct tcpcb *, tt_which, u_int);
1490bool	 tcp_timer_active(struct tcpcb *, tt_which);
1491void	 tcp_timer_stop(struct tcpcb *);
1492int	 inp_to_cpuid(struct inpcb *inp);
1493/*
1494 * All tcp_hc_* functions are IPv4 and IPv6 (via in_conninfo)
1495 */
1496void	 tcp_hc_init(void);
1497#ifdef VIMAGE
1498void	 tcp_hc_destroy(void);
1499#endif
1500void	 tcp_hc_get(struct in_conninfo *, struct hc_metrics_lite *);
1501uint32_t tcp_hc_getmtu(struct in_conninfo *);
1502void	 tcp_hc_updatemtu(struct in_conninfo *, uint32_t);
1503void	 tcp_hc_update(struct in_conninfo *, struct hc_metrics_lite *);
1504void 	 cc_after_idle(struct tcpcb *tp);
1505
1506extern	struct protosw tcp_protosw;		/* shared for TOE */
1507extern	struct protosw tcp6_protosw;		/* shared for TOE */
1508
1509uint32_t tcp_new_ts_offset(struct in_conninfo *);
1510tcp_seq	 tcp_new_isn(struct in_conninfo *);
1511
1512sackstatus_t
1513	 tcp_sack_doack(struct tcpcb *, struct tcpopt *, tcp_seq);
1514int	 tcp_dsack_block_exists(struct tcpcb *);
1515void	 tcp_update_dsack_list(struct tcpcb *, tcp_seq, tcp_seq);
1516void	 tcp_update_sack_list(struct tcpcb *tp, tcp_seq rcv_laststart, tcp_seq rcv_lastend);
1517void	 tcp_clean_dsack_blocks(struct tcpcb *tp);
1518void	 tcp_clean_sackreport(struct tcpcb *tp);
1519int	 tcp_sack_adjust(struct tcpcb *tp);
1520struct sackhole *tcp_sack_output(struct tcpcb *tp, int *sack_bytes_rexmt);
1521void	 tcp_do_prr_ack(struct tcpcb *, struct tcphdr *, struct tcpopt *, sackstatus_t);
1522void	 tcp_lost_retransmission(struct tcpcb *, struct tcphdr *);
1523void	 tcp_sack_partialack(struct tcpcb *, struct tcphdr *);
1524void	 tcp_free_sackholes(struct tcpcb *tp);
1525void	 tcp_sack_lost_retransmission(struct tcpcb *, struct tcphdr *);
1526int	 tcp_newreno(struct tcpcb *, struct tcphdr *);
1527int	 tcp_compute_pipe(struct tcpcb *);
1528uint32_t tcp_compute_initwnd(uint32_t);
1529void	 tcp_sndbuf_autoscale(struct tcpcb *, struct socket *, uint32_t);
1530int	 tcp_stats_sample_rollthedice(struct tcpcb *tp, void *seed_bytes,
1531    size_t seed_len);
1532int tcp_can_enable_pacing(void);
1533void tcp_decrement_paced_conn(void);
1534void tcp_change_time_units(struct tcpcb *, int);
1535void tcp_handle_orphaned_packets(struct tcpcb *);
1536
1537struct mbuf *
1538	 tcp_m_copym(struct mbuf *m, int32_t off0, int32_t *plen,
1539	   int32_t seglimit, int32_t segsize, struct sockbuf *sb, bool hw_tls);
1540
1541int	tcp_stats_init(void);
1542void tcp_log_end_status(struct tcpcb *tp, uint8_t status);
1543#ifdef TCP_REQUEST_TRK
1544void tcp_req_free_a_slot(struct tcpcb *tp, struct tcp_sendfile_track *ent);
1545struct tcp_sendfile_track *
1546tcp_req_find_a_req_that_is_completed_by(struct tcpcb *tp, tcp_seq th_ack, int *ip);
1547int tcp_req_check_for_comp(struct tcpcb *tp, tcp_seq ack_point);
1548int
1549tcp_req_is_entry_comp(struct tcpcb *tp, struct tcp_sendfile_track *ent, tcp_seq ack_point);
1550struct tcp_sendfile_track *
1551tcp_req_find_req_for_seq(struct tcpcb *tp, tcp_seq seq);
1552void
1553tcp_req_log_req_info(struct tcpcb *tp,
1554    struct tcp_sendfile_track *req, uint16_t slot,
1555    uint8_t val, uint64_t offset, uint64_t nbytes);
1556
1557uint32_t
1558tcp_estimate_tls_overhead(struct socket *so, uint64_t tls_usr_bytes);
1559void
1560tcp_req_alloc_req(struct tcpcb *tp, union tcp_log_userdata *user,
1561    uint64_t ts);
1562
1563struct tcp_sendfile_track *
1564tcp_req_alloc_req_full(struct tcpcb *tp, struct tcp_snd_req *req, uint64_t ts, int rec_dups);
1565
1566
1567#endif
1568#ifdef TCP_ACCOUNTING
1569int tcp_do_ack_accounting(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to, uint32_t tiwin, int mss);
1570#endif
1571
1572static inline void
1573tcp_lro_features_off(struct tcpcb *tp)
1574{
1575	tp->t_flags2 &= ~(TF2_SUPPORTS_MBUFQ|
1576	    TF2_MBUF_QUEUE_READY|
1577	    TF2_DONT_SACK_QUEUE|
1578	    TF2_MBUF_ACKCMP|
1579	    TF2_MBUF_L_ACKS);
1580}
1581
1582static inline void
1583tcp_fields_to_host(struct tcphdr *th)
1584{
1585
1586	th->th_seq = ntohl(th->th_seq);
1587	th->th_ack = ntohl(th->th_ack);
1588	th->th_win = ntohs(th->th_win);
1589	th->th_urp = ntohs(th->th_urp);
1590}
1591
1592static inline void
1593tcp_fields_to_net(struct tcphdr *th)
1594{
1595
1596	th->th_seq = htonl(th->th_seq);
1597	th->th_ack = htonl(th->th_ack);
1598	th->th_win = htons(th->th_win);
1599	th->th_urp = htons(th->th_urp);
1600}
1601
1602static inline uint16_t
1603tcp_get_flags(const struct tcphdr *th)
1604{
1605        return (((uint16_t)th->th_x2 << 8) | th->th_flags);
1606}
1607
1608static inline void
1609tcp_set_flags(struct tcphdr *th, uint16_t flags)
1610{
1611        th->th_x2    = (flags >> 8) & 0x0f;
1612        th->th_flags = flags & 0xff;
1613}
1614#endif /* _KERNEL */
1615
1616#endif /* _NETINET_TCP_VAR_H_ */