1 // SPDX-License-Identifier: GPL-2.0 2 /* Multipath TCP 3 * 4 * Copyright (c) 2017 - 2019, Intel Corporation. 5 */ 6 7 #define pr_fmt(fmt) "MPTCP: " fmt 8 9 #include <linux/kernel.h> 10 #include <crypto/sha2.h> 11 #include <net/tcp.h> 12 #include <net/mptcp.h> 13 #include "protocol.h" 14 #include "mib.h" 15 16 #include <trace/events/mptcp.h> 17 18 static bool mptcp_cap_flag_sha256(u8 flags) 19 { 20 return (flags & MPTCP_CAP_FLAG_MASK) == MPTCP_CAP_HMAC_SHA256; 21 } 22 23 static void mptcp_parse_option(const struct sk_buff *skb, 24 const unsigned char *ptr, int opsize, 25 struct mptcp_options_received *mp_opt) 26 { 27 u8 subtype = *ptr >> 4; 28 int expected_opsize; 29 u16 subopt; 30 u8 version; 31 u8 flags; 32 u8 i; 33 34 switch (subtype) { 35 case MPTCPOPT_MP_CAPABLE: 36 /* strict size checking */ 37 if (!(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_SYN)) { 38 if (skb->len > tcp_hdr(skb)->doff << 2) 39 expected_opsize = TCPOLEN_MPTCP_MPC_ACK_DATA; 40 else 41 expected_opsize = TCPOLEN_MPTCP_MPC_ACK; 42 subopt = OPTION_MPTCP_MPC_ACK; 43 } else { 44 if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_ACK) { 45 expected_opsize = TCPOLEN_MPTCP_MPC_SYNACK; 46 subopt = OPTION_MPTCP_MPC_SYNACK; 47 } else { 48 expected_opsize = TCPOLEN_MPTCP_MPC_SYN; 49 subopt = OPTION_MPTCP_MPC_SYN; 50 } 51 } 52 53 /* Cfr RFC 8684 Section 3.3.0: 54 * If a checksum is present but its use had 55 * not been negotiated in the MP_CAPABLE handshake, the receiver MUST 56 * close the subflow with a RST, as it is not behaving as negotiated. 57 * If a checksum is not present when its use has been negotiated, the 58 * receiver MUST close the subflow with a RST, as it is considered 59 * broken 60 * We parse even option with mismatching csum presence, so that 61 * later in subflow_data_ready we can trigger the reset. 62 */ 63 if (opsize != expected_opsize && 64 (expected_opsize != TCPOLEN_MPTCP_MPC_ACK_DATA || 65 opsize != TCPOLEN_MPTCP_MPC_ACK_DATA_CSUM)) 66 break; 67 68 /* try to be gentle vs future versions on the initial syn */ 69 version = *ptr++ & MPTCP_VERSION_MASK; 70 if (opsize != TCPOLEN_MPTCP_MPC_SYN) { 71 if (version != MPTCP_SUPPORTED_VERSION) 72 break; 73 } else if (version < MPTCP_SUPPORTED_VERSION) { 74 break; 75 } 76 77 flags = *ptr++; 78 if (!mptcp_cap_flag_sha256(flags) || 79 (flags & MPTCP_CAP_EXTENSIBILITY)) 80 break; 81 82 /* RFC 6824, Section 3.1: 83 * "For the Checksum Required bit (labeled "A"), if either 84 * host requires the use of checksums, checksums MUST be used. 85 * In other words, the only way for checksums not to be used 86 * is if both hosts in their SYNs set A=0." 87 */ 88 if (flags & MPTCP_CAP_CHECKSUM_REQD) 89 mp_opt->suboptions |= OPTION_MPTCP_CSUMREQD; 90 91 mp_opt->deny_join_id0 = !!(flags & MPTCP_CAP_DENY_JOIN_ID0); 92 93 mp_opt->suboptions |= subopt; 94 if (opsize >= TCPOLEN_MPTCP_MPC_SYNACK) { 95 mp_opt->sndr_key = get_unaligned_be64(ptr); 96 ptr += 8; 97 } 98 if (opsize >= TCPOLEN_MPTCP_MPC_ACK) { 99 mp_opt->rcvr_key = get_unaligned_be64(ptr); 100 ptr += 8; 101 } 102 if (opsize >= TCPOLEN_MPTCP_MPC_ACK_DATA) { 103 /* Section 3.1.: 104 * "the data parameters in a MP_CAPABLE are semantically 105 * equivalent to those in a DSS option and can be used 106 * interchangeably." 107 */ 108 mp_opt->suboptions |= OPTION_MPTCP_DSS; 109 mp_opt->use_map = 1; 110 mp_opt->mpc_map = 1; 111 mp_opt->use_ack = 0; 112 mp_opt->data_len = get_unaligned_be16(ptr); 113 ptr += 2; 114 } 115 if (opsize == TCPOLEN_MPTCP_MPC_ACK_DATA_CSUM) { 116 mp_opt->csum = get_unaligned((__force __sum16 *)ptr); 117 mp_opt->suboptions |= OPTION_MPTCP_CSUMREQD; 118 ptr += 2; 119 } 120 pr_debug("MP_CAPABLE version=%x, flags=%x, optlen=%d sndr=%llu, rcvr=%llu len=%d csum=%u\n", 121 version, flags, opsize, mp_opt->sndr_key, 122 mp_opt->rcvr_key, mp_opt->data_len, mp_opt->csum); 123 break; 124 125 case MPTCPOPT_MP_JOIN: 126 if (opsize == TCPOLEN_MPTCP_MPJ_SYN) { 127 mp_opt->suboptions |= OPTION_MPTCP_MPJ_SYN; 128 mp_opt->backup = *ptr++ & MPTCPOPT_BACKUP; 129 mp_opt->join_id = *ptr++; 130 mp_opt->token = get_unaligned_be32(ptr); 131 ptr += 4; 132 mp_opt->nonce = get_unaligned_be32(ptr); 133 ptr += 4; 134 pr_debug("MP_JOIN bkup=%u, id=%u, token=%u, nonce=%u\n", 135 mp_opt->backup, mp_opt->join_id, 136 mp_opt->token, mp_opt->nonce); 137 } else if (opsize == TCPOLEN_MPTCP_MPJ_SYNACK) { 138 mp_opt->suboptions |= OPTION_MPTCP_MPJ_SYNACK; 139 mp_opt->backup = *ptr++ & MPTCPOPT_BACKUP; 140 mp_opt->join_id = *ptr++; 141 mp_opt->thmac = get_unaligned_be64(ptr); 142 ptr += 8; 143 mp_opt->nonce = get_unaligned_be32(ptr); 144 ptr += 4; 145 pr_debug("MP_JOIN bkup=%u, id=%u, thmac=%llu, nonce=%u\n", 146 mp_opt->backup, mp_opt->join_id, 147 mp_opt->thmac, mp_opt->nonce); 148 } else if (opsize == TCPOLEN_MPTCP_MPJ_ACK) { 149 mp_opt->suboptions |= OPTION_MPTCP_MPJ_ACK; 150 ptr += 2; 151 memcpy(mp_opt->hmac, ptr, MPTCPOPT_HMAC_LEN); 152 pr_debug("MP_JOIN hmac\n"); 153 } 154 break; 155 156 case MPTCPOPT_DSS: 157 pr_debug("DSS\n"); 158 ptr++; 159 160 /* we must clear 'mpc_map' be able to detect MP_CAPABLE 161 * map vs DSS map in mptcp_incoming_options(), and reconstruct 162 * map info accordingly 163 */ 164 mp_opt->mpc_map = 0; 165 flags = (*ptr++) & MPTCP_DSS_FLAG_MASK; 166 mp_opt->data_fin = (flags & MPTCP_DSS_DATA_FIN) != 0; 167 mp_opt->dsn64 = (flags & MPTCP_DSS_DSN64) != 0; 168 mp_opt->use_map = (flags & MPTCP_DSS_HAS_MAP) != 0; 169 mp_opt->ack64 = (flags & MPTCP_DSS_ACK64) != 0; 170 mp_opt->use_ack = (flags & MPTCP_DSS_HAS_ACK); 171 172 pr_debug("data_fin=%d dsn64=%d use_map=%d ack64=%d use_ack=%d\n", 173 mp_opt->data_fin, mp_opt->dsn64, 174 mp_opt->use_map, mp_opt->ack64, 175 mp_opt->use_ack); 176 177 expected_opsize = TCPOLEN_MPTCP_DSS_BASE; 178 179 if (mp_opt->use_ack) { 180 if (mp_opt->ack64) 181 expected_opsize += TCPOLEN_MPTCP_DSS_ACK64; 182 else 183 expected_opsize += TCPOLEN_MPTCP_DSS_ACK32; 184 } 185 186 if (mp_opt->use_map) { 187 if (mp_opt->dsn64) 188 expected_opsize += TCPOLEN_MPTCP_DSS_MAP64; 189 else 190 expected_opsize += TCPOLEN_MPTCP_DSS_MAP32; 191 } 192 193 /* Always parse any csum presence combination, we will enforce 194 * RFC 8684 Section 3.3.0 checks later in subflow_data_ready 195 */ 196 if (opsize != expected_opsize && 197 opsize != expected_opsize + TCPOLEN_MPTCP_DSS_CHECKSUM) 198 break; 199 200 mp_opt->suboptions |= OPTION_MPTCP_DSS; 201 if (mp_opt->use_ack) { 202 if (mp_opt->ack64) { 203 mp_opt->data_ack = get_unaligned_be64(ptr); 204 ptr += 8; 205 } else { 206 mp_opt->data_ack = get_unaligned_be32(ptr); 207 ptr += 4; 208 } 209 210 pr_debug("data_ack=%llu\n", mp_opt->data_ack); 211 } 212 213 if (mp_opt->use_map) { 214 if (mp_opt->dsn64) { 215 mp_opt->data_seq = get_unaligned_be64(ptr); 216 ptr += 8; 217 } else { 218 mp_opt->data_seq = get_unaligned_be32(ptr); 219 ptr += 4; 220 } 221 222 mp_opt->subflow_seq = get_unaligned_be32(ptr); 223 ptr += 4; 224 225 mp_opt->data_len = get_unaligned_be16(ptr); 226 ptr += 2; 227 228 if (opsize == expected_opsize + TCPOLEN_MPTCP_DSS_CHECKSUM) { 229 mp_opt->suboptions |= OPTION_MPTCP_CSUMREQD; 230 mp_opt->csum = get_unaligned((__force __sum16 *)ptr); 231 ptr += 2; 232 } 233 234 pr_debug("data_seq=%llu subflow_seq=%u data_len=%u csum=%d:%u\n", 235 mp_opt->data_seq, mp_opt->subflow_seq, 236 mp_opt->data_len, !!(mp_opt->suboptions & OPTION_MPTCP_CSUMREQD), 237 mp_opt->csum); 238 } 239 240 break; 241 242 case MPTCPOPT_ADD_ADDR: 243 mp_opt->echo = (*ptr++) & MPTCP_ADDR_ECHO; 244 if (!mp_opt->echo) { 245 if (opsize == TCPOLEN_MPTCP_ADD_ADDR || 246 opsize == TCPOLEN_MPTCP_ADD_ADDR_PORT) 247 mp_opt->addr.family = AF_INET; 248 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 249 else if (opsize == TCPOLEN_MPTCP_ADD_ADDR6 || 250 opsize == TCPOLEN_MPTCP_ADD_ADDR6_PORT) 251 mp_opt->addr.family = AF_INET6; 252 #endif 253 else 254 break; 255 } else { 256 if (opsize == TCPOLEN_MPTCP_ADD_ADDR_BASE || 257 opsize == TCPOLEN_MPTCP_ADD_ADDR_BASE_PORT) 258 mp_opt->addr.family = AF_INET; 259 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 260 else if (opsize == TCPOLEN_MPTCP_ADD_ADDR6_BASE || 261 opsize == TCPOLEN_MPTCP_ADD_ADDR6_BASE_PORT) 262 mp_opt->addr.family = AF_INET6; 263 #endif 264 else 265 break; 266 } 267 268 mp_opt->suboptions |= OPTION_MPTCP_ADD_ADDR; 269 mp_opt->addr.id = *ptr++; 270 mp_opt->addr.port = 0; 271 mp_opt->ahmac = 0; 272 if (mp_opt->addr.family == AF_INET) { 273 memcpy((u8 *)&mp_opt->addr.addr.s_addr, (u8 *)ptr, 4); 274 ptr += 4; 275 if (opsize == TCPOLEN_MPTCP_ADD_ADDR_PORT || 276 opsize == TCPOLEN_MPTCP_ADD_ADDR_BASE_PORT) { 277 mp_opt->addr.port = htons(get_unaligned_be16(ptr)); 278 ptr += 2; 279 } 280 } 281 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 282 else { 283 memcpy(mp_opt->addr.addr6.s6_addr, (u8 *)ptr, 16); 284 ptr += 16; 285 if (opsize == TCPOLEN_MPTCP_ADD_ADDR6_PORT || 286 opsize == TCPOLEN_MPTCP_ADD_ADDR6_BASE_PORT) { 287 mp_opt->addr.port = htons(get_unaligned_be16(ptr)); 288 ptr += 2; 289 } 290 } 291 #endif 292 if (!mp_opt->echo) { 293 mp_opt->ahmac = get_unaligned_be64(ptr); 294 ptr += 8; 295 } 296 pr_debug("ADD_ADDR%s: id=%d, ahmac=%llu, echo=%d, port=%d\n", 297 (mp_opt->addr.family == AF_INET6) ? "6" : "", 298 mp_opt->addr.id, mp_opt->ahmac, mp_opt->echo, ntohs(mp_opt->addr.port)); 299 break; 300 301 case MPTCPOPT_RM_ADDR: 302 if (opsize < TCPOLEN_MPTCP_RM_ADDR_BASE + 1 || 303 opsize > TCPOLEN_MPTCP_RM_ADDR_BASE + MPTCP_RM_IDS_MAX) 304 break; 305 306 ptr++; 307 308 mp_opt->suboptions |= OPTION_MPTCP_RM_ADDR; 309 mp_opt->rm_list.nr = opsize - TCPOLEN_MPTCP_RM_ADDR_BASE; 310 for (i = 0; i < mp_opt->rm_list.nr; i++) 311 mp_opt->rm_list.ids[i] = *ptr++; 312 pr_debug("RM_ADDR: rm_list_nr=%d\n", mp_opt->rm_list.nr); 313 break; 314 315 case MPTCPOPT_MP_PRIO: 316 if (opsize != TCPOLEN_MPTCP_PRIO) 317 break; 318 319 mp_opt->suboptions |= OPTION_MPTCP_PRIO; 320 mp_opt->backup = *ptr++ & MPTCP_PRIO_BKUP; 321 pr_debug("MP_PRIO: prio=%d\n", mp_opt->backup); 322 break; 323 324 case MPTCPOPT_MP_FASTCLOSE: 325 if (opsize != TCPOLEN_MPTCP_FASTCLOSE) 326 break; 327 328 ptr += 2; 329 mp_opt->rcvr_key = get_unaligned_be64(ptr); 330 ptr += 8; 331 mp_opt->suboptions |= OPTION_MPTCP_FASTCLOSE; 332 pr_debug("MP_FASTCLOSE: recv_key=%llu\n", mp_opt->rcvr_key); 333 break; 334 335 case MPTCPOPT_RST: 336 if (opsize != TCPOLEN_MPTCP_RST) 337 break; 338 339 if (!(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_RST)) 340 break; 341 342 mp_opt->suboptions |= OPTION_MPTCP_RST; 343 flags = *ptr++; 344 mp_opt->reset_transient = flags & MPTCP_RST_TRANSIENT; 345 mp_opt->reset_reason = *ptr; 346 pr_debug("MP_RST: transient=%u reason=%u\n", 347 mp_opt->reset_transient, mp_opt->reset_reason); 348 break; 349 350 case MPTCPOPT_MP_FAIL: 351 if (opsize != TCPOLEN_MPTCP_FAIL) 352 break; 353 354 ptr += 2; 355 mp_opt->suboptions |= OPTION_MPTCP_FAIL; 356 mp_opt->fail_seq = get_unaligned_be64(ptr); 357 pr_debug("MP_FAIL: data_seq=%llu\n", mp_opt->fail_seq); 358 break; 359 360 default: 361 break; 362 } 363 } 364 365 void mptcp_get_options(const struct sk_buff *skb, 366 struct mptcp_options_received *mp_opt) 367 { 368 const struct tcphdr *th = tcp_hdr(skb); 369 const unsigned char *ptr; 370 int length; 371 372 /* initialize option status */ 373 mp_opt->suboptions = 0; 374 375 length = (th->doff * 4) - sizeof(struct tcphdr); 376 ptr = (const unsigned char *)(th + 1); 377 378 while (length > 0) { 379 int opcode = *ptr++; 380 int opsize; 381 382 switch (opcode) { 383 case TCPOPT_EOL: 384 return; 385 case TCPOPT_NOP: /* Ref: RFC 793 section 3.1 */ 386 length--; 387 continue; 388 default: 389 if (length < 2) 390 return; 391 opsize = *ptr++; 392 if (opsize < 2) /* "silly options" */ 393 return; 394 if (opsize > length) 395 return; /* don't parse partial options */ 396 if (opcode == TCPOPT_MPTCP) 397 mptcp_parse_option(skb, ptr, opsize, mp_opt); 398 ptr += opsize - 2; 399 length -= opsize; 400 } 401 } 402 } 403 404 bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb, 405 unsigned int *size, struct mptcp_out_options *opts) 406 { 407 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 408 409 /* we will use snd_isn to detect first pkt [re]transmission 410 * in mptcp_established_options_mp() 411 */ 412 subflow->snd_isn = TCP_SKB_CB(skb)->end_seq; 413 if (subflow->request_mptcp) { 414 opts->suboptions = OPTION_MPTCP_MPC_SYN; 415 opts->csum_reqd = mptcp_is_checksum_enabled(sock_net(sk)); 416 opts->allow_join_id0 = mptcp_allow_join_id0(sock_net(sk)); 417 *size = TCPOLEN_MPTCP_MPC_SYN; 418 return true; 419 } else if (subflow->request_join) { 420 pr_debug("remote_token=%u, nonce=%u\n", subflow->remote_token, 421 subflow->local_nonce); 422 opts->suboptions = OPTION_MPTCP_MPJ_SYN; 423 opts->join_id = subflow->local_id; 424 opts->token = subflow->remote_token; 425 opts->nonce = subflow->local_nonce; 426 opts->backup = subflow->request_bkup; 427 *size = TCPOLEN_MPTCP_MPJ_SYN; 428 return true; 429 } 430 return false; 431 } 432 433 static void clear_3rdack_retransmission(struct sock *sk) 434 { 435 struct inet_connection_sock *icsk = inet_csk(sk); 436 437 sk_stop_timer(sk, &icsk->icsk_delack_timer); 438 icsk->icsk_ack.timeout = 0; 439 icsk->icsk_ack.ato = 0; 440 icsk->icsk_ack.pending &= ~(ICSK_ACK_SCHED | ICSK_ACK_TIMER); 441 } 442 443 static bool mptcp_established_options_mp(struct sock *sk, struct sk_buff *skb, 444 bool snd_data_fin_enable, 445 unsigned int *size, 446 struct mptcp_out_options *opts) 447 { 448 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 449 struct mptcp_sock *msk = mptcp_sk(subflow->conn); 450 struct mptcp_ext *mpext; 451 unsigned int data_len; 452 u8 len; 453 454 /* When skb is not available, we better over-estimate the emitted 455 * options len. A full DSS option (28 bytes) is longer than 456 * TCPOLEN_MPTCP_MPC_ACK_DATA(22) or TCPOLEN_MPTCP_MPJ_ACK(24), so 457 * tell the caller to defer the estimate to 458 * mptcp_established_options_dss(), which will reserve enough space. 459 */ 460 if (!skb) 461 return false; 462 463 /* MPC/MPJ needed only on 3rd ack packet, DATA_FIN and TCP shutdown take precedence */ 464 if (READ_ONCE(subflow->fully_established) || snd_data_fin_enable || 465 subflow->snd_isn != TCP_SKB_CB(skb)->seq || 466 sk->sk_state != TCP_ESTABLISHED) 467 return false; 468 469 if (subflow->mp_capable) { 470 mpext = mptcp_get_ext(skb); 471 data_len = mpext ? mpext->data_len : 0; 472 473 /* we will check ops->data_len in mptcp_write_options() to 474 * discriminate between TCPOLEN_MPTCP_MPC_ACK_DATA and 475 * TCPOLEN_MPTCP_MPC_ACK 476 */ 477 opts->data_len = data_len; 478 opts->suboptions = OPTION_MPTCP_MPC_ACK; 479 opts->sndr_key = subflow->local_key; 480 opts->rcvr_key = subflow->remote_key; 481 opts->csum_reqd = READ_ONCE(msk->csum_enabled); 482 opts->allow_join_id0 = mptcp_allow_join_id0(sock_net(sk)); 483 484 /* Section 3.1. 485 * The MP_CAPABLE option is carried on the SYN, SYN/ACK, and ACK 486 * packets that start the first subflow of an MPTCP connection, 487 * as well as the first packet that carries data 488 */ 489 if (data_len > 0) { 490 len = TCPOLEN_MPTCP_MPC_ACK_DATA; 491 if (opts->csum_reqd) { 492 /* we need to propagate more info to csum the pseudo hdr */ 493 opts->data_seq = mpext->data_seq; 494 opts->subflow_seq = mpext->subflow_seq; 495 opts->csum = mpext->csum; 496 len += TCPOLEN_MPTCP_DSS_CHECKSUM; 497 } 498 *size = ALIGN(len, 4); 499 } else { 500 *size = TCPOLEN_MPTCP_MPC_ACK; 501 } 502 503 pr_debug("subflow=%p, local_key=%llu, remote_key=%llu map_len=%d\n", 504 subflow, subflow->local_key, subflow->remote_key, 505 data_len); 506 507 return true; 508 } else if (subflow->mp_join) { 509 opts->suboptions = OPTION_MPTCP_MPJ_ACK; 510 memcpy(opts->hmac, subflow->hmac, MPTCPOPT_HMAC_LEN); 511 *size = TCPOLEN_MPTCP_MPJ_ACK; 512 pr_debug("subflow=%p\n", subflow); 513 514 /* we can use the full delegate action helper only from BH context 515 * If we are in process context - sk is flushing the backlog at 516 * socket lock release time - just set the appropriate flag, will 517 * be handled by the release callback 518 */ 519 if (sock_owned_by_user(sk)) 520 set_bit(MPTCP_DELEGATE_ACK, &subflow->delegated_status); 521 else 522 mptcp_subflow_delegate(subflow, MPTCP_DELEGATE_ACK); 523 return true; 524 } 525 return false; 526 } 527 528 static void mptcp_write_data_fin(struct mptcp_subflow_context *subflow, 529 struct sk_buff *skb, struct mptcp_ext *ext) 530 { 531 /* The write_seq value has already been incremented, so the actual 532 * sequence number for the DATA_FIN is one less. 533 */ 534 u64 data_fin_tx_seq = READ_ONCE(mptcp_sk(subflow->conn)->write_seq) - 1; 535 536 if (!ext->use_map || !skb->len) { 537 /* RFC6824 requires a DSS mapping with specific values 538 * if DATA_FIN is set but no data payload is mapped 539 */ 540 ext->data_fin = 1; 541 ext->use_map = 1; 542 ext->dsn64 = 1; 543 ext->data_seq = data_fin_tx_seq; 544 ext->subflow_seq = 0; 545 ext->data_len = 1; 546 } else if (ext->data_seq + ext->data_len == data_fin_tx_seq) { 547 /* If there's an existing DSS mapping and it is the 548 * final mapping, DATA_FIN consumes 1 additional byte of 549 * mapping space. 550 */ 551 ext->data_fin = 1; 552 ext->data_len++; 553 } 554 } 555 556 static bool mptcp_established_options_dss(struct sock *sk, struct sk_buff *skb, 557 bool snd_data_fin_enable, 558 unsigned int *size, 559 struct mptcp_out_options *opts) 560 { 561 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 562 struct mptcp_sock *msk = mptcp_sk(subflow->conn); 563 unsigned int dss_size = 0; 564 struct mptcp_ext *mpext; 565 unsigned int ack_size; 566 bool ret = false; 567 u64 ack_seq; 568 569 opts->csum_reqd = READ_ONCE(msk->csum_enabled); 570 mpext = skb ? mptcp_get_ext(skb) : NULL; 571 572 if (!skb || (mpext && mpext->use_map) || snd_data_fin_enable) { 573 unsigned int map_size = TCPOLEN_MPTCP_DSS_BASE + TCPOLEN_MPTCP_DSS_MAP64; 574 575 if (mpext) { 576 if (opts->csum_reqd) 577 map_size += TCPOLEN_MPTCP_DSS_CHECKSUM; 578 579 opts->ext_copy = *mpext; 580 } 581 582 dss_size = map_size; 583 if (skb && snd_data_fin_enable) 584 mptcp_write_data_fin(subflow, skb, &opts->ext_copy); 585 opts->suboptions = OPTION_MPTCP_DSS; 586 ret = true; 587 } 588 589 /* passive sockets msk will set the 'can_ack' after accept(), even 590 * if the first subflow may have the already the remote key handy 591 */ 592 opts->ext_copy.use_ack = 0; 593 if (!READ_ONCE(msk->can_ack)) { 594 *size = ALIGN(dss_size, 4); 595 return ret; 596 } 597 598 ack_seq = READ_ONCE(msk->ack_seq); 599 if (READ_ONCE(msk->use_64bit_ack)) { 600 ack_size = TCPOLEN_MPTCP_DSS_ACK64; 601 opts->ext_copy.data_ack = ack_seq; 602 opts->ext_copy.ack64 = 1; 603 } else { 604 ack_size = TCPOLEN_MPTCP_DSS_ACK32; 605 opts->ext_copy.data_ack32 = (uint32_t)ack_seq; 606 opts->ext_copy.ack64 = 0; 607 } 608 opts->ext_copy.use_ack = 1; 609 opts->suboptions = OPTION_MPTCP_DSS; 610 611 /* Add kind/length/subtype/flag overhead if mapping is not populated */ 612 if (dss_size == 0) 613 ack_size += TCPOLEN_MPTCP_DSS_BASE; 614 615 dss_size += ack_size; 616 617 *size = ALIGN(dss_size, 4); 618 return true; 619 } 620 621 static u64 add_addr_generate_hmac(u64 key1, u64 key2, 622 struct mptcp_addr_info *addr) 623 { 624 u16 port = ntohs(addr->port); 625 u8 hmac[SHA256_DIGEST_SIZE]; 626 u8 msg[19]; 627 int i = 0; 628 629 msg[i++] = addr->id; 630 if (addr->family == AF_INET) { 631 memcpy(&msg[i], &addr->addr.s_addr, 4); 632 i += 4; 633 } 634 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 635 else if (addr->family == AF_INET6) { 636 memcpy(&msg[i], &addr->addr6.s6_addr, 16); 637 i += 16; 638 } 639 #endif 640 msg[i++] = port >> 8; 641 msg[i++] = port & 0xFF; 642 643 mptcp_crypto_hmac_sha(key1, key2, msg, i, hmac); 644 645 return get_unaligned_be64(&hmac[SHA256_DIGEST_SIZE - sizeof(u64)]); 646 } 647 648 static bool mptcp_established_options_add_addr(struct sock *sk, struct sk_buff *skb, 649 unsigned int *size, 650 unsigned int remaining, 651 struct mptcp_out_options *opts) 652 { 653 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 654 struct mptcp_sock *msk = mptcp_sk(subflow->conn); 655 bool drop_other_suboptions = false; 656 unsigned int opt_size = *size; 657 bool echo; 658 int len; 659 660 /* add addr will strip the existing options, be sure to avoid breaking 661 * MPC/MPJ handshakes 662 */ 663 if (!mptcp_pm_should_add_signal(msk) || 664 (opts->suboptions & (OPTION_MPTCP_MPJ_ACK | OPTION_MPTCP_MPC_ACK)) || 665 !mptcp_pm_add_addr_signal(msk, skb, opt_size, remaining, &opts->addr, 666 &echo, &drop_other_suboptions)) 667 return false; 668 669 /* 670 * Later on, mptcp_write_options() will enforce mutually exclusion with 671 * DSS, bail out if such option is set and we can't drop it. 672 */ 673 if (drop_other_suboptions) 674 remaining += opt_size; 675 else if (opts->suboptions & OPTION_MPTCP_DSS) 676 return false; 677 678 len = mptcp_add_addr_len(opts->addr.family, echo, !!opts->addr.port); 679 if (remaining < len) 680 return false; 681 682 *size = len; 683 if (drop_other_suboptions) { 684 pr_debug("drop other suboptions\n"); 685 opts->suboptions = 0; 686 687 /* note that e.g. DSS could have written into the memory 688 * aliased by ahmac, we must reset the field here 689 * to avoid appending the hmac even for ADD_ADDR echo 690 * options 691 */ 692 opts->ahmac = 0; 693 *size -= opt_size; 694 } 695 opts->suboptions |= OPTION_MPTCP_ADD_ADDR; 696 if (!echo) { 697 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_ADDADDRTX); 698 opts->ahmac = add_addr_generate_hmac(READ_ONCE(msk->local_key), 699 READ_ONCE(msk->remote_key), 700 &opts->addr); 701 } else { 702 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_ECHOADDTX); 703 } 704 pr_debug("addr_id=%d, ahmac=%llu, echo=%d, port=%d\n", 705 opts->addr.id, opts->ahmac, echo, ntohs(opts->addr.port)); 706 707 return true; 708 } 709 710 static bool mptcp_established_options_rm_addr(struct sock *sk, 711 unsigned int *size, 712 unsigned int remaining, 713 struct mptcp_out_options *opts) 714 { 715 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 716 struct mptcp_sock *msk = mptcp_sk(subflow->conn); 717 struct mptcp_rm_list rm_list; 718 int i, len; 719 720 if (!mptcp_pm_should_rm_signal(msk) || 721 !(mptcp_pm_rm_addr_signal(msk, remaining, &rm_list))) 722 return false; 723 724 len = mptcp_rm_addr_len(&rm_list); 725 if (len < 0) 726 return false; 727 if (remaining < len) 728 return false; 729 730 *size = len; 731 opts->suboptions |= OPTION_MPTCP_RM_ADDR; 732 opts->rm_list = rm_list; 733 734 for (i = 0; i < opts->rm_list.nr; i++) 735 pr_debug("rm_list_ids[%d]=%d\n", i, opts->rm_list.ids[i]); 736 MPTCP_ADD_STATS(sock_net(sk), MPTCP_MIB_RMADDRTX, opts->rm_list.nr); 737 return true; 738 } 739 740 static bool mptcp_established_options_mp_prio(struct sock *sk, 741 unsigned int *size, 742 unsigned int remaining, 743 struct mptcp_out_options *opts) 744 { 745 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 746 747 /* can't send MP_PRIO with MPC, as they share the same option space: 748 * 'backup'. Also it makes no sense at all 749 */ 750 if (!subflow->send_mp_prio || (opts->suboptions & OPTIONS_MPTCP_MPC)) 751 return false; 752 753 /* account for the trailing 'nop' option */ 754 if (remaining < TCPOLEN_MPTCP_PRIO_ALIGN) 755 return false; 756 757 *size = TCPOLEN_MPTCP_PRIO_ALIGN; 758 opts->suboptions |= OPTION_MPTCP_PRIO; 759 opts->backup = subflow->request_bkup; 760 761 pr_debug("prio=%d\n", opts->backup); 762 763 return true; 764 } 765 766 static noinline bool mptcp_established_options_rst(struct sock *sk, struct sk_buff *skb, 767 unsigned int *size, 768 unsigned int remaining, 769 struct mptcp_out_options *opts) 770 { 771 const struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 772 773 if (remaining < TCPOLEN_MPTCP_RST) 774 return false; 775 776 *size = TCPOLEN_MPTCP_RST; 777 opts->suboptions |= OPTION_MPTCP_RST; 778 opts->reset_transient = subflow->reset_transient; 779 opts->reset_reason = subflow->reset_reason; 780 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_MPRSTTX); 781 782 return true; 783 } 784 785 static bool mptcp_established_options_fastclose(struct sock *sk, 786 unsigned int *size, 787 unsigned int remaining, 788 struct mptcp_out_options *opts) 789 { 790 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 791 struct mptcp_sock *msk = mptcp_sk(subflow->conn); 792 793 if (likely(!subflow->send_fastclose)) 794 return false; 795 796 if (remaining < TCPOLEN_MPTCP_FASTCLOSE) 797 return false; 798 799 *size = TCPOLEN_MPTCP_FASTCLOSE; 800 opts->suboptions |= OPTION_MPTCP_FASTCLOSE; 801 opts->rcvr_key = READ_ONCE(msk->remote_key); 802 803 pr_debug("FASTCLOSE key=%llu\n", opts->rcvr_key); 804 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_MPFASTCLOSETX); 805 return true; 806 } 807 808 static bool mptcp_established_options_mp_fail(struct sock *sk, 809 unsigned int *size, 810 unsigned int remaining, 811 struct mptcp_out_options *opts) 812 { 813 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 814 815 if (likely(!subflow->send_mp_fail)) 816 return false; 817 818 if (remaining < TCPOLEN_MPTCP_FAIL) 819 return false; 820 821 *size = TCPOLEN_MPTCP_FAIL; 822 opts->suboptions |= OPTION_MPTCP_FAIL; 823 opts->fail_seq = subflow->map_seq; 824 825 pr_debug("MP_FAIL fail_seq=%llu\n", opts->fail_seq); 826 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_MPFAILTX); 827 828 return true; 829 } 830 831 bool mptcp_established_options(struct sock *sk, struct sk_buff *skb, 832 unsigned int *size, unsigned int remaining, 833 struct mptcp_out_options *opts) 834 { 835 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 836 struct mptcp_sock *msk = mptcp_sk(subflow->conn); 837 unsigned int opt_size = 0; 838 bool snd_data_fin; 839 bool ret = false; 840 841 opts->suboptions = 0; 842 843 if (unlikely(__mptcp_check_fallback(msk) && !mptcp_check_infinite_map(skb))) 844 return false; 845 846 if (unlikely(skb && TCP_SKB_CB(skb)->tcp_flags & TCPHDR_RST)) { 847 if (mptcp_established_options_fastclose(sk, &opt_size, remaining, opts) || 848 mptcp_established_options_mp_fail(sk, &opt_size, remaining, opts)) { 849 *size += opt_size; 850 remaining -= opt_size; 851 } 852 /* MP_RST can be used with MP_FASTCLOSE and MP_FAIL if there is room */ 853 if (mptcp_established_options_rst(sk, skb, &opt_size, remaining, opts)) { 854 *size += opt_size; 855 remaining -= opt_size; 856 } 857 return true; 858 } 859 860 snd_data_fin = mptcp_data_fin_enabled(msk); 861 if (mptcp_established_options_mp(sk, skb, snd_data_fin, &opt_size, opts)) 862 ret = true; 863 else if (mptcp_established_options_dss(sk, skb, snd_data_fin, &opt_size, opts)) { 864 unsigned int mp_fail_size; 865 866 ret = true; 867 if (mptcp_established_options_mp_fail(sk, &mp_fail_size, 868 remaining - opt_size, opts)) { 869 *size += opt_size + mp_fail_size; 870 remaining -= opt_size - mp_fail_size; 871 return true; 872 } 873 } 874 875 /* we reserved enough space for the above options, and exceeding the 876 * TCP option space would be fatal 877 */ 878 if (WARN_ON_ONCE(opt_size > remaining)) 879 return false; 880 881 *size += opt_size; 882 remaining -= opt_size; 883 if (mptcp_established_options_add_addr(sk, skb, &opt_size, remaining, opts)) { 884 *size += opt_size; 885 remaining -= opt_size; 886 ret = true; 887 } else if (mptcp_established_options_rm_addr(sk, &opt_size, remaining, opts)) { 888 *size += opt_size; 889 remaining -= opt_size; 890 ret = true; 891 } 892 893 if (mptcp_established_options_mp_prio(sk, &opt_size, remaining, opts)) { 894 *size += opt_size; 895 remaining -= opt_size; 896 ret = true; 897 } 898 899 return ret; 900 } 901 902 bool mptcp_synack_options(const struct request_sock *req, unsigned int *size, 903 struct mptcp_out_options *opts) 904 { 905 struct mptcp_subflow_request_sock *subflow_req = mptcp_subflow_rsk(req); 906 907 if (subflow_req->mp_capable) { 908 opts->suboptions = OPTION_MPTCP_MPC_SYNACK; 909 opts->sndr_key = subflow_req->local_key; 910 opts->csum_reqd = subflow_req->csum_reqd; 911 opts->allow_join_id0 = subflow_req->allow_join_id0; 912 *size = TCPOLEN_MPTCP_MPC_SYNACK; 913 pr_debug("subflow_req=%p, local_key=%llu\n", 914 subflow_req, subflow_req->local_key); 915 return true; 916 } else if (subflow_req->mp_join) { 917 opts->suboptions = OPTION_MPTCP_MPJ_SYNACK; 918 opts->backup = subflow_req->request_bkup; 919 opts->join_id = subflow_req->local_id; 920 opts->thmac = subflow_req->thmac; 921 opts->nonce = subflow_req->local_nonce; 922 pr_debug("req=%p, bkup=%u, id=%u, thmac=%llu, nonce=%u\n", 923 subflow_req, opts->backup, opts->join_id, 924 opts->thmac, opts->nonce); 925 *size = TCPOLEN_MPTCP_MPJ_SYNACK; 926 return true; 927 } 928 return false; 929 } 930 931 static bool check_fully_established(struct mptcp_sock *msk, struct sock *ssk, 932 struct mptcp_subflow_context *subflow, 933 struct sk_buff *skb, 934 struct mptcp_options_received *mp_opt) 935 { 936 /* here we can process OoO, in-window pkts, only in-sequence 4th ack 937 * will make the subflow fully established 938 */ 939 if (likely(READ_ONCE(subflow->fully_established))) { 940 /* on passive sockets, check for 3rd ack retransmission 941 * note that msk is always set by subflow_syn_recv_sock() 942 * for mp_join subflows 943 */ 944 if (TCP_SKB_CB(skb)->seq == subflow->ssn_offset + 1 && 945 TCP_SKB_CB(skb)->end_seq == TCP_SKB_CB(skb)->seq && 946 subflow->mp_join && (mp_opt->suboptions & OPTIONS_MPTCP_MPJ) && 947 !subflow->request_join) 948 tcp_send_ack(ssk); 949 goto check_notify; 950 } 951 952 /* we must process OoO packets before the first subflow is fully 953 * established. OoO packets are instead a protocol violation 954 * for MP_JOIN subflows as the peer must not send any data 955 * before receiving the forth ack - cfr. RFC 8684 section 3.2. 956 */ 957 if (TCP_SKB_CB(skb)->seq != subflow->ssn_offset + 1) { 958 if (subflow->mp_join) 959 goto reset; 960 if (subflow->is_mptfo && mp_opt->suboptions & OPTION_MPTCP_MPC_ACK) 961 goto set_fully_established; 962 return subflow->mp_capable; 963 } 964 965 if (subflow->remote_key_valid && 966 (((mp_opt->suboptions & OPTION_MPTCP_DSS) && mp_opt->use_ack) || 967 ((mp_opt->suboptions & OPTION_MPTCP_ADD_ADDR) && 968 (!mp_opt->echo || subflow->mp_join)))) { 969 /* subflows are fully established as soon as we get any 970 * additional ack, including ADD_ADDR. 971 */ 972 goto set_fully_established; 973 } 974 975 /* If the first established packet does not contain MP_CAPABLE + data 976 * then fallback to TCP. Fallback scenarios requires a reset for 977 * MP_JOIN subflows. 978 */ 979 if (!(mp_opt->suboptions & OPTIONS_MPTCP_MPC)) { 980 if (subflow->mp_join) 981 goto reset; 982 subflow->mp_capable = 0; 983 pr_fallback(msk); 984 mptcp_do_fallback(ssk); 985 return false; 986 } 987 988 if (mp_opt->deny_join_id0) 989 WRITE_ONCE(msk->pm.remote_deny_join_id0, true); 990 991 if (unlikely(!READ_ONCE(msk->pm.server_side))) 992 pr_warn_once("bogus mpc option on established client sk"); 993 994 set_fully_established: 995 mptcp_data_lock((struct sock *)msk); 996 __mptcp_subflow_fully_established(msk, subflow, mp_opt); 997 mptcp_data_unlock((struct sock *)msk); 998 999 check_notify: 1000 /* if the subflow is not already linked into the conn_list, we can't 1001 * notify the PM: this subflow is still on the listener queue 1002 * and the PM possibly acquiring the subflow lock could race with 1003 * the listener close 1004 */ 1005 if (likely(subflow->pm_notified) || list_empty(&subflow->node)) 1006 return true; 1007 1008 subflow->pm_notified = 1; 1009 if (subflow->mp_join) { 1010 clear_3rdack_retransmission(ssk); 1011 mptcp_pm_subflow_established(msk); 1012 } else { 1013 mptcp_pm_fully_established(msk, ssk); 1014 } 1015 return true; 1016 1017 reset: 1018 mptcp_subflow_reset(ssk); 1019 return false; 1020 } 1021 1022 u64 __mptcp_expand_seq(u64 old_seq, u64 cur_seq) 1023 { 1024 u32 old_seq32, cur_seq32; 1025 1026 old_seq32 = (u32)old_seq; 1027 cur_seq32 = (u32)cur_seq; 1028 cur_seq = (old_seq & GENMASK_ULL(63, 32)) + cur_seq32; 1029 if (unlikely(cur_seq32 < old_seq32 && before(old_seq32, cur_seq32))) 1030 return cur_seq + (1LL << 32); 1031 1032 /* reverse wrap could happen, too */ 1033 if (unlikely(cur_seq32 > old_seq32 && after(old_seq32, cur_seq32))) 1034 return cur_seq - (1LL << 32); 1035 return cur_seq; 1036 } 1037 1038 static void __mptcp_snd_una_update(struct mptcp_sock *msk, u64 new_snd_una) 1039 { 1040 msk->bytes_acked += new_snd_una - msk->snd_una; 1041 WRITE_ONCE(msk->snd_una, new_snd_una); 1042 } 1043 1044 static void ack_update_msk(struct mptcp_sock *msk, 1045 struct sock *ssk, 1046 struct mptcp_options_received *mp_opt) 1047 { 1048 u64 new_wnd_end, new_snd_una, snd_nxt = READ_ONCE(msk->snd_nxt); 1049 struct sock *sk = (struct sock *)msk; 1050 u64 old_snd_una; 1051 1052 mptcp_data_lock(sk); 1053 1054 /* avoid ack expansion on update conflict, to reduce the risk of 1055 * wrongly expanding to a future ack sequence number, which is way 1056 * more dangerous than missing an ack 1057 */ 1058 old_snd_una = msk->snd_una; 1059 new_snd_una = mptcp_expand_seq(old_snd_una, mp_opt->data_ack, mp_opt->ack64); 1060 1061 /* ACK for data not even sent yet? Ignore.*/ 1062 if (unlikely(after64(new_snd_una, snd_nxt))) 1063 new_snd_una = old_snd_una; 1064 1065 new_wnd_end = new_snd_una + tcp_sk(ssk)->snd_wnd; 1066 1067 if (after64(new_wnd_end, msk->wnd_end)) 1068 WRITE_ONCE(msk->wnd_end, new_wnd_end); 1069 1070 /* this assumes mptcp_incoming_options() is invoked after tcp_ack() */ 1071 if (after64(msk->wnd_end, snd_nxt)) 1072 __mptcp_check_push(sk, ssk); 1073 1074 if (after64(new_snd_una, old_snd_una)) { 1075 __mptcp_snd_una_update(msk, new_snd_una); 1076 __mptcp_data_acked(sk); 1077 } 1078 msk->last_ack_recv = tcp_jiffies32; 1079 mptcp_data_unlock(sk); 1080 1081 trace_ack_update_msk(mp_opt->data_ack, 1082 old_snd_una, new_snd_una, 1083 new_wnd_end, READ_ONCE(msk->wnd_end)); 1084 } 1085 1086 bool mptcp_update_rcv_data_fin(struct mptcp_sock *msk, u64 data_fin_seq, bool use_64bit) 1087 { 1088 /* Skip if DATA_FIN was already received. 1089 * If updating simultaneously with the recvmsg loop, values 1090 * should match. If they mismatch, the peer is misbehaving and 1091 * we will prefer the most recent information. 1092 */ 1093 if (READ_ONCE(msk->rcv_data_fin)) 1094 return false; 1095 1096 WRITE_ONCE(msk->rcv_data_fin_seq, 1097 mptcp_expand_seq(READ_ONCE(msk->ack_seq), data_fin_seq, use_64bit)); 1098 WRITE_ONCE(msk->rcv_data_fin, 1); 1099 1100 return true; 1101 } 1102 1103 static bool add_addr_hmac_valid(struct mptcp_sock *msk, 1104 struct mptcp_options_received *mp_opt) 1105 { 1106 u64 hmac = 0; 1107 1108 if (mp_opt->echo) 1109 return true; 1110 1111 hmac = add_addr_generate_hmac(READ_ONCE(msk->remote_key), 1112 READ_ONCE(msk->local_key), 1113 &mp_opt->addr); 1114 1115 pr_debug("msk=%p, ahmac=%llu, mp_opt->ahmac=%llu\n", 1116 msk, hmac, mp_opt->ahmac); 1117 1118 return hmac == mp_opt->ahmac; 1119 } 1120 1121 /* Return false if a subflow has been reset, else return true */ 1122 bool mptcp_incoming_options(struct sock *sk, struct sk_buff *skb) 1123 { 1124 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 1125 struct mptcp_sock *msk = mptcp_sk(subflow->conn); 1126 struct mptcp_options_received mp_opt; 1127 struct mptcp_ext *mpext; 1128 1129 if (__mptcp_check_fallback(msk)) { 1130 /* Keep it simple and unconditionally trigger send data cleanup and 1131 * pending queue spooling. We will need to acquire the data lock 1132 * for more accurate checks, and once the lock is acquired, such 1133 * helpers are cheap. 1134 */ 1135 mptcp_data_lock(subflow->conn); 1136 if (sk_stream_memory_free(sk)) 1137 __mptcp_check_push(subflow->conn, sk); 1138 1139 /* on fallback we just need to ignore the msk-level snd_una, as 1140 * this is really plain TCP 1141 */ 1142 __mptcp_snd_una_update(msk, READ_ONCE(msk->snd_nxt)); 1143 1144 __mptcp_data_acked(subflow->conn); 1145 mptcp_data_unlock(subflow->conn); 1146 return true; 1147 } 1148 1149 mptcp_get_options(skb, &mp_opt); 1150 1151 /* The subflow can be in close state only if check_fully_established() 1152 * just sent a reset. If so, tell the caller to ignore the current packet. 1153 */ 1154 if (!check_fully_established(msk, sk, subflow, skb, &mp_opt)) 1155 return sk->sk_state != TCP_CLOSE; 1156 1157 if (unlikely(mp_opt.suboptions != OPTION_MPTCP_DSS)) { 1158 if ((mp_opt.suboptions & OPTION_MPTCP_FASTCLOSE) && 1159 READ_ONCE(msk->local_key) == mp_opt.rcvr_key) { 1160 WRITE_ONCE(msk->rcv_fastclose, true); 1161 mptcp_schedule_work((struct sock *)msk); 1162 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_MPFASTCLOSERX); 1163 } 1164 1165 if ((mp_opt.suboptions & OPTION_MPTCP_ADD_ADDR) && 1166 add_addr_hmac_valid(msk, &mp_opt)) { 1167 if (!mp_opt.echo) { 1168 mptcp_pm_add_addr_received(sk, &mp_opt.addr); 1169 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_ADDADDR); 1170 } else { 1171 mptcp_pm_add_addr_echoed(msk, &mp_opt.addr); 1172 mptcp_pm_del_add_timer(msk, &mp_opt.addr, true); 1173 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_ECHOADD); 1174 } 1175 1176 if (mp_opt.addr.port) 1177 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_PORTADD); 1178 } 1179 1180 if (mp_opt.suboptions & OPTION_MPTCP_RM_ADDR) 1181 mptcp_pm_rm_addr_received(msk, &mp_opt.rm_list); 1182 1183 if (mp_opt.suboptions & OPTION_MPTCP_PRIO) { 1184 mptcp_pm_mp_prio_received(sk, mp_opt.backup); 1185 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_MPPRIORX); 1186 } 1187 1188 if (mp_opt.suboptions & OPTION_MPTCP_FAIL) { 1189 mptcp_pm_mp_fail_received(sk, mp_opt.fail_seq); 1190 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_MPFAILRX); 1191 } 1192 1193 if (mp_opt.suboptions & OPTION_MPTCP_RST) { 1194 subflow->reset_seen = 1; 1195 subflow->reset_reason = mp_opt.reset_reason; 1196 subflow->reset_transient = mp_opt.reset_transient; 1197 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_MPRSTRX); 1198 } 1199 1200 if (!(mp_opt.suboptions & OPTION_MPTCP_DSS)) 1201 return true; 1202 } 1203 1204 /* we can't wait for recvmsg() to update the ack_seq, otherwise 1205 * monodirectional flows will stuck 1206 */ 1207 if (mp_opt.use_ack) 1208 ack_update_msk(msk, sk, &mp_opt); 1209 1210 /* Zero-data-length packets are dropped by the caller and not 1211 * propagated to the MPTCP layer, so the skb extension does not 1212 * need to be allocated or populated. DATA_FIN information, if 1213 * present, needs to be updated here before the skb is freed. 1214 */ 1215 if (TCP_SKB_CB(skb)->seq == TCP_SKB_CB(skb)->end_seq) { 1216 if (mp_opt.data_fin && mp_opt.data_len == 1 && 1217 mptcp_update_rcv_data_fin(msk, mp_opt.data_seq, mp_opt.dsn64)) 1218 mptcp_schedule_work((struct sock *)msk); 1219 1220 return true; 1221 } 1222 1223 mpext = skb_ext_add(skb, SKB_EXT_MPTCP); 1224 if (!mpext) 1225 return true; 1226 1227 memset(mpext, 0, sizeof(*mpext)); 1228 1229 if (likely(mp_opt.use_map)) { 1230 if (mp_opt.mpc_map) { 1231 /* this is an MP_CAPABLE carrying MPTCP data 1232 * we know this map the first chunk of data 1233 */ 1234 mptcp_crypto_key_sha(subflow->remote_key, NULL, 1235 &mpext->data_seq); 1236 mpext->data_seq++; 1237 mpext->subflow_seq = 1; 1238 mpext->dsn64 = 1; 1239 mpext->mpc_map = 1; 1240 mpext->data_fin = 0; 1241 } else { 1242 mpext->data_seq = mp_opt.data_seq; 1243 mpext->subflow_seq = mp_opt.subflow_seq; 1244 mpext->dsn64 = mp_opt.dsn64; 1245 mpext->data_fin = mp_opt.data_fin; 1246 } 1247 mpext->data_len = mp_opt.data_len; 1248 mpext->use_map = 1; 1249 mpext->csum_reqd = !!(mp_opt.suboptions & OPTION_MPTCP_CSUMREQD); 1250 1251 if (mpext->csum_reqd) 1252 mpext->csum = mp_opt.csum; 1253 } 1254 1255 return true; 1256 } 1257 1258 static void mptcp_set_rwin(struct tcp_sock *tp, struct tcphdr *th) 1259 { 1260 const struct sock *ssk = (const struct sock *)tp; 1261 struct mptcp_subflow_context *subflow; 1262 u64 ack_seq, rcv_wnd_old, rcv_wnd_new; 1263 struct mptcp_sock *msk; 1264 u32 new_win; 1265 u64 win; 1266 1267 subflow = mptcp_subflow_ctx(ssk); 1268 msk = mptcp_sk(subflow->conn); 1269 1270 ack_seq = READ_ONCE(msk->ack_seq); 1271 rcv_wnd_new = ack_seq + tp->rcv_wnd; 1272 1273 rcv_wnd_old = atomic64_read(&msk->rcv_wnd_sent); 1274 if (after64(rcv_wnd_new, rcv_wnd_old)) { 1275 u64 rcv_wnd; 1276 1277 for (;;) { 1278 rcv_wnd = atomic64_cmpxchg(&msk->rcv_wnd_sent, rcv_wnd_old, rcv_wnd_new); 1279 1280 if (rcv_wnd == rcv_wnd_old) 1281 break; 1282 1283 rcv_wnd_old = rcv_wnd; 1284 if (before64(rcv_wnd_new, rcv_wnd_old)) { 1285 MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_RCVWNDCONFLICTUPDATE); 1286 goto raise_win; 1287 } 1288 MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_RCVWNDCONFLICT); 1289 } 1290 goto update_wspace; 1291 } 1292 1293 if (rcv_wnd_new != rcv_wnd_old) { 1294 raise_win: 1295 win = rcv_wnd_old - ack_seq; 1296 tp->rcv_wnd = min_t(u64, win, U32_MAX); 1297 new_win = tp->rcv_wnd; 1298 1299 /* Make sure we do not exceed the maximum possible 1300 * scaled window. 1301 */ 1302 if (unlikely(th->syn)) 1303 new_win = min(new_win, 65535U) << tp->rx_opt.rcv_wscale; 1304 if (!tp->rx_opt.rcv_wscale && 1305 READ_ONCE(sock_net(ssk)->ipv4.sysctl_tcp_workaround_signed_windows)) 1306 new_win = min(new_win, MAX_TCP_WINDOW); 1307 else 1308 new_win = min(new_win, (65535U << tp->rx_opt.rcv_wscale)); 1309 1310 /* RFC1323 scaling applied */ 1311 new_win >>= tp->rx_opt.rcv_wscale; 1312 th->window = htons(new_win); 1313 MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_RCVWNDSHARED); 1314 } 1315 1316 update_wspace: 1317 WRITE_ONCE(msk->old_wspace, tp->rcv_wnd); 1318 } 1319 1320 __sum16 __mptcp_make_csum(u64 data_seq, u32 subflow_seq, u16 data_len, __wsum sum) 1321 { 1322 struct csum_pseudo_header header; 1323 __wsum csum; 1324 1325 /* cfr RFC 8684 3.3.1.: 1326 * the data sequence number used in the pseudo-header is 1327 * always the 64-bit value, irrespective of what length is used in the 1328 * DSS option itself. 1329 */ 1330 header.data_seq = cpu_to_be64(data_seq); 1331 header.subflow_seq = htonl(subflow_seq); 1332 header.data_len = htons(data_len); 1333 header.csum = 0; 1334 1335 csum = csum_partial(&header, sizeof(header), sum); 1336 return csum_fold(csum); 1337 } 1338 1339 static __sum16 mptcp_make_csum(const struct mptcp_ext *mpext) 1340 { 1341 return __mptcp_make_csum(mpext->data_seq, mpext->subflow_seq, mpext->data_len, 1342 ~csum_unfold(mpext->csum)); 1343 } 1344 1345 static void put_len_csum(u16 len, __sum16 csum, void *data) 1346 { 1347 __sum16 *sumptr = data + 2; 1348 __be16 *ptr = data; 1349 1350 put_unaligned_be16(len, ptr); 1351 1352 put_unaligned(csum, sumptr); 1353 } 1354 1355 void mptcp_write_options(struct tcphdr *th, __be32 *ptr, struct tcp_sock *tp, 1356 struct mptcp_out_options *opts) 1357 { 1358 const struct sock *ssk = (const struct sock *)tp; 1359 struct mptcp_subflow_context *subflow; 1360 1361 /* Which options can be used together? 1362 * 1363 * X: mutually exclusive 1364 * O: often used together 1365 * C: can be used together in some cases 1366 * P: could be used together but we prefer not to (optimisations) 1367 * 1368 * Opt: | MPC | MPJ | DSS | ADD | RM | PRIO | FAIL | FC | 1369 * ------|------|------|------|------|------|------|------|------| 1370 * MPC |------|------|------|------|------|------|------|------| 1371 * MPJ | X |------|------|------|------|------|------|------| 1372 * DSS | X | X |------|------|------|------|------|------| 1373 * ADD | X | X | P |------|------|------|------|------| 1374 * RM | C | C | C | P |------|------|------|------| 1375 * PRIO | X | C | C | C | C |------|------|------| 1376 * FAIL | X | X | C | X | X | X |------|------| 1377 * FC | X | X | X | X | X | X | X |------| 1378 * RST | X | X | X | X | X | X | O | O | 1379 * ------|------|------|------|------|------|------|------|------| 1380 * 1381 * The same applies in mptcp_established_options() function. 1382 */ 1383 if (likely(OPTION_MPTCP_DSS & opts->suboptions)) { 1384 struct mptcp_ext *mpext = &opts->ext_copy; 1385 u8 len = TCPOLEN_MPTCP_DSS_BASE; 1386 u8 flags = 0; 1387 1388 if (mpext->use_ack) { 1389 flags = MPTCP_DSS_HAS_ACK; 1390 if (mpext->ack64) { 1391 len += TCPOLEN_MPTCP_DSS_ACK64; 1392 flags |= MPTCP_DSS_ACK64; 1393 } else { 1394 len += TCPOLEN_MPTCP_DSS_ACK32; 1395 } 1396 } 1397 1398 if (mpext->use_map) { 1399 len += TCPOLEN_MPTCP_DSS_MAP64; 1400 1401 /* Use only 64-bit mapping flags for now, add 1402 * support for optional 32-bit mappings later. 1403 */ 1404 flags |= MPTCP_DSS_HAS_MAP | MPTCP_DSS_DSN64; 1405 if (mpext->data_fin) 1406 flags |= MPTCP_DSS_DATA_FIN; 1407 1408 if (opts->csum_reqd) 1409 len += TCPOLEN_MPTCP_DSS_CHECKSUM; 1410 } 1411 1412 *ptr++ = mptcp_option(MPTCPOPT_DSS, len, 0, flags); 1413 1414 if (mpext->use_ack) { 1415 if (mpext->ack64) { 1416 put_unaligned_be64(mpext->data_ack, ptr); 1417 ptr += 2; 1418 } else { 1419 put_unaligned_be32(mpext->data_ack32, ptr); 1420 ptr += 1; 1421 } 1422 } 1423 1424 if (mpext->use_map) { 1425 put_unaligned_be64(mpext->data_seq, ptr); 1426 ptr += 2; 1427 put_unaligned_be32(mpext->subflow_seq, ptr); 1428 ptr += 1; 1429 if (opts->csum_reqd) { 1430 /* data_len == 0 is reserved for the infinite mapping, 1431 * the checksum will also be set to 0. 1432 */ 1433 put_len_csum(mpext->data_len, 1434 (mpext->data_len ? mptcp_make_csum(mpext) : 0), 1435 ptr); 1436 } else { 1437 put_unaligned_be32(mpext->data_len << 16 | 1438 TCPOPT_NOP << 8 | TCPOPT_NOP, ptr); 1439 } 1440 ptr += 1; 1441 } 1442 1443 /* We might need to add MP_FAIL options in rare cases */ 1444 if (unlikely(OPTION_MPTCP_FAIL & opts->suboptions)) 1445 goto mp_fail; 1446 } else if (OPTIONS_MPTCP_MPC & opts->suboptions) { 1447 u8 len, flag = MPTCP_CAP_HMAC_SHA256; 1448 1449 if (OPTION_MPTCP_MPC_SYN & opts->suboptions) { 1450 len = TCPOLEN_MPTCP_MPC_SYN; 1451 } else if (OPTION_MPTCP_MPC_SYNACK & opts->suboptions) { 1452 len = TCPOLEN_MPTCP_MPC_SYNACK; 1453 } else if (opts->data_len) { 1454 len = TCPOLEN_MPTCP_MPC_ACK_DATA; 1455 if (opts->csum_reqd) 1456 len += TCPOLEN_MPTCP_DSS_CHECKSUM; 1457 } else { 1458 len = TCPOLEN_MPTCP_MPC_ACK; 1459 } 1460 1461 if (opts->csum_reqd) 1462 flag |= MPTCP_CAP_CHECKSUM_REQD; 1463 1464 if (!opts->allow_join_id0) 1465 flag |= MPTCP_CAP_DENY_JOIN_ID0; 1466 1467 *ptr++ = mptcp_option(MPTCPOPT_MP_CAPABLE, len, 1468 MPTCP_SUPPORTED_VERSION, 1469 flag); 1470 1471 if (!((OPTION_MPTCP_MPC_SYNACK | OPTION_MPTCP_MPC_ACK) & 1472 opts->suboptions)) 1473 goto mp_capable_done; 1474 1475 put_unaligned_be64(opts->sndr_key, ptr); 1476 ptr += 2; 1477 if (!((OPTION_MPTCP_MPC_ACK) & opts->suboptions)) 1478 goto mp_capable_done; 1479 1480 put_unaligned_be64(opts->rcvr_key, ptr); 1481 ptr += 2; 1482 if (!opts->data_len) 1483 goto mp_capable_done; 1484 1485 if (opts->csum_reqd) { 1486 put_len_csum(opts->data_len, 1487 __mptcp_make_csum(opts->data_seq, 1488 opts->subflow_seq, 1489 opts->data_len, 1490 ~csum_unfold(opts->csum)), 1491 ptr); 1492 } else { 1493 put_unaligned_be32(opts->data_len << 16 | 1494 TCPOPT_NOP << 8 | TCPOPT_NOP, ptr); 1495 } 1496 ptr += 1; 1497 1498 /* MPC is additionally mutually exclusive with MP_PRIO */ 1499 goto mp_capable_done; 1500 } else if (OPTIONS_MPTCP_MPJ & opts->suboptions) { 1501 if (OPTION_MPTCP_MPJ_SYN & opts->suboptions) { 1502 *ptr++ = mptcp_option(MPTCPOPT_MP_JOIN, 1503 TCPOLEN_MPTCP_MPJ_SYN, 1504 opts->backup, opts->join_id); 1505 put_unaligned_be32(opts->token, ptr); 1506 ptr += 1; 1507 put_unaligned_be32(opts->nonce, ptr); 1508 ptr += 1; 1509 } else if (OPTION_MPTCP_MPJ_SYNACK & opts->suboptions) { 1510 *ptr++ = mptcp_option(MPTCPOPT_MP_JOIN, 1511 TCPOLEN_MPTCP_MPJ_SYNACK, 1512 opts->backup, opts->join_id); 1513 put_unaligned_be64(opts->thmac, ptr); 1514 ptr += 2; 1515 put_unaligned_be32(opts->nonce, ptr); 1516 ptr += 1; 1517 } else { 1518 *ptr++ = mptcp_option(MPTCPOPT_MP_JOIN, 1519 TCPOLEN_MPTCP_MPJ_ACK, 0, 0); 1520 memcpy(ptr, opts->hmac, MPTCPOPT_HMAC_LEN); 1521 ptr += 5; 1522 } 1523 } else if (OPTION_MPTCP_ADD_ADDR & opts->suboptions) { 1524 u8 len = TCPOLEN_MPTCP_ADD_ADDR_BASE; 1525 u8 echo = MPTCP_ADDR_ECHO; 1526 1527 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 1528 if (opts->addr.family == AF_INET6) 1529 len = TCPOLEN_MPTCP_ADD_ADDR6_BASE; 1530 #endif 1531 1532 if (opts->addr.port) 1533 len += TCPOLEN_MPTCP_PORT_LEN; 1534 1535 if (opts->ahmac) { 1536 len += sizeof(opts->ahmac); 1537 echo = 0; 1538 } 1539 1540 *ptr++ = mptcp_option(MPTCPOPT_ADD_ADDR, 1541 len, echo, opts->addr.id); 1542 if (opts->addr.family == AF_INET) { 1543 memcpy((u8 *)ptr, (u8 *)&opts->addr.addr.s_addr, 4); 1544 ptr += 1; 1545 } 1546 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 1547 else if (opts->addr.family == AF_INET6) { 1548 memcpy((u8 *)ptr, opts->addr.addr6.s6_addr, 16); 1549 ptr += 4; 1550 } 1551 #endif 1552 1553 if (!opts->addr.port) { 1554 if (opts->ahmac) { 1555 put_unaligned_be64(opts->ahmac, ptr); 1556 ptr += 2; 1557 } 1558 } else { 1559 u16 port = ntohs(opts->addr.port); 1560 1561 if (opts->ahmac) { 1562 u8 *bptr = (u8 *)ptr; 1563 1564 put_unaligned_be16(port, bptr); 1565 bptr += 2; 1566 put_unaligned_be64(opts->ahmac, bptr); 1567 bptr += 8; 1568 put_unaligned_be16(TCPOPT_NOP << 8 | 1569 TCPOPT_NOP, bptr); 1570 1571 ptr += 3; 1572 } else { 1573 put_unaligned_be32(port << 16 | 1574 TCPOPT_NOP << 8 | 1575 TCPOPT_NOP, ptr); 1576 ptr += 1; 1577 } 1578 } 1579 } else if (unlikely(OPTION_MPTCP_FASTCLOSE & opts->suboptions)) { 1580 /* FASTCLOSE is mutually exclusive with others except RST */ 1581 *ptr++ = mptcp_option(MPTCPOPT_MP_FASTCLOSE, 1582 TCPOLEN_MPTCP_FASTCLOSE, 1583 0, 0); 1584 put_unaligned_be64(opts->rcvr_key, ptr); 1585 ptr += 2; 1586 1587 if (OPTION_MPTCP_RST & opts->suboptions) 1588 goto mp_rst; 1589 return; 1590 } else if (unlikely(OPTION_MPTCP_FAIL & opts->suboptions)) { 1591 mp_fail: 1592 /* MP_FAIL is mutually exclusive with others except RST */ 1593 subflow = mptcp_subflow_ctx(ssk); 1594 subflow->send_mp_fail = 0; 1595 1596 *ptr++ = mptcp_option(MPTCPOPT_MP_FAIL, 1597 TCPOLEN_MPTCP_FAIL, 1598 0, 0); 1599 put_unaligned_be64(opts->fail_seq, ptr); 1600 ptr += 2; 1601 1602 if (OPTION_MPTCP_RST & opts->suboptions) 1603 goto mp_rst; 1604 return; 1605 } else if (unlikely(OPTION_MPTCP_RST & opts->suboptions)) { 1606 mp_rst: 1607 *ptr++ = mptcp_option(MPTCPOPT_RST, 1608 TCPOLEN_MPTCP_RST, 1609 opts->reset_transient, 1610 opts->reset_reason); 1611 return; 1612 } 1613 1614 if (OPTION_MPTCP_PRIO & opts->suboptions) { 1615 subflow = mptcp_subflow_ctx(ssk); 1616 subflow->send_mp_prio = 0; 1617 1618 *ptr++ = mptcp_option(MPTCPOPT_MP_PRIO, 1619 TCPOLEN_MPTCP_PRIO, 1620 opts->backup, TCPOPT_NOP); 1621 1622 MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_MPPRIOTX); 1623 } 1624 1625 mp_capable_done: 1626 if (OPTION_MPTCP_RM_ADDR & opts->suboptions) { 1627 u8 i = 1; 1628 1629 *ptr++ = mptcp_option(MPTCPOPT_RM_ADDR, 1630 TCPOLEN_MPTCP_RM_ADDR_BASE + opts->rm_list.nr, 1631 0, opts->rm_list.ids[0]); 1632 1633 while (i < opts->rm_list.nr) { 1634 u8 id1, id2, id3, id4; 1635 1636 id1 = opts->rm_list.ids[i]; 1637 id2 = i + 1 < opts->rm_list.nr ? opts->rm_list.ids[i + 1] : TCPOPT_NOP; 1638 id3 = i + 2 < opts->rm_list.nr ? opts->rm_list.ids[i + 2] : TCPOPT_NOP; 1639 id4 = i + 3 < opts->rm_list.nr ? opts->rm_list.ids[i + 3] : TCPOPT_NOP; 1640 put_unaligned_be32(id1 << 24 | id2 << 16 | id3 << 8 | id4, ptr); 1641 ptr += 1; 1642 i += 4; 1643 } 1644 } 1645 1646 if (tp) 1647 mptcp_set_rwin(tp, th); 1648 } 1649 1650 __be32 mptcp_get_reset_option(const struct sk_buff *skb) 1651 { 1652 const struct mptcp_ext *ext = mptcp_get_ext(skb); 1653 u8 flags, reason; 1654 1655 if (ext) { 1656 flags = ext->reset_transient; 1657 reason = ext->reset_reason; 1658 1659 return mptcp_option(MPTCPOPT_RST, TCPOLEN_MPTCP_RST, 1660 flags, reason); 1661 } 1662 1663 return htonl(0u); 1664 } 1665 EXPORT_SYMBOL_GPL(mptcp_get_reset_option); 1666