Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 | /* * Copyright (c) 2013-2017 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/syslog.h> #include <sys/protosw.h> #include <sys/socketvar.h> #include <sys/kern_control.h> #include <sys/domain.h> #include <netinet/in.h> #include <netinet/tcp.h> #include <netinet/tcp_var.h> #include <netinet/tcp_cc.h> #include <mach/sdt.h> #include <libkern/OSAtomic.h> struct tcp_cc_debug_state { u_int64_t ccd_tsns; char ccd_srcaddr[INET6_ADDRSTRLEN]; uint16_t ccd_srcport; char ccd_destaddr[INET6_ADDRSTRLEN]; uint16_t ccd_destport; uint32_t ccd_snd_cwnd; uint32_t ccd_snd_wnd; uint32_t ccd_snd_ssthresh; uint32_t ccd_pipeack; uint32_t ccd_rttcur; uint32_t ccd_rxtcur; uint32_t ccd_srtt; uint32_t ccd_event; uint32_t ccd_sndcc; uint32_t ccd_sndhiwat; uint32_t ccd_bytes_acked; u_int8_t ccd_cc_index; u_int8_t ccd_unused_1__; u_int16_t ccd_unused_2__; union { struct { uint32_t ccd_last_max; uint32_t ccd_tcp_win; uint32_t ccd_target_win; uint32_t ccd_avg_lastmax; uint32_t ccd_mean_deviation; } cubic_state; struct { u_int32_t led_base_rtt; } ledbat_state; } u; }; SYSCTL_SKMEM_TCP_INT(OID_AUTO, cc_debug, CTLFLAG_RW | CTLFLAG_LOCKED, int, tcp_cc_debug, 0, "Enable debug data collection"); extern struct tcp_cc_algo tcp_cc_newreno; SYSCTL_INT(_net_inet_tcp, OID_AUTO, newreno_sockets, CTLFLAG_RD | CTLFLAG_LOCKED, &tcp_cc_newreno.num_sockets, 0, "Number of sockets using newreno"); extern struct tcp_cc_algo tcp_cc_ledbat; SYSCTL_INT(_net_inet_tcp, OID_AUTO, background_sockets, CTLFLAG_RD | CTLFLAG_LOCKED, &tcp_cc_ledbat.num_sockets, 0, "Number of sockets using background transport"); extern struct tcp_cc_algo tcp_cc_cubic; SYSCTL_INT(_net_inet_tcp, OID_AUTO, cubic_sockets, CTLFLAG_RD | CTLFLAG_LOCKED,&tcp_cc_cubic.num_sockets, 0, "Number of sockets using cubic"); SYSCTL_SKMEM_TCP_INT(OID_AUTO, use_newreno, CTLFLAG_RW | CTLFLAG_LOCKED, int, tcp_use_newreno, 0, "Use TCP NewReno by default"); static int tcp_check_cwnd_nonvalidated = 1; #if (DEBUG || DEVELOPMENT) SYSCTL_INT(_net_inet_tcp, OID_AUTO, cwnd_nonvalidated, CTLFLAG_RW | CTLFLAG_LOCKED, &tcp_check_cwnd_nonvalidated, 0, "Check if congestion window is non-validated"); #endif /* (DEBUG || DEVELOPMENT) */ #define SET_SNDSB_IDEAL_SIZE(sndsb, size) \ sndsb->sb_idealsize = min(max(tcp_sendspace, tp->snd_ssthresh), \ tcp_autosndbuf_max); /* Array containing pointers to currently implemented TCP CC algorithms */ struct tcp_cc_algo* tcp_cc_algo_list[TCP_CC_ALGO_COUNT]; struct zone *tcp_cc_zone; /* Information for colelcting TCP debug information using control socket */ #define TCP_CCDEBUG_CONTROL_NAME "com.apple.network.tcp_ccdebug" #define TCP_CCDBG_NOUNIT 0xffffffff static kern_ctl_ref tcp_ccdbg_ctlref = NULL; volatile UInt32 tcp_ccdbg_unit = TCP_CCDBG_NOUNIT; void tcp_cc_init(void); static void tcp_cc_control_register(void); static errno_t tcp_ccdbg_control_connect(kern_ctl_ref kctl, struct sockaddr_ctl *sac, void **uinfo); static errno_t tcp_ccdbg_control_disconnect(kern_ctl_ref kctl, u_int32_t unit, void *uinfo); static struct tcp_cc_algo tcp_cc_algo_none; /* * Initialize TCP congestion control algorithms. */ void tcp_cc_init(void) { bzero(&tcp_cc_algo_list, sizeof(tcp_cc_algo_list)); bzero(&tcp_cc_algo_none, sizeof(tcp_cc_algo_none)); tcp_cc_algo_list[TCP_CC_ALGO_NONE] = &tcp_cc_algo_none; tcp_cc_algo_list[TCP_CC_ALGO_NEWRENO_INDEX] = &tcp_cc_newreno; tcp_cc_algo_list[TCP_CC_ALGO_BACKGROUND_INDEX] = &tcp_cc_ledbat; tcp_cc_algo_list[TCP_CC_ALGO_CUBIC_INDEX] = &tcp_cc_cubic; tcp_cc_control_register(); } static void tcp_cc_control_register(void) { struct kern_ctl_reg ccdbg_control; errno_t err; bzero(&ccdbg_control, sizeof(ccdbg_control)); strlcpy(ccdbg_control.ctl_name, TCP_CCDEBUG_CONTROL_NAME, sizeof(ccdbg_control.ctl_name)); ccdbg_control.ctl_connect = tcp_ccdbg_control_connect; ccdbg_control.ctl_disconnect = tcp_ccdbg_control_disconnect; ccdbg_control.ctl_flags |= CTL_FLAG_PRIVILEGED; ccdbg_control.ctl_flags |= CTL_FLAG_REG_SOCK_STREAM; err = ctl_register(&ccdbg_control, &tcp_ccdbg_ctlref); if (err != 0) { log(LOG_ERR, "failed to register tcp_cc debug control"); } } /* Allow only one socket to connect at any time for debugging */ static errno_t tcp_ccdbg_control_connect(kern_ctl_ref kctl, struct sockaddr_ctl *sac, void **uinfo) { #pragma unused(kctl) #pragma unused(uinfo) UInt32 old_value = TCP_CCDBG_NOUNIT; UInt32 new_value = sac->sc_unit; if (tcp_ccdbg_unit != old_value) return (EALREADY); if (OSCompareAndSwap(old_value, new_value, &tcp_ccdbg_unit)) return (0); else return (EALREADY); } static errno_t tcp_ccdbg_control_disconnect(kern_ctl_ref kctl, u_int32_t unit, void *uinfo) { #pragma unused(kctl, unit, uinfo) if (unit == tcp_ccdbg_unit) { UInt32 old_value = tcp_ccdbg_unit; UInt32 new_value = TCP_CCDBG_NOUNIT; if (tcp_ccdbg_unit == new_value) return (0); if (!OSCompareAndSwap(old_value, new_value, &tcp_ccdbg_unit)) log(LOG_DEBUG, "failed to disconnect tcp_cc debug control"); } return (0); } inline void tcp_ccdbg_trace(struct tcpcb *tp, struct tcphdr *th, int32_t event) { #if !CONFIG_DTRACE #pragma unused(th) #endif /* !CONFIG_DTRACE */ struct inpcb *inp = tp->t_inpcb; if (tcp_cc_debug && tcp_ccdbg_unit > 0) { struct tcp_cc_debug_state dbg_state; struct timespec tv; bzero(&dbg_state, sizeof(dbg_state)); nanotime(&tv); /* Take time in seconds */ dbg_state.ccd_tsns = (tv.tv_sec * 1000000000) + tv.tv_nsec; inet_ntop(SOCK_DOM(inp->inp_socket), ((SOCK_DOM(inp->inp_socket) == PF_INET) ? (void *)&inp->inp_laddr.s_addr : (void *)&inp->in6p_laddr), dbg_state.ccd_srcaddr, sizeof(dbg_state.ccd_srcaddr)); dbg_state.ccd_srcport = ntohs(inp->inp_lport); inet_ntop(SOCK_DOM(inp->inp_socket), ((SOCK_DOM(inp->inp_socket) == PF_INET) ? (void *)&inp->inp_faddr.s_addr : (void *)&inp->in6p_faddr), dbg_state.ccd_destaddr, sizeof(dbg_state.ccd_destaddr)); dbg_state.ccd_destport = ntohs(inp->inp_fport); dbg_state.ccd_snd_cwnd = tp->snd_cwnd; dbg_state.ccd_snd_wnd = tp->snd_wnd; dbg_state.ccd_snd_ssthresh = tp->snd_ssthresh; dbg_state.ccd_pipeack = tp->t_pipeack; dbg_state.ccd_rttcur = tp->t_rttcur; dbg_state.ccd_rxtcur = tp->t_rxtcur; dbg_state.ccd_srtt = tp->t_srtt >> TCP_RTT_SHIFT; dbg_state.ccd_event = event; dbg_state.ccd_sndcc = inp->inp_socket->so_snd.sb_cc; dbg_state.ccd_sndhiwat = inp->inp_socket->so_snd.sb_hiwat; dbg_state.ccd_bytes_acked = tp->t_bytes_acked; dbg_state.ccd_cc_index = tp->tcp_cc_index; switch (tp->tcp_cc_index) { case TCP_CC_ALGO_CUBIC_INDEX: dbg_state.u.cubic_state.ccd_last_max = tp->t_ccstate->cub_last_max; dbg_state.u.cubic_state.ccd_tcp_win = tp->t_ccstate->cub_tcp_win; dbg_state.u.cubic_state.ccd_target_win = tp->t_ccstate->cub_target_win; dbg_state.u.cubic_state.ccd_avg_lastmax = tp->t_ccstate->cub_avg_lastmax; dbg_state.u.cubic_state.ccd_mean_deviation = tp->t_ccstate->cub_mean_dev; break; case TCP_CC_ALGO_BACKGROUND_INDEX: dbg_state.u.ledbat_state.led_base_rtt = get_base_rtt(tp); break; default: break; } ctl_enqueuedata(tcp_ccdbg_ctlref, tcp_ccdbg_unit, &dbg_state, sizeof(dbg_state), 0); } DTRACE_TCP5(cc, void, NULL, struct inpcb *, inp, struct tcpcb *, tp, struct tcphdr *, th, int32_t, event); } void tcp_cc_resize_sndbuf(struct tcpcb *tp) { struct sockbuf *sb; /* * If the send socket buffer size is bigger than ssthresh, * it is time to trim it because we do not want to hold * too many mbufs in the socket buffer */ sb = &tp->t_inpcb->inp_socket->so_snd; if (sb->sb_hiwat > tp->snd_ssthresh && (sb->sb_flags & SB_AUTOSIZE)) { if (sb->sb_idealsize > tp->snd_ssthresh) { SET_SNDSB_IDEAL_SIZE(sb, tp->snd_ssthresh); } sb->sb_flags |= SB_TRIM; } } void tcp_bad_rexmt_fix_sndbuf(struct tcpcb *tp) { struct sockbuf *sb; sb = &tp->t_inpcb->inp_socket->so_snd; if ((sb->sb_flags & (SB_TRIM|SB_AUTOSIZE)) == (SB_TRIM|SB_AUTOSIZE)) { /* * If there was a retransmission that was not necessary * then the size of socket buffer can be restored to * what it was before */ SET_SNDSB_IDEAL_SIZE(sb, tp->snd_ssthresh); if (sb->sb_hiwat <= sb->sb_idealsize) { sbreserve(sb, sb->sb_idealsize); sb->sb_flags &= ~SB_TRIM; } } } /* * Calculate initial cwnd according to RFC3390. * * Keep the old ss_fltsz sysctl for ABI compabitility issues. * but it will be overriden if tcp_do_rfc3390 sysctl when it is set. */ void tcp_cc_cwnd_init_or_reset(struct tcpcb *tp) { if (tp->t_flags & TF_LOCAL) { tp->snd_cwnd = tp->t_maxseg * ss_fltsz_local; } else { /* initial congestion window according to RFC 3390 */ if (tcp_do_rfc3390) tp->snd_cwnd = min(4 * tp->t_maxseg, max(2 * tp->t_maxseg, TCP_CC_CWND_INIT_BYTES)); else tp->snd_cwnd = tp->t_maxseg * ss_fltsz; } } /* * Indicate whether this ack should be delayed. * Here is the explanation for different settings of tcp_delack_enabled: * - when set to 1, the bhavior is same as when set to 2. We kept this * for binary compatibility. * - when set to 2, will "ack every other packet" * - if our last ack wasn't a 0-sized window. * - if the peer hasn't sent us a TH_PUSH data packet (radar 3649245). * If TH_PUSH is set, take this as a clue that we need to ACK * with no delay. This helps higher level protocols who * won't send us more data even if the window is open * because their last "segment" hasn't been ACKed * - when set to 3, will do "streaming detection" * - if we receive more than "maxseg_unacked" full packets * in the last 100ms * - if the connection is not in slow-start or idle or * loss/recovery states * - if those criteria aren't met, it will ack every other packet. */ int tcp_cc_delay_ack(struct tcpcb *tp, struct tcphdr *th) { switch (tcp_delack_enabled) { case 1: case 2: if ((tp->t_flags & TF_RXWIN0SENT) == 0 && (th->th_flags & TH_PUSH) == 0 && (tp->t_unacksegs == 1)) return(1); break; case 3: if ((tp->t_flags & TF_RXWIN0SENT) == 0 && (th->th_flags & TH_PUSH) == 0 && ((tp->t_unacksegs == 1) || ((tp->t_flags & TF_STRETCHACK) != 0 && tp->t_unacksegs < (maxseg_unacked)))) return(1); break; } return(0); } void tcp_cc_allocate_state(struct tcpcb *tp) { if (tp->tcp_cc_index == TCP_CC_ALGO_CUBIC_INDEX && tp->t_ccstate == NULL) { tp->t_ccstate = (struct tcp_ccstate *)zalloc(tcp_cc_zone); /* * If we could not allocate memory for congestion control * state, revert to using TCP NewReno as it does not * require any state */ if (tp->t_ccstate == NULL) tp->tcp_cc_index = TCP_CC_ALGO_NEWRENO_INDEX; else bzero(tp->t_ccstate, sizeof(*tp->t_ccstate)); } } /* * If stretch ack was disabled automatically on long standing connections, * re-evaluate the situation after 15 minutes to enable it. */ #define TCP_STRETCHACK_DISABLE_WIN (15 * 60 * TCP_RETRANSHZ) void tcp_cc_after_idle_stretchack(struct tcpcb *tp) { int32_t tdiff; if (!(tp->t_flagsext & TF_DISABLE_STRETCHACK)) return; tdiff = timer_diff(tcp_now, 0, tp->rcv_nostrack_ts, 0); if (tdiff < 0) tdiff = -tdiff; if (tdiff > TCP_STRETCHACK_DISABLE_WIN) { tp->t_flagsext &= ~TF_DISABLE_STRETCHACK; tp->t_stretchack_delayed = 0; tcp_reset_stretch_ack(tp); } } /* * Detect if the congestion window is non-vlidated according to * draft-ietf-tcpm-newcwv-07 */ inline uint32_t tcp_cc_is_cwnd_nonvalidated(struct tcpcb *tp) { struct socket *so = tp->t_inpcb->inp_socket; if (tp->t_pipeack == 0 || tcp_check_cwnd_nonvalidated == 0) { tp->t_flagsext &= ~TF_CWND_NONVALIDATED; return (0); } /* * The congestion window is validated if the number of bytes acked * is more than half of the current window or if there is more * data to send in the send socket buffer */ if (tp->t_pipeack >= (tp->snd_cwnd >> 1) || (so != NULL && so->so_snd.sb_cc > tp->snd_cwnd)) tp->t_flagsext &= ~TF_CWND_NONVALIDATED; else tp->t_flagsext |= TF_CWND_NONVALIDATED; return (tp->t_flagsext & TF_CWND_NONVALIDATED); } /* * Adjust congestion window in response to congestion in non-validated * phase. */ inline void tcp_cc_adjust_nonvalidated_cwnd(struct tcpcb *tp) { tp->t_pipeack = tcp_get_max_pipeack(tp); tcp_clear_pipeack_state(tp); tp->snd_cwnd = (max(tp->t_pipeack, tp->t_lossflightsize) >> 1); tp->snd_cwnd = max(tp->snd_cwnd, TCP_CC_CWND_INIT_BYTES); tp->snd_cwnd += tp->t_maxseg * tcprexmtthresh; tp->t_flagsext &= ~TF_CWND_NONVALIDATED; } /* * Return maximum of all the pipeack samples. Since the number of samples * TCP_PIPEACK_SAMPLE_COUNT is 3 at this time, it will be simpler to do * a comparision. We should change ths if the number of samples increases. */ inline u_int32_t tcp_get_max_pipeack(struct tcpcb *tp) { u_int32_t max_pipeack = 0; max_pipeack = (tp->t_pipeack_sample[0] > tp->t_pipeack_sample[1]) ? tp->t_pipeack_sample[0] : tp->t_pipeack_sample[1]; max_pipeack = (tp->t_pipeack_sample[2] > max_pipeack) ? tp->t_pipeack_sample[2] : max_pipeack; return (max_pipeack); } inline void tcp_clear_pipeack_state(struct tcpcb *tp) { bzero(tp->t_pipeack_sample, sizeof(tp->t_pipeack_sample)); tp->t_pipeack_ind = 0; tp->t_lossflightsize = 0; } |