1 /*- 2 * Copyright (c) 2016-2020 Netflix, Inc. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 1. Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. 9 * 2. Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution. 12 * 13 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23 * SUCH DAMAGE. 24 * 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include "opt_inet.h" 31 #include "opt_inet6.h" 32 #include "opt_ipsec.h" 33 #include "opt_tcpdebug.h" 34 #include "opt_ratelimit.h" 35 #include "opt_kern_tls.h" 36 #include <sys/param.h> 37 #include <sys/arb.h> 38 #include <sys/module.h> 39 #include <sys/kernel.h> 40 #ifdef TCP_HHOOK 41 #include <sys/hhook.h> 42 #endif 43 #include <sys/lock.h> 44 #include <sys/malloc.h> 45 #include <sys/lock.h> 46 #include <sys/mutex.h> 47 #include <sys/mbuf.h> 48 #include <sys/proc.h> /* for proc0 declaration */ 49 #include <sys/socket.h> 50 #include <sys/socketvar.h> 51 #include <sys/sysctl.h> 52 #include <sys/systm.h> 53 #ifdef STATS 54 #include <sys/qmath.h> 55 #include <sys/tree.h> 56 #include <sys/stats.h> /* Must come after qmath.h and tree.h */ 57 #else 58 #include <sys/tree.h> 59 #endif 60 #include <sys/refcount.h> 61 #include <sys/queue.h> 62 #include <sys/tim_filter.h> 63 #include <sys/smp.h> 64 #include <sys/kthread.h> 65 #include <sys/kern_prefetch.h> 66 #include <sys/protosw.h> 67 #ifdef TCP_ACCOUNTING 68 #include <sys/sched.h> 69 #include <machine/cpu.h> 70 #endif 71 #include <vm/uma.h> 72 73 #include <net/route.h> 74 #include <net/route/nhop.h> 75 #include <net/vnet.h> 76 77 #define TCPSTATES /* for logging */ 78 79 #include <netinet/in.h> 80 #include <netinet/in_kdtrace.h> 81 #include <netinet/in_pcb.h> 82 #include <netinet/ip.h> 83 #include <netinet/ip_icmp.h> /* required for icmp_var.h */ 84 #include <netinet/icmp_var.h> /* for ICMP_BANDLIM */ 85 #include <netinet/ip_var.h> 86 #include <netinet/ip6.h> 87 #include <netinet6/in6_pcb.h> 88 #include <netinet6/ip6_var.h> 89 #include <netinet/tcp.h> 90 #define TCPOUTFLAGS 91 #include <netinet/tcp_fsm.h> 92 #include <netinet/tcp_log_buf.h> 93 #include <netinet/tcp_seq.h> 94 #include <netinet/tcp_timer.h> 95 #include <netinet/tcp_var.h> 96 #include <netinet/tcp_syncache.h> 97 #include <netinet/tcp_hpts.h> 98 #include <netinet/tcp_ratelimit.h> 99 #include <netinet/tcp_accounting.h> 100 #include <netinet/tcpip.h> 101 #include <netinet/cc/cc.h> 102 #include <netinet/cc/cc_newreno.h> 103 #include <netinet/tcp_fastopen.h> 104 #include <netinet/tcp_lro.h> 105 #ifdef NETFLIX_SHARED_CWND 106 #include <netinet/tcp_shared_cwnd.h> 107 #endif 108 #ifdef TCPDEBUG 109 #include <netinet/tcp_debug.h> 110 #endif /* TCPDEBUG */ 111 #ifdef TCP_OFFLOAD 112 #include <netinet/tcp_offload.h> 113 #endif 114 #ifdef INET6 115 #include <netinet6/tcp6_var.h> 116 #endif 117 #include <netinet/tcp_ecn.h> 118 119 #include <netipsec/ipsec_support.h> 120 121 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 122 #include <netipsec/ipsec.h> 123 #include <netipsec/ipsec6.h> 124 #endif /* IPSEC */ 125 126 #include <netinet/udp.h> 127 #include <netinet/udp_var.h> 128 #include <machine/in_cksum.h> 129 130 #ifdef MAC 131 #include <security/mac/mac_framework.h> 132 #endif 133 #include "sack_filter.h" 134 #include "tcp_rack.h" 135 #include "rack_bbr_common.h" 136 137 uma_zone_t rack_zone; 138 uma_zone_t rack_pcb_zone; 139 140 #ifndef TICKS2SBT 141 #define TICKS2SBT(__t) (tick_sbt * ((sbintime_t)(__t))) 142 #endif 143 144 VNET_DECLARE(uint32_t, newreno_beta); 145 VNET_DECLARE(uint32_t, newreno_beta_ecn); 146 #define V_newreno_beta VNET(newreno_beta) 147 #define V_newreno_beta_ecn VNET(newreno_beta_ecn) 148 149 150 MALLOC_DEFINE(M_TCPFSB, "tcp_fsb", "TCP fast send block"); 151 MALLOC_DEFINE(M_TCPDO, "tcp_do", "TCP deferred options"); 152 153 struct sysctl_ctx_list rack_sysctl_ctx; 154 struct sysctl_oid *rack_sysctl_root; 155 156 #define CUM_ACKED 1 157 #define SACKED 2 158 159 /* 160 * The RACK module incorporates a number of 161 * TCP ideas that have been put out into the IETF 162 * over the last few years: 163 * - Matt Mathis's Rate Halving which slowly drops 164 * the congestion window so that the ack clock can 165 * be maintained during a recovery. 166 * - Yuchung Cheng's RACK TCP (for which its named) that 167 * will stop us using the number of dup acks and instead 168 * use time as the gage of when we retransmit. 169 * - Reorder Detection of RFC4737 and the Tail-Loss probe draft 170 * of Dukkipati et.al. 171 * RACK depends on SACK, so if an endpoint arrives that 172 * cannot do SACK the state machine below will shuttle the 173 * connection back to using the "default" TCP stack that is 174 * in FreeBSD. 175 * 176 * To implement RACK the original TCP stack was first decomposed 177 * into a functional state machine with individual states 178 * for each of the possible TCP connection states. The do_segment 179 * functions role in life is to mandate the connection supports SACK 180 * initially and then assure that the RACK state matches the conenction 181 * state before calling the states do_segment function. Each 182 * state is simplified due to the fact that the original do_segment 183 * has been decomposed and we *know* what state we are in (no 184 * switches on the state) and all tests for SACK are gone. This 185 * greatly simplifies what each state does. 186 * 187 * TCP output is also over-written with a new version since it 188 * must maintain the new rack scoreboard. 189 * 190 */ 191 static int32_t rack_tlp_thresh = 1; 192 static int32_t rack_tlp_limit = 2; /* No more than 2 TLPs w-out new data */ 193 static int32_t rack_tlp_use_greater = 1; 194 static int32_t rack_reorder_thresh = 2; 195 static int32_t rack_reorder_fade = 60000000; /* 0 - never fade, def 60,000,000 196 * - 60 seconds */ 197 static uint8_t rack_req_measurements = 1; 198 /* Attack threshold detections */ 199 static uint32_t rack_highest_sack_thresh_seen = 0; 200 static uint32_t rack_highest_move_thresh_seen = 0; 201 static int32_t rack_enable_hw_pacing = 0; /* Due to CCSP keep it off by default */ 202 static int32_t rack_hw_pace_extra_slots = 2; /* 2 extra MSS time betweens */ 203 static int32_t rack_hw_rate_caps = 1; /* 1; */ 204 static int32_t rack_hw_rate_min = 0; /* 1500000;*/ 205 static int32_t rack_hw_rate_to_low = 0; /* 1200000; */ 206 static int32_t rack_hw_up_only = 1; 207 static int32_t rack_stats_gets_ms_rtt = 1; 208 static int32_t rack_prr_addbackmax = 2; 209 static int32_t rack_do_hystart = 0; 210 static int32_t rack_apply_rtt_with_reduced_conf = 0; 211 212 static int32_t rack_pkt_delay = 1000; 213 static int32_t rack_send_a_lot_in_prr = 1; 214 static int32_t rack_min_to = 1000; /* Number of microsecond min timeout */ 215 static int32_t rack_verbose_logging = 0; 216 static int32_t rack_ignore_data_after_close = 1; 217 static int32_t rack_enable_shared_cwnd = 1; 218 static int32_t rack_use_cmp_acks = 1; 219 static int32_t rack_use_fsb = 1; 220 static int32_t rack_use_rfo = 1; 221 static int32_t rack_use_rsm_rfo = 1; 222 static int32_t rack_max_abc_post_recovery = 2; 223 static int32_t rack_client_low_buf = 0; 224 static int32_t rack_dsack_std_based = 0x3; /* bit field bit 1 sets rc_rack_tmr_std_based and bit 2 sets rc_rack_use_dsack */ 225 #ifdef TCP_ACCOUNTING 226 static int32_t rack_tcp_accounting = 0; 227 #endif 228 static int32_t rack_limits_scwnd = 1; 229 static int32_t rack_enable_mqueue_for_nonpaced = 0; 230 static int32_t rack_disable_prr = 0; 231 static int32_t use_rack_rr = 1; 232 static int32_t rack_non_rxt_use_cr = 0; /* does a non-rxt in recovery use the configured rate (ss/ca)? */ 233 static int32_t rack_persist_min = 250000; /* 250usec */ 234 static int32_t rack_persist_max = 2000000; /* 2 Second in usec's */ 235 static int32_t rack_sack_not_required = 1; /* set to one to allow non-sack to use rack */ 236 static int32_t rack_default_init_window = 0; /* Use system default */ 237 static int32_t rack_limit_time_with_srtt = 0; 238 static int32_t rack_autosndbuf_inc = 20; /* In percentage form */ 239 static int32_t rack_enobuf_hw_boost_mult = 2; /* How many times the hw rate we boost slot using time_between */ 240 static int32_t rack_enobuf_hw_max = 12000; /* 12 ms in usecs */ 241 static int32_t rack_enobuf_hw_min = 10000; /* 10 ms in usecs */ 242 static int32_t rack_hw_rwnd_factor = 2; /* How many max_segs the rwnd must be before we hold off sending */ 243 244 /* 245 * Currently regular tcp has a rto_min of 30ms 246 * the backoff goes 12 times so that ends up 247 * being a total of 122.850 seconds before a 248 * connection is killed. 249 */ 250 static uint32_t rack_def_data_window = 20; 251 static uint32_t rack_goal_bdp = 2; 252 static uint32_t rack_min_srtts = 1; 253 static uint32_t rack_min_measure_usec = 0; 254 static int32_t rack_tlp_min = 10000; /* 10ms */ 255 static int32_t rack_rto_min = 30000; /* 30,000 usec same as main freebsd */ 256 static int32_t rack_rto_max = 4000000; /* 4 seconds in usec's */ 257 static const int32_t rack_free_cache = 2; 258 static int32_t rack_hptsi_segments = 40; 259 static int32_t rack_rate_sample_method = USE_RTT_LOW; 260 static int32_t rack_pace_every_seg = 0; 261 static int32_t rack_delayed_ack_time = 40000; /* 40ms in usecs */ 262 static int32_t rack_slot_reduction = 4; 263 static int32_t rack_wma_divisor = 8; /* For WMA calculation */ 264 static int32_t rack_cwnd_block_ends_measure = 0; 265 static int32_t rack_rwnd_block_ends_measure = 0; 266 static int32_t rack_def_profile = 0; 267 268 static int32_t rack_lower_cwnd_at_tlp = 0; 269 static int32_t rack_limited_retran = 0; 270 static int32_t rack_always_send_oldest = 0; 271 static int32_t rack_tlp_threshold_use = TLP_USE_TWO_ONE; 272 273 static uint16_t rack_per_of_gp_ss = 250; /* 250 % slow-start */ 274 static uint16_t rack_per_of_gp_ca = 200; /* 200 % congestion-avoidance */ 275 static uint16_t rack_per_of_gp_rec = 200; /* 200 % of bw */ 276 277 /* Probertt */ 278 static uint16_t rack_per_of_gp_probertt = 60; /* 60% of bw */ 279 static uint16_t rack_per_of_gp_lowthresh = 40; /* 40% is bottom */ 280 static uint16_t rack_per_of_gp_probertt_reduce = 10; /* 10% reduction */ 281 static uint16_t rack_atexit_prtt_hbp = 130; /* Clamp to 130% on exit prtt if highly buffered path */ 282 static uint16_t rack_atexit_prtt = 130; /* Clamp to 100% on exit prtt if non highly buffered path */ 283 284 static uint32_t rack_max_drain_wait = 2; /* How man gp srtt's before we give up draining */ 285 static uint32_t rack_must_drain = 1; /* How many GP srtt's we *must* wait */ 286 static uint32_t rack_probertt_use_min_rtt_entry = 1; /* Use the min to calculate the goal else gp_srtt */ 287 static uint32_t rack_probertt_use_min_rtt_exit = 0; 288 static uint32_t rack_probe_rtt_sets_cwnd = 0; 289 static uint32_t rack_probe_rtt_safety_val = 2000000; /* No more than 2 sec in probe-rtt */ 290 static uint32_t rack_time_between_probertt = 9600000; /* 9.6 sec in usecs */ 291 static uint32_t rack_probertt_gpsrtt_cnt_mul = 0; /* How many srtt periods does probe-rtt last top fraction */ 292 static uint32_t rack_probertt_gpsrtt_cnt_div = 0; /* How many srtt periods does probe-rtt last bottom fraction */ 293 static uint32_t rack_min_probertt_hold = 40000; /* Equal to delayed ack time */ 294 static uint32_t rack_probertt_filter_life = 10000000; 295 static uint32_t rack_probertt_lower_within = 10; 296 static uint32_t rack_min_rtt_movement = 250000; /* Must move at least 250ms (in microseconds) to count as a lowering */ 297 static int32_t rack_pace_one_seg = 0; /* Shall we pace for less than 1.4Meg 1MSS at a time */ 298 static int32_t rack_probertt_clear_is = 1; 299 static int32_t rack_max_drain_hbp = 1; /* Extra drain times gpsrtt for highly buffered paths */ 300 static int32_t rack_hbp_thresh = 3; /* what is the divisor max_rtt/min_rtt to decided a hbp */ 301 302 /* Part of pacing */ 303 static int32_t rack_max_per_above = 30; /* When we go to increment stop if above 100+this% */ 304 305 /* Timely information */ 306 /* Combine these two gives the range of 'no change' to bw */ 307 /* ie the up/down provide the upper and lower bound */ 308 static int32_t rack_gp_per_bw_mul_up = 2; /* 2% */ 309 static int32_t rack_gp_per_bw_mul_down = 4; /* 4% */ 310 static int32_t rack_gp_rtt_maxmul = 3; /* 3 x maxmin */ 311 static int32_t rack_gp_rtt_minmul = 1; /* minrtt + (minrtt/mindiv) is lower rtt */ 312 static int32_t rack_gp_rtt_mindiv = 4; /* minrtt + (minrtt * minmul/mindiv) is lower rtt */ 313 static int32_t rack_gp_decrease_per = 20; /* 20% decrease in multiplier */ 314 static int32_t rack_gp_increase_per = 2; /* 2% increase in multiplier */ 315 static int32_t rack_per_lower_bound = 50; /* Don't allow to drop below this multiplier */ 316 static int32_t rack_per_upper_bound_ss = 0; /* Don't allow SS to grow above this */ 317 static int32_t rack_per_upper_bound_ca = 0; /* Don't allow CA to grow above this */ 318 static int32_t rack_do_dyn_mul = 0; /* Are the rack gp multipliers dynamic */ 319 static int32_t rack_gp_no_rec_chg = 1; /* Prohibit recovery from reducing it's multiplier */ 320 static int32_t rack_timely_dec_clear = 6; /* Do we clear decrement count at a value (6)? */ 321 static int32_t rack_timely_max_push_rise = 3; /* One round of pushing */ 322 static int32_t rack_timely_max_push_drop = 3; /* Three round of pushing */ 323 static int32_t rack_timely_min_segs = 4; /* 4 segment minimum */ 324 static int32_t rack_use_max_for_nobackoff = 0; 325 static int32_t rack_timely_int_timely_only = 0; /* do interim timely's only use the timely algo (no b/w changes)? */ 326 static int32_t rack_timely_no_stopping = 0; 327 static int32_t rack_down_raise_thresh = 100; 328 static int32_t rack_req_segs = 1; 329 static uint64_t rack_bw_rate_cap = 0; 330 static uint32_t rack_trace_point_config = 0; 331 static uint32_t rack_trace_point_bb_mode = 4; 332 static int32_t rack_trace_point_count = 0; 333 334 335 /* Weird delayed ack mode */ 336 static int32_t rack_use_imac_dack = 0; 337 /* Rack specific counters */ 338 counter_u64_t rack_saw_enobuf; 339 counter_u64_t rack_saw_enobuf_hw; 340 counter_u64_t rack_saw_enetunreach; 341 counter_u64_t rack_persists_sends; 342 counter_u64_t rack_persists_acks; 343 counter_u64_t rack_persists_loss; 344 counter_u64_t rack_persists_lost_ends; 345 #ifdef INVARIANTS 346 counter_u64_t rack_adjust_map_bw; 347 #endif 348 /* Tail loss probe counters */ 349 counter_u64_t rack_tlp_tot; 350 counter_u64_t rack_tlp_newdata; 351 counter_u64_t rack_tlp_retran; 352 counter_u64_t rack_tlp_retran_bytes; 353 counter_u64_t rack_to_tot; 354 counter_u64_t rack_hot_alloc; 355 counter_u64_t rack_to_alloc; 356 counter_u64_t rack_to_alloc_hard; 357 counter_u64_t rack_to_alloc_emerg; 358 counter_u64_t rack_to_alloc_limited; 359 counter_u64_t rack_alloc_limited_conns; 360 counter_u64_t rack_split_limited; 361 362 counter_u64_t rack_multi_single_eq; 363 counter_u64_t rack_proc_non_comp_ack; 364 365 counter_u64_t rack_fto_send; 366 counter_u64_t rack_fto_rsm_send; 367 counter_u64_t rack_nfto_resend; 368 counter_u64_t rack_non_fto_send; 369 counter_u64_t rack_extended_rfo; 370 371 counter_u64_t rack_sack_proc_all; 372 counter_u64_t rack_sack_proc_short; 373 counter_u64_t rack_sack_proc_restart; 374 counter_u64_t rack_sack_attacks_detected; 375 counter_u64_t rack_sack_attacks_reversed; 376 counter_u64_t rack_sack_used_next_merge; 377 counter_u64_t rack_sack_splits; 378 counter_u64_t rack_sack_used_prev_merge; 379 counter_u64_t rack_sack_skipped_acked; 380 counter_u64_t rack_ack_total; 381 counter_u64_t rack_express_sack; 382 counter_u64_t rack_sack_total; 383 counter_u64_t rack_move_none; 384 counter_u64_t rack_move_some; 385 386 counter_u64_t rack_input_idle_reduces; 387 counter_u64_t rack_collapsed_win; 388 counter_u64_t rack_collapsed_win_seen; 389 counter_u64_t rack_collapsed_win_rxt; 390 counter_u64_t rack_collapsed_win_rxt_bytes; 391 counter_u64_t rack_try_scwnd; 392 counter_u64_t rack_hw_pace_init_fail; 393 counter_u64_t rack_hw_pace_lost; 394 395 counter_u64_t rack_out_size[TCP_MSS_ACCT_SIZE]; 396 counter_u64_t rack_opts_arry[RACK_OPTS_SIZE]; 397 398 399 #define RACK_REXMTVAL(tp) max(rack_rto_min, ((tp)->t_srtt + ((tp)->t_rttvar << 2))) 400 401 #define RACK_TCPT_RANGESET(tv, value, tvmin, tvmax, slop) do { \ 402 (tv) = (value) + slop; \ 403 if ((u_long)(tv) < (u_long)(tvmin)) \ 404 (tv) = (tvmin); \ 405 if ((u_long)(tv) > (u_long)(tvmax)) \ 406 (tv) = (tvmax); \ 407 } while (0) 408 409 static void 410 rack_log_progress_event(struct tcp_rack *rack, struct tcpcb *tp, uint32_t tick, int event, int line); 411 412 static int 413 rack_process_ack(struct mbuf *m, struct tcphdr *th, 414 struct socket *so, struct tcpcb *tp, struct tcpopt *to, 415 uint32_t tiwin, int32_t tlen, int32_t * ofia, int32_t thflags, int32_t * ret_val); 416 static int 417 rack_process_data(struct mbuf *m, struct tcphdr *th, 418 struct socket *so, struct tcpcb *tp, int32_t drop_hdrlen, int32_t tlen, 419 uint32_t tiwin, int32_t thflags, int32_t nxt_pkt); 420 static void 421 rack_ack_received(struct tcpcb *tp, struct tcp_rack *rack, 422 uint32_t th_ack, uint16_t nsegs, uint16_t type, int32_t recovery); 423 static struct rack_sendmap *rack_alloc(struct tcp_rack *rack); 424 static struct rack_sendmap *rack_alloc_limit(struct tcp_rack *rack, 425 uint8_t limit_type); 426 static struct rack_sendmap * 427 rack_check_recovery_mode(struct tcpcb *tp, 428 uint32_t tsused); 429 static void 430 rack_cong_signal(struct tcpcb *tp, 431 uint32_t type, uint32_t ack, int ); 432 static void rack_counter_destroy(void); 433 static int 434 rack_ctloutput(struct inpcb *inp, struct sockopt *sopt); 435 static int32_t rack_ctor(void *mem, int32_t size, void *arg, int32_t how); 436 static void 437 rack_set_pace_segments(struct tcpcb *tp, struct tcp_rack *rack, uint32_t line, uint64_t *fill_override); 438 static void 439 rack_do_segment(struct mbuf *m, struct tcphdr *th, 440 struct socket *so, struct tcpcb *tp, int32_t drop_hdrlen, int32_t tlen, 441 uint8_t iptos); 442 static void rack_dtor(void *mem, int32_t size, void *arg); 443 static void 444 rack_log_alt_to_to_cancel(struct tcp_rack *rack, 445 uint32_t flex1, uint32_t flex2, 446 uint32_t flex3, uint32_t flex4, 447 uint32_t flex5, uint32_t flex6, 448 uint16_t flex7, uint8_t mod); 449 450 static void 451 rack_log_pacing_delay_calc(struct tcp_rack *rack, uint32_t len, uint32_t slot, 452 uint64_t bw_est, uint64_t bw, uint64_t len_time, int method, int line, 453 struct rack_sendmap *rsm, uint8_t quality); 454 static struct rack_sendmap * 455 rack_find_high_nonack(struct tcp_rack *rack, 456 struct rack_sendmap *rsm); 457 static struct rack_sendmap *rack_find_lowest_rsm(struct tcp_rack *rack); 458 static void rack_free(struct tcp_rack *rack, struct rack_sendmap *rsm); 459 static void rack_fini(struct tcpcb *tp, int32_t tcb_is_purged); 460 static int rack_get_sockopt(struct inpcb *inp, struct sockopt *sopt); 461 static void 462 rack_do_goodput_measurement(struct tcpcb *tp, struct tcp_rack *rack, 463 tcp_seq th_ack, int line, uint8_t quality); 464 static uint32_t 465 rack_get_pacing_len(struct tcp_rack *rack, uint64_t bw, uint32_t mss); 466 static int32_t rack_handoff_ok(struct tcpcb *tp); 467 static int32_t rack_init(struct tcpcb *tp); 468 static void rack_init_sysctls(void); 469 static void 470 rack_log_ack(struct tcpcb *tp, struct tcpopt *to, 471 struct tcphdr *th, int entered_rec, int dup_ack_struck); 472 static void 473 rack_log_output(struct tcpcb *tp, struct tcpopt *to, int32_t len, 474 uint32_t seq_out, uint16_t th_flags, int32_t err, uint64_t ts, 475 struct rack_sendmap *hintrsm, uint16_t add_flags, struct mbuf *s_mb, uint32_t s_moff, int hw_tls); 476 477 static void 478 rack_log_sack_passed(struct tcpcb *tp, struct tcp_rack *rack, 479 struct rack_sendmap *rsm); 480 static void rack_log_to_event(struct tcp_rack *rack, int32_t to_num, struct rack_sendmap *rsm); 481 static int32_t rack_output(struct tcpcb *tp); 482 483 static uint32_t 484 rack_proc_sack_blk(struct tcpcb *tp, struct tcp_rack *rack, 485 struct sackblk *sack, struct tcpopt *to, struct rack_sendmap **prsm, 486 uint32_t cts, int *moved_two); 487 static void rack_post_recovery(struct tcpcb *tp, uint32_t th_seq); 488 static void rack_remxt_tmr(struct tcpcb *tp); 489 static int rack_set_sockopt(struct inpcb *inp, struct sockopt *sopt); 490 static void rack_set_state(struct tcpcb *tp, struct tcp_rack *rack); 491 static int32_t rack_stopall(struct tcpcb *tp); 492 static void 493 rack_timer_activate(struct tcpcb *tp, uint32_t timer_type, 494 uint32_t delta); 495 static int32_t rack_timer_active(struct tcpcb *tp, uint32_t timer_type); 496 static void rack_timer_cancel(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cts, int line); 497 static void rack_timer_stop(struct tcpcb *tp, uint32_t timer_type); 498 static uint32_t 499 rack_update_entry(struct tcpcb *tp, struct tcp_rack *rack, 500 struct rack_sendmap *rsm, uint64_t ts, int32_t * lenp, uint16_t add_flag); 501 static void 502 rack_update_rsm(struct tcpcb *tp, struct tcp_rack *rack, 503 struct rack_sendmap *rsm, uint64_t ts, uint16_t add_flag); 504 static int 505 rack_update_rtt(struct tcpcb *tp, struct tcp_rack *rack, 506 struct rack_sendmap *rsm, struct tcpopt *to, uint32_t cts, int32_t ack_type, tcp_seq th_ack); 507 static int32_t tcp_addrack(module_t mod, int32_t type, void *data); 508 static int 509 rack_do_close_wait(struct mbuf *m, struct tcphdr *th, 510 struct socket *so, struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, 511 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 512 static int 513 rack_do_closing(struct mbuf *m, struct tcphdr *th, 514 struct socket *so, struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, 515 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 516 static int 517 rack_do_established(struct mbuf *m, struct tcphdr *th, 518 struct socket *so, struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, 519 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 520 static int 521 rack_do_fastnewdata(struct mbuf *m, struct tcphdr *th, 522 struct socket *so, struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, 523 int32_t tlen, uint32_t tiwin, int32_t nxt_pkt, uint8_t iptos); 524 static int 525 rack_do_fin_wait_1(struct mbuf *m, struct tcphdr *th, 526 struct socket *so, struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, 527 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 528 static int 529 rack_do_fin_wait_2(struct mbuf *m, struct tcphdr *th, 530 struct socket *so, struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, 531 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 532 static int 533 rack_do_lastack(struct mbuf *m, struct tcphdr *th, 534 struct socket *so, struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, 535 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 536 static int 537 rack_do_syn_recv(struct mbuf *m, struct tcphdr *th, 538 struct socket *so, struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, 539 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 540 static int 541 rack_do_syn_sent(struct mbuf *m, struct tcphdr *th, 542 struct socket *so, struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, 543 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 544 struct rack_sendmap * 545 tcp_rack_output(struct tcpcb *tp, struct tcp_rack *rack, 546 uint32_t tsused); 547 static void tcp_rack_xmit_timer(struct tcp_rack *rack, int32_t rtt, 548 uint32_t len, uint32_t us_tim, int confidence, struct rack_sendmap *rsm, uint16_t rtrcnt); 549 static void 550 tcp_rack_partialack(struct tcpcb *tp); 551 static int 552 rack_set_profile(struct tcp_rack *rack, int prof); 553 static void 554 rack_apply_deferred_options(struct tcp_rack *rack); 555 556 int32_t rack_clear_counter=0; 557 558 static inline void 559 rack_trace_point(struct tcp_rack *rack, int num) 560 { 561 if (((rack_trace_point_config == num) || 562 (rack_trace_point_config = 0xffffffff)) && 563 (rack_trace_point_bb_mode != 0) && 564 (rack_trace_point_count > 0) && 565 (rack->rc_tp->t_logstate == 0)) { 566 int res; 567 res = atomic_fetchadd_int(&rack_trace_point_count, -1); 568 if (res > 0) { 569 rack->rc_tp->t_logstate = rack_trace_point_bb_mode; 570 } else { 571 /* Loss a race assure its zero now */ 572 rack_trace_point_count = 0; 573 } 574 } 575 } 576 577 static void 578 rack_set_cc_pacing(struct tcp_rack *rack) 579 { 580 struct sockopt sopt; 581 struct cc_newreno_opts opt; 582 struct newreno old, *ptr; 583 struct tcpcb *tp; 584 int error; 585 586 if (rack->rc_pacing_cc_set) 587 return; 588 589 tp = rack->rc_tp; 590 if (tp->cc_algo == NULL) { 591 /* Tcb is leaving */ 592 return; 593 } 594 rack->rc_pacing_cc_set = 1; 595 if (strcmp(tp->cc_algo->name, CCALGONAME_NEWRENO) != 0) { 596 /* Not new-reno we can't play games with beta! */ 597 goto out; 598 } 599 ptr = ((struct newreno *)tp->ccv->cc_data); 600 if (CC_ALGO(tp)->ctl_output == NULL) { 601 /* Huh, why does new_reno no longer have a set function? */ 602 goto out; 603 } 604 if (ptr == NULL) { 605 /* Just the default values */ 606 old.beta = V_newreno_beta_ecn; 607 old.beta_ecn = V_newreno_beta_ecn; 608 old.newreno_flags = 0; 609 } else { 610 old.beta = ptr->beta; 611 old.beta_ecn = ptr->beta_ecn; 612 old.newreno_flags = ptr->newreno_flags; 613 } 614 sopt.sopt_valsize = sizeof(struct cc_newreno_opts); 615 sopt.sopt_dir = SOPT_SET; 616 opt.name = CC_NEWRENO_BETA; 617 opt.val = rack->r_ctl.rc_saved_beta.beta; 618 error = CC_ALGO(tp)->ctl_output(tp->ccv, &sopt, &opt); 619 if (error) { 620 goto out; 621 } 622 /* 623 * Hack alert we need to set in our newreno_flags 624 * so that Abe behavior is also applied. 625 */ 626 ((struct newreno *)tp->ccv->cc_data)->newreno_flags |= CC_NEWRENO_BETA_ECN_ENABLED; 627 opt.name = CC_NEWRENO_BETA_ECN; 628 opt.val = rack->r_ctl.rc_saved_beta.beta_ecn; 629 error = CC_ALGO(tp)->ctl_output(tp->ccv, &sopt, &opt); 630 if (error) { 631 goto out; 632 } 633 /* Save off the original values for restoral */ 634 memcpy(&rack->r_ctl.rc_saved_beta, &old, sizeof(struct newreno)); 635 out: 636 if (rack_verbose_logging && (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF)) { 637 union tcp_log_stackspecific log; 638 struct timeval tv; 639 640 ptr = ((struct newreno *)tp->ccv->cc_data); 641 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 642 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 643 if (ptr) { 644 log.u_bbr.flex1 = ptr->beta; 645 log.u_bbr.flex2 = ptr->beta_ecn; 646 log.u_bbr.flex3 = ptr->newreno_flags; 647 } 648 log.u_bbr.flex4 = rack->r_ctl.rc_saved_beta.beta; 649 log.u_bbr.flex5 = rack->r_ctl.rc_saved_beta.beta_ecn; 650 log.u_bbr.flex6 = rack->r_ctl.rc_saved_beta.newreno_flags; 651 log.u_bbr.flex7 = rack->gp_ready; 652 log.u_bbr.flex7 <<= 1; 653 log.u_bbr.flex7 |= rack->use_fixed_rate; 654 log.u_bbr.flex7 <<= 1; 655 log.u_bbr.flex7 |= rack->rc_pacing_cc_set; 656 log.u_bbr.pkts_out = rack->r_ctl.rc_prr_sndcnt; 657 log.u_bbr.flex8 = 3; 658 tcp_log_event_(tp, NULL, NULL, NULL, BBR_LOG_CWND, error, 659 0, &log, false, NULL, NULL, 0, &tv); 660 } 661 } 662 663 static void 664 rack_undo_cc_pacing(struct tcp_rack *rack) 665 { 666 struct newreno old, *ptr; 667 struct tcpcb *tp; 668 669 if (rack->rc_pacing_cc_set == 0) 670 return; 671 tp = rack->rc_tp; 672 rack->rc_pacing_cc_set = 0; 673 if (tp->cc_algo == NULL) 674 /* Tcb is leaving */ 675 return; 676 if (strcmp(tp->cc_algo->name, CCALGONAME_NEWRENO) != 0) { 677 /* Not new-reno nothing to do! */ 678 return; 679 } 680 ptr = ((struct newreno *)tp->ccv->cc_data); 681 if (ptr == NULL) { 682 /* 683 * This happens at rack_fini() if the 684 * cc module gets freed on us. In that 685 * case we loose our "new" settings but 686 * thats ok, since the tcb is going away anyway. 687 */ 688 return; 689 } 690 /* Grab out our set values */ 691 memcpy(&old, ptr, sizeof(struct newreno)); 692 /* Copy back in the original values */ 693 memcpy(ptr, &rack->r_ctl.rc_saved_beta, sizeof(struct newreno)); 694 /* Now save back the values we had set in (for when pacing is restored) */ 695 memcpy(&rack->r_ctl.rc_saved_beta, &old, sizeof(struct newreno)); 696 if (rack_verbose_logging && (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF)) { 697 union tcp_log_stackspecific log; 698 struct timeval tv; 699 700 ptr = ((struct newreno *)tp->ccv->cc_data); 701 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 702 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 703 log.u_bbr.flex1 = ptr->beta; 704 log.u_bbr.flex2 = ptr->beta_ecn; 705 log.u_bbr.flex3 = ptr->newreno_flags; 706 log.u_bbr.flex4 = rack->r_ctl.rc_saved_beta.beta; 707 log.u_bbr.flex5 = rack->r_ctl.rc_saved_beta.beta_ecn; 708 log.u_bbr.flex6 = rack->r_ctl.rc_saved_beta.newreno_flags; 709 log.u_bbr.flex7 = rack->gp_ready; 710 log.u_bbr.flex7 <<= 1; 711 log.u_bbr.flex7 |= rack->use_fixed_rate; 712 log.u_bbr.flex7 <<= 1; 713 log.u_bbr.flex7 |= rack->rc_pacing_cc_set; 714 log.u_bbr.pkts_out = rack->r_ctl.rc_prr_sndcnt; 715 log.u_bbr.flex8 = 4; 716 tcp_log_event_(tp, NULL, NULL, NULL, BBR_LOG_CWND, 0, 717 0, &log, false, NULL, NULL, 0, &tv); 718 } 719 } 720 721 #ifdef NETFLIX_PEAKRATE 722 static inline void 723 rack_update_peakrate_thr(struct tcpcb *tp) 724 { 725 /* Keep in mind that t_maxpeakrate is in B/s. */ 726 uint64_t peak; 727 peak = uqmax((tp->t_maxseg * 2), 728 (((uint64_t)tp->t_maxpeakrate * (uint64_t)(tp->t_srtt)) / (uint64_t)HPTS_USEC_IN_SEC)); 729 tp->t_peakrate_thr = (uint32_t)uqmin(peak, UINT32_MAX); 730 } 731 #endif 732 733 static int 734 sysctl_rack_clear(SYSCTL_HANDLER_ARGS) 735 { 736 uint32_t stat; 737 int32_t error; 738 739 error = SYSCTL_OUT(req, &rack_clear_counter, sizeof(uint32_t)); 740 if (error || req->newptr == NULL) 741 return error; 742 743 error = SYSCTL_IN(req, &stat, sizeof(uint32_t)); 744 if (error) 745 return (error); 746 if (stat == 1) { 747 #ifdef INVARIANTS 748 printf("Clearing RACK counters\n"); 749 #endif 750 counter_u64_zero(rack_tlp_tot); 751 counter_u64_zero(rack_tlp_newdata); 752 counter_u64_zero(rack_tlp_retran); 753 counter_u64_zero(rack_tlp_retran_bytes); 754 counter_u64_zero(rack_to_tot); 755 counter_u64_zero(rack_saw_enobuf); 756 counter_u64_zero(rack_saw_enobuf_hw); 757 counter_u64_zero(rack_saw_enetunreach); 758 counter_u64_zero(rack_persists_sends); 759 counter_u64_zero(rack_persists_acks); 760 counter_u64_zero(rack_persists_loss); 761 counter_u64_zero(rack_persists_lost_ends); 762 #ifdef INVARIANTS 763 counter_u64_zero(rack_adjust_map_bw); 764 #endif 765 counter_u64_zero(rack_to_alloc_hard); 766 counter_u64_zero(rack_to_alloc_emerg); 767 counter_u64_zero(rack_sack_proc_all); 768 counter_u64_zero(rack_fto_send); 769 counter_u64_zero(rack_fto_rsm_send); 770 counter_u64_zero(rack_extended_rfo); 771 counter_u64_zero(rack_hw_pace_init_fail); 772 counter_u64_zero(rack_hw_pace_lost); 773 counter_u64_zero(rack_non_fto_send); 774 counter_u64_zero(rack_nfto_resend); 775 counter_u64_zero(rack_sack_proc_short); 776 counter_u64_zero(rack_sack_proc_restart); 777 counter_u64_zero(rack_to_alloc); 778 counter_u64_zero(rack_to_alloc_limited); 779 counter_u64_zero(rack_alloc_limited_conns); 780 counter_u64_zero(rack_split_limited); 781 counter_u64_zero(rack_multi_single_eq); 782 counter_u64_zero(rack_proc_non_comp_ack); 783 counter_u64_zero(rack_sack_attacks_detected); 784 counter_u64_zero(rack_sack_attacks_reversed); 785 counter_u64_zero(rack_sack_used_next_merge); 786 counter_u64_zero(rack_sack_used_prev_merge); 787 counter_u64_zero(rack_sack_splits); 788 counter_u64_zero(rack_sack_skipped_acked); 789 counter_u64_zero(rack_ack_total); 790 counter_u64_zero(rack_express_sack); 791 counter_u64_zero(rack_sack_total); 792 counter_u64_zero(rack_move_none); 793 counter_u64_zero(rack_move_some); 794 counter_u64_zero(rack_try_scwnd); 795 counter_u64_zero(rack_collapsed_win); 796 counter_u64_zero(rack_collapsed_win_rxt); 797 counter_u64_zero(rack_collapsed_win_seen); 798 counter_u64_zero(rack_collapsed_win_rxt_bytes); 799 } 800 rack_clear_counter = 0; 801 return (0); 802 } 803 804 static void 805 rack_init_sysctls(void) 806 { 807 struct sysctl_oid *rack_counters; 808 struct sysctl_oid *rack_attack; 809 struct sysctl_oid *rack_pacing; 810 struct sysctl_oid *rack_timely; 811 struct sysctl_oid *rack_timers; 812 struct sysctl_oid *rack_tlp; 813 struct sysctl_oid *rack_misc; 814 struct sysctl_oid *rack_features; 815 struct sysctl_oid *rack_measure; 816 struct sysctl_oid *rack_probertt; 817 struct sysctl_oid *rack_hw_pacing; 818 struct sysctl_oid *rack_tracepoint; 819 820 rack_attack = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 821 SYSCTL_CHILDREN(rack_sysctl_root), 822 OID_AUTO, 823 "sack_attack", 824 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 825 "Rack Sack Attack Counters and Controls"); 826 rack_counters = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 827 SYSCTL_CHILDREN(rack_sysctl_root), 828 OID_AUTO, 829 "stats", 830 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 831 "Rack Counters"); 832 SYSCTL_ADD_S32(&rack_sysctl_ctx, 833 SYSCTL_CHILDREN(rack_sysctl_root), 834 OID_AUTO, "rate_sample_method", CTLFLAG_RW, 835 &rack_rate_sample_method , USE_RTT_LOW, 836 "What method should we use for rate sampling 0=high, 1=low "); 837 /* Probe rtt related controls */ 838 rack_probertt = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 839 SYSCTL_CHILDREN(rack_sysctl_root), 840 OID_AUTO, 841 "probertt", 842 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 843 "ProbeRTT related Controls"); 844 SYSCTL_ADD_U16(&rack_sysctl_ctx, 845 SYSCTL_CHILDREN(rack_probertt), 846 OID_AUTO, "exit_per_hpb", CTLFLAG_RW, 847 &rack_atexit_prtt_hbp, 130, 848 "What percentage above goodput do we clamp CA/SS to at exit on high-BDP path 110%"); 849 SYSCTL_ADD_U16(&rack_sysctl_ctx, 850 SYSCTL_CHILDREN(rack_probertt), 851 OID_AUTO, "exit_per_nonhpb", CTLFLAG_RW, 852 &rack_atexit_prtt, 130, 853 "What percentage above goodput do we clamp CA/SS to at exit on a non high-BDP path 100%"); 854 SYSCTL_ADD_U16(&rack_sysctl_ctx, 855 SYSCTL_CHILDREN(rack_probertt), 856 OID_AUTO, "gp_per_mul", CTLFLAG_RW, 857 &rack_per_of_gp_probertt, 60, 858 "What percentage of goodput do we pace at in probertt"); 859 SYSCTL_ADD_U16(&rack_sysctl_ctx, 860 SYSCTL_CHILDREN(rack_probertt), 861 OID_AUTO, "gp_per_reduce", CTLFLAG_RW, 862 &rack_per_of_gp_probertt_reduce, 10, 863 "What percentage of goodput do we reduce every gp_srtt"); 864 SYSCTL_ADD_U16(&rack_sysctl_ctx, 865 SYSCTL_CHILDREN(rack_probertt), 866 OID_AUTO, "gp_per_low", CTLFLAG_RW, 867 &rack_per_of_gp_lowthresh, 40, 868 "What percentage of goodput do we allow the multiplier to fall to"); 869 SYSCTL_ADD_U32(&rack_sysctl_ctx, 870 SYSCTL_CHILDREN(rack_probertt), 871 OID_AUTO, "time_between", CTLFLAG_RW, 872 & rack_time_between_probertt, 96000000, 873 "How many useconds between the lowest rtt falling must past before we enter probertt"); 874 SYSCTL_ADD_U32(&rack_sysctl_ctx, 875 SYSCTL_CHILDREN(rack_probertt), 876 OID_AUTO, "safety", CTLFLAG_RW, 877 &rack_probe_rtt_safety_val, 2000000, 878 "If not zero, provides a maximum usecond that you can stay in probertt (2sec = 2000000)"); 879 SYSCTL_ADD_U32(&rack_sysctl_ctx, 880 SYSCTL_CHILDREN(rack_probertt), 881 OID_AUTO, "sets_cwnd", CTLFLAG_RW, 882 &rack_probe_rtt_sets_cwnd, 0, 883 "Do we set the cwnd too (if always_lower is on)"); 884 SYSCTL_ADD_U32(&rack_sysctl_ctx, 885 SYSCTL_CHILDREN(rack_probertt), 886 OID_AUTO, "maxdrainsrtts", CTLFLAG_RW, 887 &rack_max_drain_wait, 2, 888 "Maximum number of gp_srtt's to hold in drain waiting for flight to reach goal"); 889 SYSCTL_ADD_U32(&rack_sysctl_ctx, 890 SYSCTL_CHILDREN(rack_probertt), 891 OID_AUTO, "mustdrainsrtts", CTLFLAG_RW, 892 &rack_must_drain, 1, 893 "We must drain this many gp_srtt's waiting for flight to reach goal"); 894 SYSCTL_ADD_U32(&rack_sysctl_ctx, 895 SYSCTL_CHILDREN(rack_probertt), 896 OID_AUTO, "goal_use_min_entry", CTLFLAG_RW, 897 &rack_probertt_use_min_rtt_entry, 1, 898 "Should we use the min-rtt to calculate the goal rtt (else gp_srtt) at entry"); 899 SYSCTL_ADD_U32(&rack_sysctl_ctx, 900 SYSCTL_CHILDREN(rack_probertt), 901 OID_AUTO, "goal_use_min_exit", CTLFLAG_RW, 902 &rack_probertt_use_min_rtt_exit, 0, 903 "How to set cwnd at exit, 0 - dynamic, 1 - use min-rtt, 2 - use curgprtt, 3 - entry gp-rtt"); 904 SYSCTL_ADD_U32(&rack_sysctl_ctx, 905 SYSCTL_CHILDREN(rack_probertt), 906 OID_AUTO, "length_div", CTLFLAG_RW, 907 &rack_probertt_gpsrtt_cnt_div, 0, 908 "How many recent goodput srtt periods plus hold tim does probertt last (bottom of fraction)"); 909 SYSCTL_ADD_U32(&rack_sysctl_ctx, 910 SYSCTL_CHILDREN(rack_probertt), 911 OID_AUTO, "length_mul", CTLFLAG_RW, 912 &rack_probertt_gpsrtt_cnt_mul, 0, 913 "How many recent goodput srtt periods plus hold tim does probertt last (top of fraction)"); 914 SYSCTL_ADD_U32(&rack_sysctl_ctx, 915 SYSCTL_CHILDREN(rack_probertt), 916 OID_AUTO, "holdtim_at_target", CTLFLAG_RW, 917 &rack_min_probertt_hold, 200000, 918 "What is the minimum time we hold probertt at target"); 919 SYSCTL_ADD_U32(&rack_sysctl_ctx, 920 SYSCTL_CHILDREN(rack_probertt), 921 OID_AUTO, "filter_life", CTLFLAG_RW, 922 &rack_probertt_filter_life, 10000000, 923 "What is the time for the filters life in useconds"); 924 SYSCTL_ADD_U32(&rack_sysctl_ctx, 925 SYSCTL_CHILDREN(rack_probertt), 926 OID_AUTO, "lower_within", CTLFLAG_RW, 927 &rack_probertt_lower_within, 10, 928 "If the rtt goes lower within this percentage of the time, go into probe-rtt"); 929 SYSCTL_ADD_U32(&rack_sysctl_ctx, 930 SYSCTL_CHILDREN(rack_probertt), 931 OID_AUTO, "must_move", CTLFLAG_RW, 932 &rack_min_rtt_movement, 250, 933 "How much is the minimum movement in rtt to count as a drop for probertt purposes"); 934 SYSCTL_ADD_U32(&rack_sysctl_ctx, 935 SYSCTL_CHILDREN(rack_probertt), 936 OID_AUTO, "clear_is_cnts", CTLFLAG_RW, 937 &rack_probertt_clear_is, 1, 938 "Do we clear I/S counts on exiting probe-rtt"); 939 SYSCTL_ADD_S32(&rack_sysctl_ctx, 940 SYSCTL_CHILDREN(rack_probertt), 941 OID_AUTO, "hbp_extra_drain", CTLFLAG_RW, 942 &rack_max_drain_hbp, 1, 943 "How many extra drain gpsrtt's do we get in highly buffered paths"); 944 SYSCTL_ADD_S32(&rack_sysctl_ctx, 945 SYSCTL_CHILDREN(rack_probertt), 946 OID_AUTO, "hbp_threshold", CTLFLAG_RW, 947 &rack_hbp_thresh, 3, 948 "We are highly buffered if min_rtt_seen / max_rtt_seen > this-threshold"); 949 950 rack_tracepoint = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 951 SYSCTL_CHILDREN(rack_sysctl_root), 952 OID_AUTO, 953 "tp", 954 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 955 "Rack tracepoint facility"); 956 SYSCTL_ADD_U32(&rack_sysctl_ctx, 957 SYSCTL_CHILDREN(rack_tracepoint), 958 OID_AUTO, "number", CTLFLAG_RW, 959 &rack_trace_point_config, 0, 960 "What is the trace point number to activate (0=none, 0xffffffff = all)?"); 961 SYSCTL_ADD_U32(&rack_sysctl_ctx, 962 SYSCTL_CHILDREN(rack_tracepoint), 963 OID_AUTO, "bbmode", CTLFLAG_RW, 964 &rack_trace_point_bb_mode, 4, 965 "What is BB logging mode that is activated?"); 966 SYSCTL_ADD_S32(&rack_sysctl_ctx, 967 SYSCTL_CHILDREN(rack_tracepoint), 968 OID_AUTO, "count", CTLFLAG_RW, 969 &rack_trace_point_count, 0, 970 "How many connections will have BB logging turned on that hit the tracepoint?"); 971 /* Pacing related sysctls */ 972 rack_pacing = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 973 SYSCTL_CHILDREN(rack_sysctl_root), 974 OID_AUTO, 975 "pacing", 976 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 977 "Pacing related Controls"); 978 SYSCTL_ADD_S32(&rack_sysctl_ctx, 979 SYSCTL_CHILDREN(rack_pacing), 980 OID_AUTO, "max_pace_over", CTLFLAG_RW, 981 &rack_max_per_above, 30, 982 "What is the maximum allowable percentage that we can pace above (so 30 = 130% of our goal)"); 983 SYSCTL_ADD_S32(&rack_sysctl_ctx, 984 SYSCTL_CHILDREN(rack_pacing), 985 OID_AUTO, "pace_to_one", CTLFLAG_RW, 986 &rack_pace_one_seg, 0, 987 "Do we allow low b/w pacing of 1MSS instead of two"); 988 SYSCTL_ADD_S32(&rack_sysctl_ctx, 989 SYSCTL_CHILDREN(rack_pacing), 990 OID_AUTO, "limit_wsrtt", CTLFLAG_RW, 991 &rack_limit_time_with_srtt, 0, 992 "Do we limit pacing time based on srtt"); 993 SYSCTL_ADD_S32(&rack_sysctl_ctx, 994 SYSCTL_CHILDREN(rack_pacing), 995 OID_AUTO, "init_win", CTLFLAG_RW, 996 &rack_default_init_window, 0, 997 "Do we have a rack initial window 0 = system default"); 998 SYSCTL_ADD_U16(&rack_sysctl_ctx, 999 SYSCTL_CHILDREN(rack_pacing), 1000 OID_AUTO, "gp_per_ss", CTLFLAG_RW, 1001 &rack_per_of_gp_ss, 250, 1002 "If non zero, what percentage of goodput to pace at in slow start"); 1003 SYSCTL_ADD_U16(&rack_sysctl_ctx, 1004 SYSCTL_CHILDREN(rack_pacing), 1005 OID_AUTO, "gp_per_ca", CTLFLAG_RW, 1006 &rack_per_of_gp_ca, 150, 1007 "If non zero, what percentage of goodput to pace at in congestion avoidance"); 1008 SYSCTL_ADD_U16(&rack_sysctl_ctx, 1009 SYSCTL_CHILDREN(rack_pacing), 1010 OID_AUTO, "gp_per_rec", CTLFLAG_RW, 1011 &rack_per_of_gp_rec, 200, 1012 "If non zero, what percentage of goodput to pace at in recovery"); 1013 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1014 SYSCTL_CHILDREN(rack_pacing), 1015 OID_AUTO, "pace_max_seg", CTLFLAG_RW, 1016 &rack_hptsi_segments, 40, 1017 "What size is the max for TSO segments in pacing and burst mitigation"); 1018 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1019 SYSCTL_CHILDREN(rack_pacing), 1020 OID_AUTO, "burst_reduces", CTLFLAG_RW, 1021 &rack_slot_reduction, 4, 1022 "When doing only burst mitigation what is the reduce divisor"); 1023 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1024 SYSCTL_CHILDREN(rack_sysctl_root), 1025 OID_AUTO, "use_pacing", CTLFLAG_RW, 1026 &rack_pace_every_seg, 0, 1027 "If set we use pacing, if clear we use only the original burst mitigation"); 1028 SYSCTL_ADD_U64(&rack_sysctl_ctx, 1029 SYSCTL_CHILDREN(rack_pacing), 1030 OID_AUTO, "rate_cap", CTLFLAG_RW, 1031 &rack_bw_rate_cap, 0, 1032 "If set we apply this value to the absolute rate cap used by pacing"); 1033 SYSCTL_ADD_U8(&rack_sysctl_ctx, 1034 SYSCTL_CHILDREN(rack_sysctl_root), 1035 OID_AUTO, "req_measure_cnt", CTLFLAG_RW, 1036 &rack_req_measurements, 1, 1037 "If doing dynamic pacing, how many measurements must be in before we start pacing?"); 1038 /* Hardware pacing */ 1039 rack_hw_pacing = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 1040 SYSCTL_CHILDREN(rack_sysctl_root), 1041 OID_AUTO, 1042 "hdwr_pacing", 1043 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 1044 "Pacing related Controls"); 1045 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1046 SYSCTL_CHILDREN(rack_hw_pacing), 1047 OID_AUTO, "rwnd_factor", CTLFLAG_RW, 1048 &rack_hw_rwnd_factor, 2, 1049 "How many times does snd_wnd need to be bigger than pace_max_seg so we will hold off and get more acks?"); 1050 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1051 SYSCTL_CHILDREN(rack_hw_pacing), 1052 OID_AUTO, "pace_enobuf_mult", CTLFLAG_RW, 1053 &rack_enobuf_hw_boost_mult, 2, 1054 "By how many time_betweens should we boost the pacing time if we see a ENOBUFS?"); 1055 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1056 SYSCTL_CHILDREN(rack_hw_pacing), 1057 OID_AUTO, "pace_enobuf_max", CTLFLAG_RW, 1058 &rack_enobuf_hw_max, 2, 1059 "What is the max boost the pacing time if we see a ENOBUFS?"); 1060 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1061 SYSCTL_CHILDREN(rack_hw_pacing), 1062 OID_AUTO, "pace_enobuf_min", CTLFLAG_RW, 1063 &rack_enobuf_hw_min, 2, 1064 "What is the min boost the pacing time if we see a ENOBUFS?"); 1065 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1066 SYSCTL_CHILDREN(rack_hw_pacing), 1067 OID_AUTO, "enable", CTLFLAG_RW, 1068 &rack_enable_hw_pacing, 0, 1069 "Should RACK attempt to use hw pacing?"); 1070 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1071 SYSCTL_CHILDREN(rack_hw_pacing), 1072 OID_AUTO, "rate_cap", CTLFLAG_RW, 1073 &rack_hw_rate_caps, 1, 1074 "Does the highest hardware pacing rate cap the rate we will send at??"); 1075 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1076 SYSCTL_CHILDREN(rack_hw_pacing), 1077 OID_AUTO, "rate_min", CTLFLAG_RW, 1078 &rack_hw_rate_min, 0, 1079 "Do we need a minimum estimate of this many bytes per second in order to engage hw pacing?"); 1080 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1081 SYSCTL_CHILDREN(rack_hw_pacing), 1082 OID_AUTO, "rate_to_low", CTLFLAG_RW, 1083 &rack_hw_rate_to_low, 0, 1084 "If we fall below this rate, dis-engage hw pacing?"); 1085 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1086 SYSCTL_CHILDREN(rack_hw_pacing), 1087 OID_AUTO, "up_only", CTLFLAG_RW, 1088 &rack_hw_up_only, 1, 1089 "Do we allow hw pacing to lower the rate selected?"); 1090 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1091 SYSCTL_CHILDREN(rack_hw_pacing), 1092 OID_AUTO, "extra_mss_precise", CTLFLAG_RW, 1093 &rack_hw_pace_extra_slots, 2, 1094 "If the rates between software and hardware match precisely how many extra time_betweens do we get?"); 1095 rack_timely = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 1096 SYSCTL_CHILDREN(rack_sysctl_root), 1097 OID_AUTO, 1098 "timely", 1099 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 1100 "Rack Timely RTT Controls"); 1101 /* Timely based GP dynmics */ 1102 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1103 SYSCTL_CHILDREN(rack_timely), 1104 OID_AUTO, "upper", CTLFLAG_RW, 1105 &rack_gp_per_bw_mul_up, 2, 1106 "Rack timely upper range for equal b/w (in percentage)"); 1107 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1108 SYSCTL_CHILDREN(rack_timely), 1109 OID_AUTO, "lower", CTLFLAG_RW, 1110 &rack_gp_per_bw_mul_down, 4, 1111 "Rack timely lower range for equal b/w (in percentage)"); 1112 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1113 SYSCTL_CHILDREN(rack_timely), 1114 OID_AUTO, "rtt_max_mul", CTLFLAG_RW, 1115 &rack_gp_rtt_maxmul, 3, 1116 "Rack timely multiplier of lowest rtt for rtt_max"); 1117 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1118 SYSCTL_CHILDREN(rack_timely), 1119 OID_AUTO, "rtt_min_div", CTLFLAG_RW, 1120 &rack_gp_rtt_mindiv, 4, 1121 "Rack timely divisor used for rtt + (rtt * mul/divisor) for check for lower rtt"); 1122 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1123 SYSCTL_CHILDREN(rack_timely), 1124 OID_AUTO, "rtt_min_mul", CTLFLAG_RW, 1125 &rack_gp_rtt_minmul, 1, 1126 "Rack timely multiplier used for rtt + (rtt * mul/divisor) for check for lower rtt"); 1127 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1128 SYSCTL_CHILDREN(rack_timely), 1129 OID_AUTO, "decrease", CTLFLAG_RW, 1130 &rack_gp_decrease_per, 20, 1131 "Rack timely decrease percentage of our GP multiplication factor"); 1132 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1133 SYSCTL_CHILDREN(rack_timely), 1134 OID_AUTO, "increase", CTLFLAG_RW, 1135 &rack_gp_increase_per, 2, 1136 "Rack timely increase perentage of our GP multiplication factor"); 1137 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1138 SYSCTL_CHILDREN(rack_timely), 1139 OID_AUTO, "lowerbound", CTLFLAG_RW, 1140 &rack_per_lower_bound, 50, 1141 "Rack timely lowest percentage we allow GP multiplier to fall to"); 1142 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1143 SYSCTL_CHILDREN(rack_timely), 1144 OID_AUTO, "upperboundss", CTLFLAG_RW, 1145 &rack_per_upper_bound_ss, 0, 1146 "Rack timely highest percentage we allow GP multiplier in SS to raise to (0 is no upperbound)"); 1147 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1148 SYSCTL_CHILDREN(rack_timely), 1149 OID_AUTO, "upperboundca", CTLFLAG_RW, 1150 &rack_per_upper_bound_ca, 0, 1151 "Rack timely highest percentage we allow GP multiplier to CA raise to (0 is no upperbound)"); 1152 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1153 SYSCTL_CHILDREN(rack_timely), 1154 OID_AUTO, "dynamicgp", CTLFLAG_RW, 1155 &rack_do_dyn_mul, 0, 1156 "Rack timely do we enable dynmaic timely goodput by default"); 1157 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1158 SYSCTL_CHILDREN(rack_timely), 1159 OID_AUTO, "no_rec_red", CTLFLAG_RW, 1160 &rack_gp_no_rec_chg, 1, 1161 "Rack timely do we prohibit the recovery multiplier from being lowered"); 1162 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1163 SYSCTL_CHILDREN(rack_timely), 1164 OID_AUTO, "red_clear_cnt", CTLFLAG_RW, 1165 &rack_timely_dec_clear, 6, 1166 "Rack timely what threshold do we count to before another boost during b/w decent"); 1167 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1168 SYSCTL_CHILDREN(rack_timely), 1169 OID_AUTO, "max_push_rise", CTLFLAG_RW, 1170 &rack_timely_max_push_rise, 3, 1171 "Rack timely how many times do we push up with b/w increase"); 1172 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1173 SYSCTL_CHILDREN(rack_timely), 1174 OID_AUTO, "max_push_drop", CTLFLAG_RW, 1175 &rack_timely_max_push_drop, 3, 1176 "Rack timely how many times do we push back on b/w decent"); 1177 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1178 SYSCTL_CHILDREN(rack_timely), 1179 OID_AUTO, "min_segs", CTLFLAG_RW, 1180 &rack_timely_min_segs, 4, 1181 "Rack timely when setting the cwnd what is the min num segments"); 1182 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1183 SYSCTL_CHILDREN(rack_timely), 1184 OID_AUTO, "noback_max", CTLFLAG_RW, 1185 &rack_use_max_for_nobackoff, 0, 1186 "Rack timely when deciding if to backoff on a loss, do we use under max rtt else min"); 1187 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1188 SYSCTL_CHILDREN(rack_timely), 1189 OID_AUTO, "interim_timely_only", CTLFLAG_RW, 1190 &rack_timely_int_timely_only, 0, 1191 "Rack timely when doing interim timely's do we only do timely (no b/w consideration)"); 1192 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1193 SYSCTL_CHILDREN(rack_timely), 1194 OID_AUTO, "nonstop", CTLFLAG_RW, 1195 &rack_timely_no_stopping, 0, 1196 "Rack timely don't stop increase"); 1197 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1198 SYSCTL_CHILDREN(rack_timely), 1199 OID_AUTO, "dec_raise_thresh", CTLFLAG_RW, 1200 &rack_down_raise_thresh, 100, 1201 "If the CA or SS is below this threshold raise on the first 3 b/w lowers (0=always)"); 1202 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1203 SYSCTL_CHILDREN(rack_timely), 1204 OID_AUTO, "bottom_drag_segs", CTLFLAG_RW, 1205 &rack_req_segs, 1, 1206 "Bottom dragging if not these many segments outstanding and room"); 1207 1208 /* TLP and Rack related parameters */ 1209 rack_tlp = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 1210 SYSCTL_CHILDREN(rack_sysctl_root), 1211 OID_AUTO, 1212 "tlp", 1213 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 1214 "TLP and Rack related Controls"); 1215 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1216 SYSCTL_CHILDREN(rack_tlp), 1217 OID_AUTO, "use_rrr", CTLFLAG_RW, 1218 &use_rack_rr, 1, 1219 "Do we use Rack Rapid Recovery"); 1220 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1221 SYSCTL_CHILDREN(rack_tlp), 1222 OID_AUTO, "post_rec_labc", CTLFLAG_RW, 1223 &rack_max_abc_post_recovery, 2, 1224 "Since we do early recovery, do we override the l_abc to a value, if so what?"); 1225 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1226 SYSCTL_CHILDREN(rack_tlp), 1227 OID_AUTO, "nonrxt_use_cr", CTLFLAG_RW, 1228 &rack_non_rxt_use_cr, 0, 1229 "Do we use ss/ca rate if in recovery we are transmitting a new data chunk"); 1230 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1231 SYSCTL_CHILDREN(rack_tlp), 1232 OID_AUTO, "tlpmethod", CTLFLAG_RW, 1233 &rack_tlp_threshold_use, TLP_USE_TWO_ONE, 1234 "What method do we do for TLP time calc 0=no-de-ack-comp, 1=ID, 2=2.1, 3=2.2"); 1235 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1236 SYSCTL_CHILDREN(rack_tlp), 1237 OID_AUTO, "limit", CTLFLAG_RW, 1238 &rack_tlp_limit, 2, 1239 "How many TLP's can be sent without sending new data"); 1240 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1241 SYSCTL_CHILDREN(rack_tlp), 1242 OID_AUTO, "use_greater", CTLFLAG_RW, 1243 &rack_tlp_use_greater, 1, 1244 "Should we use the rack_rtt time if its greater than srtt"); 1245 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1246 SYSCTL_CHILDREN(rack_tlp), 1247 OID_AUTO, "tlpminto", CTLFLAG_RW, 1248 &rack_tlp_min, 10000, 1249 "TLP minimum timeout per the specification (in microseconds)"); 1250 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1251 SYSCTL_CHILDREN(rack_tlp), 1252 OID_AUTO, "send_oldest", CTLFLAG_RW, 1253 &rack_always_send_oldest, 0, 1254 "Should we always send the oldest TLP and RACK-TLP"); 1255 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1256 SYSCTL_CHILDREN(rack_tlp), 1257 OID_AUTO, "rack_tlimit", CTLFLAG_RW, 1258 &rack_limited_retran, 0, 1259 "How many times can a rack timeout drive out sends"); 1260 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1261 SYSCTL_CHILDREN(rack_tlp), 1262 OID_AUTO, "tlp_cwnd_flag", CTLFLAG_RW, 1263 &rack_lower_cwnd_at_tlp, 0, 1264 "When a TLP completes a retran should we enter recovery"); 1265 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1266 SYSCTL_CHILDREN(rack_tlp), 1267 OID_AUTO, "reorder_thresh", CTLFLAG_RW, 1268 &rack_reorder_thresh, 2, 1269 "What factor for rack will be added when seeing reordering (shift right)"); 1270 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1271 SYSCTL_CHILDREN(rack_tlp), 1272 OID_AUTO, "rtt_tlp_thresh", CTLFLAG_RW, 1273 &rack_tlp_thresh, 1, 1274 "What divisor for TLP rtt/retran will be added (1=rtt, 2=1/2 rtt etc)"); 1275 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1276 SYSCTL_CHILDREN(rack_tlp), 1277 OID_AUTO, "reorder_fade", CTLFLAG_RW, 1278 &rack_reorder_fade, 60000000, 1279 "Does reorder detection fade, if so how many microseconds (0 means never)"); 1280 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1281 SYSCTL_CHILDREN(rack_tlp), 1282 OID_AUTO, "pktdelay", CTLFLAG_RW, 1283 &rack_pkt_delay, 1000, 1284 "Extra RACK time (in microseconds) besides reordering thresh"); 1285 1286 /* Timer related controls */ 1287 rack_timers = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 1288 SYSCTL_CHILDREN(rack_sysctl_root), 1289 OID_AUTO, 1290 "timers", 1291 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 1292 "Timer related controls"); 1293 SYSCTL_ADD_U32(&rack_sysctl_ctx, 1294 SYSCTL_CHILDREN(rack_timers), 1295 OID_AUTO, "persmin", CTLFLAG_RW, 1296 &rack_persist_min, 250000, 1297 "What is the minimum time in microseconds between persists"); 1298 SYSCTL_ADD_U32(&rack_sysctl_ctx, 1299 SYSCTL_CHILDREN(rack_timers), 1300 OID_AUTO, "persmax", CTLFLAG_RW, 1301 &rack_persist_max, 2000000, 1302 "What is the largest delay in microseconds between persists"); 1303 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1304 SYSCTL_CHILDREN(rack_timers), 1305 OID_AUTO, "delayed_ack", CTLFLAG_RW, 1306 &rack_delayed_ack_time, 40000, 1307 "Delayed ack time (40ms in microseconds)"); 1308 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1309 SYSCTL_CHILDREN(rack_timers), 1310 OID_AUTO, "minrto", CTLFLAG_RW, 1311 &rack_rto_min, 30000, 1312 "Minimum RTO in microseconds -- set with caution below 1000 due to TLP"); 1313 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1314 SYSCTL_CHILDREN(rack_timers), 1315 OID_AUTO, "maxrto", CTLFLAG_RW, 1316 &rack_rto_max, 4000000, 1317 "Maximum RTO in microseconds -- should be at least as large as min_rto"); 1318 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1319 SYSCTL_CHILDREN(rack_timers), 1320 OID_AUTO, "minto", CTLFLAG_RW, 1321 &rack_min_to, 1000, 1322 "Minimum rack timeout in microseconds"); 1323 /* Measure controls */ 1324 rack_measure = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 1325 SYSCTL_CHILDREN(rack_sysctl_root), 1326 OID_AUTO, 1327 "measure", 1328 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 1329 "Measure related controls"); 1330 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1331 SYSCTL_CHILDREN(rack_measure), 1332 OID_AUTO, "wma_divisor", CTLFLAG_RW, 1333 &rack_wma_divisor, 8, 1334 "When doing b/w calculation what is the divisor for the WMA"); 1335 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1336 SYSCTL_CHILDREN(rack_measure), 1337 OID_AUTO, "end_cwnd", CTLFLAG_RW, 1338 &rack_cwnd_block_ends_measure, 0, 1339 "Does a cwnd just-return end the measurement window (app limited)"); 1340 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1341 SYSCTL_CHILDREN(rack_measure), 1342 OID_AUTO, "end_rwnd", CTLFLAG_RW, 1343 &rack_rwnd_block_ends_measure, 0, 1344 "Does an rwnd just-return end the measurement window (app limited -- not persists)"); 1345 SYSCTL_ADD_U32(&rack_sysctl_ctx, 1346 SYSCTL_CHILDREN(rack_measure), 1347 OID_AUTO, "min_target", CTLFLAG_RW, 1348 &rack_def_data_window, 20, 1349 "What is the minimum target window (in mss) for a GP measurements"); 1350 SYSCTL_ADD_U32(&rack_sysctl_ctx, 1351 SYSCTL_CHILDREN(rack_measure), 1352 OID_AUTO, "goal_bdp", CTLFLAG_RW, 1353 &rack_goal_bdp, 2, 1354 "What is the goal BDP to measure"); 1355 SYSCTL_ADD_U32(&rack_sysctl_ctx, 1356 SYSCTL_CHILDREN(rack_measure), 1357 OID_AUTO, "min_srtts", CTLFLAG_RW, 1358 &rack_min_srtts, 1, 1359 "What is the goal BDP to measure"); 1360 SYSCTL_ADD_U32(&rack_sysctl_ctx, 1361 SYSCTL_CHILDREN(rack_measure), 1362 OID_AUTO, "min_measure_tim", CTLFLAG_RW, 1363 &rack_min_measure_usec, 0, 1364 "What is the Minimum time time for a measurement if 0, this is off"); 1365 /* Features */ 1366 rack_features = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 1367 SYSCTL_CHILDREN(rack_sysctl_root), 1368 OID_AUTO, 1369 "features", 1370 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 1371 "Feature controls"); 1372 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1373 SYSCTL_CHILDREN(rack_features), 1374 OID_AUTO, "cmpack", CTLFLAG_RW, 1375 &rack_use_cmp_acks, 1, 1376 "Should RACK have LRO send compressed acks"); 1377 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1378 SYSCTL_CHILDREN(rack_features), 1379 OID_AUTO, "fsb", CTLFLAG_RW, 1380 &rack_use_fsb, 1, 1381 "Should RACK use the fast send block?"); 1382 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1383 SYSCTL_CHILDREN(rack_features), 1384 OID_AUTO, "rfo", CTLFLAG_RW, 1385 &rack_use_rfo, 1, 1386 "Should RACK use rack_fast_output()?"); 1387 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1388 SYSCTL_CHILDREN(rack_features), 1389 OID_AUTO, "rsmrfo", CTLFLAG_RW, 1390 &rack_use_rsm_rfo, 1, 1391 "Should RACK use rack_fast_rsm_output()?"); 1392 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1393 SYSCTL_CHILDREN(rack_features), 1394 OID_AUTO, "non_paced_lro_queue", CTLFLAG_RW, 1395 &rack_enable_mqueue_for_nonpaced, 0, 1396 "Should RACK use mbuf queuing for non-paced connections"); 1397 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1398 SYSCTL_CHILDREN(rack_features), 1399 OID_AUTO, "hystartplusplus", CTLFLAG_RW, 1400 &rack_do_hystart, 0, 1401 "Should RACK enable HyStart++ on connections?"); 1402 /* Misc rack controls */ 1403 rack_misc = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 1404 SYSCTL_CHILDREN(rack_sysctl_root), 1405 OID_AUTO, 1406 "misc", 1407 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 1408 "Misc related controls"); 1409 #ifdef TCP_ACCOUNTING 1410 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1411 SYSCTL_CHILDREN(rack_misc), 1412 OID_AUTO, "tcp_acct", CTLFLAG_RW, 1413 &rack_tcp_accounting, 0, 1414 "Should we turn on TCP accounting for all rack sessions?"); 1415 #endif 1416 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1417 SYSCTL_CHILDREN(rack_misc), 1418 OID_AUTO, "apply_rtt_with_low_conf", CTLFLAG_RW, 1419 &rack_apply_rtt_with_reduced_conf, 0, 1420 "When a persist or keep-alive probe is not answered do we calculate rtt on subsequent answers?"); 1421 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1422 SYSCTL_CHILDREN(rack_misc), 1423 OID_AUTO, "rack_dsack_ctl", CTLFLAG_RW, 1424 &rack_dsack_std_based, 3, 1425 "How do we process dsack with respect to rack timers, bit field, 3 is standards based?"); 1426 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1427 SYSCTL_CHILDREN(rack_misc), 1428 OID_AUTO, "prr_addback_max", CTLFLAG_RW, 1429 &rack_prr_addbackmax, 2, 1430 "What is the maximum number of MSS we allow to be added back if prr can't send all its data?"); 1431 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1432 SYSCTL_CHILDREN(rack_misc), 1433 OID_AUTO, "stats_gets_ms", CTLFLAG_RW, 1434 &rack_stats_gets_ms_rtt, 1, 1435 "What do we feed the stats framework (1 = ms_rtt, 0 = us_rtt, 2 = ms_rtt from hdwr, > 2 usec rtt from hdwr)?"); 1436 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1437 SYSCTL_CHILDREN(rack_misc), 1438 OID_AUTO, "clientlowbuf", CTLFLAG_RW, 1439 &rack_client_low_buf, 0, 1440 "Client low buffer level (below this we are more aggressive in DGP exiting recovery (0 = off)?"); 1441 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1442 SYSCTL_CHILDREN(rack_misc), 1443 OID_AUTO, "defprofile", CTLFLAG_RW, 1444 &rack_def_profile, 0, 1445 "Should RACK use a default profile (0=no, num == profile num)?"); 1446 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1447 SYSCTL_CHILDREN(rack_misc), 1448 OID_AUTO, "shared_cwnd", CTLFLAG_RW, 1449 &rack_enable_shared_cwnd, 1, 1450 "Should RACK try to use the shared cwnd on connections where allowed"); 1451 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1452 SYSCTL_CHILDREN(rack_misc), 1453 OID_AUTO, "limits_on_scwnd", CTLFLAG_RW, 1454 &rack_limits_scwnd, 1, 1455 "Should RACK place low end time limits on the shared cwnd feature"); 1456 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1457 SYSCTL_CHILDREN(rack_misc), 1458 OID_AUTO, "iMac_dack", CTLFLAG_RW, 1459 &rack_use_imac_dack, 0, 1460 "Should RACK try to emulate iMac delayed ack"); 1461 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1462 SYSCTL_CHILDREN(rack_misc), 1463 OID_AUTO, "no_prr", CTLFLAG_RW, 1464 &rack_disable_prr, 0, 1465 "Should RACK not use prr and only pace (must have pacing on)"); 1466 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1467 SYSCTL_CHILDREN(rack_misc), 1468 OID_AUTO, "bb_verbose", CTLFLAG_RW, 1469 &rack_verbose_logging, 0, 1470 "Should RACK black box logging be verbose"); 1471 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1472 SYSCTL_CHILDREN(rack_misc), 1473 OID_AUTO, "data_after_close", CTLFLAG_RW, 1474 &rack_ignore_data_after_close, 1, 1475 "Do we hold off sending a RST until all pending data is ack'd"); 1476 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1477 SYSCTL_CHILDREN(rack_misc), 1478 OID_AUTO, "no_sack_needed", CTLFLAG_RW, 1479 &rack_sack_not_required, 1, 1480 "Do we allow rack to run on connections not supporting SACK"); 1481 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1482 SYSCTL_CHILDREN(rack_misc), 1483 OID_AUTO, "prr_sendalot", CTLFLAG_RW, 1484 &rack_send_a_lot_in_prr, 1, 1485 "Send a lot in prr"); 1486 SYSCTL_ADD_S32(&rack_sysctl_ctx, 1487 SYSCTL_CHILDREN(rack_misc), 1488 OID_AUTO, "autoscale", CTLFLAG_RW, 1489 &rack_autosndbuf_inc, 20, 1490 "What percentage should rack scale up its snd buffer by?"); 1491 /* Sack Attacker detection stuff */ 1492 SYSCTL_ADD_U32(&rack_sysctl_ctx, 1493 SYSCTL_CHILDREN(rack_attack), 1494 OID_AUTO, "detect_highsackratio", CTLFLAG_RW, 1495 &rack_highest_sack_thresh_seen, 0, 1496 "Highest sack to ack ratio seen"); 1497 SYSCTL_ADD_U32(&rack_sysctl_ctx, 1498 SYSCTL_CHILDREN(rack_attack), 1499 OID_AUTO, "detect_highmoveratio", CTLFLAG_RW, 1500 &rack_highest_move_thresh_seen, 0, 1501 "Highest move to non-move ratio seen"); 1502 rack_ack_total = counter_u64_alloc(M_WAITOK); 1503 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1504 SYSCTL_CHILDREN(rack_attack), 1505 OID_AUTO, "acktotal", CTLFLAG_RD, 1506 &rack_ack_total, 1507 "Total number of Ack's"); 1508 rack_express_sack = counter_u64_alloc(M_WAITOK); 1509 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1510 SYSCTL_CHILDREN(rack_attack), 1511 OID_AUTO, "exp_sacktotal", CTLFLAG_RD, 1512 &rack_express_sack, 1513 "Total expresss number of Sack's"); 1514 rack_sack_total = counter_u64_alloc(M_WAITOK); 1515 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1516 SYSCTL_CHILDREN(rack_attack), 1517 OID_AUTO, "sacktotal", CTLFLAG_RD, 1518 &rack_sack_total, 1519 "Total number of SACKs"); 1520 rack_move_none = counter_u64_alloc(M_WAITOK); 1521 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1522 SYSCTL_CHILDREN(rack_attack), 1523 OID_AUTO, "move_none", CTLFLAG_RD, 1524 &rack_move_none, 1525 "Total number of SACK index reuse of positions under threshold"); 1526 rack_move_some = counter_u64_alloc(M_WAITOK); 1527 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1528 SYSCTL_CHILDREN(rack_attack), 1529 OID_AUTO, "move_some", CTLFLAG_RD, 1530 &rack_move_some, 1531 "Total number of SACK index reuse of positions over threshold"); 1532 rack_sack_attacks_detected = counter_u64_alloc(M_WAITOK); 1533 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1534 SYSCTL_CHILDREN(rack_attack), 1535 OID_AUTO, "attacks", CTLFLAG_RD, 1536 &rack_sack_attacks_detected, 1537 "Total number of SACK attackers that had sack disabled"); 1538 rack_sack_attacks_reversed = counter_u64_alloc(M_WAITOK); 1539 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1540 SYSCTL_CHILDREN(rack_attack), 1541 OID_AUTO, "reversed", CTLFLAG_RD, 1542 &rack_sack_attacks_reversed, 1543 "Total number of SACK attackers that were later determined false positive"); 1544 rack_sack_used_next_merge = counter_u64_alloc(M_WAITOK); 1545 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1546 SYSCTL_CHILDREN(rack_attack), 1547 OID_AUTO, "nextmerge", CTLFLAG_RD, 1548 &rack_sack_used_next_merge, 1549 "Total number of times we used the next merge"); 1550 rack_sack_used_prev_merge = counter_u64_alloc(M_WAITOK); 1551 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1552 SYSCTL_CHILDREN(rack_attack), 1553 OID_AUTO, "prevmerge", CTLFLAG_RD, 1554 &rack_sack_used_prev_merge, 1555 "Total number of times we used the prev merge"); 1556 /* Counters */ 1557 rack_fto_send = counter_u64_alloc(M_WAITOK); 1558 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1559 SYSCTL_CHILDREN(rack_counters), 1560 OID_AUTO, "fto_send", CTLFLAG_RD, 1561 &rack_fto_send, "Total number of rack_fast_output sends"); 1562 rack_fto_rsm_send = counter_u64_alloc(M_WAITOK); 1563 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1564 SYSCTL_CHILDREN(rack_counters), 1565 OID_AUTO, "fto_rsm_send", CTLFLAG_RD, 1566 &rack_fto_rsm_send, "Total number of rack_fast_rsm_output sends"); 1567 rack_nfto_resend = counter_u64_alloc(M_WAITOK); 1568 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1569 SYSCTL_CHILDREN(rack_counters), 1570 OID_AUTO, "nfto_resend", CTLFLAG_RD, 1571 &rack_nfto_resend, "Total number of rack_output retransmissions"); 1572 rack_non_fto_send = counter_u64_alloc(M_WAITOK); 1573 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1574 SYSCTL_CHILDREN(rack_counters), 1575 OID_AUTO, "nfto_send", CTLFLAG_RD, 1576 &rack_non_fto_send, "Total number of rack_output first sends"); 1577 rack_extended_rfo = counter_u64_alloc(M_WAITOK); 1578 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1579 SYSCTL_CHILDREN(rack_counters), 1580 OID_AUTO, "rfo_extended", CTLFLAG_RD, 1581 &rack_extended_rfo, "Total number of times we extended rfo"); 1582 1583 rack_hw_pace_init_fail = counter_u64_alloc(M_WAITOK); 1584 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1585 SYSCTL_CHILDREN(rack_counters), 1586 OID_AUTO, "hwpace_init_fail", CTLFLAG_RD, 1587 &rack_hw_pace_init_fail, "Total number of times we failed to initialize hw pacing"); 1588 rack_hw_pace_lost = counter_u64_alloc(M_WAITOK); 1589 1590 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1591 SYSCTL_CHILDREN(rack_counters), 1592 OID_AUTO, "hwpace_lost", CTLFLAG_RD, 1593 &rack_hw_pace_lost, "Total number of times we failed to initialize hw pacing"); 1594 rack_tlp_tot = counter_u64_alloc(M_WAITOK); 1595 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1596 SYSCTL_CHILDREN(rack_counters), 1597 OID_AUTO, "tlp_to_total", CTLFLAG_RD, 1598 &rack_tlp_tot, 1599 "Total number of tail loss probe expirations"); 1600 rack_tlp_newdata = counter_u64_alloc(M_WAITOK); 1601 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1602 SYSCTL_CHILDREN(rack_counters), 1603 OID_AUTO, "tlp_new", CTLFLAG_RD, 1604 &rack_tlp_newdata, 1605 "Total number of tail loss probe sending new data"); 1606 rack_tlp_retran = counter_u64_alloc(M_WAITOK); 1607 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1608 SYSCTL_CHILDREN(rack_counters), 1609 OID_AUTO, "tlp_retran", CTLFLAG_RD, 1610 &rack_tlp_retran, 1611 "Total number of tail loss probe sending retransmitted data"); 1612 rack_tlp_retran_bytes = counter_u64_alloc(M_WAITOK); 1613 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1614 SYSCTL_CHILDREN(rack_counters), 1615 OID_AUTO, "tlp_retran_bytes", CTLFLAG_RD, 1616 &rack_tlp_retran_bytes, 1617 "Total bytes of tail loss probe sending retransmitted data"); 1618 rack_to_tot = counter_u64_alloc(M_WAITOK); 1619 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1620 SYSCTL_CHILDREN(rack_counters), 1621 OID_AUTO, "rack_to_tot", CTLFLAG_RD, 1622 &rack_to_tot, 1623 "Total number of times the rack to expired"); 1624 rack_saw_enobuf = counter_u64_alloc(M_WAITOK); 1625 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1626 SYSCTL_CHILDREN(rack_counters), 1627 OID_AUTO, "saw_enobufs", CTLFLAG_RD, 1628 &rack_saw_enobuf, 1629 "Total number of times a sends returned enobuf for non-hdwr paced connections"); 1630 rack_saw_enobuf_hw = counter_u64_alloc(M_WAITOK); 1631 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1632 SYSCTL_CHILDREN(rack_counters), 1633 OID_AUTO, "saw_enobufs_hw", CTLFLAG_RD, 1634 &rack_saw_enobuf_hw, 1635 "Total number of times a send returned enobuf for hdwr paced connections"); 1636 rack_saw_enetunreach = counter_u64_alloc(M_WAITOK); 1637 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1638 SYSCTL_CHILDREN(rack_counters), 1639 OID_AUTO, "saw_enetunreach", CTLFLAG_RD, 1640 &rack_saw_enetunreach, 1641 "Total number of times a send received a enetunreachable"); 1642 rack_hot_alloc = counter_u64_alloc(M_WAITOK); 1643 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1644 SYSCTL_CHILDREN(rack_counters), 1645 OID_AUTO, "alloc_hot", CTLFLAG_RD, 1646 &rack_hot_alloc, 1647 "Total allocations from the top of our list"); 1648 rack_to_alloc = counter_u64_alloc(M_WAITOK); 1649 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1650 SYSCTL_CHILDREN(rack_counters), 1651 OID_AUTO, "allocs", CTLFLAG_RD, 1652 &rack_to_alloc, 1653 "Total allocations of tracking structures"); 1654 rack_to_alloc_hard = counter_u64_alloc(M_WAITOK); 1655 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1656 SYSCTL_CHILDREN(rack_counters), 1657 OID_AUTO, "allochard", CTLFLAG_RD, 1658 &rack_to_alloc_hard, 1659 "Total allocations done with sleeping the hard way"); 1660 rack_to_alloc_emerg = counter_u64_alloc(M_WAITOK); 1661 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1662 SYSCTL_CHILDREN(rack_counters), 1663 OID_AUTO, "allocemerg", CTLFLAG_RD, 1664 &rack_to_alloc_emerg, 1665 "Total allocations done from emergency cache"); 1666 rack_to_alloc_limited = counter_u64_alloc(M_WAITOK); 1667 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1668 SYSCTL_CHILDREN(rack_counters), 1669 OID_AUTO, "alloc_limited", CTLFLAG_RD, 1670 &rack_to_alloc_limited, 1671 "Total allocations dropped due to limit"); 1672 rack_alloc_limited_conns = counter_u64_alloc(M_WAITOK); 1673 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1674 SYSCTL_CHILDREN(rack_counters), 1675 OID_AUTO, "alloc_limited_conns", CTLFLAG_RD, 1676 &rack_alloc_limited_conns, 1677 "Connections with allocations dropped due to limit"); 1678 rack_split_limited = counter_u64_alloc(M_WAITOK); 1679 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1680 SYSCTL_CHILDREN(rack_counters), 1681 OID_AUTO, "split_limited", CTLFLAG_RD, 1682 &rack_split_limited, 1683 "Split allocations dropped due to limit"); 1684 rack_persists_sends = counter_u64_alloc(M_WAITOK); 1685 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1686 SYSCTL_CHILDREN(rack_counters), 1687 OID_AUTO, "persist_sends", CTLFLAG_RD, 1688 &rack_persists_sends, 1689 "Number of times we sent a persist probe"); 1690 rack_persists_acks = counter_u64_alloc(M_WAITOK); 1691 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1692 SYSCTL_CHILDREN(rack_counters), 1693 OID_AUTO, "persist_acks", CTLFLAG_RD, 1694 &rack_persists_acks, 1695 "Number of times a persist probe was acked"); 1696 rack_persists_loss = counter_u64_alloc(M_WAITOK); 1697 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1698 SYSCTL_CHILDREN(rack_counters), 1699 OID_AUTO, "persist_loss", CTLFLAG_RD, 1700 &rack_persists_loss, 1701 "Number of times we detected a lost persist probe (no ack)"); 1702 rack_persists_lost_ends = counter_u64_alloc(M_WAITOK); 1703 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1704 SYSCTL_CHILDREN(rack_counters), 1705 OID_AUTO, "persist_loss_ends", CTLFLAG_RD, 1706 &rack_persists_lost_ends, 1707 "Number of lost persist probe (no ack) that the run ended with a PERSIST abort"); 1708 #ifdef INVARIANTS 1709 rack_adjust_map_bw = counter_u64_alloc(M_WAITOK); 1710 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1711 SYSCTL_CHILDREN(rack_counters), 1712 OID_AUTO, "map_adjust_req", CTLFLAG_RD, 1713 &rack_adjust_map_bw, 1714 "Number of times we hit the case where the sb went up and down on a sendmap entry"); 1715 #endif 1716 rack_multi_single_eq = counter_u64_alloc(M_WAITOK); 1717 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1718 SYSCTL_CHILDREN(rack_counters), 1719 OID_AUTO, "cmp_ack_equiv", CTLFLAG_RD, 1720 &rack_multi_single_eq, 1721 "Number of compressed acks total represented"); 1722 rack_proc_non_comp_ack = counter_u64_alloc(M_WAITOK); 1723 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1724 SYSCTL_CHILDREN(rack_counters), 1725 OID_AUTO, "cmp_ack_not", CTLFLAG_RD, 1726 &rack_proc_non_comp_ack, 1727 "Number of non compresseds acks that we processed"); 1728 1729 1730 rack_sack_proc_all = counter_u64_alloc(M_WAITOK); 1731 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1732 SYSCTL_CHILDREN(rack_counters), 1733 OID_AUTO, "sack_long", CTLFLAG_RD, 1734 &rack_sack_proc_all, 1735 "Total times we had to walk whole list for sack processing"); 1736 rack_sack_proc_restart = counter_u64_alloc(M_WAITOK); 1737 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1738 SYSCTL_CHILDREN(rack_counters), 1739 OID_AUTO, "sack_restart", CTLFLAG_RD, 1740 &rack_sack_proc_restart, 1741 "Total times we had to walk whole list due to a restart"); 1742 rack_sack_proc_short = counter_u64_alloc(M_WAITOK); 1743 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1744 SYSCTL_CHILDREN(rack_counters), 1745 OID_AUTO, "sack_short", CTLFLAG_RD, 1746 &rack_sack_proc_short, 1747 "Total times we took shortcut for sack processing"); 1748 rack_sack_skipped_acked = counter_u64_alloc(M_WAITOK); 1749 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1750 SYSCTL_CHILDREN(rack_attack), 1751 OID_AUTO, "skipacked", CTLFLAG_RD, 1752 &rack_sack_skipped_acked, 1753 "Total number of times we skipped previously sacked"); 1754 rack_sack_splits = counter_u64_alloc(M_WAITOK); 1755 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1756 SYSCTL_CHILDREN(rack_attack), 1757 OID_AUTO, "ofsplit", CTLFLAG_RD, 1758 &rack_sack_splits, 1759 "Total number of times we did the old fashion tree split"); 1760 rack_input_idle_reduces = counter_u64_alloc(M_WAITOK); 1761 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1762 SYSCTL_CHILDREN(rack_counters), 1763 OID_AUTO, "idle_reduce_oninput", CTLFLAG_RD, 1764 &rack_input_idle_reduces, 1765 "Total number of idle reductions on input"); 1766 rack_collapsed_win_seen = counter_u64_alloc(M_WAITOK); 1767 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1768 SYSCTL_CHILDREN(rack_counters), 1769 OID_AUTO, "collapsed_win_seen", CTLFLAG_RD, 1770 &rack_collapsed_win_seen, 1771 "Total number of collapsed window events seen (where our window shrinks)"); 1772 1773 rack_collapsed_win = counter_u64_alloc(M_WAITOK); 1774 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1775 SYSCTL_CHILDREN(rack_counters), 1776 OID_AUTO, "collapsed_win", CTLFLAG_RD, 1777 &rack_collapsed_win, 1778 "Total number of collapsed window events where we mark packets"); 1779 rack_collapsed_win_rxt = counter_u64_alloc(M_WAITOK); 1780 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1781 SYSCTL_CHILDREN(rack_counters), 1782 OID_AUTO, "collapsed_win_rxt", CTLFLAG_RD, 1783 &rack_collapsed_win_rxt, 1784 "Total number of packets that were retransmitted"); 1785 rack_collapsed_win_rxt_bytes = counter_u64_alloc(M_WAITOK); 1786 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1787 SYSCTL_CHILDREN(rack_counters), 1788 OID_AUTO, "collapsed_win_bytes", CTLFLAG_RD, 1789 &rack_collapsed_win_rxt_bytes, 1790 "Total number of bytes that were retransmitted"); 1791 rack_try_scwnd = counter_u64_alloc(M_WAITOK); 1792 SYSCTL_ADD_COUNTER_U64(&rack_sysctl_ctx, 1793 SYSCTL_CHILDREN(rack_counters), 1794 OID_AUTO, "tried_scwnd", CTLFLAG_RD, 1795 &rack_try_scwnd, 1796 "Total number of scwnd attempts"); 1797 COUNTER_ARRAY_ALLOC(rack_out_size, TCP_MSS_ACCT_SIZE, M_WAITOK); 1798 SYSCTL_ADD_COUNTER_U64_ARRAY(&rack_sysctl_ctx, SYSCTL_CHILDREN(rack_sysctl_root), 1799 OID_AUTO, "outsize", CTLFLAG_RD, 1800 rack_out_size, TCP_MSS_ACCT_SIZE, "MSS send sizes"); 1801 COUNTER_ARRAY_ALLOC(rack_opts_arry, RACK_OPTS_SIZE, M_WAITOK); 1802 SYSCTL_ADD_COUNTER_U64_ARRAY(&rack_sysctl_ctx, SYSCTL_CHILDREN(rack_sysctl_root), 1803 OID_AUTO, "opts", CTLFLAG_RD, 1804 rack_opts_arry, RACK_OPTS_SIZE, "RACK Option Stats"); 1805 SYSCTL_ADD_PROC(&rack_sysctl_ctx, 1806 SYSCTL_CHILDREN(rack_sysctl_root), 1807 OID_AUTO, "clear", CTLTYPE_UINT | CTLFLAG_RW | CTLFLAG_MPSAFE, 1808 &rack_clear_counter, 0, sysctl_rack_clear, "IU", "Clear counters"); 1809 } 1810 1811 static __inline int 1812 rb_map_cmp(struct rack_sendmap *b, struct rack_sendmap *a) 1813 { 1814 if (SEQ_GEQ(b->r_start, a->r_start) && 1815 SEQ_LT(b->r_start, a->r_end)) { 1816 /* 1817 * The entry b is within the 1818 * block a. i.e.: 1819 * a -- |-------------| 1820 * b -- |----| 1821 * <or> 1822 * b -- |------| 1823 * <or> 1824 * b -- |-----------| 1825 */ 1826 return (0); 1827 } else if (SEQ_GEQ(b->r_start, a->r_end)) { 1828 /* 1829 * b falls as either the next 1830 * sequence block after a so a 1831 * is said to be smaller than b. 1832 * i.e: 1833 * a -- |------| 1834 * b -- |--------| 1835 * or 1836 * b -- |-----| 1837 */ 1838 return (1); 1839 } 1840 /* 1841 * Whats left is where a is 1842 * larger than b. i.e: 1843 * a -- |-------| 1844 * b -- |---| 1845 * or even possibly 1846 * b -- |--------------| 1847 */ 1848 return (-1); 1849 } 1850 1851 RB_PROTOTYPE(rack_rb_tree_head, rack_sendmap, r_next, rb_map_cmp); 1852 RB_GENERATE(rack_rb_tree_head, rack_sendmap, r_next, rb_map_cmp); 1853 1854 static uint32_t 1855 rc_init_window(struct tcp_rack *rack) 1856 { 1857 uint32_t win; 1858 1859 if (rack->rc_init_win == 0) { 1860 /* 1861 * Nothing set by the user, use the system stack 1862 * default. 1863 */ 1864 return (tcp_compute_initwnd(tcp_maxseg(rack->rc_tp))); 1865 } 1866 win = ctf_fixed_maxseg(rack->rc_tp) * rack->rc_init_win; 1867 return (win); 1868 } 1869 1870 static uint64_t 1871 rack_get_fixed_pacing_bw(struct tcp_rack *rack) 1872 { 1873 if (IN_FASTRECOVERY(rack->rc_tp->t_flags)) 1874 return (rack->r_ctl.rc_fixed_pacing_rate_rec); 1875 else if (rack->r_ctl.cwnd_to_use < rack->rc_tp->snd_ssthresh) 1876 return (rack->r_ctl.rc_fixed_pacing_rate_ss); 1877 else 1878 return (rack->r_ctl.rc_fixed_pacing_rate_ca); 1879 } 1880 1881 static uint64_t 1882 rack_get_bw(struct tcp_rack *rack) 1883 { 1884 if (rack->use_fixed_rate) { 1885 /* Return the fixed pacing rate */ 1886 return (rack_get_fixed_pacing_bw(rack)); 1887 } 1888 if (rack->r_ctl.gp_bw == 0) { 1889 /* 1890 * We have yet no b/w measurement, 1891 * if we have a user set initial bw 1892 * return it. If we don't have that and 1893 * we have an srtt, use the tcp IW (10) to 1894 * calculate a fictional b/w over the SRTT 1895 * which is more or less a guess. Note 1896 * we don't use our IW from rack on purpose 1897 * so if we have like IW=30, we are not 1898 * calculating a "huge" b/w. 1899 */ 1900 uint64_t bw, srtt; 1901 if (rack->r_ctl.init_rate) 1902 return (rack->r_ctl.init_rate); 1903 1904 /* Has the user set a max peak rate? */ 1905 #ifdef NETFLIX_PEAKRATE 1906 if (rack->rc_tp->t_maxpeakrate) 1907 return (rack->rc_tp->t_maxpeakrate); 1908 #endif 1909 /* Ok lets come up with the IW guess, if we have a srtt */ 1910 if (rack->rc_tp->t_srtt == 0) { 1911 /* 1912 * Go with old pacing method 1913 * i.e. burst mitigation only. 1914 */ 1915 return (0); 1916 } 1917 /* Ok lets get the initial TCP win (not racks) */ 1918 bw = tcp_compute_initwnd(tcp_maxseg(rack->rc_tp)); 1919 srtt = (uint64_t)rack->rc_tp->t_srtt; 1920 bw *= (uint64_t)USECS_IN_SECOND; 1921 bw /= srtt; 1922 if (rack->r_ctl.bw_rate_cap && (bw > rack->r_ctl.bw_rate_cap)) 1923 bw = rack->r_ctl.bw_rate_cap; 1924 return (bw); 1925 } else { 1926 uint64_t bw; 1927 1928 if (rack->r_ctl.num_measurements >= RACK_REQ_AVG) { 1929 /* Averaging is done, we can return the value */ 1930 bw = rack->r_ctl.gp_bw; 1931 } else { 1932 /* Still doing initial average must calculate */ 1933 bw = rack->r_ctl.gp_bw / rack->r_ctl.num_measurements; 1934 } 1935 #ifdef NETFLIX_PEAKRATE 1936 if ((rack->rc_tp->t_maxpeakrate) && 1937 (bw > rack->rc_tp->t_maxpeakrate)) { 1938 /* The user has set a peak rate to pace at 1939 * don't allow us to pace faster than that. 1940 */ 1941 return (rack->rc_tp->t_maxpeakrate); 1942 } 1943 #endif 1944 if (rack->r_ctl.bw_rate_cap && (bw > rack->r_ctl.bw_rate_cap)) 1945 bw = rack->r_ctl.bw_rate_cap; 1946 return (bw); 1947 } 1948 } 1949 1950 static uint16_t 1951 rack_get_output_gain(struct tcp_rack *rack, struct rack_sendmap *rsm) 1952 { 1953 if (rack->use_fixed_rate) { 1954 return (100); 1955 } else if (rack->in_probe_rtt && (rsm == NULL)) 1956 return (rack->r_ctl.rack_per_of_gp_probertt); 1957 else if ((IN_FASTRECOVERY(rack->rc_tp->t_flags) && 1958 rack->r_ctl.rack_per_of_gp_rec)) { 1959 if (rsm) { 1960 /* a retransmission always use the recovery rate */ 1961 return (rack->r_ctl.rack_per_of_gp_rec); 1962 } else if (rack->rack_rec_nonrxt_use_cr) { 1963 /* Directed to use the configured rate */ 1964 goto configured_rate; 1965 } else if (rack->rack_no_prr && 1966 (rack->r_ctl.rack_per_of_gp_rec > 100)) { 1967 /* No PRR, lets just use the b/w estimate only */ 1968 return (100); 1969 } else { 1970 /* 1971 * Here we may have a non-retransmit but we 1972 * have no overrides, so just use the recovery 1973 * rate (prr is in effect). 1974 */ 1975 return (rack->r_ctl.rack_per_of_gp_rec); 1976 } 1977 } 1978 configured_rate: 1979 /* For the configured rate we look at our cwnd vs the ssthresh */ 1980 if (rack->r_ctl.cwnd_to_use < rack->rc_tp->snd_ssthresh) 1981 return (rack->r_ctl.rack_per_of_gp_ss); 1982 else 1983 return (rack->r_ctl.rack_per_of_gp_ca); 1984 } 1985 1986 static void 1987 rack_log_dsack_event(struct tcp_rack *rack, uint8_t mod, uint32_t flex4, uint32_t flex5, uint32_t flex6) 1988 { 1989 /* 1990 * Types of logs (mod value) 1991 * 1 = dsack_persists reduced by 1 via T-O or fast recovery exit. 1992 * 2 = a dsack round begins, persist is reset to 16. 1993 * 3 = a dsack round ends 1994 * 4 = Dsack option increases rack rtt flex5 is the srtt input, flex6 is thresh 1995 * 5 = Socket option set changing the control flags rc_rack_tmr_std_based, rc_rack_use_dsack 1996 * 6 = Final rack rtt, flex4 is srtt and flex6 is final limited thresh. 1997 */ 1998 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 1999 union tcp_log_stackspecific log; 2000 struct timeval tv; 2001 2002 memset(&log, 0, sizeof(log)); 2003 log.u_bbr.flex1 = rack->rc_rack_tmr_std_based; 2004 log.u_bbr.flex1 <<= 1; 2005 log.u_bbr.flex1 |= rack->rc_rack_use_dsack; 2006 log.u_bbr.flex1 <<= 1; 2007 log.u_bbr.flex1 |= rack->rc_dsack_round_seen; 2008 log.u_bbr.flex2 = rack->r_ctl.dsack_round_end; 2009 log.u_bbr.flex3 = rack->r_ctl.num_dsack; 2010 log.u_bbr.flex4 = flex4; 2011 log.u_bbr.flex5 = flex5; 2012 log.u_bbr.flex6 = flex6; 2013 log.u_bbr.flex7 = rack->r_ctl.dsack_persist; 2014 log.u_bbr.flex8 = mod; 2015 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2016 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2017 &rack->rc_inp->inp_socket->so_rcv, 2018 &rack->rc_inp->inp_socket->so_snd, 2019 RACK_DSACK_HANDLING, 0, 2020 0, &log, false, &tv); 2021 } 2022 } 2023 2024 static void 2025 rack_log_hdwr_pacing(struct tcp_rack *rack, 2026 uint64_t rate, uint64_t hw_rate, int line, 2027 int error, uint16_t mod) 2028 { 2029 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2030 union tcp_log_stackspecific log; 2031 struct timeval tv; 2032 const struct ifnet *ifp; 2033 2034 memset(&log, 0, sizeof(log)); 2035 log.u_bbr.flex1 = ((hw_rate >> 32) & 0x00000000ffffffff); 2036 log.u_bbr.flex2 = (hw_rate & 0x00000000ffffffff); 2037 if (rack->r_ctl.crte) { 2038 ifp = rack->r_ctl.crte->ptbl->rs_ifp; 2039 } else if (rack->rc_inp->inp_route.ro_nh && 2040 rack->rc_inp->inp_route.ro_nh->nh_ifp) { 2041 ifp = rack->rc_inp->inp_route.ro_nh->nh_ifp; 2042 } else 2043 ifp = NULL; 2044 if (ifp) { 2045 log.u_bbr.flex3 = (((uint64_t)ifp >> 32) & 0x00000000ffffffff); 2046 log.u_bbr.flex4 = ((uint64_t)ifp & 0x00000000ffffffff); 2047 } 2048 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2049 log.u_bbr.bw_inuse = rate; 2050 log.u_bbr.flex5 = line; 2051 log.u_bbr.flex6 = error; 2052 log.u_bbr.flex7 = mod; 2053 log.u_bbr.applimited = rack->r_ctl.rc_pace_max_segs; 2054 log.u_bbr.flex8 = rack->use_fixed_rate; 2055 log.u_bbr.flex8 <<= 1; 2056 log.u_bbr.flex8 |= rack->rack_hdrw_pacing; 2057 log.u_bbr.pkts_out = rack->rc_tp->t_maxseg; 2058 log.u_bbr.delRate = rack->r_ctl.crte_prev_rate; 2059 if (rack->r_ctl.crte) 2060 log.u_bbr.cur_del_rate = rack->r_ctl.crte->rate; 2061 else 2062 log.u_bbr.cur_del_rate = 0; 2063 log.u_bbr.rttProp = rack->r_ctl.last_hw_bw_req; 2064 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2065 &rack->rc_inp->inp_socket->so_rcv, 2066 &rack->rc_inp->inp_socket->so_snd, 2067 BBR_LOG_HDWR_PACE, 0, 2068 0, &log, false, &tv); 2069 } 2070 } 2071 2072 static uint64_t 2073 rack_get_output_bw(struct tcp_rack *rack, uint64_t bw, struct rack_sendmap *rsm, int *capped) 2074 { 2075 /* 2076 * We allow rack_per_of_gp_xx to dictate our bw rate we want. 2077 */ 2078 uint64_t bw_est, high_rate; 2079 uint64_t gain; 2080 2081 gain = (uint64_t)rack_get_output_gain(rack, rsm); 2082 bw_est = bw * gain; 2083 bw_est /= (uint64_t)100; 2084 /* Never fall below the minimum (def 64kbps) */ 2085 if (bw_est < RACK_MIN_BW) 2086 bw_est = RACK_MIN_BW; 2087 if (rack->r_rack_hw_rate_caps) { 2088 /* Rate caps are in place */ 2089 if (rack->r_ctl.crte != NULL) { 2090 /* We have a hdwr rate already */ 2091 high_rate = tcp_hw_highest_rate(rack->r_ctl.crte); 2092 if (bw_est >= high_rate) { 2093 /* We are capping bw at the highest rate table entry */ 2094 rack_log_hdwr_pacing(rack, 2095 bw_est, high_rate, __LINE__, 2096 0, 3); 2097 bw_est = high_rate; 2098 if (capped) 2099 *capped = 1; 2100 } 2101 } else if ((rack->rack_hdrw_pacing == 0) && 2102 (rack->rack_hdw_pace_ena) && 2103 (rack->rack_attempt_hdwr_pace == 0) && 2104 (rack->rc_inp->inp_route.ro_nh != NULL) && 2105 (rack->rc_inp->inp_route.ro_nh->nh_ifp != NULL)) { 2106 /* 2107 * Special case, we have not yet attempted hardware 2108 * pacing, and yet we may, when we do, find out if we are 2109 * above the highest rate. We need to know the maxbw for the interface 2110 * in question (if it supports ratelimiting). We get back 2111 * a 0, if the interface is not found in the RL lists. 2112 */ 2113 high_rate = tcp_hw_highest_rate_ifp(rack->rc_inp->inp_route.ro_nh->nh_ifp, rack->rc_inp); 2114 if (high_rate) { 2115 /* Yep, we have a rate is it above this rate? */ 2116 if (bw_est > high_rate) { 2117 bw_est = high_rate; 2118 if (capped) 2119 *capped = 1; 2120 } 2121 } 2122 } 2123 } 2124 return (bw_est); 2125 } 2126 2127 static void 2128 rack_log_retran_reason(struct tcp_rack *rack, struct rack_sendmap *rsm, uint32_t tsused, uint32_t thresh, int mod) 2129 { 2130 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2131 union tcp_log_stackspecific log; 2132 struct timeval tv; 2133 2134 if ((mod != 1) && (rack_verbose_logging == 0)) { 2135 /* 2136 * We get 3 values currently for mod 2137 * 1 - We are retransmitting and this tells the reason. 2138 * 2 - We are clearing a dup-ack count. 2139 * 3 - We are incrementing a dup-ack count. 2140 * 2141 * The clear/increment are only logged 2142 * if you have BBverbose on. 2143 */ 2144 return; 2145 } 2146 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2147 log.u_bbr.flex1 = tsused; 2148 log.u_bbr.flex2 = thresh; 2149 log.u_bbr.flex3 = rsm->r_flags; 2150 log.u_bbr.flex4 = rsm->r_dupack; 2151 log.u_bbr.flex5 = rsm->r_start; 2152 log.u_bbr.flex6 = rsm->r_end; 2153 log.u_bbr.flex8 = mod; 2154 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 2155 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2156 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2157 log.u_bbr.pkts_out = rack->r_ctl.rc_out_at_rto; 2158 log.u_bbr.delivered = rack->r_ctl.rc_snd_max_at_rto; 2159 log.u_bbr.pacing_gain = rack->r_must_retran; 2160 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2161 &rack->rc_inp->inp_socket->so_rcv, 2162 &rack->rc_inp->inp_socket->so_snd, 2163 BBR_LOG_SETTINGS_CHG, 0, 2164 0, &log, false, &tv); 2165 } 2166 } 2167 2168 static void 2169 rack_log_to_start(struct tcp_rack *rack, uint32_t cts, uint32_t to, int32_t slot, uint8_t which) 2170 { 2171 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2172 union tcp_log_stackspecific log; 2173 struct timeval tv; 2174 2175 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2176 log.u_bbr.flex1 = rack->rc_tp->t_srtt; 2177 log.u_bbr.flex2 = to; 2178 log.u_bbr.flex3 = rack->r_ctl.rc_hpts_flags; 2179 log.u_bbr.flex4 = slot; 2180 log.u_bbr.flex5 = rack->rc_inp->inp_hptsslot; 2181 log.u_bbr.flex6 = rack->rc_tp->t_rxtcur; 2182 log.u_bbr.flex7 = rack->rc_in_persist; 2183 log.u_bbr.flex8 = which; 2184 if (rack->rack_no_prr) 2185 log.u_bbr.pkts_out = 0; 2186 else 2187 log.u_bbr.pkts_out = rack->r_ctl.rc_prr_sndcnt; 2188 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 2189 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2190 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2191 log.u_bbr.pkts_out = rack->r_ctl.rc_out_at_rto; 2192 log.u_bbr.delivered = rack->r_ctl.rc_snd_max_at_rto; 2193 log.u_bbr.pacing_gain = rack->r_must_retran; 2194 log.u_bbr.cwnd_gain = rack->rc_has_collapsed; 2195 log.u_bbr.lt_epoch = rack->rc_tp->t_rxtshift; 2196 log.u_bbr.lost = rack_rto_min; 2197 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2198 &rack->rc_inp->inp_socket->so_rcv, 2199 &rack->rc_inp->inp_socket->so_snd, 2200 BBR_LOG_TIMERSTAR, 0, 2201 0, &log, false, &tv); 2202 } 2203 } 2204 2205 static void 2206 rack_log_to_event(struct tcp_rack *rack, int32_t to_num, struct rack_sendmap *rsm) 2207 { 2208 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2209 union tcp_log_stackspecific log; 2210 struct timeval tv; 2211 2212 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2213 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 2214 log.u_bbr.flex8 = to_num; 2215 log.u_bbr.flex1 = rack->r_ctl.rc_rack_min_rtt; 2216 log.u_bbr.flex2 = rack->rc_rack_rtt; 2217 if (rsm == NULL) 2218 log.u_bbr.flex3 = 0; 2219 else 2220 log.u_bbr.flex3 = rsm->r_end - rsm->r_start; 2221 if (rack->rack_no_prr) 2222 log.u_bbr.flex5 = 0; 2223 else 2224 log.u_bbr.flex5 = rack->r_ctl.rc_prr_sndcnt; 2225 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2226 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2227 log.u_bbr.pkts_out = rack->r_ctl.rc_out_at_rto; 2228 log.u_bbr.delivered = rack->r_ctl.rc_snd_max_at_rto; 2229 log.u_bbr.pacing_gain = rack->r_must_retran; 2230 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2231 &rack->rc_inp->inp_socket->so_rcv, 2232 &rack->rc_inp->inp_socket->so_snd, 2233 BBR_LOG_RTO, 0, 2234 0, &log, false, &tv); 2235 } 2236 } 2237 2238 static void 2239 rack_log_map_chg(struct tcpcb *tp, struct tcp_rack *rack, 2240 struct rack_sendmap *prev, 2241 struct rack_sendmap *rsm, 2242 struct rack_sendmap *next, 2243 int flag, uint32_t th_ack, int line) 2244 { 2245 if (rack_verbose_logging && (tp->t_logstate != TCP_LOG_STATE_OFF)) { 2246 union tcp_log_stackspecific log; 2247 struct timeval tv; 2248 2249 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2250 log.u_bbr.flex8 = flag; 2251 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 2252 log.u_bbr.cur_del_rate = (uint64_t)prev; 2253 log.u_bbr.delRate = (uint64_t)rsm; 2254 log.u_bbr.rttProp = (uint64_t)next; 2255 log.u_bbr.flex7 = 0; 2256 if (prev) { 2257 log.u_bbr.flex1 = prev->r_start; 2258 log.u_bbr.flex2 = prev->r_end; 2259 log.u_bbr.flex7 |= 0x4; 2260 } 2261 if (rsm) { 2262 log.u_bbr.flex3 = rsm->r_start; 2263 log.u_bbr.flex4 = rsm->r_end; 2264 log.u_bbr.flex7 |= 0x2; 2265 } 2266 if (next) { 2267 log.u_bbr.flex5 = next->r_start; 2268 log.u_bbr.flex6 = next->r_end; 2269 log.u_bbr.flex7 |= 0x1; 2270 } 2271 log.u_bbr.applimited = line; 2272 log.u_bbr.pkts_out = th_ack; 2273 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2274 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2275 if (rack->rack_no_prr) 2276 log.u_bbr.lost = 0; 2277 else 2278 log.u_bbr.lost = rack->r_ctl.rc_prr_sndcnt; 2279 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2280 &rack->rc_inp->inp_socket->so_rcv, 2281 &rack->rc_inp->inp_socket->so_snd, 2282 TCP_LOG_MAPCHG, 0, 2283 0, &log, false, &tv); 2284 } 2285 } 2286 2287 static void 2288 rack_log_rtt_upd(struct tcpcb *tp, struct tcp_rack *rack, uint32_t t, uint32_t len, 2289 struct rack_sendmap *rsm, int conf) 2290 { 2291 if (tp->t_logstate != TCP_LOG_STATE_OFF) { 2292 union tcp_log_stackspecific log; 2293 struct timeval tv; 2294 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2295 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 2296 log.u_bbr.flex1 = t; 2297 log.u_bbr.flex2 = len; 2298 log.u_bbr.flex3 = rack->r_ctl.rc_rack_min_rtt; 2299 log.u_bbr.flex4 = rack->r_ctl.rack_rs.rs_rtt_lowest; 2300 log.u_bbr.flex5 = rack->r_ctl.rack_rs.rs_rtt_highest; 2301 log.u_bbr.flex6 = rack->r_ctl.rack_rs.rs_us_rtrcnt; 2302 log.u_bbr.flex7 = conf; 2303 log.u_bbr.rttProp = (uint64_t)rack->r_ctl.rack_rs.rs_rtt_tot; 2304 log.u_bbr.flex8 = rack->r_ctl.rc_rate_sample_method; 2305 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2306 log.u_bbr.delivered = rack->r_ctl.rack_rs.rs_us_rtrcnt; 2307 log.u_bbr.pkts_out = rack->r_ctl.rack_rs.rs_flags; 2308 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2309 if (rsm) { 2310 log.u_bbr.pkt_epoch = rsm->r_start; 2311 log.u_bbr.lost = rsm->r_end; 2312 log.u_bbr.cwnd_gain = rsm->r_rtr_cnt; 2313 /* We loose any upper of the 24 bits */ 2314 log.u_bbr.pacing_gain = (uint16_t)rsm->r_flags; 2315 } else { 2316 /* Its a SYN */ 2317 log.u_bbr.pkt_epoch = rack->rc_tp->iss; 2318 log.u_bbr.lost = 0; 2319 log.u_bbr.cwnd_gain = 0; 2320 log.u_bbr.pacing_gain = 0; 2321 } 2322 /* Write out general bits of interest rrs here */ 2323 log.u_bbr.use_lt_bw = rack->rc_highly_buffered; 2324 log.u_bbr.use_lt_bw <<= 1; 2325 log.u_bbr.use_lt_bw |= rack->forced_ack; 2326 log.u_bbr.use_lt_bw <<= 1; 2327 log.u_bbr.use_lt_bw |= rack->rc_gp_dyn_mul; 2328 log.u_bbr.use_lt_bw <<= 1; 2329 log.u_bbr.use_lt_bw |= rack->in_probe_rtt; 2330 log.u_bbr.use_lt_bw <<= 1; 2331 log.u_bbr.use_lt_bw |= rack->measure_saw_probe_rtt; 2332 log.u_bbr.use_lt_bw <<= 1; 2333 log.u_bbr.use_lt_bw |= rack->app_limited_needs_set; 2334 log.u_bbr.use_lt_bw <<= 1; 2335 log.u_bbr.use_lt_bw |= rack->rc_gp_filled; 2336 log.u_bbr.use_lt_bw <<= 1; 2337 log.u_bbr.use_lt_bw |= rack->rc_dragged_bottom; 2338 log.u_bbr.applimited = rack->r_ctl.rc_target_probertt_flight; 2339 log.u_bbr.epoch = rack->r_ctl.rc_time_probertt_starts; 2340 log.u_bbr.lt_epoch = rack->r_ctl.rc_time_probertt_entered; 2341 log.u_bbr.cur_del_rate = rack->r_ctl.rc_lower_rtt_us_cts; 2342 log.u_bbr.delRate = rack->r_ctl.rc_gp_srtt; 2343 log.u_bbr.bw_inuse = tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time); 2344 log.u_bbr.bw_inuse <<= 32; 2345 if (rsm) 2346 log.u_bbr.bw_inuse |= ((uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)]); 2347 TCP_LOG_EVENTP(tp, NULL, 2348 &rack->rc_inp->inp_socket->so_rcv, 2349 &rack->rc_inp->inp_socket->so_snd, 2350 BBR_LOG_BBRRTT, 0, 2351 0, &log, false, &tv); 2352 2353 2354 } 2355 } 2356 2357 static void 2358 rack_log_rtt_sample(struct tcp_rack *rack, uint32_t rtt) 2359 { 2360 /* 2361 * Log the rtt sample we are 2362 * applying to the srtt algorithm in 2363 * useconds. 2364 */ 2365 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2366 union tcp_log_stackspecific log; 2367 struct timeval tv; 2368 2369 /* Convert our ms to a microsecond */ 2370 memset(&log, 0, sizeof(log)); 2371 log.u_bbr.flex1 = rtt; 2372 log.u_bbr.flex2 = rack->r_ctl.ack_count; 2373 log.u_bbr.flex3 = rack->r_ctl.sack_count; 2374 log.u_bbr.flex4 = rack->r_ctl.sack_noextra_move; 2375 log.u_bbr.flex5 = rack->r_ctl.sack_moved_extra; 2376 log.u_bbr.flex6 = rack->rc_tp->t_rxtcur; 2377 log.u_bbr.flex7 = 1; 2378 log.u_bbr.flex8 = rack->sack_attack_disable; 2379 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2380 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2381 log.u_bbr.pkts_out = rack->r_ctl.rc_out_at_rto; 2382 log.u_bbr.delivered = rack->r_ctl.rc_snd_max_at_rto; 2383 log.u_bbr.pacing_gain = rack->r_must_retran; 2384 /* 2385 * We capture in delRate the upper 32 bits as 2386 * the confidence level we had declared, and the 2387 * lower 32 bits as the actual RTT using the arrival 2388 * timestamp. 2389 */ 2390 log.u_bbr.delRate = rack->r_ctl.rack_rs.confidence; 2391 log.u_bbr.delRate <<= 32; 2392 log.u_bbr.delRate |= rack->r_ctl.rack_rs.rs_us_rtt; 2393 /* Lets capture all the things that make up t_rtxcur */ 2394 log.u_bbr.applimited = rack_rto_min; 2395 log.u_bbr.epoch = rack_rto_max; 2396 log.u_bbr.lt_epoch = rack->r_ctl.timer_slop; 2397 log.u_bbr.lost = rack_rto_min; 2398 log.u_bbr.pkt_epoch = TICKS_2_USEC(tcp_rexmit_slop); 2399 log.u_bbr.rttProp = RACK_REXMTVAL(rack->rc_tp); 2400 log.u_bbr.bw_inuse = rack->r_ctl.act_rcv_time.tv_sec; 2401 log.u_bbr.bw_inuse *= HPTS_USEC_IN_SEC; 2402 log.u_bbr.bw_inuse += rack->r_ctl.act_rcv_time.tv_usec; 2403 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2404 &rack->rc_inp->inp_socket->so_rcv, 2405 &rack->rc_inp->inp_socket->so_snd, 2406 TCP_LOG_RTT, 0, 2407 0, &log, false, &tv); 2408 } 2409 } 2410 2411 static void 2412 rack_log_rtt_sample_calc(struct tcp_rack *rack, uint32_t rtt, uint32_t send_time, uint32_t ack_time, int where) 2413 { 2414 if (rack_verbose_logging && (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF)) { 2415 union tcp_log_stackspecific log; 2416 struct timeval tv; 2417 2418 /* Convert our ms to a microsecond */ 2419 memset(&log, 0, sizeof(log)); 2420 log.u_bbr.flex1 = rtt; 2421 log.u_bbr.flex2 = send_time; 2422 log.u_bbr.flex3 = ack_time; 2423 log.u_bbr.flex4 = where; 2424 log.u_bbr.flex7 = 2; 2425 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2426 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2427 &rack->rc_inp->inp_socket->so_rcv, 2428 &rack->rc_inp->inp_socket->so_snd, 2429 TCP_LOG_RTT, 0, 2430 0, &log, false, &tv); 2431 } 2432 } 2433 2434 2435 2436 static inline void 2437 rack_log_progress_event(struct tcp_rack *rack, struct tcpcb *tp, uint32_t tick, int event, int line) 2438 { 2439 if (rack_verbose_logging && (tp->t_logstate != TCP_LOG_STATE_OFF)) { 2440 union tcp_log_stackspecific log; 2441 struct timeval tv; 2442 2443 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2444 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 2445 log.u_bbr.flex1 = line; 2446 log.u_bbr.flex2 = tick; 2447 log.u_bbr.flex3 = tp->t_maxunacktime; 2448 log.u_bbr.flex4 = tp->t_acktime; 2449 log.u_bbr.flex8 = event; 2450 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2451 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2452 log.u_bbr.pkts_out = rack->r_ctl.rc_out_at_rto; 2453 log.u_bbr.delivered = rack->r_ctl.rc_snd_max_at_rto; 2454 log.u_bbr.pacing_gain = rack->r_must_retran; 2455 TCP_LOG_EVENTP(tp, NULL, 2456 &rack->rc_inp->inp_socket->so_rcv, 2457 &rack->rc_inp->inp_socket->so_snd, 2458 BBR_LOG_PROGRESS, 0, 2459 0, &log, false, &tv); 2460 } 2461 } 2462 2463 static void 2464 rack_log_type_bbrsnd(struct tcp_rack *rack, uint32_t len, uint32_t slot, uint32_t cts, struct timeval *tv) 2465 { 2466 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2467 union tcp_log_stackspecific log; 2468 2469 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2470 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 2471 log.u_bbr.flex1 = slot; 2472 if (rack->rack_no_prr) 2473 log.u_bbr.flex2 = 0; 2474 else 2475 log.u_bbr.flex2 = rack->r_ctl.rc_prr_sndcnt; 2476 log.u_bbr.flex7 = (0x0000ffff & rack->r_ctl.rc_hpts_flags); 2477 log.u_bbr.flex8 = rack->rc_in_persist; 2478 log.u_bbr.timeStamp = cts; 2479 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2480 log.u_bbr.pkts_out = rack->r_ctl.rc_out_at_rto; 2481 log.u_bbr.delivered = rack->r_ctl.rc_snd_max_at_rto; 2482 log.u_bbr.pacing_gain = rack->r_must_retran; 2483 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2484 &rack->rc_inp->inp_socket->so_rcv, 2485 &rack->rc_inp->inp_socket->so_snd, 2486 BBR_LOG_BBRSND, 0, 2487 0, &log, false, tv); 2488 } 2489 } 2490 2491 static void 2492 rack_log_doseg_done(struct tcp_rack *rack, uint32_t cts, int32_t nxt_pkt, int32_t did_out, int way_out, int nsegs) 2493 { 2494 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2495 union tcp_log_stackspecific log; 2496 struct timeval tv; 2497 2498 memset(&log, 0, sizeof(log)); 2499 log.u_bbr.flex1 = did_out; 2500 log.u_bbr.flex2 = nxt_pkt; 2501 log.u_bbr.flex3 = way_out; 2502 log.u_bbr.flex4 = rack->r_ctl.rc_hpts_flags; 2503 if (rack->rack_no_prr) 2504 log.u_bbr.flex5 = 0; 2505 else 2506 log.u_bbr.flex5 = rack->r_ctl.rc_prr_sndcnt; 2507 log.u_bbr.flex6 = nsegs; 2508 log.u_bbr.applimited = rack->r_ctl.rc_pace_min_segs; 2509 log.u_bbr.flex7 = rack->rc_ack_can_sendout_data; /* Do we have ack-can-send set */ 2510 log.u_bbr.flex7 <<= 1; 2511 log.u_bbr.flex7 |= rack->r_fast_output; /* is fast output primed */ 2512 log.u_bbr.flex7 <<= 1; 2513 log.u_bbr.flex7 |= rack->r_wanted_output; /* Do we want output */ 2514 log.u_bbr.flex8 = rack->rc_in_persist; 2515 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 2516 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2517 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2518 log.u_bbr.use_lt_bw = rack->r_ent_rec_ns; 2519 log.u_bbr.use_lt_bw <<= 1; 2520 log.u_bbr.use_lt_bw |= rack->r_might_revert; 2521 log.u_bbr.pkts_out = rack->r_ctl.rc_out_at_rto; 2522 log.u_bbr.delivered = rack->r_ctl.rc_snd_max_at_rto; 2523 log.u_bbr.pacing_gain = rack->r_must_retran; 2524 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2525 &rack->rc_inp->inp_socket->so_rcv, 2526 &rack->rc_inp->inp_socket->so_snd, 2527 BBR_LOG_DOSEG_DONE, 0, 2528 0, &log, false, &tv); 2529 } 2530 } 2531 2532 static void 2533 rack_log_type_pacing_sizes(struct tcpcb *tp, struct tcp_rack *rack, uint32_t arg1, uint32_t arg2, uint32_t arg3, uint8_t frm) 2534 { 2535 if (tp->t_logstate != TCP_LOG_STATE_OFF) { 2536 union tcp_log_stackspecific log; 2537 struct timeval tv; 2538 2539 memset(&log, 0, sizeof(log)); 2540 log.u_bbr.flex1 = rack->r_ctl.rc_pace_min_segs; 2541 log.u_bbr.flex3 = rack->r_ctl.rc_pace_max_segs; 2542 log.u_bbr.flex4 = arg1; 2543 log.u_bbr.flex5 = arg2; 2544 log.u_bbr.flex6 = arg3; 2545 log.u_bbr.flex8 = frm; 2546 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2547 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2548 log.u_bbr.pkts_out = rack->r_ctl.rc_out_at_rto; 2549 log.u_bbr.applimited = rack->r_ctl.rc_sacked; 2550 log.u_bbr.delivered = rack->r_ctl.rc_snd_max_at_rto; 2551 log.u_bbr.pacing_gain = rack->r_must_retran; 2552 TCP_LOG_EVENTP(tp, NULL, 2553 &tp->t_inpcb->inp_socket->so_rcv, 2554 &tp->t_inpcb->inp_socket->so_snd, 2555 TCP_HDWR_PACE_SIZE, 0, 2556 0, &log, false, &tv); 2557 } 2558 } 2559 2560 static void 2561 rack_log_type_just_return(struct tcp_rack *rack, uint32_t cts, uint32_t tlen, uint32_t slot, 2562 uint8_t hpts_calling, int reason, uint32_t cwnd_to_use) 2563 { 2564 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2565 union tcp_log_stackspecific log; 2566 struct timeval tv; 2567 2568 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2569 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 2570 log.u_bbr.flex1 = slot; 2571 log.u_bbr.flex2 = rack->r_ctl.rc_hpts_flags; 2572 log.u_bbr.flex4 = reason; 2573 if (rack->rack_no_prr) 2574 log.u_bbr.flex5 = 0; 2575 else 2576 log.u_bbr.flex5 = rack->r_ctl.rc_prr_sndcnt; 2577 log.u_bbr.flex7 = hpts_calling; 2578 log.u_bbr.flex8 = rack->rc_in_persist; 2579 log.u_bbr.lt_epoch = cwnd_to_use; 2580 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2581 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2582 log.u_bbr.pkts_out = rack->r_ctl.rc_out_at_rto; 2583 log.u_bbr.delivered = rack->r_ctl.rc_snd_max_at_rto; 2584 log.u_bbr.pacing_gain = rack->r_must_retran; 2585 log.u_bbr.cwnd_gain = rack->rc_has_collapsed; 2586 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2587 &rack->rc_inp->inp_socket->so_rcv, 2588 &rack->rc_inp->inp_socket->so_snd, 2589 BBR_LOG_JUSTRET, 0, 2590 tlen, &log, false, &tv); 2591 } 2592 } 2593 2594 static void 2595 rack_log_to_cancel(struct tcp_rack *rack, int32_t hpts_removed, int line, uint32_t us_cts, 2596 struct timeval *tv, uint32_t flags_on_entry) 2597 { 2598 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2599 union tcp_log_stackspecific log; 2600 2601 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2602 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 2603 log.u_bbr.flex1 = line; 2604 log.u_bbr.flex2 = rack->r_ctl.rc_last_output_to; 2605 log.u_bbr.flex3 = flags_on_entry; 2606 log.u_bbr.flex4 = us_cts; 2607 if (rack->rack_no_prr) 2608 log.u_bbr.flex5 = 0; 2609 else 2610 log.u_bbr.flex5 = rack->r_ctl.rc_prr_sndcnt; 2611 log.u_bbr.flex6 = rack->rc_tp->t_rxtcur; 2612 log.u_bbr.flex7 = hpts_removed; 2613 log.u_bbr.flex8 = 1; 2614 log.u_bbr.applimited = rack->r_ctl.rc_hpts_flags; 2615 log.u_bbr.timeStamp = us_cts; 2616 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2617 log.u_bbr.pkts_out = rack->r_ctl.rc_out_at_rto; 2618 log.u_bbr.delivered = rack->r_ctl.rc_snd_max_at_rto; 2619 log.u_bbr.pacing_gain = rack->r_must_retran; 2620 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2621 &rack->rc_inp->inp_socket->so_rcv, 2622 &rack->rc_inp->inp_socket->so_snd, 2623 BBR_LOG_TIMERCANC, 0, 2624 0, &log, false, tv); 2625 } 2626 } 2627 2628 static void 2629 rack_log_alt_to_to_cancel(struct tcp_rack *rack, 2630 uint32_t flex1, uint32_t flex2, 2631 uint32_t flex3, uint32_t flex4, 2632 uint32_t flex5, uint32_t flex6, 2633 uint16_t flex7, uint8_t mod) 2634 { 2635 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2636 union tcp_log_stackspecific log; 2637 struct timeval tv; 2638 2639 if (mod == 1) { 2640 /* No you can't use 1, its for the real to cancel */ 2641 return; 2642 } 2643 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2644 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2645 log.u_bbr.flex1 = flex1; 2646 log.u_bbr.flex2 = flex2; 2647 log.u_bbr.flex3 = flex3; 2648 log.u_bbr.flex4 = flex4; 2649 log.u_bbr.flex5 = flex5; 2650 log.u_bbr.flex6 = flex6; 2651 log.u_bbr.flex7 = flex7; 2652 log.u_bbr.flex8 = mod; 2653 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2654 &rack->rc_inp->inp_socket->so_rcv, 2655 &rack->rc_inp->inp_socket->so_snd, 2656 BBR_LOG_TIMERCANC, 0, 2657 0, &log, false, &tv); 2658 } 2659 } 2660 2661 static void 2662 rack_log_to_processing(struct tcp_rack *rack, uint32_t cts, int32_t ret, int32_t timers) 2663 { 2664 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2665 union tcp_log_stackspecific log; 2666 struct timeval tv; 2667 2668 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2669 log.u_bbr.flex1 = timers; 2670 log.u_bbr.flex2 = ret; 2671 log.u_bbr.flex3 = rack->r_ctl.rc_timer_exp; 2672 log.u_bbr.flex4 = rack->r_ctl.rc_hpts_flags; 2673 log.u_bbr.flex5 = cts; 2674 if (rack->rack_no_prr) 2675 log.u_bbr.flex6 = 0; 2676 else 2677 log.u_bbr.flex6 = rack->r_ctl.rc_prr_sndcnt; 2678 log.u_bbr.pkts_out = rack->r_ctl.rc_out_at_rto; 2679 log.u_bbr.delivered = rack->r_ctl.rc_snd_max_at_rto; 2680 log.u_bbr.pacing_gain = rack->r_must_retran; 2681 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2682 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2683 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2684 &rack->rc_inp->inp_socket->so_rcv, 2685 &rack->rc_inp->inp_socket->so_snd, 2686 BBR_LOG_TO_PROCESS, 0, 2687 0, &log, false, &tv); 2688 } 2689 } 2690 2691 static void 2692 rack_log_to_prr(struct tcp_rack *rack, int frm, int orig_cwnd, int line) 2693 { 2694 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2695 union tcp_log_stackspecific log; 2696 struct timeval tv; 2697 2698 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2699 log.u_bbr.flex1 = rack->r_ctl.rc_prr_out; 2700 log.u_bbr.flex2 = rack->r_ctl.rc_prr_recovery_fs; 2701 if (rack->rack_no_prr) 2702 log.u_bbr.flex3 = 0; 2703 else 2704 log.u_bbr.flex3 = rack->r_ctl.rc_prr_sndcnt; 2705 log.u_bbr.flex4 = rack->r_ctl.rc_prr_delivered; 2706 log.u_bbr.flex5 = rack->r_ctl.rc_sacked; 2707 log.u_bbr.flex6 = rack->r_ctl.rc_holes_rxt; 2708 log.u_bbr.flex7 = line; 2709 log.u_bbr.flex8 = frm; 2710 log.u_bbr.pkts_out = orig_cwnd; 2711 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2712 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2713 log.u_bbr.use_lt_bw = rack->r_ent_rec_ns; 2714 log.u_bbr.use_lt_bw <<= 1; 2715 log.u_bbr.use_lt_bw |= rack->r_might_revert; 2716 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2717 &rack->rc_inp->inp_socket->so_rcv, 2718 &rack->rc_inp->inp_socket->so_snd, 2719 BBR_LOG_BBRUPD, 0, 2720 0, &log, false, &tv); 2721 } 2722 } 2723 2724 #ifdef NETFLIX_EXP_DETECTION 2725 static void 2726 rack_log_sad(struct tcp_rack *rack, int event) 2727 { 2728 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 2729 union tcp_log_stackspecific log; 2730 struct timeval tv; 2731 2732 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 2733 log.u_bbr.flex1 = rack->r_ctl.sack_count; 2734 log.u_bbr.flex2 = rack->r_ctl.ack_count; 2735 log.u_bbr.flex3 = rack->r_ctl.sack_moved_extra; 2736 log.u_bbr.flex4 = rack->r_ctl.sack_noextra_move; 2737 log.u_bbr.flex5 = rack->r_ctl.rc_num_maps_alloced; 2738 log.u_bbr.flex6 = tcp_sack_to_ack_thresh; 2739 log.u_bbr.pkts_out = tcp_sack_to_move_thresh; 2740 log.u_bbr.lt_epoch = (tcp_force_detection << 8); 2741 log.u_bbr.lt_epoch |= rack->do_detection; 2742 log.u_bbr.applimited = tcp_map_minimum; 2743 log.u_bbr.flex7 = rack->sack_attack_disable; 2744 log.u_bbr.flex8 = event; 2745 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 2746 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 2747 log.u_bbr.delivered = tcp_sad_decay_val; 2748 TCP_LOG_EVENTP(rack->rc_tp, NULL, 2749 &rack->rc_inp->inp_socket->so_rcv, 2750 &rack->rc_inp->inp_socket->so_snd, 2751 TCP_SAD_DETECTION, 0, 2752 0, &log, false, &tv); 2753 } 2754 } 2755 #endif 2756 2757 static void 2758 rack_counter_destroy(void) 2759 { 2760 counter_u64_free(rack_fto_send); 2761 counter_u64_free(rack_fto_rsm_send); 2762 counter_u64_free(rack_nfto_resend); 2763 counter_u64_free(rack_hw_pace_init_fail); 2764 counter_u64_free(rack_hw_pace_lost); 2765 counter_u64_free(rack_non_fto_send); 2766 counter_u64_free(rack_extended_rfo); 2767 counter_u64_free(rack_ack_total); 2768 counter_u64_free(rack_express_sack); 2769 counter_u64_free(rack_sack_total); 2770 counter_u64_free(rack_move_none); 2771 counter_u64_free(rack_move_some); 2772 counter_u64_free(rack_sack_attacks_detected); 2773 counter_u64_free(rack_sack_attacks_reversed); 2774 counter_u64_free(rack_sack_used_next_merge); 2775 counter_u64_free(rack_sack_used_prev_merge); 2776 counter_u64_free(rack_tlp_tot); 2777 counter_u64_free(rack_tlp_newdata); 2778 counter_u64_free(rack_tlp_retran); 2779 counter_u64_free(rack_tlp_retran_bytes); 2780 counter_u64_free(rack_to_tot); 2781 counter_u64_free(rack_saw_enobuf); 2782 counter_u64_free(rack_saw_enobuf_hw); 2783 counter_u64_free(rack_saw_enetunreach); 2784 counter_u64_free(rack_hot_alloc); 2785 counter_u64_free(rack_to_alloc); 2786 counter_u64_free(rack_to_alloc_hard); 2787 counter_u64_free(rack_to_alloc_emerg); 2788 counter_u64_free(rack_to_alloc_limited); 2789 counter_u64_free(rack_alloc_limited_conns); 2790 counter_u64_free(rack_split_limited); 2791 counter_u64_free(rack_multi_single_eq); 2792 counter_u64_free(rack_proc_non_comp_ack); 2793 counter_u64_free(rack_sack_proc_all); 2794 counter_u64_free(rack_sack_proc_restart); 2795 counter_u64_free(rack_sack_proc_short); 2796 counter_u64_free(rack_sack_skipped_acked); 2797 counter_u64_free(rack_sack_splits); 2798 counter_u64_free(rack_input_idle_reduces); 2799 counter_u64_free(rack_collapsed_win); 2800 counter_u64_free(rack_collapsed_win_rxt); 2801 counter_u64_free(rack_collapsed_win_rxt_bytes); 2802 counter_u64_free(rack_collapsed_win_seen); 2803 counter_u64_free(rack_try_scwnd); 2804 counter_u64_free(rack_persists_sends); 2805 counter_u64_free(rack_persists_acks); 2806 counter_u64_free(rack_persists_loss); 2807 counter_u64_free(rack_persists_lost_ends); 2808 #ifdef INVARIANTS 2809 counter_u64_free(rack_adjust_map_bw); 2810 #endif 2811 COUNTER_ARRAY_FREE(rack_out_size, TCP_MSS_ACCT_SIZE); 2812 COUNTER_ARRAY_FREE(rack_opts_arry, RACK_OPTS_SIZE); 2813 } 2814 2815 static struct rack_sendmap * 2816 rack_alloc(struct tcp_rack *rack) 2817 { 2818 struct rack_sendmap *rsm; 2819 2820 /* 2821 * First get the top of the list it in 2822 * theory is the "hottest" rsm we have, 2823 * possibly just freed by ack processing. 2824 */ 2825 if (rack->rc_free_cnt > rack_free_cache) { 2826 rsm = TAILQ_FIRST(&rack->r_ctl.rc_free); 2827 TAILQ_REMOVE(&rack->r_ctl.rc_free, rsm, r_tnext); 2828 counter_u64_add(rack_hot_alloc, 1); 2829 rack->rc_free_cnt--; 2830 return (rsm); 2831 } 2832 /* 2833 * Once we get under our free cache we probably 2834 * no longer have a "hot" one available. Lets 2835 * get one from UMA. 2836 */ 2837 rsm = uma_zalloc(rack_zone, M_NOWAIT); 2838 if (rsm) { 2839 rack->r_ctl.rc_num_maps_alloced++; 2840 counter_u64_add(rack_to_alloc, 1); 2841 return (rsm); 2842 } 2843 /* 2844 * Dig in to our aux rsm's (the last two) since 2845 * UMA failed to get us one. 2846 */ 2847 if (rack->rc_free_cnt) { 2848 counter_u64_add(rack_to_alloc_emerg, 1); 2849 rsm = TAILQ_FIRST(&rack->r_ctl.rc_free); 2850 TAILQ_REMOVE(&rack->r_ctl.rc_free, rsm, r_tnext); 2851 rack->rc_free_cnt--; 2852 return (rsm); 2853 } 2854 return (NULL); 2855 } 2856 2857 static struct rack_sendmap * 2858 rack_alloc_full_limit(struct tcp_rack *rack) 2859 { 2860 if ((V_tcp_map_entries_limit > 0) && 2861 (rack->do_detection == 0) && 2862 (rack->r_ctl.rc_num_maps_alloced >= V_tcp_map_entries_limit)) { 2863 counter_u64_add(rack_to_alloc_limited, 1); 2864 if (!rack->alloc_limit_reported) { 2865 rack->alloc_limit_reported = 1; 2866 counter_u64_add(rack_alloc_limited_conns, 1); 2867 } 2868 return (NULL); 2869 } 2870 return (rack_alloc(rack)); 2871 } 2872 2873 /* wrapper to allocate a sendmap entry, subject to a specific limit */ 2874 static struct rack_sendmap * 2875 rack_alloc_limit(struct tcp_rack *rack, uint8_t limit_type) 2876 { 2877 struct rack_sendmap *rsm; 2878 2879 if (limit_type) { 2880 /* currently there is only one limit type */ 2881 if (V_tcp_map_split_limit > 0 && 2882 (rack->do_detection == 0) && 2883 rack->r_ctl.rc_num_split_allocs >= V_tcp_map_split_limit) { 2884 counter_u64_add(rack_split_limited, 1); 2885 if (!rack->alloc_limit_reported) { 2886 rack->alloc_limit_reported = 1; 2887 counter_u64_add(rack_alloc_limited_conns, 1); 2888 } 2889 return (NULL); 2890 } 2891 } 2892 2893 /* allocate and mark in the limit type, if set */ 2894 rsm = rack_alloc(rack); 2895 if (rsm != NULL && limit_type) { 2896 rsm->r_limit_type = limit_type; 2897 rack->r_ctl.rc_num_split_allocs++; 2898 } 2899 return (rsm); 2900 } 2901 2902 static void 2903 rack_free(struct tcp_rack *rack, struct rack_sendmap *rsm) 2904 { 2905 if (rsm->r_flags & RACK_APP_LIMITED) { 2906 if (rack->r_ctl.rc_app_limited_cnt > 0) { 2907 rack->r_ctl.rc_app_limited_cnt--; 2908 } 2909 } 2910 if (rsm->r_limit_type) { 2911 /* currently there is only one limit type */ 2912 rack->r_ctl.rc_num_split_allocs--; 2913 } 2914 if (rsm == rack->r_ctl.rc_first_appl) { 2915 if (rack->r_ctl.rc_app_limited_cnt == 0) 2916 rack->r_ctl.rc_first_appl = NULL; 2917 else { 2918 /* Follow the next one out */ 2919 struct rack_sendmap fe; 2920 2921 fe.r_start = rsm->r_nseq_appl; 2922 rack->r_ctl.rc_first_appl = RB_FIND(rack_rb_tree_head, &rack->r_ctl.rc_mtree, &fe); 2923 } 2924 } 2925 if (rsm == rack->r_ctl.rc_resend) 2926 rack->r_ctl.rc_resend = NULL; 2927 if (rsm == rack->r_ctl.rc_end_appl) 2928 rack->r_ctl.rc_end_appl = NULL; 2929 if (rack->r_ctl.rc_tlpsend == rsm) 2930 rack->r_ctl.rc_tlpsend = NULL; 2931 if (rack->r_ctl.rc_sacklast == rsm) 2932 rack->r_ctl.rc_sacklast = NULL; 2933 memset(rsm, 0, sizeof(struct rack_sendmap)); 2934 TAILQ_INSERT_HEAD(&rack->r_ctl.rc_free, rsm, r_tnext); 2935 rack->rc_free_cnt++; 2936 } 2937 2938 static void 2939 rack_free_trim(struct tcp_rack *rack) 2940 { 2941 struct rack_sendmap *rsm; 2942 2943 /* 2944 * Free up all the tail entries until 2945 * we get our list down to the limit. 2946 */ 2947 while (rack->rc_free_cnt > rack_free_cache) { 2948 rsm = TAILQ_LAST(&rack->r_ctl.rc_free, rack_head); 2949 TAILQ_REMOVE(&rack->r_ctl.rc_free, rsm, r_tnext); 2950 rack->rc_free_cnt--; 2951 uma_zfree(rack_zone, rsm); 2952 } 2953 } 2954 2955 2956 static uint32_t 2957 rack_get_measure_window(struct tcpcb *tp, struct tcp_rack *rack) 2958 { 2959 uint64_t srtt, bw, len, tim; 2960 uint32_t segsiz, def_len, minl; 2961 2962 segsiz = min(ctf_fixed_maxseg(tp), rack->r_ctl.rc_pace_min_segs); 2963 def_len = rack_def_data_window * segsiz; 2964 if (rack->rc_gp_filled == 0) { 2965 /* 2966 * We have no measurement (IW is in flight?) so 2967 * we can only guess using our data_window sysctl 2968 * value (usually 20MSS). 2969 */ 2970 return (def_len); 2971 } 2972 /* 2973 * Now we have a number of factors to consider. 2974 * 2975 * 1) We have a desired BDP which is usually 2976 * at least 2. 2977 * 2) We have a minimum number of rtt's usually 1 SRTT 2978 * but we allow it too to be more. 2979 * 3) We want to make sure a measurement last N useconds (if 2980 * we have set rack_min_measure_usec. 2981 * 2982 * We handle the first concern here by trying to create a data 2983 * window of max(rack_def_data_window, DesiredBDP). The 2984 * second concern we handle in not letting the measurement 2985 * window end normally until at least the required SRTT's 2986 * have gone by which is done further below in 2987 * rack_enough_for_measurement(). Finally the third concern 2988 * we also handle here by calculating how long that time 2989 * would take at the current BW and then return the 2990 * max of our first calculation and that length. Note 2991 * that if rack_min_measure_usec is 0, we don't deal 2992 * with concern 3. Also for both Concern 1 and 3 an 2993 * application limited period could end the measurement 2994 * earlier. 2995 * 2996 * So lets calculate the BDP with the "known" b/w using 2997 * the SRTT has our rtt and then multiply it by the 2998 * goal. 2999 */ 3000 bw = rack_get_bw(rack); 3001 srtt = (uint64_t)tp->t_srtt; 3002 len = bw * srtt; 3003 len /= (uint64_t)HPTS_USEC_IN_SEC; 3004 len *= max(1, rack_goal_bdp); 3005 /* Now we need to round up to the nearest MSS */ 3006 len = roundup(len, segsiz); 3007 if (rack_min_measure_usec) { 3008 /* Now calculate our min length for this b/w */ 3009 tim = rack_min_measure_usec; 3010 minl = (tim * bw) / (uint64_t)HPTS_USEC_IN_SEC; 3011 if (minl == 0) 3012 minl = 1; 3013 minl = roundup(minl, segsiz); 3014 if (len < minl) 3015 len = minl; 3016 } 3017 /* 3018 * Now if we have a very small window we want 3019 * to attempt to get the window that is 3020 * as small as possible. This happens on 3021 * low b/w connections and we don't want to 3022 * span huge numbers of rtt's between measurements. 3023 * 3024 * We basically include 2 over our "MIN window" so 3025 * that the measurement can be shortened (possibly) by 3026 * an ack'ed packet. 3027 */ 3028 if (len < def_len) 3029 return (max((uint32_t)len, ((MIN_GP_WIN+2) * segsiz))); 3030 else 3031 return (max((uint32_t)len, def_len)); 3032 3033 } 3034 3035 static int 3036 rack_enough_for_measurement(struct tcpcb *tp, struct tcp_rack *rack, tcp_seq th_ack, uint8_t *quality) 3037 { 3038 uint32_t tim, srtts, segsiz; 3039 3040 /* 3041 * Has enough time passed for the GP measurement to be valid? 3042 */ 3043 if ((tp->snd_max == tp->snd_una) || 3044 (th_ack == tp->snd_max)){ 3045 /* All is acked */ 3046 *quality = RACK_QUALITY_ALLACKED; 3047 return (1); 3048 } 3049 if (SEQ_LT(th_ack, tp->gput_seq)) { 3050 /* Not enough bytes yet */ 3051 return (0); 3052 } 3053 segsiz = min(ctf_fixed_maxseg(tp), rack->r_ctl.rc_pace_min_segs); 3054 if (SEQ_LT(th_ack, tp->gput_ack) && 3055 ((th_ack - tp->gput_seq) < max(rc_init_window(rack), (MIN_GP_WIN * segsiz)))) { 3056 /* Not enough bytes yet */ 3057 return (0); 3058 } 3059 if (rack->r_ctl.rc_first_appl && 3060 (SEQ_GEQ(th_ack, rack->r_ctl.rc_first_appl->r_end))) { 3061 /* 3062 * We are up to the app limited send point 3063 * we have to measure irrespective of the time.. 3064 */ 3065 *quality = RACK_QUALITY_APPLIMITED; 3066 return (1); 3067 } 3068 /* Now what about time? */ 3069 srtts = (rack->r_ctl.rc_gp_srtt * rack_min_srtts); 3070 tim = tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time) - tp->gput_ts; 3071 if (tim >= srtts) { 3072 *quality = RACK_QUALITY_HIGH; 3073 return (1); 3074 } 3075 /* Nope not even a full SRTT has passed */ 3076 return (0); 3077 } 3078 3079 static void 3080 rack_log_timely(struct tcp_rack *rack, 3081 uint32_t logged, uint64_t cur_bw, uint64_t low_bnd, 3082 uint64_t up_bnd, int line, uint8_t method) 3083 { 3084 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 3085 union tcp_log_stackspecific log; 3086 struct timeval tv; 3087 3088 memset(&log, 0, sizeof(log)); 3089 log.u_bbr.flex1 = logged; 3090 log.u_bbr.flex2 = rack->rc_gp_timely_inc_cnt; 3091 log.u_bbr.flex2 <<= 4; 3092 log.u_bbr.flex2 |= rack->rc_gp_timely_dec_cnt; 3093 log.u_bbr.flex2 <<= 4; 3094 log.u_bbr.flex2 |= rack->rc_gp_incr; 3095 log.u_bbr.flex2 <<= 4; 3096 log.u_bbr.flex2 |= rack->rc_gp_bwred; 3097 log.u_bbr.flex3 = rack->rc_gp_incr; 3098 log.u_bbr.flex4 = rack->r_ctl.rack_per_of_gp_ss; 3099 log.u_bbr.flex5 = rack->r_ctl.rack_per_of_gp_ca; 3100 log.u_bbr.flex6 = rack->r_ctl.rack_per_of_gp_rec; 3101 log.u_bbr.flex7 = rack->rc_gp_bwred; 3102 log.u_bbr.flex8 = method; 3103 log.u_bbr.cur_del_rate = cur_bw; 3104 log.u_bbr.delRate = low_bnd; 3105 log.u_bbr.bw_inuse = up_bnd; 3106 log.u_bbr.rttProp = rack_get_bw(rack); 3107 log.u_bbr.pkt_epoch = line; 3108 log.u_bbr.pkts_out = rack->r_ctl.rc_rtt_diff; 3109 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 3110 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 3111 log.u_bbr.epoch = rack->r_ctl.rc_gp_srtt; 3112 log.u_bbr.lt_epoch = rack->r_ctl.rc_prev_gp_srtt; 3113 log.u_bbr.cwnd_gain = rack->rc_dragged_bottom; 3114 log.u_bbr.cwnd_gain <<= 1; 3115 log.u_bbr.cwnd_gain |= rack->rc_gp_saw_rec; 3116 log.u_bbr.cwnd_gain <<= 1; 3117 log.u_bbr.cwnd_gain |= rack->rc_gp_saw_ss; 3118 log.u_bbr.cwnd_gain <<= 1; 3119 log.u_bbr.cwnd_gain |= rack->rc_gp_saw_ca; 3120 log.u_bbr.lost = rack->r_ctl.rc_loss_count; 3121 TCP_LOG_EVENTP(rack->rc_tp, NULL, 3122 &rack->rc_inp->inp_socket->so_rcv, 3123 &rack->rc_inp->inp_socket->so_snd, 3124 TCP_TIMELY_WORK, 0, 3125 0, &log, false, &tv); 3126 } 3127 } 3128 3129 static int 3130 rack_bw_can_be_raised(struct tcp_rack *rack, uint64_t cur_bw, uint64_t last_bw_est, uint16_t mult) 3131 { 3132 /* 3133 * Before we increase we need to know if 3134 * the estimate just made was less than 3135 * our pacing goal (i.e. (cur_bw * mult) > last_bw_est) 3136 * 3137 * If we already are pacing at a fast enough 3138 * rate to push us faster there is no sense of 3139 * increasing. 3140 * 3141 * We first caculate our actual pacing rate (ss or ca multiplier 3142 * times our cur_bw). 3143 * 3144 * Then we take the last measured rate and multipy by our 3145 * maximum pacing overage to give us a max allowable rate. 3146 * 3147 * If our act_rate is smaller than our max_allowable rate 3148 * then we should increase. Else we should hold steady. 3149 * 3150 */ 3151 uint64_t act_rate, max_allow_rate; 3152 3153 if (rack_timely_no_stopping) 3154 return (1); 3155 3156 if ((cur_bw == 0) || (last_bw_est == 0)) { 3157 /* 3158 * Initial startup case or 3159 * everything is acked case. 3160 */ 3161 rack_log_timely(rack, mult, cur_bw, 0, 0, 3162 __LINE__, 9); 3163 return (1); 3164 } 3165 if (mult <= 100) { 3166 /* 3167 * We can always pace at or slightly above our rate. 3168 */ 3169 rack_log_timely(rack, mult, cur_bw, 0, 0, 3170 __LINE__, 9); 3171 return (1); 3172 } 3173 act_rate = cur_bw * (uint64_t)mult; 3174 act_rate /= 100; 3175 max_allow_rate = last_bw_est * ((uint64_t)rack_max_per_above + (uint64_t)100); 3176 max_allow_rate /= 100; 3177 if (act_rate < max_allow_rate) { 3178 /* 3179 * Here the rate we are actually pacing at 3180 * is smaller than 10% above our last measurement. 3181 * This means we are pacing below what we would 3182 * like to try to achieve (plus some wiggle room). 3183 */ 3184 rack_log_timely(rack, mult, cur_bw, act_rate, max_allow_rate, 3185 __LINE__, 9); 3186 return (1); 3187 } else { 3188 /* 3189 * Here we are already pacing at least rack_max_per_above(10%) 3190 * what we are getting back. This indicates most likely 3191 * that we are being limited (cwnd/rwnd/app) and can't 3192 * get any more b/w. There is no sense of trying to 3193 * raise up the pacing rate its not speeding us up 3194 * and we already are pacing faster than we are getting. 3195 */ 3196 rack_log_timely(rack, mult, cur_bw, act_rate, max_allow_rate, 3197 __LINE__, 8); 3198 return (0); 3199 } 3200 } 3201 3202 static void 3203 rack_validate_multipliers_at_or_above100(struct tcp_rack *rack) 3204 { 3205 /* 3206 * When we drag bottom, we want to assure 3207 * that no multiplier is below 1.0, if so 3208 * we want to restore it to at least that. 3209 */ 3210 if (rack->r_ctl.rack_per_of_gp_rec < 100) { 3211 /* This is unlikely we usually do not touch recovery */ 3212 rack->r_ctl.rack_per_of_gp_rec = 100; 3213 } 3214 if (rack->r_ctl.rack_per_of_gp_ca < 100) { 3215 rack->r_ctl.rack_per_of_gp_ca = 100; 3216 } 3217 if (rack->r_ctl.rack_per_of_gp_ss < 100) { 3218 rack->r_ctl.rack_per_of_gp_ss = 100; 3219 } 3220 } 3221 3222 static void 3223 rack_validate_multipliers_at_or_below_100(struct tcp_rack *rack) 3224 { 3225 if (rack->r_ctl.rack_per_of_gp_ca > 100) { 3226 rack->r_ctl.rack_per_of_gp_ca = 100; 3227 } 3228 if (rack->r_ctl.rack_per_of_gp_ss > 100) { 3229 rack->r_ctl.rack_per_of_gp_ss = 100; 3230 } 3231 } 3232 3233 static void 3234 rack_increase_bw_mul(struct tcp_rack *rack, int timely_says, uint64_t cur_bw, uint64_t last_bw_est, int override) 3235 { 3236 int32_t calc, logged, plus; 3237 3238 logged = 0; 3239 3240 if (override) { 3241 /* 3242 * override is passed when we are 3243 * loosing b/w and making one last 3244 * gasp at trying to not loose out 3245 * to a new-reno flow. 3246 */ 3247 goto extra_boost; 3248 } 3249 /* In classic timely we boost by 5x if we have 5 increases in a row, lets not */ 3250 if (rack->rc_gp_incr && 3251 ((rack->rc_gp_timely_inc_cnt + 1) >= RACK_TIMELY_CNT_BOOST)) { 3252 /* 3253 * Reset and get 5 strokes more before the boost. Note 3254 * that the count is 0 based so we have to add one. 3255 */ 3256 extra_boost: 3257 plus = (uint32_t)rack_gp_increase_per * RACK_TIMELY_CNT_BOOST; 3258 rack->rc_gp_timely_inc_cnt = 0; 3259 } else 3260 plus = (uint32_t)rack_gp_increase_per; 3261 /* Must be at least 1% increase for true timely increases */ 3262 if ((plus < 1) && 3263 ((rack->r_ctl.rc_rtt_diff <= 0) || (timely_says <= 0))) 3264 plus = 1; 3265 if (rack->rc_gp_saw_rec && 3266 (rack->rc_gp_no_rec_chg == 0) && 3267 rack_bw_can_be_raised(rack, cur_bw, last_bw_est, 3268 rack->r_ctl.rack_per_of_gp_rec)) { 3269 /* We have been in recovery ding it too */ 3270 calc = rack->r_ctl.rack_per_of_gp_rec + plus; 3271 if (calc > 0xffff) 3272 calc = 0xffff; 3273 logged |= 1; 3274 rack->r_ctl.rack_per_of_gp_rec = (uint16_t)calc; 3275 if (rack_per_upper_bound_ss && 3276 (rack->rc_dragged_bottom == 0) && 3277 (rack->r_ctl.rack_per_of_gp_rec > rack_per_upper_bound_ss)) 3278 rack->r_ctl.rack_per_of_gp_rec = rack_per_upper_bound_ss; 3279 } 3280 if (rack->rc_gp_saw_ca && 3281 (rack->rc_gp_saw_ss == 0) && 3282 rack_bw_can_be_raised(rack, cur_bw, last_bw_est, 3283 rack->r_ctl.rack_per_of_gp_ca)) { 3284 /* In CA */ 3285 calc = rack->r_ctl.rack_per_of_gp_ca + plus; 3286 if (calc > 0xffff) 3287 calc = 0xffff; 3288 logged |= 2; 3289 rack->r_ctl.rack_per_of_gp_ca = (uint16_t)calc; 3290 if (rack_per_upper_bound_ca && 3291 (rack->rc_dragged_bottom == 0) && 3292 (rack->r_ctl.rack_per_of_gp_ca > rack_per_upper_bound_ca)) 3293 rack->r_ctl.rack_per_of_gp_ca = rack_per_upper_bound_ca; 3294 } 3295 if (rack->rc_gp_saw_ss && 3296 rack_bw_can_be_raised(rack, cur_bw, last_bw_est, 3297 rack->r_ctl.rack_per_of_gp_ss)) { 3298 /* In SS */ 3299 calc = rack->r_ctl.rack_per_of_gp_ss + plus; 3300 if (calc > 0xffff) 3301 calc = 0xffff; 3302 rack->r_ctl.rack_per_of_gp_ss = (uint16_t)calc; 3303 if (rack_per_upper_bound_ss && 3304 (rack->rc_dragged_bottom == 0) && 3305 (rack->r_ctl.rack_per_of_gp_ss > rack_per_upper_bound_ss)) 3306 rack->r_ctl.rack_per_of_gp_ss = rack_per_upper_bound_ss; 3307 logged |= 4; 3308 } 3309 if (logged && 3310 (rack->rc_gp_incr == 0)){ 3311 /* Go into increment mode */ 3312 rack->rc_gp_incr = 1; 3313 rack->rc_gp_timely_inc_cnt = 0; 3314 } 3315 if (rack->rc_gp_incr && 3316 logged && 3317 (rack->rc_gp_timely_inc_cnt < RACK_TIMELY_CNT_BOOST)) { 3318 rack->rc_gp_timely_inc_cnt++; 3319 } 3320 rack_log_timely(rack, logged, plus, 0, 0, 3321 __LINE__, 1); 3322 } 3323 3324 static uint32_t 3325 rack_get_decrease(struct tcp_rack *rack, uint32_t curper, int32_t rtt_diff) 3326 { 3327 /* 3328 * norm_grad = rtt_diff / minrtt; 3329 * new_per = curper * (1 - B * norm_grad) 3330 * 3331 * B = rack_gp_decrease_per (default 10%) 3332 * rtt_dif = input var current rtt-diff 3333 * curper = input var current percentage 3334 * minrtt = from rack filter 3335 * 3336 */ 3337 uint64_t perf; 3338 3339 perf = (((uint64_t)curper * ((uint64_t)1000000 - 3340 ((uint64_t)rack_gp_decrease_per * (uint64_t)10000 * 3341 (((uint64_t)rtt_diff * (uint64_t)1000000)/ 3342 (uint64_t)get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt)))/ 3343 (uint64_t)1000000)) / 3344 (uint64_t)1000000); 3345 if (perf > curper) { 3346 /* TSNH */ 3347 perf = curper - 1; 3348 } 3349 return ((uint32_t)perf); 3350 } 3351 3352 static uint32_t 3353 rack_decrease_highrtt(struct tcp_rack *rack, uint32_t curper, uint32_t rtt) 3354 { 3355 /* 3356 * highrttthresh 3357 * result = curper * (1 - (B * ( 1 - ------ )) 3358 * gp_srtt 3359 * 3360 * B = rack_gp_decrease_per (default 10%) 3361 * highrttthresh = filter_min * rack_gp_rtt_maxmul 3362 */ 3363 uint64_t perf; 3364 uint32_t highrttthresh; 3365 3366 highrttthresh = get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt) * rack_gp_rtt_maxmul; 3367 3368 perf = (((uint64_t)curper * ((uint64_t)1000000 - 3369 ((uint64_t)rack_gp_decrease_per * ((uint64_t)1000000 - 3370 ((uint64_t)highrttthresh * (uint64_t)1000000) / 3371 (uint64_t)rtt)) / 100)) /(uint64_t)1000000); 3372 return (perf); 3373 } 3374 3375 static void 3376 rack_decrease_bw_mul(struct tcp_rack *rack, int timely_says, uint32_t rtt, int32_t rtt_diff) 3377 { 3378 uint64_t logvar, logvar2, logvar3; 3379 uint32_t logged, new_per, ss_red, ca_red, rec_red, alt, val; 3380 3381 if (rack->rc_gp_incr) { 3382 /* Turn off increment counting */ 3383 rack->rc_gp_incr = 0; 3384 rack->rc_gp_timely_inc_cnt = 0; 3385 } 3386 ss_red = ca_red = rec_red = 0; 3387 logged = 0; 3388 /* Calculate the reduction value */ 3389 if (rtt_diff < 0) { 3390 rtt_diff *= -1; 3391 } 3392 /* Must be at least 1% reduction */ 3393 if (rack->rc_gp_saw_rec && (rack->rc_gp_no_rec_chg == 0)) { 3394 /* We have been in recovery ding it too */ 3395 if (timely_says == 2) { 3396 new_per = rack_decrease_highrtt(rack, rack->r_ctl.rack_per_of_gp_rec, rtt); 3397 alt = rack_get_decrease(rack, rack->r_ctl.rack_per_of_gp_rec, rtt_diff); 3398 if (alt < new_per) 3399 val = alt; 3400 else 3401 val = new_per; 3402 } else 3403 val = new_per = alt = rack_get_decrease(rack, rack->r_ctl.rack_per_of_gp_rec, rtt_diff); 3404 if (rack->r_ctl.rack_per_of_gp_rec > val) { 3405 rec_red = (rack->r_ctl.rack_per_of_gp_rec - val); 3406 rack->r_ctl.rack_per_of_gp_rec = (uint16_t)val; 3407 } else { 3408 rack->r_ctl.rack_per_of_gp_rec = rack_per_lower_bound; 3409 rec_red = 0; 3410 } 3411 if (rack_per_lower_bound > rack->r_ctl.rack_per_of_gp_rec) 3412 rack->r_ctl.rack_per_of_gp_rec = rack_per_lower_bound; 3413 logged |= 1; 3414 } 3415 if (rack->rc_gp_saw_ss) { 3416 /* Sent in SS */ 3417 if (timely_says == 2) { 3418 new_per = rack_decrease_highrtt(rack, rack->r_ctl.rack_per_of_gp_ss, rtt); 3419 alt = rack_get_decrease(rack, rack->r_ctl.rack_per_of_gp_rec, rtt_diff); 3420 if (alt < new_per) 3421 val = alt; 3422 else 3423 val = new_per; 3424 } else 3425 val = new_per = alt = rack_get_decrease(rack, rack->r_ctl.rack_per_of_gp_ss, rtt_diff); 3426 if (rack->r_ctl.rack_per_of_gp_ss > new_per) { 3427 ss_red = rack->r_ctl.rack_per_of_gp_ss - val; 3428 rack->r_ctl.rack_per_of_gp_ss = (uint16_t)val; 3429 } else { 3430 ss_red = new_per; 3431 rack->r_ctl.rack_per_of_gp_ss = rack_per_lower_bound; 3432 logvar = new_per; 3433 logvar <<= 32; 3434 logvar |= alt; 3435 logvar2 = (uint32_t)rtt; 3436 logvar2 <<= 32; 3437 logvar2 |= (uint32_t)rtt_diff; 3438 logvar3 = rack_gp_rtt_maxmul; 3439 logvar3 <<= 32; 3440 logvar3 |= get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt); 3441 rack_log_timely(rack, timely_says, 3442 logvar2, logvar3, 3443 logvar, __LINE__, 10); 3444 } 3445 if (rack_per_lower_bound > rack->r_ctl.rack_per_of_gp_ss) 3446 rack->r_ctl.rack_per_of_gp_ss = rack_per_lower_bound; 3447 logged |= 4; 3448 } else if (rack->rc_gp_saw_ca) { 3449 /* Sent in CA */ 3450 if (timely_says == 2) { 3451 new_per = rack_decrease_highrtt(rack, rack->r_ctl.rack_per_of_gp_ca, rtt); 3452 alt = rack_get_decrease(rack, rack->r_ctl.rack_per_of_gp_rec, rtt_diff); 3453 if (alt < new_per) 3454 val = alt; 3455 else 3456 val = new_per; 3457 } else 3458 val = new_per = alt = rack_get_decrease(rack, rack->r_ctl.rack_per_of_gp_ca, rtt_diff); 3459 if (rack->r_ctl.rack_per_of_gp_ca > val) { 3460 ca_red = rack->r_ctl.rack_per_of_gp_ca - val; 3461 rack->r_ctl.rack_per_of_gp_ca = (uint16_t)val; 3462 } else { 3463 rack->r_ctl.rack_per_of_gp_ca = rack_per_lower_bound; 3464 ca_red = 0; 3465 logvar = new_per; 3466 logvar <<= 32; 3467 logvar |= alt; 3468 logvar2 = (uint32_t)rtt; 3469 logvar2 <<= 32; 3470 logvar2 |= (uint32_t)rtt_diff; 3471 logvar3 = rack_gp_rtt_maxmul; 3472 logvar3 <<= 32; 3473 logvar3 |= get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt); 3474 rack_log_timely(rack, timely_says, 3475 logvar2, logvar3, 3476 logvar, __LINE__, 10); 3477 } 3478 if (rack_per_lower_bound > rack->r_ctl.rack_per_of_gp_ca) 3479 rack->r_ctl.rack_per_of_gp_ca = rack_per_lower_bound; 3480 logged |= 2; 3481 } 3482 if (rack->rc_gp_timely_dec_cnt < 0x7) { 3483 rack->rc_gp_timely_dec_cnt++; 3484 if (rack_timely_dec_clear && 3485 (rack->rc_gp_timely_dec_cnt == rack_timely_dec_clear)) 3486 rack->rc_gp_timely_dec_cnt = 0; 3487 } 3488 logvar = ss_red; 3489 logvar <<= 32; 3490 logvar |= ca_red; 3491 rack_log_timely(rack, logged, rec_red, rack_per_lower_bound, logvar, 3492 __LINE__, 2); 3493 } 3494 3495 static void 3496 rack_log_rtt_shrinks(struct tcp_rack *rack, uint32_t us_cts, 3497 uint32_t rtt, uint32_t line, uint8_t reas) 3498 { 3499 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 3500 union tcp_log_stackspecific log; 3501 struct timeval tv; 3502 3503 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 3504 log.u_bbr.flex1 = line; 3505 log.u_bbr.flex2 = rack->r_ctl.rc_time_probertt_starts; 3506 log.u_bbr.flex3 = rack->r_ctl.rc_lower_rtt_us_cts; 3507 log.u_bbr.flex4 = rack->r_ctl.rack_per_of_gp_ss; 3508 log.u_bbr.flex5 = rtt; 3509 log.u_bbr.flex6 = rack->rc_highly_buffered; 3510 log.u_bbr.flex6 <<= 1; 3511 log.u_bbr.flex6 |= rack->forced_ack; 3512 log.u_bbr.flex6 <<= 1; 3513 log.u_bbr.flex6 |= rack->rc_gp_dyn_mul; 3514 log.u_bbr.flex6 <<= 1; 3515 log.u_bbr.flex6 |= rack->in_probe_rtt; 3516 log.u_bbr.flex6 <<= 1; 3517 log.u_bbr.flex6 |= rack->measure_saw_probe_rtt; 3518 log.u_bbr.flex7 = rack->r_ctl.rack_per_of_gp_probertt; 3519 log.u_bbr.pacing_gain = rack->r_ctl.rack_per_of_gp_ca; 3520 log.u_bbr.cwnd_gain = rack->r_ctl.rack_per_of_gp_rec; 3521 log.u_bbr.flex8 = reas; 3522 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 3523 log.u_bbr.delRate = rack_get_bw(rack); 3524 log.u_bbr.cur_del_rate = rack->r_ctl.rc_highest_us_rtt; 3525 log.u_bbr.cur_del_rate <<= 32; 3526 log.u_bbr.cur_del_rate |= rack->r_ctl.rc_lowest_us_rtt; 3527 log.u_bbr.applimited = rack->r_ctl.rc_time_probertt_entered; 3528 log.u_bbr.pkts_out = rack->r_ctl.rc_rtt_diff; 3529 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 3530 log.u_bbr.epoch = rack->r_ctl.rc_gp_srtt; 3531 log.u_bbr.lt_epoch = rack->r_ctl.rc_prev_gp_srtt; 3532 log.u_bbr.pkt_epoch = rack->r_ctl.rc_lower_rtt_us_cts; 3533 log.u_bbr.delivered = rack->r_ctl.rc_target_probertt_flight; 3534 log.u_bbr.lost = get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt); 3535 log.u_bbr.rttProp = us_cts; 3536 log.u_bbr.rttProp <<= 32; 3537 log.u_bbr.rttProp |= rack->r_ctl.rc_entry_gp_rtt; 3538 TCP_LOG_EVENTP(rack->rc_tp, NULL, 3539 &rack->rc_inp->inp_socket->so_rcv, 3540 &rack->rc_inp->inp_socket->so_snd, 3541 BBR_LOG_RTT_SHRINKS, 0, 3542 0, &log, false, &rack->r_ctl.act_rcv_time); 3543 } 3544 } 3545 3546 static void 3547 rack_set_prtt_target(struct tcp_rack *rack, uint32_t segsiz, uint32_t rtt) 3548 { 3549 uint64_t bwdp; 3550 3551 bwdp = rack_get_bw(rack); 3552 bwdp *= (uint64_t)rtt; 3553 bwdp /= (uint64_t)HPTS_USEC_IN_SEC; 3554 rack->r_ctl.rc_target_probertt_flight = roundup((uint32_t)bwdp, segsiz); 3555 if (rack->r_ctl.rc_target_probertt_flight < (segsiz * rack_timely_min_segs)) { 3556 /* 3557 * A window protocol must be able to have 4 packets 3558 * outstanding as the floor in order to function 3559 * (especially considering delayed ack :D). 3560 */ 3561 rack->r_ctl.rc_target_probertt_flight = (segsiz * rack_timely_min_segs); 3562 } 3563 } 3564 3565 static void 3566 rack_enter_probertt(struct tcp_rack *rack, uint32_t us_cts) 3567 { 3568 /** 3569 * ProbeRTT is a bit different in rack_pacing than in 3570 * BBR. It is like BBR in that it uses the lowering of 3571 * the RTT as a signal that we saw something new and 3572 * counts from there for how long between. But it is 3573 * different in that its quite simple. It does not 3574 * play with the cwnd and wait until we get down 3575 * to N segments outstanding and hold that for 3576 * 200ms. Instead it just sets the pacing reduction 3577 * rate to a set percentage (70 by default) and hold 3578 * that for a number of recent GP Srtt's. 3579 */ 3580 uint32_t segsiz; 3581 3582 if (rack->rc_gp_dyn_mul == 0) 3583 return; 3584 3585 if (rack->rc_tp->snd_max == rack->rc_tp->snd_una) { 3586 /* We are idle */ 3587 return; 3588 } 3589 if ((rack->rc_tp->t_flags & TF_GPUTINPROG) && 3590 SEQ_GT(rack->rc_tp->snd_una, rack->rc_tp->gput_seq)) { 3591 /* 3592 * Stop the goodput now, the idea here is 3593 * that future measurements with in_probe_rtt 3594 * won't register if they are not greater so 3595 * we want to get what info (if any) is available 3596 * now. 3597 */ 3598 rack_do_goodput_measurement(rack->rc_tp, rack, 3599 rack->rc_tp->snd_una, __LINE__, 3600 RACK_QUALITY_PROBERTT); 3601 } 3602 rack->r_ctl.rack_per_of_gp_probertt = rack_per_of_gp_probertt; 3603 rack->r_ctl.rc_time_probertt_entered = us_cts; 3604 segsiz = min(ctf_fixed_maxseg(rack->rc_tp), 3605 rack->r_ctl.rc_pace_min_segs); 3606 rack->in_probe_rtt = 1; 3607 rack->measure_saw_probe_rtt = 1; 3608 rack->r_ctl.rc_lower_rtt_us_cts = us_cts; 3609 rack->r_ctl.rc_time_probertt_starts = 0; 3610 rack->r_ctl.rc_entry_gp_rtt = rack->r_ctl.rc_gp_srtt; 3611 if (rack_probertt_use_min_rtt_entry) 3612 rack_set_prtt_target(rack, segsiz, get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt)); 3613 else 3614 rack_set_prtt_target(rack, segsiz, rack->r_ctl.rc_gp_srtt); 3615 rack_log_rtt_shrinks(rack, us_cts, get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt), 3616 __LINE__, RACK_RTTS_ENTERPROBE); 3617 } 3618 3619 static void 3620 rack_exit_probertt(struct tcp_rack *rack, uint32_t us_cts) 3621 { 3622 struct rack_sendmap *rsm; 3623 uint32_t segsiz; 3624 3625 segsiz = min(ctf_fixed_maxseg(rack->rc_tp), 3626 rack->r_ctl.rc_pace_min_segs); 3627 rack->in_probe_rtt = 0; 3628 if ((rack->rc_tp->t_flags & TF_GPUTINPROG) && 3629 SEQ_GT(rack->rc_tp->snd_una, rack->rc_tp->gput_seq)) { 3630 /* 3631 * Stop the goodput now, the idea here is 3632 * that future measurements with in_probe_rtt 3633 * won't register if they are not greater so 3634 * we want to get what info (if any) is available 3635 * now. 3636 */ 3637 rack_do_goodput_measurement(rack->rc_tp, rack, 3638 rack->rc_tp->snd_una, __LINE__, 3639 RACK_QUALITY_PROBERTT); 3640 } else if (rack->rc_tp->t_flags & TF_GPUTINPROG) { 3641 /* 3642 * We don't have enough data to make a measurement. 3643 * So lets just stop and start here after exiting 3644 * probe-rtt. We probably are not interested in 3645 * the results anyway. 3646 */ 3647 rack->rc_tp->t_flags &= ~TF_GPUTINPROG; 3648 } 3649 /* 3650 * Measurements through the current snd_max are going 3651 * to be limited by the slower pacing rate. 3652 * 3653 * We need to mark these as app-limited so we 3654 * don't collapse the b/w. 3655 */ 3656 rsm = RB_MAX(rack_rb_tree_head, &rack->r_ctl.rc_mtree); 3657 if (rsm && ((rsm->r_flags & RACK_APP_LIMITED) == 0)) { 3658 if (rack->r_ctl.rc_app_limited_cnt == 0) 3659 rack->r_ctl.rc_end_appl = rack->r_ctl.rc_first_appl = rsm; 3660 else { 3661 /* 3662 * Go out to the end app limited and mark 3663 * this new one as next and move the end_appl up 3664 * to this guy. 3665 */ 3666 if (rack->r_ctl.rc_end_appl) 3667 rack->r_ctl.rc_end_appl->r_nseq_appl = rsm->r_start; 3668 rack->r_ctl.rc_end_appl = rsm; 3669 } 3670 rsm->r_flags |= RACK_APP_LIMITED; 3671 rack->r_ctl.rc_app_limited_cnt++; 3672 } 3673 /* 3674 * Now, we need to examine our pacing rate multipliers. 3675 * If its under 100%, we need to kick it back up to 3676 * 100%. We also don't let it be over our "max" above 3677 * the actual rate i.e. 100% + rack_clamp_atexit_prtt. 3678 * Note setting clamp_atexit_prtt to 0 has the effect 3679 * of setting CA/SS to 100% always at exit (which is 3680 * the default behavior). 3681 */ 3682 if (rack_probertt_clear_is) { 3683 rack->rc_gp_incr = 0; 3684 rack->rc_gp_bwred = 0; 3685 rack->rc_gp_timely_inc_cnt = 0; 3686 rack->rc_gp_timely_dec_cnt = 0; 3687 } 3688 /* Do we do any clamping at exit? */ 3689 if (rack->rc_highly_buffered && rack_atexit_prtt_hbp) { 3690 rack->r_ctl.rack_per_of_gp_ca = rack_atexit_prtt_hbp; 3691 rack->r_ctl.rack_per_of_gp_ss = rack_atexit_prtt_hbp; 3692 } 3693 if ((rack->rc_highly_buffered == 0) && rack_atexit_prtt) { 3694 rack->r_ctl.rack_per_of_gp_ca = rack_atexit_prtt; 3695 rack->r_ctl.rack_per_of_gp_ss = rack_atexit_prtt; 3696 } 3697 /* 3698 * Lets set rtt_diff to 0, so that we will get a "boost" 3699 * after exiting. 3700 */ 3701 rack->r_ctl.rc_rtt_diff = 0; 3702 3703 /* Clear all flags so we start fresh */ 3704 rack->rc_tp->t_bytes_acked = 0; 3705 rack->rc_tp->ccv->flags &= ~CCF_ABC_SENTAWND; 3706 /* 3707 * If configured to, set the cwnd and ssthresh to 3708 * our targets. 3709 */ 3710 if (rack_probe_rtt_sets_cwnd) { 3711 uint64_t ebdp; 3712 uint32_t setto; 3713 3714 /* Set ssthresh so we get into CA once we hit our target */ 3715 if (rack_probertt_use_min_rtt_exit == 1) { 3716 /* Set to min rtt */ 3717 rack_set_prtt_target(rack, segsiz, 3718 get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt)); 3719 } else if (rack_probertt_use_min_rtt_exit == 2) { 3720 /* Set to current gp rtt */ 3721 rack_set_prtt_target(rack, segsiz, 3722 rack->r_ctl.rc_gp_srtt); 3723 } else if (rack_probertt_use_min_rtt_exit == 3) { 3724 /* Set to entry gp rtt */ 3725 rack_set_prtt_target(rack, segsiz, 3726 rack->r_ctl.rc_entry_gp_rtt); 3727 } else { 3728 uint64_t sum; 3729 uint32_t setval; 3730 3731 sum = rack->r_ctl.rc_entry_gp_rtt; 3732 sum *= 10; 3733 sum /= (uint64_t)(max(1, rack->r_ctl.rc_gp_srtt)); 3734 if (sum >= 20) { 3735 /* 3736 * A highly buffered path needs 3737 * cwnd space for timely to work. 3738 * Lets set things up as if 3739 * we are heading back here again. 3740 */ 3741 setval = rack->r_ctl.rc_entry_gp_rtt; 3742 } else if (sum >= 15) { 3743 /* 3744 * Lets take the smaller of the 3745 * two since we are just somewhat 3746 * buffered. 3747 */ 3748 setval = rack->r_ctl.rc_gp_srtt; 3749 if (setval > rack->r_ctl.rc_entry_gp_rtt) 3750 setval = rack->r_ctl.rc_entry_gp_rtt; 3751 } else { 3752 /* 3753 * Here we are not highly buffered 3754 * and should pick the min we can to 3755 * keep from causing loss. 3756 */ 3757 setval = get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt); 3758 } 3759 rack_set_prtt_target(rack, segsiz, 3760 setval); 3761 } 3762 if (rack_probe_rtt_sets_cwnd > 1) { 3763 /* There is a percentage here to boost */ 3764 ebdp = rack->r_ctl.rc_target_probertt_flight; 3765 ebdp *= rack_probe_rtt_sets_cwnd; 3766 ebdp /= 100; 3767 setto = rack->r_ctl.rc_target_probertt_flight + ebdp; 3768 } else 3769 setto = rack->r_ctl.rc_target_probertt_flight; 3770 rack->rc_tp->snd_cwnd = roundup(setto, segsiz); 3771 if (rack->rc_tp->snd_cwnd < (segsiz * rack_timely_min_segs)) { 3772 /* Enforce a min */ 3773 rack->rc_tp->snd_cwnd = segsiz * rack_timely_min_segs; 3774 } 3775 /* If we set in the cwnd also set the ssthresh point so we are in CA */ 3776 rack->rc_tp->snd_ssthresh = (rack->rc_tp->snd_cwnd - 1); 3777 } 3778 rack_log_rtt_shrinks(rack, us_cts, 3779 get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt), 3780 __LINE__, RACK_RTTS_EXITPROBE); 3781 /* Clear times last so log has all the info */ 3782 rack->r_ctl.rc_probertt_sndmax_atexit = rack->rc_tp->snd_max; 3783 rack->r_ctl.rc_time_probertt_entered = us_cts; 3784 rack->r_ctl.rc_time_probertt_starts = rack->r_ctl.rc_lower_rtt_us_cts = us_cts; 3785 rack->r_ctl.rc_time_of_last_probertt = us_cts; 3786 } 3787 3788 static void 3789 rack_check_probe_rtt(struct tcp_rack *rack, uint32_t us_cts) 3790 { 3791 /* Check in on probe-rtt */ 3792 if (rack->rc_gp_filled == 0) { 3793 /* We do not do p-rtt unless we have gp measurements */ 3794 return; 3795 } 3796 if (rack->in_probe_rtt) { 3797 uint64_t no_overflow; 3798 uint32_t endtime, must_stay; 3799 3800 if (rack->r_ctl.rc_went_idle_time && 3801 ((us_cts - rack->r_ctl.rc_went_idle_time) > rack_min_probertt_hold)) { 3802 /* 3803 * We went idle during prtt, just exit now. 3804 */ 3805 rack_exit_probertt(rack, us_cts); 3806 } else if (rack_probe_rtt_safety_val && 3807 TSTMP_GT(us_cts, rack->r_ctl.rc_time_probertt_entered) && 3808 ((us_cts - rack->r_ctl.rc_time_probertt_entered) > rack_probe_rtt_safety_val)) { 3809 /* 3810 * Probe RTT safety value triggered! 3811 */ 3812 rack_log_rtt_shrinks(rack, us_cts, 3813 get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt), 3814 __LINE__, RACK_RTTS_SAFETY); 3815 rack_exit_probertt(rack, us_cts); 3816 } 3817 /* Calculate the max we will wait */ 3818 endtime = rack->r_ctl.rc_time_probertt_entered + (rack->r_ctl.rc_gp_srtt * rack_max_drain_wait); 3819 if (rack->rc_highly_buffered) 3820 endtime += (rack->r_ctl.rc_gp_srtt * rack_max_drain_hbp); 3821 /* Calculate the min we must wait */ 3822 must_stay = rack->r_ctl.rc_time_probertt_entered + (rack->r_ctl.rc_gp_srtt * rack_must_drain); 3823 if ((ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked) > rack->r_ctl.rc_target_probertt_flight) && 3824 TSTMP_LT(us_cts, endtime)) { 3825 uint32_t calc; 3826 /* Do we lower more? */ 3827 no_exit: 3828 if (TSTMP_GT(us_cts, rack->r_ctl.rc_time_probertt_entered)) 3829 calc = us_cts - rack->r_ctl.rc_time_probertt_entered; 3830 else 3831 calc = 0; 3832 calc /= max(rack->r_ctl.rc_gp_srtt, 1); 3833 if (calc) { 3834 /* Maybe */ 3835 calc *= rack_per_of_gp_probertt_reduce; 3836 rack->r_ctl.rack_per_of_gp_probertt = rack_per_of_gp_probertt - calc; 3837 /* Limit it too */ 3838 if (rack->r_ctl.rack_per_of_gp_probertt < rack_per_of_gp_lowthresh) 3839 rack->r_ctl.rack_per_of_gp_probertt = rack_per_of_gp_lowthresh; 3840 } 3841 /* We must reach target or the time set */ 3842 return; 3843 } 3844 if (rack->r_ctl.rc_time_probertt_starts == 0) { 3845 if ((TSTMP_LT(us_cts, must_stay) && 3846 rack->rc_highly_buffered) || 3847 (ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked) > 3848 rack->r_ctl.rc_target_probertt_flight)) { 3849 /* We are not past the must_stay time */ 3850 goto no_exit; 3851 } 3852 rack_log_rtt_shrinks(rack, us_cts, 3853 get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt), 3854 __LINE__, RACK_RTTS_REACHTARGET); 3855 rack->r_ctl.rc_time_probertt_starts = us_cts; 3856 if (rack->r_ctl.rc_time_probertt_starts == 0) 3857 rack->r_ctl.rc_time_probertt_starts = 1; 3858 /* Restore back to our rate we want to pace at in prtt */ 3859 rack->r_ctl.rack_per_of_gp_probertt = rack_per_of_gp_probertt; 3860 } 3861 /* 3862 * Setup our end time, some number of gp_srtts plus 200ms. 3863 */ 3864 no_overflow = ((uint64_t)rack->r_ctl.rc_gp_srtt * 3865 (uint64_t)rack_probertt_gpsrtt_cnt_mul); 3866 if (rack_probertt_gpsrtt_cnt_div) 3867 endtime = (uint32_t)(no_overflow / (uint64_t)rack_probertt_gpsrtt_cnt_div); 3868 else 3869 endtime = 0; 3870 endtime += rack_min_probertt_hold; 3871 endtime += rack->r_ctl.rc_time_probertt_starts; 3872 if (TSTMP_GEQ(us_cts, endtime)) { 3873 /* yes, exit probertt */ 3874 rack_exit_probertt(rack, us_cts); 3875 } 3876 3877 } else if ((us_cts - rack->r_ctl.rc_lower_rtt_us_cts) >= rack_time_between_probertt) { 3878 /* Go into probertt, its been too long since we went lower */ 3879 rack_enter_probertt(rack, us_cts); 3880 } 3881 } 3882 3883 static void 3884 rack_update_multiplier(struct tcp_rack *rack, int32_t timely_says, uint64_t last_bw_est, 3885 uint32_t rtt, int32_t rtt_diff) 3886 { 3887 uint64_t cur_bw, up_bnd, low_bnd, subfr; 3888 uint32_t losses; 3889 3890 if ((rack->rc_gp_dyn_mul == 0) || 3891 (rack->use_fixed_rate) || 3892 (rack->in_probe_rtt) || 3893 (rack->rc_always_pace == 0)) { 3894 /* No dynamic GP multiplier in play */ 3895 return; 3896 } 3897 losses = rack->r_ctl.rc_loss_count - rack->r_ctl.rc_loss_at_start; 3898 cur_bw = rack_get_bw(rack); 3899 /* Calculate our up and down range */ 3900 up_bnd = rack->r_ctl.last_gp_comp_bw * (uint64_t)rack_gp_per_bw_mul_up; 3901 up_bnd /= 100; 3902 up_bnd += rack->r_ctl.last_gp_comp_bw; 3903 3904 subfr = (uint64_t)rack->r_ctl.last_gp_comp_bw * (uint64_t)rack_gp_per_bw_mul_down; 3905 subfr /= 100; 3906 low_bnd = rack->r_ctl.last_gp_comp_bw - subfr; 3907 if ((timely_says == 2) && (rack->r_ctl.rc_no_push_at_mrtt)) { 3908 /* 3909 * This is the case where our RTT is above 3910 * the max target and we have been configured 3911 * to just do timely no bonus up stuff in that case. 3912 * 3913 * There are two configurations, set to 1, and we 3914 * just do timely if we are over our max. If its 3915 * set above 1 then we slam the multipliers down 3916 * to 100 and then decrement per timely. 3917 */ 3918 rack_log_timely(rack, timely_says, cur_bw, low_bnd, up_bnd, 3919 __LINE__, 3); 3920 if (rack->r_ctl.rc_no_push_at_mrtt > 1) 3921 rack_validate_multipliers_at_or_below_100(rack); 3922 rack_decrease_bw_mul(rack, timely_says, rtt, rtt_diff); 3923 } else if ((last_bw_est < low_bnd) && !losses) { 3924 /* 3925 * We are decreasing this is a bit complicated this 3926 * means we are loosing ground. This could be 3927 * because another flow entered and we are competing 3928 * for b/w with it. This will push the RTT up which 3929 * makes timely unusable unless we want to get shoved 3930 * into a corner and just be backed off (the age 3931 * old problem with delay based CC). 3932 * 3933 * On the other hand if it was a route change we 3934 * would like to stay somewhat contained and not 3935 * blow out the buffers. 3936 */ 3937 rack_log_timely(rack, timely_says, cur_bw, low_bnd, up_bnd, 3938 __LINE__, 3); 3939 rack->r_ctl.last_gp_comp_bw = cur_bw; 3940 if (rack->rc_gp_bwred == 0) { 3941 /* Go into reduction counting */ 3942 rack->rc_gp_bwred = 1; 3943 rack->rc_gp_timely_dec_cnt = 0; 3944 } 3945 if ((rack->rc_gp_timely_dec_cnt < rack_timely_max_push_drop) || 3946 (timely_says == 0)) { 3947 /* 3948 * Push another time with a faster pacing 3949 * to try to gain back (we include override to 3950 * get a full raise factor). 3951 */ 3952 if ((rack->rc_gp_saw_ca && rack->r_ctl.rack_per_of_gp_ca <= rack_down_raise_thresh) || 3953 (rack->rc_gp_saw_ss && rack->r_ctl.rack_per_of_gp_ss <= rack_down_raise_thresh) || 3954 (timely_says == 0) || 3955 (rack_down_raise_thresh == 0)) { 3956 /* 3957 * Do an override up in b/w if we were 3958 * below the threshold or if the threshold 3959 * is zero we always do the raise. 3960 */ 3961 rack_increase_bw_mul(rack, timely_says, cur_bw, last_bw_est, 1); 3962 } else { 3963 /* Log it stays the same */ 3964 rack_log_timely(rack, 0, last_bw_est, low_bnd, 0, 3965 __LINE__, 11); 3966 } 3967 rack->rc_gp_timely_dec_cnt++; 3968 /* We are not incrementing really no-count */ 3969 rack->rc_gp_incr = 0; 3970 rack->rc_gp_timely_inc_cnt = 0; 3971 } else { 3972 /* 3973 * Lets just use the RTT 3974 * information and give up 3975 * pushing. 3976 */ 3977 goto use_timely; 3978 } 3979 } else if ((timely_says != 2) && 3980 !losses && 3981 (last_bw_est > up_bnd)) { 3982 /* 3983 * We are increasing b/w lets keep going, updating 3984 * our b/w and ignoring any timely input, unless 3985 * of course we are at our max raise (if there is one). 3986 */ 3987 3988 rack_log_timely(rack, timely_says, cur_bw, low_bnd, up_bnd, 3989 __LINE__, 3); 3990 rack->r_ctl.last_gp_comp_bw = cur_bw; 3991 if (rack->rc_gp_saw_ss && 3992 rack_per_upper_bound_ss && 3993 (rack->r_ctl.rack_per_of_gp_ss == rack_per_upper_bound_ss)) { 3994 /* 3995 * In cases where we can't go higher 3996 * we should just use timely. 3997 */ 3998 goto use_timely; 3999 } 4000 if (rack->rc_gp_saw_ca && 4001 rack_per_upper_bound_ca && 4002 (rack->r_ctl.rack_per_of_gp_ca == rack_per_upper_bound_ca)) { 4003 /* 4004 * In cases where we can't go higher 4005 * we should just use timely. 4006 */ 4007 goto use_timely; 4008 } 4009 rack->rc_gp_bwred = 0; 4010 rack->rc_gp_timely_dec_cnt = 0; 4011 /* You get a set number of pushes if timely is trying to reduce */ 4012 if ((rack->rc_gp_incr < rack_timely_max_push_rise) || (timely_says == 0)) { 4013 rack_increase_bw_mul(rack, timely_says, cur_bw, last_bw_est, 0); 4014 } else { 4015 /* Log it stays the same */ 4016 rack_log_timely(rack, 0, last_bw_est, up_bnd, 0, 4017 __LINE__, 12); 4018 } 4019 return; 4020 } else { 4021 /* 4022 * We are staying between the lower and upper range bounds 4023 * so use timely to decide. 4024 */ 4025 rack_log_timely(rack, timely_says, cur_bw, low_bnd, up_bnd, 4026 __LINE__, 3); 4027 use_timely: 4028 if (timely_says) { 4029 rack->rc_gp_incr = 0; 4030 rack->rc_gp_timely_inc_cnt = 0; 4031 if ((rack->rc_gp_timely_dec_cnt < rack_timely_max_push_drop) && 4032 !losses && 4033 (last_bw_est < low_bnd)) { 4034 /* We are loosing ground */ 4035 rack_increase_bw_mul(rack, timely_says, cur_bw, last_bw_est, 0); 4036 rack->rc_gp_timely_dec_cnt++; 4037 /* We are not incrementing really no-count */ 4038 rack->rc_gp_incr = 0; 4039 rack->rc_gp_timely_inc_cnt = 0; 4040 } else 4041 rack_decrease_bw_mul(rack, timely_says, rtt, rtt_diff); 4042 } else { 4043 rack->rc_gp_bwred = 0; 4044 rack->rc_gp_timely_dec_cnt = 0; 4045 rack_increase_bw_mul(rack, timely_says, cur_bw, last_bw_est, 0); 4046 } 4047 } 4048 } 4049 4050 static int32_t 4051 rack_make_timely_judgement(struct tcp_rack *rack, uint32_t rtt, int32_t rtt_diff, uint32_t prev_rtt) 4052 { 4053 int32_t timely_says; 4054 uint64_t log_mult, log_rtt_a_diff; 4055 4056 log_rtt_a_diff = rtt; 4057 log_rtt_a_diff <<= 32; 4058 log_rtt_a_diff |= (uint32_t)rtt_diff; 4059 if (rtt >= (get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt) * 4060 rack_gp_rtt_maxmul)) { 4061 /* Reduce the b/w multiplier */ 4062 timely_says = 2; 4063 log_mult = get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt) * rack_gp_rtt_maxmul; 4064 log_mult <<= 32; 4065 log_mult |= prev_rtt; 4066 rack_log_timely(rack, timely_says, log_mult, 4067 get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt), 4068 log_rtt_a_diff, __LINE__, 4); 4069 } else if (rtt <= (get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt) + 4070 ((get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt) * rack_gp_rtt_minmul) / 4071 max(rack_gp_rtt_mindiv , 1)))) { 4072 /* Increase the b/w multiplier */ 4073 log_mult = get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt) + 4074 ((get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt) * rack_gp_rtt_minmul) / 4075 max(rack_gp_rtt_mindiv , 1)); 4076 log_mult <<= 32; 4077 log_mult |= prev_rtt; 4078 timely_says = 0; 4079 rack_log_timely(rack, timely_says, log_mult , 4080 get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt), 4081 log_rtt_a_diff, __LINE__, 5); 4082 } else { 4083 /* 4084 * Use a gradient to find it the timely gradient 4085 * is: 4086 * grad = rc_rtt_diff / min_rtt; 4087 * 4088 * anything below or equal to 0 will be 4089 * a increase indication. Anything above 4090 * zero is a decrease. Note we take care 4091 * of the actual gradient calculation 4092 * in the reduction (its not needed for 4093 * increase). 4094 */ 4095 log_mult = prev_rtt; 4096 if (rtt_diff <= 0) { 4097 /* 4098 * Rttdiff is less than zero, increase the 4099 * b/w multiplier (its 0 or negative) 4100 */ 4101 timely_says = 0; 4102 rack_log_timely(rack, timely_says, log_mult, 4103 get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt), log_rtt_a_diff, __LINE__, 6); 4104 } else { 4105 /* Reduce the b/w multiplier */ 4106 timely_says = 1; 4107 rack_log_timely(rack, timely_says, log_mult, 4108 get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt), log_rtt_a_diff, __LINE__, 7); 4109 } 4110 } 4111 return (timely_says); 4112 } 4113 4114 static void 4115 rack_do_goodput_measurement(struct tcpcb *tp, struct tcp_rack *rack, 4116 tcp_seq th_ack, int line, uint8_t quality) 4117 { 4118 uint64_t tim, bytes_ps, ltim, stim, utim; 4119 uint32_t segsiz, bytes, reqbytes, us_cts; 4120 int32_t gput, new_rtt_diff, timely_says; 4121 uint64_t resid_bw, subpart = 0, addpart = 0, srtt; 4122 int did_add = 0; 4123 4124 us_cts = tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time); 4125 segsiz = min(ctf_fixed_maxseg(tp), rack->r_ctl.rc_pace_min_segs); 4126 if (TSTMP_GEQ(us_cts, tp->gput_ts)) 4127 tim = us_cts - tp->gput_ts; 4128 else 4129 tim = 0; 4130 if (rack->r_ctl.rc_gp_cumack_ts > rack->r_ctl.rc_gp_output_ts) 4131 stim = rack->r_ctl.rc_gp_cumack_ts - rack->r_ctl.rc_gp_output_ts; 4132 else 4133 stim = 0; 4134 /* 4135 * Use the larger of the send time or ack time. This prevents us 4136 * from being influenced by ack artifacts to come up with too 4137 * high of measurement. Note that since we are spanning over many more 4138 * bytes in most of our measurements hopefully that is less likely to 4139 * occur. 4140 */ 4141 if (tim > stim) 4142 utim = max(tim, 1); 4143 else 4144 utim = max(stim, 1); 4145 /* Lets get a msec time ltim too for the old stuff */ 4146 ltim = max(1, (utim / HPTS_USEC_IN_MSEC)); 4147 gput = (((uint64_t) (th_ack - tp->gput_seq)) << 3) / ltim; 4148 reqbytes = min(rc_init_window(rack), (MIN_GP_WIN * segsiz)); 4149 if ((tim == 0) && (stim == 0)) { 4150 /* 4151 * Invalid measurement time, maybe 4152 * all on one ack/one send? 4153 */ 4154 bytes = 0; 4155 bytes_ps = 0; 4156 rack_log_pacing_delay_calc(rack, bytes_ps, reqbytes, 4157 0, 0, 0, 10, __LINE__, NULL, quality); 4158 goto skip_measurement; 4159 } 4160 if (rack->r_ctl.rc_gp_lowrtt == 0xffffffff) { 4161 /* We never made a us_rtt measurement? */ 4162 bytes = 0; 4163 bytes_ps = 0; 4164 rack_log_pacing_delay_calc(rack, bytes_ps, reqbytes, 4165 0, 0, 0, 10, __LINE__, NULL, quality); 4166 goto skip_measurement; 4167 } 4168 /* 4169 * Calculate the maximum possible b/w this connection 4170 * could have. We base our calculation on the lowest 4171 * rtt we have seen during the measurement and the 4172 * largest rwnd the client has given us in that time. This 4173 * forms a BDP that is the maximum that we could ever 4174 * get to the client. Anything larger is not valid. 4175 * 4176 * I originally had code here that rejected measurements 4177 * where the time was less than 1/2 the latest us_rtt. 4178 * But after thinking on that I realized its wrong since 4179 * say you had a 150Mbps or even 1Gbps link, and you 4180 * were a long way away.. example I am in Europe (100ms rtt) 4181 * talking to my 1Gbps link in S.C. Now measuring say 150,000 4182 * bytes my time would be 1.2ms, and yet my rtt would say 4183 * the measurement was invalid the time was < 50ms. The 4184 * same thing is true for 150Mb (8ms of time). 4185 * 4186 * A better way I realized is to look at what the maximum 4187 * the connection could possibly do. This is gated on 4188 * the lowest RTT we have seen and the highest rwnd. 4189 * We should in theory never exceed that, if we are 4190 * then something on the path is storing up packets 4191 * and then feeding them all at once to our endpoint 4192 * messing up our measurement. 4193 */ 4194 rack->r_ctl.last_max_bw = rack->r_ctl.rc_gp_high_rwnd; 4195 rack->r_ctl.last_max_bw *= HPTS_USEC_IN_SEC; 4196 rack->r_ctl.last_max_bw /= rack->r_ctl.rc_gp_lowrtt; 4197 if (SEQ_LT(th_ack, tp->gput_seq)) { 4198 /* No measurement can be made */ 4199 bytes = 0; 4200 bytes_ps = 0; 4201 rack_log_pacing_delay_calc(rack, bytes_ps, reqbytes, 4202 0, 0, 0, 10, __LINE__, NULL, quality); 4203 goto skip_measurement; 4204 } else 4205 bytes = (th_ack - tp->gput_seq); 4206 bytes_ps = (uint64_t)bytes; 4207 /* 4208 * Don't measure a b/w for pacing unless we have gotten at least 4209 * an initial windows worth of data in this measurement interval. 4210 * 4211 * Small numbers of bytes get badly influenced by delayed ack and 4212 * other artifacts. Note we take the initial window or our 4213 * defined minimum GP (defaulting to 10 which hopefully is the 4214 * IW). 4215 */ 4216 if (rack->rc_gp_filled == 0) { 4217 /* 4218 * The initial estimate is special. We 4219 * have blasted out an IW worth of packets 4220 * without a real valid ack ts results. We 4221 * then setup the app_limited_needs_set flag, 4222 * this should get the first ack in (probably 2 4223 * MSS worth) to be recorded as the timestamp. 4224 * We thus allow a smaller number of bytes i.e. 4225 * IW - 2MSS. 4226 */ 4227 reqbytes -= (2 * segsiz); 4228 /* Also lets fill previous for our first measurement to be neutral */ 4229 rack->r_ctl.rc_prev_gp_srtt = rack->r_ctl.rc_gp_srtt; 4230 } 4231 if ((bytes_ps < reqbytes) || rack->app_limited_needs_set) { 4232 rack_log_pacing_delay_calc(rack, bytes_ps, reqbytes, 4233 rack->r_ctl.rc_app_limited_cnt, 4234 0, 0, 10, __LINE__, NULL, quality); 4235 goto skip_measurement; 4236 } 4237 /* 4238 * We now need to calculate the Timely like status so 4239 * we can update (possibly) the b/w multipliers. 4240 */ 4241 new_rtt_diff = (int32_t)rack->r_ctl.rc_gp_srtt - (int32_t)rack->r_ctl.rc_prev_gp_srtt; 4242 if (rack->rc_gp_filled == 0) { 4243 /* No previous reading */ 4244 rack->r_ctl.rc_rtt_diff = new_rtt_diff; 4245 } else { 4246 if (rack->measure_saw_probe_rtt == 0) { 4247 /* 4248 * We don't want a probertt to be counted 4249 * since it will be negative incorrectly. We 4250 * expect to be reducing the RTT when we 4251 * pace at a slower rate. 4252 */ 4253 rack->r_ctl.rc_rtt_diff -= (rack->r_ctl.rc_rtt_diff / 8); 4254 rack->r_ctl.rc_rtt_diff += (new_rtt_diff / 8); 4255 } 4256 } 4257 timely_says = rack_make_timely_judgement(rack, 4258 rack->r_ctl.rc_gp_srtt, 4259 rack->r_ctl.rc_rtt_diff, 4260 rack->r_ctl.rc_prev_gp_srtt 4261 ); 4262 bytes_ps *= HPTS_USEC_IN_SEC; 4263 bytes_ps /= utim; 4264 if (bytes_ps > rack->r_ctl.last_max_bw) { 4265 /* 4266 * Something is on path playing 4267 * since this b/w is not possible based 4268 * on our BDP (highest rwnd and lowest rtt 4269 * we saw in the measurement window). 4270 * 4271 * Another option here would be to 4272 * instead skip the measurement. 4273 */ 4274 rack_log_pacing_delay_calc(rack, bytes, reqbytes, 4275 bytes_ps, rack->r_ctl.last_max_bw, 0, 4276 11, __LINE__, NULL, quality); 4277 bytes_ps = rack->r_ctl.last_max_bw; 4278 } 4279 /* We store gp for b/w in bytes per second */ 4280 if (rack->rc_gp_filled == 0) { 4281 /* Initial measurement */ 4282 if (bytes_ps) { 4283 rack->r_ctl.gp_bw = bytes_ps; 4284 rack->rc_gp_filled = 1; 4285 rack->r_ctl.num_measurements = 1; 4286 rack_set_pace_segments(rack->rc_tp, rack, __LINE__, NULL); 4287 } else { 4288 rack_log_pacing_delay_calc(rack, bytes_ps, reqbytes, 4289 rack->r_ctl.rc_app_limited_cnt, 4290 0, 0, 10, __LINE__, NULL, quality); 4291 } 4292 if (tcp_in_hpts(rack->rc_inp) && 4293 (rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT)) { 4294 /* 4295 * Ok we can't trust the pacer in this case 4296 * where we transition from un-paced to paced. 4297 * Or for that matter when the burst mitigation 4298 * was making a wild guess and got it wrong. 4299 * Stop the pacer and clear up all the aggregate 4300 * delays etc. 4301 */ 4302 tcp_hpts_remove(rack->rc_inp); 4303 rack->r_ctl.rc_hpts_flags = 0; 4304 rack->r_ctl.rc_last_output_to = 0; 4305 } 4306 did_add = 2; 4307 } else if (rack->r_ctl.num_measurements < RACK_REQ_AVG) { 4308 /* Still a small number run an average */ 4309 rack->r_ctl.gp_bw += bytes_ps; 4310 addpart = rack->r_ctl.num_measurements; 4311 rack->r_ctl.num_measurements++; 4312 if (rack->r_ctl.num_measurements >= RACK_REQ_AVG) { 4313 /* We have collected enough to move forward */ 4314 rack->r_ctl.gp_bw /= (uint64_t)rack->r_ctl.num_measurements; 4315 } 4316 did_add = 3; 4317 } else { 4318 /* 4319 * We want to take 1/wma of the goodput and add in to 7/8th 4320 * of the old value weighted by the srtt. So if your measurement 4321 * period is say 2 SRTT's long you would get 1/4 as the 4322 * value, if it was like 1/2 SRTT then you would get 1/16th. 4323 * 4324 * But we must be careful not to take too much i.e. if the 4325 * srtt is say 20ms and the measurement is taken over 4326 * 400ms our weight would be 400/20 i.e. 20. On the 4327 * other hand if we get a measurement over 1ms with a 4328 * 10ms rtt we only want to take a much smaller portion. 4329 */ 4330 if (rack->r_ctl.num_measurements < 0xff) { 4331 rack->r_ctl.num_measurements++; 4332 } 4333 srtt = (uint64_t)tp->t_srtt; 4334 if (srtt == 0) { 4335 /* 4336 * Strange why did t_srtt go back to zero? 4337 */ 4338 if (rack->r_ctl.rc_rack_min_rtt) 4339 srtt = rack->r_ctl.rc_rack_min_rtt; 4340 else 4341 srtt = HPTS_USEC_IN_MSEC; 4342 } 4343 /* 4344 * XXXrrs: Note for reviewers, in playing with 4345 * dynamic pacing I discovered this GP calculation 4346 * as done originally leads to some undesired results. 4347 * Basically you can get longer measurements contributing 4348 * too much to the WMA. Thus I changed it if you are doing 4349 * dynamic adjustments to only do the aportioned adjustment 4350 * if we have a very small (time wise) measurement. Longer 4351 * measurements just get there weight (defaulting to 1/8) 4352 * add to the WMA. We may want to think about changing 4353 * this to always do that for both sides i.e. dynamic 4354 * and non-dynamic... but considering lots of folks 4355 * were playing with this I did not want to change the 4356 * calculation per.se. without your thoughts.. Lawerence? 4357 * Peter?? 4358 */ 4359 if (rack->rc_gp_dyn_mul == 0) { 4360 subpart = rack->r_ctl.gp_bw * utim; 4361 subpart /= (srtt * 8); 4362 if (subpart < (rack->r_ctl.gp_bw / 2)) { 4363 /* 4364 * The b/w update takes no more 4365 * away then 1/2 our running total 4366 * so factor it in. 4367 */ 4368 addpart = bytes_ps * utim; 4369 addpart /= (srtt * 8); 4370 } else { 4371 /* 4372 * Don't allow a single measurement 4373 * to account for more than 1/2 of the 4374 * WMA. This could happen on a retransmission 4375 * where utim becomes huge compared to 4376 * srtt (multiple retransmissions when using 4377 * the sending rate which factors in all the 4378 * transmissions from the first one). 4379 */ 4380 subpart = rack->r_ctl.gp_bw / 2; 4381 addpart = bytes_ps / 2; 4382 } 4383 resid_bw = rack->r_ctl.gp_bw - subpart; 4384 rack->r_ctl.gp_bw = resid_bw + addpart; 4385 did_add = 1; 4386 } else { 4387 if ((utim / srtt) <= 1) { 4388 /* 4389 * The b/w update was over a small period 4390 * of time. The idea here is to prevent a small 4391 * measurement time period from counting 4392 * too much. So we scale it based on the 4393 * time so it attributes less than 1/rack_wma_divisor 4394 * of its measurement. 4395 */ 4396 subpart = rack->r_ctl.gp_bw * utim; 4397 subpart /= (srtt * rack_wma_divisor); 4398 addpart = bytes_ps * utim; 4399 addpart /= (srtt * rack_wma_divisor); 4400 } else { 4401 /* 4402 * The scaled measurement was long 4403 * enough so lets just add in the 4404 * portion of the measurement i.e. 1/rack_wma_divisor 4405 */ 4406 subpart = rack->r_ctl.gp_bw / rack_wma_divisor; 4407 addpart = bytes_ps / rack_wma_divisor; 4408 } 4409 if ((rack->measure_saw_probe_rtt == 0) || 4410 (bytes_ps > rack->r_ctl.gp_bw)) { 4411 /* 4412 * For probe-rtt we only add it in 4413 * if its larger, all others we just 4414 * add in. 4415 */ 4416 did_add = 1; 4417 resid_bw = rack->r_ctl.gp_bw - subpart; 4418 rack->r_ctl.gp_bw = resid_bw + addpart; 4419 } 4420 } 4421 } 4422 if ((rack->gp_ready == 0) && 4423 (rack->r_ctl.num_measurements >= rack->r_ctl.req_measurements)) { 4424 /* We have enough measurements now */ 4425 rack->gp_ready = 1; 4426 rack_set_cc_pacing(rack); 4427 if (rack->defer_options) 4428 rack_apply_deferred_options(rack); 4429 } 4430 rack_log_pacing_delay_calc(rack, subpart, addpart, bytes_ps, stim, 4431 rack_get_bw(rack), 22, did_add, NULL, quality); 4432 /* We do not update any multipliers if we are in or have seen a probe-rtt */ 4433 if ((rack->measure_saw_probe_rtt == 0) && rack->rc_gp_rtt_set) 4434 rack_update_multiplier(rack, timely_says, bytes_ps, 4435 rack->r_ctl.rc_gp_srtt, 4436 rack->r_ctl.rc_rtt_diff); 4437 rack_log_pacing_delay_calc(rack, bytes, tim, bytes_ps, stim, 4438 rack_get_bw(rack), 3, line, NULL, quality); 4439 /* reset the gp srtt and setup the new prev */ 4440 rack->r_ctl.rc_prev_gp_srtt = rack->r_ctl.rc_gp_srtt; 4441 /* Record the lost count for the next measurement */ 4442 rack->r_ctl.rc_loss_at_start = rack->r_ctl.rc_loss_count; 4443 /* 4444 * We restart our diffs based on the gpsrtt in the 4445 * measurement window. 4446 */ 4447 rack->rc_gp_rtt_set = 0; 4448 rack->rc_gp_saw_rec = 0; 4449 rack->rc_gp_saw_ca = 0; 4450 rack->rc_gp_saw_ss = 0; 4451 rack->rc_dragged_bottom = 0; 4452 skip_measurement: 4453 4454 #ifdef STATS 4455 stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_GPUT, 4456 gput); 4457 /* 4458 * XXXLAS: This is a temporary hack, and should be 4459 * chained off VOI_TCP_GPUT when stats(9) grows an 4460 * API to deal with chained VOIs. 4461 */ 4462 if (tp->t_stats_gput_prev > 0) 4463 stats_voi_update_abs_s32(tp->t_stats, 4464 VOI_TCP_GPUT_ND, 4465 ((gput - tp->t_stats_gput_prev) * 100) / 4466 tp->t_stats_gput_prev); 4467 #endif 4468 tp->t_flags &= ~TF_GPUTINPROG; 4469 tp->t_stats_gput_prev = gput; 4470 /* 4471 * Now are we app limited now and there is space from where we 4472 * were to where we want to go? 4473 * 4474 * We don't do the other case i.e. non-applimited here since 4475 * the next send will trigger us picking up the missing data. 4476 */ 4477 if (rack->r_ctl.rc_first_appl && 4478 TCPS_HAVEESTABLISHED(tp->t_state) && 4479 rack->r_ctl.rc_app_limited_cnt && 4480 (SEQ_GT(rack->r_ctl.rc_first_appl->r_start, th_ack)) && 4481 ((rack->r_ctl.rc_first_appl->r_end - th_ack) > 4482 max(rc_init_window(rack), (MIN_GP_WIN * segsiz)))) { 4483 /* 4484 * Yep there is enough outstanding to make a measurement here. 4485 */ 4486 struct rack_sendmap *rsm, fe; 4487 4488 rack->r_ctl.rc_gp_lowrtt = 0xffffffff; 4489 rack->r_ctl.rc_gp_high_rwnd = rack->rc_tp->snd_wnd; 4490 tp->gput_ts = tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time); 4491 rack->app_limited_needs_set = 0; 4492 tp->gput_seq = th_ack; 4493 if (rack->in_probe_rtt) 4494 rack->measure_saw_probe_rtt = 1; 4495 else if ((rack->measure_saw_probe_rtt) && 4496 (SEQ_GEQ(tp->gput_seq, rack->r_ctl.rc_probertt_sndmax_atexit))) 4497 rack->measure_saw_probe_rtt = 0; 4498 if ((rack->r_ctl.rc_first_appl->r_end - th_ack) >= rack_get_measure_window(tp, rack)) { 4499 /* There is a full window to gain info from */ 4500 tp->gput_ack = tp->gput_seq + rack_get_measure_window(tp, rack); 4501 } else { 4502 /* We can only measure up to the applimited point */ 4503 tp->gput_ack = tp->gput_seq + (rack->r_ctl.rc_first_appl->r_end - th_ack); 4504 if ((tp->gput_ack - tp->gput_seq) < (MIN_GP_WIN * segsiz)) { 4505 /* 4506 * We don't have enough to make a measurement. 4507 */ 4508 tp->t_flags &= ~TF_GPUTINPROG; 4509 rack_log_pacing_delay_calc(rack, tp->gput_ack, tp->gput_seq, 4510 0, 0, 0, 6, __LINE__, NULL, quality); 4511 return; 4512 } 4513 } 4514 if (tp->t_state >= TCPS_FIN_WAIT_1) { 4515 /* 4516 * We will get no more data into the SB 4517 * this means we need to have the data available 4518 * before we start a measurement. 4519 */ 4520 if (sbavail(&tp->t_inpcb->inp_socket->so_snd) < (tp->gput_ack - tp->gput_seq)) { 4521 /* Nope not enough data. */ 4522 return; 4523 } 4524 } 4525 tp->t_flags |= TF_GPUTINPROG; 4526 /* 4527 * Now we need to find the timestamp of the send at tp->gput_seq 4528 * for the send based measurement. 4529 */ 4530 fe.r_start = tp->gput_seq; 4531 rsm = RB_FIND(rack_rb_tree_head, &rack->r_ctl.rc_mtree, &fe); 4532 if (rsm) { 4533 /* Ok send-based limit is set */ 4534 if (SEQ_LT(rsm->r_start, tp->gput_seq)) { 4535 /* 4536 * Move back to include the earlier part 4537 * so our ack time lines up right (this may 4538 * make an overlapping measurement but thats 4539 * ok). 4540 */ 4541 tp->gput_seq = rsm->r_start; 4542 } 4543 if (rsm->r_flags & RACK_ACKED) 4544 tp->gput_ts = (uint32_t)rsm->r_ack_arrival; 4545 else 4546 rack->app_limited_needs_set = 1; 4547 rack->r_ctl.rc_gp_output_ts = rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)]; 4548 } else { 4549 /* 4550 * If we don't find the rsm due to some 4551 * send-limit set the current time, which 4552 * basically disables the send-limit. 4553 */ 4554 struct timeval tv; 4555 4556 microuptime(&tv); 4557 rack->r_ctl.rc_gp_output_ts = rack_to_usec_ts(&tv); 4558 } 4559 rack_log_pacing_delay_calc(rack, 4560 tp->gput_seq, 4561 tp->gput_ack, 4562 (uint64_t)rsm, 4563 tp->gput_ts, 4564 rack->r_ctl.rc_app_limited_cnt, 4565 9, 4566 __LINE__, NULL, quality); 4567 } 4568 } 4569 4570 /* 4571 * CC wrapper hook functions 4572 */ 4573 static void 4574 rack_ack_received(struct tcpcb *tp, struct tcp_rack *rack, uint32_t th_ack, uint16_t nsegs, 4575 uint16_t type, int32_t recovery) 4576 { 4577 uint32_t prior_cwnd, acked; 4578 struct tcp_log_buffer *lgb = NULL; 4579 uint8_t labc_to_use, quality; 4580 4581 INP_WLOCK_ASSERT(tp->t_inpcb); 4582 tp->ccv->nsegs = nsegs; 4583 acked = tp->ccv->bytes_this_ack = (th_ack - tp->snd_una); 4584 if ((recovery) && (rack->r_ctl.rc_early_recovery_segs)) { 4585 uint32_t max; 4586 4587 max = rack->r_ctl.rc_early_recovery_segs * ctf_fixed_maxseg(tp); 4588 if (tp->ccv->bytes_this_ack > max) { 4589 tp->ccv->bytes_this_ack = max; 4590 } 4591 } 4592 #ifdef STATS 4593 stats_voi_update_abs_s32(tp->t_stats, VOI_TCP_CALCFRWINDIFF, 4594 ((int32_t)rack->r_ctl.cwnd_to_use) - tp->snd_wnd); 4595 #endif 4596 quality = RACK_QUALITY_NONE; 4597 if ((tp->t_flags & TF_GPUTINPROG) && 4598 rack_enough_for_measurement(tp, rack, th_ack, &quality)) { 4599 /* Measure the Goodput */ 4600 rack_do_goodput_measurement(tp, rack, th_ack, __LINE__, quality); 4601 #ifdef NETFLIX_PEAKRATE 4602 if ((type == CC_ACK) && 4603 (tp->t_maxpeakrate)) { 4604 /* 4605 * We update t_peakrate_thr. This gives us roughly 4606 * one update per round trip time. Note 4607 * it will only be used if pace_always is off i.e 4608 * we don't do this for paced flows. 4609 */ 4610 rack_update_peakrate_thr(tp); 4611 } 4612 #endif 4613 } 4614 /* Which way our we limited, if not cwnd limited no advance in CA */ 4615 if (tp->snd_cwnd <= tp->snd_wnd) 4616 tp->ccv->flags |= CCF_CWND_LIMITED; 4617 else 4618 tp->ccv->flags &= ~CCF_CWND_LIMITED; 4619 if (tp->snd_cwnd > tp->snd_ssthresh) { 4620 tp->t_bytes_acked += min(tp->ccv->bytes_this_ack, 4621 nsegs * V_tcp_abc_l_var * ctf_fixed_maxseg(tp)); 4622 /* For the setting of a window past use the actual scwnd we are using */ 4623 if (tp->t_bytes_acked >= rack->r_ctl.cwnd_to_use) { 4624 tp->t_bytes_acked -= rack->r_ctl.cwnd_to_use; 4625 tp->ccv->flags |= CCF_ABC_SENTAWND; 4626 } 4627 } else { 4628 tp->ccv->flags &= ~CCF_ABC_SENTAWND; 4629 tp->t_bytes_acked = 0; 4630 } 4631 prior_cwnd = tp->snd_cwnd; 4632 if ((recovery == 0) || (rack_max_abc_post_recovery == 0) || rack->r_use_labc_for_rec || 4633 (rack_client_low_buf && (rack->client_bufferlvl < rack_client_low_buf))) 4634 labc_to_use = rack->rc_labc; 4635 else 4636 labc_to_use = rack_max_abc_post_recovery; 4637 if (rack_verbose_logging && (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF)) { 4638 union tcp_log_stackspecific log; 4639 struct timeval tv; 4640 4641 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 4642 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 4643 log.u_bbr.flex1 = th_ack; 4644 log.u_bbr.flex2 = tp->ccv->flags; 4645 log.u_bbr.flex3 = tp->ccv->bytes_this_ack; 4646 log.u_bbr.flex4 = tp->ccv->nsegs; 4647 log.u_bbr.flex5 = labc_to_use; 4648 log.u_bbr.flex6 = prior_cwnd; 4649 log.u_bbr.flex7 = V_tcp_do_newsack; 4650 log.u_bbr.flex8 = 1; 4651 lgb = tcp_log_event_(tp, NULL, NULL, NULL, BBR_LOG_CWND, 0, 4652 0, &log, false, NULL, NULL, 0, &tv); 4653 } 4654 if (CC_ALGO(tp)->ack_received != NULL) { 4655 /* XXXLAS: Find a way to live without this */ 4656 tp->ccv->curack = th_ack; 4657 tp->ccv->labc = labc_to_use; 4658 tp->ccv->flags |= CCF_USE_LOCAL_ABC; 4659 CC_ALGO(tp)->ack_received(tp->ccv, type); 4660 } 4661 if (lgb) { 4662 lgb->tlb_stackinfo.u_bbr.flex6 = tp->snd_cwnd; 4663 } 4664 if (rack->r_must_retran) { 4665 if (SEQ_GEQ(th_ack, rack->r_ctl.rc_snd_max_at_rto)) { 4666 /* 4667 * We now are beyond the rxt point so lets disable 4668 * the flag. 4669 */ 4670 rack->r_ctl.rc_out_at_rto = 0; 4671 rack->r_must_retran = 0; 4672 } else if ((prior_cwnd + ctf_fixed_maxseg(tp)) <= tp->snd_cwnd) { 4673 /* 4674 * Only decrement the rc_out_at_rto if the cwnd advances 4675 * at least a whole segment. Otherwise next time the peer 4676 * acks, we won't be able to send this generaly happens 4677 * when we are in Congestion Avoidance. 4678 */ 4679 if (acked <= rack->r_ctl.rc_out_at_rto){ 4680 rack->r_ctl.rc_out_at_rto -= acked; 4681 } else { 4682 rack->r_ctl.rc_out_at_rto = 0; 4683 } 4684 } 4685 } 4686 #ifdef STATS 4687 stats_voi_update_abs_ulong(tp->t_stats, VOI_TCP_LCWIN, rack->r_ctl.cwnd_to_use); 4688 #endif 4689 if (rack->r_ctl.rc_rack_largest_cwnd < rack->r_ctl.cwnd_to_use) { 4690 rack->r_ctl.rc_rack_largest_cwnd = rack->r_ctl.cwnd_to_use; 4691 } 4692 #ifdef NETFLIX_PEAKRATE 4693 /* we enforce max peak rate if it is set and we are not pacing */ 4694 if ((rack->rc_always_pace == 0) && 4695 tp->t_peakrate_thr && 4696 (tp->snd_cwnd > tp->t_peakrate_thr)) { 4697 tp->snd_cwnd = tp->t_peakrate_thr; 4698 } 4699 #endif 4700 } 4701 4702 static void 4703 tcp_rack_partialack(struct tcpcb *tp) 4704 { 4705 struct tcp_rack *rack; 4706 4707 rack = (struct tcp_rack *)tp->t_fb_ptr; 4708 INP_WLOCK_ASSERT(tp->t_inpcb); 4709 /* 4710 * If we are doing PRR and have enough 4711 * room to send <or> we are pacing and prr 4712 * is disabled we will want to see if we 4713 * can send data (by setting r_wanted_output to 4714 * true). 4715 */ 4716 if ((rack->r_ctl.rc_prr_sndcnt > 0) || 4717 rack->rack_no_prr) 4718 rack->r_wanted_output = 1; 4719 } 4720 4721 static void 4722 rack_post_recovery(struct tcpcb *tp, uint32_t th_ack) 4723 { 4724 struct tcp_rack *rack; 4725 uint32_t orig_cwnd; 4726 4727 orig_cwnd = tp->snd_cwnd; 4728 INP_WLOCK_ASSERT(tp->t_inpcb); 4729 rack = (struct tcp_rack *)tp->t_fb_ptr; 4730 /* only alert CC if we alerted when we entered */ 4731 if (CC_ALGO(tp)->post_recovery != NULL) { 4732 tp->ccv->curack = th_ack; 4733 CC_ALGO(tp)->post_recovery(tp->ccv); 4734 if (tp->snd_cwnd < tp->snd_ssthresh) { 4735 /* 4736 * Rack has burst control and pacing 4737 * so lets not set this any lower than 4738 * snd_ssthresh per RFC-6582 (option 2). 4739 */ 4740 tp->snd_cwnd = tp->snd_ssthresh; 4741 } 4742 } 4743 if (rack_verbose_logging && (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF)) { 4744 union tcp_log_stackspecific log; 4745 struct timeval tv; 4746 4747 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 4748 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 4749 log.u_bbr.flex1 = th_ack; 4750 log.u_bbr.flex2 = tp->ccv->flags; 4751 log.u_bbr.flex3 = tp->ccv->bytes_this_ack; 4752 log.u_bbr.flex4 = tp->ccv->nsegs; 4753 log.u_bbr.flex5 = V_tcp_abc_l_var; 4754 log.u_bbr.flex6 = orig_cwnd; 4755 log.u_bbr.flex7 = V_tcp_do_newsack; 4756 log.u_bbr.pkts_out = rack->r_ctl.rc_prr_sndcnt; 4757 log.u_bbr.flex8 = 2; 4758 tcp_log_event_(tp, NULL, NULL, NULL, BBR_LOG_CWND, 0, 4759 0, &log, false, NULL, NULL, 0, &tv); 4760 } 4761 if ((rack->rack_no_prr == 0) && 4762 (rack->no_prr_addback == 0) && 4763 (rack->r_ctl.rc_prr_sndcnt > 0)) { 4764 /* 4765 * Suck the next prr cnt back into cwnd, but 4766 * only do that if we are not application limited. 4767 */ 4768 if (ctf_outstanding(tp) <= sbavail(&(tp->t_inpcb->inp_socket->so_snd))) { 4769 /* 4770 * We are allowed to add back to the cwnd the amount we did 4771 * not get out if: 4772 * a) no_prr_addback is off. 4773 * b) we are not app limited 4774 * c) we are doing prr 4775 * <and> 4776 * d) it is bounded by rack_prr_addbackmax (if addback is 0, then none). 4777 */ 4778 tp->snd_cwnd += min((ctf_fixed_maxseg(tp) * rack_prr_addbackmax), 4779 rack->r_ctl.rc_prr_sndcnt); 4780 } 4781 rack->r_ctl.rc_prr_sndcnt = 0; 4782 rack_log_to_prr(rack, 1, 0, __LINE__); 4783 } 4784 rack_log_to_prr(rack, 14, orig_cwnd, __LINE__); 4785 tp->snd_recover = tp->snd_una; 4786 if (rack->r_ctl.dsack_persist) { 4787 rack->r_ctl.dsack_persist--; 4788 if (rack->r_ctl.num_dsack && (rack->r_ctl.dsack_persist == 0)) { 4789 rack->r_ctl.num_dsack = 0; 4790 } 4791 rack_log_dsack_event(rack, 1, __LINE__, 0, 0); 4792 } 4793 EXIT_RECOVERY(tp->t_flags); 4794 } 4795 4796 static void 4797 rack_cong_signal(struct tcpcb *tp, uint32_t type, uint32_t ack, int line) 4798 { 4799 struct tcp_rack *rack; 4800 uint32_t ssthresh_enter, cwnd_enter, in_rec_at_entry, orig_cwnd; 4801 4802 INP_WLOCK_ASSERT(tp->t_inpcb); 4803 #ifdef STATS 4804 stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_CSIG, type); 4805 #endif 4806 if (IN_RECOVERY(tp->t_flags) == 0) { 4807 in_rec_at_entry = 0; 4808 ssthresh_enter = tp->snd_ssthresh; 4809 cwnd_enter = tp->snd_cwnd; 4810 } else 4811 in_rec_at_entry = 1; 4812 rack = (struct tcp_rack *)tp->t_fb_ptr; 4813 switch (type) { 4814 case CC_NDUPACK: 4815 tp->t_flags &= ~TF_WASFRECOVERY; 4816 tp->t_flags &= ~TF_WASCRECOVERY; 4817 if (!IN_FASTRECOVERY(tp->t_flags)) { 4818 rack->r_ctl.rc_prr_delivered = 0; 4819 rack->r_ctl.rc_prr_out = 0; 4820 if (rack->rack_no_prr == 0) { 4821 rack->r_ctl.rc_prr_sndcnt = ctf_fixed_maxseg(tp); 4822 rack_log_to_prr(rack, 2, in_rec_at_entry, line); 4823 } 4824 rack->r_ctl.rc_prr_recovery_fs = tp->snd_max - tp->snd_una; 4825 tp->snd_recover = tp->snd_max; 4826 if (tp->t_flags2 & TF2_ECN_PERMIT) 4827 tp->t_flags2 |= TF2_ECN_SND_CWR; 4828 } 4829 break; 4830 case CC_ECN: 4831 if (!IN_CONGRECOVERY(tp->t_flags) || 4832 /* 4833 * Allow ECN reaction on ACK to CWR, if 4834 * that data segment was also CE marked. 4835 */ 4836 SEQ_GEQ(ack, tp->snd_recover)) { 4837 EXIT_CONGRECOVERY(tp->t_flags); 4838 KMOD_TCPSTAT_INC(tcps_ecn_rcwnd); 4839 tp->snd_recover = tp->snd_max + 1; 4840 if (tp->t_flags2 & TF2_ECN_PERMIT) 4841 tp->t_flags2 |= TF2_ECN_SND_CWR; 4842 } 4843 break; 4844 case CC_RTO: 4845 tp->t_dupacks = 0; 4846 tp->t_bytes_acked = 0; 4847 EXIT_RECOVERY(tp->t_flags); 4848 tp->snd_ssthresh = max(2, min(tp->snd_wnd, rack->r_ctl.cwnd_to_use) / 2 / 4849 ctf_fixed_maxseg(tp)) * ctf_fixed_maxseg(tp); 4850 orig_cwnd = tp->snd_cwnd; 4851 tp->snd_cwnd = ctf_fixed_maxseg(tp); 4852 rack_log_to_prr(rack, 16, orig_cwnd, line); 4853 if (tp->t_flags2 & TF2_ECN_PERMIT) 4854 tp->t_flags2 |= TF2_ECN_SND_CWR; 4855 break; 4856 case CC_RTO_ERR: 4857 KMOD_TCPSTAT_INC(tcps_sndrexmitbad); 4858 /* RTO was unnecessary, so reset everything. */ 4859 tp->snd_cwnd = tp->snd_cwnd_prev; 4860 tp->snd_ssthresh = tp->snd_ssthresh_prev; 4861 tp->snd_recover = tp->snd_recover_prev; 4862 if (tp->t_flags & TF_WASFRECOVERY) { 4863 ENTER_FASTRECOVERY(tp->t_flags); 4864 tp->t_flags &= ~TF_WASFRECOVERY; 4865 } 4866 if (tp->t_flags & TF_WASCRECOVERY) { 4867 ENTER_CONGRECOVERY(tp->t_flags); 4868 tp->t_flags &= ~TF_WASCRECOVERY; 4869 } 4870 tp->snd_nxt = tp->snd_max; 4871 tp->t_badrxtwin = 0; 4872 break; 4873 } 4874 if ((CC_ALGO(tp)->cong_signal != NULL) && 4875 (type != CC_RTO)){ 4876 tp->ccv->curack = ack; 4877 CC_ALGO(tp)->cong_signal(tp->ccv, type); 4878 } 4879 if ((in_rec_at_entry == 0) && IN_RECOVERY(tp->t_flags)) { 4880 rack_log_to_prr(rack, 15, cwnd_enter, line); 4881 rack->r_ctl.dsack_byte_cnt = 0; 4882 rack->r_ctl.retran_during_recovery = 0; 4883 rack->r_ctl.rc_cwnd_at_erec = cwnd_enter; 4884 rack->r_ctl.rc_ssthresh_at_erec = ssthresh_enter; 4885 rack->r_ent_rec_ns = 1; 4886 } 4887 } 4888 4889 static inline void 4890 rack_cc_after_idle(struct tcp_rack *rack, struct tcpcb *tp) 4891 { 4892 uint32_t i_cwnd; 4893 4894 INP_WLOCK_ASSERT(tp->t_inpcb); 4895 4896 #ifdef NETFLIX_STATS 4897 KMOD_TCPSTAT_INC(tcps_idle_restarts); 4898 if (tp->t_state == TCPS_ESTABLISHED) 4899 KMOD_TCPSTAT_INC(tcps_idle_estrestarts); 4900 #endif 4901 if (CC_ALGO(tp)->after_idle != NULL) 4902 CC_ALGO(tp)->after_idle(tp->ccv); 4903 4904 if (tp->snd_cwnd == 1) 4905 i_cwnd = tp->t_maxseg; /* SYN(-ACK) lost */ 4906 else 4907 i_cwnd = rc_init_window(rack); 4908 4909 /* 4910 * Being idle is no different than the initial window. If the cc 4911 * clamps it down below the initial window raise it to the initial 4912 * window. 4913 */ 4914 if (tp->snd_cwnd < i_cwnd) { 4915 tp->snd_cwnd = i_cwnd; 4916 } 4917 } 4918 4919 /* 4920 * Indicate whether this ack should be delayed. We can delay the ack if 4921 * following conditions are met: 4922 * - There is no delayed ack timer in progress. 4923 * - Our last ack wasn't a 0-sized window. We never want to delay 4924 * the ack that opens up a 0-sized window. 4925 * - LRO wasn't used for this segment. We make sure by checking that the 4926 * segment size is not larger than the MSS. 4927 * - Delayed acks are enabled or this is a half-synchronized T/TCP 4928 * connection. 4929 */ 4930 #define DELAY_ACK(tp, tlen) \ 4931 (((tp->t_flags & TF_RXWIN0SENT) == 0) && \ 4932 ((tp->t_flags & TF_DELACK) == 0) && \ 4933 (tlen <= tp->t_maxseg) && \ 4934 (tp->t_delayed_ack || (tp->t_flags & TF_NEEDSYN))) 4935 4936 static struct rack_sendmap * 4937 rack_find_lowest_rsm(struct tcp_rack *rack) 4938 { 4939 struct rack_sendmap *rsm; 4940 4941 /* 4942 * Walk the time-order transmitted list looking for an rsm that is 4943 * not acked. This will be the one that was sent the longest time 4944 * ago that is still outstanding. 4945 */ 4946 TAILQ_FOREACH(rsm, &rack->r_ctl.rc_tmap, r_tnext) { 4947 if (rsm->r_flags & RACK_ACKED) { 4948 continue; 4949 } 4950 goto finish; 4951 } 4952 finish: 4953 return (rsm); 4954 } 4955 4956 static struct rack_sendmap * 4957 rack_find_high_nonack(struct tcp_rack *rack, struct rack_sendmap *rsm) 4958 { 4959 struct rack_sendmap *prsm; 4960 4961 /* 4962 * Walk the sequence order list backward until we hit and arrive at 4963 * the highest seq not acked. In theory when this is called it 4964 * should be the last segment (which it was not). 4965 */ 4966 prsm = rsm; 4967 RB_FOREACH_REVERSE_FROM(prsm, rack_rb_tree_head, rsm) { 4968 if (prsm->r_flags & (RACK_ACKED | RACK_HAS_FIN)) { 4969 continue; 4970 } 4971 return (prsm); 4972 } 4973 return (NULL); 4974 } 4975 4976 static uint32_t 4977 rack_calc_thresh_rack(struct tcp_rack *rack, uint32_t srtt, uint32_t cts) 4978 { 4979 int32_t lro; 4980 uint32_t thresh; 4981 4982 /* 4983 * lro is the flag we use to determine if we have seen reordering. 4984 * If it gets set we have seen reordering. The reorder logic either 4985 * works in one of two ways: 4986 * 4987 * If reorder-fade is configured, then we track the last time we saw 4988 * re-ordering occur. If we reach the point where enough time as 4989 * passed we no longer consider reordering has occuring. 4990 * 4991 * Or if reorder-face is 0, then once we see reordering we consider 4992 * the connection to alway be subject to reordering and just set lro 4993 * to 1. 4994 * 4995 * In the end if lro is non-zero we add the extra time for 4996 * reordering in. 4997 */ 4998 if (srtt == 0) 4999 srtt = 1; 5000 if (rack->r_ctl.rc_reorder_ts) { 5001 if (rack->r_ctl.rc_reorder_fade) { 5002 if (SEQ_GEQ(cts, rack->r_ctl.rc_reorder_ts)) { 5003 lro = cts - rack->r_ctl.rc_reorder_ts; 5004 if (lro == 0) { 5005 /* 5006 * No time as passed since the last 5007 * reorder, mark it as reordering. 5008 */ 5009 lro = 1; 5010 } 5011 } else { 5012 /* Negative time? */ 5013 lro = 0; 5014 } 5015 if (lro > rack->r_ctl.rc_reorder_fade) { 5016 /* Turn off reordering seen too */ 5017 rack->r_ctl.rc_reorder_ts = 0; 5018 lro = 0; 5019 } 5020 } else { 5021 /* Reodering does not fade */ 5022 lro = 1; 5023 } 5024 } else { 5025 lro = 0; 5026 } 5027 if (rack->rc_rack_tmr_std_based == 0) { 5028 thresh = srtt + rack->r_ctl.rc_pkt_delay; 5029 } else { 5030 /* Standards based pkt-delay is 1/4 srtt */ 5031 thresh = srtt + (srtt >> 2); 5032 } 5033 if (lro && (rack->rc_rack_tmr_std_based == 0)) { 5034 /* It must be set, if not you get 1/4 rtt */ 5035 if (rack->r_ctl.rc_reorder_shift) 5036 thresh += (srtt >> rack->r_ctl.rc_reorder_shift); 5037 else 5038 thresh += (srtt >> 2); 5039 } 5040 if (rack->rc_rack_use_dsack && 5041 lro && 5042 (rack->r_ctl.num_dsack > 0)) { 5043 /* 5044 * We only increase the reordering window if we 5045 * have seen reordering <and> we have a DSACK count. 5046 */ 5047 thresh += rack->r_ctl.num_dsack * (srtt >> 2); 5048 rack_log_dsack_event(rack, 4, __LINE__, srtt, thresh); 5049 } 5050 /* SRTT * 2 is the ceiling */ 5051 if (thresh > (srtt * 2)) { 5052 thresh = srtt * 2; 5053 } 5054 /* And we don't want it above the RTO max either */ 5055 if (thresh > rack_rto_max) { 5056 thresh = rack_rto_max; 5057 } 5058 rack_log_dsack_event(rack, 6, __LINE__, srtt, thresh); 5059 return (thresh); 5060 } 5061 5062 static uint32_t 5063 rack_calc_thresh_tlp(struct tcpcb *tp, struct tcp_rack *rack, 5064 struct rack_sendmap *rsm, uint32_t srtt) 5065 { 5066 struct rack_sendmap *prsm; 5067 uint32_t thresh, len; 5068 int segsiz; 5069 5070 if (srtt == 0) 5071 srtt = 1; 5072 if (rack->r_ctl.rc_tlp_threshold) 5073 thresh = srtt + (srtt / rack->r_ctl.rc_tlp_threshold); 5074 else 5075 thresh = (srtt * 2); 5076 5077 /* Get the previous sent packet, if any */ 5078 segsiz = min(ctf_fixed_maxseg(tp), rack->r_ctl.rc_pace_min_segs); 5079 len = rsm->r_end - rsm->r_start; 5080 if (rack->rack_tlp_threshold_use == TLP_USE_ID) { 5081 /* Exactly like the ID */ 5082 if (((tp->snd_max - tp->snd_una) - rack->r_ctl.rc_sacked + rack->r_ctl.rc_holes_rxt) <= segsiz) { 5083 uint32_t alt_thresh; 5084 /* 5085 * Compensate for delayed-ack with the d-ack time. 5086 */ 5087 alt_thresh = srtt + (srtt / 2) + rack_delayed_ack_time; 5088 if (alt_thresh > thresh) 5089 thresh = alt_thresh; 5090 } 5091 } else if (rack->rack_tlp_threshold_use == TLP_USE_TWO_ONE) { 5092 /* 2.1 behavior */ 5093 prsm = TAILQ_PREV(rsm, rack_head, r_tnext); 5094 if (prsm && (len <= segsiz)) { 5095 /* 5096 * Two packets outstanding, thresh should be (2*srtt) + 5097 * possible inter-packet delay (if any). 5098 */ 5099 uint32_t inter_gap = 0; 5100 int idx, nidx; 5101 5102 idx = rsm->r_rtr_cnt - 1; 5103 nidx = prsm->r_rtr_cnt - 1; 5104 if (rsm->r_tim_lastsent[nidx] >= prsm->r_tim_lastsent[idx]) { 5105 /* Yes it was sent later (or at the same time) */ 5106 inter_gap = rsm->r_tim_lastsent[idx] - prsm->r_tim_lastsent[nidx]; 5107 } 5108 thresh += inter_gap; 5109 } else if (len <= segsiz) { 5110 /* 5111 * Possibly compensate for delayed-ack. 5112 */ 5113 uint32_t alt_thresh; 5114 5115 alt_thresh = srtt + (srtt / 2) + rack_delayed_ack_time; 5116 if (alt_thresh > thresh) 5117 thresh = alt_thresh; 5118 } 5119 } else if (rack->rack_tlp_threshold_use == TLP_USE_TWO_TWO) { 5120 /* 2.2 behavior */ 5121 if (len <= segsiz) { 5122 uint32_t alt_thresh; 5123 /* 5124 * Compensate for delayed-ack with the d-ack time. 5125 */ 5126 alt_thresh = srtt + (srtt / 2) + rack_delayed_ack_time; 5127 if (alt_thresh > thresh) 5128 thresh = alt_thresh; 5129 } 5130 } 5131 /* Not above an RTO */ 5132 if (thresh > tp->t_rxtcur) { 5133 thresh = tp->t_rxtcur; 5134 } 5135 /* Not above a RTO max */ 5136 if (thresh > rack_rto_max) { 5137 thresh = rack_rto_max; 5138 } 5139 /* Apply user supplied min TLP */ 5140 if (thresh < rack_tlp_min) { 5141 thresh = rack_tlp_min; 5142 } 5143 return (thresh); 5144 } 5145 5146 static uint32_t 5147 rack_grab_rtt(struct tcpcb *tp, struct tcp_rack *rack) 5148 { 5149 /* 5150 * We want the rack_rtt which is the 5151 * last rtt we measured. However if that 5152 * does not exist we fallback to the srtt (which 5153 * we probably will never do) and then as a last 5154 * resort we use RACK_INITIAL_RTO if no srtt is 5155 * yet set. 5156 */ 5157 if (rack->rc_rack_rtt) 5158 return (rack->rc_rack_rtt); 5159 else if (tp->t_srtt == 0) 5160 return (RACK_INITIAL_RTO); 5161 return (tp->t_srtt); 5162 } 5163 5164 static struct rack_sendmap * 5165 rack_check_recovery_mode(struct tcpcb *tp, uint32_t tsused) 5166 { 5167 /* 5168 * Check to see that we don't need to fall into recovery. We will 5169 * need to do so if our oldest transmit is past the time we should 5170 * have had an ack. 5171 */ 5172 struct tcp_rack *rack; 5173 struct rack_sendmap *rsm; 5174 int32_t idx; 5175 uint32_t srtt, thresh; 5176 5177 rack = (struct tcp_rack *)tp->t_fb_ptr; 5178 if (RB_EMPTY(&rack->r_ctl.rc_mtree)) { 5179 return (NULL); 5180 } 5181 rsm = TAILQ_FIRST(&rack->r_ctl.rc_tmap); 5182 if (rsm == NULL) 5183 return (NULL); 5184 5185 5186 if (rsm->r_flags & RACK_ACKED) { 5187 rsm = rack_find_lowest_rsm(rack); 5188 if (rsm == NULL) 5189 return (NULL); 5190 } 5191 idx = rsm->r_rtr_cnt - 1; 5192 srtt = rack_grab_rtt(tp, rack); 5193 thresh = rack_calc_thresh_rack(rack, srtt, tsused); 5194 if (TSTMP_LT(tsused, ((uint32_t)rsm->r_tim_lastsent[idx]))) { 5195 return (NULL); 5196 } 5197 if ((tsused - ((uint32_t)rsm->r_tim_lastsent[idx])) < thresh) { 5198 return (NULL); 5199 } 5200 /* Ok if we reach here we are over-due and this guy can be sent */ 5201 rack_cong_signal(tp, CC_NDUPACK, tp->snd_una, __LINE__); 5202 return (rsm); 5203 } 5204 5205 static uint32_t 5206 rack_get_persists_timer_val(struct tcpcb *tp, struct tcp_rack *rack) 5207 { 5208 int32_t t; 5209 int32_t tt; 5210 uint32_t ret_val; 5211 5212 t = (tp->t_srtt + (tp->t_rttvar << 2)); 5213 RACK_TCPT_RANGESET(tt, t * tcp_backoff[tp->t_rxtshift], 5214 rack_persist_min, rack_persist_max, rack->r_ctl.timer_slop); 5215 rack->r_ctl.rc_hpts_flags |= PACE_TMR_PERSIT; 5216 ret_val = (uint32_t)tt; 5217 return (ret_val); 5218 } 5219 5220 static uint32_t 5221 rack_timer_start(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cts, int sup_rack) 5222 { 5223 /* 5224 * Start the FR timer, we do this based on getting the first one in 5225 * the rc_tmap. Note that if its NULL we must stop the timer. in all 5226 * events we need to stop the running timer (if its running) before 5227 * starting the new one. 5228 */ 5229 uint32_t thresh, exp, to, srtt, time_since_sent, tstmp_touse; 5230 uint32_t srtt_cur; 5231 int32_t idx; 5232 int32_t is_tlp_timer = 0; 5233 struct rack_sendmap *rsm; 5234 5235 if (rack->t_timers_stopped) { 5236 /* All timers have been stopped none are to run */ 5237 return (0); 5238 } 5239 if (rack->rc_in_persist) { 5240 /* We can't start any timer in persists */ 5241 return (rack_get_persists_timer_val(tp, rack)); 5242 } 5243 rack->rc_on_min_to = 0; 5244 if ((tp->t_state < TCPS_ESTABLISHED) || 5245 ((tp->t_flags & TF_SACK_PERMIT) == 0)) { 5246 goto activate_rxt; 5247 } 5248 rsm = TAILQ_FIRST(&rack->r_ctl.rc_tmap); 5249 if ((rsm == NULL) || sup_rack) { 5250 /* Nothing on the send map or no rack */ 5251 activate_rxt: 5252 time_since_sent = 0; 5253 rsm = TAILQ_FIRST(&rack->r_ctl.rc_tmap); 5254 if (rsm) { 5255 /* 5256 * Should we discount the RTX timer any? 5257 * 5258 * We want to discount it the smallest amount. 5259 * If a timer (Rack/TLP or RXT) has gone off more 5260 * recently thats the discount we want to use (now - timer time). 5261 * If the retransmit of the oldest packet was more recent then 5262 * we want to use that (now - oldest-packet-last_transmit_time). 5263 * 5264 */ 5265 idx = rsm->r_rtr_cnt - 1; 5266 if (TSTMP_GEQ(rack->r_ctl.rc_tlp_rxt_last_time, ((uint32_t)rsm->r_tim_lastsent[idx]))) 5267 tstmp_touse = (uint32_t)rack->r_ctl.rc_tlp_rxt_last_time; 5268 else 5269 tstmp_touse = (uint32_t)rsm->r_tim_lastsent[idx]; 5270 if (TSTMP_GT(cts, tstmp_touse)) 5271 time_since_sent = cts - tstmp_touse; 5272 } 5273 if (SEQ_LT(tp->snd_una, tp->snd_max) || sbavail(&(tp->t_inpcb->inp_socket->so_snd))) { 5274 rack->r_ctl.rc_hpts_flags |= PACE_TMR_RXT; 5275 to = tp->t_rxtcur; 5276 if (to > time_since_sent) 5277 to -= time_since_sent; 5278 else 5279 to = rack->r_ctl.rc_min_to; 5280 if (to == 0) 5281 to = 1; 5282 /* Special case for KEEPINIT */ 5283 if ((TCPS_HAVEESTABLISHED(tp->t_state) == 0) && 5284 (TP_KEEPINIT(tp) != 0) && 5285 rsm) { 5286 /* 5287 * We have to put a ceiling on the rxt timer 5288 * of the keep-init timeout. 5289 */ 5290 uint32_t max_time, red; 5291 5292 max_time = TICKS_2_USEC(TP_KEEPINIT(tp)); 5293 if (TSTMP_GT(cts, (uint32_t)rsm->r_tim_lastsent[0])) { 5294 red = (cts - (uint32_t)rsm->r_tim_lastsent[0]); 5295 if (red < max_time) 5296 max_time -= red; 5297 else 5298 max_time = 1; 5299 } 5300 /* Reduce timeout to the keep value if needed */ 5301 if (max_time < to) 5302 to = max_time; 5303 } 5304 return (to); 5305 } 5306 return (0); 5307 } 5308 if (rsm->r_flags & RACK_ACKED) { 5309 rsm = rack_find_lowest_rsm(rack); 5310 if (rsm == NULL) { 5311 /* No lowest? */ 5312 goto activate_rxt; 5313 } 5314 } 5315 if (rack->sack_attack_disable) { 5316 /* 5317 * We don't want to do 5318 * any TLP's if you are an attacker. 5319 * Though if you are doing what 5320 * is expected you may still have 5321 * SACK-PASSED marks. 5322 */ 5323 goto activate_rxt; 5324 } 5325 /* Convert from ms to usecs */ 5326 if ((rsm->r_flags & RACK_SACK_PASSED) || 5327 (rsm->r_flags & RACK_RWND_COLLAPSED) || 5328 (rsm->r_dupack >= DUP_ACK_THRESHOLD)) { 5329 if ((tp->t_flags & TF_SENTFIN) && 5330 ((tp->snd_max - tp->snd_una) == 1) && 5331 (rsm->r_flags & RACK_HAS_FIN)) { 5332 /* 5333 * We don't start a rack timer if all we have is a 5334 * FIN outstanding. 5335 */ 5336 goto activate_rxt; 5337 } 5338 if ((rack->use_rack_rr == 0) && 5339 (IN_FASTRECOVERY(tp->t_flags)) && 5340 (rack->rack_no_prr == 0) && 5341 (rack->r_ctl.rc_prr_sndcnt < ctf_fixed_maxseg(tp))) { 5342 /* 5343 * We are not cheating, in recovery and 5344 * not enough ack's to yet get our next 5345 * retransmission out. 5346 * 5347 * Note that classified attackers do not 5348 * get to use the rack-cheat. 5349 */ 5350 goto activate_tlp; 5351 } 5352 srtt = rack_grab_rtt(tp, rack); 5353 thresh = rack_calc_thresh_rack(rack, srtt, cts); 5354 idx = rsm->r_rtr_cnt - 1; 5355 exp = ((uint32_t)rsm->r_tim_lastsent[idx]) + thresh; 5356 if (SEQ_GEQ(exp, cts)) { 5357 to = exp - cts; 5358 if (to < rack->r_ctl.rc_min_to) { 5359 to = rack->r_ctl.rc_min_to; 5360 if (rack->r_rr_config == 3) 5361 rack->rc_on_min_to = 1; 5362 } 5363 } else { 5364 to = rack->r_ctl.rc_min_to; 5365 if (rack->r_rr_config == 3) 5366 rack->rc_on_min_to = 1; 5367 } 5368 } else { 5369 /* Ok we need to do a TLP not RACK */ 5370 activate_tlp: 5371 if ((rack->rc_tlp_in_progress != 0) && 5372 (rack->r_ctl.rc_tlp_cnt_out >= rack_tlp_limit)) { 5373 /* 5374 * The previous send was a TLP and we have sent 5375 * N TLP's without sending new data. 5376 */ 5377 goto activate_rxt; 5378 } 5379 rsm = TAILQ_LAST_FAST(&rack->r_ctl.rc_tmap, rack_sendmap, r_tnext); 5380 if (rsm == NULL) { 5381 /* We found no rsm to TLP with. */ 5382 goto activate_rxt; 5383 } 5384 if (rsm->r_flags & RACK_HAS_FIN) { 5385 /* If its a FIN we dont do TLP */ 5386 rsm = NULL; 5387 goto activate_rxt; 5388 } 5389 idx = rsm->r_rtr_cnt - 1; 5390 time_since_sent = 0; 5391 if (TSTMP_GEQ(((uint32_t)rsm->r_tim_lastsent[idx]), rack->r_ctl.rc_tlp_rxt_last_time)) 5392 tstmp_touse = (uint32_t)rsm->r_tim_lastsent[idx]; 5393 else 5394 tstmp_touse = (uint32_t)rack->r_ctl.rc_tlp_rxt_last_time; 5395 if (TSTMP_GT(cts, tstmp_touse)) 5396 time_since_sent = cts - tstmp_touse; 5397 is_tlp_timer = 1; 5398 if (tp->t_srtt) { 5399 if ((rack->rc_srtt_measure_made == 0) && 5400 (tp->t_srtt == 1)) { 5401 /* 5402 * If another stack as run and set srtt to 1, 5403 * then the srtt was 0, so lets use the initial. 5404 */ 5405 srtt = RACK_INITIAL_RTO; 5406 } else { 5407 srtt_cur = tp->t_srtt; 5408 srtt = srtt_cur; 5409 } 5410 } else 5411 srtt = RACK_INITIAL_RTO; 5412 /* 5413 * If the SRTT is not keeping up and the 5414 * rack RTT has spiked we want to use 5415 * the last RTT not the smoothed one. 5416 */ 5417 if (rack_tlp_use_greater && 5418 tp->t_srtt && 5419 (srtt < rack_grab_rtt(tp, rack))) { 5420 srtt = rack_grab_rtt(tp, rack); 5421 } 5422 thresh = rack_calc_thresh_tlp(tp, rack, rsm, srtt); 5423 if (thresh > time_since_sent) { 5424 to = thresh - time_since_sent; 5425 } else { 5426 to = rack->r_ctl.rc_min_to; 5427 rack_log_alt_to_to_cancel(rack, 5428 thresh, /* flex1 */ 5429 time_since_sent, /* flex2 */ 5430 tstmp_touse, /* flex3 */ 5431 rack->r_ctl.rc_tlp_rxt_last_time, /* flex4 */ 5432 (uint32_t)rsm->r_tim_lastsent[idx], 5433 srtt, 5434 idx, 99); 5435 } 5436 if (to < rack_tlp_min) { 5437 to = rack_tlp_min; 5438 } 5439 if (to > TICKS_2_USEC(TCPTV_REXMTMAX)) { 5440 /* 5441 * If the TLP time works out to larger than the max 5442 * RTO lets not do TLP.. just RTO. 5443 */ 5444 goto activate_rxt; 5445 } 5446 } 5447 if (is_tlp_timer == 0) { 5448 rack->r_ctl.rc_hpts_flags |= PACE_TMR_RACK; 5449 } else { 5450 rack->r_ctl.rc_hpts_flags |= PACE_TMR_TLP; 5451 } 5452 if (to == 0) 5453 to = 1; 5454 return (to); 5455 } 5456 5457 static void 5458 rack_enter_persist(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cts) 5459 { 5460 if (rack->rc_in_persist == 0) { 5461 if (tp->t_flags & TF_GPUTINPROG) { 5462 /* 5463 * Stop the goodput now, the calling of the 5464 * measurement function clears the flag. 5465 */ 5466 rack_do_goodput_measurement(tp, rack, tp->snd_una, __LINE__, 5467 RACK_QUALITY_PERSIST); 5468 } 5469 #ifdef NETFLIX_SHARED_CWND 5470 if (rack->r_ctl.rc_scw) { 5471 tcp_shared_cwnd_idle(rack->r_ctl.rc_scw, rack->r_ctl.rc_scw_index); 5472 rack->rack_scwnd_is_idle = 1; 5473 } 5474 #endif 5475 rack->r_ctl.rc_went_idle_time = tcp_get_usecs(NULL); 5476 if (rack->r_ctl.rc_went_idle_time == 0) 5477 rack->r_ctl.rc_went_idle_time = 1; 5478 rack_timer_cancel(tp, rack, cts, __LINE__); 5479 rack->r_ctl.persist_lost_ends = 0; 5480 rack->probe_not_answered = 0; 5481 rack->forced_ack = 0; 5482 tp->t_rxtshift = 0; 5483 RACK_TCPT_RANGESET(tp->t_rxtcur, RACK_REXMTVAL(tp), 5484 rack_rto_min, rack_rto_max, rack->r_ctl.timer_slop); 5485 rack->rc_in_persist = 1; 5486 } 5487 } 5488 5489 static void 5490 rack_exit_persist(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cts) 5491 { 5492 if (tcp_in_hpts(rack->rc_inp)) { 5493 tcp_hpts_remove(rack->rc_inp); 5494 rack->r_ctl.rc_hpts_flags = 0; 5495 } 5496 #ifdef NETFLIX_SHARED_CWND 5497 if (rack->r_ctl.rc_scw) { 5498 tcp_shared_cwnd_active(rack->r_ctl.rc_scw, rack->r_ctl.rc_scw_index); 5499 rack->rack_scwnd_is_idle = 0; 5500 } 5501 #endif 5502 if (rack->rc_gp_dyn_mul && 5503 (rack->use_fixed_rate == 0) && 5504 (rack->rc_always_pace)) { 5505 /* 5506 * Do we count this as if a probe-rtt just 5507 * finished? 5508 */ 5509 uint32_t time_idle, idle_min; 5510 5511 time_idle = tcp_get_usecs(NULL) - rack->r_ctl.rc_went_idle_time; 5512 idle_min = rack_min_probertt_hold; 5513 if (rack_probertt_gpsrtt_cnt_div) { 5514 uint64_t extra; 5515 extra = (uint64_t)rack->r_ctl.rc_gp_srtt * 5516 (uint64_t)rack_probertt_gpsrtt_cnt_mul; 5517 extra /= (uint64_t)rack_probertt_gpsrtt_cnt_div; 5518 idle_min += (uint32_t)extra; 5519 } 5520 if (time_idle >= idle_min) { 5521 /* Yes, we count it as a probe-rtt. */ 5522 uint32_t us_cts; 5523 5524 us_cts = tcp_get_usecs(NULL); 5525 if (rack->in_probe_rtt == 0) { 5526 rack->r_ctl.rc_lower_rtt_us_cts = us_cts; 5527 rack->r_ctl.rc_time_probertt_entered = rack->r_ctl.rc_lower_rtt_us_cts; 5528 rack->r_ctl.rc_time_probertt_starts = rack->r_ctl.rc_lower_rtt_us_cts; 5529 rack->r_ctl.rc_time_of_last_probertt = rack->r_ctl.rc_lower_rtt_us_cts; 5530 } else { 5531 rack_exit_probertt(rack, us_cts); 5532 } 5533 } 5534 } 5535 rack->rc_in_persist = 0; 5536 rack->r_ctl.rc_went_idle_time = 0; 5537 tp->t_rxtshift = 0; 5538 RACK_TCPT_RANGESET(tp->t_rxtcur, RACK_REXMTVAL(tp), 5539 rack_rto_min, rack_rto_max, rack->r_ctl.timer_slop); 5540 rack->r_ctl.rc_agg_delayed = 0; 5541 rack->r_early = 0; 5542 rack->r_late = 0; 5543 rack->r_ctl.rc_agg_early = 0; 5544 } 5545 5546 static void 5547 rack_log_hpts_diag(struct tcp_rack *rack, uint32_t cts, 5548 struct hpts_diag *diag, struct timeval *tv) 5549 { 5550 if (rack_verbose_logging && rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 5551 union tcp_log_stackspecific log; 5552 5553 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 5554 log.u_bbr.flex1 = diag->p_nxt_slot; 5555 log.u_bbr.flex2 = diag->p_cur_slot; 5556 log.u_bbr.flex3 = diag->slot_req; 5557 log.u_bbr.flex4 = diag->inp_hptsslot; 5558 log.u_bbr.flex5 = diag->slot_remaining; 5559 log.u_bbr.flex6 = diag->need_new_to; 5560 log.u_bbr.flex7 = diag->p_hpts_active; 5561 log.u_bbr.flex8 = diag->p_on_min_sleep; 5562 /* Hijack other fields as needed */ 5563 log.u_bbr.epoch = diag->have_slept; 5564 log.u_bbr.lt_epoch = diag->yet_to_sleep; 5565 log.u_bbr.pkts_out = diag->co_ret; 5566 log.u_bbr.applimited = diag->hpts_sleep_time; 5567 log.u_bbr.delivered = diag->p_prev_slot; 5568 log.u_bbr.inflight = diag->p_runningslot; 5569 log.u_bbr.bw_inuse = diag->wheel_slot; 5570 log.u_bbr.rttProp = diag->wheel_cts; 5571 log.u_bbr.timeStamp = cts; 5572 log.u_bbr.delRate = diag->maxslots; 5573 log.u_bbr.cur_del_rate = diag->p_curtick; 5574 log.u_bbr.cur_del_rate <<= 32; 5575 log.u_bbr.cur_del_rate |= diag->p_lasttick; 5576 TCP_LOG_EVENTP(rack->rc_tp, NULL, 5577 &rack->rc_inp->inp_socket->so_rcv, 5578 &rack->rc_inp->inp_socket->so_snd, 5579 BBR_LOG_HPTSDIAG, 0, 5580 0, &log, false, tv); 5581 } 5582 5583 } 5584 5585 static void 5586 rack_log_wakeup(struct tcpcb *tp, struct tcp_rack *rack, struct sockbuf *sb, uint32_t len, int type) 5587 { 5588 if (rack_verbose_logging && rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 5589 union tcp_log_stackspecific log; 5590 struct timeval tv; 5591 5592 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 5593 log.u_bbr.flex1 = sb->sb_flags; 5594 log.u_bbr.flex2 = len; 5595 log.u_bbr.flex3 = sb->sb_state; 5596 log.u_bbr.flex8 = type; 5597 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 5598 TCP_LOG_EVENTP(rack->rc_tp, NULL, 5599 &rack->rc_inp->inp_socket->so_rcv, 5600 &rack->rc_inp->inp_socket->so_snd, 5601 TCP_LOG_SB_WAKE, 0, 5602 len, &log, false, &tv); 5603 } 5604 } 5605 5606 static void 5607 rack_start_hpts_timer(struct tcp_rack *rack, struct tcpcb *tp, uint32_t cts, 5608 int32_t slot, uint32_t tot_len_this_send, int sup_rack) 5609 { 5610 struct hpts_diag diag; 5611 struct inpcb *inp; 5612 struct timeval tv; 5613 uint32_t delayed_ack = 0; 5614 uint32_t hpts_timeout; 5615 uint32_t entry_slot = slot; 5616 uint8_t stopped; 5617 uint32_t left = 0; 5618 uint32_t us_cts; 5619 5620 inp = tp->t_inpcb; 5621 if ((tp->t_state == TCPS_CLOSED) || 5622 (tp->t_state == TCPS_LISTEN)) { 5623 return; 5624 } 5625 if (tcp_in_hpts(inp)) { 5626 /* Already on the pacer */ 5627 return; 5628 } 5629 stopped = rack->rc_tmr_stopped; 5630 if (stopped && TSTMP_GT(rack->r_ctl.rc_timer_exp, cts)) { 5631 left = rack->r_ctl.rc_timer_exp - cts; 5632 } 5633 rack->r_ctl.rc_timer_exp = 0; 5634 rack->r_ctl.rc_hpts_flags = 0; 5635 us_cts = tcp_get_usecs(&tv); 5636 /* Now early/late accounting */ 5637 rack_log_pacing_delay_calc(rack, entry_slot, slot, 0, 0, 0, 26, __LINE__, NULL, 0); 5638 if (rack->r_early && (rack->rc_ack_can_sendout_data == 0)) { 5639 /* 5640 * We have a early carry over set, 5641 * we can always add more time so we 5642 * can always make this compensation. 5643 * 5644 * Note if ack's are allowed to wake us do not 5645 * penalize the next timer for being awoke 5646 * by an ack aka the rc_agg_early (non-paced mode). 5647 */ 5648 slot += rack->r_ctl.rc_agg_early; 5649 rack->r_early = 0; 5650 rack->r_ctl.rc_agg_early = 0; 5651 } 5652 if (rack->r_late) { 5653 /* 5654 * This is harder, we can 5655 * compensate some but it 5656 * really depends on what 5657 * the current pacing time is. 5658 */ 5659 if (rack->r_ctl.rc_agg_delayed >= slot) { 5660 /* 5661 * We can't compensate for it all. 5662 * And we have to have some time 5663 * on the clock. We always have a min 5664 * 10 slots (10 x 10 i.e. 100 usecs). 5665 */ 5666 if (slot <= HPTS_TICKS_PER_SLOT) { 5667 /* We gain delay */ 5668 rack->r_ctl.rc_agg_delayed += (HPTS_TICKS_PER_SLOT - slot); 5669 slot = HPTS_TICKS_PER_SLOT; 5670 } else { 5671 /* We take off some */ 5672 rack->r_ctl.rc_agg_delayed -= (slot - HPTS_TICKS_PER_SLOT); 5673 slot = HPTS_TICKS_PER_SLOT; 5674 } 5675 } else { 5676 slot -= rack->r_ctl.rc_agg_delayed; 5677 rack->r_ctl.rc_agg_delayed = 0; 5678 /* Make sure we have 100 useconds at minimum */ 5679 if (slot < HPTS_TICKS_PER_SLOT) { 5680 rack->r_ctl.rc_agg_delayed = HPTS_TICKS_PER_SLOT - slot; 5681 slot = HPTS_TICKS_PER_SLOT; 5682 } 5683 if (rack->r_ctl.rc_agg_delayed == 0) 5684 rack->r_late = 0; 5685 } 5686 } 5687 if (slot) { 5688 /* We are pacing too */ 5689 rack->r_ctl.rc_hpts_flags |= PACE_PKT_OUTPUT; 5690 } 5691 hpts_timeout = rack_timer_start(tp, rack, cts, sup_rack); 5692 #ifdef NETFLIX_EXP_DETECTION 5693 if (rack->sack_attack_disable && 5694 (slot < tcp_sad_pacing_interval)) { 5695 /* 5696 * We have a potential attacker on 5697 * the line. We have possibly some 5698 * (or now) pacing time set. We want to 5699 * slow down the processing of sacks by some 5700 * amount (if it is an attacker). Set the default 5701 * slot for attackers in place (unless the orginal 5702 * interval is longer). Its stored in 5703 * micro-seconds, so lets convert to msecs. 5704 */ 5705 slot = tcp_sad_pacing_interval; 5706 } 5707 #endif 5708 if (tp->t_flags & TF_DELACK) { 5709 delayed_ack = TICKS_2_USEC(tcp_delacktime); 5710 rack->r_ctl.rc_hpts_flags |= PACE_TMR_DELACK; 5711 } 5712 if (delayed_ack && ((hpts_timeout == 0) || 5713 (delayed_ack < hpts_timeout))) 5714 hpts_timeout = delayed_ack; 5715 else 5716 rack->r_ctl.rc_hpts_flags &= ~PACE_TMR_DELACK; 5717 /* 5718 * If no timers are going to run and we will fall off the hptsi 5719 * wheel, we resort to a keep-alive timer if its configured. 5720 */ 5721 if ((hpts_timeout == 0) && 5722 (slot == 0)) { 5723 if ((V_tcp_always_keepalive || inp->inp_socket->so_options & SO_KEEPALIVE) && 5724 (tp->t_state <= TCPS_CLOSING)) { 5725 /* 5726 * Ok we have no timer (persists, rack, tlp, rxt or 5727 * del-ack), we don't have segments being paced. So 5728 * all that is left is the keepalive timer. 5729 */ 5730 if (TCPS_HAVEESTABLISHED(tp->t_state)) { 5731 /* Get the established keep-alive time */ 5732 hpts_timeout = TICKS_2_USEC(TP_KEEPIDLE(tp)); 5733 } else { 5734 /* 5735 * Get the initial setup keep-alive time, 5736 * note that this is probably not going to 5737 * happen, since rack will be running a rxt timer 5738 * if a SYN of some sort is outstanding. It is 5739 * actually handled in rack_timeout_rxt(). 5740 */ 5741 hpts_timeout = TICKS_2_USEC(TP_KEEPINIT(tp)); 5742 } 5743 rack->r_ctl.rc_hpts_flags |= PACE_TMR_KEEP; 5744 if (rack->in_probe_rtt) { 5745 /* 5746 * We want to instead not wake up a long time from 5747 * now but to wake up about the time we would 5748 * exit probe-rtt and initiate a keep-alive ack. 5749 * This will get us out of probe-rtt and update 5750 * our min-rtt. 5751 */ 5752 hpts_timeout = rack_min_probertt_hold; 5753 } 5754 } 5755 } 5756 if (left && (stopped & (PACE_TMR_KEEP | PACE_TMR_DELACK)) == 5757 (rack->r_ctl.rc_hpts_flags & PACE_TMR_MASK)) { 5758 /* 5759 * RACK, TLP, persists and RXT timers all are restartable 5760 * based on actions input .. i.e we received a packet (ack 5761 * or sack) and that changes things (rw, or snd_una etc). 5762 * Thus we can restart them with a new value. For 5763 * keep-alive, delayed_ack we keep track of what was left 5764 * and restart the timer with a smaller value. 5765 */ 5766 if (left < hpts_timeout) 5767 hpts_timeout = left; 5768 } 5769 if (hpts_timeout) { 5770 /* 5771 * Hack alert for now we can't time-out over 2,147,483 5772 * seconds (a bit more than 596 hours), which is probably ok 5773 * :). 5774 */ 5775 if (hpts_timeout > 0x7ffffffe) 5776 hpts_timeout = 0x7ffffffe; 5777 rack->r_ctl.rc_timer_exp = cts + hpts_timeout; 5778 } 5779 rack_log_pacing_delay_calc(rack, entry_slot, slot, hpts_timeout, 0, 0, 27, __LINE__, NULL, 0); 5780 if ((rack->gp_ready == 0) && 5781 (rack->use_fixed_rate == 0) && 5782 (hpts_timeout < slot) && 5783 (rack->r_ctl.rc_hpts_flags & (PACE_TMR_TLP|PACE_TMR_RXT))) { 5784 /* 5785 * We have no good estimate yet for the 5786 * old clunky burst mitigation or the 5787 * real pacing. And the tlp or rxt is smaller 5788 * than the pacing calculation. Lets not 5789 * pace that long since we know the calculation 5790 * so far is not accurate. 5791 */ 5792 slot = hpts_timeout; 5793 } 5794 /** 5795 * Turn off all the flags for queuing by default. The 5796 * flags have important meanings to what happens when 5797 * LRO interacts with the transport. Most likely (by default now) 5798 * mbuf_queueing and ack compression are on. So the transport 5799 * has a couple of flags that control what happens (if those 5800 * are not on then these flags won't have any effect since it 5801 * won't go through the queuing LRO path). 5802 * 5803 * INP_MBUF_QUEUE_READY - This flags says that I am busy 5804 * pacing output, so don't disturb. But 5805 * it also means LRO can wake me if there 5806 * is a SACK arrival. 5807 * 5808 * INP_DONT_SACK_QUEUE - This flag is used in conjunction 5809 * with the above flag (QUEUE_READY) and 5810 * when present it says don't even wake me 5811 * if a SACK arrives. 5812 * 5813 * The idea behind these flags is that if we are pacing we 5814 * set the MBUF_QUEUE_READY and only get woken up if 5815 * a SACK arrives (which could change things) or if 5816 * our pacing timer expires. If, however, we have a rack 5817 * timer running, then we don't even want a sack to wake 5818 * us since the rack timer has to expire before we can send. 5819 * 5820 * Other cases should usually have none of the flags set 5821 * so LRO can call into us. 5822 */ 5823 inp->inp_flags2 &= ~(INP_DONT_SACK_QUEUE|INP_MBUF_QUEUE_READY); 5824 if (slot) { 5825 rack->r_ctl.rc_last_output_to = us_cts + slot; 5826 /* 5827 * A pacing timer (slot) is being set, in 5828 * such a case we cannot send (we are blocked by 5829 * the timer). So lets tell LRO that it should not 5830 * wake us unless there is a SACK. Note this only 5831 * will be effective if mbuf queueing is on or 5832 * compressed acks are being processed. 5833 */ 5834 inp->inp_flags2 |= INP_MBUF_QUEUE_READY; 5835 /* 5836 * But wait if we have a Rack timer running 5837 * even a SACK should not disturb us (with 5838 * the exception of r_rr_config 3). 5839 */ 5840 if ((rack->r_ctl.rc_hpts_flags & PACE_TMR_RACK) && 5841 (rack->r_rr_config != 3)) 5842 inp->inp_flags2 |= INP_DONT_SACK_QUEUE; 5843 if (rack->rc_ack_can_sendout_data) { 5844 /* 5845 * Ahh but wait, this is that special case 5846 * where the pacing timer can be disturbed 5847 * backout the changes (used for non-paced 5848 * burst limiting). 5849 */ 5850 inp->inp_flags2 &= ~(INP_DONT_SACK_QUEUE|INP_MBUF_QUEUE_READY); 5851 } 5852 if ((rack->use_rack_rr) && 5853 (rack->r_rr_config < 2) && 5854 ((hpts_timeout) && (hpts_timeout < slot))) { 5855 /* 5856 * Arrange for the hpts to kick back in after the 5857 * t-o if the t-o does not cause a send. 5858 */ 5859 (void)tcp_hpts_insert_diag(tp->t_inpcb, HPTS_USEC_TO_SLOTS(hpts_timeout), 5860 __LINE__, &diag); 5861 rack_log_hpts_diag(rack, us_cts, &diag, &tv); 5862 rack_log_to_start(rack, cts, hpts_timeout, slot, 0); 5863 } else { 5864 (void)tcp_hpts_insert_diag(tp->t_inpcb, HPTS_USEC_TO_SLOTS(slot), 5865 __LINE__, &diag); 5866 rack_log_hpts_diag(rack, us_cts, &diag, &tv); 5867 rack_log_to_start(rack, cts, hpts_timeout, slot, 1); 5868 } 5869 } else if (hpts_timeout) { 5870 /* 5871 * With respect to inp_flags2 here, lets let any new acks wake 5872 * us up here. Since we are not pacing (no pacing timer), output 5873 * can happen so we should let it. If its a Rack timer, then any inbound 5874 * packet probably won't change the sending (we will be blocked) 5875 * but it may change the prr stats so letting it in (the set defaults 5876 * at the start of this block) are good enough. 5877 */ 5878 (void)tcp_hpts_insert_diag(tp->t_inpcb, HPTS_USEC_TO_SLOTS(hpts_timeout), 5879 __LINE__, &diag); 5880 rack_log_hpts_diag(rack, us_cts, &diag, &tv); 5881 rack_log_to_start(rack, cts, hpts_timeout, slot, 0); 5882 } else { 5883 /* No timer starting */ 5884 #ifdef INVARIANTS 5885 if (SEQ_GT(tp->snd_max, tp->snd_una)) { 5886 panic("tp:%p rack:%p tlts:%d cts:%u slot:%u pto:%u -- no timer started?", 5887 tp, rack, tot_len_this_send, cts, slot, hpts_timeout); 5888 } 5889 #endif 5890 } 5891 rack->rc_tmr_stopped = 0; 5892 if (slot) 5893 rack_log_type_bbrsnd(rack, tot_len_this_send, slot, us_cts, &tv); 5894 } 5895 5896 /* 5897 * RACK Timer, here we simply do logging and house keeping. 5898 * the normal rack_output() function will call the 5899 * appropriate thing to check if we need to do a RACK retransmit. 5900 * We return 1, saying don't proceed with rack_output only 5901 * when all timers have been stopped (destroyed PCB?). 5902 */ 5903 static int 5904 rack_timeout_rack(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cts) 5905 { 5906 /* 5907 * This timer simply provides an internal trigger to send out data. 5908 * The check_recovery_mode call will see if there are needed 5909 * retransmissions, if so we will enter fast-recovery. The output 5910 * call may or may not do the same thing depending on sysctl 5911 * settings. 5912 */ 5913 struct rack_sendmap *rsm; 5914 5915 if (tp->t_timers->tt_flags & TT_STOPPED) { 5916 return (1); 5917 } 5918 counter_u64_add(rack_to_tot, 1); 5919 if (rack->r_state && (rack->r_state != tp->t_state)) 5920 rack_set_state(tp, rack); 5921 rack->rc_on_min_to = 0; 5922 rsm = rack_check_recovery_mode(tp, cts); 5923 rack_log_to_event(rack, RACK_TO_FRM_RACK, rsm); 5924 if (rsm) { 5925 rack->r_ctl.rc_resend = rsm; 5926 rack->r_timer_override = 1; 5927 if (rack->use_rack_rr) { 5928 /* 5929 * Don't accumulate extra pacing delay 5930 * we are allowing the rack timer to 5931 * over-ride pacing i.e. rrr takes precedence 5932 * if the pacing interval is longer than the rrr 5933 * time (in other words we get the min pacing 5934 * time versus rrr pacing time). 5935 */ 5936 rack->r_ctl.rc_hpts_flags &= ~PACE_PKT_OUTPUT; 5937 } 5938 } 5939 rack->r_ctl.rc_hpts_flags &= ~PACE_TMR_RACK; 5940 if (rsm == NULL) { 5941 /* restart a timer and return 1 */ 5942 rack_start_hpts_timer(rack, tp, cts, 5943 0, 0, 0); 5944 return (1); 5945 } 5946 return (0); 5947 } 5948 5949 static void 5950 rack_adjust_orig_mlen(struct rack_sendmap *rsm) 5951 { 5952 if (rsm->m->m_len > rsm->orig_m_len) { 5953 /* 5954 * Mbuf grew, caused by sbcompress, our offset does 5955 * not change. 5956 */ 5957 rsm->orig_m_len = rsm->m->m_len; 5958 } else if (rsm->m->m_len < rsm->orig_m_len) { 5959 /* 5960 * Mbuf shrank, trimmed off the top by an ack, our 5961 * offset changes. 5962 */ 5963 rsm->soff -= (rsm->orig_m_len - rsm->m->m_len); 5964 rsm->orig_m_len = rsm->m->m_len; 5965 } 5966 } 5967 5968 static void 5969 rack_setup_offset_for_rsm(struct rack_sendmap *src_rsm, struct rack_sendmap *rsm) 5970 { 5971 struct mbuf *m; 5972 uint32_t soff; 5973 5974 if (src_rsm->m && (src_rsm->orig_m_len != src_rsm->m->m_len)) { 5975 /* Fix up the orig_m_len and possibly the mbuf offset */ 5976 rack_adjust_orig_mlen(src_rsm); 5977 } 5978 m = src_rsm->m; 5979 soff = src_rsm->soff + (src_rsm->r_end - src_rsm->r_start); 5980 while (soff >= m->m_len) { 5981 /* Move out past this mbuf */ 5982 soff -= m->m_len; 5983 m = m->m_next; 5984 KASSERT((m != NULL), 5985 ("rsm:%p nrsm:%p hit at soff:%u null m", 5986 src_rsm, rsm, soff)); 5987 } 5988 rsm->m = m; 5989 rsm->soff = soff; 5990 rsm->orig_m_len = m->m_len; 5991 } 5992 5993 static __inline void 5994 rack_clone_rsm(struct tcp_rack *rack, struct rack_sendmap *nrsm, 5995 struct rack_sendmap *rsm, uint32_t start) 5996 { 5997 int idx; 5998 5999 nrsm->r_start = start; 6000 nrsm->r_end = rsm->r_end; 6001 nrsm->r_rtr_cnt = rsm->r_rtr_cnt; 6002 nrsm->r_flags = rsm->r_flags; 6003 nrsm->r_dupack = rsm->r_dupack; 6004 nrsm->r_no_rtt_allowed = rsm->r_no_rtt_allowed; 6005 nrsm->r_rtr_bytes = 0; 6006 nrsm->r_fas = rsm->r_fas; 6007 rsm->r_end = nrsm->r_start; 6008 nrsm->r_just_ret = rsm->r_just_ret; 6009 for (idx = 0; idx < nrsm->r_rtr_cnt; idx++) { 6010 nrsm->r_tim_lastsent[idx] = rsm->r_tim_lastsent[idx]; 6011 } 6012 /* Now if we have SYN flag we keep it on the left edge */ 6013 if (nrsm->r_flags & RACK_HAS_SYN) 6014 nrsm->r_flags &= ~RACK_HAS_SYN; 6015 /* Now if we have a FIN flag we keep it on the right edge */ 6016 if (rsm->r_flags & RACK_HAS_FIN) 6017 rsm->r_flags &= ~RACK_HAS_FIN; 6018 /* Push bit must go to the right edge as well */ 6019 if (rsm->r_flags & RACK_HAD_PUSH) 6020 rsm->r_flags &= ~RACK_HAD_PUSH; 6021 /* Clone over the state of the hw_tls flag */ 6022 nrsm->r_hw_tls = rsm->r_hw_tls; 6023 /* 6024 * Now we need to find nrsm's new location in the mbuf chain 6025 * we basically calculate a new offset, which is soff + 6026 * how much is left in original rsm. Then we walk out the mbuf 6027 * chain to find the righ position, it may be the same mbuf 6028 * or maybe not. 6029 */ 6030 KASSERT(((rsm->m != NULL) || 6031 (rsm->r_flags & (RACK_HAS_SYN|RACK_HAS_FIN))), 6032 ("rsm:%p nrsm:%p rack:%p -- rsm->m is NULL?", rsm, nrsm, rack)); 6033 if (rsm->m) 6034 rack_setup_offset_for_rsm(rsm, nrsm); 6035 } 6036 6037 static struct rack_sendmap * 6038 rack_merge_rsm(struct tcp_rack *rack, 6039 struct rack_sendmap *l_rsm, 6040 struct rack_sendmap *r_rsm) 6041 { 6042 /* 6043 * We are merging two ack'd RSM's, 6044 * the l_rsm is on the left (lower seq 6045 * values) and the r_rsm is on the right 6046 * (higher seq value). The simplest way 6047 * to merge these is to move the right 6048 * one into the left. I don't think there 6049 * is any reason we need to try to find 6050 * the oldest (or last oldest retransmitted). 6051 */ 6052 #ifdef INVARIANTS 6053 struct rack_sendmap *rm; 6054 #endif 6055 rack_log_map_chg(rack->rc_tp, rack, NULL, 6056 l_rsm, r_rsm, MAP_MERGE, r_rsm->r_end, __LINE__); 6057 l_rsm->r_end = r_rsm->r_end; 6058 if (l_rsm->r_dupack < r_rsm->r_dupack) 6059 l_rsm->r_dupack = r_rsm->r_dupack; 6060 if (r_rsm->r_rtr_bytes) 6061 l_rsm->r_rtr_bytes += r_rsm->r_rtr_bytes; 6062 if (r_rsm->r_in_tmap) { 6063 /* This really should not happen */ 6064 TAILQ_REMOVE(&rack->r_ctl.rc_tmap, r_rsm, r_tnext); 6065 r_rsm->r_in_tmap = 0; 6066 } 6067 6068 /* Now the flags */ 6069 if (r_rsm->r_flags & RACK_HAS_FIN) 6070 l_rsm->r_flags |= RACK_HAS_FIN; 6071 if (r_rsm->r_flags & RACK_TLP) 6072 l_rsm->r_flags |= RACK_TLP; 6073 if (r_rsm->r_flags & RACK_RWND_COLLAPSED) 6074 l_rsm->r_flags |= RACK_RWND_COLLAPSED; 6075 if ((r_rsm->r_flags & RACK_APP_LIMITED) && 6076 ((l_rsm->r_flags & RACK_APP_LIMITED) == 0)) { 6077 /* 6078 * If both are app-limited then let the 6079 * free lower the count. If right is app 6080 * limited and left is not, transfer. 6081 */ 6082 l_rsm->r_flags |= RACK_APP_LIMITED; 6083 r_rsm->r_flags &= ~RACK_APP_LIMITED; 6084 if (r_rsm == rack->r_ctl.rc_first_appl) 6085 rack->r_ctl.rc_first_appl = l_rsm; 6086 } 6087 #ifndef INVARIANTS 6088 (void)RB_REMOVE(rack_rb_tree_head, &rack->r_ctl.rc_mtree, r_rsm); 6089 #else 6090 rm = RB_REMOVE(rack_rb_tree_head, &rack->r_ctl.rc_mtree, r_rsm); 6091 if (rm != r_rsm) { 6092 panic("removing head in rack:%p rsm:%p rm:%p", 6093 rack, r_rsm, rm); 6094 } 6095 #endif 6096 if ((r_rsm->r_limit_type == 0) && (l_rsm->r_limit_type != 0)) { 6097 /* Transfer the split limit to the map we free */ 6098 r_rsm->r_limit_type = l_rsm->r_limit_type; 6099 l_rsm->r_limit_type = 0; 6100 } 6101 rack_free(rack, r_rsm); 6102 return (l_rsm); 6103 } 6104 6105 /* 6106 * TLP Timer, here we simply setup what segment we want to 6107 * have the TLP expire on, the normal rack_output() will then 6108 * send it out. 6109 * 6110 * We return 1, saying don't proceed with rack_output only 6111 * when all timers have been stopped (destroyed PCB?). 6112 */ 6113 static int 6114 rack_timeout_tlp(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cts, uint8_t *doing_tlp) 6115 { 6116 /* 6117 * Tail Loss Probe. 6118 */ 6119 struct rack_sendmap *rsm = NULL; 6120 #ifdef INVARIANTS 6121 struct rack_sendmap *insret; 6122 #endif 6123 struct socket *so; 6124 uint32_t amm; 6125 uint32_t out, avail; 6126 int collapsed_win = 0; 6127 6128 if (tp->t_timers->tt_flags & TT_STOPPED) { 6129 return (1); 6130 } 6131 if (TSTMP_LT(cts, rack->r_ctl.rc_timer_exp)) { 6132 /* Its not time yet */ 6133 return (0); 6134 } 6135 if (ctf_progress_timeout_check(tp, true)) { 6136 rack_log_progress_event(rack, tp, tick, PROGRESS_DROP, __LINE__); 6137 return (-ETIMEDOUT); /* tcp_drop() */ 6138 } 6139 /* 6140 * A TLP timer has expired. We have been idle for 2 rtts. So we now 6141 * need to figure out how to force a full MSS segment out. 6142 */ 6143 rack_log_to_event(rack, RACK_TO_FRM_TLP, NULL); 6144 rack->r_ctl.retran_during_recovery = 0; 6145 rack->r_ctl.dsack_byte_cnt = 0; 6146 counter_u64_add(rack_tlp_tot, 1); 6147 if (rack->r_state && (rack->r_state != tp->t_state)) 6148 rack_set_state(tp, rack); 6149 so = tp->t_inpcb->inp_socket; 6150 avail = sbavail(&so->so_snd); 6151 out = tp->snd_max - tp->snd_una; 6152 if ((out > tp->snd_wnd) || rack->rc_has_collapsed) { 6153 /* special case, we need a retransmission */ 6154 collapsed_win = 1; 6155 goto need_retran; 6156 } 6157 if (rack->r_ctl.dsack_persist && (rack->r_ctl.rc_tlp_cnt_out >= 1)) { 6158 rack->r_ctl.dsack_persist--; 6159 if (rack->r_ctl.num_dsack && (rack->r_ctl.dsack_persist == 0)) { 6160 rack->r_ctl.num_dsack = 0; 6161 } 6162 rack_log_dsack_event(rack, 1, __LINE__, 0, 0); 6163 } 6164 if ((tp->t_flags & TF_GPUTINPROG) && 6165 (rack->r_ctl.rc_tlp_cnt_out == 1)) { 6166 /* 6167 * If this is the second in a row 6168 * TLP and we are doing a measurement 6169 * its time to abandon the measurement. 6170 * Something is likely broken on 6171 * the clients network and measuring a 6172 * broken network does us no good. 6173 */ 6174 tp->t_flags &= ~TF_GPUTINPROG; 6175 rack_log_pacing_delay_calc(rack, (tp->gput_ack - tp->gput_seq) /*flex2*/, 6176 rack->r_ctl.rc_gp_srtt /*flex1*/, 6177 tp->gput_seq, 6178 0, 0, 18, __LINE__, NULL, 0); 6179 } 6180 /* 6181 * Check our send oldest always settings, and if 6182 * there is an oldest to send jump to the need_retran. 6183 */ 6184 if (rack_always_send_oldest && (TAILQ_EMPTY(&rack->r_ctl.rc_tmap) == 0)) 6185 goto need_retran; 6186 6187 if (avail > out) { 6188 /* New data is available */ 6189 amm = avail - out; 6190 if (amm > ctf_fixed_maxseg(tp)) { 6191 amm = ctf_fixed_maxseg(tp); 6192 if ((amm + out) > tp->snd_wnd) { 6193 /* We are rwnd limited */ 6194 goto need_retran; 6195 } 6196 } else if (amm < ctf_fixed_maxseg(tp)) { 6197 /* not enough to fill a MTU */ 6198 goto need_retran; 6199 } 6200 if (IN_FASTRECOVERY(tp->t_flags)) { 6201 /* Unlikely */ 6202 if (rack->rack_no_prr == 0) { 6203 if (out + amm <= tp->snd_wnd) { 6204 rack->r_ctl.rc_prr_sndcnt = amm; 6205 rack->r_ctl.rc_tlp_new_data = amm; 6206 rack_log_to_prr(rack, 4, 0, __LINE__); 6207 } 6208 } else 6209 goto need_retran; 6210 } else { 6211 /* Set the send-new override */ 6212 if (out + amm <= tp->snd_wnd) 6213 rack->r_ctl.rc_tlp_new_data = amm; 6214 else 6215 goto need_retran; 6216 } 6217 rack->r_ctl.rc_tlpsend = NULL; 6218 counter_u64_add(rack_tlp_newdata, 1); 6219 goto send; 6220 } 6221 need_retran: 6222 /* 6223 * Ok we need to arrange the last un-acked segment to be re-sent, or 6224 * optionally the first un-acked segment. 6225 */ 6226 if (collapsed_win == 0) { 6227 if (rack_always_send_oldest) 6228 rsm = TAILQ_FIRST(&rack->r_ctl.rc_tmap); 6229 else { 6230 rsm = RB_MAX(rack_rb_tree_head, &rack->r_ctl.rc_mtree); 6231 if (rsm && (rsm->r_flags & (RACK_ACKED | RACK_HAS_FIN))) { 6232 rsm = rack_find_high_nonack(rack, rsm); 6233 } 6234 } 6235 if (rsm == NULL) { 6236 #ifdef TCP_BLACKBOX 6237 tcp_log_dump_tp_logbuf(tp, "nada counter trips", M_NOWAIT, true); 6238 #endif 6239 goto out; 6240 } 6241 } else { 6242 /* 6243 * We must find the last segment 6244 * that was acceptable by the client. 6245 */ 6246 RB_FOREACH_REVERSE(rsm, rack_rb_tree_head, &rack->r_ctl.rc_mtree) { 6247 if ((rsm->r_flags & RACK_RWND_COLLAPSED) == 0) { 6248 /* Found one */ 6249 break; 6250 } 6251 } 6252 if (rsm == NULL) { 6253 /* None? if so send the first */ 6254 rsm = RB_MIN(rack_rb_tree_head, &rack->r_ctl.rc_mtree); 6255 if (rsm == NULL) { 6256 #ifdef TCP_BLACKBOX 6257 tcp_log_dump_tp_logbuf(tp, "nada counter trips", M_NOWAIT, true); 6258 #endif 6259 goto out; 6260 } 6261 } 6262 } 6263 if ((rsm->r_end - rsm->r_start) > ctf_fixed_maxseg(tp)) { 6264 /* 6265 * We need to split this the last segment in two. 6266 */ 6267 struct rack_sendmap *nrsm; 6268 6269 nrsm = rack_alloc_full_limit(rack); 6270 if (nrsm == NULL) { 6271 /* 6272 * No memory to split, we will just exit and punt 6273 * off to the RXT timer. 6274 */ 6275 goto out; 6276 } 6277 rack_clone_rsm(rack, nrsm, rsm, 6278 (rsm->r_end - ctf_fixed_maxseg(tp))); 6279 rack_log_map_chg(tp, rack, NULL, rsm, nrsm, MAP_SPLIT, 0, __LINE__); 6280 #ifndef INVARIANTS 6281 (void)RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm); 6282 #else 6283 insret = RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm); 6284 if (insret != NULL) { 6285 panic("Insert in rb tree of %p fails ret:%p rack:%p rsm:%p", 6286 nrsm, insret, rack, rsm); 6287 } 6288 #endif 6289 if (rsm->r_in_tmap) { 6290 TAILQ_INSERT_AFTER(&rack->r_ctl.rc_tmap, rsm, nrsm, r_tnext); 6291 nrsm->r_in_tmap = 1; 6292 } 6293 rsm = nrsm; 6294 } 6295 rack->r_ctl.rc_tlpsend = rsm; 6296 send: 6297 /* Make sure output path knows we are doing a TLP */ 6298 *doing_tlp = 1; 6299 rack->r_timer_override = 1; 6300 rack->r_ctl.rc_hpts_flags &= ~PACE_TMR_TLP; 6301 return (0); 6302 out: 6303 rack->r_ctl.rc_hpts_flags &= ~PACE_TMR_TLP; 6304 return (0); 6305 } 6306 6307 /* 6308 * Delayed ack Timer, here we simply need to setup the 6309 * ACK_NOW flag and remove the DELACK flag. From there 6310 * the output routine will send the ack out. 6311 * 6312 * We only return 1, saying don't proceed, if all timers 6313 * are stopped (destroyed PCB?). 6314 */ 6315 static int 6316 rack_timeout_delack(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cts) 6317 { 6318 if (tp->t_timers->tt_flags & TT_STOPPED) { 6319 return (1); 6320 } 6321 rack_log_to_event(rack, RACK_TO_FRM_DELACK, NULL); 6322 tp->t_flags &= ~TF_DELACK; 6323 tp->t_flags |= TF_ACKNOW; 6324 KMOD_TCPSTAT_INC(tcps_delack); 6325 rack->r_ctl.rc_hpts_flags &= ~PACE_TMR_DELACK; 6326 return (0); 6327 } 6328 6329 /* 6330 * Persists timer, here we simply send the 6331 * same thing as a keepalive will. 6332 * the one byte send. 6333 * 6334 * We only return 1, saying don't proceed, if all timers 6335 * are stopped (destroyed PCB?). 6336 */ 6337 static int 6338 rack_timeout_persist(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cts) 6339 { 6340 struct tcptemp *t_template; 6341 #ifdef INVARIANTS 6342 struct inpcb *inp = tp->t_inpcb; 6343 #endif 6344 int32_t retval = 1; 6345 6346 if (tp->t_timers->tt_flags & TT_STOPPED) { 6347 return (1); 6348 } 6349 if (rack->rc_in_persist == 0) 6350 return (0); 6351 if (ctf_progress_timeout_check(tp, false)) { 6352 tcp_log_end_status(tp, TCP_EI_STATUS_PERSIST_MAX); 6353 rack_log_progress_event(rack, tp, tick, PROGRESS_DROP, __LINE__); 6354 counter_u64_add(rack_persists_lost_ends, rack->r_ctl.persist_lost_ends); 6355 return (-ETIMEDOUT); /* tcp_drop() */ 6356 } 6357 KASSERT(inp != NULL, ("%s: tp %p tp->t_inpcb == NULL", __func__, tp)); 6358 /* 6359 * Persistence timer into zero window. Force a byte to be output, if 6360 * possible. 6361 */ 6362 KMOD_TCPSTAT_INC(tcps_persisttimeo); 6363 /* 6364 * Hack: if the peer is dead/unreachable, we do not time out if the 6365 * window is closed. After a full backoff, drop the connection if 6366 * the idle time (no responses to probes) reaches the maximum 6367 * backoff that we would use if retransmitting. 6368 */ 6369 if (tp->t_rxtshift == TCP_MAXRXTSHIFT && 6370 (ticks - tp->t_rcvtime >= tcp_maxpersistidle || 6371 TICKS_2_USEC(ticks - tp->t_rcvtime) >= RACK_REXMTVAL(tp) * tcp_totbackoff)) { 6372 KMOD_TCPSTAT_INC(tcps_persistdrop); 6373 tcp_log_end_status(tp, TCP_EI_STATUS_PERSIST_MAX); 6374 counter_u64_add(rack_persists_lost_ends, rack->r_ctl.persist_lost_ends); 6375 retval = -ETIMEDOUT; /* tcp_drop() */ 6376 goto out; 6377 } 6378 if ((sbavail(&rack->rc_inp->inp_socket->so_snd) == 0) && 6379 tp->snd_una == tp->snd_max) 6380 rack_exit_persist(tp, rack, cts); 6381 rack->r_ctl.rc_hpts_flags &= ~PACE_TMR_PERSIT; 6382 /* 6383 * If the user has closed the socket then drop a persisting 6384 * connection after a much reduced timeout. 6385 */ 6386 if (tp->t_state > TCPS_CLOSE_WAIT && 6387 (ticks - tp->t_rcvtime) >= TCPTV_PERSMAX) { 6388 KMOD_TCPSTAT_INC(tcps_persistdrop); 6389 tcp_log_end_status(tp, TCP_EI_STATUS_PERSIST_MAX); 6390 counter_u64_add(rack_persists_lost_ends, rack->r_ctl.persist_lost_ends); 6391 retval = -ETIMEDOUT; /* tcp_drop() */ 6392 goto out; 6393 } 6394 t_template = tcpip_maketemplate(rack->rc_inp); 6395 if (t_template) { 6396 /* only set it if we were answered */ 6397 if (rack->forced_ack == 0) { 6398 rack->forced_ack = 1; 6399 rack->r_ctl.forced_ack_ts = tcp_get_usecs(NULL); 6400 } else { 6401 rack->probe_not_answered = 1; 6402 counter_u64_add(rack_persists_loss, 1); 6403 rack->r_ctl.persist_lost_ends++; 6404 } 6405 counter_u64_add(rack_persists_sends, 1); 6406 tcp_respond(tp, t_template->tt_ipgen, 6407 &t_template->tt_t, (struct mbuf *)NULL, 6408 tp->rcv_nxt, tp->snd_una - 1, 0); 6409 /* This sends an ack */ 6410 if (tp->t_flags & TF_DELACK) 6411 tp->t_flags &= ~TF_DELACK; 6412 free(t_template, M_TEMP); 6413 } 6414 if (tp->t_rxtshift < TCP_MAXRXTSHIFT) 6415 tp->t_rxtshift++; 6416 out: 6417 rack_log_to_event(rack, RACK_TO_FRM_PERSIST, NULL); 6418 rack_start_hpts_timer(rack, tp, cts, 6419 0, 0, 0); 6420 return (retval); 6421 } 6422 6423 /* 6424 * If a keepalive goes off, we had no other timers 6425 * happening. We always return 1 here since this 6426 * routine either drops the connection or sends 6427 * out a segment with respond. 6428 */ 6429 static int 6430 rack_timeout_keepalive(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cts) 6431 { 6432 struct tcptemp *t_template; 6433 struct inpcb *inp; 6434 6435 if (tp->t_timers->tt_flags & TT_STOPPED) { 6436 return (1); 6437 } 6438 rack->r_ctl.rc_hpts_flags &= ~PACE_TMR_KEEP; 6439 inp = tp->t_inpcb; 6440 rack_log_to_event(rack, RACK_TO_FRM_KEEP, NULL); 6441 /* 6442 * Keep-alive timer went off; send something or drop connection if 6443 * idle for too long. 6444 */ 6445 KMOD_TCPSTAT_INC(tcps_keeptimeo); 6446 if (tp->t_state < TCPS_ESTABLISHED) 6447 goto dropit; 6448 if ((V_tcp_always_keepalive || inp->inp_socket->so_options & SO_KEEPALIVE) && 6449 tp->t_state <= TCPS_CLOSING) { 6450 if (ticks - tp->t_rcvtime >= TP_KEEPIDLE(tp) + TP_MAXIDLE(tp)) 6451 goto dropit; 6452 /* 6453 * Send a packet designed to force a response if the peer is 6454 * up and reachable: either an ACK if the connection is 6455 * still alive, or an RST if the peer has closed the 6456 * connection due to timeout or reboot. Using sequence 6457 * number tp->snd_una-1 causes the transmitted zero-length 6458 * segment to lie outside the receive window; by the 6459 * protocol spec, this requires the correspondent TCP to 6460 * respond. 6461 */ 6462 KMOD_TCPSTAT_INC(tcps_keepprobe); 6463 t_template = tcpip_maketemplate(inp); 6464 if (t_template) { 6465 if (rack->forced_ack == 0) { 6466 rack->forced_ack = 1; 6467 rack->r_ctl.forced_ack_ts = tcp_get_usecs(NULL); 6468 } else { 6469 rack->probe_not_answered = 1; 6470 } 6471 tcp_respond(tp, t_template->tt_ipgen, 6472 &t_template->tt_t, (struct mbuf *)NULL, 6473 tp->rcv_nxt, tp->snd_una - 1, 0); 6474 free(t_template, M_TEMP); 6475 } 6476 } 6477 rack_start_hpts_timer(rack, tp, cts, 0, 0, 0); 6478 return (1); 6479 dropit: 6480 KMOD_TCPSTAT_INC(tcps_keepdrops); 6481 tcp_log_end_status(tp, TCP_EI_STATUS_KEEP_MAX); 6482 return (-ETIMEDOUT); /* tcp_drop() */ 6483 } 6484 6485 /* 6486 * Retransmit helper function, clear up all the ack 6487 * flags and take care of important book keeping. 6488 */ 6489 static void 6490 rack_remxt_tmr(struct tcpcb *tp) 6491 { 6492 /* 6493 * The retransmit timer went off, all sack'd blocks must be 6494 * un-acked. 6495 */ 6496 struct rack_sendmap *rsm, *trsm = NULL; 6497 struct tcp_rack *rack; 6498 6499 rack = (struct tcp_rack *)tp->t_fb_ptr; 6500 rack_timer_cancel(tp, rack, tcp_get_usecs(NULL), __LINE__); 6501 rack_log_to_event(rack, RACK_TO_FRM_TMR, NULL); 6502 if (rack->r_state && (rack->r_state != tp->t_state)) 6503 rack_set_state(tp, rack); 6504 /* 6505 * Ideally we would like to be able to 6506 * mark SACK-PASS on anything not acked here. 6507 * 6508 * However, if we do that we would burst out 6509 * all that data 1ms apart. This would be unwise, 6510 * so for now we will just let the normal rxt timer 6511 * and tlp timer take care of it. 6512 * 6513 * Also we really need to stick them back in sequence 6514 * order. This way we send in the proper order and any 6515 * sacks that come floating in will "re-ack" the data. 6516 * To do this we zap the tmap with an INIT and then 6517 * walk through and place every rsm in the RB tree 6518 * back in its seq ordered place. 6519 */ 6520 TAILQ_INIT(&rack->r_ctl.rc_tmap); 6521 RB_FOREACH(rsm, rack_rb_tree_head, &rack->r_ctl.rc_mtree) { 6522 rsm->r_dupack = 0; 6523 rack_log_retran_reason(rack, rsm, __LINE__, 0, 2); 6524 /* We must re-add it back to the tlist */ 6525 if (trsm == NULL) { 6526 TAILQ_INSERT_HEAD(&rack->r_ctl.rc_tmap, rsm, r_tnext); 6527 } else { 6528 TAILQ_INSERT_AFTER(&rack->r_ctl.rc_tmap, trsm, rsm, r_tnext); 6529 } 6530 rsm->r_in_tmap = 1; 6531 trsm = rsm; 6532 if (rsm->r_flags & RACK_ACKED) 6533 rsm->r_flags |= RACK_WAS_ACKED; 6534 rsm->r_flags &= ~(RACK_ACKED | RACK_SACK_PASSED | RACK_WAS_SACKPASS | RACK_RWND_COLLAPSED); 6535 rsm->r_flags |= RACK_MUST_RXT; 6536 } 6537 /* Clear the count (we just un-acked them) */ 6538 rack->r_ctl.rc_last_timeout_snduna = tp->snd_una; 6539 rack->r_ctl.rc_sacked = 0; 6540 rack->r_ctl.rc_sacklast = NULL; 6541 rack->r_ctl.rc_agg_delayed = 0; 6542 rack->r_early = 0; 6543 rack->r_ctl.rc_agg_early = 0; 6544 rack->r_late = 0; 6545 /* Clear the tlp rtx mark */ 6546 rack->r_ctl.rc_resend = RB_MIN(rack_rb_tree_head, &rack->r_ctl.rc_mtree); 6547 if (rack->r_ctl.rc_resend != NULL) 6548 rack->r_ctl.rc_resend->r_flags |= RACK_TO_REXT; 6549 rack->r_ctl.rc_prr_sndcnt = 0; 6550 rack_log_to_prr(rack, 6, 0, __LINE__); 6551 rack->r_timer_override = 1; 6552 if ((((tp->t_flags & TF_SACK_PERMIT) == 0) 6553 #ifdef NETFLIX_EXP_DETECTION 6554 || (rack->sack_attack_disable != 0) 6555 #endif 6556 ) && ((tp->t_flags & TF_SENTFIN) == 0)) { 6557 /* 6558 * For non-sack customers new data 6559 * needs to go out as retransmits until 6560 * we retransmit up to snd_max. 6561 */ 6562 rack->r_must_retran = 1; 6563 rack->r_ctl.rc_out_at_rto = ctf_flight_size(rack->rc_tp, 6564 rack->r_ctl.rc_sacked); 6565 } 6566 rack->r_ctl.rc_snd_max_at_rto = tp->snd_max; 6567 } 6568 6569 static void 6570 rack_convert_rtts(struct tcpcb *tp) 6571 { 6572 if (tp->t_srtt > 1) { 6573 uint32_t val, frac; 6574 6575 val = tp->t_srtt >> TCP_RTT_SHIFT; 6576 frac = tp->t_srtt & 0x1f; 6577 tp->t_srtt = TICKS_2_USEC(val); 6578 /* 6579 * frac is the fractional part of the srtt (if any) 6580 * but its in ticks and every bit represents 6581 * 1/32nd of a hz. 6582 */ 6583 if (frac) { 6584 if (hz == 1000) { 6585 frac = (((uint64_t)frac * (uint64_t)HPTS_USEC_IN_MSEC) / (uint64_t)TCP_RTT_SCALE); 6586 } else { 6587 frac = (((uint64_t)frac * (uint64_t)HPTS_USEC_IN_SEC) / ((uint64_t)(hz) * (uint64_t)TCP_RTT_SCALE)); 6588 } 6589 tp->t_srtt += frac; 6590 } 6591 } 6592 if (tp->t_rttvar) { 6593 uint32_t val, frac; 6594 6595 val = tp->t_rttvar >> TCP_RTTVAR_SHIFT; 6596 frac = tp->t_rttvar & 0x1f; 6597 tp->t_rttvar = TICKS_2_USEC(val); 6598 /* 6599 * frac is the fractional part of the srtt (if any) 6600 * but its in ticks and every bit represents 6601 * 1/32nd of a hz. 6602 */ 6603 if (frac) { 6604 if (hz == 1000) { 6605 frac = (((uint64_t)frac * (uint64_t)HPTS_USEC_IN_MSEC) / (uint64_t)TCP_RTT_SCALE); 6606 } else { 6607 frac = (((uint64_t)frac * (uint64_t)HPTS_USEC_IN_SEC) / ((uint64_t)(hz) * (uint64_t)TCP_RTT_SCALE)); 6608 } 6609 tp->t_rttvar += frac; 6610 } 6611 } 6612 tp->t_rxtcur = RACK_REXMTVAL(tp); 6613 if (TCPS_HAVEESTABLISHED(tp->t_state)) { 6614 tp->t_rxtcur += TICKS_2_USEC(tcp_rexmit_slop); 6615 } 6616 if (tp->t_rxtcur > rack_rto_max) { 6617 tp->t_rxtcur = rack_rto_max; 6618 } 6619 } 6620 6621 static void 6622 rack_cc_conn_init(struct tcpcb *tp) 6623 { 6624 struct tcp_rack *rack; 6625 uint32_t srtt; 6626 6627 rack = (struct tcp_rack *)tp->t_fb_ptr; 6628 srtt = tp->t_srtt; 6629 cc_conn_init(tp); 6630 /* 6631 * Now convert to rack's internal format, 6632 * if required. 6633 */ 6634 if ((srtt == 0) && (tp->t_srtt != 0)) 6635 rack_convert_rtts(tp); 6636 /* 6637 * We want a chance to stay in slowstart as 6638 * we create a connection. TCP spec says that 6639 * initially ssthresh is infinite. For our 6640 * purposes that is the snd_wnd. 6641 */ 6642 if (tp->snd_ssthresh < tp->snd_wnd) { 6643 tp->snd_ssthresh = tp->snd_wnd; 6644 } 6645 /* 6646 * We also want to assure a IW worth of 6647 * data can get inflight. 6648 */ 6649 if (rc_init_window(rack) < tp->snd_cwnd) 6650 tp->snd_cwnd = rc_init_window(rack); 6651 } 6652 6653 /* 6654 * Re-transmit timeout! If we drop the PCB we will return 1, otherwise 6655 * we will setup to retransmit the lowest seq number outstanding. 6656 */ 6657 static int 6658 rack_timeout_rxt(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cts) 6659 { 6660 int32_t rexmt; 6661 int32_t retval = 0; 6662 bool isipv6; 6663 6664 if (tp->t_timers->tt_flags & TT_STOPPED) { 6665 return (1); 6666 } 6667 if ((tp->t_flags & TF_GPUTINPROG) && 6668 (tp->t_rxtshift)) { 6669 /* 6670 * We have had a second timeout 6671 * measurements on successive rxt's are not profitable. 6672 * It is unlikely to be of any use (the network is 6673 * broken or the client went away). 6674 */ 6675 tp->t_flags &= ~TF_GPUTINPROG; 6676 rack_log_pacing_delay_calc(rack, (tp->gput_ack - tp->gput_seq) /*flex2*/, 6677 rack->r_ctl.rc_gp_srtt /*flex1*/, 6678 tp->gput_seq, 6679 0, 0, 18, __LINE__, NULL, 0); 6680 } 6681 if (ctf_progress_timeout_check(tp, false)) { 6682 tcp_log_end_status(tp, TCP_EI_STATUS_RETRAN); 6683 rack_log_progress_event(rack, tp, tick, PROGRESS_DROP, __LINE__); 6684 return (-ETIMEDOUT); /* tcp_drop() */ 6685 } 6686 rack->r_ctl.rc_hpts_flags &= ~PACE_TMR_RXT; 6687 rack->r_ctl.retran_during_recovery = 0; 6688 rack->rc_ack_required = 1; 6689 rack->r_ctl.dsack_byte_cnt = 0; 6690 if (IN_FASTRECOVERY(tp->t_flags)) 6691 tp->t_flags |= TF_WASFRECOVERY; 6692 else 6693 tp->t_flags &= ~TF_WASFRECOVERY; 6694 if (IN_CONGRECOVERY(tp->t_flags)) 6695 tp->t_flags |= TF_WASCRECOVERY; 6696 else 6697 tp->t_flags &= ~TF_WASCRECOVERY; 6698 if (TCPS_HAVEESTABLISHED(tp->t_state) && 6699 (tp->snd_una == tp->snd_max)) { 6700 /* Nothing outstanding .. nothing to do */ 6701 return (0); 6702 } 6703 if (rack->r_ctl.dsack_persist) { 6704 rack->r_ctl.dsack_persist--; 6705 if (rack->r_ctl.num_dsack && (rack->r_ctl.dsack_persist == 0)) { 6706 rack->r_ctl.num_dsack = 0; 6707 } 6708 rack_log_dsack_event(rack, 1, __LINE__, 0, 0); 6709 } 6710 /* 6711 * Rack can only run one timer at a time, so we cannot 6712 * run a KEEPINIT (gating SYN sending) and a retransmit 6713 * timer for the SYN. So if we are in a front state and 6714 * have a KEEPINIT timer we need to check the first transmit 6715 * against now to see if we have exceeded the KEEPINIT time 6716 * (if one is set). 6717 */ 6718 if ((TCPS_HAVEESTABLISHED(tp->t_state) == 0) && 6719 (TP_KEEPINIT(tp) != 0)) { 6720 struct rack_sendmap *rsm; 6721 6722 rsm = RB_MIN(rack_rb_tree_head, &rack->r_ctl.rc_mtree); 6723 if (rsm) { 6724 /* Ok we have something outstanding to test keepinit with */ 6725 if ((TSTMP_GT(cts, (uint32_t)rsm->r_tim_lastsent[0])) && 6726 ((cts - (uint32_t)rsm->r_tim_lastsent[0]) >= TICKS_2_USEC(TP_KEEPINIT(tp)))) { 6727 /* We have exceeded the KEEPINIT time */ 6728 tcp_log_end_status(tp, TCP_EI_STATUS_KEEP_MAX); 6729 goto drop_it; 6730 } 6731 } 6732 } 6733 /* 6734 * Retransmission timer went off. Message has not been acked within 6735 * retransmit interval. Back off to a longer retransmit interval 6736 * and retransmit one segment. 6737 */ 6738 rack_remxt_tmr(tp); 6739 if ((rack->r_ctl.rc_resend == NULL) || 6740 ((rack->r_ctl.rc_resend->r_flags & RACK_RWND_COLLAPSED) == 0)) { 6741 /* 6742 * If the rwnd collapsed on 6743 * the one we are retransmitting 6744 * it does not count against the 6745 * rxt count. 6746 */ 6747 tp->t_rxtshift++; 6748 } 6749 if (tp->t_rxtshift > TCP_MAXRXTSHIFT) { 6750 tcp_log_end_status(tp, TCP_EI_STATUS_RETRAN); 6751 drop_it: 6752 tp->t_rxtshift = TCP_MAXRXTSHIFT; 6753 KMOD_TCPSTAT_INC(tcps_timeoutdrop); 6754 /* XXXGL: previously t_softerror was casted to uint16_t */ 6755 MPASS(tp->t_softerror >= 0); 6756 retval = tp->t_softerror ? -tp->t_softerror : -ETIMEDOUT; 6757 goto out; /* tcp_drop() */ 6758 } 6759 if (tp->t_state == TCPS_SYN_SENT) { 6760 /* 6761 * If the SYN was retransmitted, indicate CWND to be limited 6762 * to 1 segment in cc_conn_init(). 6763 */ 6764 tp->snd_cwnd = 1; 6765 } else if (tp->t_rxtshift == 1) { 6766 /* 6767 * first retransmit; record ssthresh and cwnd so they can be 6768 * recovered if this turns out to be a "bad" retransmit. A 6769 * retransmit is considered "bad" if an ACK for this segment 6770 * is received within RTT/2 interval; the assumption here is 6771 * that the ACK was already in flight. See "On Estimating 6772 * End-to-End Network Path Properties" by Allman and Paxson 6773 * for more details. 6774 */ 6775 tp->snd_cwnd_prev = tp->snd_cwnd; 6776 tp->snd_ssthresh_prev = tp->snd_ssthresh; 6777 tp->snd_recover_prev = tp->snd_recover; 6778 tp->t_badrxtwin = ticks + (USEC_2_TICKS(tp->t_srtt)/2); 6779 tp->t_flags |= TF_PREVVALID; 6780 } else if ((tp->t_flags & TF_RCVD_TSTMP) == 0) 6781 tp->t_flags &= ~TF_PREVVALID; 6782 KMOD_TCPSTAT_INC(tcps_rexmttimeo); 6783 if ((tp->t_state == TCPS_SYN_SENT) || 6784 (tp->t_state == TCPS_SYN_RECEIVED)) 6785 rexmt = RACK_INITIAL_RTO * tcp_backoff[tp->t_rxtshift]; 6786 else 6787 rexmt = max(rack_rto_min, (tp->t_srtt + (tp->t_rttvar << 2))) * tcp_backoff[tp->t_rxtshift]; 6788 6789 RACK_TCPT_RANGESET(tp->t_rxtcur, rexmt, 6790 max(rack_rto_min, rexmt), rack_rto_max, rack->r_ctl.timer_slop); 6791 /* 6792 * We enter the path for PLMTUD if connection is established or, if 6793 * connection is FIN_WAIT_1 status, reason for the last is that if 6794 * amount of data we send is very small, we could send it in couple 6795 * of packets and process straight to FIN. In that case we won't 6796 * catch ESTABLISHED state. 6797 */ 6798 #ifdef INET6 6799 isipv6 = (tp->t_inpcb->inp_vflag & INP_IPV6) ? true : false; 6800 #else 6801 isipv6 = false; 6802 #endif 6803 if (((V_tcp_pmtud_blackhole_detect == 1) || 6804 (V_tcp_pmtud_blackhole_detect == 2 && !isipv6) || 6805 (V_tcp_pmtud_blackhole_detect == 3 && isipv6)) && 6806 ((tp->t_state == TCPS_ESTABLISHED) || 6807 (tp->t_state == TCPS_FIN_WAIT_1))) { 6808 /* 6809 * Idea here is that at each stage of mtu probe (usually, 6810 * 1448 -> 1188 -> 524) should be given 2 chances to recover 6811 * before further clamping down. 'tp->t_rxtshift % 2 == 0' 6812 * should take care of that. 6813 */ 6814 if (((tp->t_flags2 & (TF2_PLPMTU_PMTUD | TF2_PLPMTU_MAXSEGSNT)) == 6815 (TF2_PLPMTU_PMTUD | TF2_PLPMTU_MAXSEGSNT)) && 6816 (tp->t_rxtshift >= 2 && tp->t_rxtshift < 6 && 6817 tp->t_rxtshift % 2 == 0)) { 6818 /* 6819 * Enter Path MTU Black-hole Detection mechanism: - 6820 * Disable Path MTU Discovery (IP "DF" bit). - 6821 * Reduce MTU to lower value than what we negotiated 6822 * with peer. 6823 */ 6824 if ((tp->t_flags2 & TF2_PLPMTU_BLACKHOLE) == 0) { 6825 /* Record that we may have found a black hole. */ 6826 tp->t_flags2 |= TF2_PLPMTU_BLACKHOLE; 6827 /* Keep track of previous MSS. */ 6828 tp->t_pmtud_saved_maxseg = tp->t_maxseg; 6829 } 6830 6831 /* 6832 * Reduce the MSS to blackhole value or to the 6833 * default in an attempt to retransmit. 6834 */ 6835 #ifdef INET6 6836 if (isipv6 && 6837 tp->t_maxseg > V_tcp_v6pmtud_blackhole_mss) { 6838 /* Use the sysctl tuneable blackhole MSS. */ 6839 tp->t_maxseg = V_tcp_v6pmtud_blackhole_mss; 6840 KMOD_TCPSTAT_INC(tcps_pmtud_blackhole_activated); 6841 } else if (isipv6) { 6842 /* Use the default MSS. */ 6843 tp->t_maxseg = V_tcp_v6mssdflt; 6844 /* 6845 * Disable Path MTU Discovery when we switch 6846 * to minmss. 6847 */ 6848 tp->t_flags2 &= ~TF2_PLPMTU_PMTUD; 6849 KMOD_TCPSTAT_INC(tcps_pmtud_blackhole_activated_min_mss); 6850 } 6851 #endif 6852 #if defined(INET6) && defined(INET) 6853 else 6854 #endif 6855 #ifdef INET 6856 if (tp->t_maxseg > V_tcp_pmtud_blackhole_mss) { 6857 /* Use the sysctl tuneable blackhole MSS. */ 6858 tp->t_maxseg = V_tcp_pmtud_blackhole_mss; 6859 KMOD_TCPSTAT_INC(tcps_pmtud_blackhole_activated); 6860 } else { 6861 /* Use the default MSS. */ 6862 tp->t_maxseg = V_tcp_mssdflt; 6863 /* 6864 * Disable Path MTU Discovery when we switch 6865 * to minmss. 6866 */ 6867 tp->t_flags2 &= ~TF2_PLPMTU_PMTUD; 6868 KMOD_TCPSTAT_INC(tcps_pmtud_blackhole_activated_min_mss); 6869 } 6870 #endif 6871 } else { 6872 /* 6873 * If further retransmissions are still unsuccessful 6874 * with a lowered MTU, maybe this isn't a blackhole 6875 * and we restore the previous MSS and blackhole 6876 * detection flags. The limit '6' is determined by 6877 * giving each probe stage (1448, 1188, 524) 2 6878 * chances to recover. 6879 */ 6880 if ((tp->t_flags2 & TF2_PLPMTU_BLACKHOLE) && 6881 (tp->t_rxtshift >= 6)) { 6882 tp->t_flags2 |= TF2_PLPMTU_PMTUD; 6883 tp->t_flags2 &= ~TF2_PLPMTU_BLACKHOLE; 6884 tp->t_maxseg = tp->t_pmtud_saved_maxseg; 6885 KMOD_TCPSTAT_INC(tcps_pmtud_blackhole_failed); 6886 } 6887 } 6888 } 6889 /* 6890 * Disable RFC1323 and SACK if we haven't got any response to 6891 * our third SYN to work-around some broken terminal servers 6892 * (most of which have hopefully been retired) that have bad VJ 6893 * header compression code which trashes TCP segments containing 6894 * unknown-to-them TCP options. 6895 */ 6896 if (tcp_rexmit_drop_options && (tp->t_state == TCPS_SYN_SENT) && 6897 (tp->t_rxtshift == 3)) 6898 tp->t_flags &= ~(TF_REQ_SCALE|TF_REQ_TSTMP|TF_SACK_PERMIT); 6899 /* 6900 * If we backed off this far, our srtt estimate is probably bogus. 6901 * Clobber it so we'll take the next rtt measurement as our srtt; 6902 * move the current srtt into rttvar to keep the current retransmit 6903 * times until then. 6904 */ 6905 if (tp->t_rxtshift > TCP_MAXRXTSHIFT / 4) { 6906 #ifdef INET6 6907 if ((tp->t_inpcb->inp_vflag & INP_IPV6) != 0) 6908 in6_losing(tp->t_inpcb); 6909 else 6910 #endif 6911 in_losing(tp->t_inpcb); 6912 tp->t_rttvar += tp->t_srtt; 6913 tp->t_srtt = 0; 6914 } 6915 sack_filter_clear(&rack->r_ctl.rack_sf, tp->snd_una); 6916 tp->snd_recover = tp->snd_max; 6917 tp->t_flags |= TF_ACKNOW; 6918 tp->t_rtttime = 0; 6919 rack_cong_signal(tp, CC_RTO, tp->snd_una, __LINE__); 6920 out: 6921 return (retval); 6922 } 6923 6924 static int 6925 rack_process_timers(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cts, uint8_t hpts_calling, uint8_t *doing_tlp) 6926 { 6927 int32_t ret = 0; 6928 int32_t timers = (rack->r_ctl.rc_hpts_flags & PACE_TMR_MASK); 6929 6930 if ((tp->t_state >= TCPS_FIN_WAIT_1) && 6931 (tp->t_flags & TF_GPUTINPROG)) { 6932 /* 6933 * We have a goodput in progress 6934 * and we have entered a late state. 6935 * Do we have enough data in the sb 6936 * to handle the GPUT request? 6937 */ 6938 uint32_t bytes; 6939 6940 bytes = tp->gput_ack - tp->gput_seq; 6941 if (SEQ_GT(tp->gput_seq, tp->snd_una)) 6942 bytes += tp->gput_seq - tp->snd_una; 6943 if (bytes > sbavail(&tp->t_inpcb->inp_socket->so_snd)) { 6944 /* 6945 * There are not enough bytes in the socket 6946 * buffer that have been sent to cover this 6947 * measurement. Cancel it. 6948 */ 6949 rack_log_pacing_delay_calc(rack, (tp->gput_ack - tp->gput_seq) /*flex2*/, 6950 rack->r_ctl.rc_gp_srtt /*flex1*/, 6951 tp->gput_seq, 6952 0, 0, 18, __LINE__, NULL, 0); 6953 tp->t_flags &= ~TF_GPUTINPROG; 6954 } 6955 } 6956 if (timers == 0) { 6957 return (0); 6958 } 6959 if (tp->t_state == TCPS_LISTEN) { 6960 /* no timers on listen sockets */ 6961 if (rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT) 6962 return (0); 6963 return (1); 6964 } 6965 if ((timers & PACE_TMR_RACK) && 6966 rack->rc_on_min_to) { 6967 /* 6968 * For the rack timer when we 6969 * are on a min-timeout (which means rrr_conf = 3) 6970 * we don't want to check the timer. It may 6971 * be going off for a pace and thats ok we 6972 * want to send the retransmit (if its ready). 6973 * 6974 * If its on a normal rack timer (non-min) then 6975 * we will check if its expired. 6976 */ 6977 goto skip_time_check; 6978 } 6979 if (TSTMP_LT(cts, rack->r_ctl.rc_timer_exp)) { 6980 uint32_t left; 6981 6982 if (rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT) { 6983 ret = -1; 6984 rack_log_to_processing(rack, cts, ret, 0); 6985 return (0); 6986 } 6987 if (hpts_calling == 0) { 6988 /* 6989 * A user send or queued mbuf (sack) has called us? We 6990 * return 0 and let the pacing guards 6991 * deal with it if they should or 6992 * should not cause a send. 6993 */ 6994 ret = -2; 6995 rack_log_to_processing(rack, cts, ret, 0); 6996 return (0); 6997 } 6998 /* 6999 * Ok our timer went off early and we are not paced false 7000 * alarm, go back to sleep. 7001 */ 7002 ret = -3; 7003 left = rack->r_ctl.rc_timer_exp - cts; 7004 tcp_hpts_insert(tp->t_inpcb, HPTS_MS_TO_SLOTS(left)); 7005 rack_log_to_processing(rack, cts, ret, left); 7006 return (1); 7007 } 7008 skip_time_check: 7009 rack->rc_tmr_stopped = 0; 7010 rack->r_ctl.rc_hpts_flags &= ~PACE_TMR_MASK; 7011 if (timers & PACE_TMR_DELACK) { 7012 ret = rack_timeout_delack(tp, rack, cts); 7013 } else if (timers & PACE_TMR_RACK) { 7014 rack->r_ctl.rc_tlp_rxt_last_time = cts; 7015 rack->r_fast_output = 0; 7016 ret = rack_timeout_rack(tp, rack, cts); 7017 } else if (timers & PACE_TMR_TLP) { 7018 rack->r_ctl.rc_tlp_rxt_last_time = cts; 7019 ret = rack_timeout_tlp(tp, rack, cts, doing_tlp); 7020 } else if (timers & PACE_TMR_RXT) { 7021 rack->r_ctl.rc_tlp_rxt_last_time = cts; 7022 rack->r_fast_output = 0; 7023 ret = rack_timeout_rxt(tp, rack, cts); 7024 } else if (timers & PACE_TMR_PERSIT) { 7025 ret = rack_timeout_persist(tp, rack, cts); 7026 } else if (timers & PACE_TMR_KEEP) { 7027 ret = rack_timeout_keepalive(tp, rack, cts); 7028 } 7029 rack_log_to_processing(rack, cts, ret, timers); 7030 return (ret); 7031 } 7032 7033 static void 7034 rack_timer_cancel(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cts, int line) 7035 { 7036 struct timeval tv; 7037 uint32_t us_cts, flags_on_entry; 7038 uint8_t hpts_removed = 0; 7039 7040 flags_on_entry = rack->r_ctl.rc_hpts_flags; 7041 us_cts = tcp_get_usecs(&tv); 7042 if ((rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT) && 7043 ((TSTMP_GEQ(us_cts, rack->r_ctl.rc_last_output_to)) || 7044 ((tp->snd_max - tp->snd_una) == 0))) { 7045 tcp_hpts_remove(rack->rc_inp); 7046 hpts_removed = 1; 7047 /* If we were not delayed cancel out the flag. */ 7048 if ((tp->snd_max - tp->snd_una) == 0) 7049 rack->r_ctl.rc_hpts_flags &= ~PACE_PKT_OUTPUT; 7050 rack_log_to_cancel(rack, hpts_removed, line, us_cts, &tv, flags_on_entry); 7051 } 7052 if (rack->r_ctl.rc_hpts_flags & PACE_TMR_MASK) { 7053 rack->rc_tmr_stopped = rack->r_ctl.rc_hpts_flags & PACE_TMR_MASK; 7054 if (tcp_in_hpts(rack->rc_inp) && 7055 ((rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT) == 0)) { 7056 /* 7057 * Canceling timer's when we have no output being 7058 * paced. We also must remove ourselves from the 7059 * hpts. 7060 */ 7061 tcp_hpts_remove(rack->rc_inp); 7062 hpts_removed = 1; 7063 } 7064 rack->r_ctl.rc_hpts_flags &= ~(PACE_TMR_MASK); 7065 } 7066 if (hpts_removed == 0) 7067 rack_log_to_cancel(rack, hpts_removed, line, us_cts, &tv, flags_on_entry); 7068 } 7069 7070 static void 7071 rack_timer_stop(struct tcpcb *tp, uint32_t timer_type) 7072 { 7073 return; 7074 } 7075 7076 static int 7077 rack_stopall(struct tcpcb *tp) 7078 { 7079 struct tcp_rack *rack; 7080 rack = (struct tcp_rack *)tp->t_fb_ptr; 7081 rack->t_timers_stopped = 1; 7082 return (0); 7083 } 7084 7085 static void 7086 rack_timer_activate(struct tcpcb *tp, uint32_t timer_type, uint32_t delta) 7087 { 7088 return; 7089 } 7090 7091 static int 7092 rack_timer_active(struct tcpcb *tp, uint32_t timer_type) 7093 { 7094 return (0); 7095 } 7096 7097 static void 7098 rack_stop_all_timers(struct tcpcb *tp) 7099 { 7100 struct tcp_rack *rack; 7101 7102 /* 7103 * Assure no timers are running. 7104 */ 7105 if (tcp_timer_active(tp, TT_PERSIST)) { 7106 /* We enter in persists, set the flag appropriately */ 7107 rack = (struct tcp_rack *)tp->t_fb_ptr; 7108 rack->rc_in_persist = 1; 7109 } 7110 tcp_timer_suspend(tp, TT_PERSIST); 7111 tcp_timer_suspend(tp, TT_REXMT); 7112 tcp_timer_suspend(tp, TT_KEEP); 7113 tcp_timer_suspend(tp, TT_DELACK); 7114 } 7115 7116 static void 7117 rack_update_rsm(struct tcpcb *tp, struct tcp_rack *rack, 7118 struct rack_sendmap *rsm, uint64_t ts, uint16_t add_flag) 7119 { 7120 int32_t idx; 7121 7122 rsm->r_rtr_cnt++; 7123 rack_log_retran_reason(rack, rsm, __LINE__, 0, 2); 7124 rsm->r_dupack = 0; 7125 if (rsm->r_rtr_cnt > RACK_NUM_OF_RETRANS) { 7126 rsm->r_rtr_cnt = RACK_NUM_OF_RETRANS; 7127 rsm->r_flags |= RACK_OVERMAX; 7128 } 7129 if ((rsm->r_rtr_cnt > 1) && ((rsm->r_flags & RACK_TLP) == 0)) { 7130 rack->r_ctl.rc_holes_rxt += (rsm->r_end - rsm->r_start); 7131 rsm->r_rtr_bytes += (rsm->r_end - rsm->r_start); 7132 } 7133 idx = rsm->r_rtr_cnt - 1; 7134 rsm->r_tim_lastsent[idx] = ts; 7135 /* 7136 * Here we don't add in the len of send, since its already 7137 * in snduna <->snd_max. 7138 */ 7139 rsm->r_fas = ctf_flight_size(rack->rc_tp, 7140 rack->r_ctl.rc_sacked); 7141 if (rsm->r_flags & RACK_ACKED) { 7142 /* Problably MTU discovery messing with us */ 7143 rsm->r_flags &= ~RACK_ACKED; 7144 rack->r_ctl.rc_sacked -= (rsm->r_end - rsm->r_start); 7145 } 7146 if (rsm->r_in_tmap) { 7147 TAILQ_REMOVE(&rack->r_ctl.rc_tmap, rsm, r_tnext); 7148 rsm->r_in_tmap = 0; 7149 } 7150 TAILQ_INSERT_TAIL(&rack->r_ctl.rc_tmap, rsm, r_tnext); 7151 rsm->r_in_tmap = 1; 7152 /* Take off the must retransmit flag, if its on */ 7153 if (rsm->r_flags & RACK_MUST_RXT) { 7154 if (rack->r_must_retran) 7155 rack->r_ctl.rc_out_at_rto -= (rsm->r_end - rsm->r_start); 7156 if (SEQ_GEQ(rsm->r_end, rack->r_ctl.rc_snd_max_at_rto)) { 7157 /* 7158 * We have retransmitted all we need. Clear 7159 * any must retransmit flags. 7160 */ 7161 rack->r_must_retran = 0; 7162 rack->r_ctl.rc_out_at_rto = 0; 7163 } 7164 rsm->r_flags &= ~RACK_MUST_RXT; 7165 } 7166 if (rsm->r_flags & RACK_SACK_PASSED) { 7167 /* We have retransmitted due to the SACK pass */ 7168 rsm->r_flags &= ~RACK_SACK_PASSED; 7169 rsm->r_flags |= RACK_WAS_SACKPASS; 7170 } 7171 } 7172 7173 static uint32_t 7174 rack_update_entry(struct tcpcb *tp, struct tcp_rack *rack, 7175 struct rack_sendmap *rsm, uint64_t ts, int32_t *lenp, uint16_t add_flag) 7176 { 7177 /* 7178 * We (re-)transmitted starting at rsm->r_start for some length 7179 * (possibly less than r_end. 7180 */ 7181 struct rack_sendmap *nrsm; 7182 #ifdef INVARIANTS 7183 struct rack_sendmap *insret; 7184 #endif 7185 uint32_t c_end; 7186 int32_t len; 7187 7188 len = *lenp; 7189 c_end = rsm->r_start + len; 7190 if (SEQ_GEQ(c_end, rsm->r_end)) { 7191 /* 7192 * We retransmitted the whole piece or more than the whole 7193 * slopping into the next rsm. 7194 */ 7195 rack_update_rsm(tp, rack, rsm, ts, add_flag); 7196 if (c_end == rsm->r_end) { 7197 *lenp = 0; 7198 return (0); 7199 } else { 7200 int32_t act_len; 7201 7202 /* Hangs over the end return whats left */ 7203 act_len = rsm->r_end - rsm->r_start; 7204 *lenp = (len - act_len); 7205 return (rsm->r_end); 7206 } 7207 /* We don't get out of this block. */ 7208 } 7209 /* 7210 * Here we retransmitted less than the whole thing which means we 7211 * have to split this into what was transmitted and what was not. 7212 */ 7213 nrsm = rack_alloc_full_limit(rack); 7214 if (nrsm == NULL) { 7215 /* 7216 * We can't get memory, so lets not proceed. 7217 */ 7218 *lenp = 0; 7219 return (0); 7220 } 7221 /* 7222 * So here we are going to take the original rsm and make it what we 7223 * retransmitted. nrsm will be the tail portion we did not 7224 * retransmit. For example say the chunk was 1, 11 (10 bytes). And 7225 * we retransmitted 5 bytes i.e. 1, 5. The original piece shrinks to 7226 * 1, 6 and the new piece will be 6, 11. 7227 */ 7228 rack_clone_rsm(rack, nrsm, rsm, c_end); 7229 nrsm->r_dupack = 0; 7230 rack_log_retran_reason(rack, nrsm, __LINE__, 0, 2); 7231 #ifndef INVARIANTS 7232 (void)RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm); 7233 #else 7234 insret = RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm); 7235 if (insret != NULL) { 7236 panic("Insert in rb tree of %p fails ret:%p rack:%p rsm:%p", 7237 nrsm, insret, rack, rsm); 7238 } 7239 #endif 7240 if (rsm->r_in_tmap) { 7241 TAILQ_INSERT_AFTER(&rack->r_ctl.rc_tmap, rsm, nrsm, r_tnext); 7242 nrsm->r_in_tmap = 1; 7243 } 7244 rsm->r_flags &= (~RACK_HAS_FIN); 7245 rack_update_rsm(tp, rack, rsm, ts, add_flag); 7246 /* Log a split of rsm into rsm and nrsm */ 7247 rack_log_map_chg(tp, rack, NULL, rsm, nrsm, MAP_SPLIT, 0, __LINE__); 7248 *lenp = 0; 7249 return (0); 7250 } 7251 7252 static void 7253 rack_log_output(struct tcpcb *tp, struct tcpopt *to, int32_t len, 7254 uint32_t seq_out, uint16_t th_flags, int32_t err, uint64_t cts, 7255 struct rack_sendmap *hintrsm, uint16_t add_flag, struct mbuf *s_mb, uint32_t s_moff, int hw_tls) 7256 { 7257 struct tcp_rack *rack; 7258 struct rack_sendmap *rsm, *nrsm, fe; 7259 #ifdef INVARIANTS 7260 struct rack_sendmap *insret; 7261 #endif 7262 register uint32_t snd_max, snd_una; 7263 7264 /* 7265 * Add to the RACK log of packets in flight or retransmitted. If 7266 * there is a TS option we will use the TS echoed, if not we will 7267 * grab a TS. 7268 * 7269 * Retransmissions will increment the count and move the ts to its 7270 * proper place. Note that if options do not include TS's then we 7271 * won't be able to effectively use the ACK for an RTT on a retran. 7272 * 7273 * Notes about r_start and r_end. Lets consider a send starting at 7274 * sequence 1 for 10 bytes. In such an example the r_start would be 7275 * 1 (starting sequence) but the r_end would be r_start+len i.e. 11. 7276 * This means that r_end is actually the first sequence for the next 7277 * slot (11). 7278 * 7279 */ 7280 /* 7281 * If err is set what do we do XXXrrs? should we not add the thing? 7282 * -- i.e. return if err != 0 or should we pretend we sent it? -- 7283 * i.e. proceed with add ** do this for now. 7284 */ 7285 INP_WLOCK_ASSERT(tp->t_inpcb); 7286 if (err) 7287 /* 7288 * We don't log errors -- we could but snd_max does not 7289 * advance in this case either. 7290 */ 7291 return; 7292 7293 if (th_flags & TH_RST) { 7294 /* 7295 * We don't log resets and we return immediately from 7296 * sending 7297 */ 7298 return; 7299 } 7300 rack = (struct tcp_rack *)tp->t_fb_ptr; 7301 snd_una = tp->snd_una; 7302 snd_max = tp->snd_max; 7303 if (th_flags & (TH_SYN | TH_FIN)) { 7304 /* 7305 * The call to rack_log_output is made before bumping 7306 * snd_max. This means we can record one extra byte on a SYN 7307 * or FIN if seq_out is adding more on and a FIN is present 7308 * (and we are not resending). 7309 */ 7310 if ((th_flags & TH_SYN) && (seq_out == tp->iss)) 7311 len++; 7312 if (th_flags & TH_FIN) 7313 len++; 7314 if (SEQ_LT(snd_max, tp->snd_nxt)) { 7315 /* 7316 * The add/update as not been done for the FIN/SYN 7317 * yet. 7318 */ 7319 snd_max = tp->snd_nxt; 7320 } 7321 } 7322 if (SEQ_LEQ((seq_out + len), snd_una)) { 7323 /* Are sending an old segment to induce an ack (keep-alive)? */ 7324 return; 7325 } 7326 if (SEQ_LT(seq_out, snd_una)) { 7327 /* huh? should we panic? */ 7328 uint32_t end; 7329 7330 end = seq_out + len; 7331 seq_out = snd_una; 7332 if (SEQ_GEQ(end, seq_out)) 7333 len = end - seq_out; 7334 else 7335 len = 0; 7336 } 7337 if (len == 0) { 7338 /* We don't log zero window probes */ 7339 return; 7340 } 7341 if (IN_FASTRECOVERY(tp->t_flags)) { 7342 rack->r_ctl.rc_prr_out += len; 7343 } 7344 /* First question is it a retransmission or new? */ 7345 if (seq_out == snd_max) { 7346 /* Its new */ 7347 again: 7348 rsm = rack_alloc(rack); 7349 if (rsm == NULL) { 7350 /* 7351 * Hmm out of memory and the tcb got destroyed while 7352 * we tried to wait. 7353 */ 7354 return; 7355 } 7356 if (th_flags & TH_FIN) { 7357 rsm->r_flags = RACK_HAS_FIN|add_flag; 7358 } else { 7359 rsm->r_flags = add_flag; 7360 } 7361 if (hw_tls) 7362 rsm->r_hw_tls = 1; 7363 rsm->r_tim_lastsent[0] = cts; 7364 rsm->r_rtr_cnt = 1; 7365 rsm->r_rtr_bytes = 0; 7366 if (th_flags & TH_SYN) { 7367 /* The data space is one beyond snd_una */ 7368 rsm->r_flags |= RACK_HAS_SYN; 7369 } 7370 rsm->r_start = seq_out; 7371 rsm->r_end = rsm->r_start + len; 7372 rsm->r_dupack = 0; 7373 /* 7374 * save off the mbuf location that 7375 * sndmbuf_noadv returned (which is 7376 * where we started copying from).. 7377 */ 7378 rsm->m = s_mb; 7379 rsm->soff = s_moff; 7380 /* 7381 * Here we do add in the len of send, since its not yet 7382 * reflected in in snduna <->snd_max 7383 */ 7384 rsm->r_fas = (ctf_flight_size(rack->rc_tp, 7385 rack->r_ctl.rc_sacked) + 7386 (rsm->r_end - rsm->r_start)); 7387 /* rsm->m will be NULL if RACK_HAS_SYN or RACK_HAS_FIN is set */ 7388 if (rsm->m) { 7389 if (rsm->m->m_len <= rsm->soff) { 7390 /* 7391 * XXXrrs Question, will this happen? 7392 * 7393 * If sbsndptr is set at the correct place 7394 * then s_moff should always be somewhere 7395 * within rsm->m. But if the sbsndptr was 7396 * off then that won't be true. If it occurs 7397 * we need to walkout to the correct location. 7398 */ 7399 struct mbuf *lm; 7400 7401 lm = rsm->m; 7402 while (lm->m_len <= rsm->soff) { 7403 rsm->soff -= lm->m_len; 7404 lm = lm->m_next; 7405 KASSERT(lm != NULL, ("%s rack:%p lm goes null orig_off:%u origmb:%p rsm->soff:%u", 7406 __func__, rack, s_moff, s_mb, rsm->soff)); 7407 } 7408 rsm->m = lm; 7409 } 7410 rsm->orig_m_len = rsm->m->m_len; 7411 } else 7412 rsm->orig_m_len = 0; 7413 rack_log_retran_reason(rack, rsm, __LINE__, 0, 2); 7414 /* Log a new rsm */ 7415 rack_log_map_chg(tp, rack, NULL, rsm, NULL, MAP_NEW, 0, __LINE__); 7416 #ifndef INVARIANTS 7417 (void)RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 7418 #else 7419 insret = RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 7420 if (insret != NULL) { 7421 panic("Insert in rb tree of %p fails ret:%p rack:%p rsm:%p", 7422 nrsm, insret, rack, rsm); 7423 } 7424 #endif 7425 TAILQ_INSERT_TAIL(&rack->r_ctl.rc_tmap, rsm, r_tnext); 7426 rsm->r_in_tmap = 1; 7427 /* 7428 * Special case detection, is there just a single 7429 * packet outstanding when we are not in recovery? 7430 * 7431 * If this is true mark it so. 7432 */ 7433 if ((IN_FASTRECOVERY(tp->t_flags) == 0) && 7434 (ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked) == ctf_fixed_maxseg(tp))) { 7435 struct rack_sendmap *prsm; 7436 7437 prsm = RB_PREV(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 7438 if (prsm) 7439 prsm->r_one_out_nr = 1; 7440 } 7441 return; 7442 } 7443 /* 7444 * If we reach here its a retransmission and we need to find it. 7445 */ 7446 memset(&fe, 0, sizeof(fe)); 7447 more: 7448 if (hintrsm && (hintrsm->r_start == seq_out)) { 7449 rsm = hintrsm; 7450 hintrsm = NULL; 7451 } else { 7452 /* No hints sorry */ 7453 rsm = NULL; 7454 } 7455 if ((rsm) && (rsm->r_start == seq_out)) { 7456 seq_out = rack_update_entry(tp, rack, rsm, cts, &len, add_flag); 7457 if (len == 0) { 7458 return; 7459 } else { 7460 goto more; 7461 } 7462 } 7463 /* Ok it was not the last pointer go through it the hard way. */ 7464 refind: 7465 fe.r_start = seq_out; 7466 rsm = RB_FIND(rack_rb_tree_head, &rack->r_ctl.rc_mtree, &fe); 7467 if (rsm) { 7468 if (rsm->r_start == seq_out) { 7469 seq_out = rack_update_entry(tp, rack, rsm, cts, &len, add_flag); 7470 if (len == 0) { 7471 return; 7472 } else { 7473 goto refind; 7474 } 7475 } 7476 if (SEQ_GEQ(seq_out, rsm->r_start) && SEQ_LT(seq_out, rsm->r_end)) { 7477 /* Transmitted within this piece */ 7478 /* 7479 * Ok we must split off the front and then let the 7480 * update do the rest 7481 */ 7482 nrsm = rack_alloc_full_limit(rack); 7483 if (nrsm == NULL) { 7484 rack_update_rsm(tp, rack, rsm, cts, add_flag); 7485 return; 7486 } 7487 /* 7488 * copy rsm to nrsm and then trim the front of rsm 7489 * to not include this part. 7490 */ 7491 rack_clone_rsm(rack, nrsm, rsm, seq_out); 7492 rack_log_map_chg(tp, rack, NULL, rsm, nrsm, MAP_SPLIT, 0, __LINE__); 7493 #ifndef INVARIANTS 7494 (void)RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm); 7495 #else 7496 insret = RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm); 7497 if (insret != NULL) { 7498 panic("Insert in rb tree of %p fails ret:%p rack:%p rsm:%p", 7499 nrsm, insret, rack, rsm); 7500 } 7501 #endif 7502 if (rsm->r_in_tmap) { 7503 TAILQ_INSERT_AFTER(&rack->r_ctl.rc_tmap, rsm, nrsm, r_tnext); 7504 nrsm->r_in_tmap = 1; 7505 } 7506 rsm->r_flags &= (~RACK_HAS_FIN); 7507 seq_out = rack_update_entry(tp, rack, nrsm, cts, &len, add_flag); 7508 if (len == 0) { 7509 return; 7510 } else if (len > 0) 7511 goto refind; 7512 } 7513 } 7514 /* 7515 * Hmm not found in map did they retransmit both old and on into the 7516 * new? 7517 */ 7518 if (seq_out == tp->snd_max) { 7519 goto again; 7520 } else if (SEQ_LT(seq_out, tp->snd_max)) { 7521 #ifdef INVARIANTS 7522 printf("seq_out:%u len:%d snd_una:%u snd_max:%u -- but rsm not found?\n", 7523 seq_out, len, tp->snd_una, tp->snd_max); 7524 printf("Starting Dump of all rack entries\n"); 7525 RB_FOREACH(rsm, rack_rb_tree_head, &rack->r_ctl.rc_mtree) { 7526 printf("rsm:%p start:%u end:%u\n", 7527 rsm, rsm->r_start, rsm->r_end); 7528 } 7529 printf("Dump complete\n"); 7530 panic("seq_out not found rack:%p tp:%p", 7531 rack, tp); 7532 #endif 7533 } else { 7534 #ifdef INVARIANTS 7535 /* 7536 * Hmm beyond sndmax? (only if we are using the new rtt-pack 7537 * flag) 7538 */ 7539 panic("seq_out:%u(%d) is beyond snd_max:%u tp:%p", 7540 seq_out, len, tp->snd_max, tp); 7541 #endif 7542 } 7543 } 7544 7545 /* 7546 * Record one of the RTT updates from an ack into 7547 * our sample structure. 7548 */ 7549 7550 static void 7551 tcp_rack_xmit_timer(struct tcp_rack *rack, int32_t rtt, uint32_t len, uint32_t us_rtt, 7552 int confidence, struct rack_sendmap *rsm, uint16_t rtrcnt) 7553 { 7554 if ((rack->r_ctl.rack_rs.rs_flags & RACK_RTT_EMPTY) || 7555 (rack->r_ctl.rack_rs.rs_rtt_lowest > rtt)) { 7556 rack->r_ctl.rack_rs.rs_rtt_lowest = rtt; 7557 } 7558 if ((rack->r_ctl.rack_rs.rs_flags & RACK_RTT_EMPTY) || 7559 (rack->r_ctl.rack_rs.rs_rtt_highest < rtt)) { 7560 rack->r_ctl.rack_rs.rs_rtt_highest = rtt; 7561 } 7562 if (rack->rc_tp->t_flags & TF_GPUTINPROG) { 7563 if (us_rtt < rack->r_ctl.rc_gp_lowrtt) 7564 rack->r_ctl.rc_gp_lowrtt = us_rtt; 7565 if (rack->rc_tp->snd_wnd > rack->r_ctl.rc_gp_high_rwnd) 7566 rack->r_ctl.rc_gp_high_rwnd = rack->rc_tp->snd_wnd; 7567 } 7568 if ((confidence == 1) && 7569 ((rsm == NULL) || 7570 (rsm->r_just_ret) || 7571 (rsm->r_one_out_nr && 7572 len < (ctf_fixed_maxseg(rack->rc_tp) * 2)))) { 7573 /* 7574 * If the rsm had a just return 7575 * hit it then we can't trust the 7576 * rtt measurement for buffer deterimination 7577 * Note that a confidence of 2, indicates 7578 * SACK'd which overrides the r_just_ret or 7579 * the r_one_out_nr. If it was a CUM-ACK and 7580 * we had only two outstanding, but get an 7581 * ack for only 1. Then that also lowers our 7582 * confidence. 7583 */ 7584 confidence = 0; 7585 } 7586 if ((rack->r_ctl.rack_rs.rs_flags & RACK_RTT_EMPTY) || 7587 (rack->r_ctl.rack_rs.rs_us_rtt > us_rtt)) { 7588 if (rack->r_ctl.rack_rs.confidence == 0) { 7589 /* 7590 * We take anything with no current confidence 7591 * saved. 7592 */ 7593 rack->r_ctl.rack_rs.rs_us_rtt = us_rtt; 7594 rack->r_ctl.rack_rs.confidence = confidence; 7595 rack->r_ctl.rack_rs.rs_us_rtrcnt = rtrcnt; 7596 } else if (confidence || rack->r_ctl.rack_rs.confidence) { 7597 /* 7598 * Once we have a confident number, 7599 * we can update it with a smaller 7600 * value since this confident number 7601 * may include the DSACK time until 7602 * the next segment (the second one) arrived. 7603 */ 7604 rack->r_ctl.rack_rs.rs_us_rtt = us_rtt; 7605 rack->r_ctl.rack_rs.confidence = confidence; 7606 rack->r_ctl.rack_rs.rs_us_rtrcnt = rtrcnt; 7607 } 7608 } 7609 rack_log_rtt_upd(rack->rc_tp, rack, us_rtt, len, rsm, confidence); 7610 rack->r_ctl.rack_rs.rs_flags = RACK_RTT_VALID; 7611 rack->r_ctl.rack_rs.rs_rtt_tot += rtt; 7612 rack->r_ctl.rack_rs.rs_rtt_cnt++; 7613 } 7614 7615 /* 7616 * Collect new round-trip time estimate 7617 * and update averages and current timeout. 7618 */ 7619 static void 7620 tcp_rack_xmit_timer_commit(struct tcp_rack *rack, struct tcpcb *tp) 7621 { 7622 int32_t delta; 7623 int32_t rtt; 7624 7625 if (rack->r_ctl.rack_rs.rs_flags & RACK_RTT_EMPTY) 7626 /* No valid sample */ 7627 return; 7628 if (rack->r_ctl.rc_rate_sample_method == USE_RTT_LOW) { 7629 /* We are to use the lowest RTT seen in a single ack */ 7630 rtt = rack->r_ctl.rack_rs.rs_rtt_lowest; 7631 } else if (rack->r_ctl.rc_rate_sample_method == USE_RTT_HIGH) { 7632 /* We are to use the highest RTT seen in a single ack */ 7633 rtt = rack->r_ctl.rack_rs.rs_rtt_highest; 7634 } else if (rack->r_ctl.rc_rate_sample_method == USE_RTT_AVG) { 7635 /* We are to use the average RTT seen in a single ack */ 7636 rtt = (int32_t)(rack->r_ctl.rack_rs.rs_rtt_tot / 7637 (uint64_t)rack->r_ctl.rack_rs.rs_rtt_cnt); 7638 } else { 7639 #ifdef INVARIANTS 7640 panic("Unknown rtt variant %d", rack->r_ctl.rc_rate_sample_method); 7641 #endif 7642 return; 7643 } 7644 if (rtt == 0) 7645 rtt = 1; 7646 if (rack->rc_gp_rtt_set == 0) { 7647 /* 7648 * With no RTT we have to accept 7649 * even one we are not confident of. 7650 */ 7651 rack->r_ctl.rc_gp_srtt = rack->r_ctl.rack_rs.rs_us_rtt; 7652 rack->rc_gp_rtt_set = 1; 7653 } else if (rack->r_ctl.rack_rs.confidence) { 7654 /* update the running gp srtt */ 7655 rack->r_ctl.rc_gp_srtt -= (rack->r_ctl.rc_gp_srtt/8); 7656 rack->r_ctl.rc_gp_srtt += rack->r_ctl.rack_rs.rs_us_rtt / 8; 7657 } 7658 if (rack->r_ctl.rack_rs.confidence) { 7659 /* 7660 * record the low and high for highly buffered path computation, 7661 * we only do this if we are confident (not a retransmission). 7662 */ 7663 if (rack->r_ctl.rc_highest_us_rtt < rack->r_ctl.rack_rs.rs_us_rtt) { 7664 rack->r_ctl.rc_highest_us_rtt = rack->r_ctl.rack_rs.rs_us_rtt; 7665 } 7666 if (rack->rc_highly_buffered == 0) { 7667 /* 7668 * Currently once we declare a path has 7669 * highly buffered there is no going 7670 * back, which may be a problem... 7671 */ 7672 if ((rack->r_ctl.rc_highest_us_rtt / rack->r_ctl.rc_lowest_us_rtt) > rack_hbp_thresh) { 7673 rack_log_rtt_shrinks(rack, rack->r_ctl.rack_rs.rs_us_rtt, 7674 rack->r_ctl.rc_highest_us_rtt, 7675 rack->r_ctl.rc_lowest_us_rtt, 7676 RACK_RTTS_SEEHBP); 7677 rack->rc_highly_buffered = 1; 7678 } 7679 } 7680 } 7681 if ((rack->r_ctl.rack_rs.confidence) || 7682 (rack->r_ctl.rack_rs.rs_us_rtrcnt == 1)) { 7683 /* 7684 * If we are highly confident of it <or> it was 7685 * never retransmitted we accept it as the last us_rtt. 7686 */ 7687 rack->r_ctl.rc_last_us_rtt = rack->r_ctl.rack_rs.rs_us_rtt; 7688 /* The lowest rtt can be set if its was not retransmited */ 7689 if (rack->r_ctl.rc_lowest_us_rtt > rack->r_ctl.rack_rs.rs_us_rtt) { 7690 rack->r_ctl.rc_lowest_us_rtt = rack->r_ctl.rack_rs.rs_us_rtt; 7691 if (rack->r_ctl.rc_lowest_us_rtt == 0) 7692 rack->r_ctl.rc_lowest_us_rtt = 1; 7693 } 7694 } 7695 rack = (struct tcp_rack *)tp->t_fb_ptr; 7696 if (tp->t_srtt != 0) { 7697 /* 7698 * We keep a simple srtt in microseconds, like our rtt 7699 * measurement. We don't need to do any tricks with shifting 7700 * etc. Instead we just add in 1/8th of the new measurement 7701 * and subtract out 1/8 of the old srtt. We do the same with 7702 * the variance after finding the absolute value of the 7703 * difference between this sample and the current srtt. 7704 */ 7705 delta = tp->t_srtt - rtt; 7706 /* Take off 1/8th of the current sRTT */ 7707 tp->t_srtt -= (tp->t_srtt >> 3); 7708 /* Add in 1/8th of the new RTT just measured */ 7709 tp->t_srtt += (rtt >> 3); 7710 if (tp->t_srtt <= 0) 7711 tp->t_srtt = 1; 7712 /* Now lets make the absolute value of the variance */ 7713 if (delta < 0) 7714 delta = -delta; 7715 /* Subtract out 1/8th */ 7716 tp->t_rttvar -= (tp->t_rttvar >> 3); 7717 /* Add in 1/8th of the new variance we just saw */ 7718 tp->t_rttvar += (delta >> 3); 7719 if (tp->t_rttvar <= 0) 7720 tp->t_rttvar = 1; 7721 if (tp->t_rttbest > tp->t_srtt + tp->t_rttvar) 7722 tp->t_rttbest = tp->t_srtt + tp->t_rttvar; 7723 } else { 7724 /* 7725 * No rtt measurement yet - use the unsmoothed rtt. Set the 7726 * variance to half the rtt (so our first retransmit happens 7727 * at 3*rtt). 7728 */ 7729 tp->t_srtt = rtt; 7730 tp->t_rttvar = rtt >> 1; 7731 tp->t_rttbest = tp->t_srtt + tp->t_rttvar; 7732 } 7733 rack->rc_srtt_measure_made = 1; 7734 KMOD_TCPSTAT_INC(tcps_rttupdated); 7735 tp->t_rttupdated++; 7736 #ifdef STATS 7737 if (rack_stats_gets_ms_rtt == 0) { 7738 /* Send in the microsecond rtt used for rxt timeout purposes */ 7739 stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_RTT, imax(0, rtt)); 7740 } else if (rack_stats_gets_ms_rtt == 1) { 7741 /* Send in the millisecond rtt used for rxt timeout purposes */ 7742 int32_t ms_rtt; 7743 7744 /* Round up */ 7745 ms_rtt = (rtt + HPTS_USEC_IN_MSEC - 1) / HPTS_USEC_IN_MSEC; 7746 stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_RTT, imax(0, ms_rtt)); 7747 } else if (rack_stats_gets_ms_rtt == 2) { 7748 /* Send in the millisecond rtt has close to the path RTT as we can get */ 7749 int32_t ms_rtt; 7750 7751 /* Round up */ 7752 ms_rtt = (rack->r_ctl.rack_rs.rs_us_rtt + HPTS_USEC_IN_MSEC - 1) / HPTS_USEC_IN_MSEC; 7753 stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_RTT, imax(0, ms_rtt)); 7754 } else { 7755 /* Send in the microsecond rtt has close to the path RTT as we can get */ 7756 stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_RTT, imax(0, rack->r_ctl.rack_rs.rs_us_rtt)); 7757 } 7758 7759 #endif 7760 /* 7761 * the retransmit should happen at rtt + 4 * rttvar. Because of the 7762 * way we do the smoothing, srtt and rttvar will each average +1/2 7763 * tick of bias. When we compute the retransmit timer, we want 1/2 7764 * tick of rounding and 1 extra tick because of +-1/2 tick 7765 * uncertainty in the firing of the timer. The bias will give us 7766 * exactly the 1.5 tick we need. But, because the bias is 7767 * statistical, we have to test that we don't drop below the minimum 7768 * feasible timer (which is 2 ticks). 7769 */ 7770 tp->t_rxtshift = 0; 7771 RACK_TCPT_RANGESET(tp->t_rxtcur, RACK_REXMTVAL(tp), 7772 max(rack_rto_min, rtt + 2), rack_rto_max, rack->r_ctl.timer_slop); 7773 rack_log_rtt_sample(rack, rtt); 7774 tp->t_softerror = 0; 7775 } 7776 7777 7778 static void 7779 rack_apply_updated_usrtt(struct tcp_rack *rack, uint32_t us_rtt, uint32_t us_cts) 7780 { 7781 /* 7782 * Apply to filter the inbound us-rtt at us_cts. 7783 */ 7784 uint32_t old_rtt; 7785 7786 old_rtt = get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt); 7787 apply_filter_min_small(&rack->r_ctl.rc_gp_min_rtt, 7788 us_rtt, us_cts); 7789 if (old_rtt > us_rtt) { 7790 /* We just hit a new lower rtt time */ 7791 rack_log_rtt_shrinks(rack, us_cts, old_rtt, 7792 __LINE__, RACK_RTTS_NEWRTT); 7793 /* 7794 * Only count it if its lower than what we saw within our 7795 * calculated range. 7796 */ 7797 if ((old_rtt - us_rtt) > rack_min_rtt_movement) { 7798 if (rack_probertt_lower_within && 7799 rack->rc_gp_dyn_mul && 7800 (rack->use_fixed_rate == 0) && 7801 (rack->rc_always_pace)) { 7802 /* 7803 * We are seeing a new lower rtt very close 7804 * to the time that we would have entered probe-rtt. 7805 * This is probably due to the fact that a peer flow 7806 * has entered probe-rtt. Lets go in now too. 7807 */ 7808 uint32_t val; 7809 7810 val = rack_probertt_lower_within * rack_time_between_probertt; 7811 val /= 100; 7812 if ((rack->in_probe_rtt == 0) && 7813 ((us_cts - rack->r_ctl.rc_lower_rtt_us_cts) >= (rack_time_between_probertt - val))) { 7814 rack_enter_probertt(rack, us_cts); 7815 } 7816 } 7817 rack->r_ctl.rc_lower_rtt_us_cts = us_cts; 7818 } 7819 } 7820 } 7821 7822 static int 7823 rack_update_rtt(struct tcpcb *tp, struct tcp_rack *rack, 7824 struct rack_sendmap *rsm, struct tcpopt *to, uint32_t cts, int32_t ack_type, tcp_seq th_ack) 7825 { 7826 uint32_t us_rtt; 7827 int32_t i, all; 7828 uint32_t t, len_acked; 7829 7830 if ((rsm->r_flags & RACK_ACKED) || 7831 (rsm->r_flags & RACK_WAS_ACKED)) 7832 /* Already done */ 7833 return (0); 7834 if (rsm->r_no_rtt_allowed) { 7835 /* Not allowed */ 7836 return (0); 7837 } 7838 if (ack_type == CUM_ACKED) { 7839 if (SEQ_GT(th_ack, rsm->r_end)) { 7840 len_acked = rsm->r_end - rsm->r_start; 7841 all = 1; 7842 } else { 7843 len_acked = th_ack - rsm->r_start; 7844 all = 0; 7845 } 7846 } else { 7847 len_acked = rsm->r_end - rsm->r_start; 7848 all = 0; 7849 } 7850 if (rsm->r_rtr_cnt == 1) { 7851 7852 t = cts - (uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt - 1)]; 7853 if ((int)t <= 0) 7854 t = 1; 7855 if (!tp->t_rttlow || tp->t_rttlow > t) 7856 tp->t_rttlow = t; 7857 if (!rack->r_ctl.rc_rack_min_rtt || 7858 SEQ_LT(t, rack->r_ctl.rc_rack_min_rtt)) { 7859 rack->r_ctl.rc_rack_min_rtt = t; 7860 if (rack->r_ctl.rc_rack_min_rtt == 0) { 7861 rack->r_ctl.rc_rack_min_rtt = 1; 7862 } 7863 } 7864 if (TSTMP_GT(tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time), rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)])) 7865 us_rtt = tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time) - (uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)]; 7866 else 7867 us_rtt = tcp_get_usecs(NULL) - (uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)]; 7868 if (us_rtt == 0) 7869 us_rtt = 1; 7870 if (CC_ALGO(tp)->rttsample != NULL) { 7871 /* Kick the RTT to the CC */ 7872 CC_ALGO(tp)->rttsample(tp->ccv, us_rtt, 1, rsm->r_fas); 7873 } 7874 rack_apply_updated_usrtt(rack, us_rtt, tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time)); 7875 if (ack_type == SACKED) { 7876 rack_log_rtt_sample_calc(rack, t, (uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt - 1)], cts, 1); 7877 tcp_rack_xmit_timer(rack, t + 1, len_acked, us_rtt, 2 , rsm, rsm->r_rtr_cnt); 7878 } else { 7879 /* 7880 * We need to setup what our confidence 7881 * is in this ack. 7882 * 7883 * If the rsm was app limited and it is 7884 * less than a mss in length (the end 7885 * of the send) then we have a gap. If we 7886 * were app limited but say we were sending 7887 * multiple MSS's then we are more confident 7888 * int it. 7889 * 7890 * When we are not app-limited then we see if 7891 * the rsm is being included in the current 7892 * measurement, we tell this by the app_limited_needs_set 7893 * flag. 7894 * 7895 * Note that being cwnd blocked is not applimited 7896 * as well as the pacing delay between packets which 7897 * are sending only 1 or 2 MSS's also will show up 7898 * in the RTT. We probably need to examine this algorithm 7899 * a bit more and enhance it to account for the delay 7900 * between rsm's. We could do that by saving off the 7901 * pacing delay of each rsm (in an rsm) and then 7902 * factoring that in somehow though for now I am 7903 * not sure how :) 7904 */ 7905 int calc_conf = 0; 7906 7907 if (rsm->r_flags & RACK_APP_LIMITED) { 7908 if (all && (len_acked <= ctf_fixed_maxseg(tp))) 7909 calc_conf = 0; 7910 else 7911 calc_conf = 1; 7912 } else if (rack->app_limited_needs_set == 0) { 7913 calc_conf = 1; 7914 } else { 7915 calc_conf = 0; 7916 } 7917 rack_log_rtt_sample_calc(rack, t, (uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt - 1)], cts, 2); 7918 tcp_rack_xmit_timer(rack, t + 1, len_acked, us_rtt, 7919 calc_conf, rsm, rsm->r_rtr_cnt); 7920 } 7921 if ((rsm->r_flags & RACK_TLP) && 7922 (!IN_FASTRECOVERY(tp->t_flags))) { 7923 /* Segment was a TLP and our retrans matched */ 7924 if (rack->r_ctl.rc_tlp_cwnd_reduce) { 7925 rack_cong_signal(tp, CC_NDUPACK, tp->snd_una, __LINE__); 7926 } 7927 } 7928 if (SEQ_LT(rack->r_ctl.rc_rack_tmit_time, (uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt - 1)])) { 7929 /* New more recent rack_tmit_time */ 7930 rack->r_ctl.rc_rack_tmit_time = (uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt - 1)]; 7931 rack->rc_rack_rtt = t; 7932 } 7933 return (1); 7934 } 7935 /* 7936 * We clear the soft/rxtshift since we got an ack. 7937 * There is no assurance we will call the commit() function 7938 * so we need to clear these to avoid incorrect handling. 7939 */ 7940 tp->t_rxtshift = 0; 7941 RACK_TCPT_RANGESET(tp->t_rxtcur, RACK_REXMTVAL(tp), 7942 rack_rto_min, rack_rto_max, rack->r_ctl.timer_slop); 7943 tp->t_softerror = 0; 7944 if (to && (to->to_flags & TOF_TS) && 7945 (ack_type == CUM_ACKED) && 7946 (to->to_tsecr) && 7947 ((rsm->r_flags & RACK_OVERMAX) == 0)) { 7948 /* 7949 * Now which timestamp does it match? In this block the ACK 7950 * must be coming from a previous transmission. 7951 */ 7952 for (i = 0; i < rsm->r_rtr_cnt; i++) { 7953 if (rack_ts_to_msec(rsm->r_tim_lastsent[i]) == to->to_tsecr) { 7954 t = cts - (uint32_t)rsm->r_tim_lastsent[i]; 7955 if ((int)t <= 0) 7956 t = 1; 7957 if (CC_ALGO(tp)->rttsample != NULL) { 7958 /* 7959 * Kick the RTT to the CC, here 7960 * we lie a bit in that we know the 7961 * retransmission is correct even though 7962 * we retransmitted. This is because 7963 * we match the timestamps. 7964 */ 7965 if (TSTMP_GT(tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time), rsm->r_tim_lastsent[i])) 7966 us_rtt = tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time) - (uint32_t)rsm->r_tim_lastsent[i]; 7967 else 7968 us_rtt = tcp_get_usecs(NULL) - (uint32_t)rsm->r_tim_lastsent[i]; 7969 CC_ALGO(tp)->rttsample(tp->ccv, us_rtt, 1, rsm->r_fas); 7970 } 7971 if ((i + 1) < rsm->r_rtr_cnt) { 7972 /* 7973 * The peer ack'd from our previous 7974 * transmission. We have a spurious 7975 * retransmission and thus we dont 7976 * want to update our rack_rtt. 7977 * 7978 * Hmm should there be a CC revert here? 7979 * 7980 */ 7981 return (0); 7982 } 7983 if (!tp->t_rttlow || tp->t_rttlow > t) 7984 tp->t_rttlow = t; 7985 if (!rack->r_ctl.rc_rack_min_rtt || SEQ_LT(t, rack->r_ctl.rc_rack_min_rtt)) { 7986 rack->r_ctl.rc_rack_min_rtt = t; 7987 if (rack->r_ctl.rc_rack_min_rtt == 0) { 7988 rack->r_ctl.rc_rack_min_rtt = 1; 7989 } 7990 } 7991 if (SEQ_LT(rack->r_ctl.rc_rack_tmit_time, 7992 (uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt - 1)])) { 7993 /* New more recent rack_tmit_time */ 7994 rack->r_ctl.rc_rack_tmit_time = (uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt - 1)]; 7995 rack->rc_rack_rtt = t; 7996 } 7997 rack_log_rtt_sample_calc(rack, t, (uint32_t)rsm->r_tim_lastsent[i], cts, 3); 7998 tcp_rack_xmit_timer(rack, t + 1, len_acked, t, 0, rsm, 7999 rsm->r_rtr_cnt); 8000 return (1); 8001 } 8002 } 8003 goto ts_not_found; 8004 } else { 8005 /* 8006 * Ok its a SACK block that we retransmitted. or a windows 8007 * machine without timestamps. We can tell nothing from the 8008 * time-stamp since its not there or the time the peer last 8009 * recieved a segment that moved forward its cum-ack point. 8010 */ 8011 ts_not_found: 8012 i = rsm->r_rtr_cnt - 1; 8013 t = cts - (uint32_t)rsm->r_tim_lastsent[i]; 8014 if ((int)t <= 0) 8015 t = 1; 8016 if (rack->r_ctl.rc_rack_min_rtt && SEQ_LT(t, rack->r_ctl.rc_rack_min_rtt)) { 8017 /* 8018 * We retransmitted and the ack came back in less 8019 * than the smallest rtt we have observed. We most 8020 * likely did an improper retransmit as outlined in 8021 * 6.2 Step 2 point 2 in the rack-draft so we 8022 * don't want to update our rack_rtt. We in 8023 * theory (in future) might want to think about reverting our 8024 * cwnd state but we won't for now. 8025 */ 8026 return (0); 8027 } else if (rack->r_ctl.rc_rack_min_rtt) { 8028 /* 8029 * We retransmitted it and the retransmit did the 8030 * job. 8031 */ 8032 if (!rack->r_ctl.rc_rack_min_rtt || 8033 SEQ_LT(t, rack->r_ctl.rc_rack_min_rtt)) { 8034 rack->r_ctl.rc_rack_min_rtt = t; 8035 if (rack->r_ctl.rc_rack_min_rtt == 0) { 8036 rack->r_ctl.rc_rack_min_rtt = 1; 8037 } 8038 } 8039 if (SEQ_LT(rack->r_ctl.rc_rack_tmit_time, (uint32_t)rsm->r_tim_lastsent[i])) { 8040 /* New more recent rack_tmit_time */ 8041 rack->r_ctl.rc_rack_tmit_time = (uint32_t)rsm->r_tim_lastsent[i]; 8042 rack->rc_rack_rtt = t; 8043 } 8044 return (1); 8045 } 8046 } 8047 return (0); 8048 } 8049 8050 /* 8051 * Mark the SACK_PASSED flag on all entries prior to rsm send wise. 8052 */ 8053 static void 8054 rack_log_sack_passed(struct tcpcb *tp, 8055 struct tcp_rack *rack, struct rack_sendmap *rsm) 8056 { 8057 struct rack_sendmap *nrsm; 8058 8059 nrsm = rsm; 8060 TAILQ_FOREACH_REVERSE_FROM(nrsm, &rack->r_ctl.rc_tmap, 8061 rack_head, r_tnext) { 8062 if (nrsm == rsm) { 8063 /* Skip orginal segment he is acked */ 8064 continue; 8065 } 8066 if (nrsm->r_flags & RACK_ACKED) { 8067 /* 8068 * Skip ack'd segments, though we 8069 * should not see these, since tmap 8070 * should not have ack'd segments. 8071 */ 8072 continue; 8073 } 8074 if (nrsm->r_flags & RACK_RWND_COLLAPSED) { 8075 /* 8076 * If the peer dropped the rwnd on 8077 * these then we don't worry about them. 8078 */ 8079 continue; 8080 } 8081 if (nrsm->r_flags & RACK_SACK_PASSED) { 8082 /* 8083 * We found one that is already marked 8084 * passed, we have been here before and 8085 * so all others below this are marked. 8086 */ 8087 break; 8088 } 8089 nrsm->r_flags |= RACK_SACK_PASSED; 8090 nrsm->r_flags &= ~RACK_WAS_SACKPASS; 8091 } 8092 } 8093 8094 static void 8095 rack_need_set_test(struct tcpcb *tp, 8096 struct tcp_rack *rack, 8097 struct rack_sendmap *rsm, 8098 tcp_seq th_ack, 8099 int line, 8100 int use_which) 8101 { 8102 8103 if ((tp->t_flags & TF_GPUTINPROG) && 8104 SEQ_GEQ(rsm->r_end, tp->gput_seq)) { 8105 /* 8106 * We were app limited, and this ack 8107 * butts up or goes beyond the point where we want 8108 * to start our next measurement. We need 8109 * to record the new gput_ts as here and 8110 * possibly update the start sequence. 8111 */ 8112 uint32_t seq, ts; 8113 8114 if (rsm->r_rtr_cnt > 1) { 8115 /* 8116 * This is a retransmit, can we 8117 * really make any assessment at this 8118 * point? We are not really sure of 8119 * the timestamp, is it this or the 8120 * previous transmission? 8121 * 8122 * Lets wait for something better that 8123 * is not retransmitted. 8124 */ 8125 return; 8126 } 8127 seq = tp->gput_seq; 8128 ts = tp->gput_ts; 8129 rack->app_limited_needs_set = 0; 8130 tp->gput_ts = tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time); 8131 /* Do we start at a new end? */ 8132 if ((use_which == RACK_USE_BEG) && 8133 SEQ_GEQ(rsm->r_start, tp->gput_seq)) { 8134 /* 8135 * When we get an ACK that just eats 8136 * up some of the rsm, we set RACK_USE_BEG 8137 * since whats at r_start (i.e. th_ack) 8138 * is left unacked and thats where the 8139 * measurement not starts. 8140 */ 8141 tp->gput_seq = rsm->r_start; 8142 rack->r_ctl.rc_gp_output_ts = rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)]; 8143 } 8144 if ((use_which == RACK_USE_END) && 8145 SEQ_GEQ(rsm->r_end, tp->gput_seq)) { 8146 /* 8147 * We use the end when the cumack 8148 * is moving forward and completely 8149 * deleting the rsm passed so basically 8150 * r_end holds th_ack. 8151 * 8152 * For SACK's we also want to use the end 8153 * since this piece just got sacked and 8154 * we want to target anything after that 8155 * in our measurement. 8156 */ 8157 tp->gput_seq = rsm->r_end; 8158 rack->r_ctl.rc_gp_output_ts = rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)]; 8159 } 8160 if (use_which == RACK_USE_END_OR_THACK) { 8161 /* 8162 * special case for ack moving forward, 8163 * not a sack, we need to move all the 8164 * way up to where this ack cum-ack moves 8165 * to. 8166 */ 8167 if (SEQ_GT(th_ack, rsm->r_end)) 8168 tp->gput_seq = th_ack; 8169 else 8170 tp->gput_seq = rsm->r_end; 8171 rack->r_ctl.rc_gp_output_ts = rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)]; 8172 } 8173 if (SEQ_GT(tp->gput_seq, tp->gput_ack)) { 8174 /* 8175 * We moved beyond this guy's range, re-calculate 8176 * the new end point. 8177 */ 8178 if (rack->rc_gp_filled == 0) { 8179 tp->gput_ack = tp->gput_seq + max(rc_init_window(rack), (MIN_GP_WIN * ctf_fixed_maxseg(tp))); 8180 } else { 8181 tp->gput_ack = tp->gput_seq + rack_get_measure_window(tp, rack); 8182 } 8183 } 8184 /* 8185 * We are moving the goal post, we may be able to clear the 8186 * measure_saw_probe_rtt flag. 8187 */ 8188 if ((rack->in_probe_rtt == 0) && 8189 (rack->measure_saw_probe_rtt) && 8190 (SEQ_GEQ(tp->gput_seq, rack->r_ctl.rc_probertt_sndmax_atexit))) 8191 rack->measure_saw_probe_rtt = 0; 8192 rack_log_pacing_delay_calc(rack, ts, tp->gput_ts, 8193 seq, tp->gput_seq, 0, 5, line, NULL, 0); 8194 if (rack->rc_gp_filled && 8195 ((tp->gput_ack - tp->gput_seq) < 8196 max(rc_init_window(rack), (MIN_GP_WIN * 8197 ctf_fixed_maxseg(tp))))) { 8198 uint32_t ideal_amount; 8199 8200 ideal_amount = rack_get_measure_window(tp, rack); 8201 if (ideal_amount > sbavail(&tp->t_inpcb->inp_socket->so_snd)) { 8202 /* 8203 * There is no sense of continuing this measurement 8204 * because its too small to gain us anything we 8205 * trust. Skip it and that way we can start a new 8206 * measurement quicker. 8207 */ 8208 tp->t_flags &= ~TF_GPUTINPROG; 8209 rack_log_pacing_delay_calc(rack, tp->gput_ack, tp->gput_seq, 8210 0, 0, 0, 6, __LINE__, NULL, 0); 8211 } else { 8212 /* 8213 * Reset the window further out. 8214 */ 8215 tp->gput_ack = tp->gput_seq + ideal_amount; 8216 } 8217 } 8218 } 8219 } 8220 8221 static inline int 8222 is_rsm_inside_declared_tlp_block(struct tcp_rack *rack, struct rack_sendmap *rsm) 8223 { 8224 if (SEQ_LT(rsm->r_end, rack->r_ctl.last_tlp_acked_start)) { 8225 /* Behind our TLP definition or right at */ 8226 return (0); 8227 } 8228 if (SEQ_GT(rsm->r_start, rack->r_ctl.last_tlp_acked_end)) { 8229 /* The start is beyond or right at our end of TLP definition */ 8230 return (0); 8231 } 8232 /* It has to be a sub-part of the original TLP recorded */ 8233 return (1); 8234 } 8235 8236 8237 static uint32_t 8238 rack_proc_sack_blk(struct tcpcb *tp, struct tcp_rack *rack, struct sackblk *sack, 8239 struct tcpopt *to, struct rack_sendmap **prsm, uint32_t cts, int *moved_two) 8240 { 8241 uint32_t start, end, changed = 0; 8242 struct rack_sendmap stack_map; 8243 struct rack_sendmap *rsm, *nrsm, fe, *prev, *next; 8244 #ifdef INVARIANTS 8245 struct rack_sendmap *insret; 8246 #endif 8247 int32_t used_ref = 1; 8248 int moved = 0; 8249 8250 start = sack->start; 8251 end = sack->end; 8252 rsm = *prsm; 8253 memset(&fe, 0, sizeof(fe)); 8254 do_rest_ofb: 8255 if ((rsm == NULL) || 8256 (SEQ_LT(end, rsm->r_start)) || 8257 (SEQ_GEQ(start, rsm->r_end)) || 8258 (SEQ_LT(start, rsm->r_start))) { 8259 /* 8260 * We are not in the right spot, 8261 * find the correct spot in the tree. 8262 */ 8263 used_ref = 0; 8264 fe.r_start = start; 8265 rsm = RB_FIND(rack_rb_tree_head, &rack->r_ctl.rc_mtree, &fe); 8266 moved++; 8267 } 8268 if (rsm == NULL) { 8269 /* TSNH */ 8270 goto out; 8271 } 8272 /* Ok we have an ACK for some piece of this rsm */ 8273 if (rsm->r_start != start) { 8274 if ((rsm->r_flags & RACK_ACKED) == 0) { 8275 /* 8276 * Before any splitting or hookery is 8277 * done is it a TLP of interest i.e. rxt? 8278 */ 8279 if ((rsm->r_flags & RACK_TLP) && 8280 (rsm->r_rtr_cnt > 1)) { 8281 /* 8282 * We are splitting a rxt TLP, check 8283 * if we need to save off the start/end 8284 */ 8285 if (rack->rc_last_tlp_acked_set && 8286 (is_rsm_inside_declared_tlp_block(rack, rsm))) { 8287 /* 8288 * We already turned this on since we are inside 8289 * the previous one was a partially sack now we 8290 * are getting another one (maybe all of it). 8291 * 8292 */ 8293 rack_log_dsack_event(rack, 10, __LINE__, rsm->r_start, rsm->r_end); 8294 /* 8295 * Lets make sure we have all of it though. 8296 */ 8297 if (SEQ_LT(rsm->r_start, rack->r_ctl.last_tlp_acked_start)) { 8298 rack->r_ctl.last_tlp_acked_start = rsm->r_start; 8299 rack_log_dsack_event(rack, 11, __LINE__, rack->r_ctl.last_tlp_acked_start, 8300 rack->r_ctl.last_tlp_acked_end); 8301 } 8302 if (SEQ_GT(rsm->r_end, rack->r_ctl.last_tlp_acked_end)) { 8303 rack->r_ctl.last_tlp_acked_end = rsm->r_end; 8304 rack_log_dsack_event(rack, 11, __LINE__, rack->r_ctl.last_tlp_acked_start, 8305 rack->r_ctl.last_tlp_acked_end); 8306 } 8307 } else { 8308 rack->r_ctl.last_tlp_acked_start = rsm->r_start; 8309 rack->r_ctl.last_tlp_acked_end = rsm->r_end; 8310 rack->rc_last_tlp_past_cumack = 0; 8311 rack->rc_last_tlp_acked_set = 1; 8312 rack_log_dsack_event(rack, 8, __LINE__, rsm->r_start, rsm->r_end); 8313 } 8314 } 8315 /** 8316 * Need to split this in two pieces the before and after, 8317 * the before remains in the map, the after must be 8318 * added. In other words we have: 8319 * rsm |--------------| 8320 * sackblk |-------> 8321 * rsm will become 8322 * rsm |---| 8323 * and nrsm will be the sacked piece 8324 * nrsm |----------| 8325 * 8326 * But before we start down that path lets 8327 * see if the sack spans over on top of 8328 * the next guy and it is already sacked. 8329 * 8330 */ 8331 next = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 8332 if (next && (next->r_flags & RACK_ACKED) && 8333 SEQ_GEQ(end, next->r_start)) { 8334 /** 8335 * So the next one is already acked, and 8336 * we can thus by hookery use our stack_map 8337 * to reflect the piece being sacked and 8338 * then adjust the two tree entries moving 8339 * the start and ends around. So we start like: 8340 * rsm |------------| (not-acked) 8341 * next |-----------| (acked) 8342 * sackblk |--------> 8343 * We want to end like so: 8344 * rsm |------| (not-acked) 8345 * next |-----------------| (acked) 8346 * nrsm |-----| 8347 * Where nrsm is a temporary stack piece we 8348 * use to update all the gizmos. 8349 */ 8350 /* Copy up our fudge block */ 8351 nrsm = &stack_map; 8352 memcpy(nrsm, rsm, sizeof(struct rack_sendmap)); 8353 /* Now adjust our tree blocks */ 8354 rsm->r_end = start; 8355 next->r_start = start; 8356 /* Now we must adjust back where next->m is */ 8357 rack_setup_offset_for_rsm(rsm, next); 8358 8359 /* We don't need to adjust rsm, it did not change */ 8360 /* Clear out the dup ack count of the remainder */ 8361 rsm->r_dupack = 0; 8362 rsm->r_just_ret = 0; 8363 rack_log_retran_reason(rack, rsm, __LINE__, 0, 2); 8364 /* Now lets make sure our fudge block is right */ 8365 nrsm->r_start = start; 8366 /* Now lets update all the stats and such */ 8367 rack_update_rtt(tp, rack, nrsm, to, cts, SACKED, 0); 8368 if (rack->app_limited_needs_set) 8369 rack_need_set_test(tp, rack, nrsm, tp->snd_una, __LINE__, RACK_USE_END); 8370 changed += (nrsm->r_end - nrsm->r_start); 8371 rack->r_ctl.rc_sacked += (nrsm->r_end - nrsm->r_start); 8372 if (nrsm->r_flags & RACK_SACK_PASSED) { 8373 rack->r_ctl.rc_reorder_ts = cts; 8374 } 8375 /* 8376 * Now we want to go up from rsm (the 8377 * one left un-acked) to the next one 8378 * in the tmap. We do this so when 8379 * we walk backwards we include marking 8380 * sack-passed on rsm (The one passed in 8381 * is skipped since it is generally called 8382 * on something sacked before removing it 8383 * from the tmap). 8384 */ 8385 if (rsm->r_in_tmap) { 8386 nrsm = TAILQ_NEXT(rsm, r_tnext); 8387 /* 8388 * Now that we have the next 8389 * one walk backwards from there. 8390 */ 8391 if (nrsm && nrsm->r_in_tmap) 8392 rack_log_sack_passed(tp, rack, nrsm); 8393 } 8394 /* Now are we done? */ 8395 if (SEQ_LT(end, next->r_end) || 8396 (end == next->r_end)) { 8397 /* Done with block */ 8398 goto out; 8399 } 8400 rack_log_map_chg(tp, rack, &stack_map, rsm, next, MAP_SACK_M1, end, __LINE__); 8401 counter_u64_add(rack_sack_used_next_merge, 1); 8402 /* Postion for the next block */ 8403 start = next->r_end; 8404 rsm = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, next); 8405 if (rsm == NULL) 8406 goto out; 8407 } else { 8408 /** 8409 * We can't use any hookery here, so we 8410 * need to split the map. We enter like 8411 * so: 8412 * rsm |--------| 8413 * sackblk |-----> 8414 * We will add the new block nrsm and 8415 * that will be the new portion, and then 8416 * fall through after reseting rsm. So we 8417 * split and look like this: 8418 * rsm |----| 8419 * sackblk |-----> 8420 * nrsm |---| 8421 * We then fall through reseting 8422 * rsm to nrsm, so the next block 8423 * picks it up. 8424 */ 8425 nrsm = rack_alloc_limit(rack, RACK_LIMIT_TYPE_SPLIT); 8426 if (nrsm == NULL) { 8427 /* 8428 * failed XXXrrs what can we do but loose the sack 8429 * info? 8430 */ 8431 goto out; 8432 } 8433 counter_u64_add(rack_sack_splits, 1); 8434 rack_clone_rsm(rack, nrsm, rsm, start); 8435 rsm->r_just_ret = 0; 8436 #ifndef INVARIANTS 8437 (void)RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm); 8438 #else 8439 insret = RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm); 8440 if (insret != NULL) { 8441 panic("Insert in rb tree of %p fails ret:%p rack:%p rsm:%p", 8442 nrsm, insret, rack, rsm); 8443 } 8444 #endif 8445 if (rsm->r_in_tmap) { 8446 TAILQ_INSERT_AFTER(&rack->r_ctl.rc_tmap, rsm, nrsm, r_tnext); 8447 nrsm->r_in_tmap = 1; 8448 } 8449 rack_log_map_chg(tp, rack, NULL, rsm, nrsm, MAP_SACK_M2, end, __LINE__); 8450 rsm->r_flags &= (~RACK_HAS_FIN); 8451 /* Position us to point to the new nrsm that starts the sack blk */ 8452 rsm = nrsm; 8453 } 8454 } else { 8455 /* Already sacked this piece */ 8456 counter_u64_add(rack_sack_skipped_acked, 1); 8457 moved++; 8458 if (end == rsm->r_end) { 8459 /* Done with block */ 8460 rsm = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 8461 goto out; 8462 } else if (SEQ_LT(end, rsm->r_end)) { 8463 /* A partial sack to a already sacked block */ 8464 moved++; 8465 rsm = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 8466 goto out; 8467 } else { 8468 /* 8469 * The end goes beyond this guy 8470 * reposition the start to the 8471 * next block. 8472 */ 8473 start = rsm->r_end; 8474 rsm = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 8475 if (rsm == NULL) 8476 goto out; 8477 } 8478 } 8479 } 8480 if (SEQ_GEQ(end, rsm->r_end)) { 8481 /** 8482 * The end of this block is either beyond this guy or right 8483 * at this guy. I.e.: 8484 * rsm --- |-----| 8485 * end |-----| 8486 * <or> 8487 * end |---------| 8488 */ 8489 if ((rsm->r_flags & RACK_ACKED) == 0) { 8490 /* 8491 * Is it a TLP of interest? 8492 */ 8493 if ((rsm->r_flags & RACK_TLP) && 8494 (rsm->r_rtr_cnt > 1)) { 8495 /* 8496 * We are splitting a rxt TLP, check 8497 * if we need to save off the start/end 8498 */ 8499 if (rack->rc_last_tlp_acked_set && 8500 (is_rsm_inside_declared_tlp_block(rack, rsm))) { 8501 /* 8502 * We already turned this on since we are inside 8503 * the previous one was a partially sack now we 8504 * are getting another one (maybe all of it). 8505 */ 8506 rack_log_dsack_event(rack, 10, __LINE__, rsm->r_start, rsm->r_end); 8507 /* 8508 * Lets make sure we have all of it though. 8509 */ 8510 if (SEQ_LT(rsm->r_start, rack->r_ctl.last_tlp_acked_start)) { 8511 rack->r_ctl.last_tlp_acked_start = rsm->r_start; 8512 rack_log_dsack_event(rack, 11, __LINE__, rack->r_ctl.last_tlp_acked_start, 8513 rack->r_ctl.last_tlp_acked_end); 8514 } 8515 if (SEQ_GT(rsm->r_end, rack->r_ctl.last_tlp_acked_end)) { 8516 rack->r_ctl.last_tlp_acked_end = rsm->r_end; 8517 rack_log_dsack_event(rack, 11, __LINE__, rack->r_ctl.last_tlp_acked_start, 8518 rack->r_ctl.last_tlp_acked_end); 8519 } 8520 } else { 8521 rack->r_ctl.last_tlp_acked_start = rsm->r_start; 8522 rack->r_ctl.last_tlp_acked_end = rsm->r_end; 8523 rack->rc_last_tlp_past_cumack = 0; 8524 rack->rc_last_tlp_acked_set = 1; 8525 rack_log_dsack_event(rack, 8, __LINE__, rsm->r_start, rsm->r_end); 8526 } 8527 } 8528 rack_update_rtt(tp, rack, rsm, to, cts, SACKED, 0); 8529 changed += (rsm->r_end - rsm->r_start); 8530 rack->r_ctl.rc_sacked += (rsm->r_end - rsm->r_start); 8531 if (rsm->r_in_tmap) /* should be true */ 8532 rack_log_sack_passed(tp, rack, rsm); 8533 /* Is Reordering occuring? */ 8534 if (rsm->r_flags & RACK_SACK_PASSED) { 8535 rsm->r_flags &= ~RACK_SACK_PASSED; 8536 rack->r_ctl.rc_reorder_ts = cts; 8537 } 8538 if (rack->app_limited_needs_set) 8539 rack_need_set_test(tp, rack, rsm, tp->snd_una, __LINE__, RACK_USE_END); 8540 rsm->r_ack_arrival = rack_to_usec_ts(&rack->r_ctl.act_rcv_time); 8541 rsm->r_flags |= RACK_ACKED; 8542 if (rsm->r_in_tmap) { 8543 TAILQ_REMOVE(&rack->r_ctl.rc_tmap, rsm, r_tnext); 8544 rsm->r_in_tmap = 0; 8545 } 8546 rack_log_map_chg(tp, rack, NULL, rsm, NULL, MAP_SACK_M3, end, __LINE__); 8547 } else { 8548 counter_u64_add(rack_sack_skipped_acked, 1); 8549 moved++; 8550 } 8551 if (end == rsm->r_end) { 8552 /* This block only - done, setup for next */ 8553 goto out; 8554 } 8555 /* 8556 * There is more not coverend by this rsm move on 8557 * to the next block in the RB tree. 8558 */ 8559 nrsm = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 8560 start = rsm->r_end; 8561 rsm = nrsm; 8562 if (rsm == NULL) 8563 goto out; 8564 goto do_rest_ofb; 8565 } 8566 /** 8567 * The end of this sack block is smaller than 8568 * our rsm i.e.: 8569 * rsm --- |-----| 8570 * end |--| 8571 */ 8572 if ((rsm->r_flags & RACK_ACKED) == 0) { 8573 /* 8574 * Is it a TLP of interest? 8575 */ 8576 if ((rsm->r_flags & RACK_TLP) && 8577 (rsm->r_rtr_cnt > 1)) { 8578 /* 8579 * We are splitting a rxt TLP, check 8580 * if we need to save off the start/end 8581 */ 8582 if (rack->rc_last_tlp_acked_set && 8583 (is_rsm_inside_declared_tlp_block(rack, rsm))) { 8584 /* 8585 * We already turned this on since we are inside 8586 * the previous one was a partially sack now we 8587 * are getting another one (maybe all of it). 8588 */ 8589 rack_log_dsack_event(rack, 10, __LINE__, rsm->r_start, rsm->r_end); 8590 /* 8591 * Lets make sure we have all of it though. 8592 */ 8593 if (SEQ_LT(rsm->r_start, rack->r_ctl.last_tlp_acked_start)) { 8594 rack->r_ctl.last_tlp_acked_start = rsm->r_start; 8595 rack_log_dsack_event(rack, 11, __LINE__, rack->r_ctl.last_tlp_acked_start, 8596 rack->r_ctl.last_tlp_acked_end); 8597 } 8598 if (SEQ_GT(rsm->r_end, rack->r_ctl.last_tlp_acked_end)) { 8599 rack->r_ctl.last_tlp_acked_end = rsm->r_end; 8600 rack_log_dsack_event(rack, 11, __LINE__, rack->r_ctl.last_tlp_acked_start, 8601 rack->r_ctl.last_tlp_acked_end); 8602 } 8603 } else { 8604 rack->r_ctl.last_tlp_acked_start = rsm->r_start; 8605 rack->r_ctl.last_tlp_acked_end = rsm->r_end; 8606 rack->rc_last_tlp_past_cumack = 0; 8607 rack->rc_last_tlp_acked_set = 1; 8608 rack_log_dsack_event(rack, 8, __LINE__, rsm->r_start, rsm->r_end); 8609 } 8610 } 8611 prev = RB_PREV(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 8612 if (prev && 8613 (prev->r_flags & RACK_ACKED)) { 8614 /** 8615 * Goal, we want the right remainder of rsm to shrink 8616 * in place and span from (rsm->r_start = end) to rsm->r_end. 8617 * We want to expand prev to go all the way 8618 * to prev->r_end <- end. 8619 * so in the tree we have before: 8620 * prev |--------| (acked) 8621 * rsm |-------| (non-acked) 8622 * sackblk |-| 8623 * We churn it so we end up with 8624 * prev |----------| (acked) 8625 * rsm |-----| (non-acked) 8626 * nrsm |-| (temporary) 8627 * 8628 * Note if either prev/rsm is a TLP we don't 8629 * do this. 8630 */ 8631 nrsm = &stack_map; 8632 memcpy(nrsm, rsm, sizeof(struct rack_sendmap)); 8633 prev->r_end = end; 8634 rsm->r_start = end; 8635 /* Now adjust nrsm (stack copy) to be 8636 * the one that is the small 8637 * piece that was "sacked". 8638 */ 8639 nrsm->r_end = end; 8640 rsm->r_dupack = 0; 8641 rack_log_retran_reason(rack, rsm, __LINE__, 0, 2); 8642 /* 8643 * Now that the rsm has had its start moved forward 8644 * lets go ahead and get its new place in the world. 8645 */ 8646 rack_setup_offset_for_rsm(prev, rsm); 8647 /* 8648 * Now nrsm is our new little piece 8649 * that is acked (which was merged 8650 * to prev). Update the rtt and changed 8651 * based on that. Also check for reordering. 8652 */ 8653 rack_update_rtt(tp, rack, nrsm, to, cts, SACKED, 0); 8654 if (rack->app_limited_needs_set) 8655 rack_need_set_test(tp, rack, nrsm, tp->snd_una, __LINE__, RACK_USE_END); 8656 changed += (nrsm->r_end - nrsm->r_start); 8657 rack->r_ctl.rc_sacked += (nrsm->r_end - nrsm->r_start); 8658 if (nrsm->r_flags & RACK_SACK_PASSED) { 8659 rack->r_ctl.rc_reorder_ts = cts; 8660 } 8661 rack_log_map_chg(tp, rack, prev, &stack_map, rsm, MAP_SACK_M4, end, __LINE__); 8662 rsm = prev; 8663 counter_u64_add(rack_sack_used_prev_merge, 1); 8664 } else { 8665 /** 8666 * This is the case where our previous 8667 * block is not acked either, so we must 8668 * split the block in two. 8669 */ 8670 nrsm = rack_alloc_limit(rack, RACK_LIMIT_TYPE_SPLIT); 8671 if (nrsm == NULL) { 8672 /* failed rrs what can we do but loose the sack info? */ 8673 goto out; 8674 } 8675 if ((rsm->r_flags & RACK_TLP) && 8676 (rsm->r_rtr_cnt > 1)) { 8677 /* 8678 * We are splitting a rxt TLP, check 8679 * if we need to save off the start/end 8680 */ 8681 if (rack->rc_last_tlp_acked_set && 8682 (is_rsm_inside_declared_tlp_block(rack, rsm))) { 8683 /* 8684 * We already turned this on since this block is inside 8685 * the previous one was a partially sack now we 8686 * are getting another one (maybe all of it). 8687 */ 8688 rack_log_dsack_event(rack, 10, __LINE__, rsm->r_start, rsm->r_end); 8689 /* 8690 * Lets make sure we have all of it though. 8691 */ 8692 if (SEQ_LT(rsm->r_start, rack->r_ctl.last_tlp_acked_start)) { 8693 rack->r_ctl.last_tlp_acked_start = rsm->r_start; 8694 rack_log_dsack_event(rack, 11, __LINE__, rack->r_ctl.last_tlp_acked_start, 8695 rack->r_ctl.last_tlp_acked_end); 8696 } 8697 if (SEQ_GT(rsm->r_end, rack->r_ctl.last_tlp_acked_end)) { 8698 rack->r_ctl.last_tlp_acked_end = rsm->r_end; 8699 rack_log_dsack_event(rack, 11, __LINE__, rack->r_ctl.last_tlp_acked_start, 8700 rack->r_ctl.last_tlp_acked_end); 8701 } 8702 } else { 8703 rack->r_ctl.last_tlp_acked_start = rsm->r_start; 8704 rack->r_ctl.last_tlp_acked_end = rsm->r_end; 8705 rack->rc_last_tlp_acked_set = 1; 8706 rack->rc_last_tlp_past_cumack = 0; 8707 rack_log_dsack_event(rack, 8, __LINE__, rsm->r_start, rsm->r_end); 8708 } 8709 } 8710 /** 8711 * In this case nrsm becomes 8712 * nrsm->r_start = end; 8713 * nrsm->r_end = rsm->r_end; 8714 * which is un-acked. 8715 * <and> 8716 * rsm->r_end = nrsm->r_start; 8717 * i.e. the remaining un-acked 8718 * piece is left on the left 8719 * hand side. 8720 * 8721 * So we start like this 8722 * rsm |----------| (not acked) 8723 * sackblk |---| 8724 * build it so we have 8725 * rsm |---| (acked) 8726 * nrsm |------| (not acked) 8727 */ 8728 counter_u64_add(rack_sack_splits, 1); 8729 rack_clone_rsm(rack, nrsm, rsm, end); 8730 rsm->r_flags &= (~RACK_HAS_FIN); 8731 rsm->r_just_ret = 0; 8732 #ifndef INVARIANTS 8733 (void)RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm); 8734 #else 8735 insret = RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm); 8736 if (insret != NULL) { 8737 panic("Insert in rb tree of %p fails ret:%p rack:%p rsm:%p", 8738 nrsm, insret, rack, rsm); 8739 } 8740 #endif 8741 if (rsm->r_in_tmap) { 8742 TAILQ_INSERT_AFTER(&rack->r_ctl.rc_tmap, rsm, nrsm, r_tnext); 8743 nrsm->r_in_tmap = 1; 8744 } 8745 nrsm->r_dupack = 0; 8746 rack_log_retran_reason(rack, nrsm, __LINE__, 0, 2); 8747 rack_update_rtt(tp, rack, rsm, to, cts, SACKED, 0); 8748 changed += (rsm->r_end - rsm->r_start); 8749 rack->r_ctl.rc_sacked += (rsm->r_end - rsm->r_start); 8750 if (rsm->r_in_tmap) /* should be true */ 8751 rack_log_sack_passed(tp, rack, rsm); 8752 /* Is Reordering occuring? */ 8753 if (rsm->r_flags & RACK_SACK_PASSED) { 8754 rsm->r_flags &= ~RACK_SACK_PASSED; 8755 rack->r_ctl.rc_reorder_ts = cts; 8756 } 8757 if (rack->app_limited_needs_set) 8758 rack_need_set_test(tp, rack, rsm, tp->snd_una, __LINE__, RACK_USE_END); 8759 rsm->r_ack_arrival = rack_to_usec_ts(&rack->r_ctl.act_rcv_time); 8760 rsm->r_flags |= RACK_ACKED; 8761 rack_log_map_chg(tp, rack, NULL, rsm, nrsm, MAP_SACK_M5, end, __LINE__); 8762 if (rsm->r_in_tmap) { 8763 TAILQ_REMOVE(&rack->r_ctl.rc_tmap, rsm, r_tnext); 8764 rsm->r_in_tmap = 0; 8765 } 8766 } 8767 } else if (start != end){ 8768 /* 8769 * The block was already acked. 8770 */ 8771 counter_u64_add(rack_sack_skipped_acked, 1); 8772 moved++; 8773 } 8774 out: 8775 if (rsm && 8776 ((rsm->r_flags & RACK_TLP) == 0) && 8777 (rsm->r_flags & RACK_ACKED)) { 8778 /* 8779 * Now can we merge where we worked 8780 * with either the previous or 8781 * next block? 8782 */ 8783 next = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 8784 while (next) { 8785 if (next->r_flags & RACK_TLP) 8786 break; 8787 if (next->r_flags & RACK_ACKED) { 8788 /* yep this and next can be merged */ 8789 rsm = rack_merge_rsm(rack, rsm, next); 8790 next = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 8791 } else 8792 break; 8793 } 8794 /* Now what about the previous? */ 8795 prev = RB_PREV(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 8796 while (prev) { 8797 if (prev->r_flags & RACK_TLP) 8798 break; 8799 if (prev->r_flags & RACK_ACKED) { 8800 /* yep the previous and this can be merged */ 8801 rsm = rack_merge_rsm(rack, prev, rsm); 8802 prev = RB_PREV(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 8803 } else 8804 break; 8805 } 8806 } 8807 if (used_ref == 0) { 8808 counter_u64_add(rack_sack_proc_all, 1); 8809 } else { 8810 counter_u64_add(rack_sack_proc_short, 1); 8811 } 8812 /* Save off the next one for quick reference. */ 8813 if (rsm) 8814 nrsm = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 8815 else 8816 nrsm = NULL; 8817 *prsm = rack->r_ctl.rc_sacklast = nrsm; 8818 /* Pass back the moved. */ 8819 *moved_two = moved; 8820 return (changed); 8821 } 8822 8823 static void inline 8824 rack_peer_reneges(struct tcp_rack *rack, struct rack_sendmap *rsm, tcp_seq th_ack) 8825 { 8826 struct rack_sendmap *tmap; 8827 8828 tmap = NULL; 8829 while (rsm && (rsm->r_flags & RACK_ACKED)) { 8830 /* Its no longer sacked, mark it so */ 8831 rack->r_ctl.rc_sacked -= (rsm->r_end - rsm->r_start); 8832 #ifdef INVARIANTS 8833 if (rsm->r_in_tmap) { 8834 panic("rack:%p rsm:%p flags:0x%x in tmap?", 8835 rack, rsm, rsm->r_flags); 8836 } 8837 #endif 8838 rsm->r_flags &= ~(RACK_ACKED|RACK_SACK_PASSED|RACK_WAS_SACKPASS); 8839 /* Rebuild it into our tmap */ 8840 if (tmap == NULL) { 8841 TAILQ_INSERT_HEAD(&rack->r_ctl.rc_tmap, rsm, r_tnext); 8842 tmap = rsm; 8843 } else { 8844 TAILQ_INSERT_AFTER(&rack->r_ctl.rc_tmap, tmap, rsm, r_tnext); 8845 tmap = rsm; 8846 } 8847 tmap->r_in_tmap = 1; 8848 rsm = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 8849 } 8850 /* 8851 * Now lets possibly clear the sack filter so we start 8852 * recognizing sacks that cover this area. 8853 */ 8854 sack_filter_clear(&rack->r_ctl.rack_sf, th_ack); 8855 8856 } 8857 8858 static void 8859 rack_do_decay(struct tcp_rack *rack) 8860 { 8861 struct timeval res; 8862 8863 #define timersub(tvp, uvp, vvp) \ 8864 do { \ 8865 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ 8866 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \ 8867 if ((vvp)->tv_usec < 0) { \ 8868 (vvp)->tv_sec--; \ 8869 (vvp)->tv_usec += 1000000; \ 8870 } \ 8871 } while (0) 8872 8873 timersub(&rack->r_ctl.act_rcv_time, &rack->r_ctl.rc_last_time_decay, &res); 8874 #undef timersub 8875 8876 rack->r_ctl.input_pkt++; 8877 if ((rack->rc_in_persist) || 8878 (res.tv_sec >= 1) || 8879 (rack->rc_tp->snd_max == rack->rc_tp->snd_una)) { 8880 /* 8881 * Check for decay of non-SAD, 8882 * we want all SAD detection metrics to 8883 * decay 1/4 per second (or more) passed. 8884 */ 8885 #ifdef NETFLIX_EXP_DETECTION 8886 uint32_t pkt_delta; 8887 8888 pkt_delta = rack->r_ctl.input_pkt - rack->r_ctl.saved_input_pkt; 8889 #endif 8890 /* Update our saved tracking values */ 8891 rack->r_ctl.saved_input_pkt = rack->r_ctl.input_pkt; 8892 rack->r_ctl.rc_last_time_decay = rack->r_ctl.act_rcv_time; 8893 /* Now do we escape without decay? */ 8894 #ifdef NETFLIX_EXP_DETECTION 8895 if (rack->rc_in_persist || 8896 (rack->rc_tp->snd_max == rack->rc_tp->snd_una) || 8897 (pkt_delta < tcp_sad_low_pps)){ 8898 /* 8899 * We don't decay idle connections 8900 * or ones that have a low input pps. 8901 */ 8902 return; 8903 } 8904 /* Decay the counters */ 8905 rack->r_ctl.ack_count = ctf_decay_count(rack->r_ctl.ack_count, 8906 tcp_sad_decay_val); 8907 rack->r_ctl.sack_count = ctf_decay_count(rack->r_ctl.sack_count, 8908 tcp_sad_decay_val); 8909 rack->r_ctl.sack_moved_extra = ctf_decay_count(rack->r_ctl.sack_moved_extra, 8910 tcp_sad_decay_val); 8911 rack->r_ctl.sack_noextra_move = ctf_decay_count(rack->r_ctl.sack_noextra_move, 8912 tcp_sad_decay_val); 8913 #endif 8914 } 8915 } 8916 8917 static void 8918 rack_process_to_cumack(struct tcpcb *tp, struct tcp_rack *rack, register uint32_t th_ack, uint32_t cts, struct tcpopt *to) 8919 { 8920 struct rack_sendmap *rsm; 8921 #ifdef INVARIANTS 8922 struct rack_sendmap *rm; 8923 #endif 8924 8925 /* 8926 * The ACK point is advancing to th_ack, we must drop off 8927 * the packets in the rack log and calculate any eligble 8928 * RTT's. 8929 */ 8930 rack->r_wanted_output = 1; 8931 8932 /* Tend any TLP that has been marked for 1/2 the seq space (its old) */ 8933 if ((rack->rc_last_tlp_acked_set == 1)&& 8934 (rack->rc_last_tlp_past_cumack == 1) && 8935 (SEQ_GT(rack->r_ctl.last_tlp_acked_start, th_ack))) { 8936 /* 8937 * We have reached the point where our last rack 8938 * tlp retransmit sequence is ahead of the cum-ack. 8939 * This can only happen when the cum-ack moves all 8940 * the way around (its been a full 2^^31+1 bytes 8941 * or more since we sent a retransmitted TLP). Lets 8942 * turn off the valid flag since its not really valid. 8943 * 8944 * Note since sack's also turn on this event we have 8945 * a complication, we have to wait to age it out until 8946 * the cum-ack is by the TLP before checking which is 8947 * what the next else clause does. 8948 */ 8949 rack_log_dsack_event(rack, 9, __LINE__, 8950 rack->r_ctl.last_tlp_acked_start, 8951 rack->r_ctl.last_tlp_acked_end); 8952 rack->rc_last_tlp_acked_set = 0; 8953 rack->rc_last_tlp_past_cumack = 0; 8954 } else if ((rack->rc_last_tlp_acked_set == 1) && 8955 (rack->rc_last_tlp_past_cumack == 0) && 8956 (SEQ_GEQ(th_ack, rack->r_ctl.last_tlp_acked_end))) { 8957 /* 8958 * It is safe to start aging TLP's out. 8959 */ 8960 rack->rc_last_tlp_past_cumack = 1; 8961 } 8962 /* We do the same for the tlp send seq as well */ 8963 if ((rack->rc_last_sent_tlp_seq_valid == 1) && 8964 (rack->rc_last_sent_tlp_past_cumack == 1) && 8965 (SEQ_GT(rack->r_ctl.last_sent_tlp_seq, th_ack))) { 8966 rack_log_dsack_event(rack, 9, __LINE__, 8967 rack->r_ctl.last_sent_tlp_seq, 8968 (rack->r_ctl.last_sent_tlp_seq + 8969 rack->r_ctl.last_sent_tlp_len)); 8970 rack->rc_last_sent_tlp_seq_valid = 0; 8971 rack->rc_last_sent_tlp_past_cumack = 0; 8972 } else if ((rack->rc_last_sent_tlp_seq_valid == 1) && 8973 (rack->rc_last_sent_tlp_past_cumack == 0) && 8974 (SEQ_GEQ(th_ack, rack->r_ctl.last_sent_tlp_seq))) { 8975 /* 8976 * It is safe to start aging TLP's send. 8977 */ 8978 rack->rc_last_sent_tlp_past_cumack = 1; 8979 } 8980 more: 8981 rsm = RB_MIN(rack_rb_tree_head, &rack->r_ctl.rc_mtree); 8982 if (rsm == NULL) { 8983 if ((th_ack - 1) == tp->iss) { 8984 /* 8985 * For the SYN incoming case we will not 8986 * have called tcp_output for the sending of 8987 * the SYN, so there will be no map. All 8988 * other cases should probably be a panic. 8989 */ 8990 return; 8991 } 8992 if (tp->t_flags & TF_SENTFIN) { 8993 /* if we sent a FIN we often will not have map */ 8994 return; 8995 } 8996 #ifdef INVARIANTS 8997 panic("No rack map tp:%p for state:%d ack:%u rack:%p snd_una:%u snd_max:%u snd_nxt:%u\n", 8998 tp, 8999 tp->t_state, th_ack, rack, 9000 tp->snd_una, tp->snd_max, tp->snd_nxt); 9001 #endif 9002 return; 9003 } 9004 if (SEQ_LT(th_ack, rsm->r_start)) { 9005 /* Huh map is missing this */ 9006 #ifdef INVARIANTS 9007 printf("Rack map starts at r_start:%u for th_ack:%u huh? ts:%d rs:%d\n", 9008 rsm->r_start, 9009 th_ack, tp->t_state, rack->r_state); 9010 #endif 9011 return; 9012 } 9013 rack_update_rtt(tp, rack, rsm, to, cts, CUM_ACKED, th_ack); 9014 9015 /* Now was it a retransmitted TLP? */ 9016 if ((rsm->r_flags & RACK_TLP) && 9017 (rsm->r_rtr_cnt > 1)) { 9018 /* 9019 * Yes, this rsm was a TLP and retransmitted, remember that 9020 * since if a DSACK comes back on this we don't want 9021 * to think of it as a reordered segment. This may 9022 * get updated again with possibly even other TLPs 9023 * in flight, but thats ok. Only when we don't send 9024 * a retransmitted TLP for 1/2 the sequences space 9025 * will it get turned off (above). 9026 */ 9027 if (rack->rc_last_tlp_acked_set && 9028 (is_rsm_inside_declared_tlp_block(rack, rsm))) { 9029 /* 9030 * We already turned this on since the end matches, 9031 * the previous one was a partially ack now we 9032 * are getting another one (maybe all of it). 9033 */ 9034 rack_log_dsack_event(rack, 10, __LINE__, rsm->r_start, rsm->r_end); 9035 /* 9036 * Lets make sure we have all of it though. 9037 */ 9038 if (SEQ_LT(rsm->r_start, rack->r_ctl.last_tlp_acked_start)) { 9039 rack->r_ctl.last_tlp_acked_start = rsm->r_start; 9040 rack_log_dsack_event(rack, 11, __LINE__, rack->r_ctl.last_tlp_acked_start, 9041 rack->r_ctl.last_tlp_acked_end); 9042 } 9043 if (SEQ_GT(rsm->r_end, rack->r_ctl.last_tlp_acked_end)) { 9044 rack->r_ctl.last_tlp_acked_end = rsm->r_end; 9045 rack_log_dsack_event(rack, 11, __LINE__, rack->r_ctl.last_tlp_acked_start, 9046 rack->r_ctl.last_tlp_acked_end); 9047 } 9048 } else { 9049 rack->rc_last_tlp_past_cumack = 1; 9050 rack->r_ctl.last_tlp_acked_start = rsm->r_start; 9051 rack->r_ctl.last_tlp_acked_end = rsm->r_end; 9052 rack->rc_last_tlp_acked_set = 1; 9053 rack_log_dsack_event(rack, 8, __LINE__, rsm->r_start, rsm->r_end); 9054 } 9055 } 9056 /* Now do we consume the whole thing? */ 9057 if (SEQ_GEQ(th_ack, rsm->r_end)) { 9058 /* Its all consumed. */ 9059 uint32_t left; 9060 uint8_t newly_acked; 9061 9062 rack_log_map_chg(tp, rack, NULL, rsm, NULL, MAP_FREE, rsm->r_end, __LINE__); 9063 rack->r_ctl.rc_holes_rxt -= rsm->r_rtr_bytes; 9064 rsm->r_rtr_bytes = 0; 9065 /* Record the time of highest cumack sent */ 9066 rack->r_ctl.rc_gp_cumack_ts = rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)]; 9067 #ifndef INVARIANTS 9068 (void)RB_REMOVE(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 9069 #else 9070 rm = RB_REMOVE(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 9071 if (rm != rsm) { 9072 panic("removing head in rack:%p rsm:%p rm:%p", 9073 rack, rsm, rm); 9074 } 9075 #endif 9076 if (rsm->r_in_tmap) { 9077 TAILQ_REMOVE(&rack->r_ctl.rc_tmap, rsm, r_tnext); 9078 rsm->r_in_tmap = 0; 9079 } 9080 newly_acked = 1; 9081 if (rsm->r_flags & RACK_ACKED) { 9082 /* 9083 * It was acked on the scoreboard -- remove 9084 * it from total 9085 */ 9086 rack->r_ctl.rc_sacked -= (rsm->r_end - rsm->r_start); 9087 newly_acked = 0; 9088 } else if (rsm->r_flags & RACK_SACK_PASSED) { 9089 /* 9090 * There are segments ACKED on the 9091 * scoreboard further up. We are seeing 9092 * reordering. 9093 */ 9094 rsm->r_flags &= ~RACK_SACK_PASSED; 9095 rsm->r_ack_arrival = rack_to_usec_ts(&rack->r_ctl.act_rcv_time); 9096 rsm->r_flags |= RACK_ACKED; 9097 rack->r_ctl.rc_reorder_ts = cts; 9098 if (rack->r_ent_rec_ns) { 9099 /* 9100 * We have sent no more, and we saw an sack 9101 * then ack arrive. 9102 */ 9103 rack->r_might_revert = 1; 9104 } 9105 } 9106 if ((rsm->r_flags & RACK_TO_REXT) && 9107 (tp->t_flags & TF_RCVD_TSTMP) && 9108 (to->to_flags & TOF_TS) && 9109 (to->to_tsecr != 0) && 9110 (tp->t_flags & TF_PREVVALID)) { 9111 /* 9112 * We can use the timestamp to see 9113 * if this retransmission was from the 9114 * first transmit. If so we made a mistake. 9115 */ 9116 tp->t_flags &= ~TF_PREVVALID; 9117 if (to->to_tsecr == rack_ts_to_msec(rsm->r_tim_lastsent[0])) { 9118 /* The first transmit is what this ack is for */ 9119 rack_cong_signal(tp, CC_RTO_ERR, th_ack, __LINE__); 9120 } 9121 } 9122 left = th_ack - rsm->r_end; 9123 if (rack->app_limited_needs_set && newly_acked) 9124 rack_need_set_test(tp, rack, rsm, th_ack, __LINE__, RACK_USE_END_OR_THACK); 9125 /* Free back to zone */ 9126 rack_free(rack, rsm); 9127 if (left) { 9128 goto more; 9129 } 9130 /* Check for reneging */ 9131 rsm = RB_MIN(rack_rb_tree_head, &rack->r_ctl.rc_mtree); 9132 if (rsm && (rsm->r_flags & RACK_ACKED) && (th_ack == rsm->r_start)) { 9133 /* 9134 * The peer has moved snd_una up to 9135 * the edge of this send, i.e. one 9136 * that it had previously acked. The only 9137 * way that can be true if the peer threw 9138 * away data (space issues) that it had 9139 * previously sacked (else it would have 9140 * given us snd_una up to (rsm->r_end). 9141 * We need to undo the acked markings here. 9142 * 9143 * Note we have to look to make sure th_ack is 9144 * our rsm->r_start in case we get an old ack 9145 * where th_ack is behind snd_una. 9146 */ 9147 rack_peer_reneges(rack, rsm, th_ack); 9148 } 9149 return; 9150 } 9151 if (rsm->r_flags & RACK_ACKED) { 9152 /* 9153 * It was acked on the scoreboard -- remove it from 9154 * total for the part being cum-acked. 9155 */ 9156 rack->r_ctl.rc_sacked -= (th_ack - rsm->r_start); 9157 } 9158 /* 9159 * Clear the dup ack count for 9160 * the piece that remains. 9161 */ 9162 rsm->r_dupack = 0; 9163 rack_log_retran_reason(rack, rsm, __LINE__, 0, 2); 9164 if (rsm->r_rtr_bytes) { 9165 /* 9166 * It was retransmitted adjust the 9167 * sack holes for what was acked. 9168 */ 9169 int ack_am; 9170 9171 ack_am = (th_ack - rsm->r_start); 9172 if (ack_am >= rsm->r_rtr_bytes) { 9173 rack->r_ctl.rc_holes_rxt -= ack_am; 9174 rsm->r_rtr_bytes -= ack_am; 9175 } 9176 } 9177 /* 9178 * Update where the piece starts and record 9179 * the time of send of highest cumack sent. 9180 */ 9181 rack->r_ctl.rc_gp_cumack_ts = rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)]; 9182 rack_log_map_chg(tp, rack, NULL, rsm, NULL, MAP_TRIM_HEAD, th_ack, __LINE__); 9183 /* Now we need to move our offset forward too */ 9184 if (rsm->m && (rsm->orig_m_len != rsm->m->m_len)) { 9185 /* Fix up the orig_m_len and possibly the mbuf offset */ 9186 rack_adjust_orig_mlen(rsm); 9187 } 9188 rsm->soff += (th_ack - rsm->r_start); 9189 rsm->r_start = th_ack; 9190 /* Now do we need to move the mbuf fwd too? */ 9191 if (rsm->m) { 9192 while (rsm->soff >= rsm->m->m_len) { 9193 rsm->soff -= rsm->m->m_len; 9194 rsm->m = rsm->m->m_next; 9195 KASSERT((rsm->m != NULL), 9196 (" nrsm:%p hit at soff:%u null m", 9197 rsm, rsm->soff)); 9198 } 9199 rsm->orig_m_len = rsm->m->m_len; 9200 } 9201 if (rack->app_limited_needs_set) 9202 rack_need_set_test(tp, rack, rsm, tp->snd_una, __LINE__, RACK_USE_BEG); 9203 } 9204 9205 static void 9206 rack_handle_might_revert(struct tcpcb *tp, struct tcp_rack *rack) 9207 { 9208 struct rack_sendmap *rsm; 9209 int sack_pass_fnd = 0; 9210 9211 if (rack->r_might_revert) { 9212 /* 9213 * Ok we have reordering, have not sent anything, we 9214 * might want to revert the congestion state if nothing 9215 * further has SACK_PASSED on it. Lets check. 9216 * 9217 * We also get here when we have DSACKs come in for 9218 * all the data that we FR'd. Note that a rxt or tlp 9219 * timer clears this from happening. 9220 */ 9221 9222 TAILQ_FOREACH(rsm, &rack->r_ctl.rc_tmap, r_tnext) { 9223 if (rsm->r_flags & RACK_SACK_PASSED) { 9224 sack_pass_fnd = 1; 9225 break; 9226 } 9227 } 9228 if (sack_pass_fnd == 0) { 9229 /* 9230 * We went into recovery 9231 * incorrectly due to reordering! 9232 */ 9233 int orig_cwnd; 9234 9235 rack->r_ent_rec_ns = 0; 9236 orig_cwnd = tp->snd_cwnd; 9237 tp->snd_ssthresh = rack->r_ctl.rc_ssthresh_at_erec; 9238 tp->snd_recover = tp->snd_una; 9239 rack_log_to_prr(rack, 14, orig_cwnd, __LINE__); 9240 EXIT_RECOVERY(tp->t_flags); 9241 } 9242 rack->r_might_revert = 0; 9243 } 9244 } 9245 9246 #ifdef NETFLIX_EXP_DETECTION 9247 static void 9248 rack_do_detection(struct tcpcb *tp, struct tcp_rack *rack, uint32_t bytes_this_ack, uint32_t segsiz) 9249 { 9250 if ((rack->do_detection || tcp_force_detection) && 9251 tcp_sack_to_ack_thresh && 9252 tcp_sack_to_move_thresh && 9253 ((rack->r_ctl.rc_num_maps_alloced > tcp_map_minimum) || rack->sack_attack_disable)) { 9254 /* 9255 * We have thresholds set to find 9256 * possible attackers and disable sack. 9257 * Check them. 9258 */ 9259 uint64_t ackratio, moveratio, movetotal; 9260 9261 /* Log detecting */ 9262 rack_log_sad(rack, 1); 9263 ackratio = (uint64_t)(rack->r_ctl.sack_count); 9264 ackratio *= (uint64_t)(1000); 9265 if (rack->r_ctl.ack_count) 9266 ackratio /= (uint64_t)(rack->r_ctl.ack_count); 9267 else { 9268 /* We really should not hit here */ 9269 ackratio = 1000; 9270 } 9271 if ((rack->sack_attack_disable == 0) && 9272 (ackratio > rack_highest_sack_thresh_seen)) 9273 rack_highest_sack_thresh_seen = (uint32_t)ackratio; 9274 movetotal = rack->r_ctl.sack_moved_extra; 9275 movetotal += rack->r_ctl.sack_noextra_move; 9276 moveratio = rack->r_ctl.sack_moved_extra; 9277 moveratio *= (uint64_t)1000; 9278 if (movetotal) 9279 moveratio /= movetotal; 9280 else { 9281 /* No moves, thats pretty good */ 9282 moveratio = 0; 9283 } 9284 if ((rack->sack_attack_disable == 0) && 9285 (moveratio > rack_highest_move_thresh_seen)) 9286 rack_highest_move_thresh_seen = (uint32_t)moveratio; 9287 if (rack->sack_attack_disable == 0) { 9288 if ((ackratio > tcp_sack_to_ack_thresh) && 9289 (moveratio > tcp_sack_to_move_thresh)) { 9290 /* Disable sack processing */ 9291 rack->sack_attack_disable = 1; 9292 if (rack->r_rep_attack == 0) { 9293 rack->r_rep_attack = 1; 9294 counter_u64_add(rack_sack_attacks_detected, 1); 9295 } 9296 if (tcp_attack_on_turns_on_logging) { 9297 /* 9298 * Turn on logging, used for debugging 9299 * false positives. 9300 */ 9301 rack->rc_tp->t_logstate = tcp_attack_on_turns_on_logging; 9302 } 9303 /* Clamp the cwnd at flight size */ 9304 rack->r_ctl.rc_saved_cwnd = rack->rc_tp->snd_cwnd; 9305 rack->rc_tp->snd_cwnd = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 9306 rack_log_sad(rack, 2); 9307 } 9308 } else { 9309 /* We are sack-disabled check for false positives */ 9310 if ((ackratio <= tcp_restoral_thresh) || 9311 (rack->r_ctl.rc_num_maps_alloced < tcp_map_minimum)) { 9312 rack->sack_attack_disable = 0; 9313 rack_log_sad(rack, 3); 9314 /* Restart counting */ 9315 rack->r_ctl.sack_count = 0; 9316 rack->r_ctl.sack_moved_extra = 0; 9317 rack->r_ctl.sack_noextra_move = 1; 9318 rack->r_ctl.ack_count = max(1, 9319 (bytes_this_ack / segsiz)); 9320 9321 if (rack->r_rep_reverse == 0) { 9322 rack->r_rep_reverse = 1; 9323 counter_u64_add(rack_sack_attacks_reversed, 1); 9324 } 9325 /* Restore the cwnd */ 9326 if (rack->r_ctl.rc_saved_cwnd > rack->rc_tp->snd_cwnd) 9327 rack->rc_tp->snd_cwnd = rack->r_ctl.rc_saved_cwnd; 9328 } 9329 } 9330 } 9331 } 9332 #endif 9333 9334 static int 9335 rack_note_dsack(struct tcp_rack *rack, tcp_seq start, tcp_seq end) 9336 { 9337 9338 uint32_t am, l_end; 9339 int was_tlp = 0; 9340 9341 if (SEQ_GT(end, start)) 9342 am = end - start; 9343 else 9344 am = 0; 9345 if ((rack->rc_last_tlp_acked_set ) && 9346 (SEQ_GEQ(start, rack->r_ctl.last_tlp_acked_start)) && 9347 (SEQ_LEQ(end, rack->r_ctl.last_tlp_acked_end))) { 9348 /* 9349 * The DSACK is because of a TLP which we don't 9350 * do anything with the reordering window over since 9351 * it was not reordering that caused the DSACK but 9352 * our previous retransmit TLP. 9353 */ 9354 rack_log_dsack_event(rack, 7, __LINE__, start, end); 9355 was_tlp = 1; 9356 goto skip_dsack_round; 9357 } 9358 if (rack->rc_last_sent_tlp_seq_valid) { 9359 l_end = rack->r_ctl.last_sent_tlp_seq + rack->r_ctl.last_sent_tlp_len; 9360 if (SEQ_GEQ(start, rack->r_ctl.last_sent_tlp_seq) && 9361 (SEQ_LEQ(end, l_end))) { 9362 /* 9363 * This dsack is from the last sent TLP, ignore it 9364 * for reordering purposes. 9365 */ 9366 rack_log_dsack_event(rack, 7, __LINE__, start, end); 9367 was_tlp = 1; 9368 goto skip_dsack_round; 9369 } 9370 } 9371 if (rack->rc_dsack_round_seen == 0) { 9372 rack->rc_dsack_round_seen = 1; 9373 rack->r_ctl.dsack_round_end = rack->rc_tp->snd_max; 9374 rack->r_ctl.num_dsack++; 9375 rack->r_ctl.dsack_persist = 16; /* 16 is from the standard */ 9376 rack_log_dsack_event(rack, 2, __LINE__, 0, 0); 9377 } 9378 skip_dsack_round: 9379 /* 9380 * We keep track of how many DSACK blocks we get 9381 * after a recovery incident. 9382 */ 9383 rack->r_ctl.dsack_byte_cnt += am; 9384 if (!IN_FASTRECOVERY(rack->rc_tp->t_flags) && 9385 rack->r_ctl.retran_during_recovery && 9386 (rack->r_ctl.dsack_byte_cnt >= rack->r_ctl.retran_during_recovery)) { 9387 /* 9388 * False recovery most likely culprit is reordering. If 9389 * nothing else is missing we need to revert. 9390 */ 9391 rack->r_might_revert = 1; 9392 rack_handle_might_revert(rack->rc_tp, rack); 9393 rack->r_might_revert = 0; 9394 rack->r_ctl.retran_during_recovery = 0; 9395 rack->r_ctl.dsack_byte_cnt = 0; 9396 } 9397 return (was_tlp); 9398 } 9399 9400 static void 9401 rack_update_prr(struct tcpcb *tp, struct tcp_rack *rack, uint32_t changed, tcp_seq th_ack) 9402 { 9403 /* Deal with changed and PRR here (in recovery only) */ 9404 uint32_t pipe, snd_una; 9405 9406 rack->r_ctl.rc_prr_delivered += changed; 9407 9408 if (sbavail(&rack->rc_inp->inp_socket->so_snd) <= (tp->snd_max - tp->snd_una)) { 9409 /* 9410 * It is all outstanding, we are application limited 9411 * and thus we don't need more room to send anything. 9412 * Note we use tp->snd_una here and not th_ack because 9413 * the data as yet not been cut from the sb. 9414 */ 9415 rack->r_ctl.rc_prr_sndcnt = 0; 9416 return; 9417 } 9418 /* Compute prr_sndcnt */ 9419 if (SEQ_GT(tp->snd_una, th_ack)) { 9420 snd_una = tp->snd_una; 9421 } else { 9422 snd_una = th_ack; 9423 } 9424 pipe = ((tp->snd_max - snd_una) - rack->r_ctl.rc_sacked) + rack->r_ctl.rc_holes_rxt; 9425 if (pipe > tp->snd_ssthresh) { 9426 long sndcnt; 9427 9428 sndcnt = rack->r_ctl.rc_prr_delivered * tp->snd_ssthresh; 9429 if (rack->r_ctl.rc_prr_recovery_fs > 0) 9430 sndcnt /= (long)rack->r_ctl.rc_prr_recovery_fs; 9431 else { 9432 rack->r_ctl.rc_prr_sndcnt = 0; 9433 rack_log_to_prr(rack, 9, 0, __LINE__); 9434 sndcnt = 0; 9435 } 9436 sndcnt++; 9437 if (sndcnt > (long)rack->r_ctl.rc_prr_out) 9438 sndcnt -= rack->r_ctl.rc_prr_out; 9439 else 9440 sndcnt = 0; 9441 rack->r_ctl.rc_prr_sndcnt = sndcnt; 9442 rack_log_to_prr(rack, 10, 0, __LINE__); 9443 } else { 9444 uint32_t limit; 9445 9446 if (rack->r_ctl.rc_prr_delivered > rack->r_ctl.rc_prr_out) 9447 limit = (rack->r_ctl.rc_prr_delivered - rack->r_ctl.rc_prr_out); 9448 else 9449 limit = 0; 9450 if (changed > limit) 9451 limit = changed; 9452 limit += ctf_fixed_maxseg(tp); 9453 if (tp->snd_ssthresh > pipe) { 9454 rack->r_ctl.rc_prr_sndcnt = min((tp->snd_ssthresh - pipe), limit); 9455 rack_log_to_prr(rack, 11, 0, __LINE__); 9456 } else { 9457 rack->r_ctl.rc_prr_sndcnt = min(0, limit); 9458 rack_log_to_prr(rack, 12, 0, __LINE__); 9459 } 9460 } 9461 } 9462 9463 static void 9464 rack_log_ack(struct tcpcb *tp, struct tcpopt *to, struct tcphdr *th, int entered_recovery, int dup_ack_struck) 9465 { 9466 uint32_t changed; 9467 struct tcp_rack *rack; 9468 struct rack_sendmap *rsm; 9469 struct sackblk sack, sack_blocks[TCP_MAX_SACK + 1]; 9470 register uint32_t th_ack; 9471 int32_t i, j, k, num_sack_blks = 0; 9472 uint32_t cts, acked, ack_point; 9473 int loop_start = 0, moved_two = 0; 9474 uint32_t tsused; 9475 9476 9477 INP_WLOCK_ASSERT(tp->t_inpcb); 9478 if (tcp_get_flags(th) & TH_RST) { 9479 /* We don't log resets */ 9480 return; 9481 } 9482 rack = (struct tcp_rack *)tp->t_fb_ptr; 9483 cts = tcp_get_usecs(NULL); 9484 rsm = RB_MIN(rack_rb_tree_head, &rack->r_ctl.rc_mtree); 9485 changed = 0; 9486 th_ack = th->th_ack; 9487 if (rack->sack_attack_disable == 0) 9488 rack_do_decay(rack); 9489 if (BYTES_THIS_ACK(tp, th) >= ctf_fixed_maxseg(rack->rc_tp)) { 9490 /* 9491 * You only get credit for 9492 * MSS and greater (and you get extra 9493 * credit for larger cum-ack moves). 9494 */ 9495 int ac; 9496 9497 ac = BYTES_THIS_ACK(tp, th) / ctf_fixed_maxseg(rack->rc_tp); 9498 rack->r_ctl.ack_count += ac; 9499 counter_u64_add(rack_ack_total, ac); 9500 } 9501 if (rack->r_ctl.ack_count > 0xfff00000) { 9502 /* 9503 * reduce the number to keep us under 9504 * a uint32_t. 9505 */ 9506 rack->r_ctl.ack_count /= 2; 9507 rack->r_ctl.sack_count /= 2; 9508 } 9509 if (SEQ_GT(th_ack, tp->snd_una)) { 9510 rack_log_progress_event(rack, tp, ticks, PROGRESS_UPDATE, __LINE__); 9511 tp->t_acktime = ticks; 9512 } 9513 if (rsm && SEQ_GT(th_ack, rsm->r_start)) 9514 changed = th_ack - rsm->r_start; 9515 if (changed) { 9516 rack_process_to_cumack(tp, rack, th_ack, cts, to); 9517 } 9518 if ((to->to_flags & TOF_SACK) == 0) { 9519 /* We are done nothing left and no sack. */ 9520 rack_handle_might_revert(tp, rack); 9521 /* 9522 * For cases where we struck a dup-ack 9523 * with no SACK, add to the changes so 9524 * PRR will work right. 9525 */ 9526 if (dup_ack_struck && (changed == 0)) { 9527 changed += ctf_fixed_maxseg(rack->rc_tp); 9528 } 9529 goto out; 9530 } 9531 /* Sack block processing */ 9532 if (SEQ_GT(th_ack, tp->snd_una)) 9533 ack_point = th_ack; 9534 else 9535 ack_point = tp->snd_una; 9536 for (i = 0; i < to->to_nsacks; i++) { 9537 bcopy((to->to_sacks + i * TCPOLEN_SACK), 9538 &sack, sizeof(sack)); 9539 sack.start = ntohl(sack.start); 9540 sack.end = ntohl(sack.end); 9541 if (SEQ_GT(sack.end, sack.start) && 9542 SEQ_GT(sack.start, ack_point) && 9543 SEQ_LT(sack.start, tp->snd_max) && 9544 SEQ_GT(sack.end, ack_point) && 9545 SEQ_LEQ(sack.end, tp->snd_max)) { 9546 sack_blocks[num_sack_blks] = sack; 9547 num_sack_blks++; 9548 } else if (SEQ_LEQ(sack.start, th_ack) && 9549 SEQ_LEQ(sack.end, th_ack)) { 9550 int was_tlp; 9551 9552 was_tlp = rack_note_dsack(rack, sack.start, sack.end); 9553 /* 9554 * Its a D-SACK block. 9555 */ 9556 tcp_record_dsack(tp, sack.start, sack.end, was_tlp); 9557 } 9558 } 9559 if (rack->rc_dsack_round_seen) { 9560 /* Is the dsack roound over? */ 9561 if (SEQ_GEQ(th_ack, rack->r_ctl.dsack_round_end)) { 9562 /* Yes it is */ 9563 rack->rc_dsack_round_seen = 0; 9564 rack_log_dsack_event(rack, 3, __LINE__, 0, 0); 9565 } 9566 } 9567 /* 9568 * Sort the SACK blocks so we can update the rack scoreboard with 9569 * just one pass. 9570 */ 9571 num_sack_blks = sack_filter_blks(&rack->r_ctl.rack_sf, sack_blocks, 9572 num_sack_blks, th->th_ack); 9573 ctf_log_sack_filter(rack->rc_tp, num_sack_blks, sack_blocks); 9574 if (num_sack_blks == 0) { 9575 /* Nothing to sack (DSACKs?) */ 9576 goto out_with_totals; 9577 } 9578 if (num_sack_blks < 2) { 9579 /* Only one, we don't need to sort */ 9580 goto do_sack_work; 9581 } 9582 /* Sort the sacks */ 9583 for (i = 0; i < num_sack_blks; i++) { 9584 for (j = i + 1; j < num_sack_blks; j++) { 9585 if (SEQ_GT(sack_blocks[i].end, sack_blocks[j].end)) { 9586 sack = sack_blocks[i]; 9587 sack_blocks[i] = sack_blocks[j]; 9588 sack_blocks[j] = sack; 9589 } 9590 } 9591 } 9592 /* 9593 * Now are any of the sack block ends the same (yes some 9594 * implementations send these)? 9595 */ 9596 again: 9597 if (num_sack_blks == 0) 9598 goto out_with_totals; 9599 if (num_sack_blks > 1) { 9600 for (i = 0; i < num_sack_blks; i++) { 9601 for (j = i + 1; j < num_sack_blks; j++) { 9602 if (sack_blocks[i].end == sack_blocks[j].end) { 9603 /* 9604 * Ok these two have the same end we 9605 * want the smallest end and then 9606 * throw away the larger and start 9607 * again. 9608 */ 9609 if (SEQ_LT(sack_blocks[j].start, sack_blocks[i].start)) { 9610 /* 9611 * The second block covers 9612 * more area use that 9613 */ 9614 sack_blocks[i].start = sack_blocks[j].start; 9615 } 9616 /* 9617 * Now collapse out the dup-sack and 9618 * lower the count 9619 */ 9620 for (k = (j + 1); k < num_sack_blks; k++) { 9621 sack_blocks[j].start = sack_blocks[k].start; 9622 sack_blocks[j].end = sack_blocks[k].end; 9623 j++; 9624 } 9625 num_sack_blks--; 9626 goto again; 9627 } 9628 } 9629 } 9630 } 9631 do_sack_work: 9632 /* 9633 * First lets look to see if 9634 * we have retransmitted and 9635 * can use the transmit next? 9636 */ 9637 rsm = TAILQ_FIRST(&rack->r_ctl.rc_tmap); 9638 if (rsm && 9639 SEQ_GT(sack_blocks[0].end, rsm->r_start) && 9640 SEQ_LT(sack_blocks[0].start, rsm->r_end)) { 9641 /* 9642 * We probably did the FR and the next 9643 * SACK in continues as we would expect. 9644 */ 9645 acked = rack_proc_sack_blk(tp, rack, &sack_blocks[0], to, &rsm, cts, &moved_two); 9646 if (acked) { 9647 rack->r_wanted_output = 1; 9648 changed += acked; 9649 } 9650 if (num_sack_blks == 1) { 9651 /* 9652 * This is what we would expect from 9653 * a normal implementation to happen 9654 * after we have retransmitted the FR, 9655 * i.e the sack-filter pushes down 9656 * to 1 block and the next to be retransmitted 9657 * is the sequence in the sack block (has more 9658 * are acked). Count this as ACK'd data to boost 9659 * up the chances of recovering any false positives. 9660 */ 9661 rack->r_ctl.ack_count += (acked / ctf_fixed_maxseg(rack->rc_tp)); 9662 counter_u64_add(rack_ack_total, (acked / ctf_fixed_maxseg(rack->rc_tp))); 9663 counter_u64_add(rack_express_sack, 1); 9664 if (rack->r_ctl.ack_count > 0xfff00000) { 9665 /* 9666 * reduce the number to keep us under 9667 * a uint32_t. 9668 */ 9669 rack->r_ctl.ack_count /= 2; 9670 rack->r_ctl.sack_count /= 2; 9671 } 9672 goto out_with_totals; 9673 } else { 9674 /* 9675 * Start the loop through the 9676 * rest of blocks, past the first block. 9677 */ 9678 moved_two = 0; 9679 loop_start = 1; 9680 } 9681 } 9682 /* Its a sack of some sort */ 9683 rack->r_ctl.sack_count++; 9684 if (rack->r_ctl.sack_count > 0xfff00000) { 9685 /* 9686 * reduce the number to keep us under 9687 * a uint32_t. 9688 */ 9689 rack->r_ctl.ack_count /= 2; 9690 rack->r_ctl.sack_count /= 2; 9691 } 9692 counter_u64_add(rack_sack_total, 1); 9693 if (rack->sack_attack_disable) { 9694 /* An attacker disablement is in place */ 9695 if (num_sack_blks > 1) { 9696 rack->r_ctl.sack_count += (num_sack_blks - 1); 9697 rack->r_ctl.sack_moved_extra++; 9698 counter_u64_add(rack_move_some, 1); 9699 if (rack->r_ctl.sack_moved_extra > 0xfff00000) { 9700 rack->r_ctl.sack_moved_extra /= 2; 9701 rack->r_ctl.sack_noextra_move /= 2; 9702 } 9703 } 9704 goto out; 9705 } 9706 rsm = rack->r_ctl.rc_sacklast; 9707 for (i = loop_start; i < num_sack_blks; i++) { 9708 acked = rack_proc_sack_blk(tp, rack, &sack_blocks[i], to, &rsm, cts, &moved_two); 9709 if (acked) { 9710 rack->r_wanted_output = 1; 9711 changed += acked; 9712 } 9713 if (moved_two) { 9714 /* 9715 * If we did not get a SACK for at least a MSS and 9716 * had to move at all, or if we moved more than our 9717 * threshold, it counts against the "extra" move. 9718 */ 9719 rack->r_ctl.sack_moved_extra += moved_two; 9720 counter_u64_add(rack_move_some, 1); 9721 } else { 9722 /* 9723 * else we did not have to move 9724 * any more than we would expect. 9725 */ 9726 rack->r_ctl.sack_noextra_move++; 9727 counter_u64_add(rack_move_none, 1); 9728 } 9729 if (moved_two && (acked < ctf_fixed_maxseg(rack->rc_tp))) { 9730 /* 9731 * If the SACK was not a full MSS then 9732 * we add to sack_count the number of 9733 * MSS's (or possibly more than 9734 * a MSS if its a TSO send) we had to skip by. 9735 */ 9736 rack->r_ctl.sack_count += moved_two; 9737 counter_u64_add(rack_sack_total, moved_two); 9738 } 9739 /* 9740 * Now we need to setup for the next 9741 * round. First we make sure we won't 9742 * exceed the size of our uint32_t on 9743 * the various counts, and then clear out 9744 * moved_two. 9745 */ 9746 if ((rack->r_ctl.sack_moved_extra > 0xfff00000) || 9747 (rack->r_ctl.sack_noextra_move > 0xfff00000)) { 9748 rack->r_ctl.sack_moved_extra /= 2; 9749 rack->r_ctl.sack_noextra_move /= 2; 9750 } 9751 if (rack->r_ctl.sack_count > 0xfff00000) { 9752 rack->r_ctl.ack_count /= 2; 9753 rack->r_ctl.sack_count /= 2; 9754 } 9755 moved_two = 0; 9756 } 9757 out_with_totals: 9758 if (num_sack_blks > 1) { 9759 /* 9760 * You get an extra stroke if 9761 * you have more than one sack-blk, this 9762 * could be where we are skipping forward 9763 * and the sack-filter is still working, or 9764 * it could be an attacker constantly 9765 * moving us. 9766 */ 9767 rack->r_ctl.sack_moved_extra++; 9768 counter_u64_add(rack_move_some, 1); 9769 } 9770 out: 9771 #ifdef NETFLIX_EXP_DETECTION 9772 rack_do_detection(tp, rack, BYTES_THIS_ACK(tp, th), ctf_fixed_maxseg(rack->rc_tp)); 9773 #endif 9774 if (changed) { 9775 /* Something changed cancel the rack timer */ 9776 rack_timer_cancel(tp, rack, rack->r_ctl.rc_rcvtime, __LINE__); 9777 } 9778 tsused = tcp_get_usecs(NULL); 9779 rsm = tcp_rack_output(tp, rack, tsused); 9780 if ((!IN_FASTRECOVERY(tp->t_flags)) && 9781 rsm && 9782 ((rsm->r_flags & RACK_MUST_RXT) == 0)) { 9783 /* Enter recovery */ 9784 entered_recovery = 1; 9785 rack_cong_signal(tp, CC_NDUPACK, tp->snd_una, __LINE__); 9786 /* 9787 * When we enter recovery we need to assure we send 9788 * one packet. 9789 */ 9790 if (rack->rack_no_prr == 0) { 9791 rack->r_ctl.rc_prr_sndcnt = ctf_fixed_maxseg(tp); 9792 rack_log_to_prr(rack, 8, 0, __LINE__); 9793 } 9794 rack->r_timer_override = 1; 9795 rack->r_early = 0; 9796 rack->r_ctl.rc_agg_early = 0; 9797 } else if (IN_FASTRECOVERY(tp->t_flags) && 9798 rsm && 9799 (rack->r_rr_config == 3)) { 9800 /* 9801 * Assure we can output and we get no 9802 * remembered pace time except the retransmit. 9803 */ 9804 rack->r_timer_override = 1; 9805 rack->r_ctl.rc_hpts_flags &= ~PACE_PKT_OUTPUT; 9806 rack->r_ctl.rc_resend = rsm; 9807 } 9808 if (IN_FASTRECOVERY(tp->t_flags) && 9809 (rack->rack_no_prr == 0) && 9810 (entered_recovery == 0)) { 9811 rack_update_prr(tp, rack, changed, th_ack); 9812 if ((rsm && (rack->r_ctl.rc_prr_sndcnt >= ctf_fixed_maxseg(tp)) && 9813 ((tcp_in_hpts(rack->rc_inp) == 0) && 9814 ((rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT) == 0)))) { 9815 /* 9816 * If you are pacing output you don't want 9817 * to override. 9818 */ 9819 rack->r_early = 0; 9820 rack->r_ctl.rc_agg_early = 0; 9821 rack->r_timer_override = 1; 9822 } 9823 } 9824 } 9825 9826 static void 9827 rack_strike_dupack(struct tcp_rack *rack) 9828 { 9829 struct rack_sendmap *rsm; 9830 9831 rsm = TAILQ_FIRST(&rack->r_ctl.rc_tmap); 9832 while (rsm && (rsm->r_dupack >= DUP_ACK_THRESHOLD)) { 9833 rsm = TAILQ_NEXT(rsm, r_tnext); 9834 if (rsm->r_flags & RACK_MUST_RXT) { 9835 /* Sendmap entries that are marked to 9836 * be retransmitted do not need dupack's 9837 * struck. We get these marks for a number 9838 * of reasons (rxt timeout with no sack, 9839 * mtu change, or rwnd collapses). When 9840 * these events occur, we know we must retransmit 9841 * them and mark the sendmap entries. Dupack counting 9842 * is not needed since we are already set to retransmit 9843 * it as soon as we can. 9844 */ 9845 continue; 9846 } 9847 } 9848 if (rsm && (rsm->r_dupack < 0xff)) { 9849 rsm->r_dupack++; 9850 if (rsm->r_dupack >= DUP_ACK_THRESHOLD) { 9851 struct timeval tv; 9852 uint32_t cts; 9853 /* 9854 * Here we see if we need to retransmit. For 9855 * a SACK type connection if enough time has passed 9856 * we will get a return of the rsm. For a non-sack 9857 * connection we will get the rsm returned if the 9858 * dupack value is 3 or more. 9859 */ 9860 cts = tcp_get_usecs(&tv); 9861 rack->r_ctl.rc_resend = tcp_rack_output(rack->rc_tp, rack, cts); 9862 if (rack->r_ctl.rc_resend != NULL) { 9863 if (!IN_FASTRECOVERY(rack->rc_tp->t_flags)) { 9864 rack_cong_signal(rack->rc_tp, CC_NDUPACK, 9865 rack->rc_tp->snd_una, __LINE__); 9866 } 9867 rack->r_wanted_output = 1; 9868 rack->r_timer_override = 1; 9869 rack_log_retran_reason(rack, rsm, __LINE__, 1, 3); 9870 } 9871 } else { 9872 rack_log_retran_reason(rack, rsm, __LINE__, 0, 3); 9873 } 9874 } 9875 } 9876 9877 static void 9878 rack_check_bottom_drag(struct tcpcb *tp, 9879 struct tcp_rack *rack, 9880 struct socket *so, int32_t acked) 9881 { 9882 uint32_t segsiz, minseg; 9883 9884 segsiz = ctf_fixed_maxseg(tp); 9885 minseg = segsiz; 9886 9887 if (tp->snd_max == tp->snd_una) { 9888 /* 9889 * We are doing dynamic pacing and we are way 9890 * under. Basically everything got acked while 9891 * we were still waiting on the pacer to expire. 9892 * 9893 * This means we need to boost the b/w in 9894 * addition to any earlier boosting of 9895 * the multiplier. 9896 */ 9897 rack->rc_dragged_bottom = 1; 9898 rack_validate_multipliers_at_or_above100(rack); 9899 /* 9900 * Lets use the segment bytes acked plus 9901 * the lowest RTT seen as the basis to 9902 * form a b/w estimate. This will be off 9903 * due to the fact that the true estimate 9904 * should be around 1/2 the time of the RTT 9905 * but we can settle for that. 9906 */ 9907 if ((rack->r_ctl.rack_rs.rs_flags & RACK_RTT_VALID) && 9908 acked) { 9909 uint64_t bw, calc_bw, rtt; 9910 9911 rtt = rack->r_ctl.rack_rs.rs_us_rtt; 9912 if (rtt == 0) { 9913 /* no us sample is there a ms one? */ 9914 if (rack->r_ctl.rack_rs.rs_rtt_lowest) { 9915 rtt = rack->r_ctl.rack_rs.rs_rtt_lowest; 9916 } else { 9917 goto no_measurement; 9918 } 9919 } 9920 bw = acked; 9921 calc_bw = bw * 1000000; 9922 calc_bw /= rtt; 9923 if (rack->r_ctl.last_max_bw && 9924 (rack->r_ctl.last_max_bw < calc_bw)) { 9925 /* 9926 * If we have a last calculated max bw 9927 * enforce it. 9928 */ 9929 calc_bw = rack->r_ctl.last_max_bw; 9930 } 9931 /* now plop it in */ 9932 if (rack->rc_gp_filled == 0) { 9933 if (calc_bw > ONE_POINT_TWO_MEG) { 9934 /* 9935 * If we have no measurement 9936 * don't let us set in more than 9937 * 1.2Mbps. If we are still too 9938 * low after pacing with this we 9939 * will hopefully have a max b/w 9940 * available to sanity check things. 9941 */ 9942 calc_bw = ONE_POINT_TWO_MEG; 9943 } 9944 rack->r_ctl.rc_rtt_diff = 0; 9945 rack->r_ctl.gp_bw = calc_bw; 9946 rack->rc_gp_filled = 1; 9947 if (rack->r_ctl.num_measurements < RACK_REQ_AVG) 9948 rack->r_ctl.num_measurements = RACK_REQ_AVG; 9949 rack_set_pace_segments(rack->rc_tp, rack, __LINE__, NULL); 9950 } else if (calc_bw > rack->r_ctl.gp_bw) { 9951 rack->r_ctl.rc_rtt_diff = 0; 9952 if (rack->r_ctl.num_measurements < RACK_REQ_AVG) 9953 rack->r_ctl.num_measurements = RACK_REQ_AVG; 9954 rack->r_ctl.gp_bw = calc_bw; 9955 rack_set_pace_segments(rack->rc_tp, rack, __LINE__, NULL); 9956 } else 9957 rack_increase_bw_mul(rack, -1, 0, 0, 1); 9958 if ((rack->gp_ready == 0) && 9959 (rack->r_ctl.num_measurements >= rack->r_ctl.req_measurements)) { 9960 /* We have enough measurements now */ 9961 rack->gp_ready = 1; 9962 rack_set_cc_pacing(rack); 9963 if (rack->defer_options) 9964 rack_apply_deferred_options(rack); 9965 } 9966 /* 9967 * For acks over 1mss we do a extra boost to simulate 9968 * where we would get 2 acks (we want 110 for the mul). 9969 */ 9970 if (acked > segsiz) 9971 rack_increase_bw_mul(rack, -1, 0, 0, 1); 9972 } else { 9973 /* 9974 * zero rtt possibly?, settle for just an old increase. 9975 */ 9976 no_measurement: 9977 rack_increase_bw_mul(rack, -1, 0, 0, 1); 9978 } 9979 } else if ((IN_FASTRECOVERY(tp->t_flags) == 0) && 9980 (sbavail(&so->so_snd) > max((segsiz * (4 + rack_req_segs)), 9981 minseg)) && 9982 (rack->r_ctl.cwnd_to_use > max((segsiz * (rack_req_segs + 2)), minseg)) && 9983 (tp->snd_wnd > max((segsiz * (rack_req_segs + 2)), minseg)) && 9984 (ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked) <= 9985 (segsiz * rack_req_segs))) { 9986 /* 9987 * We are doing dynamic GP pacing and 9988 * we have everything except 1MSS or less 9989 * bytes left out. We are still pacing away. 9990 * And there is data that could be sent, This 9991 * means we are inserting delayed ack time in 9992 * our measurements because we are pacing too slow. 9993 */ 9994 rack_validate_multipliers_at_or_above100(rack); 9995 rack->rc_dragged_bottom = 1; 9996 rack_increase_bw_mul(rack, -1, 0, 0, 1); 9997 } 9998 } 9999 10000 10001 10002 static void 10003 rack_gain_for_fastoutput(struct tcp_rack *rack, struct tcpcb *tp, struct socket *so, uint32_t acked_amount) 10004 { 10005 /* 10006 * The fast output path is enabled and we 10007 * have moved the cumack forward. Lets see if 10008 * we can expand forward the fast path length by 10009 * that amount. What we would ideally like to 10010 * do is increase the number of bytes in the 10011 * fast path block (left_to_send) by the 10012 * acked amount. However we have to gate that 10013 * by two factors: 10014 * 1) The amount outstanding and the rwnd of the peer 10015 * (i.e. we don't want to exceed the rwnd of the peer). 10016 * <and> 10017 * 2) The amount of data left in the socket buffer (i.e. 10018 * we can't send beyond what is in the buffer). 10019 * 10020 * Note that this does not take into account any increase 10021 * in the cwnd. We will only extend the fast path by 10022 * what was acked. 10023 */ 10024 uint32_t new_total, gating_val; 10025 10026 new_total = acked_amount + rack->r_ctl.fsb.left_to_send; 10027 gating_val = min((sbavail(&so->so_snd) - (tp->snd_max - tp->snd_una)), 10028 (tp->snd_wnd - (tp->snd_max - tp->snd_una))); 10029 if (new_total <= gating_val) { 10030 /* We can increase left_to_send by the acked amount */ 10031 counter_u64_add(rack_extended_rfo, 1); 10032 rack->r_ctl.fsb.left_to_send = new_total; 10033 KASSERT((rack->r_ctl.fsb.left_to_send <= (sbavail(&rack->rc_inp->inp_socket->so_snd) - (tp->snd_max - tp->snd_una))), 10034 ("rack:%p left_to_send:%u sbavail:%u out:%u", 10035 rack, rack->r_ctl.fsb.left_to_send, 10036 sbavail(&rack->rc_inp->inp_socket->so_snd), 10037 (tp->snd_max - tp->snd_una))); 10038 10039 } 10040 } 10041 10042 static void 10043 rack_adjust_sendmap(struct tcp_rack *rack, struct sockbuf *sb, tcp_seq snd_una) 10044 { 10045 /* 10046 * Here any sendmap entry that points to the 10047 * beginning mbuf must be adjusted to the correct 10048 * offset. This must be called with: 10049 * 1) The socket buffer locked 10050 * 2) snd_una adjusted to its new postion. 10051 * 10052 * Note that (2) implies rack_ack_received has also 10053 * been called. 10054 * 10055 * We grab the first mbuf in the socket buffer and 10056 * then go through the front of the sendmap, recalculating 10057 * the stored offset for any sendmap entry that has 10058 * that mbuf. We must use the sb functions to do this 10059 * since its possible an add was done has well as 10060 * the subtraction we may have just completed. This should 10061 * not be a penalty though, since we just referenced the sb 10062 * to go in and trim off the mbufs that we freed (of course 10063 * there will be a penalty for the sendmap references though). 10064 */ 10065 struct mbuf *m; 10066 struct rack_sendmap *rsm; 10067 10068 SOCKBUF_LOCK_ASSERT(sb); 10069 m = sb->sb_mb; 10070 rsm = RB_MIN(rack_rb_tree_head, &rack->r_ctl.rc_mtree); 10071 if ((rsm == NULL) || (m == NULL)) { 10072 /* Nothing outstanding */ 10073 return; 10074 } 10075 while (rsm->m && (rsm->m == m)) { 10076 /* one to adjust */ 10077 #ifdef INVARIANTS 10078 struct mbuf *tm; 10079 uint32_t soff; 10080 10081 tm = sbsndmbuf(sb, (rsm->r_start - snd_una), &soff); 10082 if (rsm->orig_m_len != m->m_len) { 10083 rack_adjust_orig_mlen(rsm); 10084 } 10085 if (rsm->soff != soff) { 10086 /* 10087 * This is not a fatal error, we anticipate it 10088 * might happen (the else code), so we count it here 10089 * so that under invariant we can see that it really 10090 * does happen. 10091 */ 10092 counter_u64_add(rack_adjust_map_bw, 1); 10093 } 10094 rsm->m = tm; 10095 rsm->soff = soff; 10096 if (tm) 10097 rsm->orig_m_len = rsm->m->m_len; 10098 else 10099 rsm->orig_m_len = 0; 10100 #else 10101 rsm->m = sbsndmbuf(sb, (rsm->r_start - snd_una), &rsm->soff); 10102 if (rsm->m) 10103 rsm->orig_m_len = rsm->m->m_len; 10104 else 10105 rsm->orig_m_len = 0; 10106 #endif 10107 rsm = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, 10108 rsm); 10109 if (rsm == NULL) 10110 break; 10111 } 10112 } 10113 10114 /* 10115 * Return value of 1, we do not need to call rack_process_data(). 10116 * return value of 0, rack_process_data can be called. 10117 * For ret_val if its 0 the TCP is locked, if its non-zero 10118 * its unlocked and probably unsafe to touch the TCB. 10119 */ 10120 static int 10121 rack_process_ack(struct mbuf *m, struct tcphdr *th, struct socket *so, 10122 struct tcpcb *tp, struct tcpopt *to, 10123 uint32_t tiwin, int32_t tlen, 10124 int32_t * ofia, int32_t thflags, int32_t *ret_val) 10125 { 10126 int32_t ourfinisacked = 0; 10127 int32_t nsegs, acked_amount; 10128 int32_t acked; 10129 struct mbuf *mfree; 10130 struct tcp_rack *rack; 10131 int32_t under_pacing = 0; 10132 int32_t recovery = 0; 10133 10134 rack = (struct tcp_rack *)tp->t_fb_ptr; 10135 if (SEQ_GT(th->th_ack, tp->snd_max)) { 10136 __ctf_do_dropafterack(m, tp, th, thflags, tlen, ret_val, 10137 &rack->r_ctl.challenge_ack_ts, 10138 &rack->r_ctl.challenge_ack_cnt); 10139 rack->r_wanted_output = 1; 10140 return (1); 10141 } 10142 if (rack->gp_ready && 10143 (rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT)) { 10144 under_pacing = 1; 10145 } 10146 if (SEQ_GEQ(th->th_ack, tp->snd_una) || to->to_nsacks) { 10147 int in_rec, dup_ack_struck = 0; 10148 10149 in_rec = IN_FASTRECOVERY(tp->t_flags); 10150 if (rack->rc_in_persist) { 10151 tp->t_rxtshift = 0; 10152 RACK_TCPT_RANGESET(tp->t_rxtcur, RACK_REXMTVAL(tp), 10153 rack_rto_min, rack_rto_max, rack->r_ctl.timer_slop); 10154 } 10155 if ((th->th_ack == tp->snd_una) && 10156 (tiwin == tp->snd_wnd) && 10157 ((to->to_flags & TOF_SACK) == 0)) { 10158 rack_strike_dupack(rack); 10159 dup_ack_struck = 1; 10160 } 10161 rack_log_ack(tp, to, th, ((in_rec == 0) && IN_FASTRECOVERY(tp->t_flags)), dup_ack_struck); 10162 } 10163 if (__predict_false(SEQ_LEQ(th->th_ack, tp->snd_una))) { 10164 /* 10165 * Old ack, behind (or duplicate to) the last one rcv'd 10166 * Note: We mark reordering is occuring if its 10167 * less than and we have not closed our window. 10168 */ 10169 if (SEQ_LT(th->th_ack, tp->snd_una) && (sbspace(&so->so_rcv) > ctf_fixed_maxseg(tp))) { 10170 rack->r_ctl.rc_reorder_ts = tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time); 10171 } 10172 return (0); 10173 } 10174 /* 10175 * If we reach this point, ACK is not a duplicate, i.e., it ACKs 10176 * something we sent. 10177 */ 10178 if (tp->t_flags & TF_NEEDSYN) { 10179 /* 10180 * T/TCP: Connection was half-synchronized, and our SYN has 10181 * been ACK'd (so connection is now fully synchronized). Go 10182 * to non-starred state, increment snd_una for ACK of SYN, 10183 * and check if we can do window scaling. 10184 */ 10185 tp->t_flags &= ~TF_NEEDSYN; 10186 tp->snd_una++; 10187 /* Do window scaling? */ 10188 if ((tp->t_flags & (TF_RCVD_SCALE | TF_REQ_SCALE)) == 10189 (TF_RCVD_SCALE | TF_REQ_SCALE)) { 10190 tp->rcv_scale = tp->request_r_scale; 10191 /* Send window already scaled. */ 10192 } 10193 } 10194 nsegs = max(1, m->m_pkthdr.lro_nsegs); 10195 INP_WLOCK_ASSERT(tp->t_inpcb); 10196 10197 acked = BYTES_THIS_ACK(tp, th); 10198 if (acked) { 10199 /* 10200 * Any time we move the cum-ack forward clear 10201 * keep-alive tied probe-not-answered. The 10202 * persists clears its own on entry. 10203 */ 10204 rack->probe_not_answered = 0; 10205 } 10206 KMOD_TCPSTAT_ADD(tcps_rcvackpack, nsegs); 10207 KMOD_TCPSTAT_ADD(tcps_rcvackbyte, acked); 10208 /* 10209 * If we just performed our first retransmit, and the ACK arrives 10210 * within our recovery window, then it was a mistake to do the 10211 * retransmit in the first place. Recover our original cwnd and 10212 * ssthresh, and proceed to transmit where we left off. 10213 */ 10214 if ((tp->t_flags & TF_PREVVALID) && 10215 ((tp->t_flags & TF_RCVD_TSTMP) == 0)) { 10216 tp->t_flags &= ~TF_PREVVALID; 10217 if (tp->t_rxtshift == 1 && 10218 (int)(ticks - tp->t_badrxtwin) < 0) 10219 rack_cong_signal(tp, CC_RTO_ERR, th->th_ack, __LINE__); 10220 } 10221 if (acked) { 10222 /* assure we are not backed off */ 10223 tp->t_rxtshift = 0; 10224 RACK_TCPT_RANGESET(tp->t_rxtcur, RACK_REXMTVAL(tp), 10225 rack_rto_min, rack_rto_max, rack->r_ctl.timer_slop); 10226 rack->rc_tlp_in_progress = 0; 10227 rack->r_ctl.rc_tlp_cnt_out = 0; 10228 /* 10229 * If it is the RXT timer we want to 10230 * stop it, so we can restart a TLP. 10231 */ 10232 if (rack->r_ctl.rc_hpts_flags & PACE_TMR_RXT) 10233 rack_timer_cancel(tp, rack, rack->r_ctl.rc_rcvtime, __LINE__); 10234 #ifdef NETFLIX_HTTP_LOGGING 10235 tcp_http_check_for_comp(rack->rc_tp, th->th_ack); 10236 #endif 10237 } 10238 /* 10239 * If we have a timestamp reply, update smoothed round trip time. If 10240 * no timestamp is present but transmit timer is running and timed 10241 * sequence number was acked, update smoothed round trip time. Since 10242 * we now have an rtt measurement, cancel the timer backoff (cf., 10243 * Phil Karn's retransmit alg.). Recompute the initial retransmit 10244 * timer. 10245 * 10246 * Some boxes send broken timestamp replies during the SYN+ACK 10247 * phase, ignore timestamps of 0 or we could calculate a huge RTT 10248 * and blow up the retransmit timer. 10249 */ 10250 /* 10251 * If all outstanding data is acked, stop retransmit timer and 10252 * remember to restart (more output or persist). If there is more 10253 * data to be acked, restart retransmit timer, using current 10254 * (possibly backed-off) value. 10255 */ 10256 if (acked == 0) { 10257 if (ofia) 10258 *ofia = ourfinisacked; 10259 return (0); 10260 } 10261 if (IN_RECOVERY(tp->t_flags)) { 10262 if (SEQ_LT(th->th_ack, tp->snd_recover) && 10263 (SEQ_LT(th->th_ack, tp->snd_max))) { 10264 tcp_rack_partialack(tp); 10265 } else { 10266 rack_post_recovery(tp, th->th_ack); 10267 recovery = 1; 10268 } 10269 } 10270 /* 10271 * Let the congestion control algorithm update congestion control 10272 * related information. This typically means increasing the 10273 * congestion window. 10274 */ 10275 rack_ack_received(tp, rack, th->th_ack, nsegs, CC_ACK, recovery); 10276 SOCKBUF_LOCK(&so->so_snd); 10277 acked_amount = min(acked, (int)sbavail(&so->so_snd)); 10278 tp->snd_wnd -= acked_amount; 10279 mfree = sbcut_locked(&so->so_snd, acked_amount); 10280 if ((sbused(&so->so_snd) == 0) && 10281 (acked > acked_amount) && 10282 (tp->t_state >= TCPS_FIN_WAIT_1) && 10283 (tp->t_flags & TF_SENTFIN)) { 10284 /* 10285 * We must be sure our fin 10286 * was sent and acked (we can be 10287 * in FIN_WAIT_1 without having 10288 * sent the fin). 10289 */ 10290 ourfinisacked = 1; 10291 } 10292 tp->snd_una = th->th_ack; 10293 if (acked_amount && sbavail(&so->so_snd)) 10294 rack_adjust_sendmap(rack, &so->so_snd, tp->snd_una); 10295 rack_log_wakeup(tp,rack, &so->so_snd, acked, 2); 10296 /* NB: sowwakeup_locked() does an implicit unlock. */ 10297 sowwakeup_locked(so); 10298 m_freem(mfree); 10299 if (SEQ_GT(tp->snd_una, tp->snd_recover)) 10300 tp->snd_recover = tp->snd_una; 10301 10302 if (SEQ_LT(tp->snd_nxt, tp->snd_una)) { 10303 tp->snd_nxt = tp->snd_una; 10304 } 10305 if (under_pacing && 10306 (rack->use_fixed_rate == 0) && 10307 (rack->in_probe_rtt == 0) && 10308 rack->rc_gp_dyn_mul && 10309 rack->rc_always_pace) { 10310 /* Check if we are dragging bottom */ 10311 rack_check_bottom_drag(tp, rack, so, acked); 10312 } 10313 if (tp->snd_una == tp->snd_max) { 10314 /* Nothing left outstanding */ 10315 tp->t_flags &= ~TF_PREVVALID; 10316 rack->r_ctl.rc_went_idle_time = tcp_get_usecs(NULL); 10317 rack->r_ctl.retran_during_recovery = 0; 10318 rack->r_ctl.dsack_byte_cnt = 0; 10319 if (rack->r_ctl.rc_went_idle_time == 0) 10320 rack->r_ctl.rc_went_idle_time = 1; 10321 rack_log_progress_event(rack, tp, 0, PROGRESS_CLEAR, __LINE__); 10322 if (sbavail(&tp->t_inpcb->inp_socket->so_snd) == 0) 10323 tp->t_acktime = 0; 10324 rack_timer_cancel(tp, rack, rack->r_ctl.rc_rcvtime, __LINE__); 10325 /* Set need output so persist might get set */ 10326 rack->r_wanted_output = 1; 10327 sack_filter_clear(&rack->r_ctl.rack_sf, tp->snd_una); 10328 if ((tp->t_state >= TCPS_FIN_WAIT_1) && 10329 (sbavail(&so->so_snd) == 0) && 10330 (tp->t_flags2 & TF2_DROP_AF_DATA)) { 10331 /* 10332 * The socket was gone and the 10333 * peer sent data (now or in the past), time to 10334 * reset him. 10335 */ 10336 *ret_val = 1; 10337 /* tcp_close will kill the inp pre-log the Reset */ 10338 tcp_log_end_status(tp, TCP_EI_STATUS_SERVER_RST); 10339 tp = tcp_close(tp); 10340 ctf_do_dropwithreset(m, tp, th, BANDLIM_UNLIMITED, tlen); 10341 return (1); 10342 } 10343 } 10344 if (ofia) 10345 *ofia = ourfinisacked; 10346 return (0); 10347 } 10348 10349 10350 static void 10351 rack_log_collapse(struct tcp_rack *rack, uint32_t cnt, uint32_t split, uint32_t out, int line, 10352 int dir, uint32_t flags, struct rack_sendmap *rsm) 10353 { 10354 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 10355 union tcp_log_stackspecific log; 10356 struct timeval tv; 10357 10358 memset(&log, 0, sizeof(log)); 10359 log.u_bbr.flex1 = cnt; 10360 log.u_bbr.flex2 = split; 10361 log.u_bbr.flex3 = out; 10362 log.u_bbr.flex4 = line; 10363 log.u_bbr.flex5 = rack->r_must_retran; 10364 log.u_bbr.flex6 = flags; 10365 log.u_bbr.flex7 = rack->rc_has_collapsed; 10366 log.u_bbr.flex8 = dir; /* 10367 * 1 is collapsed, 0 is uncollapsed, 10368 * 2 is log of a rsm being marked, 3 is a split. 10369 */ 10370 if (rsm == NULL) 10371 log.u_bbr.rttProp = 0; 10372 else 10373 log.u_bbr.rttProp = (uint64_t)rsm; 10374 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 10375 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 10376 TCP_LOG_EVENTP(rack->rc_tp, NULL, 10377 &rack->rc_inp->inp_socket->so_rcv, 10378 &rack->rc_inp->inp_socket->so_snd, 10379 TCP_RACK_LOG_COLLAPSE, 0, 10380 0, &log, false, &tv); 10381 } 10382 } 10383 10384 static void 10385 rack_collapsed_window(struct tcp_rack *rack, uint32_t out, int line) 10386 { 10387 /* 10388 * Here all we do is mark the collapsed point and set the flag. 10389 * This may happen again and again, but there is no 10390 * sense splitting our map until we know where the 10391 * peer finally lands in the collapse. 10392 */ 10393 rack_trace_point(rack, RACK_TP_COLLAPSED_WND); 10394 if ((rack->rc_has_collapsed == 0) || 10395 (rack->r_ctl.last_collapse_point != (rack->rc_tp->snd_una + rack->rc_tp->snd_wnd))) 10396 counter_u64_add(rack_collapsed_win_seen, 1); 10397 rack->r_ctl.last_collapse_point = rack->rc_tp->snd_una + rack->rc_tp->snd_wnd; 10398 rack->r_ctl.high_collapse_point = rack->rc_tp->snd_max; 10399 rack->rc_has_collapsed = 1; 10400 rack->r_collapse_point_valid = 1; 10401 rack_log_collapse(rack, 0, 0, rack->r_ctl.last_collapse_point, line, 1, 0, NULL); 10402 } 10403 10404 static void 10405 rack_un_collapse_window(struct tcp_rack *rack, int line) 10406 { 10407 struct rack_sendmap *nrsm, *rsm, fe; 10408 int cnt = 0, split = 0; 10409 #ifdef INVARIANTS 10410 struct rack_sendmap *insret; 10411 #endif 10412 10413 memset(&fe, 0, sizeof(fe)); 10414 rack->rc_has_collapsed = 0; 10415 fe.r_start = rack->r_ctl.last_collapse_point; 10416 rsm = RB_FIND(rack_rb_tree_head, &rack->r_ctl.rc_mtree, &fe); 10417 if (rsm == NULL) { 10418 /* Nothing to do maybe the peer ack'ed it all */ 10419 rack_log_collapse(rack, 0, 0, ctf_outstanding(rack->rc_tp), line, 0, 0, NULL); 10420 return; 10421 } 10422 /* Now do we need to split this one? */ 10423 if (SEQ_GT(rack->r_ctl.last_collapse_point, rsm->r_start)) { 10424 rack_log_collapse(rack, rsm->r_start, rsm->r_end, 10425 rack->r_ctl.last_collapse_point, line, 3, rsm->r_flags, rsm); 10426 nrsm = rack_alloc_limit(rack, RACK_LIMIT_TYPE_SPLIT); 10427 if (nrsm == NULL) { 10428 /* We can't get a rsm, mark all? */ 10429 nrsm = rsm; 10430 goto no_split; 10431 } 10432 /* Clone it */ 10433 split = 1; 10434 rack_clone_rsm(rack, nrsm, rsm, rack->r_ctl.last_collapse_point); 10435 #ifndef INVARIANTS 10436 (void)RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm); 10437 #else 10438 insret = RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm); 10439 if (insret != NULL) { 10440 panic("Insert in rb tree of %p fails ret:%p rack:%p rsm:%p", 10441 nrsm, insret, rack, rsm); 10442 } 10443 #endif 10444 rack_log_map_chg(rack->rc_tp, rack, NULL, rsm, nrsm, MAP_SPLIT, 10445 rack->r_ctl.last_collapse_point, __LINE__); 10446 if (rsm->r_in_tmap) { 10447 TAILQ_INSERT_AFTER(&rack->r_ctl.rc_tmap, rsm, nrsm, r_tnext); 10448 nrsm->r_in_tmap = 1; 10449 } 10450 /* 10451 * Set in the new RSM as the 10452 * collapsed starting point 10453 */ 10454 rsm = nrsm; 10455 } 10456 no_split: 10457 RB_FOREACH_FROM(nrsm, rack_rb_tree_head, rsm) { 10458 nrsm->r_flags |= RACK_RWND_COLLAPSED; 10459 rack_log_collapse(rack, nrsm->r_start, nrsm->r_end, 0, line, 4, nrsm->r_flags, nrsm); 10460 cnt++; 10461 } 10462 if (cnt) { 10463 counter_u64_add(rack_collapsed_win, 1); 10464 } 10465 rack_log_collapse(rack, cnt, split, ctf_outstanding(rack->rc_tp), line, 0, 0, NULL); 10466 } 10467 10468 static void 10469 rack_handle_delayed_ack(struct tcpcb *tp, struct tcp_rack *rack, 10470 int32_t tlen, int32_t tfo_syn) 10471 { 10472 if (DELAY_ACK(tp, tlen) || tfo_syn) { 10473 if (rack->rc_dack_mode && 10474 (tlen > 500) && 10475 (rack->rc_dack_toggle == 1)) { 10476 goto no_delayed_ack; 10477 } 10478 rack_timer_cancel(tp, rack, 10479 rack->r_ctl.rc_rcvtime, __LINE__); 10480 tp->t_flags |= TF_DELACK; 10481 } else { 10482 no_delayed_ack: 10483 rack->r_wanted_output = 1; 10484 tp->t_flags |= TF_ACKNOW; 10485 if (rack->rc_dack_mode) { 10486 if (tp->t_flags & TF_DELACK) 10487 rack->rc_dack_toggle = 1; 10488 else 10489 rack->rc_dack_toggle = 0; 10490 } 10491 } 10492 } 10493 10494 static void 10495 rack_validate_fo_sendwin_up(struct tcpcb *tp, struct tcp_rack *rack) 10496 { 10497 /* 10498 * If fast output is in progress, lets validate that 10499 * the new window did not shrink on us and make it 10500 * so fast output should end. 10501 */ 10502 if (rack->r_fast_output) { 10503 uint32_t out; 10504 10505 /* 10506 * Calculate what we will send if left as is 10507 * and compare that to our send window. 10508 */ 10509 out = ctf_outstanding(tp); 10510 if ((out + rack->r_ctl.fsb.left_to_send) > tp->snd_wnd) { 10511 /* ok we have an issue */ 10512 if (out >= tp->snd_wnd) { 10513 /* Turn off fast output the window is met or collapsed */ 10514 rack->r_fast_output = 0; 10515 } else { 10516 /* we have some room left */ 10517 rack->r_ctl.fsb.left_to_send = tp->snd_wnd - out; 10518 if (rack->r_ctl.fsb.left_to_send < ctf_fixed_maxseg(tp)) { 10519 /* If not at least 1 full segment never mind */ 10520 rack->r_fast_output = 0; 10521 } 10522 } 10523 } 10524 } 10525 } 10526 10527 10528 /* 10529 * Return value of 1, the TCB is unlocked and most 10530 * likely gone, return value of 0, the TCP is still 10531 * locked. 10532 */ 10533 static int 10534 rack_process_data(struct mbuf *m, struct tcphdr *th, struct socket *so, 10535 struct tcpcb *tp, int32_t drop_hdrlen, int32_t tlen, 10536 uint32_t tiwin, int32_t thflags, int32_t nxt_pkt) 10537 { 10538 /* 10539 * Update window information. Don't look at window if no ACK: TAC's 10540 * send garbage on first SYN. 10541 */ 10542 int32_t nsegs; 10543 int32_t tfo_syn; 10544 struct tcp_rack *rack; 10545 10546 rack = (struct tcp_rack *)tp->t_fb_ptr; 10547 INP_WLOCK_ASSERT(tp->t_inpcb); 10548 nsegs = max(1, m->m_pkthdr.lro_nsegs); 10549 if ((thflags & TH_ACK) && 10550 (SEQ_LT(tp->snd_wl1, th->th_seq) || 10551 (tp->snd_wl1 == th->th_seq && (SEQ_LT(tp->snd_wl2, th->th_ack) || 10552 (tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd))))) { 10553 /* keep track of pure window updates */ 10554 if (tlen == 0 && 10555 tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd) 10556 KMOD_TCPSTAT_INC(tcps_rcvwinupd); 10557 tp->snd_wnd = tiwin; 10558 rack_validate_fo_sendwin_up(tp, rack); 10559 tp->snd_wl1 = th->th_seq; 10560 tp->snd_wl2 = th->th_ack; 10561 if (tp->snd_wnd > tp->max_sndwnd) 10562 tp->max_sndwnd = tp->snd_wnd; 10563 rack->r_wanted_output = 1; 10564 } else if (thflags & TH_ACK) { 10565 if ((tp->snd_wl2 == th->th_ack) && (tiwin < tp->snd_wnd)) { 10566 tp->snd_wnd = tiwin; 10567 rack_validate_fo_sendwin_up(tp, rack); 10568 tp->snd_wl1 = th->th_seq; 10569 tp->snd_wl2 = th->th_ack; 10570 } 10571 } 10572 if (tp->snd_wnd < ctf_outstanding(tp)) 10573 /* The peer collapsed the window */ 10574 rack_collapsed_window(rack, ctf_outstanding(tp), __LINE__); 10575 else if (rack->rc_has_collapsed) 10576 rack_un_collapse_window(rack, __LINE__); 10577 if ((rack->r_collapse_point_valid) && 10578 (SEQ_GT(th->th_ack, rack->r_ctl.high_collapse_point))) 10579 rack->r_collapse_point_valid = 0; 10580 /* Was persist timer active and now we have window space? */ 10581 if ((rack->rc_in_persist != 0) && 10582 (tp->snd_wnd >= min((rack->r_ctl.rc_high_rwnd/2), 10583 rack->r_ctl.rc_pace_min_segs))) { 10584 rack_exit_persist(tp, rack, rack->r_ctl.rc_rcvtime); 10585 tp->snd_nxt = tp->snd_max; 10586 /* Make sure we output to start the timer */ 10587 rack->r_wanted_output = 1; 10588 } 10589 /* Do we enter persists? */ 10590 if ((rack->rc_in_persist == 0) && 10591 (tp->snd_wnd < min((rack->r_ctl.rc_high_rwnd/2), rack->r_ctl.rc_pace_min_segs)) && 10592 TCPS_HAVEESTABLISHED(tp->t_state) && 10593 ((tp->snd_max == tp->snd_una) || rack->rc_has_collapsed) && 10594 sbavail(&tp->t_inpcb->inp_socket->so_snd) && 10595 (sbavail(&tp->t_inpcb->inp_socket->so_snd) > tp->snd_wnd)) { 10596 /* 10597 * Here the rwnd is less than 10598 * the pacing size, we are established, 10599 * nothing is outstanding, and there is 10600 * data to send. Enter persists. 10601 */ 10602 rack_enter_persist(tp, rack, rack->r_ctl.rc_rcvtime); 10603 } 10604 if (tp->t_flags2 & TF2_DROP_AF_DATA) { 10605 m_freem(m); 10606 return (0); 10607 } 10608 /* 10609 * don't process the URG bit, ignore them drag 10610 * along the up. 10611 */ 10612 tp->rcv_up = tp->rcv_nxt; 10613 INP_WLOCK_ASSERT(tp->t_inpcb); 10614 10615 /* 10616 * Process the segment text, merging it into the TCP sequencing 10617 * queue, and arranging for acknowledgment of receipt if necessary. 10618 * This process logically involves adjusting tp->rcv_wnd as data is 10619 * presented to the user (this happens in tcp_usrreq.c, case 10620 * PRU_RCVD). If a FIN has already been received on this connection 10621 * then we just ignore the text. 10622 */ 10623 tfo_syn = ((tp->t_state == TCPS_SYN_RECEIVED) && 10624 IS_FASTOPEN(tp->t_flags)); 10625 if ((tlen || (thflags & TH_FIN) || (tfo_syn && tlen > 0)) && 10626 TCPS_HAVERCVDFIN(tp->t_state) == 0) { 10627 tcp_seq save_start = th->th_seq; 10628 tcp_seq save_rnxt = tp->rcv_nxt; 10629 int save_tlen = tlen; 10630 10631 m_adj(m, drop_hdrlen); /* delayed header drop */ 10632 /* 10633 * Insert segment which includes th into TCP reassembly 10634 * queue with control block tp. Set thflags to whether 10635 * reassembly now includes a segment with FIN. This handles 10636 * the common case inline (segment is the next to be 10637 * received on an established connection, and the queue is 10638 * empty), avoiding linkage into and removal from the queue 10639 * and repetition of various conversions. Set DELACK for 10640 * segments received in order, but ack immediately when 10641 * segments are out of order (so fast retransmit can work). 10642 */ 10643 if (th->th_seq == tp->rcv_nxt && 10644 SEGQ_EMPTY(tp) && 10645 (TCPS_HAVEESTABLISHED(tp->t_state) || 10646 tfo_syn)) { 10647 #ifdef NETFLIX_SB_LIMITS 10648 u_int mcnt, appended; 10649 10650 if (so->so_rcv.sb_shlim) { 10651 mcnt = m_memcnt(m); 10652 appended = 0; 10653 if (counter_fo_get(so->so_rcv.sb_shlim, mcnt, 10654 CFO_NOSLEEP, NULL) == false) { 10655 counter_u64_add(tcp_sb_shlim_fails, 1); 10656 m_freem(m); 10657 return (0); 10658 } 10659 } 10660 #endif 10661 rack_handle_delayed_ack(tp, rack, tlen, tfo_syn); 10662 tp->rcv_nxt += tlen; 10663 if (tlen && 10664 ((tp->t_flags2 & TF2_FBYTES_COMPLETE) == 0) && 10665 (tp->t_fbyte_in == 0)) { 10666 tp->t_fbyte_in = ticks; 10667 if (tp->t_fbyte_in == 0) 10668 tp->t_fbyte_in = 1; 10669 if (tp->t_fbyte_out && tp->t_fbyte_in) 10670 tp->t_flags2 |= TF2_FBYTES_COMPLETE; 10671 } 10672 thflags = tcp_get_flags(th) & TH_FIN; 10673 KMOD_TCPSTAT_ADD(tcps_rcvpack, nsegs); 10674 KMOD_TCPSTAT_ADD(tcps_rcvbyte, tlen); 10675 SOCKBUF_LOCK(&so->so_rcv); 10676 if (so->so_rcv.sb_state & SBS_CANTRCVMORE) { 10677 m_freem(m); 10678 } else 10679 #ifdef NETFLIX_SB_LIMITS 10680 appended = 10681 #endif 10682 sbappendstream_locked(&so->so_rcv, m, 0); 10683 10684 rack_log_wakeup(tp,rack, &so->so_rcv, tlen, 1); 10685 /* NB: sorwakeup_locked() does an implicit unlock. */ 10686 sorwakeup_locked(so); 10687 #ifdef NETFLIX_SB_LIMITS 10688 if (so->so_rcv.sb_shlim && appended != mcnt) 10689 counter_fo_release(so->so_rcv.sb_shlim, 10690 mcnt - appended); 10691 #endif 10692 } else { 10693 /* 10694 * XXX: Due to the header drop above "th" is 10695 * theoretically invalid by now. Fortunately 10696 * m_adj() doesn't actually frees any mbufs when 10697 * trimming from the head. 10698 */ 10699 tcp_seq temp = save_start; 10700 10701 thflags = tcp_reass(tp, th, &temp, &tlen, m); 10702 tp->t_flags |= TF_ACKNOW; 10703 if (tp->t_flags & TF_WAKESOR) { 10704 tp->t_flags &= ~TF_WAKESOR; 10705 /* NB: sorwakeup_locked() does an implicit unlock. */ 10706 sorwakeup_locked(so); 10707 } 10708 } 10709 if ((tp->t_flags & TF_SACK_PERMIT) && 10710 (save_tlen > 0) && 10711 TCPS_HAVEESTABLISHED(tp->t_state)) { 10712 if ((tlen == 0) && (SEQ_LT(save_start, save_rnxt))) { 10713 /* 10714 * DSACK actually handled in the fastpath 10715 * above. 10716 */ 10717 RACK_OPTS_INC(tcp_sack_path_1); 10718 tcp_update_sack_list(tp, save_start, 10719 save_start + save_tlen); 10720 } else if ((tlen > 0) && SEQ_GT(tp->rcv_nxt, save_rnxt)) { 10721 if ((tp->rcv_numsacks >= 1) && 10722 (tp->sackblks[0].end == save_start)) { 10723 /* 10724 * Partial overlap, recorded at todrop 10725 * above. 10726 */ 10727 RACK_OPTS_INC(tcp_sack_path_2a); 10728 tcp_update_sack_list(tp, 10729 tp->sackblks[0].start, 10730 tp->sackblks[0].end); 10731 } else { 10732 RACK_OPTS_INC(tcp_sack_path_2b); 10733 tcp_update_dsack_list(tp, save_start, 10734 save_start + save_tlen); 10735 } 10736 } else if (tlen >= save_tlen) { 10737 /* Update of sackblks. */ 10738 RACK_OPTS_INC(tcp_sack_path_3); 10739 tcp_update_dsack_list(tp, save_start, 10740 save_start + save_tlen); 10741 } else if (tlen > 0) { 10742 RACK_OPTS_INC(tcp_sack_path_4); 10743 tcp_update_dsack_list(tp, save_start, 10744 save_start + tlen); 10745 } 10746 } 10747 } else { 10748 m_freem(m); 10749 thflags &= ~TH_FIN; 10750 } 10751 10752 /* 10753 * If FIN is received ACK the FIN and let the user know that the 10754 * connection is closing. 10755 */ 10756 if (thflags & TH_FIN) { 10757 if (TCPS_HAVERCVDFIN(tp->t_state) == 0) { 10758 /* The socket upcall is handled by socantrcvmore. */ 10759 socantrcvmore(so); 10760 /* 10761 * If connection is half-synchronized (ie NEEDSYN 10762 * flag on) then delay ACK, so it may be piggybacked 10763 * when SYN is sent. Otherwise, since we received a 10764 * FIN then no more input can be expected, send ACK 10765 * now. 10766 */ 10767 if (tp->t_flags & TF_NEEDSYN) { 10768 rack_timer_cancel(tp, rack, 10769 rack->r_ctl.rc_rcvtime, __LINE__); 10770 tp->t_flags |= TF_DELACK; 10771 } else { 10772 tp->t_flags |= TF_ACKNOW; 10773 } 10774 tp->rcv_nxt++; 10775 } 10776 switch (tp->t_state) { 10777 /* 10778 * In SYN_RECEIVED and ESTABLISHED STATES enter the 10779 * CLOSE_WAIT state. 10780 */ 10781 case TCPS_SYN_RECEIVED: 10782 tp->t_starttime = ticks; 10783 /* FALLTHROUGH */ 10784 case TCPS_ESTABLISHED: 10785 rack_timer_cancel(tp, rack, 10786 rack->r_ctl.rc_rcvtime, __LINE__); 10787 tcp_state_change(tp, TCPS_CLOSE_WAIT); 10788 break; 10789 10790 /* 10791 * If still in FIN_WAIT_1 STATE FIN has not been 10792 * acked so enter the CLOSING state. 10793 */ 10794 case TCPS_FIN_WAIT_1: 10795 rack_timer_cancel(tp, rack, 10796 rack->r_ctl.rc_rcvtime, __LINE__); 10797 tcp_state_change(tp, TCPS_CLOSING); 10798 break; 10799 10800 /* 10801 * In FIN_WAIT_2 state enter the TIME_WAIT state, 10802 * starting the time-wait timer, turning off the 10803 * other standard timers. 10804 */ 10805 case TCPS_FIN_WAIT_2: 10806 rack_timer_cancel(tp, rack, 10807 rack->r_ctl.rc_rcvtime, __LINE__); 10808 tcp_twstart(tp); 10809 return (1); 10810 } 10811 } 10812 /* 10813 * Return any desired output. 10814 */ 10815 if ((tp->t_flags & TF_ACKNOW) || 10816 (sbavail(&so->so_snd) > (tp->snd_max - tp->snd_una))) { 10817 rack->r_wanted_output = 1; 10818 } 10819 INP_WLOCK_ASSERT(tp->t_inpcb); 10820 return (0); 10821 } 10822 10823 /* 10824 * Here nothing is really faster, its just that we 10825 * have broken out the fast-data path also just like 10826 * the fast-ack. 10827 */ 10828 static int 10829 rack_do_fastnewdata(struct mbuf *m, struct tcphdr *th, struct socket *so, 10830 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, 10831 uint32_t tiwin, int32_t nxt_pkt, uint8_t iptos) 10832 { 10833 int32_t nsegs; 10834 int32_t newsize = 0; /* automatic sockbuf scaling */ 10835 struct tcp_rack *rack; 10836 #ifdef NETFLIX_SB_LIMITS 10837 u_int mcnt, appended; 10838 #endif 10839 #ifdef TCPDEBUG 10840 /* 10841 * The size of tcp_saveipgen must be the size of the max ip header, 10842 * now IPv6. 10843 */ 10844 u_char tcp_saveipgen[IP6_HDR_LEN]; 10845 struct tcphdr tcp_savetcp; 10846 short ostate = 0; 10847 10848 #endif 10849 /* 10850 * If last ACK falls within this segment's sequence numbers, record 10851 * the timestamp. NOTE that the test is modified according to the 10852 * latest proposal of the tcplw@cray.com list (Braden 1993/04/26). 10853 */ 10854 if (__predict_false(th->th_seq != tp->rcv_nxt)) { 10855 return (0); 10856 } 10857 if (__predict_false(tp->snd_nxt != tp->snd_max)) { 10858 return (0); 10859 } 10860 if (tiwin && tiwin != tp->snd_wnd) { 10861 return (0); 10862 } 10863 if (__predict_false((tp->t_flags & (TF_NEEDSYN | TF_NEEDFIN)))) { 10864 return (0); 10865 } 10866 if (__predict_false((to->to_flags & TOF_TS) && 10867 (TSTMP_LT(to->to_tsval, tp->ts_recent)))) { 10868 return (0); 10869 } 10870 if (__predict_false((th->th_ack != tp->snd_una))) { 10871 return (0); 10872 } 10873 if (__predict_false(tlen > sbspace(&so->so_rcv))) { 10874 return (0); 10875 } 10876 if ((to->to_flags & TOF_TS) != 0 && 10877 SEQ_LEQ(th->th_seq, tp->last_ack_sent)) { 10878 tp->ts_recent_age = tcp_ts_getticks(); 10879 tp->ts_recent = to->to_tsval; 10880 } 10881 rack = (struct tcp_rack *)tp->t_fb_ptr; 10882 /* 10883 * This is a pure, in-sequence data packet with nothing on the 10884 * reassembly queue and we have enough buffer space to take it. 10885 */ 10886 nsegs = max(1, m->m_pkthdr.lro_nsegs); 10887 10888 #ifdef NETFLIX_SB_LIMITS 10889 if (so->so_rcv.sb_shlim) { 10890 mcnt = m_memcnt(m); 10891 appended = 0; 10892 if (counter_fo_get(so->so_rcv.sb_shlim, mcnt, 10893 CFO_NOSLEEP, NULL) == false) { 10894 counter_u64_add(tcp_sb_shlim_fails, 1); 10895 m_freem(m); 10896 return (1); 10897 } 10898 } 10899 #endif 10900 /* Clean receiver SACK report if present */ 10901 if (tp->rcv_numsacks) 10902 tcp_clean_sackreport(tp); 10903 KMOD_TCPSTAT_INC(tcps_preddat); 10904 tp->rcv_nxt += tlen; 10905 if (tlen && 10906 ((tp->t_flags2 & TF2_FBYTES_COMPLETE) == 0) && 10907 (tp->t_fbyte_in == 0)) { 10908 tp->t_fbyte_in = ticks; 10909 if (tp->t_fbyte_in == 0) 10910 tp->t_fbyte_in = 1; 10911 if (tp->t_fbyte_out && tp->t_fbyte_in) 10912 tp->t_flags2 |= TF2_FBYTES_COMPLETE; 10913 } 10914 /* 10915 * Pull snd_wl1 up to prevent seq wrap relative to th_seq. 10916 */ 10917 tp->snd_wl1 = th->th_seq; 10918 /* 10919 * Pull rcv_up up to prevent seq wrap relative to rcv_nxt. 10920 */ 10921 tp->rcv_up = tp->rcv_nxt; 10922 KMOD_TCPSTAT_ADD(tcps_rcvpack, nsegs); 10923 KMOD_TCPSTAT_ADD(tcps_rcvbyte, tlen); 10924 #ifdef TCPDEBUG 10925 if (so->so_options & SO_DEBUG) 10926 tcp_trace(TA_INPUT, ostate, tp, 10927 (void *)tcp_saveipgen, &tcp_savetcp, 0); 10928 #endif 10929 newsize = tcp_autorcvbuf(m, th, so, tp, tlen); 10930 10931 /* Add data to socket buffer. */ 10932 SOCKBUF_LOCK(&so->so_rcv); 10933 if (so->so_rcv.sb_state & SBS_CANTRCVMORE) { 10934 m_freem(m); 10935 } else { 10936 /* 10937 * Set new socket buffer size. Give up when limit is 10938 * reached. 10939 */ 10940 if (newsize) 10941 if (!sbreserve_locked(so, SO_RCV, newsize, NULL)) 10942 so->so_rcv.sb_flags &= ~SB_AUTOSIZE; 10943 m_adj(m, drop_hdrlen); /* delayed header drop */ 10944 #ifdef NETFLIX_SB_LIMITS 10945 appended = 10946 #endif 10947 sbappendstream_locked(&so->so_rcv, m, 0); 10948 ctf_calc_rwin(so, tp); 10949 } 10950 rack_log_wakeup(tp,rack, &so->so_rcv, tlen, 1); 10951 /* NB: sorwakeup_locked() does an implicit unlock. */ 10952 sorwakeup_locked(so); 10953 #ifdef NETFLIX_SB_LIMITS 10954 if (so->so_rcv.sb_shlim && mcnt != appended) 10955 counter_fo_release(so->so_rcv.sb_shlim, mcnt - appended); 10956 #endif 10957 rack_handle_delayed_ack(tp, rack, tlen, 0); 10958 if (tp->snd_una == tp->snd_max) 10959 sack_filter_clear(&rack->r_ctl.rack_sf, tp->snd_una); 10960 return (1); 10961 } 10962 10963 /* 10964 * This subfunction is used to try to highly optimize the 10965 * fast path. We again allow window updates that are 10966 * in sequence to remain in the fast-path. We also add 10967 * in the __predict's to attempt to help the compiler. 10968 * Note that if we return a 0, then we can *not* process 10969 * it and the caller should push the packet into the 10970 * slow-path. 10971 */ 10972 static int 10973 rack_fastack(struct mbuf *m, struct tcphdr *th, struct socket *so, 10974 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, 10975 uint32_t tiwin, int32_t nxt_pkt, uint32_t cts) 10976 { 10977 int32_t acked; 10978 int32_t nsegs; 10979 #ifdef TCPDEBUG 10980 /* 10981 * The size of tcp_saveipgen must be the size of the max ip header, 10982 * now IPv6. 10983 */ 10984 u_char tcp_saveipgen[IP6_HDR_LEN]; 10985 struct tcphdr tcp_savetcp; 10986 short ostate = 0; 10987 #endif 10988 int32_t under_pacing = 0; 10989 struct tcp_rack *rack; 10990 10991 if (__predict_false(SEQ_LEQ(th->th_ack, tp->snd_una))) { 10992 /* Old ack, behind (or duplicate to) the last one rcv'd */ 10993 return (0); 10994 } 10995 if (__predict_false(SEQ_GT(th->th_ack, tp->snd_max))) { 10996 /* Above what we have sent? */ 10997 return (0); 10998 } 10999 if (__predict_false(tp->snd_nxt != tp->snd_max)) { 11000 /* We are retransmitting */ 11001 return (0); 11002 } 11003 if (__predict_false(tiwin == 0)) { 11004 /* zero window */ 11005 return (0); 11006 } 11007 if (__predict_false(tp->t_flags & (TF_NEEDSYN | TF_NEEDFIN))) { 11008 /* We need a SYN or a FIN, unlikely.. */ 11009 return (0); 11010 } 11011 if ((to->to_flags & TOF_TS) && __predict_false(TSTMP_LT(to->to_tsval, tp->ts_recent))) { 11012 /* Timestamp is behind .. old ack with seq wrap? */ 11013 return (0); 11014 } 11015 if (__predict_false(IN_RECOVERY(tp->t_flags))) { 11016 /* Still recovering */ 11017 return (0); 11018 } 11019 rack = (struct tcp_rack *)tp->t_fb_ptr; 11020 if (rack->r_ctl.rc_sacked) { 11021 /* We have sack holes on our scoreboard */ 11022 return (0); 11023 } 11024 /* Ok if we reach here, we can process a fast-ack */ 11025 if (rack->gp_ready && 11026 (rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT)) { 11027 under_pacing = 1; 11028 } 11029 nsegs = max(1, m->m_pkthdr.lro_nsegs); 11030 rack_log_ack(tp, to, th, 0, 0); 11031 /* Did the window get updated? */ 11032 if (tiwin != tp->snd_wnd) { 11033 tp->snd_wnd = tiwin; 11034 rack_validate_fo_sendwin_up(tp, rack); 11035 tp->snd_wl1 = th->th_seq; 11036 if (tp->snd_wnd > tp->max_sndwnd) 11037 tp->max_sndwnd = tp->snd_wnd; 11038 } 11039 /* Do we exit persists? */ 11040 if ((rack->rc_in_persist != 0) && 11041 (tp->snd_wnd >= min((rack->r_ctl.rc_high_rwnd/2), 11042 rack->r_ctl.rc_pace_min_segs))) { 11043 rack_exit_persist(tp, rack, cts); 11044 } 11045 /* Do we enter persists? */ 11046 if ((rack->rc_in_persist == 0) && 11047 (tp->snd_wnd < min((rack->r_ctl.rc_high_rwnd/2), rack->r_ctl.rc_pace_min_segs)) && 11048 TCPS_HAVEESTABLISHED(tp->t_state) && 11049 ((tp->snd_max == tp->snd_una) || rack->rc_has_collapsed) && 11050 sbavail(&tp->t_inpcb->inp_socket->so_snd) && 11051 (sbavail(&tp->t_inpcb->inp_socket->so_snd) > tp->snd_wnd)) { 11052 /* 11053 * Here the rwnd is less than 11054 * the pacing size, we are established, 11055 * nothing is outstanding, and there is 11056 * data to send. Enter persists. 11057 */ 11058 rack_enter_persist(tp, rack, rack->r_ctl.rc_rcvtime); 11059 } 11060 /* 11061 * If last ACK falls within this segment's sequence numbers, record 11062 * the timestamp. NOTE that the test is modified according to the 11063 * latest proposal of the tcplw@cray.com list (Braden 1993/04/26). 11064 */ 11065 if ((to->to_flags & TOF_TS) != 0 && 11066 SEQ_LEQ(th->th_seq, tp->last_ack_sent)) { 11067 tp->ts_recent_age = tcp_ts_getticks(); 11068 tp->ts_recent = to->to_tsval; 11069 } 11070 /* 11071 * This is a pure ack for outstanding data. 11072 */ 11073 KMOD_TCPSTAT_INC(tcps_predack); 11074 11075 /* 11076 * "bad retransmit" recovery. 11077 */ 11078 if ((tp->t_flags & TF_PREVVALID) && 11079 ((tp->t_flags & TF_RCVD_TSTMP) == 0)) { 11080 tp->t_flags &= ~TF_PREVVALID; 11081 if (tp->t_rxtshift == 1 && 11082 (int)(ticks - tp->t_badrxtwin) < 0) 11083 rack_cong_signal(tp, CC_RTO_ERR, th->th_ack, __LINE__); 11084 } 11085 /* 11086 * Recalculate the transmit timer / rtt. 11087 * 11088 * Some boxes send broken timestamp replies during the SYN+ACK 11089 * phase, ignore timestamps of 0 or we could calculate a huge RTT 11090 * and blow up the retransmit timer. 11091 */ 11092 acked = BYTES_THIS_ACK(tp, th); 11093 11094 #ifdef TCP_HHOOK 11095 /* Run HHOOK_TCP_ESTABLISHED_IN helper hooks. */ 11096 hhook_run_tcp_est_in(tp, th, to); 11097 #endif 11098 KMOD_TCPSTAT_ADD(tcps_rcvackpack, nsegs); 11099 KMOD_TCPSTAT_ADD(tcps_rcvackbyte, acked); 11100 if (acked) { 11101 struct mbuf *mfree; 11102 11103 rack_ack_received(tp, rack, th->th_ack, nsegs, CC_ACK, 0); 11104 SOCKBUF_LOCK(&so->so_snd); 11105 mfree = sbcut_locked(&so->so_snd, acked); 11106 tp->snd_una = th->th_ack; 11107 /* Note we want to hold the sb lock through the sendmap adjust */ 11108 rack_adjust_sendmap(rack, &so->so_snd, tp->snd_una); 11109 /* Wake up the socket if we have room to write more */ 11110 rack_log_wakeup(tp,rack, &so->so_snd, acked, 2); 11111 sowwakeup_locked(so); 11112 m_freem(mfree); 11113 tp->t_rxtshift = 0; 11114 RACK_TCPT_RANGESET(tp->t_rxtcur, RACK_REXMTVAL(tp), 11115 rack_rto_min, rack_rto_max, rack->r_ctl.timer_slop); 11116 rack->rc_tlp_in_progress = 0; 11117 rack->r_ctl.rc_tlp_cnt_out = 0; 11118 /* 11119 * If it is the RXT timer we want to 11120 * stop it, so we can restart a TLP. 11121 */ 11122 if (rack->r_ctl.rc_hpts_flags & PACE_TMR_RXT) 11123 rack_timer_cancel(tp, rack, rack->r_ctl.rc_rcvtime, __LINE__); 11124 #ifdef NETFLIX_HTTP_LOGGING 11125 tcp_http_check_for_comp(rack->rc_tp, th->th_ack); 11126 #endif 11127 } 11128 /* 11129 * Let the congestion control algorithm update congestion control 11130 * related information. This typically means increasing the 11131 * congestion window. 11132 */ 11133 if (tp->snd_wnd < ctf_outstanding(tp)) { 11134 /* The peer collapsed the window */ 11135 rack_collapsed_window(rack, ctf_outstanding(tp), __LINE__); 11136 } else if (rack->rc_has_collapsed) 11137 rack_un_collapse_window(rack, __LINE__); 11138 if ((rack->r_collapse_point_valid) && 11139 (SEQ_GT(tp->snd_una, rack->r_ctl.high_collapse_point))) 11140 rack->r_collapse_point_valid = 0; 11141 /* 11142 * Pull snd_wl2 up to prevent seq wrap relative to th_ack. 11143 */ 11144 tp->snd_wl2 = th->th_ack; 11145 tp->t_dupacks = 0; 11146 m_freem(m); 11147 /* ND6_HINT(tp); *//* Some progress has been made. */ 11148 11149 /* 11150 * If all outstanding data are acked, stop retransmit timer, 11151 * otherwise restart timer using current (possibly backed-off) 11152 * value. If process is waiting for space, wakeup/selwakeup/signal. 11153 * If data are ready to send, let tcp_output decide between more 11154 * output or persist. 11155 */ 11156 #ifdef TCPDEBUG 11157 if (so->so_options & SO_DEBUG) 11158 tcp_trace(TA_INPUT, ostate, tp, 11159 (void *)tcp_saveipgen, 11160 &tcp_savetcp, 0); 11161 #endif 11162 if (under_pacing && 11163 (rack->use_fixed_rate == 0) && 11164 (rack->in_probe_rtt == 0) && 11165 rack->rc_gp_dyn_mul && 11166 rack->rc_always_pace) { 11167 /* Check if we are dragging bottom */ 11168 rack_check_bottom_drag(tp, rack, so, acked); 11169 } 11170 if (tp->snd_una == tp->snd_max) { 11171 tp->t_flags &= ~TF_PREVVALID; 11172 rack->r_ctl.retran_during_recovery = 0; 11173 rack->r_ctl.dsack_byte_cnt = 0; 11174 rack->r_ctl.rc_went_idle_time = tcp_get_usecs(NULL); 11175 if (rack->r_ctl.rc_went_idle_time == 0) 11176 rack->r_ctl.rc_went_idle_time = 1; 11177 rack_log_progress_event(rack, tp, 0, PROGRESS_CLEAR, __LINE__); 11178 if (sbavail(&tp->t_inpcb->inp_socket->so_snd) == 0) 11179 tp->t_acktime = 0; 11180 rack_timer_cancel(tp, rack, rack->r_ctl.rc_rcvtime, __LINE__); 11181 } 11182 if (acked && rack->r_fast_output) 11183 rack_gain_for_fastoutput(rack, tp, so, (uint32_t)acked); 11184 if (sbavail(&so->so_snd)) { 11185 rack->r_wanted_output = 1; 11186 } 11187 return (1); 11188 } 11189 11190 /* 11191 * Return value of 1, the TCB is unlocked and most 11192 * likely gone, return value of 0, the TCP is still 11193 * locked. 11194 */ 11195 static int 11196 rack_do_syn_sent(struct mbuf *m, struct tcphdr *th, struct socket *so, 11197 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, 11198 uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos) 11199 { 11200 int32_t ret_val = 0; 11201 int32_t todrop; 11202 int32_t ourfinisacked = 0; 11203 struct tcp_rack *rack; 11204 11205 ctf_calc_rwin(so, tp); 11206 /* 11207 * If the state is SYN_SENT: if seg contains an ACK, but not for our 11208 * SYN, drop the input. if seg contains a RST, then drop the 11209 * connection. if seg does not contain SYN, then drop it. Otherwise 11210 * this is an acceptable SYN segment initialize tp->rcv_nxt and 11211 * tp->irs if seg contains ack then advance tp->snd_una if seg 11212 * contains an ECE and ECN support is enabled, the stream is ECN 11213 * capable. if SYN has been acked change to ESTABLISHED else 11214 * SYN_RCVD state arrange for segment to be acked (eventually) 11215 * continue processing rest of data/controls. 11216 */ 11217 if ((thflags & TH_ACK) && 11218 (SEQ_LEQ(th->th_ack, tp->iss) || 11219 SEQ_GT(th->th_ack, tp->snd_max))) { 11220 tcp_log_end_status(tp, TCP_EI_STATUS_RST_IN_FRONT); 11221 ctf_do_dropwithreset(m, tp, th, BANDLIM_RST_OPENPORT, tlen); 11222 return (1); 11223 } 11224 if ((thflags & (TH_ACK | TH_RST)) == (TH_ACK | TH_RST)) { 11225 TCP_PROBE5(connect__refused, NULL, tp, 11226 mtod(m, const char *), tp, th); 11227 tp = tcp_drop(tp, ECONNREFUSED); 11228 ctf_do_drop(m, tp); 11229 return (1); 11230 } 11231 if (thflags & TH_RST) { 11232 ctf_do_drop(m, tp); 11233 return (1); 11234 } 11235 if (!(thflags & TH_SYN)) { 11236 ctf_do_drop(m, tp); 11237 return (1); 11238 } 11239 tp->irs = th->th_seq; 11240 tcp_rcvseqinit(tp); 11241 rack = (struct tcp_rack *)tp->t_fb_ptr; 11242 if (thflags & TH_ACK) { 11243 int tfo_partial = 0; 11244 11245 KMOD_TCPSTAT_INC(tcps_connects); 11246 soisconnected(so); 11247 #ifdef MAC 11248 mac_socketpeer_set_from_mbuf(m, so); 11249 #endif 11250 /* Do window scaling on this connection? */ 11251 if ((tp->t_flags & (TF_RCVD_SCALE | TF_REQ_SCALE)) == 11252 (TF_RCVD_SCALE | TF_REQ_SCALE)) { 11253 tp->rcv_scale = tp->request_r_scale; 11254 } 11255 tp->rcv_adv += min(tp->rcv_wnd, 11256 TCP_MAXWIN << tp->rcv_scale); 11257 /* 11258 * If not all the data that was sent in the TFO SYN 11259 * has been acked, resend the remainder right away. 11260 */ 11261 if (IS_FASTOPEN(tp->t_flags) && 11262 (tp->snd_una != tp->snd_max)) { 11263 tp->snd_nxt = th->th_ack; 11264 tfo_partial = 1; 11265 } 11266 /* 11267 * If there's data, delay ACK; if there's also a FIN ACKNOW 11268 * will be turned on later. 11269 */ 11270 if (DELAY_ACK(tp, tlen) && tlen != 0 && !tfo_partial) { 11271 rack_timer_cancel(tp, rack, 11272 rack->r_ctl.rc_rcvtime, __LINE__); 11273 tp->t_flags |= TF_DELACK; 11274 } else { 11275 rack->r_wanted_output = 1; 11276 tp->t_flags |= TF_ACKNOW; 11277 rack->rc_dack_toggle = 0; 11278 } 11279 11280 tcp_ecn_input_syn_sent(tp, thflags, iptos); 11281 11282 if (SEQ_GT(th->th_ack, tp->snd_una)) { 11283 /* 11284 * We advance snd_una for the 11285 * fast open case. If th_ack is 11286 * acknowledging data beyond 11287 * snd_una we can't just call 11288 * ack-processing since the 11289 * data stream in our send-map 11290 * will start at snd_una + 1 (one 11291 * beyond the SYN). If its just 11292 * equal we don't need to do that 11293 * and there is no send_map. 11294 */ 11295 tp->snd_una++; 11296 } 11297 /* 11298 * Received <SYN,ACK> in SYN_SENT[*] state. Transitions: 11299 * SYN_SENT --> ESTABLISHED SYN_SENT* --> FIN_WAIT_1 11300 */ 11301 tp->t_starttime = ticks; 11302 if (tp->t_flags & TF_NEEDFIN) { 11303 tcp_state_change(tp, TCPS_FIN_WAIT_1); 11304 tp->t_flags &= ~TF_NEEDFIN; 11305 thflags &= ~TH_SYN; 11306 } else { 11307 tcp_state_change(tp, TCPS_ESTABLISHED); 11308 TCP_PROBE5(connect__established, NULL, tp, 11309 mtod(m, const char *), tp, th); 11310 rack_cc_conn_init(tp); 11311 } 11312 } else { 11313 /* 11314 * Received initial SYN in SYN-SENT[*] state => simultaneous 11315 * open. If segment contains CC option and there is a 11316 * cached CC, apply TAO test. If it succeeds, connection is * 11317 * half-synchronized. Otherwise, do 3-way handshake: 11318 * SYN-SENT -> SYN-RECEIVED SYN-SENT* -> SYN-RECEIVED* If 11319 * there was no CC option, clear cached CC value. 11320 */ 11321 tp->t_flags |= (TF_ACKNOW | TF_NEEDSYN); 11322 tcp_state_change(tp, TCPS_SYN_RECEIVED); 11323 } 11324 INP_WLOCK_ASSERT(tp->t_inpcb); 11325 /* 11326 * Advance th->th_seq to correspond to first data byte. If data, 11327 * trim to stay within window, dropping FIN if necessary. 11328 */ 11329 th->th_seq++; 11330 if (tlen > tp->rcv_wnd) { 11331 todrop = tlen - tp->rcv_wnd; 11332 m_adj(m, -todrop); 11333 tlen = tp->rcv_wnd; 11334 thflags &= ~TH_FIN; 11335 KMOD_TCPSTAT_INC(tcps_rcvpackafterwin); 11336 KMOD_TCPSTAT_ADD(tcps_rcvbyteafterwin, todrop); 11337 } 11338 tp->snd_wl1 = th->th_seq - 1; 11339 tp->rcv_up = th->th_seq; 11340 /* 11341 * Client side of transaction: already sent SYN and data. If the 11342 * remote host used T/TCP to validate the SYN, our data will be 11343 * ACK'd; if so, enter normal data segment processing in the middle 11344 * of step 5, ack processing. Otherwise, goto step 6. 11345 */ 11346 if (thflags & TH_ACK) { 11347 /* For syn-sent we need to possibly update the rtt */ 11348 if ((to->to_flags & TOF_TS) != 0 && to->to_tsecr) { 11349 uint32_t t, mcts; 11350 11351 mcts = tcp_ts_getticks(); 11352 t = (mcts - to->to_tsecr) * HPTS_USEC_IN_MSEC; 11353 if (!tp->t_rttlow || tp->t_rttlow > t) 11354 tp->t_rttlow = t; 11355 rack_log_rtt_sample_calc(rack, t, (to->to_tsecr * 1000), (mcts * 1000), 4); 11356 tcp_rack_xmit_timer(rack, t + 1, 1, t, 0, NULL, 2); 11357 tcp_rack_xmit_timer_commit(rack, tp); 11358 } 11359 if (rack_process_ack(m, th, so, tp, to, tiwin, tlen, &ourfinisacked, thflags, &ret_val)) 11360 return (ret_val); 11361 /* We may have changed to FIN_WAIT_1 above */ 11362 if (tp->t_state == TCPS_FIN_WAIT_1) { 11363 /* 11364 * In FIN_WAIT_1 STATE in addition to the processing 11365 * for the ESTABLISHED state if our FIN is now 11366 * acknowledged then enter FIN_WAIT_2. 11367 */ 11368 if (ourfinisacked) { 11369 /* 11370 * If we can't receive any more data, then 11371 * closing user can proceed. Starting the 11372 * timer is contrary to the specification, 11373 * but if we don't get a FIN we'll hang 11374 * forever. 11375 * 11376 * XXXjl: we should release the tp also, and 11377 * use a compressed state. 11378 */ 11379 if (so->so_rcv.sb_state & SBS_CANTRCVMORE) { 11380 soisdisconnected(so); 11381 tcp_timer_activate(tp, TT_2MSL, 11382 (tcp_fast_finwait2_recycle ? 11383 tcp_finwait2_timeout : 11384 TP_MAXIDLE(tp))); 11385 } 11386 tcp_state_change(tp, TCPS_FIN_WAIT_2); 11387 } 11388 } 11389 } 11390 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 11391 tiwin, thflags, nxt_pkt)); 11392 } 11393 11394 /* 11395 * Return value of 1, the TCB is unlocked and most 11396 * likely gone, return value of 0, the TCP is still 11397 * locked. 11398 */ 11399 static int 11400 rack_do_syn_recv(struct mbuf *m, struct tcphdr *th, struct socket *so, 11401 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, 11402 uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos) 11403 { 11404 struct tcp_rack *rack; 11405 int32_t ret_val = 0; 11406 int32_t ourfinisacked = 0; 11407 11408 ctf_calc_rwin(so, tp); 11409 if ((thflags & TH_ACK) && 11410 (SEQ_LEQ(th->th_ack, tp->snd_una) || 11411 SEQ_GT(th->th_ack, tp->snd_max))) { 11412 tcp_log_end_status(tp, TCP_EI_STATUS_RST_IN_FRONT); 11413 ctf_do_dropwithreset(m, tp, th, BANDLIM_RST_OPENPORT, tlen); 11414 return (1); 11415 } 11416 rack = (struct tcp_rack *)tp->t_fb_ptr; 11417 if (IS_FASTOPEN(tp->t_flags)) { 11418 /* 11419 * When a TFO connection is in SYN_RECEIVED, the 11420 * only valid packets are the initial SYN, a 11421 * retransmit/copy of the initial SYN (possibly with 11422 * a subset of the original data), a valid ACK, a 11423 * FIN, or a RST. 11424 */ 11425 if ((thflags & (TH_SYN | TH_ACK)) == (TH_SYN | TH_ACK)) { 11426 tcp_log_end_status(tp, TCP_EI_STATUS_RST_IN_FRONT); 11427 ctf_do_dropwithreset(m, tp, th, BANDLIM_RST_OPENPORT, tlen); 11428 return (1); 11429 } else if (thflags & TH_SYN) { 11430 /* non-initial SYN is ignored */ 11431 if ((rack->r_ctl.rc_hpts_flags & PACE_TMR_RXT) || 11432 (rack->r_ctl.rc_hpts_flags & PACE_TMR_TLP) || 11433 (rack->r_ctl.rc_hpts_flags & PACE_TMR_RACK)) { 11434 ctf_do_drop(m, NULL); 11435 return (0); 11436 } 11437 } else if (!(thflags & (TH_ACK | TH_FIN | TH_RST))) { 11438 ctf_do_drop(m, NULL); 11439 return (0); 11440 } 11441 } 11442 11443 if ((thflags & TH_RST) || 11444 (tp->t_fin_is_rst && (thflags & TH_FIN))) 11445 return (__ctf_process_rst(m, th, so, tp, 11446 &rack->r_ctl.challenge_ack_ts, 11447 &rack->r_ctl.challenge_ack_cnt)); 11448 /* 11449 * RFC 1323 PAWS: If we have a timestamp reply on this segment and 11450 * it's less than ts_recent, drop it. 11451 */ 11452 if ((to->to_flags & TOF_TS) != 0 && tp->ts_recent && 11453 TSTMP_LT(to->to_tsval, tp->ts_recent)) { 11454 if (ctf_ts_check(m, th, tp, tlen, thflags, &ret_val)) 11455 return (ret_val); 11456 } 11457 /* 11458 * In the SYN-RECEIVED state, validate that the packet belongs to 11459 * this connection before trimming the data to fit the receive 11460 * window. Check the sequence number versus IRS since we know the 11461 * sequence numbers haven't wrapped. This is a partial fix for the 11462 * "LAND" DoS attack. 11463 */ 11464 if (SEQ_LT(th->th_seq, tp->irs)) { 11465 tcp_log_end_status(tp, TCP_EI_STATUS_RST_IN_FRONT); 11466 ctf_do_dropwithreset(m, tp, th, BANDLIM_RST_OPENPORT, tlen); 11467 return (1); 11468 } 11469 if (_ctf_drop_checks(to, m, th, tp, &tlen, &thflags, &drop_hdrlen, &ret_val, 11470 &rack->r_ctl.challenge_ack_ts, 11471 &rack->r_ctl.challenge_ack_cnt)) { 11472 return (ret_val); 11473 } 11474 /* 11475 * If last ACK falls within this segment's sequence numbers, record 11476 * its timestamp. NOTE: 1) That the test incorporates suggestions 11477 * from the latest proposal of the tcplw@cray.com list (Braden 11478 * 1993/04/26). 2) That updating only on newer timestamps interferes 11479 * with our earlier PAWS tests, so this check should be solely 11480 * predicated on the sequence space of this segment. 3) That we 11481 * modify the segment boundary check to be Last.ACK.Sent <= SEG.SEQ 11482 * + SEG.Len instead of RFC1323's Last.ACK.Sent < SEG.SEQ + 11483 * SEG.Len, This modified check allows us to overcome RFC1323's 11484 * limitations as described in Stevens TCP/IP Illustrated Vol. 2 11485 * p.869. In such cases, we can still calculate the RTT correctly 11486 * when RCV.NXT == Last.ACK.Sent. 11487 */ 11488 if ((to->to_flags & TOF_TS) != 0 && 11489 SEQ_LEQ(th->th_seq, tp->last_ack_sent) && 11490 SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen + 11491 ((thflags & (TH_SYN | TH_FIN)) != 0))) { 11492 tp->ts_recent_age = tcp_ts_getticks(); 11493 tp->ts_recent = to->to_tsval; 11494 } 11495 tp->snd_wnd = tiwin; 11496 rack_validate_fo_sendwin_up(tp, rack); 11497 /* 11498 * If the ACK bit is off: if in SYN-RECEIVED state or SENDSYN flag 11499 * is on (half-synchronized state), then queue data for later 11500 * processing; else drop segment and return. 11501 */ 11502 if ((thflags & TH_ACK) == 0) { 11503 if (IS_FASTOPEN(tp->t_flags)) { 11504 rack_cc_conn_init(tp); 11505 } 11506 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 11507 tiwin, thflags, nxt_pkt)); 11508 } 11509 KMOD_TCPSTAT_INC(tcps_connects); 11510 soisconnected(so); 11511 /* Do window scaling? */ 11512 if ((tp->t_flags & (TF_RCVD_SCALE | TF_REQ_SCALE)) == 11513 (TF_RCVD_SCALE | TF_REQ_SCALE)) { 11514 tp->rcv_scale = tp->request_r_scale; 11515 } 11516 /* 11517 * Make transitions: SYN-RECEIVED -> ESTABLISHED SYN-RECEIVED* -> 11518 * FIN-WAIT-1 11519 */ 11520 tp->t_starttime = ticks; 11521 if (IS_FASTOPEN(tp->t_flags) && tp->t_tfo_pending) { 11522 tcp_fastopen_decrement_counter(tp->t_tfo_pending); 11523 tp->t_tfo_pending = NULL; 11524 } 11525 if (tp->t_flags & TF_NEEDFIN) { 11526 tcp_state_change(tp, TCPS_FIN_WAIT_1); 11527 tp->t_flags &= ~TF_NEEDFIN; 11528 } else { 11529 tcp_state_change(tp, TCPS_ESTABLISHED); 11530 TCP_PROBE5(accept__established, NULL, tp, 11531 mtod(m, const char *), tp, th); 11532 /* 11533 * TFO connections call cc_conn_init() during SYN 11534 * processing. Calling it again here for such connections 11535 * is not harmless as it would undo the snd_cwnd reduction 11536 * that occurs when a TFO SYN|ACK is retransmitted. 11537 */ 11538 if (!IS_FASTOPEN(tp->t_flags)) 11539 rack_cc_conn_init(tp); 11540 } 11541 /* 11542 * Account for the ACK of our SYN prior to 11543 * regular ACK processing below, except for 11544 * simultaneous SYN, which is handled later. 11545 */ 11546 if (SEQ_GT(th->th_ack, tp->snd_una) && !(tp->t_flags & TF_NEEDSYN)) 11547 tp->snd_una++; 11548 /* 11549 * If segment contains data or ACK, will call tcp_reass() later; if 11550 * not, do so now to pass queued data to user. 11551 */ 11552 if (tlen == 0 && (thflags & TH_FIN) == 0) { 11553 (void) tcp_reass(tp, (struct tcphdr *)0, NULL, 0, 11554 (struct mbuf *)0); 11555 if (tp->t_flags & TF_WAKESOR) { 11556 tp->t_flags &= ~TF_WAKESOR; 11557 /* NB: sorwakeup_locked() does an implicit unlock. */ 11558 sorwakeup_locked(so); 11559 } 11560 } 11561 tp->snd_wl1 = th->th_seq - 1; 11562 /* For syn-recv we need to possibly update the rtt */ 11563 if ((to->to_flags & TOF_TS) != 0 && to->to_tsecr) { 11564 uint32_t t, mcts; 11565 11566 mcts = tcp_ts_getticks(); 11567 t = (mcts - to->to_tsecr) * HPTS_USEC_IN_MSEC; 11568 if (!tp->t_rttlow || tp->t_rttlow > t) 11569 tp->t_rttlow = t; 11570 rack_log_rtt_sample_calc(rack, t, (to->to_tsecr * 1000), (mcts * 1000), 5); 11571 tcp_rack_xmit_timer(rack, t + 1, 1, t, 0, NULL, 2); 11572 tcp_rack_xmit_timer_commit(rack, tp); 11573 } 11574 if (rack_process_ack(m, th, so, tp, to, tiwin, tlen, &ourfinisacked, thflags, &ret_val)) { 11575 return (ret_val); 11576 } 11577 if (tp->t_state == TCPS_FIN_WAIT_1) { 11578 /* We could have went to FIN_WAIT_1 (or EST) above */ 11579 /* 11580 * In FIN_WAIT_1 STATE in addition to the processing for the 11581 * ESTABLISHED state if our FIN is now acknowledged then 11582 * enter FIN_WAIT_2. 11583 */ 11584 if (ourfinisacked) { 11585 /* 11586 * If we can't receive any more data, then closing 11587 * user can proceed. Starting the timer is contrary 11588 * to the specification, but if we don't get a FIN 11589 * we'll hang forever. 11590 * 11591 * XXXjl: we should release the tp also, and use a 11592 * compressed state. 11593 */ 11594 if (so->so_rcv.sb_state & SBS_CANTRCVMORE) { 11595 soisdisconnected(so); 11596 tcp_timer_activate(tp, TT_2MSL, 11597 (tcp_fast_finwait2_recycle ? 11598 tcp_finwait2_timeout : 11599 TP_MAXIDLE(tp))); 11600 } 11601 tcp_state_change(tp, TCPS_FIN_WAIT_2); 11602 } 11603 } 11604 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 11605 tiwin, thflags, nxt_pkt)); 11606 } 11607 11608 /* 11609 * Return value of 1, the TCB is unlocked and most 11610 * likely gone, return value of 0, the TCP is still 11611 * locked. 11612 */ 11613 static int 11614 rack_do_established(struct mbuf *m, struct tcphdr *th, struct socket *so, 11615 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, 11616 uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos) 11617 { 11618 int32_t ret_val = 0; 11619 struct tcp_rack *rack; 11620 11621 /* 11622 * Header prediction: check for the two common cases of a 11623 * uni-directional data xfer. If the packet has no control flags, 11624 * is in-sequence, the window didn't change and we're not 11625 * retransmitting, it's a candidate. If the length is zero and the 11626 * ack moved forward, we're the sender side of the xfer. Just free 11627 * the data acked & wake any higher level process that was blocked 11628 * waiting for space. If the length is non-zero and the ack didn't 11629 * move, we're the receiver side. If we're getting packets in-order 11630 * (the reassembly queue is empty), add the data toc The socket 11631 * buffer and note that we need a delayed ack. Make sure that the 11632 * hidden state-flags are also off. Since we check for 11633 * TCPS_ESTABLISHED first, it can only be TH_NEEDSYN. 11634 */ 11635 rack = (struct tcp_rack *)tp->t_fb_ptr; 11636 if (__predict_true(((to->to_flags & TOF_SACK) == 0)) && 11637 __predict_true((thflags & (TH_SYN | TH_FIN | TH_RST | TH_ACK)) == TH_ACK) && 11638 __predict_true(SEGQ_EMPTY(tp)) && 11639 __predict_true(th->th_seq == tp->rcv_nxt)) { 11640 if (tlen == 0) { 11641 if (rack_fastack(m, th, so, tp, to, drop_hdrlen, tlen, 11642 tiwin, nxt_pkt, rack->r_ctl.rc_rcvtime)) { 11643 return (0); 11644 } 11645 } else { 11646 if (rack_do_fastnewdata(m, th, so, tp, to, drop_hdrlen, tlen, 11647 tiwin, nxt_pkt, iptos)) { 11648 return (0); 11649 } 11650 } 11651 } 11652 ctf_calc_rwin(so, tp); 11653 11654 if ((thflags & TH_RST) || 11655 (tp->t_fin_is_rst && (thflags & TH_FIN))) 11656 return (__ctf_process_rst(m, th, so, tp, 11657 &rack->r_ctl.challenge_ack_ts, 11658 &rack->r_ctl.challenge_ack_cnt)); 11659 11660 /* 11661 * RFC5961 Section 4.2 Send challenge ACK for any SYN in 11662 * synchronized state. 11663 */ 11664 if (thflags & TH_SYN) { 11665 ctf_challenge_ack(m, th, tp, &ret_val); 11666 return (ret_val); 11667 } 11668 /* 11669 * RFC 1323 PAWS: If we have a timestamp reply on this segment and 11670 * it's less than ts_recent, drop it. 11671 */ 11672 if ((to->to_flags & TOF_TS) != 0 && tp->ts_recent && 11673 TSTMP_LT(to->to_tsval, tp->ts_recent)) { 11674 if (ctf_ts_check(m, th, tp, tlen, thflags, &ret_val)) 11675 return (ret_val); 11676 } 11677 if (_ctf_drop_checks(to, m, th, tp, &tlen, &thflags, &drop_hdrlen, &ret_val, 11678 &rack->r_ctl.challenge_ack_ts, 11679 &rack->r_ctl.challenge_ack_cnt)) { 11680 return (ret_val); 11681 } 11682 /* 11683 * If last ACK falls within this segment's sequence numbers, record 11684 * its timestamp. NOTE: 1) That the test incorporates suggestions 11685 * from the latest proposal of the tcplw@cray.com list (Braden 11686 * 1993/04/26). 2) That updating only on newer timestamps interferes 11687 * with our earlier PAWS tests, so this check should be solely 11688 * predicated on the sequence space of this segment. 3) That we 11689 * modify the segment boundary check to be Last.ACK.Sent <= SEG.SEQ 11690 * + SEG.Len instead of RFC1323's Last.ACK.Sent < SEG.SEQ + 11691 * SEG.Len, This modified check allows us to overcome RFC1323's 11692 * limitations as described in Stevens TCP/IP Illustrated Vol. 2 11693 * p.869. In such cases, we can still calculate the RTT correctly 11694 * when RCV.NXT == Last.ACK.Sent. 11695 */ 11696 if ((to->to_flags & TOF_TS) != 0 && 11697 SEQ_LEQ(th->th_seq, tp->last_ack_sent) && 11698 SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen + 11699 ((thflags & (TH_SYN | TH_FIN)) != 0))) { 11700 tp->ts_recent_age = tcp_ts_getticks(); 11701 tp->ts_recent = to->to_tsval; 11702 } 11703 /* 11704 * If the ACK bit is off: if in SYN-RECEIVED state or SENDSYN flag 11705 * is on (half-synchronized state), then queue data for later 11706 * processing; else drop segment and return. 11707 */ 11708 if ((thflags & TH_ACK) == 0) { 11709 if (tp->t_flags & TF_NEEDSYN) { 11710 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 11711 tiwin, thflags, nxt_pkt)); 11712 11713 } else if (tp->t_flags & TF_ACKNOW) { 11714 ctf_do_dropafterack(m, tp, th, thflags, tlen, &ret_val); 11715 ((struct tcp_rack *)tp->t_fb_ptr)->r_wanted_output = 1; 11716 return (ret_val); 11717 } else { 11718 ctf_do_drop(m, NULL); 11719 return (0); 11720 } 11721 } 11722 /* 11723 * Ack processing. 11724 */ 11725 if (rack_process_ack(m, th, so, tp, to, tiwin, tlen, NULL, thflags, &ret_val)) { 11726 return (ret_val); 11727 } 11728 if (sbavail(&so->so_snd)) { 11729 if (ctf_progress_timeout_check(tp, true)) { 11730 rack_log_progress_event(rack, tp, tick, PROGRESS_DROP, __LINE__); 11731 ctf_do_dropwithreset_conn(m, tp, th, BANDLIM_RST_OPENPORT, tlen); 11732 return (1); 11733 } 11734 } 11735 /* State changes only happen in rack_process_data() */ 11736 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 11737 tiwin, thflags, nxt_pkt)); 11738 } 11739 11740 /* 11741 * Return value of 1, the TCB is unlocked and most 11742 * likely gone, return value of 0, the TCP is still 11743 * locked. 11744 */ 11745 static int 11746 rack_do_close_wait(struct mbuf *m, struct tcphdr *th, struct socket *so, 11747 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, 11748 uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos) 11749 { 11750 int32_t ret_val = 0; 11751 struct tcp_rack *rack; 11752 11753 rack = (struct tcp_rack *)tp->t_fb_ptr; 11754 ctf_calc_rwin(so, tp); 11755 if ((thflags & TH_RST) || 11756 (tp->t_fin_is_rst && (thflags & TH_FIN))) 11757 return (__ctf_process_rst(m, th, so, tp, 11758 &rack->r_ctl.challenge_ack_ts, 11759 &rack->r_ctl.challenge_ack_cnt)); 11760 /* 11761 * RFC5961 Section 4.2 Send challenge ACK for any SYN in 11762 * synchronized state. 11763 */ 11764 if (thflags & TH_SYN) { 11765 ctf_challenge_ack(m, th, tp, &ret_val); 11766 return (ret_val); 11767 } 11768 /* 11769 * RFC 1323 PAWS: If we have a timestamp reply on this segment and 11770 * it's less than ts_recent, drop it. 11771 */ 11772 if ((to->to_flags & TOF_TS) != 0 && tp->ts_recent && 11773 TSTMP_LT(to->to_tsval, tp->ts_recent)) { 11774 if (ctf_ts_check(m, th, tp, tlen, thflags, &ret_val)) 11775 return (ret_val); 11776 } 11777 if (_ctf_drop_checks(to, m, th, tp, &tlen, &thflags, &drop_hdrlen, &ret_val, 11778 &rack->r_ctl.challenge_ack_ts, 11779 &rack->r_ctl.challenge_ack_cnt)) { 11780 return (ret_val); 11781 } 11782 /* 11783 * If last ACK falls within this segment's sequence numbers, record 11784 * its timestamp. NOTE: 1) That the test incorporates suggestions 11785 * from the latest proposal of the tcplw@cray.com list (Braden 11786 * 1993/04/26). 2) That updating only on newer timestamps interferes 11787 * with our earlier PAWS tests, so this check should be solely 11788 * predicated on the sequence space of this segment. 3) That we 11789 * modify the segment boundary check to be Last.ACK.Sent <= SEG.SEQ 11790 * + SEG.Len instead of RFC1323's Last.ACK.Sent < SEG.SEQ + 11791 * SEG.Len, This modified check allows us to overcome RFC1323's 11792 * limitations as described in Stevens TCP/IP Illustrated Vol. 2 11793 * p.869. In such cases, we can still calculate the RTT correctly 11794 * when RCV.NXT == Last.ACK.Sent. 11795 */ 11796 if ((to->to_flags & TOF_TS) != 0 && 11797 SEQ_LEQ(th->th_seq, tp->last_ack_sent) && 11798 SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen + 11799 ((thflags & (TH_SYN | TH_FIN)) != 0))) { 11800 tp->ts_recent_age = tcp_ts_getticks(); 11801 tp->ts_recent = to->to_tsval; 11802 } 11803 /* 11804 * If the ACK bit is off: if in SYN-RECEIVED state or SENDSYN flag 11805 * is on (half-synchronized state), then queue data for later 11806 * processing; else drop segment and return. 11807 */ 11808 if ((thflags & TH_ACK) == 0) { 11809 if (tp->t_flags & TF_NEEDSYN) { 11810 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 11811 tiwin, thflags, nxt_pkt)); 11812 11813 } else if (tp->t_flags & TF_ACKNOW) { 11814 ctf_do_dropafterack(m, tp, th, thflags, tlen, &ret_val); 11815 ((struct tcp_rack *)tp->t_fb_ptr)->r_wanted_output = 1; 11816 return (ret_val); 11817 } else { 11818 ctf_do_drop(m, NULL); 11819 return (0); 11820 } 11821 } 11822 /* 11823 * Ack processing. 11824 */ 11825 if (rack_process_ack(m, th, so, tp, to, tiwin, tlen, NULL, thflags, &ret_val)) { 11826 return (ret_val); 11827 } 11828 if (sbavail(&so->so_snd)) { 11829 if (ctf_progress_timeout_check(tp, true)) { 11830 rack_log_progress_event((struct tcp_rack *)tp->t_fb_ptr, 11831 tp, tick, PROGRESS_DROP, __LINE__); 11832 ctf_do_dropwithreset_conn(m, tp, th, BANDLIM_RST_OPENPORT, tlen); 11833 return (1); 11834 } 11835 } 11836 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 11837 tiwin, thflags, nxt_pkt)); 11838 } 11839 11840 static int 11841 rack_check_data_after_close(struct mbuf *m, 11842 struct tcpcb *tp, int32_t *tlen, struct tcphdr *th, struct socket *so) 11843 { 11844 struct tcp_rack *rack; 11845 11846 rack = (struct tcp_rack *)tp->t_fb_ptr; 11847 if (rack->rc_allow_data_af_clo == 0) { 11848 close_now: 11849 tcp_log_end_status(tp, TCP_EI_STATUS_DATA_A_CLOSE); 11850 /* tcp_close will kill the inp pre-log the Reset */ 11851 tcp_log_end_status(tp, TCP_EI_STATUS_SERVER_RST); 11852 tp = tcp_close(tp); 11853 KMOD_TCPSTAT_INC(tcps_rcvafterclose); 11854 ctf_do_dropwithreset(m, tp, th, BANDLIM_UNLIMITED, (*tlen)); 11855 return (1); 11856 } 11857 if (sbavail(&so->so_snd) == 0) 11858 goto close_now; 11859 /* Ok we allow data that is ignored and a followup reset */ 11860 tcp_log_end_status(tp, TCP_EI_STATUS_DATA_A_CLOSE); 11861 tp->rcv_nxt = th->th_seq + *tlen; 11862 tp->t_flags2 |= TF2_DROP_AF_DATA; 11863 rack->r_wanted_output = 1; 11864 *tlen = 0; 11865 return (0); 11866 } 11867 11868 /* 11869 * Return value of 1, the TCB is unlocked and most 11870 * likely gone, return value of 0, the TCP is still 11871 * locked. 11872 */ 11873 static int 11874 rack_do_fin_wait_1(struct mbuf *m, struct tcphdr *th, struct socket *so, 11875 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, 11876 uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos) 11877 { 11878 int32_t ret_val = 0; 11879 int32_t ourfinisacked = 0; 11880 struct tcp_rack *rack; 11881 11882 rack = (struct tcp_rack *)tp->t_fb_ptr; 11883 ctf_calc_rwin(so, tp); 11884 11885 if ((thflags & TH_RST) || 11886 (tp->t_fin_is_rst && (thflags & TH_FIN))) 11887 return (__ctf_process_rst(m, th, so, tp, 11888 &rack->r_ctl.challenge_ack_ts, 11889 &rack->r_ctl.challenge_ack_cnt)); 11890 /* 11891 * RFC5961 Section 4.2 Send challenge ACK for any SYN in 11892 * synchronized state. 11893 */ 11894 if (thflags & TH_SYN) { 11895 ctf_challenge_ack(m, th, tp, &ret_val); 11896 return (ret_val); 11897 } 11898 /* 11899 * RFC 1323 PAWS: If we have a timestamp reply on this segment and 11900 * it's less than ts_recent, drop it. 11901 */ 11902 if ((to->to_flags & TOF_TS) != 0 && tp->ts_recent && 11903 TSTMP_LT(to->to_tsval, tp->ts_recent)) { 11904 if (ctf_ts_check(m, th, tp, tlen, thflags, &ret_val)) 11905 return (ret_val); 11906 } 11907 if (_ctf_drop_checks(to, m, th, tp, &tlen, &thflags, &drop_hdrlen, &ret_val, 11908 &rack->r_ctl.challenge_ack_ts, 11909 &rack->r_ctl.challenge_ack_cnt)) { 11910 return (ret_val); 11911 } 11912 /* 11913 * If new data are received on a connection after the user processes 11914 * are gone, then RST the other end. 11915 */ 11916 if ((tp->t_flags & TF_CLOSED) && tlen && 11917 rack_check_data_after_close(m, tp, &tlen, th, so)) 11918 return (1); 11919 /* 11920 * If last ACK falls within this segment's sequence numbers, record 11921 * its timestamp. NOTE: 1) That the test incorporates suggestions 11922 * from the latest proposal of the tcplw@cray.com list (Braden 11923 * 1993/04/26). 2) That updating only on newer timestamps interferes 11924 * with our earlier PAWS tests, so this check should be solely 11925 * predicated on the sequence space of this segment. 3) That we 11926 * modify the segment boundary check to be Last.ACK.Sent <= SEG.SEQ 11927 * + SEG.Len instead of RFC1323's Last.ACK.Sent < SEG.SEQ + 11928 * SEG.Len, This modified check allows us to overcome RFC1323's 11929 * limitations as described in Stevens TCP/IP Illustrated Vol. 2 11930 * p.869. In such cases, we can still calculate the RTT correctly 11931 * when RCV.NXT == Last.ACK.Sent. 11932 */ 11933 if ((to->to_flags & TOF_TS) != 0 && 11934 SEQ_LEQ(th->th_seq, tp->last_ack_sent) && 11935 SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen + 11936 ((thflags & (TH_SYN | TH_FIN)) != 0))) { 11937 tp->ts_recent_age = tcp_ts_getticks(); 11938 tp->ts_recent = to->to_tsval; 11939 } 11940 /* 11941 * If the ACK bit is off: if in SYN-RECEIVED state or SENDSYN flag 11942 * is on (half-synchronized state), then queue data for later 11943 * processing; else drop segment and return. 11944 */ 11945 if ((thflags & TH_ACK) == 0) { 11946 if (tp->t_flags & TF_NEEDSYN) { 11947 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 11948 tiwin, thflags, nxt_pkt)); 11949 } else if (tp->t_flags & TF_ACKNOW) { 11950 ctf_do_dropafterack(m, tp, th, thflags, tlen, &ret_val); 11951 ((struct tcp_rack *)tp->t_fb_ptr)->r_wanted_output = 1; 11952 return (ret_val); 11953 } else { 11954 ctf_do_drop(m, NULL); 11955 return (0); 11956 } 11957 } 11958 /* 11959 * Ack processing. 11960 */ 11961 if (rack_process_ack(m, th, so, tp, to, tiwin, tlen, &ourfinisacked, thflags, &ret_val)) { 11962 return (ret_val); 11963 } 11964 if (ourfinisacked) { 11965 /* 11966 * If we can't receive any more data, then closing user can 11967 * proceed. Starting the timer is contrary to the 11968 * specification, but if we don't get a FIN we'll hang 11969 * forever. 11970 * 11971 * XXXjl: we should release the tp also, and use a 11972 * compressed state. 11973 */ 11974 if (so->so_rcv.sb_state & SBS_CANTRCVMORE) { 11975 soisdisconnected(so); 11976 tcp_timer_activate(tp, TT_2MSL, 11977 (tcp_fast_finwait2_recycle ? 11978 tcp_finwait2_timeout : 11979 TP_MAXIDLE(tp))); 11980 } 11981 tcp_state_change(tp, TCPS_FIN_WAIT_2); 11982 } 11983 if (sbavail(&so->so_snd)) { 11984 if (ctf_progress_timeout_check(tp, true)) { 11985 rack_log_progress_event((struct tcp_rack *)tp->t_fb_ptr, 11986 tp, tick, PROGRESS_DROP, __LINE__); 11987 ctf_do_dropwithreset_conn(m, tp, th, BANDLIM_RST_OPENPORT, tlen); 11988 return (1); 11989 } 11990 } 11991 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 11992 tiwin, thflags, nxt_pkt)); 11993 } 11994 11995 /* 11996 * Return value of 1, the TCB is unlocked and most 11997 * likely gone, return value of 0, the TCP is still 11998 * locked. 11999 */ 12000 static int 12001 rack_do_closing(struct mbuf *m, struct tcphdr *th, struct socket *so, 12002 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, 12003 uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos) 12004 { 12005 int32_t ret_val = 0; 12006 int32_t ourfinisacked = 0; 12007 struct tcp_rack *rack; 12008 12009 rack = (struct tcp_rack *)tp->t_fb_ptr; 12010 ctf_calc_rwin(so, tp); 12011 12012 if ((thflags & TH_RST) || 12013 (tp->t_fin_is_rst && (thflags & TH_FIN))) 12014 return (__ctf_process_rst(m, th, so, tp, 12015 &rack->r_ctl.challenge_ack_ts, 12016 &rack->r_ctl.challenge_ack_cnt)); 12017 /* 12018 * RFC5961 Section 4.2 Send challenge ACK for any SYN in 12019 * synchronized state. 12020 */ 12021 if (thflags & TH_SYN) { 12022 ctf_challenge_ack(m, th, tp, &ret_val); 12023 return (ret_val); 12024 } 12025 /* 12026 * RFC 1323 PAWS: If we have a timestamp reply on this segment and 12027 * it's less than ts_recent, drop it. 12028 */ 12029 if ((to->to_flags & TOF_TS) != 0 && tp->ts_recent && 12030 TSTMP_LT(to->to_tsval, tp->ts_recent)) { 12031 if (ctf_ts_check(m, th, tp, tlen, thflags, &ret_val)) 12032 return (ret_val); 12033 } 12034 if (_ctf_drop_checks(to, m, th, tp, &tlen, &thflags, &drop_hdrlen, &ret_val, 12035 &rack->r_ctl.challenge_ack_ts, 12036 &rack->r_ctl.challenge_ack_cnt)) { 12037 return (ret_val); 12038 } 12039 /* 12040 * If new data are received on a connection after the user processes 12041 * are gone, then RST the other end. 12042 */ 12043 if ((tp->t_flags & TF_CLOSED) && tlen && 12044 rack_check_data_after_close(m, tp, &tlen, th, so)) 12045 return (1); 12046 /* 12047 * If last ACK falls within this segment's sequence numbers, record 12048 * its timestamp. NOTE: 1) That the test incorporates suggestions 12049 * from the latest proposal of the tcplw@cray.com list (Braden 12050 * 1993/04/26). 2) That updating only on newer timestamps interferes 12051 * with our earlier PAWS tests, so this check should be solely 12052 * predicated on the sequence space of this segment. 3) That we 12053 * modify the segment boundary check to be Last.ACK.Sent <= SEG.SEQ 12054 * + SEG.Len instead of RFC1323's Last.ACK.Sent < SEG.SEQ + 12055 * SEG.Len, This modified check allows us to overcome RFC1323's 12056 * limitations as described in Stevens TCP/IP Illustrated Vol. 2 12057 * p.869. In such cases, we can still calculate the RTT correctly 12058 * when RCV.NXT == Last.ACK.Sent. 12059 */ 12060 if ((to->to_flags & TOF_TS) != 0 && 12061 SEQ_LEQ(th->th_seq, tp->last_ack_sent) && 12062 SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen + 12063 ((thflags & (TH_SYN | TH_FIN)) != 0))) { 12064 tp->ts_recent_age = tcp_ts_getticks(); 12065 tp->ts_recent = to->to_tsval; 12066 } 12067 /* 12068 * If the ACK bit is off: if in SYN-RECEIVED state or SENDSYN flag 12069 * is on (half-synchronized state), then queue data for later 12070 * processing; else drop segment and return. 12071 */ 12072 if ((thflags & TH_ACK) == 0) { 12073 if (tp->t_flags & TF_NEEDSYN) { 12074 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 12075 tiwin, thflags, nxt_pkt)); 12076 } else if (tp->t_flags & TF_ACKNOW) { 12077 ctf_do_dropafterack(m, tp, th, thflags, tlen, &ret_val); 12078 ((struct tcp_rack *)tp->t_fb_ptr)->r_wanted_output = 1; 12079 return (ret_val); 12080 } else { 12081 ctf_do_drop(m, NULL); 12082 return (0); 12083 } 12084 } 12085 /* 12086 * Ack processing. 12087 */ 12088 if (rack_process_ack(m, th, so, tp, to, tiwin, tlen, &ourfinisacked, thflags, &ret_val)) { 12089 return (ret_val); 12090 } 12091 if (ourfinisacked) { 12092 tcp_twstart(tp); 12093 m_freem(m); 12094 return (1); 12095 } 12096 if (sbavail(&so->so_snd)) { 12097 if (ctf_progress_timeout_check(tp, true)) { 12098 rack_log_progress_event((struct tcp_rack *)tp->t_fb_ptr, 12099 tp, tick, PROGRESS_DROP, __LINE__); 12100 ctf_do_dropwithreset_conn(m, tp, th, BANDLIM_RST_OPENPORT, tlen); 12101 return (1); 12102 } 12103 } 12104 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 12105 tiwin, thflags, nxt_pkt)); 12106 } 12107 12108 /* 12109 * Return value of 1, the TCB is unlocked and most 12110 * likely gone, return value of 0, the TCP is still 12111 * locked. 12112 */ 12113 static int 12114 rack_do_lastack(struct mbuf *m, struct tcphdr *th, struct socket *so, 12115 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, 12116 uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos) 12117 { 12118 int32_t ret_val = 0; 12119 int32_t ourfinisacked = 0; 12120 struct tcp_rack *rack; 12121 12122 rack = (struct tcp_rack *)tp->t_fb_ptr; 12123 ctf_calc_rwin(so, tp); 12124 12125 if ((thflags & TH_RST) || 12126 (tp->t_fin_is_rst && (thflags & TH_FIN))) 12127 return (__ctf_process_rst(m, th, so, tp, 12128 &rack->r_ctl.challenge_ack_ts, 12129 &rack->r_ctl.challenge_ack_cnt)); 12130 /* 12131 * RFC5961 Section 4.2 Send challenge ACK for any SYN in 12132 * synchronized state. 12133 */ 12134 if (thflags & TH_SYN) { 12135 ctf_challenge_ack(m, th, tp, &ret_val); 12136 return (ret_val); 12137 } 12138 /* 12139 * RFC 1323 PAWS: If we have a timestamp reply on this segment and 12140 * it's less than ts_recent, drop it. 12141 */ 12142 if ((to->to_flags & TOF_TS) != 0 && tp->ts_recent && 12143 TSTMP_LT(to->to_tsval, tp->ts_recent)) { 12144 if (ctf_ts_check(m, th, tp, tlen, thflags, &ret_val)) 12145 return (ret_val); 12146 } 12147 if (_ctf_drop_checks(to, m, th, tp, &tlen, &thflags, &drop_hdrlen, &ret_val, 12148 &rack->r_ctl.challenge_ack_ts, 12149 &rack->r_ctl.challenge_ack_cnt)) { 12150 return (ret_val); 12151 } 12152 /* 12153 * If new data are received on a connection after the user processes 12154 * are gone, then RST the other end. 12155 */ 12156 if ((tp->t_flags & TF_CLOSED) && tlen && 12157 rack_check_data_after_close(m, tp, &tlen, th, so)) 12158 return (1); 12159 /* 12160 * If last ACK falls within this segment's sequence numbers, record 12161 * its timestamp. NOTE: 1) That the test incorporates suggestions 12162 * from the latest proposal of the tcplw@cray.com list (Braden 12163 * 1993/04/26). 2) That updating only on newer timestamps interferes 12164 * with our earlier PAWS tests, so this check should be solely 12165 * predicated on the sequence space of this segment. 3) That we 12166 * modify the segment boundary check to be Last.ACK.Sent <= SEG.SEQ 12167 * + SEG.Len instead of RFC1323's Last.ACK.Sent < SEG.SEQ + 12168 * SEG.Len, This modified check allows us to overcome RFC1323's 12169 * limitations as described in Stevens TCP/IP Illustrated Vol. 2 12170 * p.869. In such cases, we can still calculate the RTT correctly 12171 * when RCV.NXT == Last.ACK.Sent. 12172 */ 12173 if ((to->to_flags & TOF_TS) != 0 && 12174 SEQ_LEQ(th->th_seq, tp->last_ack_sent) && 12175 SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen + 12176 ((thflags & (TH_SYN | TH_FIN)) != 0))) { 12177 tp->ts_recent_age = tcp_ts_getticks(); 12178 tp->ts_recent = to->to_tsval; 12179 } 12180 /* 12181 * If the ACK bit is off: if in SYN-RECEIVED state or SENDSYN flag 12182 * is on (half-synchronized state), then queue data for later 12183 * processing; else drop segment and return. 12184 */ 12185 if ((thflags & TH_ACK) == 0) { 12186 if (tp->t_flags & TF_NEEDSYN) { 12187 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 12188 tiwin, thflags, nxt_pkt)); 12189 } else if (tp->t_flags & TF_ACKNOW) { 12190 ctf_do_dropafterack(m, tp, th, thflags, tlen, &ret_val); 12191 ((struct tcp_rack *)tp->t_fb_ptr)->r_wanted_output = 1; 12192 return (ret_val); 12193 } else { 12194 ctf_do_drop(m, NULL); 12195 return (0); 12196 } 12197 } 12198 /* 12199 * case TCPS_LAST_ACK: Ack processing. 12200 */ 12201 if (rack_process_ack(m, th, so, tp, to, tiwin, tlen, &ourfinisacked, thflags, &ret_val)) { 12202 return (ret_val); 12203 } 12204 if (ourfinisacked) { 12205 tp = tcp_close(tp); 12206 ctf_do_drop(m, tp); 12207 return (1); 12208 } 12209 if (sbavail(&so->so_snd)) { 12210 if (ctf_progress_timeout_check(tp, true)) { 12211 rack_log_progress_event((struct tcp_rack *)tp->t_fb_ptr, 12212 tp, tick, PROGRESS_DROP, __LINE__); 12213 ctf_do_dropwithreset_conn(m, tp, th, BANDLIM_RST_OPENPORT, tlen); 12214 return (1); 12215 } 12216 } 12217 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 12218 tiwin, thflags, nxt_pkt)); 12219 } 12220 12221 /* 12222 * Return value of 1, the TCB is unlocked and most 12223 * likely gone, return value of 0, the TCP is still 12224 * locked. 12225 */ 12226 static int 12227 rack_do_fin_wait_2(struct mbuf *m, struct tcphdr *th, struct socket *so, 12228 struct tcpcb *tp, struct tcpopt *to, int32_t drop_hdrlen, int32_t tlen, 12229 uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos) 12230 { 12231 int32_t ret_val = 0; 12232 int32_t ourfinisacked = 0; 12233 struct tcp_rack *rack; 12234 12235 rack = (struct tcp_rack *)tp->t_fb_ptr; 12236 ctf_calc_rwin(so, tp); 12237 12238 /* Reset receive buffer auto scaling when not in bulk receive mode. */ 12239 if ((thflags & TH_RST) || 12240 (tp->t_fin_is_rst && (thflags & TH_FIN))) 12241 return (__ctf_process_rst(m, th, so, tp, 12242 &rack->r_ctl.challenge_ack_ts, 12243 &rack->r_ctl.challenge_ack_cnt)); 12244 /* 12245 * RFC5961 Section 4.2 Send challenge ACK for any SYN in 12246 * synchronized state. 12247 */ 12248 if (thflags & TH_SYN) { 12249 ctf_challenge_ack(m, th, tp, &ret_val); 12250 return (ret_val); 12251 } 12252 /* 12253 * RFC 1323 PAWS: If we have a timestamp reply on this segment and 12254 * it's less than ts_recent, drop it. 12255 */ 12256 if ((to->to_flags & TOF_TS) != 0 && tp->ts_recent && 12257 TSTMP_LT(to->to_tsval, tp->ts_recent)) { 12258 if (ctf_ts_check(m, th, tp, tlen, thflags, &ret_val)) 12259 return (ret_val); 12260 } 12261 if (_ctf_drop_checks(to, m, th, tp, &tlen, &thflags, &drop_hdrlen, &ret_val, 12262 &rack->r_ctl.challenge_ack_ts, 12263 &rack->r_ctl.challenge_ack_cnt)) { 12264 return (ret_val); 12265 } 12266 /* 12267 * If new data are received on a connection after the user processes 12268 * are gone, then RST the other end. 12269 */ 12270 if ((tp->t_flags & TF_CLOSED) && tlen && 12271 rack_check_data_after_close(m, tp, &tlen, th, so)) 12272 return (1); 12273 /* 12274 * If last ACK falls within this segment's sequence numbers, record 12275 * its timestamp. NOTE: 1) That the test incorporates suggestions 12276 * from the latest proposal of the tcplw@cray.com list (Braden 12277 * 1993/04/26). 2) That updating only on newer timestamps interferes 12278 * with our earlier PAWS tests, so this check should be solely 12279 * predicated on the sequence space of this segment. 3) That we 12280 * modify the segment boundary check to be Last.ACK.Sent <= SEG.SEQ 12281 * + SEG.Len instead of RFC1323's Last.ACK.Sent < SEG.SEQ + 12282 * SEG.Len, This modified check allows us to overcome RFC1323's 12283 * limitations as described in Stevens TCP/IP Illustrated Vol. 2 12284 * p.869. In such cases, we can still calculate the RTT correctly 12285 * when RCV.NXT == Last.ACK.Sent. 12286 */ 12287 if ((to->to_flags & TOF_TS) != 0 && 12288 SEQ_LEQ(th->th_seq, tp->last_ack_sent) && 12289 SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen + 12290 ((thflags & (TH_SYN | TH_FIN)) != 0))) { 12291 tp->ts_recent_age = tcp_ts_getticks(); 12292 tp->ts_recent = to->to_tsval; 12293 } 12294 /* 12295 * If the ACK bit is off: if in SYN-RECEIVED state or SENDSYN flag 12296 * is on (half-synchronized state), then queue data for later 12297 * processing; else drop segment and return. 12298 */ 12299 if ((thflags & TH_ACK) == 0) { 12300 if (tp->t_flags & TF_NEEDSYN) { 12301 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 12302 tiwin, thflags, nxt_pkt)); 12303 } else if (tp->t_flags & TF_ACKNOW) { 12304 ctf_do_dropafterack(m, tp, th, thflags, tlen, &ret_val); 12305 ((struct tcp_rack *)tp->t_fb_ptr)->r_wanted_output = 1; 12306 return (ret_val); 12307 } else { 12308 ctf_do_drop(m, NULL); 12309 return (0); 12310 } 12311 } 12312 /* 12313 * Ack processing. 12314 */ 12315 if (rack_process_ack(m, th, so, tp, to, tiwin, tlen, &ourfinisacked, thflags, &ret_val)) { 12316 return (ret_val); 12317 } 12318 if (sbavail(&so->so_snd)) { 12319 if (ctf_progress_timeout_check(tp, true)) { 12320 rack_log_progress_event((struct tcp_rack *)tp->t_fb_ptr, 12321 tp, tick, PROGRESS_DROP, __LINE__); 12322 ctf_do_dropwithreset_conn(m, tp, th, BANDLIM_RST_OPENPORT, tlen); 12323 return (1); 12324 } 12325 } 12326 return (rack_process_data(m, th, so, tp, drop_hdrlen, tlen, 12327 tiwin, thflags, nxt_pkt)); 12328 } 12329 12330 static void inline 12331 rack_clear_rate_sample(struct tcp_rack *rack) 12332 { 12333 rack->r_ctl.rack_rs.rs_flags = RACK_RTT_EMPTY; 12334 rack->r_ctl.rack_rs.rs_rtt_cnt = 0; 12335 rack->r_ctl.rack_rs.rs_rtt_tot = 0; 12336 } 12337 12338 static void 12339 rack_set_pace_segments(struct tcpcb *tp, struct tcp_rack *rack, uint32_t line, uint64_t *fill_override) 12340 { 12341 uint64_t bw_est, rate_wanted; 12342 int chged = 0; 12343 uint32_t user_max, orig_min, orig_max; 12344 12345 orig_min = rack->r_ctl.rc_pace_min_segs; 12346 orig_max = rack->r_ctl.rc_pace_max_segs; 12347 user_max = ctf_fixed_maxseg(tp) * rack->rc_user_set_max_segs; 12348 if (ctf_fixed_maxseg(tp) != rack->r_ctl.rc_pace_min_segs) 12349 chged = 1; 12350 rack->r_ctl.rc_pace_min_segs = ctf_fixed_maxseg(tp); 12351 if (rack->use_fixed_rate || rack->rc_force_max_seg) { 12352 if (user_max != rack->r_ctl.rc_pace_max_segs) 12353 chged = 1; 12354 } 12355 if (rack->rc_force_max_seg) { 12356 rack->r_ctl.rc_pace_max_segs = user_max; 12357 } else if (rack->use_fixed_rate) { 12358 bw_est = rack_get_bw(rack); 12359 if ((rack->r_ctl.crte == NULL) || 12360 (bw_est != rack->r_ctl.crte->rate)) { 12361 rack->r_ctl.rc_pace_max_segs = user_max; 12362 } else { 12363 /* We are pacing right at the hardware rate */ 12364 uint32_t segsiz; 12365 12366 segsiz = min(ctf_fixed_maxseg(tp), 12367 rack->r_ctl.rc_pace_min_segs); 12368 rack->r_ctl.rc_pace_max_segs = tcp_get_pacing_burst_size( 12369 tp, bw_est, segsiz, 0, 12370 rack->r_ctl.crte, NULL); 12371 } 12372 } else if (rack->rc_always_pace) { 12373 if (rack->r_ctl.gp_bw || 12374 #ifdef NETFLIX_PEAKRATE 12375 rack->rc_tp->t_maxpeakrate || 12376 #endif 12377 rack->r_ctl.init_rate) { 12378 /* We have a rate of some sort set */ 12379 uint32_t orig; 12380 12381 bw_est = rack_get_bw(rack); 12382 orig = rack->r_ctl.rc_pace_max_segs; 12383 if (fill_override) 12384 rate_wanted = *fill_override; 12385 else 12386 rate_wanted = rack_get_output_bw(rack, bw_est, NULL, NULL); 12387 if (rate_wanted) { 12388 /* We have something */ 12389 rack->r_ctl.rc_pace_max_segs = rack_get_pacing_len(rack, 12390 rate_wanted, 12391 ctf_fixed_maxseg(rack->rc_tp)); 12392 } else 12393 rack->r_ctl.rc_pace_max_segs = rack->r_ctl.rc_pace_min_segs; 12394 if (orig != rack->r_ctl.rc_pace_max_segs) 12395 chged = 1; 12396 } else if ((rack->r_ctl.gp_bw == 0) && 12397 (rack->r_ctl.rc_pace_max_segs == 0)) { 12398 /* 12399 * If we have nothing limit us to bursting 12400 * out IW sized pieces. 12401 */ 12402 chged = 1; 12403 rack->r_ctl.rc_pace_max_segs = rc_init_window(rack); 12404 } 12405 } 12406 if (rack->r_ctl.rc_pace_max_segs > PACE_MAX_IP_BYTES) { 12407 chged = 1; 12408 rack->r_ctl.rc_pace_max_segs = PACE_MAX_IP_BYTES; 12409 } 12410 if (chged) 12411 rack_log_type_pacing_sizes(tp, rack, orig_min, orig_max, line, 2); 12412 } 12413 12414 12415 static void 12416 rack_init_fsb_block(struct tcpcb *tp, struct tcp_rack *rack) 12417 { 12418 #ifdef INET6 12419 struct ip6_hdr *ip6 = NULL; 12420 #endif 12421 #ifdef INET 12422 struct ip *ip = NULL; 12423 #endif 12424 struct udphdr *udp = NULL; 12425 12426 /* Ok lets fill in the fast block, it can only be used with no IP options! */ 12427 #ifdef INET6 12428 if (rack->r_is_v6) { 12429 rack->r_ctl.fsb.tcp_ip_hdr_len = sizeof(struct ip6_hdr) + sizeof(struct tcphdr); 12430 ip6 = (struct ip6_hdr *)rack->r_ctl.fsb.tcp_ip_hdr; 12431 if (tp->t_port) { 12432 rack->r_ctl.fsb.tcp_ip_hdr_len += sizeof(struct udphdr); 12433 udp = (struct udphdr *)((caddr_t)ip6 + sizeof(struct ip6_hdr)); 12434 udp->uh_sport = htons(V_tcp_udp_tunneling_port); 12435 udp->uh_dport = tp->t_port; 12436 rack->r_ctl.fsb.udp = udp; 12437 rack->r_ctl.fsb.th = (struct tcphdr *)(udp + 1); 12438 } else 12439 { 12440 rack->r_ctl.fsb.th = (struct tcphdr *)(ip6 + 1); 12441 rack->r_ctl.fsb.udp = NULL; 12442 } 12443 tcpip_fillheaders(rack->rc_inp, 12444 tp->t_port, 12445 ip6, rack->r_ctl.fsb.th); 12446 } else 12447 #endif /* INET6 */ 12448 { 12449 rack->r_ctl.fsb.tcp_ip_hdr_len = sizeof(struct tcpiphdr); 12450 ip = (struct ip *)rack->r_ctl.fsb.tcp_ip_hdr; 12451 if (tp->t_port) { 12452 rack->r_ctl.fsb.tcp_ip_hdr_len += sizeof(struct udphdr); 12453 udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip)); 12454 udp->uh_sport = htons(V_tcp_udp_tunneling_port); 12455 udp->uh_dport = tp->t_port; 12456 rack->r_ctl.fsb.udp = udp; 12457 rack->r_ctl.fsb.th = (struct tcphdr *)(udp + 1); 12458 } else 12459 { 12460 rack->r_ctl.fsb.udp = NULL; 12461 rack->r_ctl.fsb.th = (struct tcphdr *)(ip + 1); 12462 } 12463 tcpip_fillheaders(rack->rc_inp, 12464 tp->t_port, 12465 ip, rack->r_ctl.fsb.th); 12466 } 12467 rack->r_fsb_inited = 1; 12468 } 12469 12470 static int 12471 rack_init_fsb(struct tcpcb *tp, struct tcp_rack *rack) 12472 { 12473 /* 12474 * Allocate the larger of spaces V6 if available else just 12475 * V4 and include udphdr (overbook) 12476 */ 12477 #ifdef INET6 12478 rack->r_ctl.fsb.tcp_ip_hdr_len = sizeof(struct ip6_hdr) + sizeof(struct tcphdr) + sizeof(struct udphdr); 12479 #else 12480 rack->r_ctl.fsb.tcp_ip_hdr_len = sizeof(struct tcpiphdr) + sizeof(struct udphdr); 12481 #endif 12482 rack->r_ctl.fsb.tcp_ip_hdr = malloc(rack->r_ctl.fsb.tcp_ip_hdr_len, 12483 M_TCPFSB, M_NOWAIT|M_ZERO); 12484 if (rack->r_ctl.fsb.tcp_ip_hdr == NULL) { 12485 return (ENOMEM); 12486 } 12487 rack->r_fsb_inited = 0; 12488 return (0); 12489 } 12490 12491 static int 12492 rack_init(struct tcpcb *tp) 12493 { 12494 struct tcp_rack *rack = NULL; 12495 #ifdef INVARIANTS 12496 struct rack_sendmap *insret; 12497 #endif 12498 uint32_t iwin, snt, us_cts; 12499 int err; 12500 12501 tp->t_fb_ptr = uma_zalloc(rack_pcb_zone, M_NOWAIT); 12502 if (tp->t_fb_ptr == NULL) { 12503 /* 12504 * We need to allocate memory but cant. The INP and INP_INFO 12505 * locks and they are recursive (happens during setup. So a 12506 * scheme to drop the locks fails :( 12507 * 12508 */ 12509 return (ENOMEM); 12510 } 12511 memset(tp->t_fb_ptr, 0, sizeof(struct tcp_rack)); 12512 12513 rack = (struct tcp_rack *)tp->t_fb_ptr; 12514 RB_INIT(&rack->r_ctl.rc_mtree); 12515 TAILQ_INIT(&rack->r_ctl.rc_free); 12516 TAILQ_INIT(&rack->r_ctl.rc_tmap); 12517 rack->rc_tp = tp; 12518 rack->rc_inp = tp->t_inpcb; 12519 /* Set the flag */ 12520 rack->r_is_v6 = (tp->t_inpcb->inp_vflag & INP_IPV6) != 0; 12521 /* Probably not needed but lets be sure */ 12522 rack_clear_rate_sample(rack); 12523 /* 12524 * Save off the default values, socket options will poke 12525 * at these if pacing is not on or we have not yet 12526 * reached where pacing is on (gp_ready/fixed enabled). 12527 * When they get set into the CC module (when gp_ready 12528 * is enabled or we enable fixed) then we will set these 12529 * values into the CC and place in here the old values 12530 * so we have a restoral. Then we will set the flag 12531 * rc_pacing_cc_set. That way whenever we turn off pacing 12532 * or switch off this stack, we will know to go restore 12533 * the saved values. 12534 */ 12535 rack->r_ctl.rc_saved_beta.beta = V_newreno_beta_ecn; 12536 rack->r_ctl.rc_saved_beta.beta_ecn = V_newreno_beta_ecn; 12537 /* We want abe like behavior as well */ 12538 rack->r_ctl.rc_saved_beta.newreno_flags |= CC_NEWRENO_BETA_ECN_ENABLED; 12539 rack->r_ctl.rc_reorder_fade = rack_reorder_fade; 12540 rack->rc_allow_data_af_clo = rack_ignore_data_after_close; 12541 rack->r_ctl.rc_tlp_threshold = rack_tlp_thresh; 12542 rack->r_ctl.roundends = tp->snd_max; 12543 if (use_rack_rr) 12544 rack->use_rack_rr = 1; 12545 if (V_tcp_delack_enabled) 12546 tp->t_delayed_ack = 1; 12547 else 12548 tp->t_delayed_ack = 0; 12549 #ifdef TCP_ACCOUNTING 12550 if (rack_tcp_accounting) { 12551 tp->t_flags2 |= TF2_TCP_ACCOUNTING; 12552 } 12553 #endif 12554 if (rack_enable_shared_cwnd) 12555 rack->rack_enable_scwnd = 1; 12556 rack->rc_user_set_max_segs = rack_hptsi_segments; 12557 rack->rc_force_max_seg = 0; 12558 if (rack_use_imac_dack) 12559 rack->rc_dack_mode = 1; 12560 TAILQ_INIT(&rack->r_ctl.opt_list); 12561 rack->r_ctl.rc_reorder_shift = rack_reorder_thresh; 12562 rack->r_ctl.rc_pkt_delay = rack_pkt_delay; 12563 rack->r_ctl.rc_tlp_cwnd_reduce = rack_lower_cwnd_at_tlp; 12564 rack->r_ctl.rc_lowest_us_rtt = 0xffffffff; 12565 rack->r_ctl.rc_highest_us_rtt = 0; 12566 rack->r_ctl.bw_rate_cap = rack_bw_rate_cap; 12567 rack->r_ctl.timer_slop = TICKS_2_USEC(tcp_rexmit_slop); 12568 if (rack_use_cmp_acks) 12569 rack->r_use_cmp_ack = 1; 12570 if (rack_disable_prr) 12571 rack->rack_no_prr = 1; 12572 if (rack_gp_no_rec_chg) 12573 rack->rc_gp_no_rec_chg = 1; 12574 if (rack_pace_every_seg && tcp_can_enable_pacing()) { 12575 rack->rc_always_pace = 1; 12576 if (rack->use_fixed_rate || rack->gp_ready) 12577 rack_set_cc_pacing(rack); 12578 } else 12579 rack->rc_always_pace = 0; 12580 if (rack_enable_mqueue_for_nonpaced || rack->r_use_cmp_ack) 12581 rack->r_mbuf_queue = 1; 12582 else 12583 rack->r_mbuf_queue = 0; 12584 if (rack->r_mbuf_queue || rack->rc_always_pace || rack->r_use_cmp_ack) 12585 tp->t_inpcb->inp_flags2 |= INP_SUPPORTS_MBUFQ; 12586 else 12587 tp->t_inpcb->inp_flags2 &= ~INP_SUPPORTS_MBUFQ; 12588 rack_set_pace_segments(tp, rack, __LINE__, NULL); 12589 if (rack_limits_scwnd) 12590 rack->r_limit_scw = 1; 12591 else 12592 rack->r_limit_scw = 0; 12593 rack->rc_labc = V_tcp_abc_l_var; 12594 rack->r_ctl.rc_high_rwnd = tp->snd_wnd; 12595 rack->r_ctl.cwnd_to_use = tp->snd_cwnd; 12596 rack->r_ctl.rc_rate_sample_method = rack_rate_sample_method; 12597 rack->rack_tlp_threshold_use = rack_tlp_threshold_use; 12598 rack->r_ctl.rc_prr_sendalot = rack_send_a_lot_in_prr; 12599 rack->r_ctl.rc_min_to = rack_min_to; 12600 microuptime(&rack->r_ctl.act_rcv_time); 12601 rack->r_ctl.rc_last_time_decay = rack->r_ctl.act_rcv_time; 12602 rack->rc_init_win = rack_default_init_window; 12603 rack->r_ctl.rack_per_of_gp_ss = rack_per_of_gp_ss; 12604 if (rack_hw_up_only) 12605 rack->r_up_only = 1; 12606 if (rack_do_dyn_mul) { 12607 /* When dynamic adjustment is on CA needs to start at 100% */ 12608 rack->rc_gp_dyn_mul = 1; 12609 if (rack_do_dyn_mul >= 100) 12610 rack->r_ctl.rack_per_of_gp_ca = rack_do_dyn_mul; 12611 } else 12612 rack->r_ctl.rack_per_of_gp_ca = rack_per_of_gp_ca; 12613 rack->r_ctl.rack_per_of_gp_rec = rack_per_of_gp_rec; 12614 rack->r_ctl.rack_per_of_gp_probertt = rack_per_of_gp_probertt; 12615 rack->r_ctl.rc_tlp_rxt_last_time = tcp_tv_to_mssectick(&rack->r_ctl.act_rcv_time); 12616 setup_time_filter_small(&rack->r_ctl.rc_gp_min_rtt, FILTER_TYPE_MIN, 12617 rack_probertt_filter_life); 12618 us_cts = tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time); 12619 rack->r_ctl.rc_lower_rtt_us_cts = us_cts; 12620 rack->r_ctl.rc_time_of_last_probertt = us_cts; 12621 rack->r_ctl.challenge_ack_ts = tcp_ts_getticks(); 12622 rack->r_ctl.rc_time_probertt_starts = 0; 12623 if (rack_dsack_std_based & 0x1) { 12624 /* Basically this means all rack timers are at least (srtt + 1/4 srtt) */ 12625 rack->rc_rack_tmr_std_based = 1; 12626 } 12627 if (rack_dsack_std_based & 0x2) { 12628 /* Basically this means rack timers are extended based on dsack by up to (2 * srtt) */ 12629 rack->rc_rack_use_dsack = 1; 12630 } 12631 /* We require at least one measurement, even if the sysctl is 0 */ 12632 if (rack_req_measurements) 12633 rack->r_ctl.req_measurements = rack_req_measurements; 12634 else 12635 rack->r_ctl.req_measurements = 1; 12636 if (rack_enable_hw_pacing) 12637 rack->rack_hdw_pace_ena = 1; 12638 if (rack_hw_rate_caps) 12639 rack->r_rack_hw_rate_caps = 1; 12640 /* Do we force on detection? */ 12641 #ifdef NETFLIX_EXP_DETECTION 12642 if (tcp_force_detection) 12643 rack->do_detection = 1; 12644 else 12645 #endif 12646 rack->do_detection = 0; 12647 if (rack_non_rxt_use_cr) 12648 rack->rack_rec_nonrxt_use_cr = 1; 12649 err = rack_init_fsb(tp, rack); 12650 if (err) { 12651 uma_zfree(rack_pcb_zone, tp->t_fb_ptr); 12652 tp->t_fb_ptr = NULL; 12653 return (err); 12654 } 12655 if (tp->snd_una != tp->snd_max) { 12656 /* Create a send map for the current outstanding data */ 12657 struct rack_sendmap *rsm; 12658 12659 rsm = rack_alloc(rack); 12660 if (rsm == NULL) { 12661 uma_zfree(rack_pcb_zone, tp->t_fb_ptr); 12662 tp->t_fb_ptr = NULL; 12663 return (ENOMEM); 12664 } 12665 rsm->r_no_rtt_allowed = 1; 12666 rsm->r_tim_lastsent[0] = rack_to_usec_ts(&rack->r_ctl.act_rcv_time); 12667 rsm->r_rtr_cnt = 1; 12668 rsm->r_rtr_bytes = 0; 12669 if (tp->t_flags & TF_SENTFIN) 12670 rsm->r_flags |= RACK_HAS_FIN; 12671 if ((tp->snd_una == tp->iss) && 12672 !TCPS_HAVEESTABLISHED(tp->t_state)) 12673 rsm->r_flags |= RACK_HAS_SYN; 12674 rsm->r_start = tp->snd_una; 12675 rsm->r_end = tp->snd_max; 12676 rsm->r_dupack = 0; 12677 if (rack->rc_inp->inp_socket->so_snd.sb_mb != NULL) { 12678 rsm->m = sbsndmbuf(&rack->rc_inp->inp_socket->so_snd, 0, &rsm->soff); 12679 if (rsm->m) 12680 rsm->orig_m_len = rsm->m->m_len; 12681 else 12682 rsm->orig_m_len = 0; 12683 } else { 12684 /* 12685 * This can happen if we have a stand-alone FIN or 12686 * SYN. 12687 */ 12688 rsm->m = NULL; 12689 rsm->orig_m_len = 0; 12690 rsm->soff = 0; 12691 } 12692 #ifndef INVARIANTS 12693 (void)RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 12694 #else 12695 insret = RB_INSERT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 12696 if (insret != NULL) { 12697 panic("Insert in rb tree fails ret:%p rack:%p rsm:%p", 12698 insret, rack, rsm); 12699 } 12700 #endif 12701 TAILQ_INSERT_TAIL(&rack->r_ctl.rc_tmap, rsm, r_tnext); 12702 rsm->r_in_tmap = 1; 12703 } 12704 /* 12705 * Timers in Rack are kept in microseconds so lets 12706 * convert any initial incoming variables 12707 * from ticks into usecs. Note that we 12708 * also change the values of t_srtt and t_rttvar, if 12709 * they are non-zero. They are kept with a 5 12710 * bit decimal so we have to carefully convert 12711 * these to get the full precision. 12712 */ 12713 rack_convert_rtts(tp); 12714 tp->t_rttlow = TICKS_2_USEC(tp->t_rttlow); 12715 if (rack_do_hystart) { 12716 tp->ccv->flags |= CCF_HYSTART_ALLOWED; 12717 if (rack_do_hystart > 1) 12718 tp->ccv->flags |= CCF_HYSTART_CAN_SH_CWND; 12719 if (rack_do_hystart > 2) 12720 tp->ccv->flags |= CCF_HYSTART_CONS_SSTH; 12721 } 12722 if (rack_def_profile) 12723 rack_set_profile(rack, rack_def_profile); 12724 /* Cancel the GP measurement in progress */ 12725 tp->t_flags &= ~TF_GPUTINPROG; 12726 if (SEQ_GT(tp->snd_max, tp->iss)) 12727 snt = tp->snd_max - tp->iss; 12728 else 12729 snt = 0; 12730 iwin = rc_init_window(rack); 12731 if (snt < iwin) { 12732 /* We are not past the initial window 12733 * so we need to make sure cwnd is 12734 * correct. 12735 */ 12736 if (tp->snd_cwnd < iwin) 12737 tp->snd_cwnd = iwin; 12738 /* 12739 * If we are within the initial window 12740 * we want ssthresh to be unlimited. Setting 12741 * it to the rwnd (which the default stack does 12742 * and older racks) is not really a good idea 12743 * since we want to be in SS and grow both the 12744 * cwnd and the rwnd (via dynamic rwnd growth). If 12745 * we set it to the rwnd then as the peer grows its 12746 * rwnd we will be stuck in CA and never hit SS. 12747 * 12748 * Its far better to raise it up high (this takes the 12749 * risk that there as been a loss already, probably 12750 * we should have an indicator in all stacks of loss 12751 * but we don't), but considering the normal use this 12752 * is a risk worth taking. The consequences of not 12753 * hitting SS are far worse than going one more time 12754 * into it early on (before we have sent even a IW). 12755 * It is highly unlikely that we will have had a loss 12756 * before getting the IW out. 12757 */ 12758 tp->snd_ssthresh = 0xffffffff; 12759 } 12760 rack_stop_all_timers(tp); 12761 /* Lets setup the fsb block */ 12762 rack_start_hpts_timer(rack, tp, tcp_get_usecs(NULL), 0, 0, 0); 12763 rack_log_rtt_shrinks(rack, us_cts, tp->t_rxtcur, 12764 __LINE__, RACK_RTTS_INIT); 12765 return (0); 12766 } 12767 12768 static int 12769 rack_handoff_ok(struct tcpcb *tp) 12770 { 12771 if ((tp->t_state == TCPS_CLOSED) || 12772 (tp->t_state == TCPS_LISTEN)) { 12773 /* Sure no problem though it may not stick */ 12774 return (0); 12775 } 12776 if ((tp->t_state == TCPS_SYN_SENT) || 12777 (tp->t_state == TCPS_SYN_RECEIVED)) { 12778 /* 12779 * We really don't know if you support sack, 12780 * you have to get to ESTAB or beyond to tell. 12781 */ 12782 return (EAGAIN); 12783 } 12784 if ((tp->t_flags & TF_SENTFIN) && ((tp->snd_max - tp->snd_una) > 1)) { 12785 /* 12786 * Rack will only send a FIN after all data is acknowledged. 12787 * So in this case we have more data outstanding. We can't 12788 * switch stacks until either all data and only the FIN 12789 * is left (in which case rack_init() now knows how 12790 * to deal with that) <or> all is acknowledged and we 12791 * are only left with incoming data, though why you 12792 * would want to switch to rack after all data is acknowledged 12793 * I have no idea (rrs)! 12794 */ 12795 return (EAGAIN); 12796 } 12797 if ((tp->t_flags & TF_SACK_PERMIT) || rack_sack_not_required){ 12798 return (0); 12799 } 12800 /* 12801 * If we reach here we don't do SACK on this connection so we can 12802 * never do rack. 12803 */ 12804 return (EINVAL); 12805 } 12806 12807 12808 static void 12809 rack_fini(struct tcpcb *tp, int32_t tcb_is_purged) 12810 { 12811 if (tp->t_fb_ptr) { 12812 struct tcp_rack *rack; 12813 struct rack_sendmap *rsm, *nrsm; 12814 #ifdef INVARIANTS 12815 struct rack_sendmap *rm; 12816 #endif 12817 12818 rack = (struct tcp_rack *)tp->t_fb_ptr; 12819 if (tp->t_in_pkt) { 12820 /* 12821 * It is unsafe to process the packets since a 12822 * reset may be lurking in them (its rare but it 12823 * can occur). If we were to find a RST, then we 12824 * would end up dropping the connection and the 12825 * INP lock, so when we return the caller (tcp_usrreq) 12826 * will blow up when it trys to unlock the inp. 12827 */ 12828 struct mbuf *save, *m; 12829 12830 m = tp->t_in_pkt; 12831 tp->t_in_pkt = NULL; 12832 tp->t_tail_pkt = NULL; 12833 while (m) { 12834 save = m->m_nextpkt; 12835 m->m_nextpkt = NULL; 12836 m_freem(m); 12837 m = save; 12838 } 12839 } 12840 tp->t_flags &= ~TF_FORCEDATA; 12841 #ifdef NETFLIX_SHARED_CWND 12842 if (rack->r_ctl.rc_scw) { 12843 uint32_t limit; 12844 12845 if (rack->r_limit_scw) 12846 limit = max(1, rack->r_ctl.rc_lowest_us_rtt); 12847 else 12848 limit = 0; 12849 tcp_shared_cwnd_free_full(tp, rack->r_ctl.rc_scw, 12850 rack->r_ctl.rc_scw_index, 12851 limit); 12852 rack->r_ctl.rc_scw = NULL; 12853 } 12854 #endif 12855 if (rack->r_ctl.fsb.tcp_ip_hdr) { 12856 free(rack->r_ctl.fsb.tcp_ip_hdr, M_TCPFSB); 12857 rack->r_ctl.fsb.tcp_ip_hdr = NULL; 12858 rack->r_ctl.fsb.th = NULL; 12859 } 12860 /* Convert back to ticks, with */ 12861 if (tp->t_srtt > 1) { 12862 uint32_t val, frac; 12863 12864 val = USEC_2_TICKS(tp->t_srtt); 12865 frac = tp->t_srtt % (HPTS_USEC_IN_SEC / hz); 12866 tp->t_srtt = val << TCP_RTT_SHIFT; 12867 /* 12868 * frac is the fractional part here is left 12869 * over from converting to hz and shifting. 12870 * We need to convert this to the 5 bit 12871 * remainder. 12872 */ 12873 if (frac) { 12874 if (hz == 1000) { 12875 frac = (((uint64_t)frac * (uint64_t)TCP_RTT_SCALE) / (uint64_t)HPTS_USEC_IN_MSEC); 12876 } else { 12877 frac = (((uint64_t)frac * (uint64_t)(hz) * (uint64_t)TCP_RTT_SCALE) /(uint64_t)HPTS_USEC_IN_SEC); 12878 } 12879 tp->t_srtt += frac; 12880 } 12881 } 12882 if (tp->t_rttvar) { 12883 uint32_t val, frac; 12884 12885 val = USEC_2_TICKS(tp->t_rttvar); 12886 frac = tp->t_srtt % (HPTS_USEC_IN_SEC / hz); 12887 tp->t_rttvar = val << TCP_RTTVAR_SHIFT; 12888 /* 12889 * frac is the fractional part here is left 12890 * over from converting to hz and shifting. 12891 * We need to convert this to the 5 bit 12892 * remainder. 12893 */ 12894 if (frac) { 12895 if (hz == 1000) { 12896 frac = (((uint64_t)frac * (uint64_t)TCP_RTT_SCALE) / (uint64_t)HPTS_USEC_IN_MSEC); 12897 } else { 12898 frac = (((uint64_t)frac * (uint64_t)(hz) * (uint64_t)TCP_RTT_SCALE) /(uint64_t)HPTS_USEC_IN_SEC); 12899 } 12900 tp->t_rttvar += frac; 12901 } 12902 } 12903 tp->t_rxtcur = USEC_2_TICKS(tp->t_rxtcur); 12904 tp->t_rttlow = USEC_2_TICKS(tp->t_rttlow); 12905 if (rack->rc_always_pace) { 12906 tcp_decrement_paced_conn(); 12907 rack_undo_cc_pacing(rack); 12908 rack->rc_always_pace = 0; 12909 } 12910 /* Clean up any options if they were not applied */ 12911 while (!TAILQ_EMPTY(&rack->r_ctl.opt_list)) { 12912 struct deferred_opt_list *dol; 12913 12914 dol = TAILQ_FIRST(&rack->r_ctl.opt_list); 12915 TAILQ_REMOVE(&rack->r_ctl.opt_list, dol, next); 12916 free(dol, M_TCPDO); 12917 } 12918 /* rack does not use force data but other stacks may clear it */ 12919 if (rack->r_ctl.crte != NULL) { 12920 tcp_rel_pacing_rate(rack->r_ctl.crte, tp); 12921 rack->rack_hdrw_pacing = 0; 12922 rack->r_ctl.crte = NULL; 12923 } 12924 #ifdef TCP_BLACKBOX 12925 tcp_log_flowend(tp); 12926 #endif 12927 RB_FOREACH_SAFE(rsm, rack_rb_tree_head, &rack->r_ctl.rc_mtree, nrsm) { 12928 #ifndef INVARIANTS 12929 (void)RB_REMOVE(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 12930 #else 12931 rm = RB_REMOVE(rack_rb_tree_head, &rack->r_ctl.rc_mtree, rsm); 12932 if (rm != rsm) { 12933 panic("At fini, rack:%p rsm:%p rm:%p", 12934 rack, rsm, rm); 12935 } 12936 #endif 12937 uma_zfree(rack_zone, rsm); 12938 } 12939 rsm = TAILQ_FIRST(&rack->r_ctl.rc_free); 12940 while (rsm) { 12941 TAILQ_REMOVE(&rack->r_ctl.rc_free, rsm, r_tnext); 12942 uma_zfree(rack_zone, rsm); 12943 rsm = TAILQ_FIRST(&rack->r_ctl.rc_free); 12944 } 12945 rack->rc_free_cnt = 0; 12946 uma_zfree(rack_pcb_zone, tp->t_fb_ptr); 12947 tp->t_fb_ptr = NULL; 12948 } 12949 if (tp->t_inpcb) { 12950 tp->t_inpcb->inp_flags2 &= ~INP_SUPPORTS_MBUFQ; 12951 tp->t_inpcb->inp_flags2 &= ~INP_MBUF_QUEUE_READY; 12952 tp->t_inpcb->inp_flags2 &= ~INP_DONT_SACK_QUEUE; 12953 tp->t_inpcb->inp_flags2 &= ~INP_MBUF_ACKCMP; 12954 /* Cancel the GP measurement in progress */ 12955 tp->t_flags &= ~TF_GPUTINPROG; 12956 tp->t_inpcb->inp_flags2 &= ~INP_MBUF_L_ACKS; 12957 } 12958 /* Make sure snd_nxt is correctly set */ 12959 tp->snd_nxt = tp->snd_max; 12960 } 12961 12962 static void 12963 rack_set_state(struct tcpcb *tp, struct tcp_rack *rack) 12964 { 12965 if ((rack->r_state == TCPS_CLOSED) && (tp->t_state != TCPS_CLOSED)) { 12966 rack->r_is_v6 = (tp->t_inpcb->inp_vflag & INP_IPV6) != 0; 12967 } 12968 switch (tp->t_state) { 12969 case TCPS_SYN_SENT: 12970 rack->r_state = TCPS_SYN_SENT; 12971 rack->r_substate = rack_do_syn_sent; 12972 break; 12973 case TCPS_SYN_RECEIVED: 12974 rack->r_state = TCPS_SYN_RECEIVED; 12975 rack->r_substate = rack_do_syn_recv; 12976 break; 12977 case TCPS_ESTABLISHED: 12978 rack_set_pace_segments(tp, rack, __LINE__, NULL); 12979 rack->r_state = TCPS_ESTABLISHED; 12980 rack->r_substate = rack_do_established; 12981 break; 12982 case TCPS_CLOSE_WAIT: 12983 rack_set_pace_segments(tp, rack, __LINE__, NULL); 12984 rack->r_state = TCPS_CLOSE_WAIT; 12985 rack->r_substate = rack_do_close_wait; 12986 break; 12987 case TCPS_FIN_WAIT_1: 12988 rack_set_pace_segments(tp, rack, __LINE__, NULL); 12989 rack->r_state = TCPS_FIN_WAIT_1; 12990 rack->r_substate = rack_do_fin_wait_1; 12991 break; 12992 case TCPS_CLOSING: 12993 rack_set_pace_segments(tp, rack, __LINE__, NULL); 12994 rack->r_state = TCPS_CLOSING; 12995 rack->r_substate = rack_do_closing; 12996 break; 12997 case TCPS_LAST_ACK: 12998 rack_set_pace_segments(tp, rack, __LINE__, NULL); 12999 rack->r_state = TCPS_LAST_ACK; 13000 rack->r_substate = rack_do_lastack; 13001 break; 13002 case TCPS_FIN_WAIT_2: 13003 rack_set_pace_segments(tp, rack, __LINE__, NULL); 13004 rack->r_state = TCPS_FIN_WAIT_2; 13005 rack->r_substate = rack_do_fin_wait_2; 13006 break; 13007 case TCPS_LISTEN: 13008 case TCPS_CLOSED: 13009 case TCPS_TIME_WAIT: 13010 default: 13011 break; 13012 }; 13013 if (rack->r_use_cmp_ack && TCPS_HAVEESTABLISHED(tp->t_state)) 13014 rack->rc_inp->inp_flags2 |= INP_MBUF_ACKCMP; 13015 13016 } 13017 13018 static void 13019 rack_timer_audit(struct tcpcb *tp, struct tcp_rack *rack, struct sockbuf *sb) 13020 { 13021 /* 13022 * We received an ack, and then did not 13023 * call send or were bounced out due to the 13024 * hpts was running. Now a timer is up as well, is 13025 * it the right timer? 13026 */ 13027 struct rack_sendmap *rsm; 13028 int tmr_up; 13029 13030 tmr_up = rack->r_ctl.rc_hpts_flags & PACE_TMR_MASK; 13031 if (rack->rc_in_persist && (tmr_up == PACE_TMR_PERSIT)) 13032 return; 13033 rsm = TAILQ_FIRST(&rack->r_ctl.rc_tmap); 13034 if (((rsm == NULL) || (tp->t_state < TCPS_ESTABLISHED)) && 13035 (tmr_up == PACE_TMR_RXT)) { 13036 /* Should be an RXT */ 13037 return; 13038 } 13039 if (rsm == NULL) { 13040 /* Nothing outstanding? */ 13041 if (tp->t_flags & TF_DELACK) { 13042 if (tmr_up == PACE_TMR_DELACK) 13043 /* We are supposed to have delayed ack up and we do */ 13044 return; 13045 } else if (sbavail(&tp->t_inpcb->inp_socket->so_snd) && (tmr_up == PACE_TMR_RXT)) { 13046 /* 13047 * if we hit enobufs then we would expect the possibility 13048 * of nothing outstanding and the RXT up (and the hptsi timer). 13049 */ 13050 return; 13051 } else if (((V_tcp_always_keepalive || 13052 rack->rc_inp->inp_socket->so_options & SO_KEEPALIVE) && 13053 (tp->t_state <= TCPS_CLOSING)) && 13054 (tmr_up == PACE_TMR_KEEP) && 13055 (tp->snd_max == tp->snd_una)) { 13056 /* We should have keep alive up and we do */ 13057 return; 13058 } 13059 } 13060 if (SEQ_GT(tp->snd_max, tp->snd_una) && 13061 ((tmr_up == PACE_TMR_TLP) || 13062 (tmr_up == PACE_TMR_RACK) || 13063 (tmr_up == PACE_TMR_RXT))) { 13064 /* 13065 * Either a Rack, TLP or RXT is fine if we 13066 * have outstanding data. 13067 */ 13068 return; 13069 } else if (tmr_up == PACE_TMR_DELACK) { 13070 /* 13071 * If the delayed ack was going to go off 13072 * before the rtx/tlp/rack timer were going to 13073 * expire, then that would be the timer in control. 13074 * Note we don't check the time here trusting the 13075 * code is correct. 13076 */ 13077 return; 13078 } 13079 /* 13080 * Ok the timer originally started is not what we want now. 13081 * We will force the hpts to be stopped if any, and restart 13082 * with the slot set to what was in the saved slot. 13083 */ 13084 if (tcp_in_hpts(rack->rc_inp)) { 13085 if (rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT) { 13086 uint32_t us_cts; 13087 13088 us_cts = tcp_get_usecs(NULL); 13089 if (TSTMP_GT(rack->r_ctl.rc_last_output_to, us_cts)) { 13090 rack->r_early = 1; 13091 rack->r_ctl.rc_agg_early += (rack->r_ctl.rc_last_output_to - us_cts); 13092 } 13093 rack->r_ctl.rc_hpts_flags &= ~PACE_PKT_OUTPUT; 13094 } 13095 tcp_hpts_remove(tp->t_inpcb); 13096 } 13097 rack_timer_cancel(tp, rack, rack->r_ctl.rc_rcvtime, __LINE__); 13098 rack_start_hpts_timer(rack, tp, tcp_get_usecs(NULL), 0, 0, 0); 13099 } 13100 13101 13102 static void 13103 rack_do_win_updates(struct tcpcb *tp, struct tcp_rack *rack, uint32_t tiwin, uint32_t seq, uint32_t ack, uint32_t cts, uint32_t high_seq) 13104 { 13105 if ((SEQ_LT(tp->snd_wl1, seq) || 13106 (tp->snd_wl1 == seq && (SEQ_LT(tp->snd_wl2, ack) || 13107 (tp->snd_wl2 == ack && tiwin > tp->snd_wnd))))) { 13108 /* keep track of pure window updates */ 13109 if ((tp->snd_wl2 == ack) && (tiwin > tp->snd_wnd)) 13110 KMOD_TCPSTAT_INC(tcps_rcvwinupd); 13111 tp->snd_wnd = tiwin; 13112 rack_validate_fo_sendwin_up(tp, rack); 13113 tp->snd_wl1 = seq; 13114 tp->snd_wl2 = ack; 13115 if (tp->snd_wnd > tp->max_sndwnd) 13116 tp->max_sndwnd = tp->snd_wnd; 13117 rack->r_wanted_output = 1; 13118 } else if ((tp->snd_wl2 == ack) && (tiwin < tp->snd_wnd)) { 13119 tp->snd_wnd = tiwin; 13120 rack_validate_fo_sendwin_up(tp, rack); 13121 tp->snd_wl1 = seq; 13122 tp->snd_wl2 = ack; 13123 } else { 13124 /* Not a valid win update */ 13125 return; 13126 } 13127 /* Do we exit persists? */ 13128 if ((rack->rc_in_persist != 0) && 13129 (tp->snd_wnd >= min((rack->r_ctl.rc_high_rwnd/2), 13130 rack->r_ctl.rc_pace_min_segs))) { 13131 rack_exit_persist(tp, rack, cts); 13132 } 13133 /* Do we enter persists? */ 13134 if ((rack->rc_in_persist == 0) && 13135 (tp->snd_wnd < min((rack->r_ctl.rc_high_rwnd/2), rack->r_ctl.rc_pace_min_segs)) && 13136 TCPS_HAVEESTABLISHED(tp->t_state) && 13137 ((tp->snd_max == tp->snd_una) || rack->rc_has_collapsed) && 13138 sbavail(&tp->t_inpcb->inp_socket->so_snd) && 13139 (sbavail(&tp->t_inpcb->inp_socket->so_snd) > tp->snd_wnd)) { 13140 /* 13141 * Here the rwnd is less than 13142 * the pacing size, we are established, 13143 * nothing is outstanding, and there is 13144 * data to send. Enter persists. 13145 */ 13146 rack_enter_persist(tp, rack, rack->r_ctl.rc_rcvtime); 13147 } 13148 } 13149 13150 static void 13151 rack_log_input_packet(struct tcpcb *tp, struct tcp_rack *rack, struct tcp_ackent *ae, int ackval, uint32_t high_seq) 13152 { 13153 13154 if (tp->t_logstate != TCP_LOG_STATE_OFF) { 13155 union tcp_log_stackspecific log; 13156 struct timeval ltv; 13157 char tcp_hdr_buf[60]; 13158 struct tcphdr *th; 13159 struct timespec ts; 13160 uint32_t orig_snd_una; 13161 uint8_t xx = 0; 13162 13163 #ifdef NETFLIX_HTTP_LOGGING 13164 struct http_sendfile_track *http_req; 13165 13166 if (SEQ_GT(ae->ack, tp->snd_una)) { 13167 http_req = tcp_http_find_req_for_seq(tp, (ae->ack-1)); 13168 } else { 13169 http_req = tcp_http_find_req_for_seq(tp, ae->ack); 13170 } 13171 #endif 13172 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 13173 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 13174 if (rack->rack_no_prr == 0) 13175 log.u_bbr.flex1 = rack->r_ctl.rc_prr_sndcnt; 13176 else 13177 log.u_bbr.flex1 = 0; 13178 log.u_bbr.use_lt_bw = rack->r_ent_rec_ns; 13179 log.u_bbr.use_lt_bw <<= 1; 13180 log.u_bbr.use_lt_bw |= rack->r_might_revert; 13181 log.u_bbr.flex2 = rack->r_ctl.rc_num_maps_alloced; 13182 log.u_bbr.inflight = ctf_flight_size(tp, rack->r_ctl.rc_sacked); 13183 log.u_bbr.pkts_out = tp->t_maxseg; 13184 log.u_bbr.flex4 = rack->r_ctl.rc_hpts_flags; 13185 log.u_bbr.flex7 = 1; 13186 log.u_bbr.lost = ae->flags; 13187 log.u_bbr.cwnd_gain = ackval; 13188 log.u_bbr.pacing_gain = 0x2; 13189 if (ae->flags & TSTMP_HDWR) { 13190 /* Record the hardware timestamp if present */ 13191 log.u_bbr.flex3 = M_TSTMP; 13192 ts.tv_sec = ae->timestamp / 1000000000; 13193 ts.tv_nsec = ae->timestamp % 1000000000; 13194 ltv.tv_sec = ts.tv_sec; 13195 ltv.tv_usec = ts.tv_nsec / 1000; 13196 log.u_bbr.lt_epoch = tcp_tv_to_usectick(<v); 13197 } else if (ae->flags & TSTMP_LRO) { 13198 /* Record the LRO the arrival timestamp */ 13199 log.u_bbr.flex3 = M_TSTMP_LRO; 13200 ts.tv_sec = ae->timestamp / 1000000000; 13201 ts.tv_nsec = ae->timestamp % 1000000000; 13202 ltv.tv_sec = ts.tv_sec; 13203 ltv.tv_usec = ts.tv_nsec / 1000; 13204 log.u_bbr.flex5 = tcp_tv_to_usectick(<v); 13205 } 13206 log.u_bbr.timeStamp = tcp_get_usecs(<v); 13207 /* Log the rcv time */ 13208 log.u_bbr.delRate = ae->timestamp; 13209 #ifdef NETFLIX_HTTP_LOGGING 13210 log.u_bbr.applimited = tp->t_http_closed; 13211 log.u_bbr.applimited <<= 8; 13212 log.u_bbr.applimited |= tp->t_http_open; 13213 log.u_bbr.applimited <<= 8; 13214 log.u_bbr.applimited |= tp->t_http_req; 13215 if (http_req) { 13216 /* Copy out any client req info */ 13217 /* seconds */ 13218 log.u_bbr.pkt_epoch = (http_req->localtime / HPTS_USEC_IN_SEC); 13219 /* useconds */ 13220 log.u_bbr.delivered = (http_req->localtime % HPTS_USEC_IN_SEC); 13221 log.u_bbr.rttProp = http_req->timestamp; 13222 log.u_bbr.cur_del_rate = http_req->start; 13223 if (http_req->flags & TCP_HTTP_TRACK_FLG_OPEN) { 13224 log.u_bbr.flex8 |= 1; 13225 } else { 13226 log.u_bbr.flex8 |= 2; 13227 log.u_bbr.bw_inuse = http_req->end; 13228 } 13229 log.u_bbr.flex6 = http_req->start_seq; 13230 if (http_req->flags & TCP_HTTP_TRACK_FLG_COMP) { 13231 log.u_bbr.flex8 |= 4; 13232 log.u_bbr.epoch = http_req->end_seq; 13233 } 13234 } 13235 #endif 13236 memset(tcp_hdr_buf, 0, sizeof(tcp_hdr_buf)); 13237 th = (struct tcphdr *)tcp_hdr_buf; 13238 th->th_seq = ae->seq; 13239 th->th_ack = ae->ack; 13240 th->th_win = ae->win; 13241 /* Now fill in the ports */ 13242 th->th_sport = tp->t_inpcb->inp_fport; 13243 th->th_dport = tp->t_inpcb->inp_lport; 13244 tcp_set_flags(th, ae->flags); 13245 /* Now do we have a timestamp option? */ 13246 if (ae->flags & HAS_TSTMP) { 13247 u_char *cp; 13248 uint32_t val; 13249 13250 th->th_off = ((sizeof(struct tcphdr) + TCPOLEN_TSTAMP_APPA) >> 2); 13251 cp = (u_char *)(th + 1); 13252 *cp = TCPOPT_NOP; 13253 cp++; 13254 *cp = TCPOPT_NOP; 13255 cp++; 13256 *cp = TCPOPT_TIMESTAMP; 13257 cp++; 13258 *cp = TCPOLEN_TIMESTAMP; 13259 cp++; 13260 val = htonl(ae->ts_value); 13261 bcopy((char *)&val, 13262 (char *)cp, sizeof(uint32_t)); 13263 val = htonl(ae->ts_echo); 13264 bcopy((char *)&val, 13265 (char *)(cp + 4), sizeof(uint32_t)); 13266 } else 13267 th->th_off = (sizeof(struct tcphdr) >> 2); 13268 13269 /* 13270 * For sane logging we need to play a little trick. 13271 * If the ack were fully processed we would have moved 13272 * snd_una to high_seq, but since compressed acks are 13273 * processed in two phases, at this point (logging) snd_una 13274 * won't be advanced. So we would see multiple acks showing 13275 * the advancement. We can prevent that by "pretending" that 13276 * snd_una was advanced and then un-advancing it so that the 13277 * logging code has the right value for tlb_snd_una. 13278 */ 13279 if (tp->snd_una != high_seq) { 13280 orig_snd_una = tp->snd_una; 13281 tp->snd_una = high_seq; 13282 xx = 1; 13283 } else 13284 xx = 0; 13285 TCP_LOG_EVENTP(tp, th, 13286 &tp->t_inpcb->inp_socket->so_rcv, 13287 &tp->t_inpcb->inp_socket->so_snd, TCP_LOG_IN, 0, 13288 0, &log, true, <v); 13289 if (xx) { 13290 tp->snd_una = orig_snd_una; 13291 } 13292 } 13293 13294 } 13295 13296 static void 13297 rack_handle_probe_response(struct tcp_rack *rack, uint32_t tiwin, uint32_t us_cts) 13298 { 13299 uint32_t us_rtt; 13300 /* 13301 * A persist or keep-alive was forced out, update our 13302 * min rtt time. Note now worry about lost responses. 13303 * When a subsequent keep-alive or persist times out 13304 * and forced_ack is still on, then the last probe 13305 * was not responded to. In such cases we have a 13306 * sysctl that controls the behavior. Either we apply 13307 * the rtt but with reduced confidence (0). Or we just 13308 * plain don't apply the rtt estimate. Having data flow 13309 * will clear the probe_not_answered flag i.e. cum-ack 13310 * move forward <or> exiting and reentering persists. 13311 */ 13312 13313 rack->forced_ack = 0; 13314 rack->rc_tp->t_rxtshift = 0; 13315 if ((rack->rc_in_persist && 13316 (tiwin == rack->rc_tp->snd_wnd)) || 13317 (rack->rc_in_persist == 0)) { 13318 /* 13319 * In persists only apply the RTT update if this is 13320 * a response to our window probe. And that 13321 * means the rwnd sent must match the current 13322 * snd_wnd. If it does not, then we got a 13323 * window update ack instead. For keepalive 13324 * we allow the answer no matter what the window. 13325 * 13326 * Note that if the probe_not_answered is set then 13327 * the forced_ack_ts is the oldest one i.e. the first 13328 * probe sent that might have been lost. This assures 13329 * us that if we do calculate an RTT it is longer not 13330 * some short thing. 13331 */ 13332 if (rack->rc_in_persist) 13333 counter_u64_add(rack_persists_acks, 1); 13334 us_rtt = us_cts - rack->r_ctl.forced_ack_ts; 13335 if (us_rtt == 0) 13336 us_rtt = 1; 13337 if (rack->probe_not_answered == 0) { 13338 rack_apply_updated_usrtt(rack, us_rtt, us_cts); 13339 tcp_rack_xmit_timer(rack, us_rtt, 0, us_rtt, 3, NULL, 1); 13340 } else { 13341 /* We have a retransmitted probe here too */ 13342 if (rack_apply_rtt_with_reduced_conf) { 13343 rack_apply_updated_usrtt(rack, us_rtt, us_cts); 13344 tcp_rack_xmit_timer(rack, us_rtt, 0, us_rtt, 0, NULL, 1); 13345 } 13346 } 13347 } 13348 } 13349 13350 static int 13351 rack_do_compressed_ack_processing(struct tcpcb *tp, struct socket *so, struct mbuf *m, int nxt_pkt, struct timeval *tv) 13352 { 13353 /* 13354 * Handle a "special" compressed ack mbuf. Each incoming 13355 * ack has only four possible dispositions: 13356 * 13357 * A) It moves the cum-ack forward 13358 * B) It is behind the cum-ack. 13359 * C) It is a window-update ack. 13360 * D) It is a dup-ack. 13361 * 13362 * Note that we can have between 1 -> TCP_COMP_ACK_ENTRIES 13363 * in the incoming mbuf. We also need to still pay attention 13364 * to nxt_pkt since there may be another packet after this 13365 * one. 13366 */ 13367 #ifdef TCP_ACCOUNTING 13368 uint64_t ts_val; 13369 uint64_t rdstc; 13370 #endif 13371 int segsiz; 13372 struct timespec ts; 13373 struct tcp_rack *rack; 13374 struct tcp_ackent *ae; 13375 uint32_t tiwin, ms_cts, cts, acked, acked_amount, high_seq, win_seq, the_win, win_upd_ack; 13376 int cnt, i, did_out, ourfinisacked = 0; 13377 struct tcpopt to_holder, *to = NULL; 13378 #ifdef TCP_ACCOUNTING 13379 int win_up_req = 0; 13380 #endif 13381 int nsegs = 0; 13382 int under_pacing = 1; 13383 int recovery = 0; 13384 #ifdef TCP_ACCOUNTING 13385 sched_pin(); 13386 #endif 13387 rack = (struct tcp_rack *)tp->t_fb_ptr; 13388 if (rack->gp_ready && 13389 (rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT)) 13390 under_pacing = 0; 13391 else 13392 under_pacing = 1; 13393 13394 if (rack->r_state != tp->t_state) 13395 rack_set_state(tp, rack); 13396 if ((tp->t_state >= TCPS_FIN_WAIT_1) && 13397 (tp->t_flags & TF_GPUTINPROG)) { 13398 /* 13399 * We have a goodput in progress 13400 * and we have entered a late state. 13401 * Do we have enough data in the sb 13402 * to handle the GPUT request? 13403 */ 13404 uint32_t bytes; 13405 13406 bytes = tp->gput_ack - tp->gput_seq; 13407 if (SEQ_GT(tp->gput_seq, tp->snd_una)) 13408 bytes += tp->gput_seq - tp->snd_una; 13409 if (bytes > sbavail(&tp->t_inpcb->inp_socket->so_snd)) { 13410 /* 13411 * There are not enough bytes in the socket 13412 * buffer that have been sent to cover this 13413 * measurement. Cancel it. 13414 */ 13415 rack_log_pacing_delay_calc(rack, (tp->gput_ack - tp->gput_seq) /*flex2*/, 13416 rack->r_ctl.rc_gp_srtt /*flex1*/, 13417 tp->gput_seq, 13418 0, 0, 18, __LINE__, NULL, 0); 13419 tp->t_flags &= ~TF_GPUTINPROG; 13420 } 13421 } 13422 to = &to_holder; 13423 to->to_flags = 0; 13424 KASSERT((m->m_len >= sizeof(struct tcp_ackent)), 13425 ("tp:%p m_cmpack:%p with invalid len:%u", tp, m, m->m_len)); 13426 cnt = m->m_len / sizeof(struct tcp_ackent); 13427 counter_u64_add(rack_multi_single_eq, cnt); 13428 high_seq = tp->snd_una; 13429 the_win = tp->snd_wnd; 13430 win_seq = tp->snd_wl1; 13431 win_upd_ack = tp->snd_wl2; 13432 cts = tcp_tv_to_usectick(tv); 13433 ms_cts = tcp_tv_to_mssectick(tv); 13434 rack->r_ctl.rc_rcvtime = cts; 13435 segsiz = ctf_fixed_maxseg(tp); 13436 if ((rack->rc_gp_dyn_mul) && 13437 (rack->use_fixed_rate == 0) && 13438 (rack->rc_always_pace)) { 13439 /* Check in on probertt */ 13440 rack_check_probe_rtt(rack, cts); 13441 } 13442 for (i = 0; i < cnt; i++) { 13443 #ifdef TCP_ACCOUNTING 13444 ts_val = get_cyclecount(); 13445 #endif 13446 rack_clear_rate_sample(rack); 13447 ae = ((mtod(m, struct tcp_ackent *)) + i); 13448 /* Setup the window */ 13449 tiwin = ae->win << tp->snd_scale; 13450 if (tiwin > rack->r_ctl.rc_high_rwnd) 13451 rack->r_ctl.rc_high_rwnd = tiwin; 13452 /* figure out the type of ack */ 13453 if (SEQ_LT(ae->ack, high_seq)) { 13454 /* Case B*/ 13455 ae->ack_val_set = ACK_BEHIND; 13456 } else if (SEQ_GT(ae->ack, high_seq)) { 13457 /* Case A */ 13458 ae->ack_val_set = ACK_CUMACK; 13459 } else if ((tiwin == the_win) && (rack->rc_in_persist == 0)){ 13460 /* Case D */ 13461 ae->ack_val_set = ACK_DUPACK; 13462 } else { 13463 /* Case C */ 13464 ae->ack_val_set = ACK_RWND; 13465 } 13466 rack_log_input_packet(tp, rack, ae, ae->ack_val_set, high_seq); 13467 /* Validate timestamp */ 13468 if (ae->flags & HAS_TSTMP) { 13469 /* Setup for a timestamp */ 13470 to->to_flags = TOF_TS; 13471 ae->ts_echo -= tp->ts_offset; 13472 to->to_tsecr = ae->ts_echo; 13473 to->to_tsval = ae->ts_value; 13474 /* 13475 * If echoed timestamp is later than the current time, fall back to 13476 * non RFC1323 RTT calculation. Normalize timestamp if syncookies 13477 * were used when this connection was established. 13478 */ 13479 if (TSTMP_GT(ae->ts_echo, ms_cts)) 13480 to->to_tsecr = 0; 13481 if (tp->ts_recent && 13482 TSTMP_LT(ae->ts_value, tp->ts_recent)) { 13483 if (ctf_ts_check_ac(tp, (ae->flags & 0xff))) { 13484 #ifdef TCP_ACCOUNTING 13485 rdstc = get_cyclecount(); 13486 if (rdstc > ts_val) { 13487 counter_u64_add(tcp_proc_time[ae->ack_val_set] , 13488 (rdstc - ts_val)); 13489 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 13490 tp->tcp_proc_time[ae->ack_val_set] += (rdstc - ts_val); 13491 } 13492 } 13493 #endif 13494 continue; 13495 } 13496 } 13497 if (SEQ_LEQ(ae->seq, tp->last_ack_sent) && 13498 SEQ_LEQ(tp->last_ack_sent, ae->seq)) { 13499 tp->ts_recent_age = tcp_ts_getticks(); 13500 tp->ts_recent = ae->ts_value; 13501 } 13502 } else { 13503 /* Setup for a no options */ 13504 to->to_flags = 0; 13505 } 13506 /* Update the rcv time and perform idle reduction possibly */ 13507 if (tp->t_idle_reduce && 13508 (tp->snd_max == tp->snd_una) && 13509 (TICKS_2_USEC(ticks - tp->t_rcvtime) >= tp->t_rxtcur)) { 13510 counter_u64_add(rack_input_idle_reduces, 1); 13511 rack_cc_after_idle(rack, tp); 13512 } 13513 tp->t_rcvtime = ticks; 13514 /* Now what about ECN? */ 13515 if (tcp_ecn_input_segment(tp, ae->flags, ae->codepoint)) 13516 rack_cong_signal(tp, CC_ECN, ae->ack, __LINE__); 13517 #ifdef TCP_ACCOUNTING 13518 /* Count for the specific type of ack in */ 13519 counter_u64_add(tcp_cnt_counters[ae->ack_val_set], 1); 13520 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 13521 tp->tcp_cnt_counters[ae->ack_val_set]++; 13522 } 13523 #endif 13524 /* 13525 * Note how we could move up these in the determination 13526 * above, but we don't so that way the timestamp checks (and ECN) 13527 * is done first before we do any processing on the ACK. 13528 * The non-compressed path through the code has this 13529 * weakness (noted by @jtl) that it actually does some 13530 * processing before verifying the timestamp information. 13531 * We don't take that path here which is why we set 13532 * the ack_val_set first, do the timestamp and ecn 13533 * processing, and then look at what we have setup. 13534 */ 13535 if (ae->ack_val_set == ACK_BEHIND) { 13536 /* 13537 * Case B flag reordering, if window is not closed 13538 * or it could be a keep-alive or persists 13539 */ 13540 if (SEQ_LT(ae->ack, tp->snd_una) && (sbspace(&so->so_rcv) > segsiz)) { 13541 rack->r_ctl.rc_reorder_ts = tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time); 13542 } 13543 } else if (ae->ack_val_set == ACK_DUPACK) { 13544 /* Case D */ 13545 rack_strike_dupack(rack); 13546 } else if (ae->ack_val_set == ACK_RWND) { 13547 /* Case C */ 13548 if ((ae->flags & TSTMP_LRO) || (ae->flags & TSTMP_HDWR)) { 13549 ts.tv_sec = ae->timestamp / 1000000000; 13550 ts.tv_nsec = ae->timestamp % 1000000000; 13551 rack->r_ctl.act_rcv_time.tv_sec = ts.tv_sec; 13552 rack->r_ctl.act_rcv_time.tv_usec = ts.tv_nsec/1000; 13553 } else { 13554 rack->r_ctl.act_rcv_time = *tv; 13555 } 13556 if (rack->forced_ack) { 13557 rack_handle_probe_response(rack, tiwin, 13558 tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time)); 13559 } 13560 #ifdef TCP_ACCOUNTING 13561 win_up_req = 1; 13562 #endif 13563 win_upd_ack = ae->ack; 13564 win_seq = ae->seq; 13565 the_win = tiwin; 13566 rack_do_win_updates(tp, rack, the_win, win_seq, win_upd_ack, cts, high_seq); 13567 } else { 13568 /* Case A */ 13569 if (SEQ_GT(ae->ack, tp->snd_max)) { 13570 /* 13571 * We just send an ack since the incoming 13572 * ack is beyond the largest seq we sent. 13573 */ 13574 if ((tp->t_flags & TF_ACKNOW) == 0) { 13575 ctf_ack_war_checks(tp, &rack->r_ctl.challenge_ack_ts, &rack->r_ctl.challenge_ack_cnt); 13576 if (tp->t_flags && TF_ACKNOW) 13577 rack->r_wanted_output = 1; 13578 } 13579 } else { 13580 nsegs++; 13581 /* If the window changed setup to update */ 13582 if (tiwin != tp->snd_wnd) { 13583 win_upd_ack = ae->ack; 13584 win_seq = ae->seq; 13585 the_win = tiwin; 13586 rack_do_win_updates(tp, rack, the_win, win_seq, win_upd_ack, cts, high_seq); 13587 } 13588 #ifdef TCP_ACCOUNTING 13589 /* Account for the acks */ 13590 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 13591 tp->tcp_cnt_counters[CNT_OF_ACKS_IN] += (((ae->ack - high_seq) + segsiz - 1) / segsiz); 13592 } 13593 counter_u64_add(tcp_cnt_counters[CNT_OF_ACKS_IN], 13594 (((ae->ack - high_seq) + segsiz - 1) / segsiz)); 13595 #endif 13596 high_seq = ae->ack; 13597 if (rack_verbose_logging && (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF)) { 13598 union tcp_log_stackspecific log; 13599 struct timeval tv; 13600 13601 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 13602 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 13603 log.u_bbr.flex1 = high_seq; 13604 log.u_bbr.flex2 = rack->r_ctl.roundends; 13605 log.u_bbr.flex3 = rack->r_ctl.current_round; 13606 log.u_bbr.rttProp = (uint64_t)CC_ALGO(tp)->newround; 13607 log.u_bbr.flex8 = 8; 13608 tcp_log_event_(tp, NULL, NULL, NULL, BBR_LOG_CWND, 0, 13609 0, &log, false, NULL, NULL, 0, &tv); 13610 } 13611 /* 13612 * The draft (v3) calls for us to use SEQ_GEQ, but that 13613 * causes issues when we are just going app limited. Lets 13614 * instead use SEQ_GT <or> where its equal but more data 13615 * is outstanding. 13616 */ 13617 if ((SEQ_GT(high_seq, rack->r_ctl.roundends)) || 13618 ((high_seq == rack->r_ctl.roundends) && 13619 SEQ_GT(tp->snd_max, tp->snd_una))) { 13620 rack->r_ctl.current_round++; 13621 rack->r_ctl.roundends = tp->snd_max; 13622 if (CC_ALGO(tp)->newround != NULL) { 13623 CC_ALGO(tp)->newround(tp->ccv, rack->r_ctl.current_round); 13624 } 13625 } 13626 /* Setup our act_rcv_time */ 13627 if ((ae->flags & TSTMP_LRO) || (ae->flags & TSTMP_HDWR)) { 13628 ts.tv_sec = ae->timestamp / 1000000000; 13629 ts.tv_nsec = ae->timestamp % 1000000000; 13630 rack->r_ctl.act_rcv_time.tv_sec = ts.tv_sec; 13631 rack->r_ctl.act_rcv_time.tv_usec = ts.tv_nsec/1000; 13632 } else { 13633 rack->r_ctl.act_rcv_time = *tv; 13634 } 13635 rack_process_to_cumack(tp, rack, ae->ack, cts, to); 13636 if (rack->rc_dsack_round_seen) { 13637 /* Is the dsack round over? */ 13638 if (SEQ_GEQ(ae->ack, rack->r_ctl.dsack_round_end)) { 13639 /* Yes it is */ 13640 rack->rc_dsack_round_seen = 0; 13641 rack_log_dsack_event(rack, 3, __LINE__, 0, 0); 13642 } 13643 } 13644 } 13645 } 13646 /* And lets be sure to commit the rtt measurements for this ack */ 13647 tcp_rack_xmit_timer_commit(rack, tp); 13648 #ifdef TCP_ACCOUNTING 13649 rdstc = get_cyclecount(); 13650 if (rdstc > ts_val) { 13651 counter_u64_add(tcp_proc_time[ae->ack_val_set] , (rdstc - ts_val)); 13652 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 13653 tp->tcp_proc_time[ae->ack_val_set] += (rdstc - ts_val); 13654 if (ae->ack_val_set == ACK_CUMACK) 13655 tp->tcp_proc_time[CYC_HANDLE_MAP] += (rdstc - ts_val); 13656 } 13657 } 13658 #endif 13659 } 13660 #ifdef TCP_ACCOUNTING 13661 ts_val = get_cyclecount(); 13662 #endif 13663 /* Tend to any collapsed window */ 13664 if (SEQ_GT(tp->snd_max, high_seq) && (tp->snd_wnd < (tp->snd_max - high_seq))) { 13665 /* The peer collapsed the window */ 13666 rack_collapsed_window(rack, (tp->snd_max - high_seq), __LINE__); 13667 } else if (rack->rc_has_collapsed) 13668 rack_un_collapse_window(rack, __LINE__); 13669 if ((rack->r_collapse_point_valid) && 13670 (SEQ_GT(high_seq, rack->r_ctl.high_collapse_point))) 13671 rack->r_collapse_point_valid = 0; 13672 acked_amount = acked = (high_seq - tp->snd_una); 13673 if (acked) { 13674 /* 13675 * Clear the probe not answered flag 13676 * since cum-ack moved forward. 13677 */ 13678 rack->probe_not_answered = 0; 13679 if (rack->sack_attack_disable == 0) 13680 rack_do_decay(rack); 13681 if (acked >= segsiz) { 13682 /* 13683 * You only get credit for 13684 * MSS and greater (and you get extra 13685 * credit for larger cum-ack moves). 13686 */ 13687 int ac; 13688 13689 ac = acked / segsiz; 13690 rack->r_ctl.ack_count += ac; 13691 counter_u64_add(rack_ack_total, ac); 13692 } 13693 if (rack->r_ctl.ack_count > 0xfff00000) { 13694 /* 13695 * reduce the number to keep us under 13696 * a uint32_t. 13697 */ 13698 rack->r_ctl.ack_count /= 2; 13699 rack->r_ctl.sack_count /= 2; 13700 } 13701 if (tp->t_flags & TF_NEEDSYN) { 13702 /* 13703 * T/TCP: Connection was half-synchronized, and our SYN has 13704 * been ACK'd (so connection is now fully synchronized). Go 13705 * to non-starred state, increment snd_una for ACK of SYN, 13706 * and check if we can do window scaling. 13707 */ 13708 tp->t_flags &= ~TF_NEEDSYN; 13709 tp->snd_una++; 13710 acked_amount = acked = (high_seq - tp->snd_una); 13711 } 13712 if (acked > sbavail(&so->so_snd)) 13713 acked_amount = sbavail(&so->so_snd); 13714 #ifdef NETFLIX_EXP_DETECTION 13715 /* 13716 * We only care on a cum-ack move if we are in a sack-disabled 13717 * state. We have already added in to the ack_count, and we never 13718 * would disable on a cum-ack move, so we only care to do the 13719 * detection if it may "undo" it, i.e. we were in disabled already. 13720 */ 13721 if (rack->sack_attack_disable) 13722 rack_do_detection(tp, rack, acked_amount, segsiz); 13723 #endif 13724 if (IN_FASTRECOVERY(tp->t_flags) && 13725 (rack->rack_no_prr == 0)) 13726 rack_update_prr(tp, rack, acked_amount, high_seq); 13727 if (IN_RECOVERY(tp->t_flags)) { 13728 if (SEQ_LT(high_seq, tp->snd_recover) && 13729 (SEQ_LT(high_seq, tp->snd_max))) { 13730 tcp_rack_partialack(tp); 13731 } else { 13732 rack_post_recovery(tp, high_seq); 13733 recovery = 1; 13734 } 13735 } 13736 /* Handle the rack-log-ack part (sendmap) */ 13737 if ((sbused(&so->so_snd) == 0) && 13738 (acked > acked_amount) && 13739 (tp->t_state >= TCPS_FIN_WAIT_1) && 13740 (tp->t_flags & TF_SENTFIN)) { 13741 /* 13742 * We must be sure our fin 13743 * was sent and acked (we can be 13744 * in FIN_WAIT_1 without having 13745 * sent the fin). 13746 */ 13747 ourfinisacked = 1; 13748 /* 13749 * Lets make sure snd_una is updated 13750 * since most likely acked_amount = 0 (it 13751 * should be). 13752 */ 13753 tp->snd_una = high_seq; 13754 } 13755 /* Did we make a RTO error? */ 13756 if ((tp->t_flags & TF_PREVVALID) && 13757 ((tp->t_flags & TF_RCVD_TSTMP) == 0)) { 13758 tp->t_flags &= ~TF_PREVVALID; 13759 if (tp->t_rxtshift == 1 && 13760 (int)(ticks - tp->t_badrxtwin) < 0) 13761 rack_cong_signal(tp, CC_RTO_ERR, high_seq, __LINE__); 13762 } 13763 /* Handle the data in the socket buffer */ 13764 KMOD_TCPSTAT_ADD(tcps_rcvackpack, 1); 13765 KMOD_TCPSTAT_ADD(tcps_rcvackbyte, acked); 13766 if (acked_amount > 0) { 13767 struct mbuf *mfree; 13768 13769 rack_ack_received(tp, rack, high_seq, nsegs, CC_ACK, recovery); 13770 SOCKBUF_LOCK(&so->so_snd); 13771 mfree = sbcut_locked(&so->so_snd, acked_amount); 13772 tp->snd_una = high_seq; 13773 /* Note we want to hold the sb lock through the sendmap adjust */ 13774 rack_adjust_sendmap(rack, &so->so_snd, tp->snd_una); 13775 /* Wake up the socket if we have room to write more */ 13776 rack_log_wakeup(tp,rack, &so->so_snd, acked, 2); 13777 sowwakeup_locked(so); 13778 m_freem(mfree); 13779 } 13780 /* update progress */ 13781 tp->t_acktime = ticks; 13782 rack_log_progress_event(rack, tp, tp->t_acktime, 13783 PROGRESS_UPDATE, __LINE__); 13784 /* Clear out shifts and such */ 13785 tp->t_rxtshift = 0; 13786 RACK_TCPT_RANGESET(tp->t_rxtcur, RACK_REXMTVAL(tp), 13787 rack_rto_min, rack_rto_max, rack->r_ctl.timer_slop); 13788 rack->rc_tlp_in_progress = 0; 13789 rack->r_ctl.rc_tlp_cnt_out = 0; 13790 /* Send recover and snd_nxt must be dragged along */ 13791 if (SEQ_GT(tp->snd_una, tp->snd_recover)) 13792 tp->snd_recover = tp->snd_una; 13793 if (SEQ_LT(tp->snd_nxt, tp->snd_una)) 13794 tp->snd_nxt = tp->snd_una; 13795 /* 13796 * If the RXT timer is running we want to 13797 * stop it, so we can restart a TLP (or new RXT). 13798 */ 13799 if (rack->r_ctl.rc_hpts_flags & PACE_TMR_RXT) 13800 rack_timer_cancel(tp, rack, rack->r_ctl.rc_rcvtime, __LINE__); 13801 #ifdef NETFLIX_HTTP_LOGGING 13802 tcp_http_check_for_comp(rack->rc_tp, high_seq); 13803 #endif 13804 tp->snd_wl2 = high_seq; 13805 tp->t_dupacks = 0; 13806 if (under_pacing && 13807 (rack->use_fixed_rate == 0) && 13808 (rack->in_probe_rtt == 0) && 13809 rack->rc_gp_dyn_mul && 13810 rack->rc_always_pace) { 13811 /* Check if we are dragging bottom */ 13812 rack_check_bottom_drag(tp, rack, so, acked); 13813 } 13814 if (tp->snd_una == tp->snd_max) { 13815 tp->t_flags &= ~TF_PREVVALID; 13816 rack->r_ctl.retran_during_recovery = 0; 13817 rack->r_ctl.dsack_byte_cnt = 0; 13818 rack->r_ctl.rc_went_idle_time = tcp_get_usecs(NULL); 13819 if (rack->r_ctl.rc_went_idle_time == 0) 13820 rack->r_ctl.rc_went_idle_time = 1; 13821 rack_log_progress_event(rack, tp, 0, PROGRESS_CLEAR, __LINE__); 13822 if (sbavail(&tp->t_inpcb->inp_socket->so_snd) == 0) 13823 tp->t_acktime = 0; 13824 /* Set so we might enter persists... */ 13825 rack->r_wanted_output = 1; 13826 rack_timer_cancel(tp, rack, rack->r_ctl.rc_rcvtime, __LINE__); 13827 sack_filter_clear(&rack->r_ctl.rack_sf, tp->snd_una); 13828 if ((tp->t_state >= TCPS_FIN_WAIT_1) && 13829 (sbavail(&so->so_snd) == 0) && 13830 (tp->t_flags2 & TF2_DROP_AF_DATA)) { 13831 /* 13832 * The socket was gone and the 13833 * peer sent data (not now in the past), time to 13834 * reset him. 13835 */ 13836 rack_timer_cancel(tp, rack, rack->r_ctl.rc_rcvtime, __LINE__); 13837 /* tcp_close will kill the inp pre-log the Reset */ 13838 tcp_log_end_status(tp, TCP_EI_STATUS_SERVER_RST); 13839 #ifdef TCP_ACCOUNTING 13840 rdstc = get_cyclecount(); 13841 if (rdstc > ts_val) { 13842 counter_u64_add(tcp_proc_time[ACK_CUMACK] , (rdstc - ts_val)); 13843 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 13844 tp->tcp_proc_time[ACK_CUMACK] += (rdstc - ts_val); 13845 tp->tcp_proc_time[CYC_HANDLE_ACK] += (rdstc - ts_val); 13846 } 13847 } 13848 #endif 13849 m_freem(m); 13850 tp = tcp_close(tp); 13851 if (tp == NULL) { 13852 #ifdef TCP_ACCOUNTING 13853 sched_unpin(); 13854 #endif 13855 return (1); 13856 } 13857 /* 13858 * We would normally do drop-with-reset which would 13859 * send back a reset. We can't since we don't have 13860 * all the needed bits. Instead lets arrange for 13861 * a call to tcp_output(). That way since we 13862 * are in the closed state we will generate a reset. 13863 * 13864 * Note if tcp_accounting is on we don't unpin since 13865 * we do that after the goto label. 13866 */ 13867 goto send_out_a_rst; 13868 } 13869 if ((sbused(&so->so_snd) == 0) && 13870 (tp->t_state >= TCPS_FIN_WAIT_1) && 13871 (tp->t_flags & TF_SENTFIN)) { 13872 /* 13873 * If we can't receive any more data, then closing user can 13874 * proceed. Starting the timer is contrary to the 13875 * specification, but if we don't get a FIN we'll hang 13876 * forever. 13877 * 13878 */ 13879 if (so->so_rcv.sb_state & SBS_CANTRCVMORE) { 13880 soisdisconnected(so); 13881 tcp_timer_activate(tp, TT_2MSL, 13882 (tcp_fast_finwait2_recycle ? 13883 tcp_finwait2_timeout : 13884 TP_MAXIDLE(tp))); 13885 } 13886 if (ourfinisacked == 0) { 13887 /* 13888 * We don't change to fin-wait-2 if we have our fin acked 13889 * which means we are probably in TCPS_CLOSING. 13890 */ 13891 tcp_state_change(tp, TCPS_FIN_WAIT_2); 13892 } 13893 } 13894 } 13895 /* Wake up the socket if we have room to write more */ 13896 if (sbavail(&so->so_snd)) { 13897 rack->r_wanted_output = 1; 13898 if (ctf_progress_timeout_check(tp, true)) { 13899 rack_log_progress_event((struct tcp_rack *)tp->t_fb_ptr, 13900 tp, tick, PROGRESS_DROP, __LINE__); 13901 /* 13902 * We cheat here and don't send a RST, we should send one 13903 * when the pacer drops the connection. 13904 */ 13905 #ifdef TCP_ACCOUNTING 13906 rdstc = get_cyclecount(); 13907 if (rdstc > ts_val) { 13908 counter_u64_add(tcp_proc_time[ACK_CUMACK] , (rdstc - ts_val)); 13909 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 13910 tp->tcp_proc_time[ACK_CUMACK] += (rdstc - ts_val); 13911 tp->tcp_proc_time[CYC_HANDLE_ACK] += (rdstc - ts_val); 13912 } 13913 } 13914 sched_unpin(); 13915 #endif 13916 (void)tcp_drop(tp, ETIMEDOUT); 13917 m_freem(m); 13918 return (1); 13919 } 13920 } 13921 if (ourfinisacked) { 13922 switch(tp->t_state) { 13923 case TCPS_CLOSING: 13924 #ifdef TCP_ACCOUNTING 13925 rdstc = get_cyclecount(); 13926 if (rdstc > ts_val) { 13927 counter_u64_add(tcp_proc_time[ACK_CUMACK] , 13928 (rdstc - ts_val)); 13929 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 13930 tp->tcp_proc_time[ACK_CUMACK] += (rdstc - ts_val); 13931 tp->tcp_proc_time[CYC_HANDLE_ACK] += (rdstc - ts_val); 13932 } 13933 } 13934 sched_unpin(); 13935 #endif 13936 tcp_twstart(tp); 13937 m_freem(m); 13938 return (1); 13939 break; 13940 case TCPS_LAST_ACK: 13941 #ifdef TCP_ACCOUNTING 13942 rdstc = get_cyclecount(); 13943 if (rdstc > ts_val) { 13944 counter_u64_add(tcp_proc_time[ACK_CUMACK] , 13945 (rdstc - ts_val)); 13946 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 13947 tp->tcp_proc_time[ACK_CUMACK] += (rdstc - ts_val); 13948 tp->tcp_proc_time[CYC_HANDLE_ACK] += (rdstc - ts_val); 13949 } 13950 } 13951 sched_unpin(); 13952 #endif 13953 tp = tcp_close(tp); 13954 ctf_do_drop(m, tp); 13955 return (1); 13956 break; 13957 case TCPS_FIN_WAIT_1: 13958 #ifdef TCP_ACCOUNTING 13959 rdstc = get_cyclecount(); 13960 if (rdstc > ts_val) { 13961 counter_u64_add(tcp_proc_time[ACK_CUMACK] , 13962 (rdstc - ts_val)); 13963 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 13964 tp->tcp_proc_time[ACK_CUMACK] += (rdstc - ts_val); 13965 tp->tcp_proc_time[CYC_HANDLE_ACK] += (rdstc - ts_val); 13966 } 13967 } 13968 #endif 13969 if (so->so_rcv.sb_state & SBS_CANTRCVMORE) { 13970 soisdisconnected(so); 13971 tcp_timer_activate(tp, TT_2MSL, 13972 (tcp_fast_finwait2_recycle ? 13973 tcp_finwait2_timeout : 13974 TP_MAXIDLE(tp))); 13975 } 13976 tcp_state_change(tp, TCPS_FIN_WAIT_2); 13977 break; 13978 default: 13979 break; 13980 } 13981 } 13982 if (rack->r_fast_output) { 13983 /* 13984 * We re doing fast output.. can we expand that? 13985 */ 13986 rack_gain_for_fastoutput(rack, tp, so, acked_amount); 13987 } 13988 #ifdef TCP_ACCOUNTING 13989 rdstc = get_cyclecount(); 13990 if (rdstc > ts_val) { 13991 counter_u64_add(tcp_proc_time[ACK_CUMACK] , (rdstc - ts_val)); 13992 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 13993 tp->tcp_proc_time[ACK_CUMACK] += (rdstc - ts_val); 13994 tp->tcp_proc_time[CYC_HANDLE_ACK] += (rdstc - ts_val); 13995 } 13996 } 13997 13998 } else if (win_up_req) { 13999 rdstc = get_cyclecount(); 14000 if (rdstc > ts_val) { 14001 counter_u64_add(tcp_proc_time[ACK_RWND] , (rdstc - ts_val)); 14002 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 14003 tp->tcp_proc_time[ACK_RWND] += (rdstc - ts_val); 14004 } 14005 } 14006 #endif 14007 } 14008 /* Now is there a next packet, if so we are done */ 14009 m_freem(m); 14010 did_out = 0; 14011 if (nxt_pkt) { 14012 #ifdef TCP_ACCOUNTING 14013 sched_unpin(); 14014 #endif 14015 rack_log_doseg_done(rack, cts, nxt_pkt, did_out, 5, nsegs); 14016 return (0); 14017 } 14018 rack_handle_might_revert(tp, rack); 14019 ctf_calc_rwin(so, tp); 14020 if ((rack->r_wanted_output != 0) || (rack->r_fast_output != 0)) { 14021 send_out_a_rst: 14022 if (tcp_output(tp) < 0) { 14023 #ifdef TCP_ACCOUNTING 14024 sched_unpin(); 14025 #endif 14026 return (1); 14027 } 14028 did_out = 1; 14029 } 14030 rack_free_trim(rack); 14031 #ifdef TCP_ACCOUNTING 14032 sched_unpin(); 14033 #endif 14034 rack_timer_audit(tp, rack, &so->so_snd); 14035 rack_log_doseg_done(rack, cts, nxt_pkt, did_out, 6, nsegs); 14036 return (0); 14037 } 14038 14039 14040 static int 14041 rack_do_segment_nounlock(struct mbuf *m, struct tcphdr *th, struct socket *so, 14042 struct tcpcb *tp, int32_t drop_hdrlen, int32_t tlen, uint8_t iptos, 14043 int32_t nxt_pkt, struct timeval *tv) 14044 { 14045 #ifdef TCP_ACCOUNTING 14046 uint64_t ts_val; 14047 #endif 14048 int32_t thflags, retval, did_out = 0; 14049 int32_t way_out = 0; 14050 /* 14051 * cts - is the current time from tv (caller gets ts) in microseconds. 14052 * ms_cts - is the current time from tv in milliseconds. 14053 * us_cts - is the time that LRO or hardware actually got the packet in microseconds. 14054 */ 14055 uint32_t cts, us_cts, ms_cts; 14056 uint32_t tiwin, high_seq; 14057 struct timespec ts; 14058 struct tcpopt to; 14059 struct tcp_rack *rack; 14060 struct rack_sendmap *rsm; 14061 int32_t prev_state = 0; 14062 #ifdef TCP_ACCOUNTING 14063 int ack_val_set = 0xf; 14064 #endif 14065 int nsegs; 14066 /* 14067 * tv passed from common code is from either M_TSTMP_LRO or 14068 * tcp_get_usecs() if no LRO m_pkthdr timestamp is present. 14069 */ 14070 rack = (struct tcp_rack *)tp->t_fb_ptr; 14071 if (m->m_flags & M_ACKCMP) { 14072 /* 14073 * All compressed ack's are ack's by definition so 14074 * remove any ack required flag and then do the processing. 14075 */ 14076 rack->rc_ack_required = 0; 14077 return (rack_do_compressed_ack_processing(tp, so, m, nxt_pkt, tv)); 14078 } 14079 if (m->m_flags & M_ACKCMP) { 14080 panic("Impossible reach m has ackcmp? m:%p tp:%p", m, tp); 14081 } 14082 cts = tcp_tv_to_usectick(tv); 14083 ms_cts = tcp_tv_to_mssectick(tv); 14084 nsegs = m->m_pkthdr.lro_nsegs; 14085 counter_u64_add(rack_proc_non_comp_ack, 1); 14086 thflags = tcp_get_flags(th); 14087 #ifdef TCP_ACCOUNTING 14088 sched_pin(); 14089 if (thflags & TH_ACK) 14090 ts_val = get_cyclecount(); 14091 #endif 14092 if ((m->m_flags & M_TSTMP) || 14093 (m->m_flags & M_TSTMP_LRO)) { 14094 mbuf_tstmp2timespec(m, &ts); 14095 rack->r_ctl.act_rcv_time.tv_sec = ts.tv_sec; 14096 rack->r_ctl.act_rcv_time.tv_usec = ts.tv_nsec/1000; 14097 } else 14098 rack->r_ctl.act_rcv_time = *tv; 14099 kern_prefetch(rack, &prev_state); 14100 prev_state = 0; 14101 /* 14102 * Unscale the window into a 32-bit value. For the SYN_SENT state 14103 * the scale is zero. 14104 */ 14105 tiwin = th->th_win << tp->snd_scale; 14106 #ifdef TCP_ACCOUNTING 14107 if (thflags & TH_ACK) { 14108 /* 14109 * We have a tradeoff here. We can either do what we are 14110 * doing i.e. pinning to this CPU and then doing the accounting 14111 * <or> we could do a critical enter, setup the rdtsc and cpu 14112 * as in below, and then validate we are on the same CPU on 14113 * exit. I have choosen to not do the critical enter since 14114 * that often will gain you a context switch, and instead lock 14115 * us (line above this if) to the same CPU with sched_pin(). This 14116 * means we may be context switched out for a higher priority 14117 * interupt but we won't be moved to another CPU. 14118 * 14119 * If this occurs (which it won't very often since we most likely 14120 * are running this code in interupt context and only a higher 14121 * priority will bump us ... clock?) we will falsely add in 14122 * to the time the interupt processing time plus the ack processing 14123 * time. This is ok since its a rare event. 14124 */ 14125 ack_val_set = tcp_do_ack_accounting(tp, th, &to, tiwin, 14126 ctf_fixed_maxseg(tp)); 14127 } 14128 #endif 14129 /* 14130 * Parse options on any incoming segment. 14131 */ 14132 memset(&to, 0, sizeof(to)); 14133 tcp_dooptions(&to, (u_char *)(th + 1), 14134 (th->th_off << 2) - sizeof(struct tcphdr), 14135 (thflags & TH_SYN) ? TO_SYN : 0); 14136 NET_EPOCH_ASSERT(); 14137 INP_WLOCK_ASSERT(tp->t_inpcb); 14138 KASSERT(tp->t_state > TCPS_LISTEN, ("%s: TCPS_LISTEN", 14139 __func__)); 14140 KASSERT(tp->t_state != TCPS_TIME_WAIT, ("%s: TCPS_TIME_WAIT", 14141 __func__)); 14142 if ((tp->t_state >= TCPS_FIN_WAIT_1) && 14143 (tp->t_flags & TF_GPUTINPROG)) { 14144 /* 14145 * We have a goodput in progress 14146 * and we have entered a late state. 14147 * Do we have enough data in the sb 14148 * to handle the GPUT request? 14149 */ 14150 uint32_t bytes; 14151 14152 bytes = tp->gput_ack - tp->gput_seq; 14153 if (SEQ_GT(tp->gput_seq, tp->snd_una)) 14154 bytes += tp->gput_seq - tp->snd_una; 14155 if (bytes > sbavail(&tp->t_inpcb->inp_socket->so_snd)) { 14156 /* 14157 * There are not enough bytes in the socket 14158 * buffer that have been sent to cover this 14159 * measurement. Cancel it. 14160 */ 14161 rack_log_pacing_delay_calc(rack, (tp->gput_ack - tp->gput_seq) /*flex2*/, 14162 rack->r_ctl.rc_gp_srtt /*flex1*/, 14163 tp->gput_seq, 14164 0, 0, 18, __LINE__, NULL, 0); 14165 tp->t_flags &= ~TF_GPUTINPROG; 14166 } 14167 } 14168 high_seq = th->th_ack; 14169 if (tp->t_logstate != TCP_LOG_STATE_OFF) { 14170 union tcp_log_stackspecific log; 14171 struct timeval ltv; 14172 #ifdef NETFLIX_HTTP_LOGGING 14173 struct http_sendfile_track *http_req; 14174 14175 if (SEQ_GT(th->th_ack, tp->snd_una)) { 14176 http_req = tcp_http_find_req_for_seq(tp, (th->th_ack-1)); 14177 } else { 14178 http_req = tcp_http_find_req_for_seq(tp, th->th_ack); 14179 } 14180 #endif 14181 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 14182 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 14183 if (rack->rack_no_prr == 0) 14184 log.u_bbr.flex1 = rack->r_ctl.rc_prr_sndcnt; 14185 else 14186 log.u_bbr.flex1 = 0; 14187 log.u_bbr.use_lt_bw = rack->r_ent_rec_ns; 14188 log.u_bbr.use_lt_bw <<= 1; 14189 log.u_bbr.use_lt_bw |= rack->r_might_revert; 14190 log.u_bbr.flex2 = rack->r_ctl.rc_num_maps_alloced; 14191 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 14192 log.u_bbr.pkts_out = rack->rc_tp->t_maxseg; 14193 log.u_bbr.flex3 = m->m_flags; 14194 log.u_bbr.flex4 = rack->r_ctl.rc_hpts_flags; 14195 log.u_bbr.lost = thflags; 14196 log.u_bbr.pacing_gain = 0x1; 14197 #ifdef TCP_ACCOUNTING 14198 log.u_bbr.cwnd_gain = ack_val_set; 14199 #endif 14200 log.u_bbr.flex7 = 2; 14201 if (m->m_flags & M_TSTMP) { 14202 /* Record the hardware timestamp if present */ 14203 mbuf_tstmp2timespec(m, &ts); 14204 ltv.tv_sec = ts.tv_sec; 14205 ltv.tv_usec = ts.tv_nsec / 1000; 14206 log.u_bbr.lt_epoch = tcp_tv_to_usectick(<v); 14207 } else if (m->m_flags & M_TSTMP_LRO) { 14208 /* Record the LRO the arrival timestamp */ 14209 mbuf_tstmp2timespec(m, &ts); 14210 ltv.tv_sec = ts.tv_sec; 14211 ltv.tv_usec = ts.tv_nsec / 1000; 14212 log.u_bbr.flex5 = tcp_tv_to_usectick(<v); 14213 } 14214 log.u_bbr.timeStamp = tcp_get_usecs(<v); 14215 /* Log the rcv time */ 14216 log.u_bbr.delRate = m->m_pkthdr.rcv_tstmp; 14217 #ifdef NETFLIX_HTTP_LOGGING 14218 log.u_bbr.applimited = tp->t_http_closed; 14219 log.u_bbr.applimited <<= 8; 14220 log.u_bbr.applimited |= tp->t_http_open; 14221 log.u_bbr.applimited <<= 8; 14222 log.u_bbr.applimited |= tp->t_http_req; 14223 if (http_req) { 14224 /* Copy out any client req info */ 14225 /* seconds */ 14226 log.u_bbr.pkt_epoch = (http_req->localtime / HPTS_USEC_IN_SEC); 14227 /* useconds */ 14228 log.u_bbr.delivered = (http_req->localtime % HPTS_USEC_IN_SEC); 14229 log.u_bbr.rttProp = http_req->timestamp; 14230 log.u_bbr.cur_del_rate = http_req->start; 14231 if (http_req->flags & TCP_HTTP_TRACK_FLG_OPEN) { 14232 log.u_bbr.flex8 |= 1; 14233 } else { 14234 log.u_bbr.flex8 |= 2; 14235 log.u_bbr.bw_inuse = http_req->end; 14236 } 14237 log.u_bbr.flex6 = http_req->start_seq; 14238 if (http_req->flags & TCP_HTTP_TRACK_FLG_COMP) { 14239 log.u_bbr.flex8 |= 4; 14240 log.u_bbr.epoch = http_req->end_seq; 14241 } 14242 } 14243 #endif 14244 TCP_LOG_EVENTP(tp, th, &so->so_rcv, &so->so_snd, TCP_LOG_IN, 0, 14245 tlen, &log, true, <v); 14246 } 14247 /* Remove ack required flag if set, we have one */ 14248 if (thflags & TH_ACK) 14249 rack->rc_ack_required = 0; 14250 if ((thflags & TH_SYN) && (thflags & TH_FIN) && V_drop_synfin) { 14251 way_out = 4; 14252 retval = 0; 14253 m_freem(m); 14254 goto done_with_input; 14255 } 14256 /* 14257 * If a segment with the ACK-bit set arrives in the SYN-SENT state 14258 * check SEQ.ACK first as described on page 66 of RFC 793, section 3.9. 14259 */ 14260 if ((tp->t_state == TCPS_SYN_SENT) && (thflags & TH_ACK) && 14261 (SEQ_LEQ(th->th_ack, tp->iss) || SEQ_GT(th->th_ack, tp->snd_max))) { 14262 tcp_log_end_status(tp, TCP_EI_STATUS_RST_IN_FRONT); 14263 ctf_do_dropwithreset(m, tp, th, BANDLIM_RST_OPENPORT, tlen); 14264 #ifdef TCP_ACCOUNTING 14265 sched_unpin(); 14266 #endif 14267 return (1); 14268 } 14269 /* 14270 * If timestamps were negotiated during SYN/ACK and a 14271 * segment without a timestamp is received, silently drop 14272 * the segment, unless it is a RST segment or missing timestamps are 14273 * tolerated. 14274 * See section 3.2 of RFC 7323. 14275 */ 14276 if ((tp->t_flags & TF_RCVD_TSTMP) && !(to.to_flags & TOF_TS) && 14277 ((thflags & TH_RST) == 0) && (V_tcp_tolerate_missing_ts == 0)) { 14278 way_out = 5; 14279 retval = 0; 14280 m_freem(m); 14281 goto done_with_input; 14282 } 14283 14284 /* 14285 * Segment received on connection. Reset idle time and keep-alive 14286 * timer. XXX: This should be done after segment validation to 14287 * ignore broken/spoofed segs. 14288 */ 14289 if (tp->t_idle_reduce && 14290 (tp->snd_max == tp->snd_una) && 14291 (TICKS_2_USEC(ticks - tp->t_rcvtime) >= tp->t_rxtcur)) { 14292 counter_u64_add(rack_input_idle_reduces, 1); 14293 rack_cc_after_idle(rack, tp); 14294 } 14295 tp->t_rcvtime = ticks; 14296 #ifdef STATS 14297 stats_voi_update_abs_ulong(tp->t_stats, VOI_TCP_FRWIN, tiwin); 14298 #endif 14299 if (tiwin > rack->r_ctl.rc_high_rwnd) 14300 rack->r_ctl.rc_high_rwnd = tiwin; 14301 /* 14302 * TCP ECN processing. XXXJTL: If we ever use ECN, we need to move 14303 * this to occur after we've validated the segment. 14304 */ 14305 if (tcp_ecn_input_segment(tp, thflags, iptos)) 14306 rack_cong_signal(tp, CC_ECN, th->th_ack, __LINE__); 14307 14308 /* 14309 * If echoed timestamp is later than the current time, fall back to 14310 * non RFC1323 RTT calculation. Normalize timestamp if syncookies 14311 * were used when this connection was established. 14312 */ 14313 if ((to.to_flags & TOF_TS) && (to.to_tsecr != 0)) { 14314 to.to_tsecr -= tp->ts_offset; 14315 if (TSTMP_GT(to.to_tsecr, ms_cts)) 14316 to.to_tsecr = 0; 14317 } 14318 14319 /* 14320 * If its the first time in we need to take care of options and 14321 * verify we can do SACK for rack! 14322 */ 14323 if (rack->r_state == 0) { 14324 /* Should be init'd by rack_init() */ 14325 KASSERT(rack->rc_inp != NULL, 14326 ("%s: rack->rc_inp unexpectedly NULL", __func__)); 14327 if (rack->rc_inp == NULL) { 14328 rack->rc_inp = tp->t_inpcb; 14329 } 14330 14331 /* 14332 * Process options only when we get SYN/ACK back. The SYN 14333 * case for incoming connections is handled in tcp_syncache. 14334 * According to RFC1323 the window field in a SYN (i.e., a 14335 * <SYN> or <SYN,ACK>) segment itself is never scaled. XXX 14336 * this is traditional behavior, may need to be cleaned up. 14337 */ 14338 if (tp->t_state == TCPS_SYN_SENT && (thflags & TH_SYN)) { 14339 /* Handle parallel SYN for ECN */ 14340 tcp_ecn_input_parallel_syn(tp, thflags, iptos); 14341 if ((to.to_flags & TOF_SCALE) && 14342 (tp->t_flags & TF_REQ_SCALE)) { 14343 tp->t_flags |= TF_RCVD_SCALE; 14344 tp->snd_scale = to.to_wscale; 14345 } else 14346 tp->t_flags &= ~TF_REQ_SCALE; 14347 /* 14348 * Initial send window. It will be updated with the 14349 * next incoming segment to the scaled value. 14350 */ 14351 tp->snd_wnd = th->th_win; 14352 rack_validate_fo_sendwin_up(tp, rack); 14353 if ((to.to_flags & TOF_TS) && 14354 (tp->t_flags & TF_REQ_TSTMP)) { 14355 tp->t_flags |= TF_RCVD_TSTMP; 14356 tp->ts_recent = to.to_tsval; 14357 tp->ts_recent_age = cts; 14358 } else 14359 tp->t_flags &= ~TF_REQ_TSTMP; 14360 if (to.to_flags & TOF_MSS) { 14361 tcp_mss(tp, to.to_mss); 14362 } 14363 if ((tp->t_flags & TF_SACK_PERMIT) && 14364 (to.to_flags & TOF_SACKPERM) == 0) 14365 tp->t_flags &= ~TF_SACK_PERMIT; 14366 if (IS_FASTOPEN(tp->t_flags)) { 14367 if (to.to_flags & TOF_FASTOPEN) { 14368 uint16_t mss; 14369 14370 if (to.to_flags & TOF_MSS) 14371 mss = to.to_mss; 14372 else 14373 if ((tp->t_inpcb->inp_vflag & INP_IPV6) != 0) 14374 mss = TCP6_MSS; 14375 else 14376 mss = TCP_MSS; 14377 tcp_fastopen_update_cache(tp, mss, 14378 to.to_tfo_len, to.to_tfo_cookie); 14379 } else 14380 tcp_fastopen_disable_path(tp); 14381 } 14382 } 14383 /* 14384 * At this point we are at the initial call. Here we decide 14385 * if we are doing RACK or not. We do this by seeing if 14386 * TF_SACK_PERMIT is set and the sack-not-required is clear. 14387 * The code now does do dup-ack counting so if you don't 14388 * switch back you won't get rack & TLP, but you will still 14389 * get this stack. 14390 */ 14391 14392 if ((rack_sack_not_required == 0) && 14393 ((tp->t_flags & TF_SACK_PERMIT) == 0)) { 14394 tcp_switch_back_to_default(tp); 14395 (*tp->t_fb->tfb_tcp_do_segment) (m, th, so, tp, drop_hdrlen, 14396 tlen, iptos); 14397 #ifdef TCP_ACCOUNTING 14398 sched_unpin(); 14399 #endif 14400 return (1); 14401 } 14402 tcp_set_hpts(tp->t_inpcb); 14403 sack_filter_clear(&rack->r_ctl.rack_sf, th->th_ack); 14404 } 14405 if (thflags & TH_FIN) 14406 tcp_log_end_status(tp, TCP_EI_STATUS_CLIENT_FIN); 14407 us_cts = tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time); 14408 if ((rack->rc_gp_dyn_mul) && 14409 (rack->use_fixed_rate == 0) && 14410 (rack->rc_always_pace)) { 14411 /* Check in on probertt */ 14412 rack_check_probe_rtt(rack, us_cts); 14413 } 14414 rack_clear_rate_sample(rack); 14415 if ((rack->forced_ack) && 14416 ((tcp_get_flags(th) & TH_RST) == 0)) { 14417 rack_handle_probe_response(rack, tiwin, us_cts); 14418 } 14419 /* 14420 * This is the one exception case where we set the rack state 14421 * always. All other times (timers etc) we must have a rack-state 14422 * set (so we assure we have done the checks above for SACK). 14423 */ 14424 rack->r_ctl.rc_rcvtime = cts; 14425 if (rack->r_state != tp->t_state) 14426 rack_set_state(tp, rack); 14427 if (SEQ_GT(th->th_ack, tp->snd_una) && 14428 (rsm = RB_MIN(rack_rb_tree_head, &rack->r_ctl.rc_mtree)) != NULL) 14429 kern_prefetch(rsm, &prev_state); 14430 prev_state = rack->r_state; 14431 retval = (*rack->r_substate) (m, th, so, 14432 tp, &to, drop_hdrlen, 14433 tlen, tiwin, thflags, nxt_pkt, iptos); 14434 #ifdef INVARIANTS 14435 if ((retval == 0) && 14436 (tp->t_inpcb == NULL)) { 14437 panic("retval:%d tp:%p t_inpcb:NULL state:%d", 14438 retval, tp, prev_state); 14439 } 14440 #endif 14441 if (retval == 0) { 14442 /* 14443 * If retval is 1 the tcb is unlocked and most likely the tp 14444 * is gone. 14445 */ 14446 INP_WLOCK_ASSERT(tp->t_inpcb); 14447 if ((rack->rc_gp_dyn_mul) && 14448 (rack->rc_always_pace) && 14449 (rack->use_fixed_rate == 0) && 14450 rack->in_probe_rtt && 14451 (rack->r_ctl.rc_time_probertt_starts == 0)) { 14452 /* 14453 * If we are going for target, lets recheck before 14454 * we output. 14455 */ 14456 rack_check_probe_rtt(rack, us_cts); 14457 } 14458 if (rack->set_pacing_done_a_iw == 0) { 14459 /* How much has been acked? */ 14460 if ((tp->snd_una - tp->iss) > (ctf_fixed_maxseg(tp) * 10)) { 14461 /* We have enough to set in the pacing segment size */ 14462 rack->set_pacing_done_a_iw = 1; 14463 rack_set_pace_segments(tp, rack, __LINE__, NULL); 14464 } 14465 } 14466 tcp_rack_xmit_timer_commit(rack, tp); 14467 #ifdef TCP_ACCOUNTING 14468 /* 14469 * If we set the ack_val_se to what ack processing we are doing 14470 * we also want to track how many cycles we burned. Note 14471 * the bits after tcp_output we let be "free". This is because 14472 * we are also tracking the tcp_output times as well. Note the 14473 * use of 0xf here since we only have 11 counter (0 - 0xa) and 14474 * 0xf cannot be returned and is what we initialize it too to 14475 * indicate we are not doing the tabulations. 14476 */ 14477 if (ack_val_set != 0xf) { 14478 uint64_t crtsc; 14479 14480 crtsc = get_cyclecount(); 14481 counter_u64_add(tcp_proc_time[ack_val_set] , (crtsc - ts_val)); 14482 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 14483 tp->tcp_proc_time[ack_val_set] += (crtsc - ts_val); 14484 } 14485 } 14486 #endif 14487 if (nxt_pkt == 0) { 14488 if ((rack->r_wanted_output != 0) || (rack->r_fast_output != 0)) { 14489 do_output_now: 14490 if (tcp_output(tp) < 0) 14491 return (1); 14492 did_out = 1; 14493 } 14494 rack_start_hpts_timer(rack, tp, cts, 0, 0, 0); 14495 rack_free_trim(rack); 14496 } 14497 /* Update any rounds needed */ 14498 if (rack_verbose_logging && (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF)) { 14499 union tcp_log_stackspecific log; 14500 struct timeval tv; 14501 14502 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 14503 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 14504 log.u_bbr.flex1 = high_seq; 14505 log.u_bbr.flex2 = rack->r_ctl.roundends; 14506 log.u_bbr.flex3 = rack->r_ctl.current_round; 14507 log.u_bbr.rttProp = (uint64_t)CC_ALGO(tp)->newround; 14508 log.u_bbr.flex8 = 9; 14509 tcp_log_event_(tp, NULL, NULL, NULL, BBR_LOG_CWND, 0, 14510 0, &log, false, NULL, NULL, 0, &tv); 14511 } 14512 /* 14513 * The draft (v3) calls for us to use SEQ_GEQ, but that 14514 * causes issues when we are just going app limited. Lets 14515 * instead use SEQ_GT <or> where its equal but more data 14516 * is outstanding. 14517 */ 14518 if ((SEQ_GT(tp->snd_una, rack->r_ctl.roundends)) || 14519 ((tp->snd_una == rack->r_ctl.roundends) && SEQ_GT(tp->snd_max, tp->snd_una))) { 14520 rack->r_ctl.current_round++; 14521 rack->r_ctl.roundends = tp->snd_max; 14522 if (CC_ALGO(tp)->newround != NULL) { 14523 CC_ALGO(tp)->newround(tp->ccv, rack->r_ctl.current_round); 14524 } 14525 } 14526 if ((nxt_pkt == 0) && 14527 ((rack->r_ctl.rc_hpts_flags & PACE_TMR_MASK) == 0) && 14528 (SEQ_GT(tp->snd_max, tp->snd_una) || 14529 (tp->t_flags & TF_DELACK) || 14530 ((V_tcp_always_keepalive || rack->rc_inp->inp_socket->so_options & SO_KEEPALIVE) && 14531 (tp->t_state <= TCPS_CLOSING)))) { 14532 /* We could not send (probably in the hpts but stopped the timer earlier)? */ 14533 if ((tp->snd_max == tp->snd_una) && 14534 ((tp->t_flags & TF_DELACK) == 0) && 14535 (tcp_in_hpts(rack->rc_inp)) && 14536 (rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT)) { 14537 /* keep alive not needed if we are hptsi output yet */ 14538 ; 14539 } else { 14540 int late = 0; 14541 if (tcp_in_hpts(rack->rc_inp)) { 14542 if (rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT) { 14543 us_cts = tcp_get_usecs(NULL); 14544 if (TSTMP_GT(rack->r_ctl.rc_last_output_to, us_cts)) { 14545 rack->r_early = 1; 14546 rack->r_ctl.rc_agg_early += (rack->r_ctl.rc_last_output_to - us_cts); 14547 } else 14548 late = 1; 14549 rack->r_ctl.rc_hpts_flags &= ~PACE_PKT_OUTPUT; 14550 } 14551 tcp_hpts_remove(tp->t_inpcb); 14552 } 14553 if (late && (did_out == 0)) { 14554 /* 14555 * We are late in the sending 14556 * and we did not call the output 14557 * (this probably should not happen). 14558 */ 14559 goto do_output_now; 14560 } 14561 rack_start_hpts_timer(rack, tp, tcp_get_usecs(NULL), 0, 0, 0); 14562 } 14563 way_out = 1; 14564 } else if (nxt_pkt == 0) { 14565 /* Do we have the correct timer running? */ 14566 rack_timer_audit(tp, rack, &so->so_snd); 14567 way_out = 2; 14568 } 14569 done_with_input: 14570 rack_log_doseg_done(rack, cts, nxt_pkt, did_out, way_out, max(1, nsegs)); 14571 if (did_out) 14572 rack->r_wanted_output = 0; 14573 #ifdef INVARIANTS 14574 if (tp->t_inpcb == NULL) { 14575 panic("OP:%d retval:%d tp:%p t_inpcb:NULL state:%d", 14576 did_out, 14577 retval, tp, prev_state); 14578 } 14579 #endif 14580 #ifdef TCP_ACCOUNTING 14581 } else { 14582 /* 14583 * Track the time (see above). 14584 */ 14585 if (ack_val_set != 0xf) { 14586 uint64_t crtsc; 14587 14588 crtsc = get_cyclecount(); 14589 counter_u64_add(tcp_proc_time[ack_val_set] , (crtsc - ts_val)); 14590 /* 14591 * Note we *DO NOT* increment the per-tcb counters since 14592 * in the else the TP may be gone!! 14593 */ 14594 } 14595 #endif 14596 } 14597 #ifdef TCP_ACCOUNTING 14598 sched_unpin(); 14599 #endif 14600 return (retval); 14601 } 14602 14603 void 14604 rack_do_segment(struct mbuf *m, struct tcphdr *th, struct socket *so, 14605 struct tcpcb *tp, int32_t drop_hdrlen, int32_t tlen, uint8_t iptos) 14606 { 14607 struct timeval tv; 14608 14609 /* First lets see if we have old packets */ 14610 if (tp->t_in_pkt) { 14611 if (ctf_do_queued_segments(so, tp, 1)) { 14612 m_freem(m); 14613 return; 14614 } 14615 } 14616 if (m->m_flags & M_TSTMP_LRO) { 14617 tv.tv_sec = m->m_pkthdr.rcv_tstmp /1000000000; 14618 tv.tv_usec = (m->m_pkthdr.rcv_tstmp % 1000000000)/1000; 14619 } else { 14620 /* Should not be should we kassert instead? */ 14621 tcp_get_usecs(&tv); 14622 } 14623 if (rack_do_segment_nounlock(m, th, so, tp, 14624 drop_hdrlen, tlen, iptos, 0, &tv) == 0) { 14625 INP_WUNLOCK(tp->t_inpcb); 14626 } 14627 } 14628 14629 struct rack_sendmap * 14630 tcp_rack_output(struct tcpcb *tp, struct tcp_rack *rack, uint32_t tsused) 14631 { 14632 struct rack_sendmap *rsm = NULL; 14633 int32_t idx; 14634 uint32_t srtt = 0, thresh = 0, ts_low = 0; 14635 14636 /* Return the next guy to be re-transmitted */ 14637 if (RB_EMPTY(&rack->r_ctl.rc_mtree)) { 14638 return (NULL); 14639 } 14640 if (tp->t_flags & TF_SENTFIN) { 14641 /* retran the end FIN? */ 14642 return (NULL); 14643 } 14644 /* ok lets look at this one */ 14645 rsm = TAILQ_FIRST(&rack->r_ctl.rc_tmap); 14646 if (rack->r_must_retran && rsm && (rsm->r_flags & RACK_MUST_RXT)) { 14647 return (rsm); 14648 } 14649 if (rsm && ((rsm->r_flags & RACK_ACKED) == 0)) { 14650 goto check_it; 14651 } 14652 rsm = rack_find_lowest_rsm(rack); 14653 if (rsm == NULL) { 14654 return (NULL); 14655 } 14656 check_it: 14657 if (((rack->rc_tp->t_flags & TF_SACK_PERMIT) == 0) && 14658 (rsm->r_dupack >= DUP_ACK_THRESHOLD)) { 14659 /* 14660 * No sack so we automatically do the 3 strikes and 14661 * retransmit (no rack timer would be started). 14662 */ 14663 14664 return (rsm); 14665 } 14666 if (rsm->r_flags & RACK_ACKED) { 14667 return (NULL); 14668 } 14669 if (((rsm->r_flags & RACK_SACK_PASSED) == 0) && 14670 (rsm->r_dupack < DUP_ACK_THRESHOLD)) { 14671 /* Its not yet ready */ 14672 return (NULL); 14673 } 14674 srtt = rack_grab_rtt(tp, rack); 14675 idx = rsm->r_rtr_cnt - 1; 14676 ts_low = (uint32_t)rsm->r_tim_lastsent[idx]; 14677 thresh = rack_calc_thresh_rack(rack, srtt, tsused); 14678 if ((tsused == ts_low) || 14679 (TSTMP_LT(tsused, ts_low))) { 14680 /* No time since sending */ 14681 return (NULL); 14682 } 14683 if ((tsused - ts_low) < thresh) { 14684 /* It has not been long enough yet */ 14685 return (NULL); 14686 } 14687 if ((rsm->r_dupack >= DUP_ACK_THRESHOLD) || 14688 ((rsm->r_flags & RACK_SACK_PASSED) && 14689 (rack->sack_attack_disable == 0))) { 14690 /* 14691 * We have passed the dup-ack threshold <or> 14692 * a SACK has indicated this is missing. 14693 * Note that if you are a declared attacker 14694 * it is only the dup-ack threshold that 14695 * will cause retransmits. 14696 */ 14697 /* log retransmit reason */ 14698 rack_log_retran_reason(rack, rsm, (tsused - ts_low), thresh, 1); 14699 rack->r_fast_output = 0; 14700 return (rsm); 14701 } 14702 return (NULL); 14703 } 14704 14705 static void 14706 rack_log_pacing_delay_calc(struct tcp_rack *rack, uint32_t len, uint32_t slot, 14707 uint64_t bw_est, uint64_t bw, uint64_t len_time, int method, 14708 int line, struct rack_sendmap *rsm, uint8_t quality) 14709 { 14710 if (rack->rc_tp->t_logstate != TCP_LOG_STATE_OFF) { 14711 union tcp_log_stackspecific log; 14712 struct timeval tv; 14713 14714 memset(&log, 0, sizeof(log)); 14715 log.u_bbr.flex1 = slot; 14716 log.u_bbr.flex2 = len; 14717 log.u_bbr.flex3 = rack->r_ctl.rc_pace_min_segs; 14718 log.u_bbr.flex4 = rack->r_ctl.rc_pace_max_segs; 14719 log.u_bbr.flex5 = rack->r_ctl.rack_per_of_gp_ss; 14720 log.u_bbr.flex6 = rack->r_ctl.rack_per_of_gp_ca; 14721 log.u_bbr.use_lt_bw = rack->rc_ack_can_sendout_data; 14722 log.u_bbr.use_lt_bw <<= 1; 14723 log.u_bbr.use_lt_bw |= rack->r_late; 14724 log.u_bbr.use_lt_bw <<= 1; 14725 log.u_bbr.use_lt_bw |= rack->r_early; 14726 log.u_bbr.use_lt_bw <<= 1; 14727 log.u_bbr.use_lt_bw |= rack->app_limited_needs_set; 14728 log.u_bbr.use_lt_bw <<= 1; 14729 log.u_bbr.use_lt_bw |= rack->rc_gp_filled; 14730 log.u_bbr.use_lt_bw <<= 1; 14731 log.u_bbr.use_lt_bw |= rack->measure_saw_probe_rtt; 14732 log.u_bbr.use_lt_bw <<= 1; 14733 log.u_bbr.use_lt_bw |= rack->in_probe_rtt; 14734 log.u_bbr.use_lt_bw <<= 1; 14735 log.u_bbr.use_lt_bw |= rack->gp_ready; 14736 log.u_bbr.pkt_epoch = line; 14737 log.u_bbr.epoch = rack->r_ctl.rc_agg_delayed; 14738 log.u_bbr.lt_epoch = rack->r_ctl.rc_agg_early; 14739 log.u_bbr.applimited = rack->r_ctl.rack_per_of_gp_rec; 14740 log.u_bbr.bw_inuse = bw_est; 14741 log.u_bbr.delRate = bw; 14742 if (rack->r_ctl.gp_bw == 0) 14743 log.u_bbr.cur_del_rate = 0; 14744 else 14745 log.u_bbr.cur_del_rate = rack_get_bw(rack); 14746 log.u_bbr.rttProp = len_time; 14747 log.u_bbr.pkts_out = rack->r_ctl.rc_rack_min_rtt; 14748 log.u_bbr.lost = rack->r_ctl.rc_probertt_sndmax_atexit; 14749 log.u_bbr.pacing_gain = rack_get_output_gain(rack, rsm); 14750 if (rack->r_ctl.cwnd_to_use < rack->rc_tp->snd_ssthresh) { 14751 /* We are in slow start */ 14752 log.u_bbr.flex7 = 1; 14753 } else { 14754 /* we are on congestion avoidance */ 14755 log.u_bbr.flex7 = 0; 14756 } 14757 log.u_bbr.flex8 = method; 14758 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 14759 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 14760 log.u_bbr.cwnd_gain = rack->rc_gp_saw_rec; 14761 log.u_bbr.cwnd_gain <<= 1; 14762 log.u_bbr.cwnd_gain |= rack->rc_gp_saw_ss; 14763 log.u_bbr.cwnd_gain <<= 1; 14764 log.u_bbr.cwnd_gain |= rack->rc_gp_saw_ca; 14765 log.u_bbr.bbr_substate = quality; 14766 TCP_LOG_EVENTP(rack->rc_tp, NULL, 14767 &rack->rc_inp->inp_socket->so_rcv, 14768 &rack->rc_inp->inp_socket->so_snd, 14769 BBR_LOG_HPTSI_CALC, 0, 14770 0, &log, false, &tv); 14771 } 14772 } 14773 14774 static uint32_t 14775 rack_get_pacing_len(struct tcp_rack *rack, uint64_t bw, uint32_t mss) 14776 { 14777 uint32_t new_tso, user_max; 14778 14779 user_max = rack->rc_user_set_max_segs * mss; 14780 if (rack->rc_force_max_seg) { 14781 return (user_max); 14782 } 14783 if (rack->use_fixed_rate && 14784 ((rack->r_ctl.crte == NULL) || 14785 (bw != rack->r_ctl.crte->rate))) { 14786 /* Use the user mss since we are not exactly matched */ 14787 return (user_max); 14788 } 14789 new_tso = tcp_get_pacing_burst_size(rack->rc_tp, bw, mss, rack_pace_one_seg, rack->r_ctl.crte, NULL); 14790 if (new_tso > user_max) 14791 new_tso = user_max; 14792 return (new_tso); 14793 } 14794 14795 static int32_t 14796 pace_to_fill_cwnd(struct tcp_rack *rack, int32_t slot, uint32_t len, uint32_t segsiz, int *capped, uint64_t *rate_wanted, uint8_t non_paced) 14797 { 14798 uint64_t lentim, fill_bw; 14799 14800 /* Lets first see if we are full, if so continue with normal rate */ 14801 rack->r_via_fill_cw = 0; 14802 if (ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked) > rack->r_ctl.cwnd_to_use) 14803 return (slot); 14804 if ((ctf_outstanding(rack->rc_tp) + (segsiz-1)) > rack->rc_tp->snd_wnd) 14805 return (slot); 14806 if (rack->r_ctl.rc_last_us_rtt == 0) 14807 return (slot); 14808 if (rack->rc_pace_fill_if_rttin_range && 14809 (rack->r_ctl.rc_last_us_rtt >= 14810 (get_filter_value_small(&rack->r_ctl.rc_gp_min_rtt) * rack->rtt_limit_mul))) { 14811 /* The rtt is huge, N * smallest, lets not fill */ 14812 return (slot); 14813 } 14814 /* 14815 * first lets calculate the b/w based on the last us-rtt 14816 * and the sndwnd. 14817 */ 14818 fill_bw = rack->r_ctl.cwnd_to_use; 14819 /* Take the rwnd if its smaller */ 14820 if (fill_bw > rack->rc_tp->snd_wnd) 14821 fill_bw = rack->rc_tp->snd_wnd; 14822 if (rack->r_fill_less_agg) { 14823 /* 14824 * Now take away the inflight (this will reduce our 14825 * aggressiveness and yeah, if we get that much out in 1RTT 14826 * we will have had acks come back and still be behind). 14827 */ 14828 fill_bw -= ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 14829 } 14830 /* Now lets make it into a b/w */ 14831 fill_bw *= (uint64_t)HPTS_USEC_IN_SEC; 14832 fill_bw /= (uint64_t)rack->r_ctl.rc_last_us_rtt; 14833 /* We are below the min b/w */ 14834 if (non_paced) 14835 *rate_wanted = fill_bw; 14836 if ((fill_bw < RACK_MIN_BW) || (fill_bw < *rate_wanted)) 14837 return (slot); 14838 if (rack->r_ctl.bw_rate_cap && (fill_bw > rack->r_ctl.bw_rate_cap)) 14839 fill_bw = rack->r_ctl.bw_rate_cap; 14840 rack->r_via_fill_cw = 1; 14841 if (rack->r_rack_hw_rate_caps && 14842 (rack->r_ctl.crte != NULL)) { 14843 uint64_t high_rate; 14844 14845 high_rate = tcp_hw_highest_rate(rack->r_ctl.crte); 14846 if (fill_bw > high_rate) { 14847 /* We are capping bw at the highest rate table entry */ 14848 if (*rate_wanted > high_rate) { 14849 /* The original rate was also capped */ 14850 rack->r_via_fill_cw = 0; 14851 } 14852 rack_log_hdwr_pacing(rack, 14853 fill_bw, high_rate, __LINE__, 14854 0, 3); 14855 fill_bw = high_rate; 14856 if (capped) 14857 *capped = 1; 14858 } 14859 } else if ((rack->r_ctl.crte == NULL) && 14860 (rack->rack_hdrw_pacing == 0) && 14861 (rack->rack_hdw_pace_ena) && 14862 rack->r_rack_hw_rate_caps && 14863 (rack->rack_attempt_hdwr_pace == 0) && 14864 (rack->rc_inp->inp_route.ro_nh != NULL) && 14865 (rack->rc_inp->inp_route.ro_nh->nh_ifp != NULL)) { 14866 /* 14867 * Ok we may have a first attempt that is greater than our top rate 14868 * lets check. 14869 */ 14870 uint64_t high_rate; 14871 14872 high_rate = tcp_hw_highest_rate_ifp(rack->rc_inp->inp_route.ro_nh->nh_ifp, rack->rc_inp); 14873 if (high_rate) { 14874 if (fill_bw > high_rate) { 14875 fill_bw = high_rate; 14876 if (capped) 14877 *capped = 1; 14878 } 14879 } 14880 } 14881 /* 14882 * Ok fill_bw holds our mythical b/w to fill the cwnd 14883 * in a rtt, what does that time wise equate too? 14884 */ 14885 lentim = (uint64_t)(len) * (uint64_t)HPTS_USEC_IN_SEC; 14886 lentim /= fill_bw; 14887 *rate_wanted = fill_bw; 14888 if (non_paced || (lentim < slot)) { 14889 rack_log_pacing_delay_calc(rack, len, slot, fill_bw, 14890 0, lentim, 12, __LINE__, NULL, 0); 14891 return ((int32_t)lentim); 14892 } else 14893 return (slot); 14894 } 14895 14896 static int32_t 14897 rack_get_pacing_delay(struct tcp_rack *rack, struct tcpcb *tp, uint32_t len, struct rack_sendmap *rsm, uint32_t segsiz) 14898 { 14899 uint64_t srtt; 14900 int32_t slot = 0; 14901 int can_start_hw_pacing = 1; 14902 int err; 14903 14904 if (rack->rc_always_pace == 0) { 14905 /* 14906 * We use the most optimistic possible cwnd/srtt for 14907 * sending calculations. This will make our 14908 * calculation anticipate getting more through 14909 * quicker then possible. But thats ok we don't want 14910 * the peer to have a gap in data sending. 14911 */ 14912 uint64_t cwnd, tr_perms = 0; 14913 int32_t reduce = 0; 14914 14915 old_method: 14916 /* 14917 * We keep no precise pacing with the old method 14918 * instead we use the pacer to mitigate bursts. 14919 */ 14920 if (rack->r_ctl.rc_rack_min_rtt) 14921 srtt = rack->r_ctl.rc_rack_min_rtt; 14922 else 14923 srtt = max(tp->t_srtt, 1); 14924 if (rack->r_ctl.rc_rack_largest_cwnd) 14925 cwnd = rack->r_ctl.rc_rack_largest_cwnd; 14926 else 14927 cwnd = rack->r_ctl.cwnd_to_use; 14928 /* Inflate cwnd by 1000 so srtt of usecs is in ms */ 14929 tr_perms = (cwnd * 1000) / srtt; 14930 if (tr_perms == 0) { 14931 tr_perms = ctf_fixed_maxseg(tp); 14932 } 14933 /* 14934 * Calculate how long this will take to drain, if 14935 * the calculation comes out to zero, thats ok we 14936 * will use send_a_lot to possibly spin around for 14937 * more increasing tot_len_this_send to the point 14938 * that its going to require a pace, or we hit the 14939 * cwnd. Which in that case we are just waiting for 14940 * a ACK. 14941 */ 14942 slot = len / tr_perms; 14943 /* Now do we reduce the time so we don't run dry? */ 14944 if (slot && rack_slot_reduction) { 14945 reduce = (slot / rack_slot_reduction); 14946 if (reduce < slot) { 14947 slot -= reduce; 14948 } else 14949 slot = 0; 14950 } 14951 slot *= HPTS_USEC_IN_MSEC; 14952 if (rack->rc_pace_to_cwnd) { 14953 uint64_t rate_wanted = 0; 14954 14955 slot = pace_to_fill_cwnd(rack, slot, len, segsiz, NULL, &rate_wanted, 1); 14956 rack->rc_ack_can_sendout_data = 1; 14957 rack_log_pacing_delay_calc(rack, len, slot, rate_wanted, 0, 0, 14, __LINE__, NULL, 0); 14958 } else 14959 rack_log_pacing_delay_calc(rack, len, slot, tr_perms, reduce, 0, 7, __LINE__, NULL, 0); 14960 } else { 14961 uint64_t bw_est, res, lentim, rate_wanted; 14962 uint32_t orig_val, segs, oh; 14963 int capped = 0; 14964 int prev_fill; 14965 14966 if ((rack->r_rr_config == 1) && rsm) { 14967 return (rack->r_ctl.rc_min_to); 14968 } 14969 if (rack->use_fixed_rate) { 14970 rate_wanted = bw_est = rack_get_fixed_pacing_bw(rack); 14971 } else if ((rack->r_ctl.init_rate == 0) && 14972 #ifdef NETFLIX_PEAKRATE 14973 (rack->rc_tp->t_maxpeakrate == 0) && 14974 #endif 14975 (rack->r_ctl.gp_bw == 0)) { 14976 /* no way to yet do an estimate */ 14977 bw_est = rate_wanted = 0; 14978 } else { 14979 bw_est = rack_get_bw(rack); 14980 rate_wanted = rack_get_output_bw(rack, bw_est, rsm, &capped); 14981 } 14982 if ((bw_est == 0) || (rate_wanted == 0) || 14983 ((rack->gp_ready == 0) && (rack->use_fixed_rate == 0))) { 14984 /* 14985 * No way yet to make a b/w estimate or 14986 * our raise is set incorrectly. 14987 */ 14988 goto old_method; 14989 } 14990 /* We need to account for all the overheads */ 14991 segs = (len + segsiz - 1) / segsiz; 14992 /* 14993 * We need the diff between 1514 bytes (e-mtu with e-hdr) 14994 * and how much data we put in each packet. Yes this 14995 * means we may be off if we are larger than 1500 bytes 14996 * or smaller. But this just makes us more conservative. 14997 */ 14998 if (rack_hw_rate_min && 14999 (bw_est < rack_hw_rate_min)) 15000 can_start_hw_pacing = 0; 15001 if (ETHERNET_SEGMENT_SIZE > segsiz) 15002 oh = ETHERNET_SEGMENT_SIZE - segsiz; 15003 else 15004 oh = 0; 15005 segs *= oh; 15006 lentim = (uint64_t)(len + segs) * (uint64_t)HPTS_USEC_IN_SEC; 15007 res = lentim / rate_wanted; 15008 slot = (uint32_t)res; 15009 orig_val = rack->r_ctl.rc_pace_max_segs; 15010 if (rack->r_ctl.crte == NULL) { 15011 /* 15012 * Only do this if we are not hardware pacing 15013 * since if we are doing hw-pacing below we will 15014 * set make a call after setting up or changing 15015 * the rate. 15016 */ 15017 rack_set_pace_segments(rack->rc_tp, rack, __LINE__, NULL); 15018 } else if (rack->rc_inp->inp_snd_tag == NULL) { 15019 /* 15020 * We lost our rate somehow, this can happen 15021 * if the interface changed underneath us. 15022 */ 15023 tcp_rel_pacing_rate(rack->r_ctl.crte, rack->rc_tp); 15024 rack->r_ctl.crte = NULL; 15025 /* Lets re-allow attempting to setup pacing */ 15026 rack->rack_hdrw_pacing = 0; 15027 rack->rack_attempt_hdwr_pace = 0; 15028 rack_log_hdwr_pacing(rack, 15029 rate_wanted, bw_est, __LINE__, 15030 0, 6); 15031 } 15032 /* Did we change the TSO size, if so log it */ 15033 if (rack->r_ctl.rc_pace_max_segs != orig_val) 15034 rack_log_pacing_delay_calc(rack, len, slot, orig_val, 0, 0, 15, __LINE__, NULL, 0); 15035 prev_fill = rack->r_via_fill_cw; 15036 if ((rack->rc_pace_to_cwnd) && 15037 (capped == 0) && 15038 (rack->use_fixed_rate == 0) && 15039 (rack->in_probe_rtt == 0) && 15040 (IN_FASTRECOVERY(rack->rc_tp->t_flags) == 0)) { 15041 /* 15042 * We want to pace at our rate *or* faster to 15043 * fill the cwnd to the max if its not full. 15044 */ 15045 slot = pace_to_fill_cwnd(rack, slot, (len+segs), segsiz, &capped, &rate_wanted, 0); 15046 } 15047 if ((rack->rc_inp->inp_route.ro_nh != NULL) && 15048 (rack->rc_inp->inp_route.ro_nh->nh_ifp != NULL)) { 15049 if ((rack->rack_hdw_pace_ena) && 15050 (can_start_hw_pacing > 0) && 15051 (rack->rack_hdrw_pacing == 0) && 15052 (rack->rack_attempt_hdwr_pace == 0)) { 15053 /* 15054 * Lets attempt to turn on hardware pacing 15055 * if we can. 15056 */ 15057 rack->rack_attempt_hdwr_pace = 1; 15058 rack->r_ctl.crte = tcp_set_pacing_rate(rack->rc_tp, 15059 rack->rc_inp->inp_route.ro_nh->nh_ifp, 15060 rate_wanted, 15061 RS_PACING_GEQ, 15062 &err, &rack->r_ctl.crte_prev_rate); 15063 if (rack->r_ctl.crte) { 15064 rack->rack_hdrw_pacing = 1; 15065 rack->r_ctl.rc_pace_max_segs = tcp_get_pacing_burst_size(tp, rate_wanted, segsiz, 15066 0, rack->r_ctl.crte, 15067 NULL); 15068 rack_log_hdwr_pacing(rack, 15069 rate_wanted, rack->r_ctl.crte->rate, __LINE__, 15070 err, 0); 15071 rack->r_ctl.last_hw_bw_req = rate_wanted; 15072 } else { 15073 counter_u64_add(rack_hw_pace_init_fail, 1); 15074 } 15075 } else if (rack->rack_hdrw_pacing && 15076 (rack->r_ctl.last_hw_bw_req != rate_wanted)) { 15077 /* Do we need to adjust our rate? */ 15078 const struct tcp_hwrate_limit_table *nrte; 15079 15080 if (rack->r_up_only && 15081 (rate_wanted < rack->r_ctl.crte->rate)) { 15082 /** 15083 * We have four possible states here 15084 * having to do with the previous time 15085 * and this time. 15086 * previous | this-time 15087 * A) 0 | 0 -- fill_cw not in the picture 15088 * B) 1 | 0 -- we were doing a fill-cw but now are not 15089 * C) 1 | 1 -- all rates from fill_cw 15090 * D) 0 | 1 -- we were doing non-fill and now we are filling 15091 * 15092 * For case A, C and D we don't allow a drop. But for 15093 * case B where we now our on our steady rate we do 15094 * allow a drop. 15095 * 15096 */ 15097 if (!((prev_fill == 1) && (rack->r_via_fill_cw == 0))) 15098 goto done_w_hdwr; 15099 } 15100 if ((rate_wanted > rack->r_ctl.crte->rate) || 15101 (rate_wanted <= rack->r_ctl.crte_prev_rate)) { 15102 if (rack_hw_rate_to_low && 15103 (bw_est < rack_hw_rate_to_low)) { 15104 /* 15105 * The pacing rate is too low for hardware, but 15106 * do allow hardware pacing to be restarted. 15107 */ 15108 rack_log_hdwr_pacing(rack, 15109 bw_est, rack->r_ctl.crte->rate, __LINE__, 15110 0, 5); 15111 tcp_rel_pacing_rate(rack->r_ctl.crte, rack->rc_tp); 15112 rack->r_ctl.crte = NULL; 15113 rack->rack_attempt_hdwr_pace = 0; 15114 rack->rack_hdrw_pacing = 0; 15115 rack_set_pace_segments(rack->rc_tp, rack, __LINE__, &rate_wanted); 15116 goto done_w_hdwr; 15117 } 15118 nrte = tcp_chg_pacing_rate(rack->r_ctl.crte, 15119 rack->rc_tp, 15120 rack->rc_inp->inp_route.ro_nh->nh_ifp, 15121 rate_wanted, 15122 RS_PACING_GEQ, 15123 &err, &rack->r_ctl.crte_prev_rate); 15124 if (nrte == NULL) { 15125 /* Lost the rate */ 15126 rack->rack_hdrw_pacing = 0; 15127 rack->r_ctl.crte = NULL; 15128 rack_log_hdwr_pacing(rack, 15129 rate_wanted, 0, __LINE__, 15130 err, 1); 15131 rack_set_pace_segments(rack->rc_tp, rack, __LINE__, &rate_wanted); 15132 counter_u64_add(rack_hw_pace_lost, 1); 15133 } else if (nrte != rack->r_ctl.crte) { 15134 rack->r_ctl.crte = nrte; 15135 rack->r_ctl.rc_pace_max_segs = tcp_get_pacing_burst_size(tp, rate_wanted, 15136 segsiz, 0, 15137 rack->r_ctl.crte, 15138 NULL); 15139 rack_log_hdwr_pacing(rack, 15140 rate_wanted, rack->r_ctl.crte->rate, __LINE__, 15141 err, 2); 15142 rack->r_ctl.last_hw_bw_req = rate_wanted; 15143 } 15144 } else { 15145 /* We just need to adjust the segment size */ 15146 rack_set_pace_segments(rack->rc_tp, rack, __LINE__, &rate_wanted); 15147 rack_log_hdwr_pacing(rack, 15148 rate_wanted, rack->r_ctl.crte->rate, __LINE__, 15149 0, 4); 15150 rack->r_ctl.last_hw_bw_req = rate_wanted; 15151 } 15152 } 15153 } 15154 if ((rack->r_ctl.crte != NULL) && 15155 (rack->r_ctl.crte->rate == rate_wanted)) { 15156 /* 15157 * We need to add a extra if the rates 15158 * are exactly matched. The idea is 15159 * we want the software to make sure the 15160 * queue is empty before adding more, this 15161 * gives us N MSS extra pace times where 15162 * N is our sysctl 15163 */ 15164 slot += (rack->r_ctl.crte->time_between * rack_hw_pace_extra_slots); 15165 } 15166 done_w_hdwr: 15167 if (rack_limit_time_with_srtt && 15168 (rack->use_fixed_rate == 0) && 15169 #ifdef NETFLIX_PEAKRATE 15170 (rack->rc_tp->t_maxpeakrate == 0) && 15171 #endif 15172 (rack->rack_hdrw_pacing == 0)) { 15173 /* 15174 * Sanity check, we do not allow the pacing delay 15175 * to be longer than the SRTT of the path. If it is 15176 * a slow path, then adding a packet should increase 15177 * the RTT and compensate for this i.e. the srtt will 15178 * be greater so the allowed pacing time will be greater. 15179 * 15180 * Note this restriction is not for where a peak rate 15181 * is set, we are doing fixed pacing or hardware pacing. 15182 */ 15183 if (rack->rc_tp->t_srtt) 15184 srtt = rack->rc_tp->t_srtt; 15185 else 15186 srtt = RACK_INITIAL_RTO * HPTS_USEC_IN_MSEC; /* its in ms convert */ 15187 if (srtt < (uint64_t)slot) { 15188 rack_log_pacing_delay_calc(rack, srtt, slot, rate_wanted, bw_est, lentim, 99, __LINE__, NULL, 0); 15189 slot = srtt; 15190 } 15191 } 15192 rack_log_pacing_delay_calc(rack, len, slot, rate_wanted, bw_est, lentim, 2, __LINE__, rsm, 0); 15193 } 15194 if (rack->r_ctl.crte && (rack->r_ctl.crte->rs_num_enobufs > 0)) { 15195 /* 15196 * If this rate is seeing enobufs when it 15197 * goes to send then either the nic is out 15198 * of gas or we are mis-estimating the time 15199 * somehow and not letting the queue empty 15200 * completely. Lets add to the pacing time. 15201 */ 15202 int hw_boost_delay; 15203 15204 hw_boost_delay = rack->r_ctl.crte->time_between * rack_enobuf_hw_boost_mult; 15205 if (hw_boost_delay > rack_enobuf_hw_max) 15206 hw_boost_delay = rack_enobuf_hw_max; 15207 else if (hw_boost_delay < rack_enobuf_hw_min) 15208 hw_boost_delay = rack_enobuf_hw_min; 15209 slot += hw_boost_delay; 15210 } 15211 return (slot); 15212 } 15213 15214 static void 15215 rack_start_gp_measurement(struct tcpcb *tp, struct tcp_rack *rack, 15216 tcp_seq startseq, uint32_t sb_offset) 15217 { 15218 struct rack_sendmap *my_rsm = NULL; 15219 struct rack_sendmap fe; 15220 15221 if (tp->t_state < TCPS_ESTABLISHED) { 15222 /* 15223 * We don't start any measurements if we are 15224 * not at least established. 15225 */ 15226 return; 15227 } 15228 if (tp->t_state >= TCPS_FIN_WAIT_1) { 15229 /* 15230 * We will get no more data into the SB 15231 * this means we need to have the data available 15232 * before we start a measurement. 15233 */ 15234 15235 if (sbavail(&tp->t_inpcb->inp_socket->so_snd) < 15236 max(rc_init_window(rack), 15237 (MIN_GP_WIN * ctf_fixed_maxseg(tp)))) { 15238 /* Nope not enough data */ 15239 return; 15240 } 15241 } 15242 tp->t_flags |= TF_GPUTINPROG; 15243 rack->r_ctl.rc_gp_lowrtt = 0xffffffff; 15244 rack->r_ctl.rc_gp_high_rwnd = rack->rc_tp->snd_wnd; 15245 tp->gput_seq = startseq; 15246 rack->app_limited_needs_set = 0; 15247 if (rack->in_probe_rtt) 15248 rack->measure_saw_probe_rtt = 1; 15249 else if ((rack->measure_saw_probe_rtt) && 15250 (SEQ_GEQ(tp->gput_seq, rack->r_ctl.rc_probertt_sndmax_atexit))) 15251 rack->measure_saw_probe_rtt = 0; 15252 if (rack->rc_gp_filled) 15253 tp->gput_ts = tcp_tv_to_usectick(&rack->r_ctl.act_rcv_time); 15254 else { 15255 /* Special case initial measurement */ 15256 struct timeval tv; 15257 15258 tp->gput_ts = tcp_get_usecs(&tv); 15259 rack->r_ctl.rc_gp_output_ts = rack_to_usec_ts(&tv); 15260 } 15261 /* 15262 * We take a guess out into the future, 15263 * if we have no measurement and no 15264 * initial rate, we measure the first 15265 * initial-windows worth of data to 15266 * speed up getting some GP measurement and 15267 * thus start pacing. 15268 */ 15269 if ((rack->rc_gp_filled == 0) && (rack->r_ctl.init_rate == 0)) { 15270 rack->app_limited_needs_set = 1; 15271 tp->gput_ack = startseq + max(rc_init_window(rack), 15272 (MIN_GP_WIN * ctf_fixed_maxseg(tp))); 15273 rack_log_pacing_delay_calc(rack, 15274 tp->gput_seq, 15275 tp->gput_ack, 15276 0, 15277 tp->gput_ts, 15278 rack->r_ctl.rc_app_limited_cnt, 15279 9, 15280 __LINE__, NULL, 0); 15281 return; 15282 } 15283 if (sb_offset) { 15284 /* 15285 * We are out somewhere in the sb 15286 * can we use the already outstanding data? 15287 */ 15288 if (rack->r_ctl.rc_app_limited_cnt == 0) { 15289 /* 15290 * Yes first one is good and in this case 15291 * the tp->gput_ts is correctly set based on 15292 * the last ack that arrived (no need to 15293 * set things up when an ack comes in). 15294 */ 15295 my_rsm = RB_MIN(rack_rb_tree_head, &rack->r_ctl.rc_mtree); 15296 if ((my_rsm == NULL) || 15297 (my_rsm->r_rtr_cnt != 1)) { 15298 /* retransmission? */ 15299 goto use_latest; 15300 } 15301 } else { 15302 if (rack->r_ctl.rc_first_appl == NULL) { 15303 /* 15304 * If rc_first_appl is NULL 15305 * then the cnt should be 0. 15306 * This is probably an error, maybe 15307 * a KASSERT would be approprate. 15308 */ 15309 goto use_latest; 15310 } 15311 /* 15312 * If we have a marker pointer to the last one that is 15313 * app limited we can use that, but we need to set 15314 * things up so that when it gets ack'ed we record 15315 * the ack time (if its not already acked). 15316 */ 15317 rack->app_limited_needs_set = 1; 15318 /* 15319 * We want to get to the rsm that is either 15320 * next with space i.e. over 1 MSS or the one 15321 * after that (after the app-limited). 15322 */ 15323 my_rsm = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, 15324 rack->r_ctl.rc_first_appl); 15325 if (my_rsm) { 15326 if ((my_rsm->r_end - my_rsm->r_start) <= ctf_fixed_maxseg(tp)) 15327 /* Have to use the next one */ 15328 my_rsm = RB_NEXT(rack_rb_tree_head, &rack->r_ctl.rc_mtree, 15329 my_rsm); 15330 else { 15331 /* Use after the first MSS of it is acked */ 15332 tp->gput_seq = my_rsm->r_start + ctf_fixed_maxseg(tp); 15333 goto start_set; 15334 } 15335 } 15336 if ((my_rsm == NULL) || 15337 (my_rsm->r_rtr_cnt != 1)) { 15338 /* 15339 * Either its a retransmit or 15340 * the last is the app-limited one. 15341 */ 15342 goto use_latest; 15343 } 15344 } 15345 tp->gput_seq = my_rsm->r_start; 15346 start_set: 15347 if (my_rsm->r_flags & RACK_ACKED) { 15348 /* 15349 * This one has been acked use the arrival ack time 15350 */ 15351 tp->gput_ts = (uint32_t)my_rsm->r_ack_arrival; 15352 rack->app_limited_needs_set = 0; 15353 } 15354 rack->r_ctl.rc_gp_output_ts = my_rsm->r_tim_lastsent[(my_rsm->r_rtr_cnt-1)]; 15355 tp->gput_ack = tp->gput_seq + rack_get_measure_window(tp, rack); 15356 rack_log_pacing_delay_calc(rack, 15357 tp->gput_seq, 15358 tp->gput_ack, 15359 (uint64_t)my_rsm, 15360 tp->gput_ts, 15361 rack->r_ctl.rc_app_limited_cnt, 15362 9, 15363 __LINE__, NULL, 0); 15364 return; 15365 } 15366 15367 use_latest: 15368 /* 15369 * We don't know how long we may have been 15370 * idle or if this is the first-send. Lets 15371 * setup the flag so we will trim off 15372 * the first ack'd data so we get a true 15373 * measurement. 15374 */ 15375 rack->app_limited_needs_set = 1; 15376 tp->gput_ack = startseq + rack_get_measure_window(tp, rack); 15377 /* Find this guy so we can pull the send time */ 15378 fe.r_start = startseq; 15379 my_rsm = RB_FIND(rack_rb_tree_head, &rack->r_ctl.rc_mtree, &fe); 15380 if (my_rsm) { 15381 rack->r_ctl.rc_gp_output_ts = my_rsm->r_tim_lastsent[(my_rsm->r_rtr_cnt-1)]; 15382 if (my_rsm->r_flags & RACK_ACKED) { 15383 /* 15384 * Unlikely since its probably what was 15385 * just transmitted (but I am paranoid). 15386 */ 15387 tp->gput_ts = (uint32_t)my_rsm->r_ack_arrival; 15388 rack->app_limited_needs_set = 0; 15389 } 15390 if (SEQ_LT(my_rsm->r_start, tp->gput_seq)) { 15391 /* This also is unlikely */ 15392 tp->gput_seq = my_rsm->r_start; 15393 } 15394 } else { 15395 /* 15396 * TSNH unless we have some send-map limit, 15397 * and even at that it should not be hitting 15398 * that limit (we should have stopped sending). 15399 */ 15400 struct timeval tv; 15401 15402 microuptime(&tv); 15403 rack->r_ctl.rc_gp_output_ts = rack_to_usec_ts(&tv); 15404 } 15405 rack_log_pacing_delay_calc(rack, 15406 tp->gput_seq, 15407 tp->gput_ack, 15408 (uint64_t)my_rsm, 15409 tp->gput_ts, 15410 rack->r_ctl.rc_app_limited_cnt, 15411 9, __LINE__, NULL, 0); 15412 } 15413 15414 static inline uint32_t 15415 rack_what_can_we_send(struct tcpcb *tp, struct tcp_rack *rack, uint32_t cwnd_to_use, 15416 uint32_t avail, int32_t sb_offset) 15417 { 15418 uint32_t len; 15419 uint32_t sendwin; 15420 15421 if (tp->snd_wnd > cwnd_to_use) 15422 sendwin = cwnd_to_use; 15423 else 15424 sendwin = tp->snd_wnd; 15425 if (ctf_outstanding(tp) >= tp->snd_wnd) { 15426 /* We never want to go over our peers rcv-window */ 15427 len = 0; 15428 } else { 15429 uint32_t flight; 15430 15431 flight = ctf_flight_size(tp, rack->r_ctl.rc_sacked); 15432 if (flight >= sendwin) { 15433 /* 15434 * We have in flight what we are allowed by cwnd (if 15435 * it was rwnd blocking it would have hit above out 15436 * >= tp->snd_wnd). 15437 */ 15438 return (0); 15439 } 15440 len = sendwin - flight; 15441 if ((len + ctf_outstanding(tp)) > tp->snd_wnd) { 15442 /* We would send too much (beyond the rwnd) */ 15443 len = tp->snd_wnd - ctf_outstanding(tp); 15444 } 15445 if ((len + sb_offset) > avail) { 15446 /* 15447 * We don't have that much in the SB, how much is 15448 * there? 15449 */ 15450 len = avail - sb_offset; 15451 } 15452 } 15453 return (len); 15454 } 15455 15456 static void 15457 rack_log_fsb(struct tcp_rack *rack, struct tcpcb *tp, struct socket *so, uint32_t flags, 15458 unsigned ipoptlen, int32_t orig_len, int32_t len, int error, 15459 int rsm_is_null, int optlen, int line, uint16_t mode) 15460 { 15461 if (tp->t_logstate != TCP_LOG_STATE_OFF) { 15462 union tcp_log_stackspecific log; 15463 struct timeval tv; 15464 15465 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 15466 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 15467 log.u_bbr.flex1 = error; 15468 log.u_bbr.flex2 = flags; 15469 log.u_bbr.flex3 = rsm_is_null; 15470 log.u_bbr.flex4 = ipoptlen; 15471 log.u_bbr.flex5 = tp->rcv_numsacks; 15472 log.u_bbr.flex6 = rack->r_ctl.rc_agg_early; 15473 log.u_bbr.flex7 = optlen; 15474 log.u_bbr.flex8 = rack->r_fsb_inited; 15475 log.u_bbr.applimited = rack->r_fast_output; 15476 log.u_bbr.bw_inuse = rack_get_bw(rack); 15477 log.u_bbr.pacing_gain = rack_get_output_gain(rack, NULL); 15478 log.u_bbr.cwnd_gain = mode; 15479 log.u_bbr.pkts_out = orig_len; 15480 log.u_bbr.lt_epoch = len; 15481 log.u_bbr.delivered = line; 15482 log.u_bbr.timeStamp = tcp_get_usecs(&tv); 15483 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 15484 tcp_log_event_(tp, NULL, &so->so_rcv, &so->so_snd, TCP_LOG_FSB, 0, 15485 len, &log, false, NULL, NULL, 0, &tv); 15486 } 15487 } 15488 15489 15490 static struct mbuf * 15491 rack_fo_base_copym(struct mbuf *the_m, uint32_t the_off, int32_t *plen, 15492 struct rack_fast_send_blk *fsb, 15493 int32_t seglimit, int32_t segsize, int hw_tls) 15494 { 15495 #ifdef KERN_TLS 15496 struct ktls_session *tls, *ntls; 15497 #ifdef INVARIANTS 15498 struct mbuf *start; 15499 #endif 15500 #endif 15501 struct mbuf *m, *n, **np, *smb; 15502 struct mbuf *top; 15503 int32_t off, soff; 15504 int32_t len = *plen; 15505 int32_t fragsize; 15506 int32_t len_cp = 0; 15507 uint32_t mlen, frags; 15508 15509 soff = off = the_off; 15510 smb = m = the_m; 15511 np = ⊤ 15512 top = NULL; 15513 #ifdef KERN_TLS 15514 if (hw_tls && (m->m_flags & M_EXTPG)) 15515 tls = m->m_epg_tls; 15516 else 15517 tls = NULL; 15518 #ifdef INVARIANTS 15519 start = m; 15520 #endif 15521 #endif 15522 while (len > 0) { 15523 if (m == NULL) { 15524 *plen = len_cp; 15525 break; 15526 } 15527 #ifdef KERN_TLS 15528 if (hw_tls) { 15529 if (m->m_flags & M_EXTPG) 15530 ntls = m->m_epg_tls; 15531 else 15532 ntls = NULL; 15533 15534 /* 15535 * Avoid mixing TLS records with handshake 15536 * data or TLS records from different 15537 * sessions. 15538 */ 15539 if (tls != ntls) { 15540 MPASS(m != start); 15541 *plen = len_cp; 15542 break; 15543 } 15544 } 15545 #endif 15546 mlen = min(len, m->m_len - off); 15547 if (seglimit) { 15548 /* 15549 * For M_EXTPG mbufs, add 3 segments 15550 * + 1 in case we are crossing page boundaries 15551 * + 2 in case the TLS hdr/trailer are used 15552 * It is cheaper to just add the segments 15553 * than it is to take the cache miss to look 15554 * at the mbuf ext_pgs state in detail. 15555 */ 15556 if (m->m_flags & M_EXTPG) { 15557 fragsize = min(segsize, PAGE_SIZE); 15558 frags = 3; 15559 } else { 15560 fragsize = segsize; 15561 frags = 0; 15562 } 15563 15564 /* Break if we really can't fit anymore. */ 15565 if ((frags + 1) >= seglimit) { 15566 *plen = len_cp; 15567 break; 15568 } 15569 15570 /* 15571 * Reduce size if you can't copy the whole 15572 * mbuf. If we can't copy the whole mbuf, also 15573 * adjust len so the loop will end after this 15574 * mbuf. 15575 */ 15576 if ((frags + howmany(mlen, fragsize)) >= seglimit) { 15577 mlen = (seglimit - frags - 1) * fragsize; 15578 len = mlen; 15579 *plen = len_cp + len; 15580 } 15581 frags += howmany(mlen, fragsize); 15582 if (frags == 0) 15583 frags++; 15584 seglimit -= frags; 15585 KASSERT(seglimit > 0, 15586 ("%s: seglimit went too low", __func__)); 15587 } 15588 n = m_get(M_NOWAIT, m->m_type); 15589 *np = n; 15590 if (n == NULL) 15591 goto nospace; 15592 n->m_len = mlen; 15593 soff += mlen; 15594 len_cp += n->m_len; 15595 if (m->m_flags & (M_EXT|M_EXTPG)) { 15596 n->m_data = m->m_data + off; 15597 mb_dupcl(n, m); 15598 } else { 15599 bcopy(mtod(m, caddr_t)+off, mtod(n, caddr_t), 15600 (u_int)n->m_len); 15601 } 15602 len -= n->m_len; 15603 off = 0; 15604 m = m->m_next; 15605 np = &n->m_next; 15606 if (len || (soff == smb->m_len)) { 15607 /* 15608 * We have more so we move forward or 15609 * we have consumed the entire mbuf and 15610 * len has fell to 0. 15611 */ 15612 soff = 0; 15613 smb = m; 15614 } 15615 15616 } 15617 if (fsb != NULL) { 15618 fsb->m = smb; 15619 fsb->off = soff; 15620 if (smb) { 15621 /* 15622 * Save off the size of the mbuf. We do 15623 * this so that we can recognize when it 15624 * has been trimmed by sbcut() as acks 15625 * come in. 15626 */ 15627 fsb->o_m_len = smb->m_len; 15628 } else { 15629 /* 15630 * This is the case where the next mbuf went to NULL. This 15631 * means with this copy we have sent everything in the sb. 15632 * In theory we could clear the fast_output flag, but lets 15633 * not since its possible that we could get more added 15634 * and acks that call the extend function which would let 15635 * us send more. 15636 */ 15637 fsb->o_m_len = 0; 15638 } 15639 } 15640 return (top); 15641 nospace: 15642 if (top) 15643 m_freem(top); 15644 return (NULL); 15645 15646 } 15647 15648 /* 15649 * This is a copy of m_copym(), taking the TSO segment size/limit 15650 * constraints into account, and advancing the sndptr as it goes. 15651 */ 15652 static struct mbuf * 15653 rack_fo_m_copym(struct tcp_rack *rack, int32_t *plen, 15654 int32_t seglimit, int32_t segsize, struct mbuf **s_mb, int *s_soff) 15655 { 15656 struct mbuf *m, *n; 15657 int32_t soff; 15658 15659 soff = rack->r_ctl.fsb.off; 15660 m = rack->r_ctl.fsb.m; 15661 if (rack->r_ctl.fsb.o_m_len > m->m_len) { 15662 /* 15663 * The mbuf had the front of it chopped off by an ack 15664 * we need to adjust the soff/off by that difference. 15665 */ 15666 uint32_t delta; 15667 15668 delta = rack->r_ctl.fsb.o_m_len - m->m_len; 15669 soff -= delta; 15670 } else if (rack->r_ctl.fsb.o_m_len < m->m_len) { 15671 /* 15672 * The mbuf was expanded probably by 15673 * a m_compress. Just update o_m_len. 15674 */ 15675 rack->r_ctl.fsb.o_m_len = m->m_len; 15676 } 15677 KASSERT(soff >= 0, ("%s, negative off %d", __FUNCTION__, soff)); 15678 KASSERT(*plen >= 0, ("%s, negative len %d", __FUNCTION__, *plen)); 15679 KASSERT(soff < m->m_len, ("%s rack:%p len:%u m:%p m->m_len:%u < off?", 15680 __FUNCTION__, 15681 rack, *plen, m, m->m_len)); 15682 /* Save off the right location before we copy and advance */ 15683 *s_soff = soff; 15684 *s_mb = rack->r_ctl.fsb.m; 15685 n = rack_fo_base_copym(m, soff, plen, 15686 &rack->r_ctl.fsb, 15687 seglimit, segsize, rack->r_ctl.fsb.hw_tls); 15688 return (n); 15689 } 15690 15691 static int 15692 rack_fast_rsm_output(struct tcpcb *tp, struct tcp_rack *rack, struct rack_sendmap *rsm, 15693 uint64_t ts_val, uint32_t cts, uint32_t ms_cts, struct timeval *tv, int len, uint8_t doing_tlp) 15694 { 15695 /* 15696 * Enter the fast retransmit path. We are given that a sched_pin is 15697 * in place (if accounting is compliled in) and the cycle count taken 15698 * at the entry is in the ts_val. The concept her is that the rsm 15699 * now holds the mbuf offsets and such so we can directly transmit 15700 * without a lot of overhead, the len field is already set for 15701 * us to prohibit us from sending too much (usually its 1MSS). 15702 */ 15703 struct ip *ip = NULL; 15704 struct udphdr *udp = NULL; 15705 struct tcphdr *th = NULL; 15706 struct mbuf *m = NULL; 15707 struct inpcb *inp; 15708 uint8_t *cpto; 15709 struct tcp_log_buffer *lgb; 15710 #ifdef TCP_ACCOUNTING 15711 uint64_t crtsc; 15712 int cnt_thru = 1; 15713 #endif 15714 struct tcpopt to; 15715 u_char opt[TCP_MAXOLEN]; 15716 uint32_t hdrlen, optlen; 15717 int32_t slot, segsiz, max_val, tso = 0, error, ulen = 0; 15718 uint16_t flags; 15719 uint32_t if_hw_tsomaxsegcount = 0, startseq; 15720 uint32_t if_hw_tsomaxsegsize; 15721 15722 #ifdef INET6 15723 struct ip6_hdr *ip6 = NULL; 15724 15725 if (rack->r_is_v6) { 15726 ip6 = (struct ip6_hdr *)rack->r_ctl.fsb.tcp_ip_hdr; 15727 hdrlen = sizeof(struct ip6_hdr) + sizeof(struct tcphdr); 15728 } else 15729 #endif /* INET6 */ 15730 { 15731 ip = (struct ip *)rack->r_ctl.fsb.tcp_ip_hdr; 15732 hdrlen = sizeof(struct tcpiphdr); 15733 } 15734 if (tp->t_port && (V_tcp_udp_tunneling_port == 0)) { 15735 goto failed; 15736 } 15737 if (doing_tlp) { 15738 /* Its a TLP add the flag, it may already be there but be sure */ 15739 rsm->r_flags |= RACK_TLP; 15740 } else { 15741 /* If it was a TLP it is not not on this retransmit */ 15742 rsm->r_flags &= ~RACK_TLP; 15743 } 15744 startseq = rsm->r_start; 15745 segsiz = min(ctf_fixed_maxseg(tp), rack->r_ctl.rc_pace_min_segs); 15746 inp = rack->rc_inp; 15747 to.to_flags = 0; 15748 flags = tcp_outflags[tp->t_state]; 15749 if (flags & (TH_SYN|TH_RST)) { 15750 goto failed; 15751 } 15752 if (rsm->r_flags & RACK_HAS_FIN) { 15753 /* We can't send a FIN here */ 15754 goto failed; 15755 } 15756 if (flags & TH_FIN) { 15757 /* We never send a FIN */ 15758 flags &= ~TH_FIN; 15759 } 15760 if (tp->t_flags & TF_RCVD_TSTMP) { 15761 to.to_tsval = ms_cts + tp->ts_offset; 15762 to.to_tsecr = tp->ts_recent; 15763 to.to_flags = TOF_TS; 15764 } 15765 optlen = tcp_addoptions(&to, opt); 15766 hdrlen += optlen; 15767 udp = rack->r_ctl.fsb.udp; 15768 if (udp) 15769 hdrlen += sizeof(struct udphdr); 15770 if (rack->r_ctl.rc_pace_max_segs) 15771 max_val = rack->r_ctl.rc_pace_max_segs; 15772 else if (rack->rc_user_set_max_segs) 15773 max_val = rack->rc_user_set_max_segs * segsiz; 15774 else 15775 max_val = len; 15776 if ((tp->t_flags & TF_TSO) && 15777 V_tcp_do_tso && 15778 (len > segsiz) && 15779 (tp->t_port == 0)) 15780 tso = 1; 15781 #ifdef INET6 15782 if (MHLEN < hdrlen + max_linkhdr) 15783 m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); 15784 else 15785 #endif 15786 m = m_gethdr(M_NOWAIT, MT_DATA); 15787 if (m == NULL) 15788 goto failed; 15789 m->m_data += max_linkhdr; 15790 m->m_len = hdrlen; 15791 th = rack->r_ctl.fsb.th; 15792 /* Establish the len to send */ 15793 if (len > max_val) 15794 len = max_val; 15795 if ((tso) && (len + optlen > tp->t_maxseg)) { 15796 uint32_t if_hw_tsomax; 15797 int32_t max_len; 15798 15799 /* extract TSO information */ 15800 if_hw_tsomax = tp->t_tsomax; 15801 if_hw_tsomaxsegcount = tp->t_tsomaxsegcount; 15802 if_hw_tsomaxsegsize = tp->t_tsomaxsegsize; 15803 /* 15804 * Check if we should limit by maximum payload 15805 * length: 15806 */ 15807 if (if_hw_tsomax != 0) { 15808 /* compute maximum TSO length */ 15809 max_len = (if_hw_tsomax - hdrlen - 15810 max_linkhdr); 15811 if (max_len <= 0) { 15812 goto failed; 15813 } else if (len > max_len) { 15814 len = max_len; 15815 } 15816 } 15817 if (len <= segsiz) { 15818 /* 15819 * In case there are too many small fragments don't 15820 * use TSO: 15821 */ 15822 tso = 0; 15823 } 15824 } else { 15825 tso = 0; 15826 } 15827 if ((tso == 0) && (len > segsiz)) 15828 len = segsiz; 15829 if ((len == 0) || 15830 (len <= MHLEN - hdrlen - max_linkhdr)) { 15831 goto failed; 15832 } 15833 th->th_seq = htonl(rsm->r_start); 15834 th->th_ack = htonl(tp->rcv_nxt); 15835 /* 15836 * The PUSH bit should only be applied 15837 * if the full retransmission is made. If 15838 * we are sending less than this is the 15839 * left hand edge and should not have 15840 * the PUSH bit. 15841 */ 15842 if ((rsm->r_flags & RACK_HAD_PUSH) && 15843 (len == (rsm->r_end - rsm->r_start))) 15844 flags |= TH_PUSH; 15845 th->th_win = htons((u_short)(rack->r_ctl.fsb.recwin >> tp->rcv_scale)); 15846 if (th->th_win == 0) { 15847 tp->t_sndzerowin++; 15848 tp->t_flags |= TF_RXWIN0SENT; 15849 } else 15850 tp->t_flags &= ~TF_RXWIN0SENT; 15851 if (rsm->r_flags & RACK_TLP) { 15852 /* 15853 * TLP should not count in retran count, but 15854 * in its own bin 15855 */ 15856 counter_u64_add(rack_tlp_retran, 1); 15857 counter_u64_add(rack_tlp_retran_bytes, len); 15858 } else { 15859 tp->t_sndrexmitpack++; 15860 KMOD_TCPSTAT_INC(tcps_sndrexmitpack); 15861 KMOD_TCPSTAT_ADD(tcps_sndrexmitbyte, len); 15862 } 15863 #ifdef STATS 15864 stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_RETXPB, 15865 len); 15866 #endif 15867 if (rsm->m == NULL) 15868 goto failed; 15869 if (rsm->orig_m_len != rsm->m->m_len) { 15870 /* Fix up the orig_m_len and possibly the mbuf offset */ 15871 rack_adjust_orig_mlen(rsm); 15872 } 15873 m->m_next = rack_fo_base_copym(rsm->m, rsm->soff, &len, NULL, if_hw_tsomaxsegcount, if_hw_tsomaxsegsize, rsm->r_hw_tls); 15874 if (len <= segsiz) { 15875 /* 15876 * Must have ran out of mbufs for the copy 15877 * shorten it to no longer need tso. Lets 15878 * not put on sendalot since we are low on 15879 * mbufs. 15880 */ 15881 tso = 0; 15882 } 15883 if ((m->m_next == NULL) || (len <= 0)){ 15884 goto failed; 15885 } 15886 if (udp) { 15887 if (rack->r_is_v6) 15888 ulen = hdrlen + len - sizeof(struct ip6_hdr); 15889 else 15890 ulen = hdrlen + len - sizeof(struct ip); 15891 udp->uh_ulen = htons(ulen); 15892 } 15893 m->m_pkthdr.rcvif = (struct ifnet *)0; 15894 if (TCPS_HAVERCVDSYN(tp->t_state) && 15895 (tp->t_flags2 & (TF2_ECN_PERMIT | TF2_ACE_PERMIT))) { 15896 int ect = tcp_ecn_output_established(tp, &flags, len, true); 15897 if ((tp->t_state == TCPS_SYN_RECEIVED) && 15898 (tp->t_flags2 & TF2_ECN_SND_ECE)) 15899 tp->t_flags2 &= ~TF2_ECN_SND_ECE; 15900 #ifdef INET6 15901 if (rack->r_is_v6) { 15902 ip6->ip6_flow &= ~htonl(IPTOS_ECN_MASK << 20); 15903 ip6->ip6_flow |= htonl(ect << 20); 15904 } 15905 else 15906 #endif 15907 { 15908 ip->ip_tos &= ~IPTOS_ECN_MASK; 15909 ip->ip_tos |= ect; 15910 } 15911 } 15912 tcp_set_flags(th, flags); 15913 m->m_pkthdr.len = hdrlen + len; /* in6_cksum() need this */ 15914 #ifdef INET6 15915 if (rack->r_is_v6) { 15916 if (tp->t_port) { 15917 m->m_pkthdr.csum_flags = CSUM_UDP_IPV6; 15918 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 15919 udp->uh_sum = in6_cksum_pseudo(ip6, ulen, IPPROTO_UDP, 0); 15920 th->th_sum = htons(0); 15921 UDPSTAT_INC(udps_opackets); 15922 } else { 15923 m->m_pkthdr.csum_flags = CSUM_TCP_IPV6; 15924 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 15925 th->th_sum = in6_cksum_pseudo(ip6, 15926 sizeof(struct tcphdr) + optlen + len, IPPROTO_TCP, 15927 0); 15928 } 15929 } 15930 #endif 15931 #if defined(INET6) && defined(INET) 15932 else 15933 #endif 15934 #ifdef INET 15935 { 15936 if (tp->t_port) { 15937 m->m_pkthdr.csum_flags = CSUM_UDP; 15938 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 15939 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, 15940 ip->ip_dst.s_addr, htons(ulen + IPPROTO_UDP)); 15941 th->th_sum = htons(0); 15942 UDPSTAT_INC(udps_opackets); 15943 } else { 15944 m->m_pkthdr.csum_flags = CSUM_TCP; 15945 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 15946 th->th_sum = in_pseudo(ip->ip_src.s_addr, 15947 ip->ip_dst.s_addr, htons(sizeof(struct tcphdr) + 15948 IPPROTO_TCP + len + optlen)); 15949 } 15950 /* IP version must be set here for ipv4/ipv6 checking later */ 15951 KASSERT(ip->ip_v == IPVERSION, 15952 ("%s: IP version incorrect: %d", __func__, ip->ip_v)); 15953 } 15954 #endif 15955 if (tso) { 15956 KASSERT(len > tp->t_maxseg - optlen, 15957 ("%s: len <= tso_segsz tp:%p", __func__, tp)); 15958 m->m_pkthdr.csum_flags |= CSUM_TSO; 15959 m->m_pkthdr.tso_segsz = tp->t_maxseg - optlen; 15960 } 15961 #ifdef INET6 15962 if (rack->r_is_v6) { 15963 ip6->ip6_hlim = rack->r_ctl.fsb.hoplimit; 15964 ip6->ip6_plen = htons(m->m_pkthdr.len - sizeof(*ip6)); 15965 if (V_path_mtu_discovery && tp->t_maxseg > V_tcp_minmss) 15966 tp->t_flags2 |= TF2_PLPMTU_PMTUD; 15967 else 15968 tp->t_flags2 &= ~TF2_PLPMTU_PMTUD; 15969 } 15970 #endif 15971 #if defined(INET) && defined(INET6) 15972 else 15973 #endif 15974 #ifdef INET 15975 { 15976 ip->ip_len = htons(m->m_pkthdr.len); 15977 ip->ip_ttl = rack->r_ctl.fsb.hoplimit; 15978 if (V_path_mtu_discovery && tp->t_maxseg > V_tcp_minmss) { 15979 tp->t_flags2 |= TF2_PLPMTU_PMTUD; 15980 if (tp->t_port == 0 || len < V_tcp_minmss) { 15981 ip->ip_off |= htons(IP_DF); 15982 } 15983 } else { 15984 tp->t_flags2 &= ~TF2_PLPMTU_PMTUD; 15985 } 15986 } 15987 #endif 15988 /* Time to copy in our header */ 15989 cpto = mtod(m, uint8_t *); 15990 memcpy(cpto, rack->r_ctl.fsb.tcp_ip_hdr, rack->r_ctl.fsb.tcp_ip_hdr_len); 15991 th = (struct tcphdr *)(cpto + ((uint8_t *)rack->r_ctl.fsb.th - rack->r_ctl.fsb.tcp_ip_hdr)); 15992 if (optlen) { 15993 bcopy(opt, th + 1, optlen); 15994 th->th_off = (sizeof(struct tcphdr) + optlen) >> 2; 15995 } else { 15996 th->th_off = sizeof(struct tcphdr) >> 2; 15997 } 15998 if (tp->t_logstate != TCP_LOG_STATE_OFF) { 15999 union tcp_log_stackspecific log; 16000 16001 if (rsm->r_flags & RACK_RWND_COLLAPSED) { 16002 rack_log_collapse(rack, rsm->r_start, rsm->r_end, 0, __LINE__, 5, rsm->r_flags, rsm); 16003 counter_u64_add(rack_collapsed_win_rxt, 1); 16004 counter_u64_add(rack_collapsed_win_rxt_bytes, (rsm->r_end - rsm->r_start)); 16005 } 16006 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 16007 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 16008 if (rack->rack_no_prr) 16009 log.u_bbr.flex1 = 0; 16010 else 16011 log.u_bbr.flex1 = rack->r_ctl.rc_prr_sndcnt; 16012 log.u_bbr.flex2 = rack->r_ctl.rc_pace_min_segs; 16013 log.u_bbr.flex3 = rack->r_ctl.rc_pace_max_segs; 16014 log.u_bbr.flex4 = max_val; 16015 log.u_bbr.flex5 = 0; 16016 /* Save off the early/late values */ 16017 log.u_bbr.flex6 = rack->r_ctl.rc_agg_early; 16018 log.u_bbr.applimited = rack->r_ctl.rc_agg_delayed; 16019 log.u_bbr.bw_inuse = rack_get_bw(rack); 16020 if (doing_tlp == 0) 16021 log.u_bbr.flex8 = 1; 16022 else 16023 log.u_bbr.flex8 = 2; 16024 log.u_bbr.pacing_gain = rack_get_output_gain(rack, NULL); 16025 log.u_bbr.flex7 = 55; 16026 log.u_bbr.pkts_out = tp->t_maxseg; 16027 log.u_bbr.timeStamp = cts; 16028 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 16029 log.u_bbr.lt_epoch = rack->r_ctl.cwnd_to_use; 16030 log.u_bbr.delivered = 0; 16031 lgb = tcp_log_event_(tp, th, NULL, NULL, TCP_LOG_OUT, ERRNO_UNK, 16032 len, &log, false, NULL, NULL, 0, tv); 16033 } else 16034 lgb = NULL; 16035 #ifdef INET6 16036 if (rack->r_is_v6) { 16037 error = ip6_output(m, NULL, 16038 &inp->inp_route6, 16039 0, NULL, NULL, inp); 16040 } 16041 #endif 16042 #if defined(INET) && defined(INET6) 16043 else 16044 #endif 16045 #ifdef INET 16046 { 16047 error = ip_output(m, NULL, 16048 &inp->inp_route, 16049 0, 0, inp); 16050 } 16051 #endif 16052 m = NULL; 16053 if (lgb) { 16054 lgb->tlb_errno = error; 16055 lgb = NULL; 16056 } 16057 if (error) { 16058 goto failed; 16059 } 16060 rack_log_output(tp, &to, len, rsm->r_start, flags, error, rack_to_usec_ts(tv), 16061 rsm, RACK_SENT_FP, rsm->m, rsm->soff, rsm->r_hw_tls); 16062 if (doing_tlp && (rack->fast_rsm_hack == 0)) { 16063 rack->rc_tlp_in_progress = 1; 16064 rack->r_ctl.rc_tlp_cnt_out++; 16065 } 16066 if (error == 0) { 16067 tcp_account_for_send(tp, len, 1, doing_tlp, rsm->r_hw_tls); 16068 if (doing_tlp) { 16069 rack->rc_last_sent_tlp_past_cumack = 0; 16070 rack->rc_last_sent_tlp_seq_valid = 1; 16071 rack->r_ctl.last_sent_tlp_seq = rsm->r_start; 16072 rack->r_ctl.last_sent_tlp_len = rsm->r_end - rsm->r_start; 16073 } 16074 } 16075 tp->t_flags &= ~(TF_ACKNOW | TF_DELACK); 16076 rack->forced_ack = 0; /* If we send something zap the FA flag */ 16077 if (IN_FASTRECOVERY(tp->t_flags) && rsm) 16078 rack->r_ctl.retran_during_recovery += len; 16079 { 16080 int idx; 16081 16082 idx = (len / segsiz) + 3; 16083 if (idx >= TCP_MSS_ACCT_ATIMER) 16084 counter_u64_add(rack_out_size[(TCP_MSS_ACCT_ATIMER-1)], 1); 16085 else 16086 counter_u64_add(rack_out_size[idx], 1); 16087 } 16088 if (tp->t_rtttime == 0) { 16089 tp->t_rtttime = ticks; 16090 tp->t_rtseq = startseq; 16091 KMOD_TCPSTAT_INC(tcps_segstimed); 16092 } 16093 counter_u64_add(rack_fto_rsm_send, 1); 16094 if (error && (error == ENOBUFS)) { 16095 if (rack->r_ctl.crte != NULL) { 16096 rack_trace_point(rack, RACK_TP_HWENOBUF); 16097 } else 16098 rack_trace_point(rack, RACK_TP_ENOBUF); 16099 slot = ((1 + rack->rc_enobuf) * HPTS_USEC_IN_MSEC); 16100 if (rack->rc_enobuf < 0x7f) 16101 rack->rc_enobuf++; 16102 if (slot < (10 * HPTS_USEC_IN_MSEC)) 16103 slot = 10 * HPTS_USEC_IN_MSEC; 16104 } else 16105 slot = rack_get_pacing_delay(rack, tp, len, NULL, segsiz); 16106 if ((slot == 0) || 16107 (rack->rc_always_pace == 0) || 16108 (rack->r_rr_config == 1)) { 16109 /* 16110 * We have no pacing set or we 16111 * are using old-style rack or 16112 * we are overridden to use the old 1ms pacing. 16113 */ 16114 slot = rack->r_ctl.rc_min_to; 16115 } 16116 rack_start_hpts_timer(rack, tp, cts, slot, len, 0); 16117 #ifdef TCP_ACCOUNTING 16118 crtsc = get_cyclecount(); 16119 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 16120 tp->tcp_cnt_counters[SND_OUT_DATA] += cnt_thru; 16121 } 16122 counter_u64_add(tcp_cnt_counters[SND_OUT_DATA], cnt_thru); 16123 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 16124 tp->tcp_proc_time[SND_OUT_DATA] += (crtsc - ts_val); 16125 } 16126 counter_u64_add(tcp_proc_time[SND_OUT_DATA], (crtsc - ts_val)); 16127 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 16128 tp->tcp_cnt_counters[CNT_OF_MSS_OUT] += ((len + segsiz - 1) / segsiz); 16129 } 16130 counter_u64_add(tcp_cnt_counters[CNT_OF_MSS_OUT], ((len + segsiz - 1) / segsiz)); 16131 sched_unpin(); 16132 #endif 16133 return (0); 16134 failed: 16135 if (m) 16136 m_free(m); 16137 return (-1); 16138 } 16139 16140 static void 16141 rack_sndbuf_autoscale(struct tcp_rack *rack) 16142 { 16143 /* 16144 * Automatic sizing of send socket buffer. Often the send buffer 16145 * size is not optimally adjusted to the actual network conditions 16146 * at hand (delay bandwidth product). Setting the buffer size too 16147 * small limits throughput on links with high bandwidth and high 16148 * delay (eg. trans-continental/oceanic links). Setting the 16149 * buffer size too big consumes too much real kernel memory, 16150 * especially with many connections on busy servers. 16151 * 16152 * The criteria to step up the send buffer one notch are: 16153 * 1. receive window of remote host is larger than send buffer 16154 * (with a fudge factor of 5/4th); 16155 * 2. send buffer is filled to 7/8th with data (so we actually 16156 * have data to make use of it); 16157 * 3. send buffer fill has not hit maximal automatic size; 16158 * 4. our send window (slow start and cogestion controlled) is 16159 * larger than sent but unacknowledged data in send buffer. 16160 * 16161 * Note that the rack version moves things much faster since 16162 * we want to avoid hitting cache lines in the rack_fast_output() 16163 * path so this is called much less often and thus moves 16164 * the SB forward by a percentage. 16165 */ 16166 struct socket *so; 16167 struct tcpcb *tp; 16168 uint32_t sendwin, scaleup; 16169 16170 tp = rack->rc_tp; 16171 so = rack->rc_inp->inp_socket; 16172 sendwin = min(rack->r_ctl.cwnd_to_use, tp->snd_wnd); 16173 if (V_tcp_do_autosndbuf && so->so_snd.sb_flags & SB_AUTOSIZE) { 16174 if ((tp->snd_wnd / 4 * 5) >= so->so_snd.sb_hiwat && 16175 sbused(&so->so_snd) >= 16176 (so->so_snd.sb_hiwat / 8 * 7) && 16177 sbused(&so->so_snd) < V_tcp_autosndbuf_max && 16178 sendwin >= (sbused(&so->so_snd) - 16179 (tp->snd_nxt - tp->snd_una))) { 16180 if (rack_autosndbuf_inc) 16181 scaleup = (rack_autosndbuf_inc * so->so_snd.sb_hiwat) / 100; 16182 else 16183 scaleup = V_tcp_autosndbuf_inc; 16184 if (scaleup < V_tcp_autosndbuf_inc) 16185 scaleup = V_tcp_autosndbuf_inc; 16186 scaleup += so->so_snd.sb_hiwat; 16187 if (scaleup > V_tcp_autosndbuf_max) 16188 scaleup = V_tcp_autosndbuf_max; 16189 if (!sbreserve_locked(so, SO_SND, scaleup, curthread)) 16190 so->so_snd.sb_flags &= ~SB_AUTOSIZE; 16191 } 16192 } 16193 } 16194 16195 static int 16196 rack_fast_output(struct tcpcb *tp, struct tcp_rack *rack, uint64_t ts_val, 16197 uint32_t cts, uint32_t ms_cts, struct timeval *tv, long tot_len, int *send_err) 16198 { 16199 /* 16200 * Enter to do fast output. We are given that the sched_pin is 16201 * in place (if accounting is compiled in) and the cycle count taken 16202 * at entry is in place in ts_val. The idea here is that 16203 * we know how many more bytes needs to be sent (presumably either 16204 * during pacing or to fill the cwnd and that was greater than 16205 * the max-burst). We have how much to send and all the info we 16206 * need to just send. 16207 */ 16208 struct ip *ip = NULL; 16209 struct udphdr *udp = NULL; 16210 struct tcphdr *th = NULL; 16211 struct mbuf *m, *s_mb; 16212 struct inpcb *inp; 16213 uint8_t *cpto; 16214 struct tcp_log_buffer *lgb; 16215 #ifdef TCP_ACCOUNTING 16216 uint64_t crtsc; 16217 #endif 16218 struct tcpopt to; 16219 u_char opt[TCP_MAXOLEN]; 16220 uint32_t hdrlen, optlen; 16221 #ifdef TCP_ACCOUNTING 16222 int cnt_thru = 1; 16223 #endif 16224 int32_t slot, segsiz, len, max_val, tso = 0, sb_offset, error, ulen = 0; 16225 uint16_t flags; 16226 uint32_t s_soff; 16227 uint32_t if_hw_tsomaxsegcount = 0, startseq; 16228 uint32_t if_hw_tsomaxsegsize; 16229 uint16_t add_flag = RACK_SENT_FP; 16230 #ifdef INET6 16231 struct ip6_hdr *ip6 = NULL; 16232 16233 if (rack->r_is_v6) { 16234 ip6 = (struct ip6_hdr *)rack->r_ctl.fsb.tcp_ip_hdr; 16235 hdrlen = sizeof(struct ip6_hdr) + sizeof(struct tcphdr); 16236 } else 16237 #endif /* INET6 */ 16238 { 16239 ip = (struct ip *)rack->r_ctl.fsb.tcp_ip_hdr; 16240 hdrlen = sizeof(struct tcpiphdr); 16241 } 16242 if (tp->t_port && (V_tcp_udp_tunneling_port == 0)) { 16243 m = NULL; 16244 goto failed; 16245 } 16246 startseq = tp->snd_max; 16247 segsiz = min(ctf_fixed_maxseg(tp), rack->r_ctl.rc_pace_min_segs); 16248 inp = rack->rc_inp; 16249 len = rack->r_ctl.fsb.left_to_send; 16250 to.to_flags = 0; 16251 flags = rack->r_ctl.fsb.tcp_flags; 16252 if (tp->t_flags & TF_RCVD_TSTMP) { 16253 to.to_tsval = ms_cts + tp->ts_offset; 16254 to.to_tsecr = tp->ts_recent; 16255 to.to_flags = TOF_TS; 16256 } 16257 optlen = tcp_addoptions(&to, opt); 16258 hdrlen += optlen; 16259 udp = rack->r_ctl.fsb.udp; 16260 if (udp) 16261 hdrlen += sizeof(struct udphdr); 16262 if (rack->r_ctl.rc_pace_max_segs) 16263 max_val = rack->r_ctl.rc_pace_max_segs; 16264 else if (rack->rc_user_set_max_segs) 16265 max_val = rack->rc_user_set_max_segs * segsiz; 16266 else 16267 max_val = len; 16268 if ((tp->t_flags & TF_TSO) && 16269 V_tcp_do_tso && 16270 (len > segsiz) && 16271 (tp->t_port == 0)) 16272 tso = 1; 16273 again: 16274 #ifdef INET6 16275 if (MHLEN < hdrlen + max_linkhdr) 16276 m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); 16277 else 16278 #endif 16279 m = m_gethdr(M_NOWAIT, MT_DATA); 16280 if (m == NULL) 16281 goto failed; 16282 m->m_data += max_linkhdr; 16283 m->m_len = hdrlen; 16284 th = rack->r_ctl.fsb.th; 16285 /* Establish the len to send */ 16286 if (len > max_val) 16287 len = max_val; 16288 if ((tso) && (len + optlen > tp->t_maxseg)) { 16289 uint32_t if_hw_tsomax; 16290 int32_t max_len; 16291 16292 /* extract TSO information */ 16293 if_hw_tsomax = tp->t_tsomax; 16294 if_hw_tsomaxsegcount = tp->t_tsomaxsegcount; 16295 if_hw_tsomaxsegsize = tp->t_tsomaxsegsize; 16296 /* 16297 * Check if we should limit by maximum payload 16298 * length: 16299 */ 16300 if (if_hw_tsomax != 0) { 16301 /* compute maximum TSO length */ 16302 max_len = (if_hw_tsomax - hdrlen - 16303 max_linkhdr); 16304 if (max_len <= 0) { 16305 goto failed; 16306 } else if (len > max_len) { 16307 len = max_len; 16308 } 16309 } 16310 if (len <= segsiz) { 16311 /* 16312 * In case there are too many small fragments don't 16313 * use TSO: 16314 */ 16315 tso = 0; 16316 } 16317 } else { 16318 tso = 0; 16319 } 16320 if ((tso == 0) && (len > segsiz)) 16321 len = segsiz; 16322 if ((len == 0) || 16323 (len <= MHLEN - hdrlen - max_linkhdr)) { 16324 goto failed; 16325 } 16326 sb_offset = tp->snd_max - tp->snd_una; 16327 th->th_seq = htonl(tp->snd_max); 16328 th->th_ack = htonl(tp->rcv_nxt); 16329 th->th_win = htons((u_short)(rack->r_ctl.fsb.recwin >> tp->rcv_scale)); 16330 if (th->th_win == 0) { 16331 tp->t_sndzerowin++; 16332 tp->t_flags |= TF_RXWIN0SENT; 16333 } else 16334 tp->t_flags &= ~TF_RXWIN0SENT; 16335 tp->snd_up = tp->snd_una; /* drag it along, its deprecated */ 16336 KMOD_TCPSTAT_INC(tcps_sndpack); 16337 KMOD_TCPSTAT_ADD(tcps_sndbyte, len); 16338 #ifdef STATS 16339 stats_voi_update_abs_u64(tp->t_stats, VOI_TCP_TXPB, 16340 len); 16341 #endif 16342 if (rack->r_ctl.fsb.m == NULL) 16343 goto failed; 16344 16345 /* s_mb and s_soff are saved for rack_log_output */ 16346 m->m_next = rack_fo_m_copym(rack, &len, if_hw_tsomaxsegcount, if_hw_tsomaxsegsize, 16347 &s_mb, &s_soff); 16348 if (len <= segsiz) { 16349 /* 16350 * Must have ran out of mbufs for the copy 16351 * shorten it to no longer need tso. Lets 16352 * not put on sendalot since we are low on 16353 * mbufs. 16354 */ 16355 tso = 0; 16356 } 16357 if (rack->r_ctl.fsb.rfo_apply_push && 16358 (len == rack->r_ctl.fsb.left_to_send)) { 16359 flags |= TH_PUSH; 16360 add_flag |= RACK_HAD_PUSH; 16361 } 16362 if ((m->m_next == NULL) || (len <= 0)){ 16363 goto failed; 16364 } 16365 if (udp) { 16366 if (rack->r_is_v6) 16367 ulen = hdrlen + len - sizeof(struct ip6_hdr); 16368 else 16369 ulen = hdrlen + len - sizeof(struct ip); 16370 udp->uh_ulen = htons(ulen); 16371 } 16372 m->m_pkthdr.rcvif = (struct ifnet *)0; 16373 if (TCPS_HAVERCVDSYN(tp->t_state) && 16374 (tp->t_flags2 & (TF2_ECN_PERMIT | TF2_ACE_PERMIT))) { 16375 int ect = tcp_ecn_output_established(tp, &flags, len, false); 16376 if ((tp->t_state == TCPS_SYN_RECEIVED) && 16377 (tp->t_flags2 & TF2_ECN_SND_ECE)) 16378 tp->t_flags2 &= ~TF2_ECN_SND_ECE; 16379 #ifdef INET6 16380 if (rack->r_is_v6) { 16381 ip6->ip6_flow &= ~htonl(IPTOS_ECN_MASK << 20); 16382 ip6->ip6_flow |= htonl(ect << 20); 16383 } 16384 else 16385 #endif 16386 { 16387 ip->ip_tos &= ~IPTOS_ECN_MASK; 16388 ip->ip_tos |= ect; 16389 } 16390 } 16391 tcp_set_flags(th, flags); 16392 m->m_pkthdr.len = hdrlen + len; /* in6_cksum() need this */ 16393 #ifdef INET6 16394 if (rack->r_is_v6) { 16395 if (tp->t_port) { 16396 m->m_pkthdr.csum_flags = CSUM_UDP_IPV6; 16397 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 16398 udp->uh_sum = in6_cksum_pseudo(ip6, ulen, IPPROTO_UDP, 0); 16399 th->th_sum = htons(0); 16400 UDPSTAT_INC(udps_opackets); 16401 } else { 16402 m->m_pkthdr.csum_flags = CSUM_TCP_IPV6; 16403 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 16404 th->th_sum = in6_cksum_pseudo(ip6, 16405 sizeof(struct tcphdr) + optlen + len, IPPROTO_TCP, 16406 0); 16407 } 16408 } 16409 #endif 16410 #if defined(INET6) && defined(INET) 16411 else 16412 #endif 16413 #ifdef INET 16414 { 16415 if (tp->t_port) { 16416 m->m_pkthdr.csum_flags = CSUM_UDP; 16417 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 16418 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, 16419 ip->ip_dst.s_addr, htons(ulen + IPPROTO_UDP)); 16420 th->th_sum = htons(0); 16421 UDPSTAT_INC(udps_opackets); 16422 } else { 16423 m->m_pkthdr.csum_flags = CSUM_TCP; 16424 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 16425 th->th_sum = in_pseudo(ip->ip_src.s_addr, 16426 ip->ip_dst.s_addr, htons(sizeof(struct tcphdr) + 16427 IPPROTO_TCP + len + optlen)); 16428 } 16429 /* IP version must be set here for ipv4/ipv6 checking later */ 16430 KASSERT(ip->ip_v == IPVERSION, 16431 ("%s: IP version incorrect: %d", __func__, ip->ip_v)); 16432 } 16433 #endif 16434 if (tso) { 16435 KASSERT(len > tp->t_maxseg - optlen, 16436 ("%s: len <= tso_segsz tp:%p", __func__, tp)); 16437 m->m_pkthdr.csum_flags |= CSUM_TSO; 16438 m->m_pkthdr.tso_segsz = tp->t_maxseg - optlen; 16439 } 16440 #ifdef INET6 16441 if (rack->r_is_v6) { 16442 ip6->ip6_hlim = rack->r_ctl.fsb.hoplimit; 16443 ip6->ip6_plen = htons(m->m_pkthdr.len - sizeof(*ip6)); 16444 if (V_path_mtu_discovery && tp->t_maxseg > V_tcp_minmss) 16445 tp->t_flags2 |= TF2_PLPMTU_PMTUD; 16446 else 16447 tp->t_flags2 &= ~TF2_PLPMTU_PMTUD; 16448 } 16449 #endif 16450 #if defined(INET) && defined(INET6) 16451 else 16452 #endif 16453 #ifdef INET 16454 { 16455 ip->ip_len = htons(m->m_pkthdr.len); 16456 ip->ip_ttl = rack->r_ctl.fsb.hoplimit; 16457 if (V_path_mtu_discovery && tp->t_maxseg > V_tcp_minmss) { 16458 tp->t_flags2 |= TF2_PLPMTU_PMTUD; 16459 if (tp->t_port == 0 || len < V_tcp_minmss) { 16460 ip->ip_off |= htons(IP_DF); 16461 } 16462 } else { 16463 tp->t_flags2 &= ~TF2_PLPMTU_PMTUD; 16464 } 16465 } 16466 #endif 16467 /* Time to copy in our header */ 16468 cpto = mtod(m, uint8_t *); 16469 memcpy(cpto, rack->r_ctl.fsb.tcp_ip_hdr, rack->r_ctl.fsb.tcp_ip_hdr_len); 16470 th = (struct tcphdr *)(cpto + ((uint8_t *)rack->r_ctl.fsb.th - rack->r_ctl.fsb.tcp_ip_hdr)); 16471 if (optlen) { 16472 bcopy(opt, th + 1, optlen); 16473 th->th_off = (sizeof(struct tcphdr) + optlen) >> 2; 16474 } else { 16475 th->th_off = sizeof(struct tcphdr) >> 2; 16476 } 16477 if (tp->t_logstate != TCP_LOG_STATE_OFF) { 16478 union tcp_log_stackspecific log; 16479 16480 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 16481 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 16482 if (rack->rack_no_prr) 16483 log.u_bbr.flex1 = 0; 16484 else 16485 log.u_bbr.flex1 = rack->r_ctl.rc_prr_sndcnt; 16486 log.u_bbr.flex2 = rack->r_ctl.rc_pace_min_segs; 16487 log.u_bbr.flex3 = rack->r_ctl.rc_pace_max_segs; 16488 log.u_bbr.flex4 = max_val; 16489 log.u_bbr.flex5 = 0; 16490 /* Save off the early/late values */ 16491 log.u_bbr.flex6 = rack->r_ctl.rc_agg_early; 16492 log.u_bbr.applimited = rack->r_ctl.rc_agg_delayed; 16493 log.u_bbr.bw_inuse = rack_get_bw(rack); 16494 log.u_bbr.flex8 = 0; 16495 log.u_bbr.pacing_gain = rack_get_output_gain(rack, NULL); 16496 log.u_bbr.flex7 = 44; 16497 log.u_bbr.pkts_out = tp->t_maxseg; 16498 log.u_bbr.timeStamp = cts; 16499 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 16500 log.u_bbr.lt_epoch = rack->r_ctl.cwnd_to_use; 16501 log.u_bbr.delivered = 0; 16502 lgb = tcp_log_event_(tp, th, NULL, NULL, TCP_LOG_OUT, ERRNO_UNK, 16503 len, &log, false, NULL, NULL, 0, tv); 16504 } else 16505 lgb = NULL; 16506 #ifdef INET6 16507 if (rack->r_is_v6) { 16508 error = ip6_output(m, NULL, 16509 &inp->inp_route6, 16510 0, NULL, NULL, inp); 16511 } 16512 #endif 16513 #if defined(INET) && defined(INET6) 16514 else 16515 #endif 16516 #ifdef INET 16517 { 16518 error = ip_output(m, NULL, 16519 &inp->inp_route, 16520 0, 0, inp); 16521 } 16522 #endif 16523 if (lgb) { 16524 lgb->tlb_errno = error; 16525 lgb = NULL; 16526 } 16527 if (error) { 16528 *send_err = error; 16529 m = NULL; 16530 goto failed; 16531 } 16532 rack_log_output(tp, &to, len, tp->snd_max, flags, error, rack_to_usec_ts(tv), 16533 NULL, add_flag, s_mb, s_soff, rack->r_ctl.fsb.hw_tls); 16534 m = NULL; 16535 if (tp->snd_una == tp->snd_max) { 16536 rack->r_ctl.rc_tlp_rxt_last_time = cts; 16537 rack_log_progress_event(rack, tp, ticks, PROGRESS_START, __LINE__); 16538 tp->t_acktime = ticks; 16539 } 16540 if (error == 0) 16541 tcp_account_for_send(tp, len, 0, 0, rack->r_ctl.fsb.hw_tls); 16542 16543 rack->forced_ack = 0; /* If we send something zap the FA flag */ 16544 tot_len += len; 16545 if ((tp->t_flags & TF_GPUTINPROG) == 0) 16546 rack_start_gp_measurement(tp, rack, tp->snd_max, sb_offset); 16547 tp->snd_max += len; 16548 tp->snd_nxt = tp->snd_max; 16549 { 16550 int idx; 16551 16552 idx = (len / segsiz) + 3; 16553 if (idx >= TCP_MSS_ACCT_ATIMER) 16554 counter_u64_add(rack_out_size[(TCP_MSS_ACCT_ATIMER-1)], 1); 16555 else 16556 counter_u64_add(rack_out_size[idx], 1); 16557 } 16558 if (len <= rack->r_ctl.fsb.left_to_send) 16559 rack->r_ctl.fsb.left_to_send -= len; 16560 else 16561 rack->r_ctl.fsb.left_to_send = 0; 16562 if (rack->r_ctl.fsb.left_to_send < segsiz) { 16563 rack->r_fast_output = 0; 16564 rack->r_ctl.fsb.left_to_send = 0; 16565 /* At the end of fast_output scale up the sb */ 16566 SOCKBUF_LOCK(&rack->rc_inp->inp_socket->so_snd); 16567 rack_sndbuf_autoscale(rack); 16568 SOCKBUF_UNLOCK(&rack->rc_inp->inp_socket->so_snd); 16569 } 16570 if (tp->t_rtttime == 0) { 16571 tp->t_rtttime = ticks; 16572 tp->t_rtseq = startseq; 16573 KMOD_TCPSTAT_INC(tcps_segstimed); 16574 } 16575 if ((rack->r_ctl.fsb.left_to_send >= segsiz) && 16576 (max_val > len) && 16577 (tso == 0)) { 16578 max_val -= len; 16579 len = segsiz; 16580 th = rack->r_ctl.fsb.th; 16581 #ifdef TCP_ACCOUNTING 16582 cnt_thru++; 16583 #endif 16584 goto again; 16585 } 16586 tp->t_flags &= ~(TF_ACKNOW | TF_DELACK); 16587 counter_u64_add(rack_fto_send, 1); 16588 slot = rack_get_pacing_delay(rack, tp, tot_len, NULL, segsiz); 16589 rack_start_hpts_timer(rack, tp, cts, slot, tot_len, 0); 16590 #ifdef TCP_ACCOUNTING 16591 crtsc = get_cyclecount(); 16592 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 16593 tp->tcp_cnt_counters[SND_OUT_DATA] += cnt_thru; 16594 } 16595 counter_u64_add(tcp_cnt_counters[SND_OUT_DATA], cnt_thru); 16596 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 16597 tp->tcp_proc_time[SND_OUT_DATA] += (crtsc - ts_val); 16598 } 16599 counter_u64_add(tcp_proc_time[SND_OUT_DATA], (crtsc - ts_val)); 16600 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 16601 tp->tcp_cnt_counters[CNT_OF_MSS_OUT] += ((tot_len + segsiz - 1) / segsiz); 16602 } 16603 counter_u64_add(tcp_cnt_counters[CNT_OF_MSS_OUT], ((tot_len + segsiz - 1) / segsiz)); 16604 sched_unpin(); 16605 #endif 16606 return (0); 16607 failed: 16608 if (m) 16609 m_free(m); 16610 rack->r_fast_output = 0; 16611 return (-1); 16612 } 16613 16614 static struct rack_sendmap * 16615 rack_check_collapsed(struct tcp_rack *rack, uint32_t cts) 16616 { 16617 struct rack_sendmap *rsm = NULL; 16618 struct rack_sendmap fe; 16619 int thresh; 16620 16621 restart: 16622 fe.r_start = rack->r_ctl.last_collapse_point; 16623 rsm = RB_FIND(rack_rb_tree_head, &rack->r_ctl.rc_mtree, &fe); 16624 if ((rsm == NULL) || ((rsm->r_flags & RACK_RWND_COLLAPSED) == 0)) { 16625 /* Nothing, strange turn off validity */ 16626 rack->r_collapse_point_valid = 0; 16627 return (NULL); 16628 } 16629 /* Can we send it yet? */ 16630 if (rsm->r_end > (rack->rc_tp->snd_una + rack->rc_tp->snd_wnd)) { 16631 /* 16632 * Receiver window has not grown enough for 16633 * the segment to be put on the wire. 16634 */ 16635 return (NULL); 16636 } 16637 if (rsm->r_flags & RACK_ACKED) { 16638 /* 16639 * It has been sacked, lets move to the 16640 * next one if possible. 16641 */ 16642 rack->r_ctl.last_collapse_point = rsm->r_end; 16643 /* Are we done? */ 16644 if (SEQ_GEQ(rack->r_ctl.last_collapse_point, 16645 rack->r_ctl.high_collapse_point)) { 16646 rack->r_collapse_point_valid = 0; 16647 return (NULL); 16648 } 16649 goto restart; 16650 } 16651 /* Now has it been long enough ? */ 16652 thresh = rack_calc_thresh_rack(rack, rack_grab_rtt(rack->rc_tp, rack), cts); 16653 if ((cts - ((uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)])) > thresh) { 16654 rack_log_collapse(rack, rsm->r_start, 16655 (cts - ((uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)])), 16656 thresh, __LINE__, 6, rsm->r_flags, rsm); 16657 return (rsm); 16658 } 16659 /* Not enough time */ 16660 rack_log_collapse(rack, rsm->r_start, 16661 (cts - ((uint32_t)rsm->r_tim_lastsent[(rsm->r_rtr_cnt-1)])), 16662 thresh, __LINE__, 7, rsm->r_flags, rsm); 16663 return (NULL); 16664 } 16665 16666 static int 16667 rack_output(struct tcpcb *tp) 16668 { 16669 struct socket *so; 16670 uint32_t recwin; 16671 uint32_t sb_offset, s_moff = 0; 16672 int32_t len, error = 0; 16673 uint16_t flags; 16674 struct mbuf *m, *s_mb = NULL; 16675 struct mbuf *mb; 16676 uint32_t if_hw_tsomaxsegcount = 0; 16677 uint32_t if_hw_tsomaxsegsize; 16678 int32_t segsiz, minseg; 16679 long tot_len_this_send = 0; 16680 #ifdef INET 16681 struct ip *ip = NULL; 16682 #endif 16683 struct udphdr *udp = NULL; 16684 struct tcp_rack *rack; 16685 struct tcphdr *th; 16686 uint8_t pass = 0; 16687 uint8_t mark = 0; 16688 uint8_t wanted_cookie = 0; 16689 u_char opt[TCP_MAXOLEN]; 16690 unsigned ipoptlen, optlen, hdrlen, ulen=0; 16691 uint32_t rack_seq; 16692 16693 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 16694 unsigned ipsec_optlen = 0; 16695 16696 #endif 16697 int32_t idle, sendalot; 16698 int32_t sub_from_prr = 0; 16699 volatile int32_t sack_rxmit; 16700 struct rack_sendmap *rsm = NULL; 16701 int32_t tso, mtu; 16702 struct tcpopt to; 16703 int32_t slot = 0; 16704 int32_t sup_rack = 0; 16705 uint32_t cts, ms_cts, delayed, early; 16706 uint16_t add_flag = RACK_SENT_SP; 16707 /* The doing_tlp flag will be set by the actual rack_timeout_tlp() */ 16708 uint8_t hpts_calling, doing_tlp = 0; 16709 uint32_t cwnd_to_use, pace_max_seg; 16710 int32_t do_a_prefetch = 0; 16711 int32_t prefetch_rsm = 0; 16712 int32_t orig_len = 0; 16713 struct timeval tv; 16714 int32_t prefetch_so_done = 0; 16715 struct tcp_log_buffer *lgb; 16716 struct inpcb *inp; 16717 struct sockbuf *sb; 16718 uint64_t ts_val = 0; 16719 #ifdef TCP_ACCOUNTING 16720 uint64_t crtsc; 16721 #endif 16722 #ifdef INET6 16723 struct ip6_hdr *ip6 = NULL; 16724 int32_t isipv6; 16725 #endif 16726 bool hw_tls = false; 16727 16728 /* setup and take the cache hits here */ 16729 rack = (struct tcp_rack *)tp->t_fb_ptr; 16730 #ifdef TCP_ACCOUNTING 16731 sched_pin(); 16732 ts_val = get_cyclecount(); 16733 #endif 16734 hpts_calling = rack->rc_inp->inp_hpts_calls; 16735 NET_EPOCH_ASSERT(); 16736 INP_WLOCK_ASSERT(rack->rc_inp); 16737 #ifdef TCP_OFFLOAD 16738 if (tp->t_flags & TF_TOE) { 16739 #ifdef TCP_ACCOUNTING 16740 sched_unpin(); 16741 #endif 16742 return (tcp_offload_output(tp)); 16743 } 16744 #endif 16745 /* 16746 * For TFO connections in SYN_RECEIVED, only allow the initial 16747 * SYN|ACK and those sent by the retransmit timer. 16748 */ 16749 if (IS_FASTOPEN(tp->t_flags) && 16750 (tp->t_state == TCPS_SYN_RECEIVED) && 16751 SEQ_GT(tp->snd_max, tp->snd_una) && /* initial SYN|ACK sent */ 16752 (rack->r_ctl.rc_resend == NULL)) { /* not a retransmit */ 16753 #ifdef TCP_ACCOUNTING 16754 sched_unpin(); 16755 #endif 16756 return (0); 16757 } 16758 #ifdef INET6 16759 if (rack->r_state) { 16760 /* Use the cache line loaded if possible */ 16761 isipv6 = rack->r_is_v6; 16762 } else { 16763 isipv6 = (rack->rc_inp->inp_vflag & INP_IPV6) != 0; 16764 } 16765 #endif 16766 early = 0; 16767 cts = tcp_get_usecs(&tv); 16768 ms_cts = tcp_tv_to_mssectick(&tv); 16769 if (((rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT) == 0) && 16770 tcp_in_hpts(rack->rc_inp)) { 16771 /* 16772 * We are on the hpts for some timer but not hptsi output. 16773 * Remove from the hpts unconditionally. 16774 */ 16775 rack_timer_cancel(tp, rack, cts, __LINE__); 16776 } 16777 /* Are we pacing and late? */ 16778 if ((rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT) && 16779 TSTMP_GEQ(cts, rack->r_ctl.rc_last_output_to)) { 16780 /* We are delayed */ 16781 delayed = cts - rack->r_ctl.rc_last_output_to; 16782 } else { 16783 delayed = 0; 16784 } 16785 /* Do the timers, which may override the pacer */ 16786 if (rack->r_ctl.rc_hpts_flags & PACE_TMR_MASK) { 16787 int retval; 16788 16789 retval = rack_process_timers(tp, rack, cts, hpts_calling, 16790 &doing_tlp); 16791 if (retval != 0) { 16792 counter_u64_add(rack_out_size[TCP_MSS_ACCT_ATIMER], 1); 16793 #ifdef TCP_ACCOUNTING 16794 sched_unpin(); 16795 #endif 16796 /* 16797 * If timers want tcp_drop(), then pass error out, 16798 * otherwise suppress it. 16799 */ 16800 return (retval < 0 ? retval : 0); 16801 } 16802 } 16803 if (rack->rc_in_persist) { 16804 if (tcp_in_hpts(rack->rc_inp) == 0) { 16805 /* Timer is not running */ 16806 rack_start_hpts_timer(rack, tp, cts, 0, 0, 0); 16807 } 16808 #ifdef TCP_ACCOUNTING 16809 sched_unpin(); 16810 #endif 16811 return (0); 16812 } 16813 if ((rack->rc_ack_required == 1) && 16814 (rack->r_timer_override == 0)){ 16815 /* A timeout occurred and no ack has arrived */ 16816 if (tcp_in_hpts(rack->rc_inp) == 0) { 16817 /* Timer is not running */ 16818 rack_start_hpts_timer(rack, tp, cts, 0, 0, 0); 16819 } 16820 #ifdef TCP_ACCOUNTING 16821 sched_unpin(); 16822 #endif 16823 return (0); 16824 } 16825 if ((rack->r_timer_override) || 16826 (rack->rc_ack_can_sendout_data) || 16827 (delayed) || 16828 (tp->t_state < TCPS_ESTABLISHED)) { 16829 rack->rc_ack_can_sendout_data = 0; 16830 if (tcp_in_hpts(rack->rc_inp)) 16831 tcp_hpts_remove(rack->rc_inp); 16832 } else if (tcp_in_hpts(rack->rc_inp)) { 16833 /* 16834 * On the hpts you can't pass even if ACKNOW is on, we will 16835 * when the hpts fires. 16836 */ 16837 #ifdef TCP_ACCOUNTING 16838 crtsc = get_cyclecount(); 16839 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 16840 tp->tcp_proc_time[SND_BLOCKED] += (crtsc - ts_val); 16841 } 16842 counter_u64_add(tcp_proc_time[SND_BLOCKED], (crtsc - ts_val)); 16843 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 16844 tp->tcp_cnt_counters[SND_BLOCKED]++; 16845 } 16846 counter_u64_add(tcp_cnt_counters[SND_BLOCKED], 1); 16847 sched_unpin(); 16848 #endif 16849 counter_u64_add(rack_out_size[TCP_MSS_ACCT_INPACE], 1); 16850 return (0); 16851 } 16852 rack->rc_inp->inp_hpts_calls = 0; 16853 /* Finish out both pacing early and late accounting */ 16854 if ((rack->r_ctl.rc_hpts_flags & PACE_PKT_OUTPUT) && 16855 TSTMP_GT(rack->r_ctl.rc_last_output_to, cts)) { 16856 early = rack->r_ctl.rc_last_output_to - cts; 16857 } else 16858 early = 0; 16859 if (delayed) { 16860 rack->r_ctl.rc_agg_delayed += delayed; 16861 rack->r_late = 1; 16862 } else if (early) { 16863 rack->r_ctl.rc_agg_early += early; 16864 rack->r_early = 1; 16865 } 16866 /* Now that early/late accounting is done turn off the flag */ 16867 rack->r_ctl.rc_hpts_flags &= ~PACE_PKT_OUTPUT; 16868 rack->r_wanted_output = 0; 16869 rack->r_timer_override = 0; 16870 if ((tp->t_state != rack->r_state) && 16871 TCPS_HAVEESTABLISHED(tp->t_state)) { 16872 rack_set_state(tp, rack); 16873 } 16874 if ((rack->r_fast_output) && 16875 (doing_tlp == 0) && 16876 (tp->rcv_numsacks == 0)) { 16877 int ret; 16878 16879 error = 0; 16880 ret = rack_fast_output(tp, rack, ts_val, cts, ms_cts, &tv, tot_len_this_send, &error); 16881 if (ret >= 0) 16882 return(ret); 16883 else if (error) { 16884 inp = rack->rc_inp; 16885 so = inp->inp_socket; 16886 sb = &so->so_snd; 16887 goto nomore; 16888 } 16889 } 16890 inp = rack->rc_inp; 16891 /* 16892 * For TFO connections in SYN_SENT or SYN_RECEIVED, 16893 * only allow the initial SYN or SYN|ACK and those sent 16894 * by the retransmit timer. 16895 */ 16896 if (IS_FASTOPEN(tp->t_flags) && 16897 ((tp->t_state == TCPS_SYN_RECEIVED) || 16898 (tp->t_state == TCPS_SYN_SENT)) && 16899 SEQ_GT(tp->snd_max, tp->snd_una) && /* initial SYN or SYN|ACK sent */ 16900 (tp->t_rxtshift == 0)) { /* not a retransmit */ 16901 cwnd_to_use = rack->r_ctl.cwnd_to_use = tp->snd_cwnd; 16902 so = inp->inp_socket; 16903 sb = &so->so_snd; 16904 goto just_return_nolock; 16905 } 16906 /* 16907 * Determine length of data that should be transmitted, and flags 16908 * that will be used. If there is some data or critical controls 16909 * (SYN, RST) to send, then transmit; otherwise, investigate 16910 * further. 16911 */ 16912 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una); 16913 if (tp->t_idle_reduce) { 16914 if (idle && (TICKS_2_USEC(ticks - tp->t_rcvtime) >= tp->t_rxtcur)) 16915 rack_cc_after_idle(rack, tp); 16916 } 16917 tp->t_flags &= ~TF_LASTIDLE; 16918 if (idle) { 16919 if (tp->t_flags & TF_MORETOCOME) { 16920 tp->t_flags |= TF_LASTIDLE; 16921 idle = 0; 16922 } 16923 } 16924 if ((tp->snd_una == tp->snd_max) && 16925 rack->r_ctl.rc_went_idle_time && 16926 TSTMP_GT(cts, rack->r_ctl.rc_went_idle_time)) { 16927 idle = cts - rack->r_ctl.rc_went_idle_time; 16928 if (idle > rack_min_probertt_hold) { 16929 /* Count as a probe rtt */ 16930 if (rack->in_probe_rtt == 0) { 16931 rack->r_ctl.rc_lower_rtt_us_cts = cts; 16932 rack->r_ctl.rc_time_probertt_entered = rack->r_ctl.rc_lower_rtt_us_cts; 16933 rack->r_ctl.rc_time_probertt_starts = rack->r_ctl.rc_lower_rtt_us_cts; 16934 rack->r_ctl.rc_time_of_last_probertt = rack->r_ctl.rc_lower_rtt_us_cts; 16935 } else { 16936 rack_exit_probertt(rack, cts); 16937 } 16938 } 16939 idle = 0; 16940 } 16941 if (rack_use_fsb && (rack->r_fsb_inited == 0) && (rack->r_state != TCPS_CLOSED)) 16942 rack_init_fsb_block(tp, rack); 16943 again: 16944 /* 16945 * If we've recently taken a timeout, snd_max will be greater than 16946 * snd_nxt. There may be SACK information that allows us to avoid 16947 * resending already delivered data. Adjust snd_nxt accordingly. 16948 */ 16949 sendalot = 0; 16950 cts = tcp_get_usecs(&tv); 16951 ms_cts = tcp_tv_to_mssectick(&tv); 16952 tso = 0; 16953 mtu = 0; 16954 segsiz = min(ctf_fixed_maxseg(tp), rack->r_ctl.rc_pace_min_segs); 16955 minseg = segsiz; 16956 if (rack->r_ctl.rc_pace_max_segs == 0) 16957 pace_max_seg = rack->rc_user_set_max_segs * segsiz; 16958 else 16959 pace_max_seg = rack->r_ctl.rc_pace_max_segs; 16960 sb_offset = tp->snd_max - tp->snd_una; 16961 cwnd_to_use = rack->r_ctl.cwnd_to_use = tp->snd_cwnd; 16962 flags = tcp_outflags[tp->t_state]; 16963 while (rack->rc_free_cnt < rack_free_cache) { 16964 rsm = rack_alloc(rack); 16965 if (rsm == NULL) { 16966 if (inp->inp_hpts_calls) 16967 /* Retry in a ms */ 16968 slot = (1 * HPTS_USEC_IN_MSEC); 16969 so = inp->inp_socket; 16970 sb = &so->so_snd; 16971 goto just_return_nolock; 16972 } 16973 TAILQ_INSERT_TAIL(&rack->r_ctl.rc_free, rsm, r_tnext); 16974 rack->rc_free_cnt++; 16975 rsm = NULL; 16976 } 16977 if (inp->inp_hpts_calls) 16978 inp->inp_hpts_calls = 0; 16979 sack_rxmit = 0; 16980 len = 0; 16981 rsm = NULL; 16982 if (flags & TH_RST) { 16983 SOCKBUF_LOCK(&inp->inp_socket->so_snd); 16984 so = inp->inp_socket; 16985 sb = &so->so_snd; 16986 goto send; 16987 } 16988 if (rack->r_ctl.rc_resend) { 16989 /* Retransmit timer */ 16990 rsm = rack->r_ctl.rc_resend; 16991 rack->r_ctl.rc_resend = NULL; 16992 len = rsm->r_end - rsm->r_start; 16993 sack_rxmit = 1; 16994 sendalot = 0; 16995 KASSERT(SEQ_LEQ(tp->snd_una, rsm->r_start), 16996 ("%s:%d: r.start:%u < SND.UNA:%u; tp:%p, rack:%p, rsm:%p", 16997 __func__, __LINE__, 16998 rsm->r_start, tp->snd_una, tp, rack, rsm)); 16999 sb_offset = rsm->r_start - tp->snd_una; 17000 if (len >= segsiz) 17001 len = segsiz; 17002 } else if (rack->r_collapse_point_valid && 17003 ((rsm = rack_check_collapsed(rack, cts)) != NULL)) { 17004 /* 17005 * If an RSM is returned then enough time has passed 17006 * for us to retransmit it. Move up the collapse point, 17007 * since this rsm has its chance to retransmit now. 17008 */ 17009 rack_trace_point(rack, RACK_TP_COLLAPSED_RXT); 17010 rack->r_ctl.last_collapse_point = rsm->r_end; 17011 /* Are we done? */ 17012 if (SEQ_GEQ(rack->r_ctl.last_collapse_point, 17013 rack->r_ctl.high_collapse_point)) 17014 rack->r_collapse_point_valid = 0; 17015 sack_rxmit = 1; 17016 /* We are not doing a TLP */ 17017 doing_tlp = 0; 17018 len = rsm->r_end - rsm->r_start; 17019 sb_offset = rsm->r_start - tp->snd_una; 17020 sendalot = 0; 17021 if ((rack->full_size_rxt == 0) && 17022 (rack->shape_rxt_to_pacing_min == 0) && 17023 (len >= segsiz)) 17024 len = segsiz; 17025 } else if ((rsm = tcp_rack_output(tp, rack, cts)) != NULL) { 17026 /* We have a retransmit that takes precedence */ 17027 if ((!IN_FASTRECOVERY(tp->t_flags)) && 17028 ((rsm->r_flags & RACK_MUST_RXT) == 0) && 17029 ((tp->t_flags & TF_WASFRECOVERY) == 0)) { 17030 /* Enter recovery if not induced by a time-out */ 17031 rack_cong_signal(tp, CC_NDUPACK, tp->snd_una, __LINE__); 17032 } 17033 #ifdef INVARIANTS 17034 if (SEQ_LT(rsm->r_start, tp->snd_una)) { 17035 panic("Huh, tp:%p rack:%p rsm:%p start:%u < snd_una:%u\n", 17036 tp, rack, rsm, rsm->r_start, tp->snd_una); 17037 } 17038 #endif 17039 len = rsm->r_end - rsm->r_start; 17040 KASSERT(SEQ_LEQ(tp->snd_una, rsm->r_start), 17041 ("%s:%d: r.start:%u < SND.UNA:%u; tp:%p, rack:%p, rsm:%p", 17042 __func__, __LINE__, 17043 rsm->r_start, tp->snd_una, tp, rack, rsm)); 17044 sb_offset = rsm->r_start - tp->snd_una; 17045 sendalot = 0; 17046 if (len >= segsiz) 17047 len = segsiz; 17048 if (len > 0) { 17049 sack_rxmit = 1; 17050 KMOD_TCPSTAT_INC(tcps_sack_rexmits); 17051 KMOD_TCPSTAT_ADD(tcps_sack_rexmit_bytes, 17052 min(len, segsiz)); 17053 } 17054 } else if (rack->r_ctl.rc_tlpsend) { 17055 /* Tail loss probe */ 17056 long cwin; 17057 long tlen; 17058 17059 /* 17060 * Check if we can do a TLP with a RACK'd packet 17061 * this can happen if we are not doing the rack 17062 * cheat and we skipped to a TLP and it 17063 * went off. 17064 */ 17065 rsm = rack->r_ctl.rc_tlpsend; 17066 /* We are doing a TLP make sure the flag is preent */ 17067 rsm->r_flags |= RACK_TLP; 17068 rack->r_ctl.rc_tlpsend = NULL; 17069 sack_rxmit = 1; 17070 tlen = rsm->r_end - rsm->r_start; 17071 if (tlen > segsiz) 17072 tlen = segsiz; 17073 KASSERT(SEQ_LEQ(tp->snd_una, rsm->r_start), 17074 ("%s:%d: r.start:%u < SND.UNA:%u; tp:%p, rack:%p, rsm:%p", 17075 __func__, __LINE__, 17076 rsm->r_start, tp->snd_una, tp, rack, rsm)); 17077 sb_offset = rsm->r_start - tp->snd_una; 17078 cwin = min(tp->snd_wnd, tlen); 17079 len = cwin; 17080 } 17081 if (rack->r_must_retran && 17082 (doing_tlp == 0) && 17083 (SEQ_GT(tp->snd_max, tp->snd_una)) && 17084 (rsm == NULL)) { 17085 /* 17086 * There are two different ways that we 17087 * can get into this block: 17088 * a) This is a non-sack connection, we had a time-out 17089 * and thus r_must_retran was set and everything 17090 * left outstanding as been marked for retransmit. 17091 * b) The MTU of the path shrank, so that everything 17092 * was marked to be retransmitted with the smaller 17093 * mtu and r_must_retran was set. 17094 * 17095 * This means that we expect the sendmap (outstanding) 17096 * to all be marked must. We can use the tmap to 17097 * look at them. 17098 * 17099 */ 17100 int sendwin, flight; 17101 17102 sendwin = min(tp->snd_wnd, tp->snd_cwnd); 17103 flight = ctf_flight_size(tp, rack->r_ctl.rc_out_at_rto); 17104 if (flight >= sendwin) { 17105 /* 17106 * We can't send yet. 17107 */ 17108 so = inp->inp_socket; 17109 sb = &so->so_snd; 17110 goto just_return_nolock; 17111 } 17112 /* 17113 * This is the case a/b mentioned above. All 17114 * outstanding/not-acked should be marked. 17115 * We can use the tmap to find them. 17116 */ 17117 rsm = TAILQ_FIRST(&rack->r_ctl.rc_tmap); 17118 if (rsm == NULL) { 17119 /* TSNH */ 17120 rack->r_must_retran = 0; 17121 rack->r_ctl.rc_out_at_rto = 0; 17122 so = inp->inp_socket; 17123 sb = &so->so_snd; 17124 goto just_return_nolock; 17125 } 17126 if ((rsm->r_flags & RACK_MUST_RXT) == 0) { 17127 /* 17128 * The first one does not have the flag, did we collapse 17129 * further up in our list? 17130 */ 17131 rack->r_must_retran = 0; 17132 rack->r_ctl.rc_out_at_rto = 0; 17133 rsm = NULL; 17134 sack_rxmit = 0; 17135 } else { 17136 sack_rxmit = 1; 17137 len = rsm->r_end - rsm->r_start; 17138 sb_offset = rsm->r_start - tp->snd_una; 17139 sendalot = 0; 17140 if ((rack->full_size_rxt == 0) && 17141 (rack->shape_rxt_to_pacing_min == 0) && 17142 (len >= segsiz)) 17143 len = segsiz; 17144 /* 17145 * Delay removing the flag RACK_MUST_RXT so 17146 * that the fastpath for retransmit will 17147 * work with this rsm. 17148 */ 17149 } 17150 } 17151 /* 17152 * Enforce a connection sendmap count limit if set 17153 * as long as we are not retransmiting. 17154 */ 17155 if ((rsm == NULL) && 17156 (rack->do_detection == 0) && 17157 (V_tcp_map_entries_limit > 0) && 17158 (rack->r_ctl.rc_num_maps_alloced >= V_tcp_map_entries_limit)) { 17159 counter_u64_add(rack_to_alloc_limited, 1); 17160 if (!rack->alloc_limit_reported) { 17161 rack->alloc_limit_reported = 1; 17162 counter_u64_add(rack_alloc_limited_conns, 1); 17163 } 17164 so = inp->inp_socket; 17165 sb = &so->so_snd; 17166 goto just_return_nolock; 17167 } 17168 if (rsm && (rsm->r_flags & RACK_HAS_FIN)) { 17169 /* we are retransmitting the fin */ 17170 len--; 17171 if (len) { 17172 /* 17173 * When retransmitting data do *not* include the 17174 * FIN. This could happen from a TLP probe. 17175 */ 17176 flags &= ~TH_FIN; 17177 } 17178 } 17179 if (rsm && rack->r_fsb_inited && rack_use_rsm_rfo && 17180 ((rsm->r_flags & RACK_HAS_FIN) == 0)) { 17181 int ret; 17182 17183 ret = rack_fast_rsm_output(tp, rack, rsm, ts_val, cts, ms_cts, &tv, len, doing_tlp); 17184 if (ret == 0) 17185 return (0); 17186 } 17187 so = inp->inp_socket; 17188 sb = &so->so_snd; 17189 if (do_a_prefetch == 0) { 17190 kern_prefetch(sb, &do_a_prefetch); 17191 do_a_prefetch = 1; 17192 } 17193 #ifdef NETFLIX_SHARED_CWND 17194 if ((tp->t_flags2 & TF2_TCP_SCWND_ALLOWED) && 17195 rack->rack_enable_scwnd) { 17196 /* We are doing cwnd sharing */ 17197 if (rack->gp_ready && 17198 (rack->rack_attempted_scwnd == 0) && 17199 (rack->r_ctl.rc_scw == NULL) && 17200 tp->t_lib) { 17201 /* The pcbid is in, lets make an attempt */ 17202 counter_u64_add(rack_try_scwnd, 1); 17203 rack->rack_attempted_scwnd = 1; 17204 rack->r_ctl.rc_scw = tcp_shared_cwnd_alloc(tp, 17205 &rack->r_ctl.rc_scw_index, 17206 segsiz); 17207 } 17208 if (rack->r_ctl.rc_scw && 17209 (rack->rack_scwnd_is_idle == 1) && 17210 sbavail(&so->so_snd)) { 17211 /* we are no longer out of data */ 17212 tcp_shared_cwnd_active(rack->r_ctl.rc_scw, rack->r_ctl.rc_scw_index); 17213 rack->rack_scwnd_is_idle = 0; 17214 } 17215 if (rack->r_ctl.rc_scw) { 17216 /* First lets update and get the cwnd */ 17217 rack->r_ctl.cwnd_to_use = cwnd_to_use = tcp_shared_cwnd_update(rack->r_ctl.rc_scw, 17218 rack->r_ctl.rc_scw_index, 17219 tp->snd_cwnd, tp->snd_wnd, segsiz); 17220 } 17221 } 17222 #endif 17223 /* 17224 * Get standard flags, and add SYN or FIN if requested by 'hidden' 17225 * state flags. 17226 */ 17227 if (tp->t_flags & TF_NEEDFIN) 17228 flags |= TH_FIN; 17229 if (tp->t_flags & TF_NEEDSYN) 17230 flags |= TH_SYN; 17231 if ((sack_rxmit == 0) && (prefetch_rsm == 0)) { 17232 void *end_rsm; 17233 end_rsm = TAILQ_LAST_FAST(&rack->r_ctl.rc_tmap, rack_sendmap, r_tnext); 17234 if (end_rsm) 17235 kern_prefetch(end_rsm, &prefetch_rsm); 17236 prefetch_rsm = 1; 17237 } 17238 SOCKBUF_LOCK(sb); 17239 /* 17240 * If snd_nxt == snd_max and we have transmitted a FIN, the 17241 * sb_offset will be > 0 even if so_snd.sb_cc is 0, resulting in a 17242 * negative length. This can also occur when TCP opens up its 17243 * congestion window while receiving additional duplicate acks after 17244 * fast-retransmit because TCP will reset snd_nxt to snd_max after 17245 * the fast-retransmit. 17246 * 17247 * In the normal retransmit-FIN-only case, however, snd_nxt will be 17248 * set to snd_una, the sb_offset will be 0, and the length may wind 17249 * up 0. 17250 * 17251 * If sack_rxmit is true we are retransmitting from the scoreboard 17252 * in which case len is already set. 17253 */ 17254 if ((sack_rxmit == 0) && 17255 (TCPS_HAVEESTABLISHED(tp->t_state) || IS_FASTOPEN(tp->t_flags))) { 17256 uint32_t avail; 17257 17258 avail = sbavail(sb); 17259 if (SEQ_GT(tp->snd_nxt, tp->snd_una) && avail) 17260 sb_offset = tp->snd_nxt - tp->snd_una; 17261 else 17262 sb_offset = 0; 17263 if ((IN_FASTRECOVERY(tp->t_flags) == 0) || rack->rack_no_prr) { 17264 if (rack->r_ctl.rc_tlp_new_data) { 17265 /* TLP is forcing out new data */ 17266 if (rack->r_ctl.rc_tlp_new_data > (uint32_t) (avail - sb_offset)) { 17267 rack->r_ctl.rc_tlp_new_data = (uint32_t) (avail - sb_offset); 17268 } 17269 if ((rack->r_ctl.rc_tlp_new_data + sb_offset) > tp->snd_wnd) { 17270 if (tp->snd_wnd > sb_offset) 17271 len = tp->snd_wnd - sb_offset; 17272 else 17273 len = 0; 17274 } else { 17275 len = rack->r_ctl.rc_tlp_new_data; 17276 } 17277 rack->r_ctl.rc_tlp_new_data = 0; 17278 } else { 17279 len = rack_what_can_we_send(tp, rack, cwnd_to_use, avail, sb_offset); 17280 } 17281 if ((rack->r_ctl.crte == NULL) && IN_FASTRECOVERY(tp->t_flags) && (len > segsiz)) { 17282 /* 17283 * For prr=off, we need to send only 1 MSS 17284 * at a time. We do this because another sack could 17285 * be arriving that causes us to send retransmits and 17286 * we don't want to be on a long pace due to a larger send 17287 * that keeps us from sending out the retransmit. 17288 */ 17289 len = segsiz; 17290 } 17291 } else { 17292 uint32_t outstanding; 17293 /* 17294 * We are inside of a Fast recovery episode, this 17295 * is caused by a SACK or 3 dup acks. At this point 17296 * we have sent all the retransmissions and we rely 17297 * on PRR to dictate what we will send in the form of 17298 * new data. 17299 */ 17300 17301 outstanding = tp->snd_max - tp->snd_una; 17302 if ((rack->r_ctl.rc_prr_sndcnt + outstanding) > tp->snd_wnd) { 17303 if (tp->snd_wnd > outstanding) { 17304 len = tp->snd_wnd - outstanding; 17305 /* Check to see if we have the data */ 17306 if ((sb_offset + len) > avail) { 17307 /* It does not all fit */ 17308 if (avail > sb_offset) 17309 len = avail - sb_offset; 17310 else 17311 len = 0; 17312 } 17313 } else { 17314 len = 0; 17315 } 17316 } else if (avail > sb_offset) { 17317 len = avail - sb_offset; 17318 } else { 17319 len = 0; 17320 } 17321 if (len > 0) { 17322 if (len > rack->r_ctl.rc_prr_sndcnt) { 17323 len = rack->r_ctl.rc_prr_sndcnt; 17324 } 17325 if (len > 0) { 17326 sub_from_prr = 1; 17327 } 17328 } 17329 if (len > segsiz) { 17330 /* 17331 * We should never send more than a MSS when 17332 * retransmitting or sending new data in prr 17333 * mode unless the override flag is on. Most 17334 * likely the PRR algorithm is not going to 17335 * let us send a lot as well :-) 17336 */ 17337 if (rack->r_ctl.rc_prr_sendalot == 0) { 17338 len = segsiz; 17339 } 17340 } else if (len < segsiz) { 17341 /* 17342 * Do we send any? The idea here is if the 17343 * send empty's the socket buffer we want to 17344 * do it. However if not then lets just wait 17345 * for our prr_sndcnt to get bigger. 17346 */ 17347 long leftinsb; 17348 17349 leftinsb = sbavail(sb) - sb_offset; 17350 if (leftinsb > len) { 17351 /* This send does not empty the sb */ 17352 len = 0; 17353 } 17354 } 17355 } 17356 } else if (!TCPS_HAVEESTABLISHED(tp->t_state)) { 17357 /* 17358 * If you have not established 17359 * and are not doing FAST OPEN 17360 * no data please. 17361 */ 17362 if ((sack_rxmit == 0) && 17363 (!IS_FASTOPEN(tp->t_flags))){ 17364 len = 0; 17365 sb_offset = 0; 17366 } 17367 } 17368 if (prefetch_so_done == 0) { 17369 kern_prefetch(so, &prefetch_so_done); 17370 prefetch_so_done = 1; 17371 } 17372 /* 17373 * Lop off SYN bit if it has already been sent. However, if this is 17374 * SYN-SENT state and if segment contains data and if we don't know 17375 * that foreign host supports TAO, suppress sending segment. 17376 */ 17377 if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una) && 17378 ((sack_rxmit == 0) && (tp->t_rxtshift == 0))) { 17379 /* 17380 * When sending additional segments following a TFO SYN|ACK, 17381 * do not include the SYN bit. 17382 */ 17383 if (IS_FASTOPEN(tp->t_flags) && 17384 (tp->t_state == TCPS_SYN_RECEIVED)) 17385 flags &= ~TH_SYN; 17386 } 17387 /* 17388 * Be careful not to send data and/or FIN on SYN segments. This 17389 * measure is needed to prevent interoperability problems with not 17390 * fully conformant TCP implementations. 17391 */ 17392 if ((flags & TH_SYN) && (tp->t_flags & TF_NOOPT)) { 17393 len = 0; 17394 flags &= ~TH_FIN; 17395 } 17396 /* 17397 * On TFO sockets, ensure no data is sent in the following cases: 17398 * 17399 * - When retransmitting SYN|ACK on a passively-created socket 17400 * 17401 * - When retransmitting SYN on an actively created socket 17402 * 17403 * - When sending a zero-length cookie (cookie request) on an 17404 * actively created socket 17405 * 17406 * - When the socket is in the CLOSED state (RST is being sent) 17407 */ 17408 if (IS_FASTOPEN(tp->t_flags) && 17409 (((flags & TH_SYN) && (tp->t_rxtshift > 0)) || 17410 ((tp->t_state == TCPS_SYN_SENT) && 17411 (tp->t_tfo_client_cookie_len == 0)) || 17412 (flags & TH_RST))) { 17413 sack_rxmit = 0; 17414 len = 0; 17415 } 17416 /* Without fast-open there should never be data sent on a SYN */ 17417 if ((flags & TH_SYN) && (!IS_FASTOPEN(tp->t_flags))) { 17418 tp->snd_nxt = tp->iss; 17419 len = 0; 17420 } 17421 if ((len > segsiz) && (tcp_dsack_block_exists(tp))) { 17422 /* We only send 1 MSS if we have a DSACK block */ 17423 add_flag |= RACK_SENT_W_DSACK; 17424 len = segsiz; 17425 } 17426 orig_len = len; 17427 if (len <= 0) { 17428 /* 17429 * If FIN has been sent but not acked, but we haven't been 17430 * called to retransmit, len will be < 0. Otherwise, window 17431 * shrank after we sent into it. If window shrank to 0, 17432 * cancel pending retransmit, pull snd_nxt back to (closed) 17433 * window, and set the persist timer if it isn't already 17434 * going. If the window didn't close completely, just wait 17435 * for an ACK. 17436 * 17437 * We also do a general check here to ensure that we will 17438 * set the persist timer when we have data to send, but a 17439 * 0-byte window. This makes sure the persist timer is set 17440 * even if the packet hits one of the "goto send" lines 17441 * below. 17442 */ 17443 len = 0; 17444 if ((tp->snd_wnd == 0) && 17445 (TCPS_HAVEESTABLISHED(tp->t_state)) && 17446 (tp->snd_una == tp->snd_max) && 17447 (sb_offset < (int)sbavail(sb))) { 17448 rack_enter_persist(tp, rack, cts); 17449 } 17450 } else if ((rsm == NULL) && 17451 (doing_tlp == 0) && 17452 (len < pace_max_seg)) { 17453 /* 17454 * We are not sending a maximum sized segment for 17455 * some reason. Should we not send anything (think 17456 * sws or persists)? 17457 */ 17458 if ((tp->snd_wnd < min((rack->r_ctl.rc_high_rwnd/2), minseg)) && 17459 (TCPS_HAVEESTABLISHED(tp->t_state)) && 17460 (len < minseg) && 17461 (len < (int)(sbavail(sb) - sb_offset))) { 17462 /* 17463 * Here the rwnd is less than 17464 * the minimum pacing size, this is not a retransmit, 17465 * we are established and 17466 * the send is not the last in the socket buffer 17467 * we send nothing, and we may enter persists 17468 * if nothing is outstanding. 17469 */ 17470 len = 0; 17471 if (tp->snd_max == tp->snd_una) { 17472 /* 17473 * Nothing out we can 17474 * go into persists. 17475 */ 17476 rack_enter_persist(tp, rack, cts); 17477 } 17478 } else if ((cwnd_to_use >= max(minseg, (segsiz * 4))) && 17479 (ctf_flight_size(tp, rack->r_ctl.rc_sacked) > (2 * segsiz)) && 17480 (len < (int)(sbavail(sb) - sb_offset)) && 17481 (len < minseg)) { 17482 /* 17483 * Here we are not retransmitting, and 17484 * the cwnd is not so small that we could 17485 * not send at least a min size (rxt timer 17486 * not having gone off), We have 2 segments or 17487 * more already in flight, its not the tail end 17488 * of the socket buffer and the cwnd is blocking 17489 * us from sending out a minimum pacing segment size. 17490 * Lets not send anything. 17491 */ 17492 len = 0; 17493 } else if (((tp->snd_wnd - ctf_outstanding(tp)) < 17494 min((rack->r_ctl.rc_high_rwnd/2), minseg)) && 17495 (ctf_flight_size(tp, rack->r_ctl.rc_sacked) > (2 * segsiz)) && 17496 (len < (int)(sbavail(sb) - sb_offset)) && 17497 (TCPS_HAVEESTABLISHED(tp->t_state))) { 17498 /* 17499 * Here we have a send window but we have 17500 * filled it up and we can't send another pacing segment. 17501 * We also have in flight more than 2 segments 17502 * and we are not completing the sb i.e. we allow 17503 * the last bytes of the sb to go out even if 17504 * its not a full pacing segment. 17505 */ 17506 len = 0; 17507 } else if ((rack->r_ctl.crte != NULL) && 17508 (tp->snd_wnd >= (pace_max_seg * max(1, rack_hw_rwnd_factor))) && 17509 (cwnd_to_use >= (pace_max_seg + (4 * segsiz))) && 17510 (ctf_flight_size(tp, rack->r_ctl.rc_sacked) >= (2 * segsiz)) && 17511 (len < (int)(sbavail(sb) - sb_offset))) { 17512 /* 17513 * Here we are doing hardware pacing, this is not a TLP, 17514 * we are not sending a pace max segment size, there is rwnd 17515 * room to send at least N pace_max_seg, the cwnd is greater 17516 * than or equal to a full pacing segments plus 4 mss and we have 2 or 17517 * more segments in flight and its not the tail of the socket buffer. 17518 * 17519 * We don't want to send instead we need to get more ack's in to 17520 * allow us to send a full pacing segment. Normally, if we are pacing 17521 * about the right speed, we should have finished our pacing 17522 * send as most of the acks have come back if we are at the 17523 * right rate. This is a bit fuzzy since return path delay 17524 * can delay the acks, which is why we want to make sure we 17525 * have cwnd space to have a bit more than a max pace segments in flight. 17526 * 17527 * If we have not gotten our acks back we are pacing at too high a 17528 * rate delaying will not hurt and will bring our GP estimate down by 17529 * injecting the delay. If we don't do this we will send 17530 * 2 MSS out in response to the acks being clocked in which 17531 * defeats the point of hw-pacing (i.e. to help us get 17532 * larger TSO's out). 17533 */ 17534 len = 0; 17535 17536 } 17537 17538 } 17539 /* len will be >= 0 after this point. */ 17540 KASSERT(len >= 0, ("[%s:%d]: len < 0", __func__, __LINE__)); 17541 rack_sndbuf_autoscale(rack); 17542 /* 17543 * Decide if we can use TCP Segmentation Offloading (if supported by 17544 * hardware). 17545 * 17546 * TSO may only be used if we are in a pure bulk sending state. The 17547 * presence of TCP-MD5, SACK retransmits, SACK advertizements and IP 17548 * options prevent using TSO. With TSO the TCP header is the same 17549 * (except for the sequence number) for all generated packets. This 17550 * makes it impossible to transmit any options which vary per 17551 * generated segment or packet. 17552 * 17553 * IPv4 handling has a clear separation of ip options and ip header 17554 * flags while IPv6 combines both in in6p_outputopts. ip6_optlen() does 17555 * the right thing below to provide length of just ip options and thus 17556 * checking for ipoptlen is enough to decide if ip options are present. 17557 */ 17558 ipoptlen = 0; 17559 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 17560 /* 17561 * Pre-calculate here as we save another lookup into the darknesses 17562 * of IPsec that way and can actually decide if TSO is ok. 17563 */ 17564 #ifdef INET6 17565 if (isipv6 && IPSEC_ENABLED(ipv6)) 17566 ipsec_optlen = IPSEC_HDRSIZE(ipv6, tp->t_inpcb); 17567 #ifdef INET 17568 else 17569 #endif 17570 #endif /* INET6 */ 17571 #ifdef INET 17572 if (IPSEC_ENABLED(ipv4)) 17573 ipsec_optlen = IPSEC_HDRSIZE(ipv4, tp->t_inpcb); 17574 #endif /* INET */ 17575 #endif 17576 17577 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 17578 ipoptlen += ipsec_optlen; 17579 #endif 17580 if ((tp->t_flags & TF_TSO) && V_tcp_do_tso && len > segsiz && 17581 (tp->t_port == 0) && 17582 ((tp->t_flags & TF_SIGNATURE) == 0) && 17583 tp->rcv_numsacks == 0 && sack_rxmit == 0 && 17584 ipoptlen == 0) 17585 tso = 1; 17586 { 17587 uint32_t outstanding __unused; 17588 17589 outstanding = tp->snd_max - tp->snd_una; 17590 if (tp->t_flags & TF_SENTFIN) { 17591 /* 17592 * If we sent a fin, snd_max is 1 higher than 17593 * snd_una 17594 */ 17595 outstanding--; 17596 } 17597 if (sack_rxmit) { 17598 if ((rsm->r_flags & RACK_HAS_FIN) == 0) 17599 flags &= ~TH_FIN; 17600 } else { 17601 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + 17602 sbused(sb))) 17603 flags &= ~TH_FIN; 17604 } 17605 } 17606 recwin = lmin(lmax(sbspace(&so->so_rcv), 0), 17607 (long)TCP_MAXWIN << tp->rcv_scale); 17608 17609 /* 17610 * Sender silly window avoidance. We transmit under the following 17611 * conditions when len is non-zero: 17612 * 17613 * - We have a full segment (or more with TSO) - This is the last 17614 * buffer in a write()/send() and we are either idle or running 17615 * NODELAY - we've timed out (e.g. persist timer) - we have more 17616 * then 1/2 the maximum send window's worth of data (receiver may be 17617 * limited the window size) - we need to retransmit 17618 */ 17619 if (len) { 17620 if (len >= segsiz) { 17621 goto send; 17622 } 17623 /* 17624 * NOTE! on localhost connections an 'ack' from the remote 17625 * end may occur synchronously with the output and cause us 17626 * to flush a buffer queued with moretocome. XXX 17627 * 17628 */ 17629 if (!(tp->t_flags & TF_MORETOCOME) && /* normal case */ 17630 (idle || (tp->t_flags & TF_NODELAY)) && 17631 ((uint32_t)len + (uint32_t)sb_offset >= sbavail(sb)) && 17632 (tp->t_flags & TF_NOPUSH) == 0) { 17633 pass = 2; 17634 goto send; 17635 } 17636 if ((tp->snd_una == tp->snd_max) && len) { /* Nothing outstanding */ 17637 pass = 22; 17638 goto send; 17639 } 17640 if (len >= tp->max_sndwnd / 2 && tp->max_sndwnd > 0) { 17641 pass = 4; 17642 goto send; 17643 } 17644 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) { /* retransmit case */ 17645 pass = 5; 17646 goto send; 17647 } 17648 if (sack_rxmit) { 17649 pass = 6; 17650 goto send; 17651 } 17652 if (((tp->snd_wnd - ctf_outstanding(tp)) < segsiz) && 17653 (ctf_outstanding(tp) < (segsiz * 2))) { 17654 /* 17655 * We have less than two MSS outstanding (delayed ack) 17656 * and our rwnd will not let us send a full sized 17657 * MSS. Lets go ahead and let this small segment 17658 * out because we want to try to have at least two 17659 * packets inflight to not be caught by delayed ack. 17660 */ 17661 pass = 12; 17662 goto send; 17663 } 17664 } 17665 /* 17666 * Sending of standalone window updates. 17667 * 17668 * Window updates are important when we close our window due to a 17669 * full socket buffer and are opening it again after the application 17670 * reads data from it. Once the window has opened again and the 17671 * remote end starts to send again the ACK clock takes over and 17672 * provides the most current window information. 17673 * 17674 * We must avoid the silly window syndrome whereas every read from 17675 * the receive buffer, no matter how small, causes a window update 17676 * to be sent. We also should avoid sending a flurry of window 17677 * updates when the socket buffer had queued a lot of data and the 17678 * application is doing small reads. 17679 * 17680 * Prevent a flurry of pointless window updates by only sending an 17681 * update when we can increase the advertized window by more than 17682 * 1/4th of the socket buffer capacity. When the buffer is getting 17683 * full or is very small be more aggressive and send an update 17684 * whenever we can increase by two mss sized segments. In all other 17685 * situations the ACK's to new incoming data will carry further 17686 * window increases. 17687 * 17688 * Don't send an independent window update if a delayed ACK is 17689 * pending (it will get piggy-backed on it) or the remote side 17690 * already has done a half-close and won't send more data. Skip 17691 * this if the connection is in T/TCP half-open state. 17692 */ 17693 if (recwin > 0 && !(tp->t_flags & TF_NEEDSYN) && 17694 !(tp->t_flags & TF_DELACK) && 17695 !TCPS_HAVERCVDFIN(tp->t_state)) { 17696 /* 17697 * "adv" is the amount we could increase the window, taking 17698 * into account that we are limited by TCP_MAXWIN << 17699 * tp->rcv_scale. 17700 */ 17701 int32_t adv; 17702 int oldwin; 17703 17704 adv = recwin; 17705 if (SEQ_GT(tp->rcv_adv, tp->rcv_nxt)) { 17706 oldwin = (tp->rcv_adv - tp->rcv_nxt); 17707 if (adv > oldwin) 17708 adv -= oldwin; 17709 else { 17710 /* We can't increase the window */ 17711 adv = 0; 17712 } 17713 } else 17714 oldwin = 0; 17715 17716 /* 17717 * If the new window size ends up being the same as or less 17718 * than the old size when it is scaled, then don't force 17719 * a window update. 17720 */ 17721 if (oldwin >> tp->rcv_scale >= (adv + oldwin) >> tp->rcv_scale) 17722 goto dontupdate; 17723 17724 if (adv >= (int32_t)(2 * segsiz) && 17725 (adv >= (int32_t)(so->so_rcv.sb_hiwat / 4) || 17726 recwin <= (int32_t)(so->so_rcv.sb_hiwat / 8) || 17727 so->so_rcv.sb_hiwat <= 8 * segsiz)) { 17728 pass = 7; 17729 goto send; 17730 } 17731 if (2 * adv >= (int32_t) so->so_rcv.sb_hiwat) { 17732 pass = 23; 17733 goto send; 17734 } 17735 } 17736 dontupdate: 17737 17738 /* 17739 * Send if we owe the peer an ACK, RST, SYN, or urgent data. ACKNOW 17740 * is also a catch-all for the retransmit timer timeout case. 17741 */ 17742 if (tp->t_flags & TF_ACKNOW) { 17743 pass = 8; 17744 goto send; 17745 } 17746 if (((flags & TH_SYN) && (tp->t_flags & TF_NEEDSYN) == 0)) { 17747 pass = 9; 17748 goto send; 17749 } 17750 /* 17751 * If our state indicates that FIN should be sent and we have not 17752 * yet done so, then we need to send. 17753 */ 17754 if ((flags & TH_FIN) && 17755 (tp->snd_nxt == tp->snd_una)) { 17756 pass = 11; 17757 goto send; 17758 } 17759 /* 17760 * No reason to send a segment, just return. 17761 */ 17762 just_return: 17763 SOCKBUF_UNLOCK(sb); 17764 just_return_nolock: 17765 { 17766 int app_limited = CTF_JR_SENT_DATA; 17767 17768 if (tot_len_this_send > 0) { 17769 /* Make sure snd_nxt is up to max */ 17770 rack->r_ctl.fsb.recwin = recwin; 17771 slot = rack_get_pacing_delay(rack, tp, tot_len_this_send, NULL, segsiz); 17772 if ((error == 0) && 17773 rack_use_rfo && 17774 ((flags & (TH_SYN|TH_FIN)) == 0) && 17775 (ipoptlen == 0) && 17776 (tp->snd_nxt == tp->snd_max) && 17777 (tp->rcv_numsacks == 0) && 17778 rack->r_fsb_inited && 17779 TCPS_HAVEESTABLISHED(tp->t_state) && 17780 (rack->r_must_retran == 0) && 17781 ((tp->t_flags & TF_NEEDFIN) == 0) && 17782 (len > 0) && (orig_len > 0) && 17783 (orig_len > len) && 17784 ((orig_len - len) >= segsiz) && 17785 ((optlen == 0) || 17786 ((optlen == TCPOLEN_TSTAMP_APPA) && (to.to_flags & TOF_TS)))) { 17787 /* We can send at least one more MSS using our fsb */ 17788 17789 rack->r_fast_output = 1; 17790 rack->r_ctl.fsb.m = sbsndmbuf(sb, (tp->snd_max - tp->snd_una), &rack->r_ctl.fsb.off); 17791 rack->r_ctl.fsb.o_m_len = rack->r_ctl.fsb.m->m_len; 17792 rack->r_ctl.fsb.tcp_flags = flags; 17793 rack->r_ctl.fsb.left_to_send = orig_len - len; 17794 if (hw_tls) 17795 rack->r_ctl.fsb.hw_tls = 1; 17796 else 17797 rack->r_ctl.fsb.hw_tls = 0; 17798 KASSERT((rack->r_ctl.fsb.left_to_send <= (sbavail(sb) - (tp->snd_max - tp->snd_una))), 17799 ("rack:%p left_to_send:%u sbavail:%u out:%u", 17800 rack, rack->r_ctl.fsb.left_to_send, sbavail(sb), 17801 (tp->snd_max - tp->snd_una))); 17802 if (rack->r_ctl.fsb.left_to_send < segsiz) 17803 rack->r_fast_output = 0; 17804 else { 17805 if (rack->r_ctl.fsb.left_to_send == (sbavail(sb) - (tp->snd_max - tp->snd_una))) 17806 rack->r_ctl.fsb.rfo_apply_push = 1; 17807 else 17808 rack->r_ctl.fsb.rfo_apply_push = 0; 17809 } 17810 } else 17811 rack->r_fast_output = 0; 17812 17813 17814 rack_log_fsb(rack, tp, so, flags, 17815 ipoptlen, orig_len, len, 0, 17816 1, optlen, __LINE__, 1); 17817 if (SEQ_GT(tp->snd_max, tp->snd_nxt)) 17818 tp->snd_nxt = tp->snd_max; 17819 } else { 17820 int end_window = 0; 17821 uint32_t seq = tp->gput_ack; 17822 17823 rsm = RB_MAX(rack_rb_tree_head, &rack->r_ctl.rc_mtree); 17824 if (rsm) { 17825 /* 17826 * Mark the last sent that we just-returned (hinting 17827 * that delayed ack may play a role in any rtt measurement). 17828 */ 17829 rsm->r_just_ret = 1; 17830 } 17831 counter_u64_add(rack_out_size[TCP_MSS_ACCT_JUSTRET], 1); 17832 rack->r_ctl.rc_agg_delayed = 0; 17833 rack->r_early = 0; 17834 rack->r_late = 0; 17835 rack->r_ctl.rc_agg_early = 0; 17836 if ((ctf_outstanding(tp) + 17837 min(max(segsiz, (rack->r_ctl.rc_high_rwnd/2)), 17838 minseg)) >= tp->snd_wnd) { 17839 /* We are limited by the rwnd */ 17840 app_limited = CTF_JR_RWND_LIMITED; 17841 if (IN_FASTRECOVERY(tp->t_flags)) 17842 rack->r_ctl.rc_prr_sndcnt = 0; 17843 } else if (ctf_outstanding(tp) >= sbavail(sb)) { 17844 /* We are limited by whats available -- app limited */ 17845 app_limited = CTF_JR_APP_LIMITED; 17846 if (IN_FASTRECOVERY(tp->t_flags)) 17847 rack->r_ctl.rc_prr_sndcnt = 0; 17848 } else if ((idle == 0) && 17849 ((tp->t_flags & TF_NODELAY) == 0) && 17850 ((uint32_t)len + (uint32_t)sb_offset >= sbavail(sb)) && 17851 (len < segsiz)) { 17852 /* 17853 * No delay is not on and the 17854 * user is sending less than 1MSS. This 17855 * brings out SWS avoidance so we 17856 * don't send. Another app-limited case. 17857 */ 17858 app_limited = CTF_JR_APP_LIMITED; 17859 } else if (tp->t_flags & TF_NOPUSH) { 17860 /* 17861 * The user has requested no push of 17862 * the last segment and we are 17863 * at the last segment. Another app 17864 * limited case. 17865 */ 17866 app_limited = CTF_JR_APP_LIMITED; 17867 } else if ((ctf_outstanding(tp) + minseg) > cwnd_to_use) { 17868 /* Its the cwnd */ 17869 app_limited = CTF_JR_CWND_LIMITED; 17870 } else if (IN_FASTRECOVERY(tp->t_flags) && 17871 (rack->rack_no_prr == 0) && 17872 (rack->r_ctl.rc_prr_sndcnt < segsiz)) { 17873 app_limited = CTF_JR_PRR; 17874 } else { 17875 /* Now why here are we not sending? */ 17876 #ifdef NOW 17877 #ifdef INVARIANTS 17878 panic("rack:%p hit JR_ASSESSING case cwnd_to_use:%u?", rack, cwnd_to_use); 17879 #endif 17880 #endif 17881 app_limited = CTF_JR_ASSESSING; 17882 } 17883 /* 17884 * App limited in some fashion, for our pacing GP 17885 * measurements we don't want any gap (even cwnd). 17886 * Close down the measurement window. 17887 */ 17888 if (rack_cwnd_block_ends_measure && 17889 ((app_limited == CTF_JR_CWND_LIMITED) || 17890 (app_limited == CTF_JR_PRR))) { 17891 /* 17892 * The reason we are not sending is 17893 * the cwnd (or prr). We have been configured 17894 * to end the measurement window in 17895 * this case. 17896 */ 17897 end_window = 1; 17898 } else if (rack_rwnd_block_ends_measure && 17899 (app_limited == CTF_JR_RWND_LIMITED)) { 17900 /* 17901 * We are rwnd limited and have been 17902 * configured to end the measurement 17903 * window in this case. 17904 */ 17905 end_window = 1; 17906 } else if (app_limited == CTF_JR_APP_LIMITED) { 17907 /* 17908 * A true application limited period, we have 17909 * ran out of data. 17910 */ 17911 end_window = 1; 17912 } else if (app_limited == CTF_JR_ASSESSING) { 17913 /* 17914 * In the assessing case we hit the end of 17915 * the if/else and had no known reason 17916 * This will panic us under invariants.. 17917 * 17918 * If we get this out in logs we need to 17919 * investagate which reason we missed. 17920 */ 17921 end_window = 1; 17922 } 17923 if (end_window) { 17924 uint8_t log = 0; 17925 17926 /* Adjust the Gput measurement */ 17927 if ((tp->t_flags & TF_GPUTINPROG) && 17928 SEQ_GT(tp->gput_ack, tp->snd_max)) { 17929 tp->gput_ack = tp->snd_max; 17930 if ((tp->gput_ack - tp->gput_seq) < (MIN_GP_WIN * segsiz)) { 17931 /* 17932 * There is not enough to measure. 17933 */ 17934 tp->t_flags &= ~TF_GPUTINPROG; 17935 rack_log_pacing_delay_calc(rack, (tp->gput_ack - tp->gput_seq) /*flex2*/, 17936 rack->r_ctl.rc_gp_srtt /*flex1*/, 17937 tp->gput_seq, 17938 0, 0, 18, __LINE__, NULL, 0); 17939 } else 17940 log = 1; 17941 } 17942 /* Mark the last packet has app limited */ 17943 rsm = RB_MAX(rack_rb_tree_head, &rack->r_ctl.rc_mtree); 17944 if (rsm && ((rsm->r_flags & RACK_APP_LIMITED) == 0)) { 17945 if (rack->r_ctl.rc_app_limited_cnt == 0) 17946 rack->r_ctl.rc_end_appl = rack->r_ctl.rc_first_appl = rsm; 17947 else { 17948 /* 17949 * Go out to the end app limited and mark 17950 * this new one as next and move the end_appl up 17951 * to this guy. 17952 */ 17953 if (rack->r_ctl.rc_end_appl) 17954 rack->r_ctl.rc_end_appl->r_nseq_appl = rsm->r_start; 17955 rack->r_ctl.rc_end_appl = rsm; 17956 } 17957 rsm->r_flags |= RACK_APP_LIMITED; 17958 rack->r_ctl.rc_app_limited_cnt++; 17959 } 17960 if (log) 17961 rack_log_pacing_delay_calc(rack, 17962 rack->r_ctl.rc_app_limited_cnt, seq, 17963 tp->gput_ack, 0, 0, 4, __LINE__, NULL, 0); 17964 } 17965 } 17966 /* Check if we need to go into persists or not */ 17967 if ((tp->snd_max == tp->snd_una) && 17968 TCPS_HAVEESTABLISHED(tp->t_state) && 17969 sbavail(sb) && 17970 (sbavail(sb) > tp->snd_wnd) && 17971 (tp->snd_wnd < min((rack->r_ctl.rc_high_rwnd/2), minseg))) { 17972 /* Yes lets make sure to move to persist before timer-start */ 17973 rack_enter_persist(tp, rack, rack->r_ctl.rc_rcvtime); 17974 } 17975 rack_start_hpts_timer(rack, tp, cts, slot, tot_len_this_send, sup_rack); 17976 rack_log_type_just_return(rack, cts, tot_len_this_send, slot, hpts_calling, app_limited, cwnd_to_use); 17977 } 17978 #ifdef NETFLIX_SHARED_CWND 17979 if ((sbavail(sb) == 0) && 17980 rack->r_ctl.rc_scw) { 17981 tcp_shared_cwnd_idle(rack->r_ctl.rc_scw, rack->r_ctl.rc_scw_index); 17982 rack->rack_scwnd_is_idle = 1; 17983 } 17984 #endif 17985 #ifdef TCP_ACCOUNTING 17986 if (tot_len_this_send > 0) { 17987 crtsc = get_cyclecount(); 17988 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 17989 tp->tcp_cnt_counters[SND_OUT_DATA]++; 17990 } 17991 counter_u64_add(tcp_cnt_counters[SND_OUT_DATA], 1); 17992 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 17993 tp->tcp_proc_time[SND_OUT_DATA] += (crtsc - ts_val); 17994 } 17995 counter_u64_add(tcp_proc_time[SND_OUT_DATA], (crtsc - ts_val)); 17996 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 17997 tp->tcp_cnt_counters[CNT_OF_MSS_OUT] += ((tot_len_this_send + segsiz - 1) / segsiz); 17998 } 17999 counter_u64_add(tcp_cnt_counters[CNT_OF_MSS_OUT], ((tot_len_this_send + segsiz - 1) / segsiz)); 18000 } else { 18001 crtsc = get_cyclecount(); 18002 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 18003 tp->tcp_cnt_counters[SND_LIMITED]++; 18004 } 18005 counter_u64_add(tcp_cnt_counters[SND_LIMITED], 1); 18006 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 18007 tp->tcp_proc_time[SND_LIMITED] += (crtsc - ts_val); 18008 } 18009 counter_u64_add(tcp_proc_time[SND_LIMITED], (crtsc - ts_val)); 18010 } 18011 sched_unpin(); 18012 #endif 18013 return (0); 18014 18015 send: 18016 if (rsm || sack_rxmit) 18017 counter_u64_add(rack_nfto_resend, 1); 18018 else 18019 counter_u64_add(rack_non_fto_send, 1); 18020 if ((flags & TH_FIN) && 18021 sbavail(sb)) { 18022 /* 18023 * We do not transmit a FIN 18024 * with data outstanding. We 18025 * need to make it so all data 18026 * is acked first. 18027 */ 18028 flags &= ~TH_FIN; 18029 } 18030 /* Enforce stack imposed max seg size if we have one */ 18031 if (rack->r_ctl.rc_pace_max_segs && 18032 (len > rack->r_ctl.rc_pace_max_segs)) { 18033 mark = 1; 18034 len = rack->r_ctl.rc_pace_max_segs; 18035 } 18036 SOCKBUF_LOCK_ASSERT(sb); 18037 if (len > 0) { 18038 if (len >= segsiz) 18039 tp->t_flags2 |= TF2_PLPMTU_MAXSEGSNT; 18040 else 18041 tp->t_flags2 &= ~TF2_PLPMTU_MAXSEGSNT; 18042 } 18043 /* 18044 * Before ESTABLISHED, force sending of initial options unless TCP 18045 * set not to do any options. NOTE: we assume that the IP/TCP header 18046 * plus TCP options always fit in a single mbuf, leaving room for a 18047 * maximum link header, i.e. max_linkhdr + sizeof (struct tcpiphdr) 18048 * + optlen <= MCLBYTES 18049 */ 18050 optlen = 0; 18051 #ifdef INET6 18052 if (isipv6) 18053 hdrlen = sizeof(struct ip6_hdr) + sizeof(struct tcphdr); 18054 else 18055 #endif 18056 hdrlen = sizeof(struct tcpiphdr); 18057 18058 /* 18059 * Compute options for segment. We only have to care about SYN and 18060 * established connection segments. Options for SYN-ACK segments 18061 * are handled in TCP syncache. 18062 */ 18063 to.to_flags = 0; 18064 if ((tp->t_flags & TF_NOOPT) == 0) { 18065 /* Maximum segment size. */ 18066 if (flags & TH_SYN) { 18067 tp->snd_nxt = tp->iss; 18068 to.to_mss = tcp_mssopt(&inp->inp_inc); 18069 if (tp->t_port) 18070 to.to_mss -= V_tcp_udp_tunneling_overhead; 18071 to.to_flags |= TOF_MSS; 18072 18073 /* 18074 * On SYN or SYN|ACK transmits on TFO connections, 18075 * only include the TFO option if it is not a 18076 * retransmit, as the presence of the TFO option may 18077 * have caused the original SYN or SYN|ACK to have 18078 * been dropped by a middlebox. 18079 */ 18080 if (IS_FASTOPEN(tp->t_flags) && 18081 (tp->t_rxtshift == 0)) { 18082 if (tp->t_state == TCPS_SYN_RECEIVED) { 18083 to.to_tfo_len = TCP_FASTOPEN_COOKIE_LEN; 18084 to.to_tfo_cookie = 18085 (u_int8_t *)&tp->t_tfo_cookie.server; 18086 to.to_flags |= TOF_FASTOPEN; 18087 wanted_cookie = 1; 18088 } else if (tp->t_state == TCPS_SYN_SENT) { 18089 to.to_tfo_len = 18090 tp->t_tfo_client_cookie_len; 18091 to.to_tfo_cookie = 18092 tp->t_tfo_cookie.client; 18093 to.to_flags |= TOF_FASTOPEN; 18094 wanted_cookie = 1; 18095 /* 18096 * If we wind up having more data to 18097 * send with the SYN than can fit in 18098 * one segment, don't send any more 18099 * until the SYN|ACK comes back from 18100 * the other end. 18101 */ 18102 sendalot = 0; 18103 } 18104 } 18105 } 18106 /* Window scaling. */ 18107 if ((flags & TH_SYN) && (tp->t_flags & TF_REQ_SCALE)) { 18108 to.to_wscale = tp->request_r_scale; 18109 to.to_flags |= TOF_SCALE; 18110 } 18111 /* Timestamps. */ 18112 if ((tp->t_flags & TF_RCVD_TSTMP) || 18113 ((flags & TH_SYN) && (tp->t_flags & TF_REQ_TSTMP))) { 18114 to.to_tsval = ms_cts + tp->ts_offset; 18115 to.to_tsecr = tp->ts_recent; 18116 to.to_flags |= TOF_TS; 18117 } 18118 /* Set receive buffer autosizing timestamp. */ 18119 if (tp->rfbuf_ts == 0 && 18120 (so->so_rcv.sb_flags & SB_AUTOSIZE)) 18121 tp->rfbuf_ts = tcp_ts_getticks(); 18122 /* Selective ACK's. */ 18123 if (tp->t_flags & TF_SACK_PERMIT) { 18124 if (flags & TH_SYN) 18125 to.to_flags |= TOF_SACKPERM; 18126 else if (TCPS_HAVEESTABLISHED(tp->t_state) && 18127 tp->rcv_numsacks > 0) { 18128 to.to_flags |= TOF_SACK; 18129 to.to_nsacks = tp->rcv_numsacks; 18130 to.to_sacks = (u_char *)tp->sackblks; 18131 } 18132 } 18133 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 18134 /* TCP-MD5 (RFC2385). */ 18135 if (tp->t_flags & TF_SIGNATURE) 18136 to.to_flags |= TOF_SIGNATURE; 18137 #endif /* TCP_SIGNATURE */ 18138 18139 /* Processing the options. */ 18140 hdrlen += optlen = tcp_addoptions(&to, opt); 18141 /* 18142 * If we wanted a TFO option to be added, but it was unable 18143 * to fit, ensure no data is sent. 18144 */ 18145 if (IS_FASTOPEN(tp->t_flags) && wanted_cookie && 18146 !(to.to_flags & TOF_FASTOPEN)) 18147 len = 0; 18148 } 18149 if (tp->t_port) { 18150 if (V_tcp_udp_tunneling_port == 0) { 18151 /* The port was removed?? */ 18152 SOCKBUF_UNLOCK(&so->so_snd); 18153 #ifdef TCP_ACCOUNTING 18154 crtsc = get_cyclecount(); 18155 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 18156 tp->tcp_cnt_counters[SND_OUT_FAIL]++; 18157 } 18158 counter_u64_add(tcp_cnt_counters[SND_OUT_FAIL], 1); 18159 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 18160 tp->tcp_proc_time[SND_OUT_FAIL] += (crtsc - ts_val); 18161 } 18162 counter_u64_add(tcp_proc_time[SND_OUT_FAIL], (crtsc - ts_val)); 18163 sched_unpin(); 18164 #endif 18165 return (EHOSTUNREACH); 18166 } 18167 hdrlen += sizeof(struct udphdr); 18168 } 18169 #ifdef INET6 18170 if (isipv6) 18171 ipoptlen = ip6_optlen(tp->t_inpcb); 18172 else 18173 #endif 18174 if (tp->t_inpcb->inp_options) 18175 ipoptlen = tp->t_inpcb->inp_options->m_len - 18176 offsetof(struct ipoption, ipopt_list); 18177 else 18178 ipoptlen = 0; 18179 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 18180 ipoptlen += ipsec_optlen; 18181 #endif 18182 18183 /* 18184 * Adjust data length if insertion of options will bump the packet 18185 * length beyond the t_maxseg length. Clear the FIN bit because we 18186 * cut off the tail of the segment. 18187 */ 18188 if (len + optlen + ipoptlen > tp->t_maxseg) { 18189 if (tso) { 18190 uint32_t if_hw_tsomax; 18191 uint32_t moff; 18192 int32_t max_len; 18193 18194 /* extract TSO information */ 18195 if_hw_tsomax = tp->t_tsomax; 18196 if_hw_tsomaxsegcount = tp->t_tsomaxsegcount; 18197 if_hw_tsomaxsegsize = tp->t_tsomaxsegsize; 18198 KASSERT(ipoptlen == 0, 18199 ("%s: TSO can't do IP options", __func__)); 18200 18201 /* 18202 * Check if we should limit by maximum payload 18203 * length: 18204 */ 18205 if (if_hw_tsomax != 0) { 18206 /* compute maximum TSO length */ 18207 max_len = (if_hw_tsomax - hdrlen - 18208 max_linkhdr); 18209 if (max_len <= 0) { 18210 len = 0; 18211 } else if (len > max_len) { 18212 sendalot = 1; 18213 len = max_len; 18214 mark = 2; 18215 } 18216 } 18217 /* 18218 * Prevent the last segment from being fractional 18219 * unless the send sockbuf can be emptied: 18220 */ 18221 max_len = (tp->t_maxseg - optlen); 18222 if ((sb_offset + len) < sbavail(sb)) { 18223 moff = len % (u_int)max_len; 18224 if (moff != 0) { 18225 mark = 3; 18226 len -= moff; 18227 } 18228 } 18229 /* 18230 * In case there are too many small fragments don't 18231 * use TSO: 18232 */ 18233 if (len <= segsiz) { 18234 mark = 4; 18235 tso = 0; 18236 } 18237 /* 18238 * Send the FIN in a separate segment after the bulk 18239 * sending is done. We don't trust the TSO 18240 * implementations to clear the FIN flag on all but 18241 * the last segment. 18242 */ 18243 if (tp->t_flags & TF_NEEDFIN) { 18244 sendalot = 4; 18245 } 18246 } else { 18247 mark = 5; 18248 if (optlen + ipoptlen >= tp->t_maxseg) { 18249 /* 18250 * Since we don't have enough space to put 18251 * the IP header chain and the TCP header in 18252 * one packet as required by RFC 7112, don't 18253 * send it. Also ensure that at least one 18254 * byte of the payload can be put into the 18255 * TCP segment. 18256 */ 18257 SOCKBUF_UNLOCK(&so->so_snd); 18258 error = EMSGSIZE; 18259 sack_rxmit = 0; 18260 goto out; 18261 } 18262 len = tp->t_maxseg - optlen - ipoptlen; 18263 sendalot = 5; 18264 } 18265 } else { 18266 tso = 0; 18267 mark = 6; 18268 } 18269 KASSERT(len + hdrlen + ipoptlen <= IP_MAXPACKET, 18270 ("%s: len > IP_MAXPACKET", __func__)); 18271 #ifdef DIAGNOSTIC 18272 #ifdef INET6 18273 if (max_linkhdr + hdrlen > MCLBYTES) 18274 #else 18275 if (max_linkhdr + hdrlen > MHLEN) 18276 #endif 18277 panic("tcphdr too big"); 18278 #endif 18279 18280 /* 18281 * This KASSERT is here to catch edge cases at a well defined place. 18282 * Before, those had triggered (random) panic conditions further 18283 * down. 18284 */ 18285 KASSERT(len >= 0, ("[%s:%d]: len < 0", __func__, __LINE__)); 18286 if ((len == 0) && 18287 (flags & TH_FIN) && 18288 (sbused(sb))) { 18289 /* 18290 * We have outstanding data, don't send a fin by itself!. 18291 */ 18292 goto just_return; 18293 } 18294 /* 18295 * Grab a header mbuf, attaching a copy of data to be transmitted, 18296 * and initialize the header from the template for sends on this 18297 * connection. 18298 */ 18299 hw_tls = (sb->sb_flags & SB_TLS_IFNET) != 0; 18300 if (len) { 18301 uint32_t max_val; 18302 uint32_t moff; 18303 18304 if (rack->r_ctl.rc_pace_max_segs) 18305 max_val = rack->r_ctl.rc_pace_max_segs; 18306 else if (rack->rc_user_set_max_segs) 18307 max_val = rack->rc_user_set_max_segs * segsiz; 18308 else 18309 max_val = len; 18310 /* 18311 * We allow a limit on sending with hptsi. 18312 */ 18313 if (len > max_val) { 18314 mark = 7; 18315 len = max_val; 18316 } 18317 #ifdef INET6 18318 if (MHLEN < hdrlen + max_linkhdr) 18319 m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); 18320 else 18321 #endif 18322 m = m_gethdr(M_NOWAIT, MT_DATA); 18323 18324 if (m == NULL) { 18325 SOCKBUF_UNLOCK(sb); 18326 error = ENOBUFS; 18327 sack_rxmit = 0; 18328 goto out; 18329 } 18330 m->m_data += max_linkhdr; 18331 m->m_len = hdrlen; 18332 18333 /* 18334 * Start the m_copy functions from the closest mbuf to the 18335 * sb_offset in the socket buffer chain. 18336 */ 18337 mb = sbsndptr_noadv(sb, sb_offset, &moff); 18338 s_mb = mb; 18339 s_moff = moff; 18340 if (len <= MHLEN - hdrlen - max_linkhdr && !hw_tls) { 18341 m_copydata(mb, moff, (int)len, 18342 mtod(m, caddr_t)+hdrlen); 18343 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) 18344 sbsndptr_adv(sb, mb, len); 18345 m->m_len += len; 18346 } else { 18347 struct sockbuf *msb; 18348 18349 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) 18350 msb = NULL; 18351 else 18352 msb = sb; 18353 m->m_next = tcp_m_copym( 18354 mb, moff, &len, 18355 if_hw_tsomaxsegcount, if_hw_tsomaxsegsize, msb, 18356 ((rsm == NULL) ? hw_tls : 0) 18357 #ifdef NETFLIX_COPY_ARGS 18358 , &s_mb, &s_moff 18359 #endif 18360 ); 18361 if (len <= (tp->t_maxseg - optlen)) { 18362 /* 18363 * Must have ran out of mbufs for the copy 18364 * shorten it to no longer need tso. Lets 18365 * not put on sendalot since we are low on 18366 * mbufs. 18367 */ 18368 tso = 0; 18369 } 18370 if (m->m_next == NULL) { 18371 SOCKBUF_UNLOCK(sb); 18372 (void)m_free(m); 18373 error = ENOBUFS; 18374 sack_rxmit = 0; 18375 goto out; 18376 } 18377 } 18378 if (SEQ_LT(tp->snd_nxt, tp->snd_max) || sack_rxmit) { 18379 if (rsm && (rsm->r_flags & RACK_TLP)) { 18380 /* 18381 * TLP should not count in retran count, but 18382 * in its own bin 18383 */ 18384 counter_u64_add(rack_tlp_retran, 1); 18385 counter_u64_add(rack_tlp_retran_bytes, len); 18386 } else { 18387 tp->t_sndrexmitpack++; 18388 KMOD_TCPSTAT_INC(tcps_sndrexmitpack); 18389 KMOD_TCPSTAT_ADD(tcps_sndrexmitbyte, len); 18390 } 18391 #ifdef STATS 18392 stats_voi_update_abs_u32(tp->t_stats, VOI_TCP_RETXPB, 18393 len); 18394 #endif 18395 } else { 18396 KMOD_TCPSTAT_INC(tcps_sndpack); 18397 KMOD_TCPSTAT_ADD(tcps_sndbyte, len); 18398 #ifdef STATS 18399 stats_voi_update_abs_u64(tp->t_stats, VOI_TCP_TXPB, 18400 len); 18401 #endif 18402 } 18403 /* 18404 * If we're sending everything we've got, set PUSH. (This 18405 * will keep happy those implementations which only give 18406 * data to the user when a buffer fills or a PUSH comes in.) 18407 */ 18408 if (sb_offset + len == sbused(sb) && 18409 sbused(sb) && 18410 !(flags & TH_SYN)) { 18411 flags |= TH_PUSH; 18412 add_flag |= RACK_HAD_PUSH; 18413 } 18414 18415 SOCKBUF_UNLOCK(sb); 18416 } else { 18417 SOCKBUF_UNLOCK(sb); 18418 if (tp->t_flags & TF_ACKNOW) 18419 KMOD_TCPSTAT_INC(tcps_sndacks); 18420 else if (flags & (TH_SYN | TH_FIN | TH_RST)) 18421 KMOD_TCPSTAT_INC(tcps_sndctrl); 18422 else 18423 KMOD_TCPSTAT_INC(tcps_sndwinup); 18424 18425 m = m_gethdr(M_NOWAIT, MT_DATA); 18426 if (m == NULL) { 18427 error = ENOBUFS; 18428 sack_rxmit = 0; 18429 goto out; 18430 } 18431 #ifdef INET6 18432 if (isipv6 && (MHLEN < hdrlen + max_linkhdr) && 18433 MHLEN >= hdrlen) { 18434 M_ALIGN(m, hdrlen); 18435 } else 18436 #endif 18437 m->m_data += max_linkhdr; 18438 m->m_len = hdrlen; 18439 } 18440 SOCKBUF_UNLOCK_ASSERT(sb); 18441 m->m_pkthdr.rcvif = (struct ifnet *)0; 18442 #ifdef MAC 18443 mac_inpcb_create_mbuf(inp, m); 18444 #endif 18445 if ((ipoptlen == 0) && (rack->r_ctl.fsb.tcp_ip_hdr) && rack->r_fsb_inited) { 18446 #ifdef INET6 18447 if (isipv6) 18448 ip6 = (struct ip6_hdr *)rack->r_ctl.fsb.tcp_ip_hdr; 18449 else 18450 #endif /* INET6 */ 18451 ip = (struct ip *)rack->r_ctl.fsb.tcp_ip_hdr; 18452 th = rack->r_ctl.fsb.th; 18453 udp = rack->r_ctl.fsb.udp; 18454 if (udp) { 18455 #ifdef INET6 18456 if (isipv6) 18457 ulen = hdrlen + len - sizeof(struct ip6_hdr); 18458 else 18459 #endif /* INET6 */ 18460 ulen = hdrlen + len - sizeof(struct ip); 18461 udp->uh_ulen = htons(ulen); 18462 } 18463 } else { 18464 #ifdef INET6 18465 if (isipv6) { 18466 ip6 = mtod(m, struct ip6_hdr *); 18467 if (tp->t_port) { 18468 udp = (struct udphdr *)((caddr_t)ip6 + sizeof(struct ip6_hdr)); 18469 udp->uh_sport = htons(V_tcp_udp_tunneling_port); 18470 udp->uh_dport = tp->t_port; 18471 ulen = hdrlen + len - sizeof(struct ip6_hdr); 18472 udp->uh_ulen = htons(ulen); 18473 th = (struct tcphdr *)(udp + 1); 18474 } else 18475 th = (struct tcphdr *)(ip6 + 1); 18476 tcpip_fillheaders(inp, tp->t_port, ip6, th); 18477 } else 18478 #endif /* INET6 */ 18479 { 18480 ip = mtod(m, struct ip *); 18481 if (tp->t_port) { 18482 udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip)); 18483 udp->uh_sport = htons(V_tcp_udp_tunneling_port); 18484 udp->uh_dport = tp->t_port; 18485 ulen = hdrlen + len - sizeof(struct ip); 18486 udp->uh_ulen = htons(ulen); 18487 th = (struct tcphdr *)(udp + 1); 18488 } else 18489 th = (struct tcphdr *)(ip + 1); 18490 tcpip_fillheaders(inp, tp->t_port, ip, th); 18491 } 18492 } 18493 /* 18494 * Fill in fields, remembering maximum advertised window for use in 18495 * delaying messages about window sizes. If resending a FIN, be sure 18496 * not to use a new sequence number. 18497 */ 18498 if (flags & TH_FIN && tp->t_flags & TF_SENTFIN && 18499 tp->snd_nxt == tp->snd_max) 18500 tp->snd_nxt--; 18501 /* 18502 * If we are starting a connection, send ECN setup SYN packet. If we 18503 * are on a retransmit, we may resend those bits a number of times 18504 * as per RFC 3168. 18505 */ 18506 if (tp->t_state == TCPS_SYN_SENT && V_tcp_do_ecn) { 18507 flags |= tcp_ecn_output_syn_sent(tp); 18508 } 18509 /* Also handle parallel SYN for ECN */ 18510 if (TCPS_HAVERCVDSYN(tp->t_state) && 18511 (tp->t_flags2 & (TF2_ECN_PERMIT | TF2_ACE_PERMIT))) { 18512 int ect = tcp_ecn_output_established(tp, &flags, len, sack_rxmit); 18513 if ((tp->t_state == TCPS_SYN_RECEIVED) && 18514 (tp->t_flags2 & TF2_ECN_SND_ECE)) 18515 tp->t_flags2 &= ~TF2_ECN_SND_ECE; 18516 #ifdef INET6 18517 if (isipv6) { 18518 ip6->ip6_flow &= ~htonl(IPTOS_ECN_MASK << 20); 18519 ip6->ip6_flow |= htonl(ect << 20); 18520 } 18521 else 18522 #endif 18523 { 18524 ip->ip_tos &= ~IPTOS_ECN_MASK; 18525 ip->ip_tos |= ect; 18526 } 18527 } 18528 /* 18529 * If we are doing retransmissions, then snd_nxt will not reflect 18530 * the first unsent octet. For ACK only packets, we do not want the 18531 * sequence number of the retransmitted packet, we want the sequence 18532 * number of the next unsent octet. So, if there is no data (and no 18533 * SYN or FIN), use snd_max instead of snd_nxt when filling in 18534 * ti_seq. But if we are in persist state, snd_max might reflect 18535 * one byte beyond the right edge of the window, so use snd_nxt in 18536 * that case, since we know we aren't doing a retransmission. 18537 * (retransmit and persist are mutually exclusive...) 18538 */ 18539 if (sack_rxmit == 0) { 18540 if (len || (flags & (TH_SYN | TH_FIN))) { 18541 th->th_seq = htonl(tp->snd_nxt); 18542 rack_seq = tp->snd_nxt; 18543 } else { 18544 th->th_seq = htonl(tp->snd_max); 18545 rack_seq = tp->snd_max; 18546 } 18547 } else { 18548 th->th_seq = htonl(rsm->r_start); 18549 rack_seq = rsm->r_start; 18550 } 18551 th->th_ack = htonl(tp->rcv_nxt); 18552 tcp_set_flags(th, flags); 18553 /* 18554 * Calculate receive window. Don't shrink window, but avoid silly 18555 * window syndrome. 18556 * If a RST segment is sent, advertise a window of zero. 18557 */ 18558 if (flags & TH_RST) { 18559 recwin = 0; 18560 } else { 18561 if (recwin < (long)(so->so_rcv.sb_hiwat / 4) && 18562 recwin < (long)segsiz) { 18563 recwin = 0; 18564 } 18565 if (SEQ_GT(tp->rcv_adv, tp->rcv_nxt) && 18566 recwin < (long)(tp->rcv_adv - tp->rcv_nxt)) 18567 recwin = (long)(tp->rcv_adv - tp->rcv_nxt); 18568 } 18569 18570 /* 18571 * According to RFC1323 the window field in a SYN (i.e., a <SYN> or 18572 * <SYN,ACK>) segment itself is never scaled. The <SYN,ACK> case is 18573 * handled in syncache. 18574 */ 18575 if (flags & TH_SYN) 18576 th->th_win = htons((u_short) 18577 (min(sbspace(&so->so_rcv), TCP_MAXWIN))); 18578 else { 18579 /* Avoid shrinking window with window scaling. */ 18580 recwin = roundup2(recwin, 1 << tp->rcv_scale); 18581 th->th_win = htons((u_short)(recwin >> tp->rcv_scale)); 18582 } 18583 /* 18584 * Adjust the RXWIN0SENT flag - indicate that we have advertised a 0 18585 * window. This may cause the remote transmitter to stall. This 18586 * flag tells soreceive() to disable delayed acknowledgements when 18587 * draining the buffer. This can occur if the receiver is 18588 * attempting to read more data than can be buffered prior to 18589 * transmitting on the connection. 18590 */ 18591 if (th->th_win == 0) { 18592 tp->t_sndzerowin++; 18593 tp->t_flags |= TF_RXWIN0SENT; 18594 } else 18595 tp->t_flags &= ~TF_RXWIN0SENT; 18596 tp->snd_up = tp->snd_una; /* drag it along, its deprecated */ 18597 /* Now are we using fsb?, if so copy the template data to the mbuf */ 18598 if ((ipoptlen == 0) && (rack->r_ctl.fsb.tcp_ip_hdr) && rack->r_fsb_inited) { 18599 uint8_t *cpto; 18600 18601 cpto = mtod(m, uint8_t *); 18602 memcpy(cpto, rack->r_ctl.fsb.tcp_ip_hdr, rack->r_ctl.fsb.tcp_ip_hdr_len); 18603 /* 18604 * We have just copied in: 18605 * IP/IP6 18606 * <optional udphdr> 18607 * tcphdr (no options) 18608 * 18609 * We need to grab the correct pointers into the mbuf 18610 * for both the tcp header, and possibly the udp header (if tunneling). 18611 * We do this by using the offset in the copy buffer and adding it 18612 * to the mbuf base pointer (cpto). 18613 */ 18614 #ifdef INET6 18615 if (isipv6) 18616 ip6 = mtod(m, struct ip6_hdr *); 18617 else 18618 #endif /* INET6 */ 18619 ip = mtod(m, struct ip *); 18620 th = (struct tcphdr *)(cpto + ((uint8_t *)rack->r_ctl.fsb.th - rack->r_ctl.fsb.tcp_ip_hdr)); 18621 /* If we have a udp header lets set it into the mbuf as well */ 18622 if (udp) 18623 udp = (struct udphdr *)(cpto + ((uint8_t *)rack->r_ctl.fsb.udp - rack->r_ctl.fsb.tcp_ip_hdr)); 18624 } 18625 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE) 18626 if (to.to_flags & TOF_SIGNATURE) { 18627 /* 18628 * Calculate MD5 signature and put it into the place 18629 * determined before. 18630 * NOTE: since TCP options buffer doesn't point into 18631 * mbuf's data, calculate offset and use it. 18632 */ 18633 if (!TCPMD5_ENABLED() || TCPMD5_OUTPUT(m, th, 18634 (u_char *)(th + 1) + (to.to_signature - opt)) != 0) { 18635 /* 18636 * Do not send segment if the calculation of MD5 18637 * digest has failed. 18638 */ 18639 goto out; 18640 } 18641 } 18642 #endif 18643 if (optlen) { 18644 bcopy(opt, th + 1, optlen); 18645 th->th_off = (sizeof(struct tcphdr) + optlen) >> 2; 18646 } 18647 /* 18648 * Put TCP length in extended header, and then checksum extended 18649 * header and data. 18650 */ 18651 m->m_pkthdr.len = hdrlen + len; /* in6_cksum() need this */ 18652 #ifdef INET6 18653 if (isipv6) { 18654 /* 18655 * ip6_plen is not need to be filled now, and will be filled 18656 * in ip6_output. 18657 */ 18658 if (tp->t_port) { 18659 m->m_pkthdr.csum_flags = CSUM_UDP_IPV6; 18660 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 18661 udp->uh_sum = in6_cksum_pseudo(ip6, ulen, IPPROTO_UDP, 0); 18662 th->th_sum = htons(0); 18663 UDPSTAT_INC(udps_opackets); 18664 } else { 18665 m->m_pkthdr.csum_flags = CSUM_TCP_IPV6; 18666 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 18667 th->th_sum = in6_cksum_pseudo(ip6, 18668 sizeof(struct tcphdr) + optlen + len, IPPROTO_TCP, 18669 0); 18670 } 18671 } 18672 #endif 18673 #if defined(INET6) && defined(INET) 18674 else 18675 #endif 18676 #ifdef INET 18677 { 18678 if (tp->t_port) { 18679 m->m_pkthdr.csum_flags = CSUM_UDP; 18680 m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum); 18681 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, 18682 ip->ip_dst.s_addr, htons(ulen + IPPROTO_UDP)); 18683 th->th_sum = htons(0); 18684 UDPSTAT_INC(udps_opackets); 18685 } else { 18686 m->m_pkthdr.csum_flags = CSUM_TCP; 18687 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); 18688 th->th_sum = in_pseudo(ip->ip_src.s_addr, 18689 ip->ip_dst.s_addr, htons(sizeof(struct tcphdr) + 18690 IPPROTO_TCP + len + optlen)); 18691 } 18692 /* IP version must be set here for ipv4/ipv6 checking later */ 18693 KASSERT(ip->ip_v == IPVERSION, 18694 ("%s: IP version incorrect: %d", __func__, ip->ip_v)); 18695 } 18696 #endif 18697 /* 18698 * Enable TSO and specify the size of the segments. The TCP pseudo 18699 * header checksum is always provided. XXX: Fixme: This is currently 18700 * not the case for IPv6. 18701 */ 18702 if (tso) { 18703 KASSERT(len > tp->t_maxseg - optlen, 18704 ("%s: len <= tso_segsz", __func__)); 18705 m->m_pkthdr.csum_flags |= CSUM_TSO; 18706 m->m_pkthdr.tso_segsz = tp->t_maxseg - optlen; 18707 } 18708 KASSERT(len + hdrlen == m_length(m, NULL), 18709 ("%s: mbuf chain different than expected: %d + %u != %u", 18710 __func__, len, hdrlen, m_length(m, NULL))); 18711 18712 #ifdef TCP_HHOOK 18713 /* Run HHOOK_TCP_ESTABLISHED_OUT helper hooks. */ 18714 hhook_run_tcp_est_out(tp, th, &to, len, tso); 18715 #endif 18716 /* We're getting ready to send; log now. */ 18717 if (tp->t_logstate != TCP_LOG_STATE_OFF) { 18718 union tcp_log_stackspecific log; 18719 18720 memset(&log.u_bbr, 0, sizeof(log.u_bbr)); 18721 log.u_bbr.inhpts = tcp_in_hpts(rack->rc_inp); 18722 if (rack->rack_no_prr) 18723 log.u_bbr.flex1 = 0; 18724 else 18725 log.u_bbr.flex1 = rack->r_ctl.rc_prr_sndcnt; 18726 log.u_bbr.flex2 = rack->r_ctl.rc_pace_min_segs; 18727 log.u_bbr.flex3 = rack->r_ctl.rc_pace_max_segs; 18728 log.u_bbr.flex4 = orig_len; 18729 /* Save off the early/late values */ 18730 log.u_bbr.flex6 = rack->r_ctl.rc_agg_early; 18731 log.u_bbr.applimited = rack->r_ctl.rc_agg_delayed; 18732 log.u_bbr.bw_inuse = rack_get_bw(rack); 18733 log.u_bbr.flex8 = 0; 18734 if (rsm) { 18735 if (rsm->r_flags & RACK_RWND_COLLAPSED) { 18736 rack_log_collapse(rack, rsm->r_start, rsm->r_end, 0, __LINE__, 5, rsm->r_flags, rsm); 18737 counter_u64_add(rack_collapsed_win_rxt, 1); 18738 counter_u64_add(rack_collapsed_win_rxt_bytes, (rsm->r_end - rsm->r_start)); 18739 } 18740 if (doing_tlp) 18741 log.u_bbr.flex8 = 2; 18742 else 18743 log.u_bbr.flex8 = 1; 18744 } else { 18745 if (doing_tlp) 18746 log.u_bbr.flex8 = 3; 18747 else 18748 log.u_bbr.flex8 = 0; 18749 } 18750 log.u_bbr.pacing_gain = rack_get_output_gain(rack, rsm); 18751 log.u_bbr.flex7 = mark; 18752 log.u_bbr.flex7 <<= 8; 18753 log.u_bbr.flex7 |= pass; 18754 log.u_bbr.pkts_out = tp->t_maxseg; 18755 log.u_bbr.timeStamp = cts; 18756 log.u_bbr.inflight = ctf_flight_size(rack->rc_tp, rack->r_ctl.rc_sacked); 18757 log.u_bbr.lt_epoch = cwnd_to_use; 18758 log.u_bbr.delivered = sendalot; 18759 lgb = tcp_log_event_(tp, th, &so->so_rcv, &so->so_snd, TCP_LOG_OUT, ERRNO_UNK, 18760 len, &log, false, NULL, NULL, 0, &tv); 18761 } else 18762 lgb = NULL; 18763 18764 /* 18765 * Fill in IP length and desired time to live and send to IP level. 18766 * There should be a better way to handle ttl and tos; we could keep 18767 * them in the template, but need a way to checksum without them. 18768 */ 18769 /* 18770 * m->m_pkthdr.len should have been set before cksum calcuration, 18771 * because in6_cksum() need it. 18772 */ 18773 #ifdef INET6 18774 if (isipv6) { 18775 /* 18776 * we separately set hoplimit for every segment, since the 18777 * user might want to change the value via setsockopt. Also, 18778 * desired default hop limit might be changed via Neighbor 18779 * Discovery. 18780 */ 18781 rack->r_ctl.fsb.hoplimit = ip6->ip6_hlim = in6_selecthlim(inp, NULL); 18782 18783 /* 18784 * Set the packet size here for the benefit of DTrace 18785 * probes. ip6_output() will set it properly; it's supposed 18786 * to include the option header lengths as well. 18787 */ 18788 ip6->ip6_plen = htons(m->m_pkthdr.len - sizeof(*ip6)); 18789 18790 if (V_path_mtu_discovery && tp->t_maxseg > V_tcp_minmss) 18791 tp->t_flags2 |= TF2_PLPMTU_PMTUD; 18792 else 18793 tp->t_flags2 &= ~TF2_PLPMTU_PMTUD; 18794 18795 if (tp->t_state == TCPS_SYN_SENT) 18796 TCP_PROBE5(connect__request, NULL, tp, ip6, tp, th); 18797 18798 TCP_PROBE5(send, NULL, tp, ip6, tp, th); 18799 /* TODO: IPv6 IP6TOS_ECT bit on */ 18800 error = ip6_output(m, 18801 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 18802 inp->in6p_outputopts, 18803 #else 18804 NULL, 18805 #endif 18806 &inp->inp_route6, 18807 ((rsm || sack_rxmit) ? IP_NO_SND_TAG_RL : 0), 18808 NULL, NULL, inp); 18809 18810 if (error == EMSGSIZE && inp->inp_route6.ro_nh != NULL) 18811 mtu = inp->inp_route6.ro_nh->nh_mtu; 18812 } 18813 #endif /* INET6 */ 18814 #if defined(INET) && defined(INET6) 18815 else 18816 #endif 18817 #ifdef INET 18818 { 18819 ip->ip_len = htons(m->m_pkthdr.len); 18820 #ifdef INET6 18821 if (inp->inp_vflag & INP_IPV6PROTO) 18822 ip->ip_ttl = in6_selecthlim(inp, NULL); 18823 #endif /* INET6 */ 18824 rack->r_ctl.fsb.hoplimit = ip->ip_ttl; 18825 /* 18826 * If we do path MTU discovery, then we set DF on every 18827 * packet. This might not be the best thing to do according 18828 * to RFC3390 Section 2. However the tcp hostcache migitates 18829 * the problem so it affects only the first tcp connection 18830 * with a host. 18831 * 18832 * NB: Don't set DF on small MTU/MSS to have a safe 18833 * fallback. 18834 */ 18835 if (V_path_mtu_discovery && tp->t_maxseg > V_tcp_minmss) { 18836 tp->t_flags2 |= TF2_PLPMTU_PMTUD; 18837 if (tp->t_port == 0 || len < V_tcp_minmss) { 18838 ip->ip_off |= htons(IP_DF); 18839 } 18840 } else { 18841 tp->t_flags2 &= ~TF2_PLPMTU_PMTUD; 18842 } 18843 18844 if (tp->t_state == TCPS_SYN_SENT) 18845 TCP_PROBE5(connect__request, NULL, tp, ip, tp, th); 18846 18847 TCP_PROBE5(send, NULL, tp, ip, tp, th); 18848 18849 error = ip_output(m, 18850 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 18851 inp->inp_options, 18852 #else 18853 NULL, 18854 #endif 18855 &inp->inp_route, 18856 ((rsm || sack_rxmit) ? IP_NO_SND_TAG_RL : 0), 0, 18857 inp); 18858 if (error == EMSGSIZE && inp->inp_route.ro_nh != NULL) 18859 mtu = inp->inp_route.ro_nh->nh_mtu; 18860 } 18861 #endif /* INET */ 18862 18863 out: 18864 if (lgb) { 18865 lgb->tlb_errno = error; 18866 lgb = NULL; 18867 } 18868 /* 18869 * In transmit state, time the transmission and arrange for the 18870 * retransmit. In persist state, just set snd_max. 18871 */ 18872 if (error == 0) { 18873 tcp_account_for_send(tp, len, (rsm != NULL), doing_tlp, hw_tls); 18874 if (rsm && doing_tlp) { 18875 rack->rc_last_sent_tlp_past_cumack = 0; 18876 rack->rc_last_sent_tlp_seq_valid = 1; 18877 rack->r_ctl.last_sent_tlp_seq = rsm->r_start; 18878 rack->r_ctl.last_sent_tlp_len = rsm->r_end - rsm->r_start; 18879 } 18880 rack->forced_ack = 0; /* If we send something zap the FA flag */ 18881 if (rsm && (doing_tlp == 0)) { 18882 /* Set we retransmitted */ 18883 rack->rc_gp_saw_rec = 1; 18884 } else { 18885 if (cwnd_to_use > tp->snd_ssthresh) { 18886 /* Set we sent in CA */ 18887 rack->rc_gp_saw_ca = 1; 18888 } else { 18889 /* Set we sent in SS */ 18890 rack->rc_gp_saw_ss = 1; 18891 } 18892 } 18893 if (TCPS_HAVEESTABLISHED(tp->t_state) && 18894 (tp->t_flags & TF_SACK_PERMIT) && 18895 tp->rcv_numsacks > 0) 18896 tcp_clean_dsack_blocks(tp); 18897 tot_len_this_send += len; 18898 if (len == 0) 18899 counter_u64_add(rack_out_size[TCP_MSS_ACCT_SNDACK], 1); 18900 else if (len == 1) { 18901 counter_u64_add(rack_out_size[TCP_MSS_ACCT_PERSIST], 1); 18902 } else if (len > 1) { 18903 int idx; 18904 18905 idx = (len / segsiz) + 3; 18906 if (idx >= TCP_MSS_ACCT_ATIMER) 18907 counter_u64_add(rack_out_size[(TCP_MSS_ACCT_ATIMER-1)], 1); 18908 else 18909 counter_u64_add(rack_out_size[idx], 1); 18910 } 18911 } 18912 if ((rack->rack_no_prr == 0) && 18913 sub_from_prr && 18914 (error == 0)) { 18915 if (rack->r_ctl.rc_prr_sndcnt >= len) 18916 rack->r_ctl.rc_prr_sndcnt -= len; 18917 else 18918 rack->r_ctl.rc_prr_sndcnt = 0; 18919 } 18920 sub_from_prr = 0; 18921 if (doing_tlp) { 18922 /* Make sure the TLP is added */ 18923 add_flag |= RACK_TLP; 18924 } else if (rsm) { 18925 /* If its a resend without TLP then it must not have the flag */ 18926 rsm->r_flags &= ~RACK_TLP; 18927 } 18928 rack_log_output(tp, &to, len, rack_seq, (uint8_t) flags, error, 18929 rack_to_usec_ts(&tv), 18930 rsm, add_flag, s_mb, s_moff, hw_tls); 18931 18932 18933 if ((error == 0) && 18934 (len > 0) && 18935 (tp->snd_una == tp->snd_max)) 18936 rack->r_ctl.rc_tlp_rxt_last_time = cts; 18937 { 18938 tcp_seq startseq = tp->snd_nxt; 18939 18940 /* Track our lost count */ 18941 if (rsm && (doing_tlp == 0)) 18942 rack->r_ctl.rc_loss_count += rsm->r_end - rsm->r_start; 18943 /* 18944 * Advance snd_nxt over sequence space of this segment. 18945 */ 18946 if (error) 18947 /* We don't log or do anything with errors */ 18948 goto nomore; 18949 if (doing_tlp == 0) { 18950 if (rsm == NULL) { 18951 /* 18952 * Not a retransmission of some 18953 * sort, new data is going out so 18954 * clear our TLP count and flag. 18955 */ 18956 rack->rc_tlp_in_progress = 0; 18957 rack->r_ctl.rc_tlp_cnt_out = 0; 18958 } 18959 } else { 18960 /* 18961 * We have just sent a TLP, mark that it is true 18962 * and make sure our in progress is set so we 18963 * continue to check the count. 18964 */ 18965 rack->rc_tlp_in_progress = 1; 18966 rack->r_ctl.rc_tlp_cnt_out++; 18967 } 18968 if (flags & (TH_SYN | TH_FIN)) { 18969 if (flags & TH_SYN) 18970 tp->snd_nxt++; 18971 if (flags & TH_FIN) { 18972 tp->snd_nxt++; 18973 tp->t_flags |= TF_SENTFIN; 18974 } 18975 } 18976 /* In the ENOBUFS case we do *not* update snd_max */ 18977 if (sack_rxmit) 18978 goto nomore; 18979 18980 tp->snd_nxt += len; 18981 if (SEQ_GT(tp->snd_nxt, tp->snd_max)) { 18982 if (tp->snd_una == tp->snd_max) { 18983 /* 18984 * Update the time we just added data since 18985 * none was outstanding. 18986 */ 18987 rack_log_progress_event(rack, tp, ticks, PROGRESS_START, __LINE__); 18988 tp->t_acktime = ticks; 18989 } 18990 tp->snd_max = tp->snd_nxt; 18991 /* 18992 * Time this transmission if not a retransmission and 18993 * not currently timing anything. 18994 * This is only relevant in case of switching back to 18995 * the base stack. 18996 */ 18997 if (tp->t_rtttime == 0) { 18998 tp->t_rtttime = ticks; 18999 tp->t_rtseq = startseq; 19000 KMOD_TCPSTAT_INC(tcps_segstimed); 19001 } 19002 if (len && 19003 ((tp->t_flags & TF_GPUTINPROG) == 0)) 19004 rack_start_gp_measurement(tp, rack, startseq, sb_offset); 19005 } 19006 /* 19007 * If we are doing FO we need to update the mbuf position and subtract 19008 * this happens when the peer sends us duplicate information and 19009 * we thus want to send a DSACK. 19010 * 19011 * XXXRRS: This brings to mind a ?, when we send a DSACK block is TSO 19012 * turned off? If not then we are going to echo multiple DSACK blocks 19013 * out (with the TSO), which we should not be doing. 19014 */ 19015 if (rack->r_fast_output && len) { 19016 if (rack->r_ctl.fsb.left_to_send > len) 19017 rack->r_ctl.fsb.left_to_send -= len; 19018 else 19019 rack->r_ctl.fsb.left_to_send = 0; 19020 if (rack->r_ctl.fsb.left_to_send < segsiz) 19021 rack->r_fast_output = 0; 19022 if (rack->r_fast_output) { 19023 rack->r_ctl.fsb.m = sbsndmbuf(sb, (tp->snd_max - tp->snd_una), &rack->r_ctl.fsb.off); 19024 rack->r_ctl.fsb.o_m_len = rack->r_ctl.fsb.m->m_len; 19025 } 19026 } 19027 } 19028 nomore: 19029 if (error) { 19030 rack->r_ctl.rc_agg_delayed = 0; 19031 rack->r_early = 0; 19032 rack->r_late = 0; 19033 rack->r_ctl.rc_agg_early = 0; 19034 SOCKBUF_UNLOCK_ASSERT(sb); /* Check gotos. */ 19035 /* 19036 * Failures do not advance the seq counter above. For the 19037 * case of ENOBUFS we will fall out and retry in 1ms with 19038 * the hpts. Everything else will just have to retransmit 19039 * with the timer. 19040 * 19041 * In any case, we do not want to loop around for another 19042 * send without a good reason. 19043 */ 19044 sendalot = 0; 19045 switch (error) { 19046 case EPERM: 19047 tp->t_softerror = error; 19048 #ifdef TCP_ACCOUNTING 19049 crtsc = get_cyclecount(); 19050 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 19051 tp->tcp_cnt_counters[SND_OUT_FAIL]++; 19052 } 19053 counter_u64_add(tcp_cnt_counters[SND_OUT_FAIL], 1); 19054 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 19055 tp->tcp_proc_time[SND_OUT_FAIL] += (crtsc - ts_val); 19056 } 19057 counter_u64_add(tcp_proc_time[SND_OUT_FAIL], (crtsc - ts_val)); 19058 sched_unpin(); 19059 #endif 19060 return (error); 19061 case ENOBUFS: 19062 /* 19063 * Pace us right away to retry in a some 19064 * time 19065 */ 19066 if (rack->r_ctl.crte != NULL) { 19067 rack_trace_point(rack, RACK_TP_HWENOBUF); 19068 } else 19069 rack_trace_point(rack, RACK_TP_ENOBUF); 19070 slot = ((1 + rack->rc_enobuf) * HPTS_USEC_IN_MSEC); 19071 if (rack->rc_enobuf < 0x7f) 19072 rack->rc_enobuf++; 19073 if (slot < (10 * HPTS_USEC_IN_MSEC)) 19074 slot = 10 * HPTS_USEC_IN_MSEC; 19075 if (rack->r_ctl.crte != NULL) { 19076 counter_u64_add(rack_saw_enobuf_hw, 1); 19077 tcp_rl_log_enobuf(rack->r_ctl.crte); 19078 } 19079 counter_u64_add(rack_saw_enobuf, 1); 19080 goto enobufs; 19081 case EMSGSIZE: 19082 /* 19083 * For some reason the interface we used initially 19084 * to send segments changed to another or lowered 19085 * its MTU. If TSO was active we either got an 19086 * interface without TSO capabilits or TSO was 19087 * turned off. If we obtained mtu from ip_output() 19088 * then update it and try again. 19089 */ 19090 if (tso) 19091 tp->t_flags &= ~TF_TSO; 19092 if (mtu != 0) { 19093 tcp_mss_update(tp, -1, mtu, NULL, NULL); 19094 goto again; 19095 } 19096 slot = 10 * HPTS_USEC_IN_MSEC; 19097 rack_start_hpts_timer(rack, tp, cts, slot, 0, 0); 19098 #ifdef TCP_ACCOUNTING 19099 crtsc = get_cyclecount(); 19100 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 19101 tp->tcp_cnt_counters[SND_OUT_FAIL]++; 19102 } 19103 counter_u64_add(tcp_cnt_counters[SND_OUT_FAIL], 1); 19104 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 19105 tp->tcp_proc_time[SND_OUT_FAIL] += (crtsc - ts_val); 19106 } 19107 counter_u64_add(tcp_proc_time[SND_OUT_FAIL], (crtsc - ts_val)); 19108 sched_unpin(); 19109 #endif 19110 return (error); 19111 case ENETUNREACH: 19112 counter_u64_add(rack_saw_enetunreach, 1); 19113 case EHOSTDOWN: 19114 case EHOSTUNREACH: 19115 case ENETDOWN: 19116 if (TCPS_HAVERCVDSYN(tp->t_state)) { 19117 tp->t_softerror = error; 19118 } 19119 /* FALLTHROUGH */ 19120 default: 19121 slot = 10 * HPTS_USEC_IN_MSEC; 19122 rack_start_hpts_timer(rack, tp, cts, slot, 0, 0); 19123 #ifdef TCP_ACCOUNTING 19124 crtsc = get_cyclecount(); 19125 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 19126 tp->tcp_cnt_counters[SND_OUT_FAIL]++; 19127 } 19128 counter_u64_add(tcp_cnt_counters[SND_OUT_FAIL], 1); 19129 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 19130 tp->tcp_proc_time[SND_OUT_FAIL] += (crtsc - ts_val); 19131 } 19132 counter_u64_add(tcp_proc_time[SND_OUT_FAIL], (crtsc - ts_val)); 19133 sched_unpin(); 19134 #endif 19135 return (error); 19136 } 19137 } else { 19138 rack->rc_enobuf = 0; 19139 if (IN_FASTRECOVERY(tp->t_flags) && rsm) 19140 rack->r_ctl.retran_during_recovery += len; 19141 } 19142 KMOD_TCPSTAT_INC(tcps_sndtotal); 19143 19144 /* 19145 * Data sent (as far as we can tell). If this advertises a larger 19146 * window than any other segment, then remember the size of the 19147 * advertised window. Any pending ACK has now been sent. 19148 */ 19149 if (recwin > 0 && SEQ_GT(tp->rcv_nxt + recwin, tp->rcv_adv)) 19150 tp->rcv_adv = tp->rcv_nxt + recwin; 19151 19152 tp->last_ack_sent = tp->rcv_nxt; 19153 tp->t_flags &= ~(TF_ACKNOW | TF_DELACK); 19154 enobufs: 19155 if (sendalot) { 19156 /* Do we need to turn off sendalot? */ 19157 if (rack->r_ctl.rc_pace_max_segs && 19158 (tot_len_this_send >= rack->r_ctl.rc_pace_max_segs)) { 19159 /* We hit our max. */ 19160 sendalot = 0; 19161 } else if ((rack->rc_user_set_max_segs) && 19162 (tot_len_this_send >= (rack->rc_user_set_max_segs * segsiz))) { 19163 /* We hit the user defined max */ 19164 sendalot = 0; 19165 } 19166 } 19167 if ((error == 0) && (flags & TH_FIN)) 19168 tcp_log_end_status(tp, TCP_EI_STATUS_SERVER_FIN); 19169 if (flags & TH_RST) { 19170 /* 19171 * We don't send again after sending a RST. 19172 */ 19173 slot = 0; 19174 sendalot = 0; 19175 if (error == 0) 19176 tcp_log_end_status(tp, TCP_EI_STATUS_SERVER_RST); 19177 } else if ((slot == 0) && (sendalot == 0) && tot_len_this_send) { 19178 /* 19179 * Get our pacing rate, if an error 19180 * occurred in sending (ENOBUF) we would 19181 * hit the else if with slot preset. Other 19182 * errors return. 19183 */ 19184 slot = rack_get_pacing_delay(rack, tp, tot_len_this_send, rsm, segsiz); 19185 } 19186 if (rsm && 19187 (rsm->r_flags & RACK_HAS_SYN) == 0 && 19188 rack->use_rack_rr) { 19189 /* Its a retransmit and we use the rack cheat? */ 19190 if ((slot == 0) || 19191 (rack->rc_always_pace == 0) || 19192 (rack->r_rr_config == 1)) { 19193 /* 19194 * We have no pacing set or we 19195 * are using old-style rack or 19196 * we are overridden to use the old 1ms pacing. 19197 */ 19198 slot = rack->r_ctl.rc_min_to; 19199 } 19200 } 19201 /* We have sent clear the flag */ 19202 rack->r_ent_rec_ns = 0; 19203 if (rack->r_must_retran) { 19204 if (rsm) { 19205 rack->r_ctl.rc_out_at_rto -= (rsm->r_end - rsm->r_start); 19206 if (SEQ_GEQ(rsm->r_end, rack->r_ctl.rc_snd_max_at_rto)) { 19207 /* 19208 * We have retransmitted all. 19209 */ 19210 rack->r_must_retran = 0; 19211 rack->r_ctl.rc_out_at_rto = 0; 19212 } 19213 } else if (SEQ_GEQ(tp->snd_max, rack->r_ctl.rc_snd_max_at_rto)) { 19214 /* 19215 * Sending new data will also kill 19216 * the loop. 19217 */ 19218 rack->r_must_retran = 0; 19219 rack->r_ctl.rc_out_at_rto = 0; 19220 } 19221 } 19222 rack->r_ctl.fsb.recwin = recwin; 19223 if ((tp->t_flags & (TF_WASCRECOVERY|TF_WASFRECOVERY)) && 19224 SEQ_GT(tp->snd_max, rack->r_ctl.rc_snd_max_at_rto)) { 19225 /* 19226 * We hit an RTO and now have past snd_max at the RTO 19227 * clear all the WAS flags. 19228 */ 19229 tp->t_flags &= ~(TF_WASCRECOVERY|TF_WASFRECOVERY); 19230 } 19231 if (slot) { 19232 /* set the rack tcb into the slot N */ 19233 if ((error == 0) && 19234 rack_use_rfo && 19235 ((flags & (TH_SYN|TH_FIN)) == 0) && 19236 (rsm == NULL) && 19237 (tp->snd_nxt == tp->snd_max) && 19238 (ipoptlen == 0) && 19239 (tp->rcv_numsacks == 0) && 19240 rack->r_fsb_inited && 19241 TCPS_HAVEESTABLISHED(tp->t_state) && 19242 (rack->r_must_retran == 0) && 19243 ((tp->t_flags & TF_NEEDFIN) == 0) && 19244 (len > 0) && (orig_len > 0) && 19245 (orig_len > len) && 19246 ((orig_len - len) >= segsiz) && 19247 ((optlen == 0) || 19248 ((optlen == TCPOLEN_TSTAMP_APPA) && (to.to_flags & TOF_TS)))) { 19249 /* We can send at least one more MSS using our fsb */ 19250 19251 rack->r_fast_output = 1; 19252 rack->r_ctl.fsb.m = sbsndmbuf(sb, (tp->snd_max - tp->snd_una), &rack->r_ctl.fsb.off); 19253 rack->r_ctl.fsb.o_m_len = rack->r_ctl.fsb.m->m_len; 19254 rack->r_ctl.fsb.tcp_flags = flags; 19255 rack->r_ctl.fsb.left_to_send = orig_len - len; 19256 if (hw_tls) 19257 rack->r_ctl.fsb.hw_tls = 1; 19258 else 19259 rack->r_ctl.fsb.hw_tls = 0; 19260 KASSERT((rack->r_ctl.fsb.left_to_send <= (sbavail(sb) - (tp->snd_max - tp->snd_una))), 19261 ("rack:%p left_to_send:%u sbavail:%u out:%u", 19262 rack, rack->r_ctl.fsb.left_to_send, sbavail(sb), 19263 (tp->snd_max - tp->snd_una))); 19264 if (rack->r_ctl.fsb.left_to_send < segsiz) 19265 rack->r_fast_output = 0; 19266 else { 19267 if (rack->r_ctl.fsb.left_to_send == (sbavail(sb) - (tp->snd_max - tp->snd_una))) 19268 rack->r_ctl.fsb.rfo_apply_push = 1; 19269 else 19270 rack->r_ctl.fsb.rfo_apply_push = 0; 19271 } 19272 } else 19273 rack->r_fast_output = 0; 19274 rack_log_fsb(rack, tp, so, flags, 19275 ipoptlen, orig_len, len, error, 19276 (rsm == NULL), optlen, __LINE__, 2); 19277 } else if (sendalot) { 19278 int ret; 19279 19280 sack_rxmit = 0; 19281 if ((error == 0) && 19282 rack_use_rfo && 19283 ((flags & (TH_SYN|TH_FIN)) == 0) && 19284 (rsm == NULL) && 19285 (ipoptlen == 0) && 19286 (tp->rcv_numsacks == 0) && 19287 (tp->snd_nxt == tp->snd_max) && 19288 (rack->r_must_retran == 0) && 19289 rack->r_fsb_inited && 19290 TCPS_HAVEESTABLISHED(tp->t_state) && 19291 ((tp->t_flags & TF_NEEDFIN) == 0) && 19292 (len > 0) && (orig_len > 0) && 19293 (orig_len > len) && 19294 ((orig_len - len) >= segsiz) && 19295 ((optlen == 0) || 19296 ((optlen == TCPOLEN_TSTAMP_APPA) && (to.to_flags & TOF_TS)))) { 19297 /* we can use fast_output for more */ 19298 19299 rack->r_fast_output = 1; 19300 rack->r_ctl.fsb.m = sbsndmbuf(sb, (tp->snd_max - tp->snd_una), &rack->r_ctl.fsb.off); 19301 rack->r_ctl.fsb.o_m_len = rack->r_ctl.fsb.m->m_len; 19302 rack->r_ctl.fsb.tcp_flags = flags; 19303 rack->r_ctl.fsb.left_to_send = orig_len - len; 19304 if (hw_tls) 19305 rack->r_ctl.fsb.hw_tls = 1; 19306 else 19307 rack->r_ctl.fsb.hw_tls = 0; 19308 KASSERT((rack->r_ctl.fsb.left_to_send <= (sbavail(sb) - (tp->snd_max - tp->snd_una))), 19309 ("rack:%p left_to_send:%u sbavail:%u out:%u", 19310 rack, rack->r_ctl.fsb.left_to_send, sbavail(sb), 19311 (tp->snd_max - tp->snd_una))); 19312 if (rack->r_ctl.fsb.left_to_send < segsiz) { 19313 rack->r_fast_output = 0; 19314 } 19315 if (rack->r_fast_output) { 19316 if (rack->r_ctl.fsb.left_to_send == (sbavail(sb) - (tp->snd_max - tp->snd_una))) 19317 rack->r_ctl.fsb.rfo_apply_push = 1; 19318 else 19319 rack->r_ctl.fsb.rfo_apply_push = 0; 19320 rack_log_fsb(rack, tp, so, flags, 19321 ipoptlen, orig_len, len, error, 19322 (rsm == NULL), optlen, __LINE__, 3); 19323 error = 0; 19324 ret = rack_fast_output(tp, rack, ts_val, cts, ms_cts, &tv, tot_len_this_send, &error); 19325 if (ret >= 0) 19326 return (ret); 19327 else if (error) 19328 goto nomore; 19329 19330 } 19331 } 19332 goto again; 19333 } 19334 /* Assure when we leave that snd_nxt will point to top */ 19335 if (SEQ_GT(tp->snd_max, tp->snd_nxt)) 19336 tp->snd_nxt = tp->snd_max; 19337 rack_start_hpts_timer(rack, tp, cts, slot, tot_len_this_send, 0); 19338 #ifdef TCP_ACCOUNTING 19339 crtsc = get_cyclecount() - ts_val; 19340 if (tot_len_this_send) { 19341 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 19342 tp->tcp_cnt_counters[SND_OUT_DATA]++; 19343 } 19344 counter_u64_add(tcp_cnt_counters[SND_OUT_DATA], 1); 19345 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 19346 tp->tcp_proc_time[SND_OUT_DATA] += crtsc; 19347 } 19348 counter_u64_add(tcp_proc_time[SND_OUT_DATA], crtsc); 19349 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 19350 tp->tcp_cnt_counters[CNT_OF_MSS_OUT] += ((tot_len_this_send + segsiz - 1) /segsiz); 19351 } 19352 counter_u64_add(tcp_cnt_counters[CNT_OF_MSS_OUT], ((tot_len_this_send + segsiz - 1) /segsiz)); 19353 } else { 19354 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 19355 tp->tcp_cnt_counters[SND_OUT_ACK]++; 19356 } 19357 counter_u64_add(tcp_cnt_counters[SND_OUT_ACK], 1); 19358 if (tp->t_flags2 & TF2_TCP_ACCOUNTING) { 19359 tp->tcp_proc_time[SND_OUT_ACK] += crtsc; 19360 } 19361 counter_u64_add(tcp_proc_time[SND_OUT_ACK], crtsc); 19362 } 19363 sched_unpin(); 19364 #endif 19365 if (error == ENOBUFS) 19366 error = 0; 19367 return (error); 19368 } 19369 19370 static void 19371 rack_update_seg(struct tcp_rack *rack) 19372 { 19373 uint32_t orig_val; 19374 19375 orig_val = rack->r_ctl.rc_pace_max_segs; 19376 rack_set_pace_segments(rack->rc_tp, rack, __LINE__, NULL); 19377 if (orig_val != rack->r_ctl.rc_pace_max_segs) 19378 rack_log_pacing_delay_calc(rack, 0, 0, orig_val, 0, 0, 15, __LINE__, NULL, 0); 19379 } 19380 19381 static void 19382 rack_mtu_change(struct tcpcb *tp) 19383 { 19384 /* 19385 * The MSS may have changed 19386 */ 19387 struct tcp_rack *rack; 19388 struct rack_sendmap *rsm; 19389 19390 rack = (struct tcp_rack *)tp->t_fb_ptr; 19391 if (rack->r_ctl.rc_pace_min_segs != ctf_fixed_maxseg(tp)) { 19392 /* 19393 * The MTU has changed we need to resend everything 19394 * since all we have sent is lost. We first fix 19395 * up the mtu though. 19396 */ 19397 rack_set_pace_segments(tp, rack, __LINE__, NULL); 19398 /* We treat this like a full retransmit timeout without the cwnd adjustment */ 19399 rack_remxt_tmr(tp); 19400 rack->r_fast_output = 0; 19401 rack->r_ctl.rc_out_at_rto = ctf_flight_size(tp, 19402 rack->r_ctl.rc_sacked); 19403 rack->r_ctl.rc_snd_max_at_rto = tp->snd_max; 19404 rack->r_must_retran = 1; 19405 /* Mark all inflight to needing to be rxt'd */ 19406 TAILQ_FOREACH(rsm, &rack->r_ctl.rc_tmap, r_tnext) { 19407 rsm->r_flags |= RACK_MUST_RXT; 19408 } 19409 } 19410 sack_filter_clear(&rack->r_ctl.rack_sf, tp->snd_una); 19411 /* We don't use snd_nxt to retransmit */ 19412 tp->snd_nxt = tp->snd_max; 19413 } 19414 19415 static int 19416 rack_set_profile(struct tcp_rack *rack, int prof) 19417 { 19418 int err = EINVAL; 19419 if (prof == 1) { 19420 /* pace_always=1 */ 19421 if (rack->rc_always_pace == 0) { 19422 if (tcp_can_enable_pacing() == 0) 19423 return (EBUSY); 19424 } 19425 rack->rc_always_pace = 1; 19426 if (rack->use_fixed_rate || rack->gp_ready) 19427 rack_set_cc_pacing(rack); 19428 rack->rc_inp->inp_flags2 |= INP_SUPPORTS_MBUFQ; 19429 rack->rack_attempt_hdwr_pace = 0; 19430 /* cmpack=1 */ 19431 if (rack_use_cmp_acks) 19432 rack->r_use_cmp_ack = 1; 19433 if (TCPS_HAVEESTABLISHED(rack->rc_tp->t_state) && 19434 rack->r_use_cmp_ack) 19435 rack->rc_inp->inp_flags2 |= INP_MBUF_ACKCMP; 19436 /* scwnd=1 */ 19437 rack->rack_enable_scwnd = 1; 19438 /* dynamic=100 */ 19439 rack->rc_gp_dyn_mul = 1; 19440 /* gp_inc_ca */ 19441 rack->r_ctl.rack_per_of_gp_ca = 100; 19442 /* rrr_conf=3 */ 19443 rack->r_rr_config = 3; 19444 /* npush=2 */ 19445 rack->r_ctl.rc_no_push_at_mrtt = 2; 19446 /* fillcw=1 */ 19447 rack->rc_pace_to_cwnd = 1; 19448 rack->rc_pace_fill_if_rttin_range = 0; 19449 rack->rtt_limit_mul = 0; 19450 /* noprr=1 */ 19451 rack->rack_no_prr = 1; 19452 /* lscwnd=1 */ 19453 rack->r_limit_scw = 1; 19454 /* gp_inc_rec */ 19455 rack->r_ctl.rack_per_of_gp_rec = 90; 19456 err = 0; 19457 19458 } else if (prof == 3) { 19459 /* Same as profile one execept fill_cw becomes 2 (less aggressive set) */ 19460 /* pace_always=1 */ 19461 if (rack->rc_always_pace == 0) { 19462 if (tcp_can_enable_pacing() == 0) 19463 return (EBUSY); 19464 } 19465 rack->rc_always_pace = 1; 19466 if (rack->use_fixed_rate || rack->gp_ready) 19467 rack_set_cc_pacing(rack); 19468 rack->rc_inp->inp_flags2 |= INP_SUPPORTS_MBUFQ; 19469 rack->rack_attempt_hdwr_pace = 0; 19470 /* cmpack=1 */ 19471 if (rack_use_cmp_acks) 19472 rack->r_use_cmp_ack = 1; 19473 if (TCPS_HAVEESTABLISHED(rack->rc_tp->t_state) && 19474 rack->r_use_cmp_ack) 19475 rack->rc_inp->inp_flags2 |= INP_MBUF_ACKCMP; 19476 /* scwnd=1 */ 19477 rack->rack_enable_scwnd = 1; 19478 /* dynamic=100 */ 19479 rack->rc_gp_dyn_mul = 1; 19480 /* gp_inc_ca */ 19481 rack->r_ctl.rack_per_of_gp_ca = 100; 19482 /* rrr_conf=3 */ 19483 rack->r_rr_config = 3; 19484 /* npush=2 */ 19485 rack->r_ctl.rc_no_push_at_mrtt = 2; 19486 /* fillcw=2 */ 19487 rack->rc_pace_to_cwnd = 1; 19488 rack->r_fill_less_agg = 1; 19489 rack->rc_pace_fill_if_rttin_range = 0; 19490 rack->rtt_limit_mul = 0; 19491 /* noprr=1 */ 19492 rack->rack_no_prr = 1; 19493 /* lscwnd=1 */ 19494 rack->r_limit_scw = 1; 19495 /* gp_inc_rec */ 19496 rack->r_ctl.rack_per_of_gp_rec = 90; 19497 err = 0; 19498 19499 19500 } else if (prof == 2) { 19501 /* cmpack=1 */ 19502 if (rack->rc_always_pace == 0) { 19503 if (tcp_can_enable_pacing() == 0) 19504 return (EBUSY); 19505 } 19506 rack->rc_always_pace = 1; 19507 if (rack->use_fixed_rate || rack->gp_ready) 19508 rack_set_cc_pacing(rack); 19509 rack->r_use_cmp_ack = 1; 19510 if (TCPS_HAVEESTABLISHED(rack->rc_tp->t_state)) 19511 rack->rc_inp->inp_flags2 |= INP_MBUF_ACKCMP; 19512 /* pace_always=1 */ 19513 rack->rc_inp->inp_flags2 |= INP_SUPPORTS_MBUFQ; 19514 /* scwnd=1 */ 19515 rack->rack_enable_scwnd = 1; 19516 /* dynamic=100 */ 19517 rack->rc_gp_dyn_mul = 1; 19518 rack->r_ctl.rack_per_of_gp_ca = 100; 19519 /* rrr_conf=3 */ 19520 rack->r_rr_config = 3; 19521 /* npush=2 */ 19522 rack->r_ctl.rc_no_push_at_mrtt = 2; 19523 /* fillcw=1 */ 19524 rack->rc_pace_to_cwnd = 1; 19525 rack->rc_pace_fill_if_rttin_range = 0; 19526 rack->rtt_limit_mul = 0; 19527 /* noprr=1 */ 19528 rack->rack_no_prr = 1; 19529 /* lscwnd=0 */ 19530 rack->r_limit_scw = 0; 19531 err = 0; 19532 } else if (prof == 0) { 19533 /* This changes things back to the default settings */ 19534 err = 0; 19535 if (rack->rc_always_pace) { 19536 tcp_decrement_paced_conn(); 19537 rack_undo_cc_pacing(rack); 19538 rack->rc_always_pace = 0; 19539 } 19540 if (rack_pace_every_seg && tcp_can_enable_pacing()) { 19541 rack->rc_always_pace = 1; 19542 if (rack->use_fixed_rate || rack->gp_ready) 19543 rack_set_cc_pacing(rack); 19544 } else 19545 rack->rc_always_pace = 0; 19546 if (rack_dsack_std_based & 0x1) { 19547 /* Basically this means all rack timers are at least (srtt + 1/4 srtt) */ 19548 rack->rc_rack_tmr_std_based = 1; 19549 } 19550 if (rack_dsack_std_based & 0x2) { 19551 /* Basically this means rack timers are extended based on dsack by up to (2 * srtt) */ 19552 rack->rc_rack_use_dsack = 1; 19553 } 19554 if (rack_use_cmp_acks) 19555 rack->r_use_cmp_ack = 1; 19556 else 19557 rack->r_use_cmp_ack = 0; 19558 if (rack_disable_prr) 19559 rack->rack_no_prr = 1; 19560 else 19561 rack->rack_no_prr = 0; 19562 if (rack_gp_no_rec_chg) 19563 rack->rc_gp_no_rec_chg = 1; 19564 else 19565 rack->rc_gp_no_rec_chg = 0; 19566 if (rack_enable_mqueue_for_nonpaced || rack->r_use_cmp_ack) { 19567 rack->r_mbuf_queue = 1; 19568 if (TCPS_HAVEESTABLISHED(rack->rc_tp->t_state)) 19569 rack->rc_inp->inp_flags2 |= INP_MBUF_ACKCMP; 19570 rack->rc_inp->inp_flags2 |= INP_SUPPORTS_MBUFQ; 19571 } else { 19572 rack->r_mbuf_queue = 0; 19573 rack->rc_inp->inp_flags2 &= ~INP_SUPPORTS_MBUFQ; 19574 } 19575 if (rack_enable_shared_cwnd) 19576 rack->rack_enable_scwnd = 1; 19577 else 19578 rack->rack_enable_scwnd = 0; 19579 if (rack_do_dyn_mul) { 19580 /* When dynamic adjustment is on CA needs to start at 100% */ 19581 rack->rc_gp_dyn_mul = 1; 19582 if (rack_do_dyn_mul >= 100) 19583 rack->r_ctl.rack_per_of_gp_ca = rack_do_dyn_mul; 19584 } else { 19585 rack->r_ctl.rack_per_of_gp_ca = rack_per_of_gp_ca; 19586 rack->rc_gp_dyn_mul = 0; 19587 } 19588 rack->r_rr_config = 0; 19589 rack->r_ctl.rc_no_push_at_mrtt = 0; 19590 rack->rc_pace_to_cwnd = 0; 19591 rack->rc_pace_fill_if_rttin_range = 0; 19592 rack->rtt_limit_mul = 0; 19593 19594 if (rack_enable_hw_pacing) 19595 rack->rack_hdw_pace_ena = 1; 19596 else 19597 rack->rack_hdw_pace_ena = 0; 19598 if (rack_disable_prr) 19599 rack->rack_no_prr = 1; 19600 else 19601 rack->rack_no_prr = 0; 19602 if (rack_limits_scwnd) 19603 rack->r_limit_scw = 1; 19604 else 19605 rack->r_limit_scw = 0; 19606 err = 0; 19607 } 19608 return (err); 19609 } 19610 19611 static int 19612 rack_add_deferred_option(struct tcp_rack *rack, int sopt_name, uint64_t loptval) 19613 { 19614 struct deferred_opt_list *dol; 19615 19616 dol = malloc(sizeof(struct deferred_opt_list), 19617 M_TCPFSB, M_NOWAIT|M_ZERO); 19618 if (dol == NULL) { 19619 /* 19620 * No space yikes -- fail out.. 19621 */ 19622 return (0); 19623 } 19624 dol->optname = sopt_name; 19625 dol->optval = loptval; 19626 TAILQ_INSERT_TAIL(&rack->r_ctl.opt_list, dol, next); 19627 return (1); 19628 } 19629 19630 static int 19631 rack_process_option(struct tcpcb *tp, struct tcp_rack *rack, int sopt_name, 19632 uint32_t optval, uint64_t loptval) 19633 { 19634 struct epoch_tracker et; 19635 struct sockopt sopt; 19636 struct cc_newreno_opts opt; 19637 uint64_t val; 19638 int error = 0; 19639 uint16_t ca, ss; 19640 19641 switch (sopt_name) { 19642 19643 case TCP_RACK_DSACK_OPT: 19644 RACK_OPTS_INC(tcp_rack_dsack_opt); 19645 if (optval & 0x1) { 19646 rack->rc_rack_tmr_std_based = 1; 19647 } else { 19648 rack->rc_rack_tmr_std_based = 0; 19649 } 19650 if (optval & 0x2) { 19651 rack->rc_rack_use_dsack = 1; 19652 } else { 19653 rack->rc_rack_use_dsack = 0; 19654 } 19655 rack_log_dsack_event(rack, 5, __LINE__, 0, 0); 19656 break; 19657 case TCP_RACK_PACING_BETA: 19658 RACK_OPTS_INC(tcp_rack_beta); 19659 if (strcmp(tp->cc_algo->name, CCALGONAME_NEWRENO) != 0) { 19660 /* This only works for newreno. */ 19661 error = EINVAL; 19662 break; 19663 } 19664 if (rack->rc_pacing_cc_set) { 19665 /* 19666 * Set them into the real CC module 19667 * whats in the rack pcb is the old values 19668 * to be used on restoral/ 19669 */ 19670 sopt.sopt_dir = SOPT_SET; 19671 opt.name = CC_NEWRENO_BETA; 19672 opt.val = optval; 19673 if (CC_ALGO(tp)->ctl_output != NULL) 19674 error = CC_ALGO(tp)->ctl_output(tp->ccv, &sopt, &opt); 19675 else { 19676 error = ENOENT; 19677 break; 19678 } 19679 } else { 19680 /* 19681 * Not pacing yet so set it into our local 19682 * rack pcb storage. 19683 */ 19684 rack->r_ctl.rc_saved_beta.beta = optval; 19685 } 19686 break; 19687 case TCP_RACK_TIMER_SLOP: 19688 RACK_OPTS_INC(tcp_rack_timer_slop); 19689 rack->r_ctl.timer_slop = optval; 19690 if (rack->rc_tp->t_srtt) { 19691 /* 19692 * If we have an SRTT lets update t_rxtcur 19693 * to have the new slop. 19694 */ 19695 RACK_TCPT_RANGESET(tp->t_rxtcur, RACK_REXMTVAL(tp), 19696 rack_rto_min, rack_rto_max, 19697 rack->r_ctl.timer_slop); 19698 } 19699 break; 19700 case TCP_RACK_PACING_BETA_ECN: 19701 RACK_OPTS_INC(tcp_rack_beta_ecn); 19702 if (strcmp(tp->cc_algo->name, CCALGONAME_NEWRENO) != 0) { 19703 /* This only works for newreno. */ 19704 error = EINVAL; 19705 break; 19706 } 19707 if (rack->rc_pacing_cc_set) { 19708 /* 19709 * Set them into the real CC module 19710 * whats in the rack pcb is the old values 19711 * to be used on restoral/ 19712 */ 19713 sopt.sopt_dir = SOPT_SET; 19714 opt.name = CC_NEWRENO_BETA_ECN; 19715 opt.val = optval; 19716 if (CC_ALGO(tp)->ctl_output != NULL) 19717 error = CC_ALGO(tp)->ctl_output(tp->ccv, &sopt, &opt); 19718 else 19719 error = ENOENT; 19720 } else { 19721 /* 19722 * Not pacing yet so set it into our local 19723 * rack pcb storage. 19724 */ 19725 rack->r_ctl.rc_saved_beta.beta_ecn = optval; 19726 rack->r_ctl.rc_saved_beta.newreno_flags = CC_NEWRENO_BETA_ECN_ENABLED; 19727 } 19728 break; 19729 case TCP_DEFER_OPTIONS: 19730 RACK_OPTS_INC(tcp_defer_opt); 19731 if (optval) { 19732 if (rack->gp_ready) { 19733 /* Too late */ 19734 error = EINVAL; 19735 break; 19736 } 19737 rack->defer_options = 1; 19738 } else 19739 rack->defer_options = 0; 19740 break; 19741 case TCP_RACK_MEASURE_CNT: 19742 RACK_OPTS_INC(tcp_rack_measure_cnt); 19743 if (optval && (optval <= 0xff)) { 19744 rack->r_ctl.req_measurements = optval; 19745 } else 19746 error = EINVAL; 19747 break; 19748 case TCP_REC_ABC_VAL: 19749 RACK_OPTS_INC(tcp_rec_abc_val); 19750 if (optval > 0) 19751 rack->r_use_labc_for_rec = 1; 19752 else 19753 rack->r_use_labc_for_rec = 0; 19754 break; 19755 case TCP_RACK_ABC_VAL: 19756 RACK_OPTS_INC(tcp_rack_abc_val); 19757 if ((optval > 0) && (optval < 255)) 19758 rack->rc_labc = optval; 19759 else 19760 error = EINVAL; 19761 break; 19762 case TCP_HDWR_UP_ONLY: 19763 RACK_OPTS_INC(tcp_pacing_up_only); 19764 if (optval) 19765 rack->r_up_only = 1; 19766 else 19767 rack->r_up_only = 0; 19768 break; 19769 case TCP_PACING_RATE_CAP: 19770 RACK_OPTS_INC(tcp_pacing_rate_cap); 19771 rack->r_ctl.bw_rate_cap = loptval; 19772 break; 19773 case TCP_RACK_PROFILE: 19774 RACK_OPTS_INC(tcp_profile); 19775 error = rack_set_profile(rack, optval); 19776 break; 19777 case TCP_USE_CMP_ACKS: 19778 RACK_OPTS_INC(tcp_use_cmp_acks); 19779 if ((optval == 0) && (rack->rc_inp->inp_flags2 & INP_MBUF_ACKCMP)) { 19780 /* You can't turn it off once its on! */ 19781 error = EINVAL; 19782 } else if ((optval == 1) && (rack->r_use_cmp_ack == 0)) { 19783 rack->r_use_cmp_ack = 1; 19784 rack->r_mbuf_queue = 1; 19785 tp->t_inpcb->inp_flags2 |= INP_SUPPORTS_MBUFQ; 19786 } 19787 if (rack->r_use_cmp_ack && TCPS_HAVEESTABLISHED(tp->t_state)) 19788 rack->rc_inp->inp_flags2 |= INP_MBUF_ACKCMP; 19789 break; 19790 case TCP_SHARED_CWND_TIME_LIMIT: 19791 RACK_OPTS_INC(tcp_lscwnd); 19792 if (optval) 19793 rack->r_limit_scw = 1; 19794 else 19795 rack->r_limit_scw = 0; 19796 break; 19797 case TCP_RACK_PACE_TO_FILL: 19798 RACK_OPTS_INC(tcp_fillcw); 19799 if (optval == 0) 19800 rack->rc_pace_to_cwnd = 0; 19801 else { 19802 rack->rc_pace_to_cwnd = 1; 19803 if (optval > 1) 19804 rack->r_fill_less_agg = 1; 19805 } 19806 if ((optval >= rack_gp_rtt_maxmul) && 19807 rack_gp_rtt_maxmul && 19808 (optval < 0xf)) { 19809 rack->rc_pace_fill_if_rttin_range = 1; 19810 rack->rtt_limit_mul = optval; 19811 } else { 19812 rack->rc_pace_fill_if_rttin_range = 0; 19813 rack->rtt_limit_mul = 0; 19814 } 19815 break; 19816 case TCP_RACK_NO_PUSH_AT_MAX: 19817 RACK_OPTS_INC(tcp_npush); 19818 if (optval == 0) 19819 rack->r_ctl.rc_no_push_at_mrtt = 0; 19820 else if (optval < 0xff) 19821 rack->r_ctl.rc_no_push_at_mrtt = optval; 19822 else 19823 error = EINVAL; 19824 break; 19825 case TCP_SHARED_CWND_ENABLE: 19826 RACK_OPTS_INC(tcp_rack_scwnd); 19827 if (optval == 0) 19828 rack->rack_enable_scwnd = 0; 19829 else 19830 rack->rack_enable_scwnd = 1; 19831 break; 19832 case TCP_RACK_MBUF_QUEUE: 19833 /* Now do we use the LRO mbuf-queue feature */ 19834 RACK_OPTS_INC(tcp_rack_mbufq); 19835 if (optval || rack->r_use_cmp_ack) 19836 rack->r_mbuf_queue = 1; 19837 else 19838 rack->r_mbuf_queue = 0; 19839 if (rack->r_mbuf_queue || rack->rc_always_pace || rack->r_use_cmp_ack) 19840 tp->t_inpcb->inp_flags2 |= INP_SUPPORTS_MBUFQ; 19841 else 19842 tp->t_inpcb->inp_flags2 &= ~INP_SUPPORTS_MBUFQ; 19843 break; 19844 case TCP_RACK_NONRXT_CFG_RATE: 19845 RACK_OPTS_INC(tcp_rack_cfg_rate); 19846 if (optval == 0) 19847 rack->rack_rec_nonrxt_use_cr = 0; 19848 else 19849 rack->rack_rec_nonrxt_use_cr = 1; 19850 break; 19851 case TCP_NO_PRR: 19852 RACK_OPTS_INC(tcp_rack_noprr); 19853 if (optval == 0) 19854 rack->rack_no_prr = 0; 19855 else if (optval == 1) 19856 rack->rack_no_prr = 1; 19857 else if (optval == 2) 19858 rack->no_prr_addback = 1; 19859 else 19860 error = EINVAL; 19861 break; 19862 case TCP_TIMELY_DYN_ADJ: 19863 RACK_OPTS_INC(tcp_timely_dyn); 19864 if (optval == 0) 19865 rack->rc_gp_dyn_mul = 0; 19866 else { 19867 rack->rc_gp_dyn_mul = 1; 19868 if (optval >= 100) { 19869 /* 19870 * If the user sets something 100 or more 19871 * its the gp_ca value. 19872 */ 19873 rack->r_ctl.rack_per_of_gp_ca = optval; 19874 } 19875 } 19876 break; 19877 case TCP_RACK_DO_DETECTION: 19878 RACK_OPTS_INC(tcp_rack_do_detection); 19879 if (optval == 0) 19880 rack->do_detection = 0; 19881 else 19882 rack->do_detection = 1; 19883 break; 19884 case TCP_RACK_TLP_USE: 19885 if ((optval < TLP_USE_ID) || (optval > TLP_USE_TWO_TWO)) { 19886 error = EINVAL; 19887 break; 19888 } 19889 RACK_OPTS_INC(tcp_tlp_use); 19890 rack->rack_tlp_threshold_use = optval; 19891 break; 19892 case TCP_RACK_TLP_REDUCE: 19893 /* RACK TLP cwnd reduction (bool) */ 19894 RACK_OPTS_INC(tcp_rack_tlp_reduce); 19895 rack->r_ctl.rc_tlp_cwnd_reduce = optval; 19896 break; 19897 /* Pacing related ones */ 19898 case TCP_RACK_PACE_ALWAYS: 19899 /* 19900 * zero is old rack method, 1 is new 19901 * method using a pacing rate. 19902 */ 19903 RACK_OPTS_INC(tcp_rack_pace_always); 19904 if (optval > 0) { 19905 if (rack->rc_always_pace) { 19906 error = EALREADY; 19907 break; 19908 } else if (tcp_can_enable_pacing()) { 19909 rack->rc_always_pace = 1; 19910 if (rack->use_fixed_rate || rack->gp_ready) 19911 rack_set_cc_pacing(rack); 19912 } 19913 else { 19914 error = ENOSPC; 19915 break; 19916 } 19917 } else { 19918 if (rack->rc_always_pace) { 19919 tcp_decrement_paced_conn(); 19920 rack->rc_always_pace = 0; 19921 rack_undo_cc_pacing(rack); 19922 } 19923 } 19924 if (rack->r_mbuf_queue || rack->rc_always_pace || rack->r_use_cmp_ack) 19925 tp->t_inpcb->inp_flags2 |= INP_SUPPORTS_MBUFQ; 19926 else 19927 tp->t_inpcb->inp_flags2 &= ~INP_SUPPORTS_MBUFQ; 19928 /* A rate may be set irate or other, if so set seg size */ 19929 rack_update_seg(rack); 19930 break; 19931 case TCP_BBR_RACK_INIT_RATE: 19932 RACK_OPTS_INC(tcp_initial_rate); 19933 val = optval; 19934 /* Change from kbits per second to bytes per second */ 19935 val *= 1000; 19936 val /= 8; 19937 rack->r_ctl.init_rate = val; 19938 if (rack->rc_init_win != rack_default_init_window) { 19939 uint32_t win, snt; 19940 19941 /* 19942 * Options don't always get applied 19943 * in the order you think. So in order 19944 * to assure we update a cwnd we need 19945 * to check and see if we are still 19946 * where we should raise the cwnd. 19947 */ 19948 win = rc_init_window(rack); 19949 if (SEQ_GT(tp->snd_max, tp->iss)) 19950 snt = tp->snd_max - tp->iss; 19951 else 19952 snt = 0; 19953 if ((snt < win) && 19954 (tp->snd_cwnd < win)) 19955 tp->snd_cwnd = win; 19956 } 19957 if (rack->rc_always_pace) 19958 rack_update_seg(rack); 19959 break; 19960 case TCP_BBR_IWINTSO: 19961 RACK_OPTS_INC(tcp_initial_win); 19962 if (optval && (optval <= 0xff)) { 19963 uint32_t win, snt; 19964 19965 rack->rc_init_win = optval; 19966 win = rc_init_window(rack); 19967 if (SEQ_GT(tp->snd_max, tp->iss)) 19968 snt = tp->snd_max - tp->iss; 19969 else 19970 snt = 0; 19971 if ((snt < win) && 19972 (tp->t_srtt | 19973 #ifdef NETFLIX_PEAKRATE 19974 tp->t_maxpeakrate | 19975 #endif 19976 rack->r_ctl.init_rate)) { 19977 /* 19978 * We are not past the initial window 19979 * and we have some bases for pacing, 19980 * so we need to possibly adjust up 19981 * the cwnd. Note even if we don't set 19982 * the cwnd, its still ok to raise the rc_init_win 19983 * which can be used coming out of idle when we 19984 * would have a rate. 19985 */ 19986 if (tp->snd_cwnd < win) 19987 tp->snd_cwnd = win; 19988 } 19989 if (rack->rc_always_pace) 19990 rack_update_seg(rack); 19991 } else 19992 error = EINVAL; 19993 break; 19994 case TCP_RACK_FORCE_MSEG: 19995 RACK_OPTS_INC(tcp_rack_force_max_seg); 19996 if (optval) 19997 rack->rc_force_max_seg = 1; 19998 else 19999 rack->rc_force_max_seg = 0; 20000 break; 20001 case TCP_RACK_PACE_MAX_SEG: 20002 /* Max segments size in a pace in bytes */ 20003 RACK_OPTS_INC(tcp_rack_max_seg); 20004 rack->rc_user_set_max_segs = optval; 20005 rack_set_pace_segments(tp, rack, __LINE__, NULL); 20006 break; 20007 case TCP_RACK_PACE_RATE_REC: 20008 /* Set the fixed pacing rate in Bytes per second ca */ 20009 RACK_OPTS_INC(tcp_rack_pace_rate_rec); 20010 rack->r_ctl.rc_fixed_pacing_rate_rec = optval; 20011 if (rack->r_ctl.rc_fixed_pacing_rate_ca == 0) 20012 rack->r_ctl.rc_fixed_pacing_rate_ca = optval; 20013 if (rack->r_ctl.rc_fixed_pacing_rate_ss == 0) 20014 rack->r_ctl.rc_fixed_pacing_rate_ss = optval; 20015 rack->use_fixed_rate = 1; 20016 if (rack->rc_always_pace) 20017 rack_set_cc_pacing(rack); 20018 rack_log_pacing_delay_calc(rack, 20019 rack->r_ctl.rc_fixed_pacing_rate_ss, 20020 rack->r_ctl.rc_fixed_pacing_rate_ca, 20021 rack->r_ctl.rc_fixed_pacing_rate_rec, 0, 0, 8, 20022 __LINE__, NULL,0); 20023 break; 20024 20025 case TCP_RACK_PACE_RATE_SS: 20026 /* Set the fixed pacing rate in Bytes per second ca */ 20027 RACK_OPTS_INC(tcp_rack_pace_rate_ss); 20028 rack->r_ctl.rc_fixed_pacing_rate_ss = optval; 20029 if (rack->r_ctl.rc_fixed_pacing_rate_ca == 0) 20030 rack->r_ctl.rc_fixed_pacing_rate_ca = optval; 20031 if (rack->r_ctl.rc_fixed_pacing_rate_rec == 0) 20032 rack->r_ctl.rc_fixed_pacing_rate_rec = optval; 20033 rack->use_fixed_rate = 1; 20034 if (rack->rc_always_pace) 20035 rack_set_cc_pacing(rack); 20036 rack_log_pacing_delay_calc(rack, 20037 rack->r_ctl.rc_fixed_pacing_rate_ss, 20038 rack->r_ctl.rc_fixed_pacing_rate_ca, 20039 rack->r_ctl.rc_fixed_pacing_rate_rec, 0, 0, 8, 20040 __LINE__, NULL, 0); 20041 break; 20042 20043 case TCP_RACK_PACE_RATE_CA: 20044 /* Set the fixed pacing rate in Bytes per second ca */ 20045 RACK_OPTS_INC(tcp_rack_pace_rate_ca); 20046 rack->r_ctl.rc_fixed_pacing_rate_ca = optval; 20047 if (rack->r_ctl.rc_fixed_pacing_rate_ss == 0) 20048 rack->r_ctl.rc_fixed_pacing_rate_ss = optval; 20049 if (rack->r_ctl.rc_fixed_pacing_rate_rec == 0) 20050 rack->r_ctl.rc_fixed_pacing_rate_rec = optval; 20051 rack->use_fixed_rate = 1; 20052 if (rack->rc_always_pace) 20053 rack_set_cc_pacing(rack); 20054 rack_log_pacing_delay_calc(rack, 20055 rack->r_ctl.rc_fixed_pacing_rate_ss, 20056 rack->r_ctl.rc_fixed_pacing_rate_ca, 20057 rack->r_ctl.rc_fixed_pacing_rate_rec, 0, 0, 8, 20058 __LINE__, NULL, 0); 20059 break; 20060 case TCP_RACK_GP_INCREASE_REC: 20061 RACK_OPTS_INC(tcp_gp_inc_rec); 20062 rack->r_ctl.rack_per_of_gp_rec = optval; 20063 rack_log_pacing_delay_calc(rack, 20064 rack->r_ctl.rack_per_of_gp_ss, 20065 rack->r_ctl.rack_per_of_gp_ca, 20066 rack->r_ctl.rack_per_of_gp_rec, 0, 0, 1, 20067 __LINE__, NULL, 0); 20068 break; 20069 case TCP_RACK_GP_INCREASE_CA: 20070 RACK_OPTS_INC(tcp_gp_inc_ca); 20071 ca = optval; 20072 if (ca < 100) { 20073 /* 20074 * We don't allow any reduction 20075 * over the GP b/w. 20076 */ 20077 error = EINVAL; 20078 break; 20079 } 20080 rack->r_ctl.rack_per_of_gp_ca = ca; 20081 rack_log_pacing_delay_calc(rack, 20082 rack->r_ctl.rack_per_of_gp_ss, 20083 rack->r_ctl.rack_per_of_gp_ca, 20084 rack->r_ctl.rack_per_of_gp_rec, 0, 0, 1, 20085 __LINE__, NULL, 0); 20086 break; 20087 case TCP_RACK_GP_INCREASE_SS: 20088 RACK_OPTS_INC(tcp_gp_inc_ss); 20089 ss = optval; 20090 if (ss < 100) { 20091 /* 20092 * We don't allow any reduction 20093 * over the GP b/w. 20094 */ 20095 error = EINVAL; 20096 break; 20097 } 20098 rack->r_ctl.rack_per_of_gp_ss = ss; 20099 rack_log_pacing_delay_calc(rack, 20100 rack->r_ctl.rack_per_of_gp_ss, 20101 rack->r_ctl.rack_per_of_gp_ca, 20102 rack->r_ctl.rack_per_of_gp_rec, 0, 0, 1, 20103 __LINE__, NULL, 0); 20104 break; 20105 case TCP_RACK_RR_CONF: 20106 RACK_OPTS_INC(tcp_rack_rrr_no_conf_rate); 20107 if (optval && optval <= 3) 20108 rack->r_rr_config = optval; 20109 else 20110 rack->r_rr_config = 0; 20111 break; 20112 case TCP_HDWR_RATE_CAP: 20113 RACK_OPTS_INC(tcp_hdwr_rate_cap); 20114 if (optval) { 20115 if (rack->r_rack_hw_rate_caps == 0) 20116 rack->r_rack_hw_rate_caps = 1; 20117 else 20118 error = EALREADY; 20119 } else { 20120 rack->r_rack_hw_rate_caps = 0; 20121 } 20122 break; 20123 case TCP_BBR_HDWR_PACE: 20124 RACK_OPTS_INC(tcp_hdwr_pacing); 20125 if (optval){ 20126 if (rack->rack_hdrw_pacing == 0) { 20127 rack->rack_hdw_pace_ena = 1; 20128 rack->rack_attempt_hdwr_pace = 0; 20129 } else 20130 error = EALREADY; 20131 } else { 20132 rack->rack_hdw_pace_ena = 0; 20133 #ifdef RATELIMIT 20134 if (rack->r_ctl.crte != NULL) { 20135 rack->rack_hdrw_pacing = 0; 20136 rack->rack_attempt_hdwr_pace = 0; 20137 tcp_rel_pacing_rate(rack->r_ctl.crte, tp); 20138 rack->r_ctl.crte = NULL; 20139 } 20140 #endif 20141 } 20142 break; 20143 /* End Pacing related ones */ 20144 case TCP_RACK_PRR_SENDALOT: 20145 /* Allow PRR to send more than one seg */ 20146 RACK_OPTS_INC(tcp_rack_prr_sendalot); 20147 rack->r_ctl.rc_prr_sendalot = optval; 20148 break; 20149 case TCP_RACK_MIN_TO: 20150 /* Minimum time between rack t-o's in ms */ 20151 RACK_OPTS_INC(tcp_rack_min_to); 20152 rack->r_ctl.rc_min_to = optval; 20153 break; 20154 case TCP_RACK_EARLY_SEG: 20155 /* If early recovery max segments */ 20156 RACK_OPTS_INC(tcp_rack_early_seg); 20157 rack->r_ctl.rc_early_recovery_segs = optval; 20158 break; 20159 case TCP_RACK_ENABLE_HYSTART: 20160 { 20161 if (optval) { 20162 tp->ccv->flags |= CCF_HYSTART_ALLOWED; 20163 if (rack_do_hystart > RACK_HYSTART_ON) 20164 tp->ccv->flags |= CCF_HYSTART_CAN_SH_CWND; 20165 if (rack_do_hystart > RACK_HYSTART_ON_W_SC) 20166 tp->ccv->flags |= CCF_HYSTART_CONS_SSTH; 20167 } else { 20168 tp->ccv->flags &= ~(CCF_HYSTART_ALLOWED|CCF_HYSTART_CAN_SH_CWND|CCF_HYSTART_CONS_SSTH); 20169 } 20170 } 20171 break; 20172 case TCP_RACK_REORD_THRESH: 20173 /* RACK reorder threshold (shift amount) */ 20174 RACK_OPTS_INC(tcp_rack_reord_thresh); 20175 if ((optval > 0) && (optval < 31)) 20176 rack->r_ctl.rc_reorder_shift = optval; 20177 else 20178 error = EINVAL; 20179 break; 20180 case TCP_RACK_REORD_FADE: 20181 /* Does reordering fade after ms time */ 20182 RACK_OPTS_INC(tcp_rack_reord_fade); 20183 rack->r_ctl.rc_reorder_fade = optval; 20184 break; 20185 case TCP_RACK_TLP_THRESH: 20186 /* RACK TLP theshold i.e. srtt+(srtt/N) */ 20187 RACK_OPTS_INC(tcp_rack_tlp_thresh); 20188 if (optval) 20189 rack->r_ctl.rc_tlp_threshold = optval; 20190 else 20191 error = EINVAL; 20192 break; 20193 case TCP_BBR_USE_RACK_RR: 20194 RACK_OPTS_INC(tcp_rack_rr); 20195 if (optval) 20196 rack->use_rack_rr = 1; 20197 else 20198 rack->use_rack_rr = 0; 20199 break; 20200 case TCP_FAST_RSM_HACK: 20201 RACK_OPTS_INC(tcp_rack_fastrsm_hack); 20202 if (optval) 20203 rack->fast_rsm_hack = 1; 20204 else 20205 rack->fast_rsm_hack = 0; 20206 break; 20207 case TCP_RACK_PKT_DELAY: 20208 /* RACK added ms i.e. rack-rtt + reord + N */ 20209 RACK_OPTS_INC(tcp_rack_pkt_delay); 20210 rack->r_ctl.rc_pkt_delay = optval; 20211 break; 20212 case TCP_DELACK: 20213 RACK_OPTS_INC(tcp_rack_delayed_ack); 20214 if (optval == 0) 20215 tp->t_delayed_ack = 0; 20216 else 20217 tp->t_delayed_ack = 1; 20218 if (tp->t_flags & TF_DELACK) { 20219 tp->t_flags &= ~TF_DELACK; 20220 tp->t_flags |= TF_ACKNOW; 20221 NET_EPOCH_ENTER(et); 20222 rack_output(tp); 20223 NET_EPOCH_EXIT(et); 20224 } 20225 break; 20226 20227 case TCP_BBR_RACK_RTT_USE: 20228 RACK_OPTS_INC(tcp_rack_rtt_use); 20229 if ((optval != USE_RTT_HIGH) && 20230 (optval != USE_RTT_LOW) && 20231 (optval != USE_RTT_AVG)) 20232 error = EINVAL; 20233 else 20234 rack->r_ctl.rc_rate_sample_method = optval; 20235 break; 20236 case TCP_DATA_AFTER_CLOSE: 20237 RACK_OPTS_INC(tcp_data_after_close); 20238 if (optval) 20239 rack->rc_allow_data_af_clo = 1; 20240 else 20241 rack->rc_allow_data_af_clo = 0; 20242 break; 20243 default: 20244 break; 20245 } 20246 #ifdef NETFLIX_STATS 20247 tcp_log_socket_option(tp, sopt_name, optval, error); 20248 #endif 20249 return (error); 20250 } 20251 20252 20253 static void 20254 rack_apply_deferred_options(struct tcp_rack *rack) 20255 { 20256 struct deferred_opt_list *dol, *sdol; 20257 uint32_t s_optval; 20258 20259 TAILQ_FOREACH_SAFE(dol, &rack->r_ctl.opt_list, next, sdol) { 20260 TAILQ_REMOVE(&rack->r_ctl.opt_list, dol, next); 20261 /* Disadvantage of deferal is you loose the error return */ 20262 s_optval = (uint32_t)dol->optval; 20263 (void)rack_process_option(rack->rc_tp, rack, dol->optname, s_optval, dol->optval); 20264 free(dol, M_TCPDO); 20265 } 20266 } 20267 20268 static void 20269 rack_hw_tls_change(struct tcpcb *tp, int chg) 20270 { 20271 /* 20272 * HW tls state has changed.. fix all 20273 * rsm's in flight. 20274 */ 20275 struct tcp_rack *rack; 20276 struct rack_sendmap *rsm; 20277 20278 rack = (struct tcp_rack *)tp->t_fb_ptr; 20279 RB_FOREACH(rsm, rack_rb_tree_head, &rack->r_ctl.rc_mtree) { 20280 if (chg) 20281 rsm->r_hw_tls = 1; 20282 else 20283 rsm->r_hw_tls = 0; 20284 } 20285 if (chg) 20286 rack->r_ctl.fsb.hw_tls = 1; 20287 else 20288 rack->r_ctl.fsb.hw_tls = 0; 20289 } 20290 20291 static int 20292 rack_pru_options(struct tcpcb *tp, int flags) 20293 { 20294 if (flags & PRUS_OOB) 20295 return (EOPNOTSUPP); 20296 return (0); 20297 } 20298 20299 static struct tcp_function_block __tcp_rack = { 20300 .tfb_tcp_block_name = __XSTRING(STACKNAME), 20301 .tfb_tcp_output = rack_output, 20302 .tfb_do_queued_segments = ctf_do_queued_segments, 20303 .tfb_do_segment_nounlock = rack_do_segment_nounlock, 20304 .tfb_tcp_do_segment = rack_do_segment, 20305 .tfb_tcp_ctloutput = rack_ctloutput, 20306 .tfb_tcp_fb_init = rack_init, 20307 .tfb_tcp_fb_fini = rack_fini, 20308 .tfb_tcp_timer_stop_all = rack_stopall, 20309 .tfb_tcp_timer_activate = rack_timer_activate, 20310 .tfb_tcp_timer_active = rack_timer_active, 20311 .tfb_tcp_timer_stop = rack_timer_stop, 20312 .tfb_tcp_rexmit_tmr = rack_remxt_tmr, 20313 .tfb_tcp_handoff_ok = rack_handoff_ok, 20314 .tfb_tcp_mtu_chg = rack_mtu_change, 20315 .tfb_pru_options = rack_pru_options, 20316 .tfb_hwtls_change = rack_hw_tls_change, 20317 .tfb_flags = TCP_FUNC_OUTPUT_CANDROP, 20318 }; 20319 20320 /* 20321 * rack_ctloutput() must drop the inpcb lock before performing copyin on 20322 * socket option arguments. When it re-acquires the lock after the copy, it 20323 * has to revalidate that the connection is still valid for the socket 20324 * option. 20325 */ 20326 static int 20327 rack_set_sockopt(struct inpcb *inp, struct sockopt *sopt) 20328 { 20329 #ifdef INET6 20330 struct ip6_hdr *ip6; 20331 #endif 20332 #ifdef INET 20333 struct ip *ip; 20334 #endif 20335 struct tcpcb *tp; 20336 struct tcp_rack *rack; 20337 uint64_t loptval; 20338 int32_t error = 0, optval; 20339 20340 tp = intotcpcb(inp); 20341 rack = (struct tcp_rack *)tp->t_fb_ptr; 20342 if (rack == NULL) { 20343 INP_WUNLOCK(inp); 20344 return (EINVAL); 20345 } 20346 #ifdef INET6 20347 ip6 = (struct ip6_hdr *)rack->r_ctl.fsb.tcp_ip_hdr; 20348 #endif 20349 #ifdef INET 20350 ip = (struct ip *)rack->r_ctl.fsb.tcp_ip_hdr; 20351 #endif 20352 20353 switch (sopt->sopt_level) { 20354 #ifdef INET6 20355 case IPPROTO_IPV6: 20356 MPASS(inp->inp_vflag & INP_IPV6PROTO); 20357 switch (sopt->sopt_name) { 20358 case IPV6_USE_MIN_MTU: 20359 tcp6_use_min_mtu(tp); 20360 break; 20361 case IPV6_TCLASS: 20362 /* 20363 * The DSCP codepoint has changed, update the fsb. 20364 */ 20365 ip6->ip6_flow = (ip6->ip6_flow & ~IPV6_FLOWINFO_MASK) | 20366 (rack->rc_inp->inp_flow & IPV6_FLOWINFO_MASK); 20367 break; 20368 } 20369 INP_WUNLOCK(inp); 20370 return (0); 20371 #endif 20372 #ifdef INET 20373 case IPPROTO_IP: 20374 switch (sopt->sopt_name) { 20375 case IP_TOS: 20376 /* 20377 * The DSCP codepoint has changed, update the fsb. 20378 */ 20379 ip->ip_tos = rack->rc_inp->inp_ip_tos; 20380 break; 20381 case IP_TTL: 20382 /* 20383 * The TTL has changed, update the fsb. 20384 */ 20385 ip->ip_ttl = rack->rc_inp->inp_ip_ttl; 20386 break; 20387 } 20388 INP_WUNLOCK(inp); 20389 return (0); 20390 #endif 20391 } 20392 20393 switch (sopt->sopt_name) { 20394 case TCP_RACK_TLP_REDUCE: /* URL:tlp_reduce */ 20395 /* Pacing related ones */ 20396 case TCP_RACK_PACE_ALWAYS: /* URL:pace_always */ 20397 case TCP_BBR_RACK_INIT_RATE: /* URL:irate */ 20398 case TCP_BBR_IWINTSO: /* URL:tso_iwin */ 20399 case TCP_RACK_PACE_MAX_SEG: /* URL:pace_max_seg */ 20400 case TCP_RACK_FORCE_MSEG: /* URL:force_max_seg */ 20401 case TCP_RACK_PACE_RATE_CA: /* URL:pr_ca */ 20402 case TCP_RACK_PACE_RATE_SS: /* URL:pr_ss*/ 20403 case TCP_RACK_PACE_RATE_REC: /* URL:pr_rec */ 20404 case TCP_RACK_GP_INCREASE_CA: /* URL:gp_inc_ca */ 20405 case TCP_RACK_GP_INCREASE_SS: /* URL:gp_inc_ss */ 20406 case TCP_RACK_GP_INCREASE_REC: /* URL:gp_inc_rec */ 20407 case TCP_RACK_RR_CONF: /* URL:rrr_conf */ 20408 case TCP_BBR_HDWR_PACE: /* URL:hdwrpace */ 20409 case TCP_HDWR_RATE_CAP: /* URL:hdwrcap boolean */ 20410 case TCP_PACING_RATE_CAP: /* URL:cap -- used by side-channel */ 20411 case TCP_HDWR_UP_ONLY: /* URL:uponly -- hardware pacing boolean */ 20412 /* End pacing related */ 20413 case TCP_FAST_RSM_HACK: /* URL:frsm_hack */ 20414 case TCP_DELACK: /* URL:delack (in base TCP i.e. tcp_hints along with cc etc ) */ 20415 case TCP_RACK_PRR_SENDALOT: /* URL:prr_sendalot */ 20416 case TCP_RACK_MIN_TO: /* URL:min_to */ 20417 case TCP_RACK_EARLY_SEG: /* URL:early_seg */ 20418 case TCP_RACK_REORD_THRESH: /* URL:reord_thresh */ 20419 case TCP_RACK_REORD_FADE: /* URL:reord_fade */ 20420 case TCP_RACK_TLP_THRESH: /* URL:tlp_thresh */ 20421 case TCP_RACK_PKT_DELAY: /* URL:pkt_delay */ 20422 case TCP_RACK_TLP_USE: /* URL:tlp_use */ 20423 case TCP_BBR_RACK_RTT_USE: /* URL:rttuse */ 20424 case TCP_BBR_USE_RACK_RR: /* URL:rackrr */ 20425 case TCP_RACK_DO_DETECTION: /* URL:detect */ 20426 case TCP_NO_PRR: /* URL:noprr */ 20427 case TCP_TIMELY_DYN_ADJ: /* URL:dynamic */ 20428 case TCP_DATA_AFTER_CLOSE: /* no URL */ 20429 case TCP_RACK_NONRXT_CFG_RATE: /* URL:nonrxtcr */ 20430 case TCP_SHARED_CWND_ENABLE: /* URL:scwnd */ 20431 case TCP_RACK_MBUF_QUEUE: /* URL:mqueue */ 20432 case TCP_RACK_NO_PUSH_AT_MAX: /* URL:npush */ 20433 case TCP_RACK_PACE_TO_FILL: /* URL:fillcw */ 20434 case TCP_SHARED_CWND_TIME_LIMIT: /* URL:lscwnd */ 20435 case TCP_RACK_PROFILE: /* URL:profile */ 20436 case TCP_USE_CMP_ACKS: /* URL:cmpack */ 20437 case TCP_RACK_ABC_VAL: /* URL:labc */ 20438 case TCP_REC_ABC_VAL: /* URL:reclabc */ 20439 case TCP_RACK_MEASURE_CNT: /* URL:measurecnt */ 20440 case TCP_DEFER_OPTIONS: /* URL:defer */ 20441 case TCP_RACK_DSACK_OPT: /* URL:dsack */ 20442 case TCP_RACK_PACING_BETA: /* URL:pacing_beta */ 20443 case TCP_RACK_PACING_BETA_ECN: /* URL:pacing_beta_ecn */ 20444 case TCP_RACK_TIMER_SLOP: /* URL:timer_slop */ 20445 case TCP_RACK_ENABLE_HYSTART: /* URL:hystart */ 20446 break; 20447 default: 20448 /* Filter off all unknown options to the base stack */ 20449 return (tcp_default_ctloutput(inp, sopt)); 20450 break; 20451 } 20452 INP_WUNLOCK(inp); 20453 if (sopt->sopt_name == TCP_PACING_RATE_CAP) { 20454 error = sooptcopyin(sopt, &loptval, sizeof(loptval), sizeof(loptval)); 20455 /* 20456 * We truncate it down to 32 bits for the socket-option trace this 20457 * means rates > 34Gbps won't show right, but thats probably ok. 20458 */ 20459 optval = (uint32_t)loptval; 20460 } else { 20461 error = sooptcopyin(sopt, &optval, sizeof(optval), sizeof(optval)); 20462 /* Save it in 64 bit form too */ 20463 loptval = optval; 20464 } 20465 if (error) 20466 return (error); 20467 INP_WLOCK(inp); 20468 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { 20469 INP_WUNLOCK(inp); 20470 return (ECONNRESET); 20471 } 20472 if (tp->t_fb != &__tcp_rack) { 20473 INP_WUNLOCK(inp); 20474 return (ENOPROTOOPT); 20475 } 20476 if (rack->defer_options && (rack->gp_ready == 0) && 20477 (sopt->sopt_name != TCP_DEFER_OPTIONS) && 20478 (sopt->sopt_name != TCP_RACK_PACING_BETA) && 20479 (sopt->sopt_name != TCP_RACK_PACING_BETA_ECN) && 20480 (sopt->sopt_name != TCP_RACK_MEASURE_CNT)) { 20481 /* Options are beind deferred */ 20482 if (rack_add_deferred_option(rack, sopt->sopt_name, loptval)) { 20483 INP_WUNLOCK(inp); 20484 return (0); 20485 } else { 20486 /* No memory to defer, fail */ 20487 INP_WUNLOCK(inp); 20488 return (ENOMEM); 20489 } 20490 } 20491 error = rack_process_option(tp, rack, sopt->sopt_name, optval, loptval); 20492 INP_WUNLOCK(inp); 20493 return (error); 20494 } 20495 20496 static void 20497 rack_fill_info(struct tcpcb *tp, struct tcp_info *ti) 20498 { 20499 20500 INP_WLOCK_ASSERT(tp->t_inpcb); 20501 bzero(ti, sizeof(*ti)); 20502 20503 ti->tcpi_state = tp->t_state; 20504 if ((tp->t_flags & TF_REQ_TSTMP) && (tp->t_flags & TF_RCVD_TSTMP)) 20505 ti->tcpi_options |= TCPI_OPT_TIMESTAMPS; 20506 if (tp->t_flags & TF_SACK_PERMIT) 20507 ti->tcpi_options |= TCPI_OPT_SACK; 20508 if ((tp->t_flags & TF_REQ_SCALE) && (tp->t_flags & TF_RCVD_SCALE)) { 20509 ti->tcpi_options |= TCPI_OPT_WSCALE; 20510 ti->tcpi_snd_wscale = tp->snd_scale; 20511 ti->tcpi_rcv_wscale = tp->rcv_scale; 20512 } 20513 if (tp->t_flags2 & (TF2_ECN_PERMIT | TF2_ACE_PERMIT)) 20514 ti->tcpi_options |= TCPI_OPT_ECN; 20515 if (tp->t_flags & TF_FASTOPEN) 20516 ti->tcpi_options |= TCPI_OPT_TFO; 20517 /* still kept in ticks is t_rcvtime */ 20518 ti->tcpi_last_data_recv = ((uint32_t)ticks - tp->t_rcvtime) * tick; 20519 /* Since we hold everything in precise useconds this is easy */ 20520 ti->tcpi_rtt = tp->t_srtt; 20521 ti->tcpi_rttvar = tp->t_rttvar; 20522 ti->tcpi_rto = tp->t_rxtcur; 20523 ti->tcpi_snd_ssthresh = tp->snd_ssthresh; 20524 ti->tcpi_snd_cwnd = tp->snd_cwnd; 20525 /* 20526 * FreeBSD-specific extension fields for tcp_info. 20527 */ 20528 ti->tcpi_rcv_space = tp->rcv_wnd; 20529 ti->tcpi_rcv_nxt = tp->rcv_nxt; 20530 ti->tcpi_snd_wnd = tp->snd_wnd; 20531 ti->tcpi_snd_bwnd = 0; /* Unused, kept for compat. */ 20532 ti->tcpi_snd_nxt = tp->snd_nxt; 20533 ti->tcpi_snd_mss = tp->t_maxseg; 20534 ti->tcpi_rcv_mss = tp->t_maxseg; 20535 ti->tcpi_snd_rexmitpack = tp->t_sndrexmitpack; 20536 ti->tcpi_rcv_ooopack = tp->t_rcvoopack; 20537 ti->tcpi_snd_zerowin = tp->t_sndzerowin; 20538 #ifdef NETFLIX_STATS 20539 ti->tcpi_total_tlp = tp->t_sndtlppack; 20540 ti->tcpi_total_tlp_bytes = tp->t_sndtlpbyte; 20541 memcpy(&ti->tcpi_rxsyninfo, &tp->t_rxsyninfo, sizeof(struct tcpsyninfo)); 20542 #endif 20543 #ifdef TCP_OFFLOAD 20544 if (tp->t_flags & TF_TOE) { 20545 ti->tcpi_options |= TCPI_OPT_TOE; 20546 tcp_offload_tcp_info(tp, ti); 20547 } 20548 #endif 20549 } 20550 20551 static int 20552 rack_get_sockopt(struct inpcb *inp, struct sockopt *sopt) 20553 { 20554 struct tcpcb *tp; 20555 struct tcp_rack *rack; 20556 int32_t error, optval; 20557 uint64_t val, loptval; 20558 struct tcp_info ti; 20559 /* 20560 * Because all our options are either boolean or an int, we can just 20561 * pull everything into optval and then unlock and copy. If we ever 20562 * add a option that is not a int, then this will have quite an 20563 * impact to this routine. 20564 */ 20565 error = 0; 20566 tp = intotcpcb(inp); 20567 rack = (struct tcp_rack *)tp->t_fb_ptr; 20568 if (rack == NULL) { 20569 INP_WUNLOCK(inp); 20570 return (EINVAL); 20571 } 20572 switch (sopt->sopt_name) { 20573 case TCP_INFO: 20574 /* First get the info filled */ 20575 rack_fill_info(tp, &ti); 20576 /* Fix up the rtt related fields if needed */ 20577 INP_WUNLOCK(inp); 20578 error = sooptcopyout(sopt, &ti, sizeof ti); 20579 return (error); 20580 /* 20581 * Beta is the congestion control value for NewReno that influences how 20582 * much of a backoff happens when loss is detected. It is normally set 20583 * to 50 for 50% i.e. the cwnd is reduced to 50% of its previous value 20584 * when you exit recovery. 20585 */ 20586 case TCP_RACK_PACING_BETA: 20587 if (strcmp(tp->cc_algo->name, CCALGONAME_NEWRENO) != 0) 20588 error = EINVAL; 20589 else if (rack->rc_pacing_cc_set == 0) 20590 optval = rack->r_ctl.rc_saved_beta.beta; 20591 else { 20592 /* 20593 * Reach out into the CC data and report back what 20594 * I have previously set. Yeah it looks hackish but 20595 * we don't want to report the saved values. 20596 */ 20597 if (tp->ccv->cc_data) 20598 optval = ((struct newreno *)tp->ccv->cc_data)->beta; 20599 else 20600 error = EINVAL; 20601 } 20602 break; 20603 /* 20604 * Beta_ecn is the congestion control value for NewReno that influences how 20605 * much of a backoff happens when a ECN mark is detected. It is normally set 20606 * to 80 for 80% i.e. the cwnd is reduced by 20% of its previous value when 20607 * you exit recovery. Note that classic ECN has a beta of 50, it is only 20608 * ABE Ecn that uses this "less" value, but we do too with pacing :) 20609 */ 20610 20611 case TCP_RACK_PACING_BETA_ECN: 20612 if (strcmp(tp->cc_algo->name, CCALGONAME_NEWRENO) != 0) 20613 error = EINVAL; 20614 else if (rack->rc_pacing_cc_set == 0) 20615 optval = rack->r_ctl.rc_saved_beta.beta_ecn; 20616 else { 20617 /* 20618 * Reach out into the CC data and report back what 20619 * I have previously set. Yeah it looks hackish but 20620 * we don't want to report the saved values. 20621 */ 20622 if (tp->ccv->cc_data) 20623 optval = ((struct newreno *)tp->ccv->cc_data)->beta_ecn; 20624 else 20625 error = EINVAL; 20626 } 20627 break; 20628 case TCP_RACK_DSACK_OPT: 20629 optval = 0; 20630 if (rack->rc_rack_tmr_std_based) { 20631 optval |= 1; 20632 } 20633 if (rack->rc_rack_use_dsack) { 20634 optval |= 2; 20635 } 20636 break; 20637 case TCP_RACK_ENABLE_HYSTART: 20638 { 20639 if (tp->ccv->flags & CCF_HYSTART_ALLOWED) { 20640 optval = RACK_HYSTART_ON; 20641 if (tp->ccv->flags & CCF_HYSTART_CAN_SH_CWND) 20642 optval = RACK_HYSTART_ON_W_SC; 20643 if (tp->ccv->flags & CCF_HYSTART_CONS_SSTH) 20644 optval = RACK_HYSTART_ON_W_SC_C; 20645 } else { 20646 optval = RACK_HYSTART_OFF; 20647 } 20648 } 20649 break; 20650 case TCP_FAST_RSM_HACK: 20651 optval = rack->fast_rsm_hack; 20652 break; 20653 case TCP_DEFER_OPTIONS: 20654 optval = rack->defer_options; 20655 break; 20656 case TCP_RACK_MEASURE_CNT: 20657 optval = rack->r_ctl.req_measurements; 20658 break; 20659 case TCP_REC_ABC_VAL: 20660 optval = rack->r_use_labc_for_rec; 20661 break; 20662 case TCP_RACK_ABC_VAL: 20663 optval = rack->rc_labc; 20664 break; 20665 case TCP_HDWR_UP_ONLY: 20666 optval= rack->r_up_only; 20667 break; 20668 case TCP_PACING_RATE_CAP: 20669 loptval = rack->r_ctl.bw_rate_cap; 20670 break; 20671 case TCP_RACK_PROFILE: 20672 /* You cannot retrieve a profile, its write only */ 20673 error = EINVAL; 20674 break; 20675 case TCP_USE_CMP_ACKS: 20676 optval = rack->r_use_cmp_ack; 20677 break; 20678 case TCP_RACK_PACE_TO_FILL: 20679 optval = rack->rc_pace_to_cwnd; 20680 if (optval && rack->r_fill_less_agg) 20681 optval++; 20682 break; 20683 case TCP_RACK_NO_PUSH_AT_MAX: 20684 optval = rack->r_ctl.rc_no_push_at_mrtt; 20685 break; 20686 case TCP_SHARED_CWND_ENABLE: 20687 optval = rack->rack_enable_scwnd; 20688 break; 20689 case TCP_RACK_NONRXT_CFG_RATE: 20690 optval = rack->rack_rec_nonrxt_use_cr; 20691 break; 20692 case TCP_NO_PRR: 20693 if (rack->rack_no_prr == 1) 20694 optval = 1; 20695 else if (rack->no_prr_addback == 1) 20696 optval = 2; 20697 else 20698 optval = 0; 20699 break; 20700 case TCP_RACK_DO_DETECTION: 20701 optval = rack->do_detection; 20702 break; 20703 case TCP_RACK_MBUF_QUEUE: 20704 /* Now do we use the LRO mbuf-queue feature */ 20705 optval = rack->r_mbuf_queue; 20706 break; 20707 case TCP_TIMELY_DYN_ADJ: 20708 optval = rack->rc_gp_dyn_mul; 20709 break; 20710 case TCP_BBR_IWINTSO: 20711 optval = rack->rc_init_win; 20712 break; 20713 case TCP_RACK_TLP_REDUCE: 20714 /* RACK TLP cwnd reduction (bool) */ 20715 optval = rack->r_ctl.rc_tlp_cwnd_reduce; 20716 break; 20717 case TCP_BBR_RACK_INIT_RATE: 20718 val = rack->r_ctl.init_rate; 20719 /* convert to kbits per sec */ 20720 val *= 8; 20721 val /= 1000; 20722 optval = (uint32_t)val; 20723 break; 20724 case TCP_RACK_FORCE_MSEG: 20725 optval = rack->rc_force_max_seg; 20726 break; 20727 case TCP_RACK_PACE_MAX_SEG: 20728 /* Max segments in a pace */ 20729 optval = rack->rc_user_set_max_segs; 20730 break; 20731 case TCP_RACK_PACE_ALWAYS: 20732 /* Use the always pace method */ 20733 optval = rack->rc_always_pace; 20734 break; 20735 case TCP_RACK_PRR_SENDALOT: 20736 /* Allow PRR to send more than one seg */ 20737 optval = rack->r_ctl.rc_prr_sendalot; 20738 break; 20739 case TCP_RACK_MIN_TO: 20740 /* Minimum time between rack t-o's in ms */ 20741 optval = rack->r_ctl.rc_min_to; 20742 break; 20743 case TCP_RACK_EARLY_SEG: 20744 /* If early recovery max segments */ 20745 optval = rack->r_ctl.rc_early_recovery_segs; 20746 break; 20747 case TCP_RACK_REORD_THRESH: 20748 /* RACK reorder threshold (shift amount) */ 20749 optval = rack->r_ctl.rc_reorder_shift; 20750 break; 20751 case TCP_RACK_REORD_FADE: 20752 /* Does reordering fade after ms time */ 20753 optval = rack->r_ctl.rc_reorder_fade; 20754 break; 20755 case TCP_BBR_USE_RACK_RR: 20756 /* Do we use the rack cheat for rxt */ 20757 optval = rack->use_rack_rr; 20758 break; 20759 case TCP_RACK_RR_CONF: 20760 optval = rack->r_rr_config; 20761 break; 20762 case TCP_HDWR_RATE_CAP: 20763 optval = rack->r_rack_hw_rate_caps; 20764 break; 20765 case TCP_BBR_HDWR_PACE: 20766 optval = rack->rack_hdw_pace_ena; 20767 break; 20768 case TCP_RACK_TLP_THRESH: 20769 /* RACK TLP theshold i.e. srtt+(srtt/N) */ 20770 optval = rack->r_ctl.rc_tlp_threshold; 20771 break; 20772 case TCP_RACK_PKT_DELAY: 20773 /* RACK added ms i.e. rack-rtt + reord + N */ 20774 optval = rack->r_ctl.rc_pkt_delay; 20775 break; 20776 case TCP_RACK_TLP_USE: 20777 optval = rack->rack_tlp_threshold_use; 20778 break; 20779 case TCP_RACK_PACE_RATE_CA: 20780 optval = rack->r_ctl.rc_fixed_pacing_rate_ca; 20781 break; 20782 case TCP_RACK_PACE_RATE_SS: 20783 optval = rack->r_ctl.rc_fixed_pacing_rate_ss; 20784 break; 20785 case TCP_RACK_PACE_RATE_REC: 20786 optval = rack->r_ctl.rc_fixed_pacing_rate_rec; 20787 break; 20788 case TCP_RACK_GP_INCREASE_SS: 20789 optval = rack->r_ctl.rack_per_of_gp_ca; 20790 break; 20791 case TCP_RACK_GP_INCREASE_CA: 20792 optval = rack->r_ctl.rack_per_of_gp_ss; 20793 break; 20794 case TCP_BBR_RACK_RTT_USE: 20795 optval = rack->r_ctl.rc_rate_sample_method; 20796 break; 20797 case TCP_DELACK: 20798 optval = tp->t_delayed_ack; 20799 break; 20800 case TCP_DATA_AFTER_CLOSE: 20801 optval = rack->rc_allow_data_af_clo; 20802 break; 20803 case TCP_SHARED_CWND_TIME_LIMIT: 20804 optval = rack->r_limit_scw; 20805 break; 20806 case TCP_RACK_TIMER_SLOP: 20807 optval = rack->r_ctl.timer_slop; 20808 break; 20809 default: 20810 return (tcp_default_ctloutput(inp, sopt)); 20811 break; 20812 } 20813 INP_WUNLOCK(inp); 20814 if (error == 0) { 20815 if (TCP_PACING_RATE_CAP) 20816 error = sooptcopyout(sopt, &loptval, sizeof loptval); 20817 else 20818 error = sooptcopyout(sopt, &optval, sizeof optval); 20819 } 20820 return (error); 20821 } 20822 20823 static int 20824 rack_ctloutput(struct inpcb *inp, struct sockopt *sopt) 20825 { 20826 if (sopt->sopt_dir == SOPT_SET) { 20827 return (rack_set_sockopt(inp, sopt)); 20828 } else if (sopt->sopt_dir == SOPT_GET) { 20829 return (rack_get_sockopt(inp, sopt)); 20830 } else { 20831 panic("%s: sopt_dir $%d", __func__, sopt->sopt_dir); 20832 } 20833 } 20834 20835 static const char *rack_stack_names[] = { 20836 __XSTRING(STACKNAME), 20837 #ifdef STACKALIAS 20838 __XSTRING(STACKALIAS), 20839 #endif 20840 }; 20841 20842 static int 20843 rack_ctor(void *mem, int32_t size, void *arg, int32_t how) 20844 { 20845 memset(mem, 0, size); 20846 return (0); 20847 } 20848 20849 static void 20850 rack_dtor(void *mem, int32_t size, void *arg) 20851 { 20852 20853 } 20854 20855 static bool rack_mod_inited = false; 20856 20857 static int 20858 tcp_addrack(module_t mod, int32_t type, void *data) 20859 { 20860 int32_t err = 0; 20861 int num_stacks; 20862 20863 switch (type) { 20864 case MOD_LOAD: 20865 rack_zone = uma_zcreate(__XSTRING(MODNAME) "_map", 20866 sizeof(struct rack_sendmap), 20867 rack_ctor, rack_dtor, NULL, NULL, UMA_ALIGN_PTR, 0); 20868 20869 rack_pcb_zone = uma_zcreate(__XSTRING(MODNAME) "_pcb", 20870 sizeof(struct tcp_rack), 20871 rack_ctor, NULL, NULL, NULL, UMA_ALIGN_CACHE, 0); 20872 20873 sysctl_ctx_init(&rack_sysctl_ctx); 20874 rack_sysctl_root = SYSCTL_ADD_NODE(&rack_sysctl_ctx, 20875 SYSCTL_STATIC_CHILDREN(_net_inet_tcp), 20876 OID_AUTO, 20877 #ifdef STACKALIAS 20878 __XSTRING(STACKALIAS), 20879 #else 20880 __XSTRING(STACKNAME), 20881 #endif 20882 CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 20883 ""); 20884 if (rack_sysctl_root == NULL) { 20885 printf("Failed to add sysctl node\n"); 20886 err = EFAULT; 20887 goto free_uma; 20888 } 20889 rack_init_sysctls(); 20890 num_stacks = nitems(rack_stack_names); 20891 err = register_tcp_functions_as_names(&__tcp_rack, M_WAITOK, 20892 rack_stack_names, &num_stacks); 20893 if (err) { 20894 printf("Failed to register %s stack name for " 20895 "%s module\n", rack_stack_names[num_stacks], 20896 __XSTRING(MODNAME)); 20897 sysctl_ctx_free(&rack_sysctl_ctx); 20898 free_uma: 20899 uma_zdestroy(rack_zone); 20900 uma_zdestroy(rack_pcb_zone); 20901 rack_counter_destroy(); 20902 printf("Failed to register rack module -- err:%d\n", err); 20903 return (err); 20904 } 20905 tcp_lro_reg_mbufq(); 20906 rack_mod_inited = true; 20907 break; 20908 case MOD_QUIESCE: 20909 err = deregister_tcp_functions(&__tcp_rack, true, false); 20910 break; 20911 case MOD_UNLOAD: 20912 err = deregister_tcp_functions(&__tcp_rack, false, true); 20913 if (err == EBUSY) 20914 break; 20915 if (rack_mod_inited) { 20916 uma_zdestroy(rack_zone); 20917 uma_zdestroy(rack_pcb_zone); 20918 sysctl_ctx_free(&rack_sysctl_ctx); 20919 rack_counter_destroy(); 20920 rack_mod_inited = false; 20921 } 20922 tcp_lro_dereg_mbufq(); 20923 err = 0; 20924 break; 20925 default: 20926 return (EOPNOTSUPP); 20927 } 20928 return (err); 20929 } 20930 20931 static moduledata_t tcp_rack = { 20932 .name = __XSTRING(MODNAME), 20933 .evhand = tcp_addrack, 20934 .priv = 0 20935 }; 20936 20937 MODULE_VERSION(MODNAME, 1); 20938 DECLARE_MODULE(MODNAME, tcp_rack, SI_SUB_PROTO_DOMAIN, SI_ORDER_ANY); 20939 MODULE_DEPEND(MODNAME, tcphpts, 1, 1, 1); 20940