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 <linux/module.h> 11 #include <linux/netdevice.h> 12 #include <crypto/sha2.h> 13 #include <crypto/utils.h> 14 #include <net/sock.h> 15 #include <net/inet_common.h> 16 #include <net/inet_hashtables.h> 17 #include <net/protocol.h> 18 #include <net/tcp.h> 19 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 20 #include <net/ip6_route.h> 21 #include <net/transp_v6.h> 22 #endif 23 #include <net/mptcp.h> 24 #include <uapi/linux/mptcp.h> 25 #include "protocol.h" 26 #include "mib.h" 27 28 #include <trace/events/mptcp.h> 29 #include <trace/events/sock.h> 30 31 static void mptcp_subflow_ops_undo_override(struct sock *ssk); 32 33 static void SUBFLOW_REQ_INC_STATS(struct request_sock *req, 34 enum linux_mptcp_mib_field field) 35 { 36 MPTCP_INC_STATS(sock_net(req_to_sk(req)), field); 37 } 38 39 static void subflow_req_destructor(struct request_sock *req) 40 { 41 struct mptcp_subflow_request_sock *subflow_req = mptcp_subflow_rsk(req); 42 43 pr_debug("subflow_req=%p", subflow_req); 44 45 if (subflow_req->msk) 46 sock_put((struct sock *)subflow_req->msk); 47 48 mptcp_token_destroy_request(req); 49 } 50 51 static void subflow_generate_hmac(u64 key1, u64 key2, u32 nonce1, u32 nonce2, 52 void *hmac) 53 { 54 u8 msg[8]; 55 56 put_unaligned_be32(nonce1, &msg[0]); 57 put_unaligned_be32(nonce2, &msg[4]); 58 59 mptcp_crypto_hmac_sha(key1, key2, msg, 8, hmac); 60 } 61 62 static bool mptcp_can_accept_new_subflow(const struct mptcp_sock *msk) 63 { 64 return mptcp_is_fully_established((void *)msk) && 65 ((mptcp_pm_is_userspace(msk) && 66 mptcp_userspace_pm_active(msk)) || 67 READ_ONCE(msk->pm.accept_subflow)); 68 } 69 70 /* validate received token and create truncated hmac and nonce for SYN-ACK */ 71 static void subflow_req_create_thmac(struct mptcp_subflow_request_sock *subflow_req) 72 { 73 struct mptcp_sock *msk = subflow_req->msk; 74 u8 hmac[SHA256_DIGEST_SIZE]; 75 76 get_random_bytes(&subflow_req->local_nonce, sizeof(u32)); 77 78 subflow_generate_hmac(msk->local_key, msk->remote_key, 79 subflow_req->local_nonce, 80 subflow_req->remote_nonce, hmac); 81 82 subflow_req->thmac = get_unaligned_be64(hmac); 83 } 84 85 static struct mptcp_sock *subflow_token_join_request(struct request_sock *req) 86 { 87 struct mptcp_subflow_request_sock *subflow_req = mptcp_subflow_rsk(req); 88 struct mptcp_sock *msk; 89 int local_id; 90 91 msk = mptcp_token_get_sock(sock_net(req_to_sk(req)), subflow_req->token); 92 if (!msk) { 93 SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_JOINNOTOKEN); 94 return NULL; 95 } 96 97 local_id = mptcp_pm_get_local_id(msk, (struct sock_common *)req); 98 if (local_id < 0) { 99 sock_put((struct sock *)msk); 100 return NULL; 101 } 102 subflow_req->local_id = local_id; 103 104 return msk; 105 } 106 107 static void subflow_init_req(struct request_sock *req, const struct sock *sk_listener) 108 { 109 struct mptcp_subflow_request_sock *subflow_req = mptcp_subflow_rsk(req); 110 111 subflow_req->mp_capable = 0; 112 subflow_req->mp_join = 0; 113 subflow_req->csum_reqd = mptcp_is_checksum_enabled(sock_net(sk_listener)); 114 subflow_req->allow_join_id0 = mptcp_allow_join_id0(sock_net(sk_listener)); 115 subflow_req->msk = NULL; 116 mptcp_token_init_request(req); 117 } 118 119 static bool subflow_use_different_sport(struct mptcp_sock *msk, const struct sock *sk) 120 { 121 return inet_sk(sk)->inet_sport != inet_sk((struct sock *)msk)->inet_sport; 122 } 123 124 static void subflow_add_reset_reason(struct sk_buff *skb, u8 reason) 125 { 126 struct mptcp_ext *mpext = skb_ext_add(skb, SKB_EXT_MPTCP); 127 128 if (mpext) { 129 memset(mpext, 0, sizeof(*mpext)); 130 mpext->reset_reason = reason; 131 } 132 } 133 134 /* Init mptcp request socket. 135 * 136 * Returns an error code if a JOIN has failed and a TCP reset 137 * should be sent. 138 */ 139 static int subflow_check_req(struct request_sock *req, 140 const struct sock *sk_listener, 141 struct sk_buff *skb) 142 { 143 struct mptcp_subflow_context *listener = mptcp_subflow_ctx(sk_listener); 144 struct mptcp_subflow_request_sock *subflow_req = mptcp_subflow_rsk(req); 145 struct mptcp_options_received mp_opt; 146 bool opt_mp_capable, opt_mp_join; 147 148 pr_debug("subflow_req=%p, listener=%p", subflow_req, listener); 149 150 #ifdef CONFIG_TCP_MD5SIG 151 /* no MPTCP if MD5SIG is enabled on this socket or we may run out of 152 * TCP option space. 153 */ 154 if (rcu_access_pointer(tcp_sk(sk_listener)->md5sig_info)) 155 return -EINVAL; 156 #endif 157 158 mptcp_get_options(skb, &mp_opt); 159 160 opt_mp_capable = !!(mp_opt.suboptions & OPTION_MPTCP_MPC_SYN); 161 opt_mp_join = !!(mp_opt.suboptions & OPTION_MPTCP_MPJ_SYN); 162 if (opt_mp_capable) { 163 SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_MPCAPABLEPASSIVE); 164 165 if (opt_mp_join) 166 return 0; 167 } else if (opt_mp_join) { 168 SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_JOINSYNRX); 169 } 170 171 if (opt_mp_capable && listener->request_mptcp) { 172 int err, retries = MPTCP_TOKEN_MAX_RETRIES; 173 174 subflow_req->ssn_offset = TCP_SKB_CB(skb)->seq; 175 again: 176 do { 177 get_random_bytes(&subflow_req->local_key, sizeof(subflow_req->local_key)); 178 } while (subflow_req->local_key == 0); 179 180 if (unlikely(req->syncookie)) { 181 mptcp_crypto_key_sha(subflow_req->local_key, 182 &subflow_req->token, 183 &subflow_req->idsn); 184 if (mptcp_token_exists(subflow_req->token)) { 185 if (retries-- > 0) 186 goto again; 187 SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_TOKENFALLBACKINIT); 188 } else { 189 subflow_req->mp_capable = 1; 190 } 191 return 0; 192 } 193 194 err = mptcp_token_new_request(req); 195 if (err == 0) 196 subflow_req->mp_capable = 1; 197 else if (retries-- > 0) 198 goto again; 199 else 200 SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_TOKENFALLBACKINIT); 201 202 } else if (opt_mp_join && listener->request_mptcp) { 203 subflow_req->ssn_offset = TCP_SKB_CB(skb)->seq; 204 subflow_req->mp_join = 1; 205 subflow_req->backup = mp_opt.backup; 206 subflow_req->remote_id = mp_opt.join_id; 207 subflow_req->token = mp_opt.token; 208 subflow_req->remote_nonce = mp_opt.nonce; 209 subflow_req->msk = subflow_token_join_request(req); 210 211 /* Can't fall back to TCP in this case. */ 212 if (!subflow_req->msk) { 213 subflow_add_reset_reason(skb, MPTCP_RST_EMPTCP); 214 return -EPERM; 215 } 216 217 if (subflow_use_different_sport(subflow_req->msk, sk_listener)) { 218 pr_debug("syn inet_sport=%d %d", 219 ntohs(inet_sk(sk_listener)->inet_sport), 220 ntohs(inet_sk((struct sock *)subflow_req->msk)->inet_sport)); 221 if (!mptcp_pm_sport_in_anno_list(subflow_req->msk, sk_listener)) { 222 SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_MISMATCHPORTSYNRX); 223 return -EPERM; 224 } 225 SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_JOINPORTSYNRX); 226 } 227 228 subflow_req_create_thmac(subflow_req); 229 230 if (unlikely(req->syncookie)) { 231 if (mptcp_can_accept_new_subflow(subflow_req->msk)) 232 subflow_init_req_cookie_join_save(subflow_req, skb); 233 else 234 return -EPERM; 235 } 236 237 pr_debug("token=%u, remote_nonce=%u msk=%p", subflow_req->token, 238 subflow_req->remote_nonce, subflow_req->msk); 239 } 240 241 return 0; 242 } 243 244 int mptcp_subflow_init_cookie_req(struct request_sock *req, 245 const struct sock *sk_listener, 246 struct sk_buff *skb) 247 { 248 struct mptcp_subflow_context *listener = mptcp_subflow_ctx(sk_listener); 249 struct mptcp_subflow_request_sock *subflow_req = mptcp_subflow_rsk(req); 250 struct mptcp_options_received mp_opt; 251 bool opt_mp_capable, opt_mp_join; 252 int err; 253 254 subflow_init_req(req, sk_listener); 255 mptcp_get_options(skb, &mp_opt); 256 257 opt_mp_capable = !!(mp_opt.suboptions & OPTION_MPTCP_MPC_ACK); 258 opt_mp_join = !!(mp_opt.suboptions & OPTION_MPTCP_MPJ_ACK); 259 if (opt_mp_capable && opt_mp_join) 260 return -EINVAL; 261 262 if (opt_mp_capable && listener->request_mptcp) { 263 if (mp_opt.sndr_key == 0) 264 return -EINVAL; 265 266 subflow_req->local_key = mp_opt.rcvr_key; 267 err = mptcp_token_new_request(req); 268 if (err) 269 return err; 270 271 subflow_req->mp_capable = 1; 272 subflow_req->ssn_offset = TCP_SKB_CB(skb)->seq - 1; 273 } else if (opt_mp_join && listener->request_mptcp) { 274 if (!mptcp_token_join_cookie_init_state(subflow_req, skb)) 275 return -EINVAL; 276 277 subflow_req->mp_join = 1; 278 subflow_req->ssn_offset = TCP_SKB_CB(skb)->seq - 1; 279 } 280 281 return 0; 282 } 283 EXPORT_SYMBOL_GPL(mptcp_subflow_init_cookie_req); 284 285 static struct dst_entry *subflow_v4_route_req(const struct sock *sk, 286 struct sk_buff *skb, 287 struct flowi *fl, 288 struct request_sock *req) 289 { 290 struct dst_entry *dst; 291 int err; 292 293 tcp_rsk(req)->is_mptcp = 1; 294 subflow_init_req(req, sk); 295 296 dst = tcp_request_sock_ipv4_ops.route_req(sk, skb, fl, req); 297 if (!dst) 298 return NULL; 299 300 err = subflow_check_req(req, sk, skb); 301 if (err == 0) 302 return dst; 303 304 dst_release(dst); 305 if (!req->syncookie) 306 tcp_request_sock_ops.send_reset(sk, skb); 307 return NULL; 308 } 309 310 static void subflow_prep_synack(const struct sock *sk, struct request_sock *req, 311 struct tcp_fastopen_cookie *foc, 312 enum tcp_synack_type synack_type) 313 { 314 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 315 struct inet_request_sock *ireq = inet_rsk(req); 316 317 /* clear tstamp_ok, as needed depending on cookie */ 318 if (foc && foc->len > -1) 319 ireq->tstamp_ok = 0; 320 321 if (synack_type == TCP_SYNACK_FASTOPEN) 322 mptcp_fastopen_subflow_synack_set_params(subflow, req); 323 } 324 325 static int subflow_v4_send_synack(const struct sock *sk, struct dst_entry *dst, 326 struct flowi *fl, 327 struct request_sock *req, 328 struct tcp_fastopen_cookie *foc, 329 enum tcp_synack_type synack_type, 330 struct sk_buff *syn_skb) 331 { 332 subflow_prep_synack(sk, req, foc, synack_type); 333 334 return tcp_request_sock_ipv4_ops.send_synack(sk, dst, fl, req, foc, 335 synack_type, syn_skb); 336 } 337 338 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 339 static int subflow_v6_send_synack(const struct sock *sk, struct dst_entry *dst, 340 struct flowi *fl, 341 struct request_sock *req, 342 struct tcp_fastopen_cookie *foc, 343 enum tcp_synack_type synack_type, 344 struct sk_buff *syn_skb) 345 { 346 subflow_prep_synack(sk, req, foc, synack_type); 347 348 return tcp_request_sock_ipv6_ops.send_synack(sk, dst, fl, req, foc, 349 synack_type, syn_skb); 350 } 351 352 static struct dst_entry *subflow_v6_route_req(const struct sock *sk, 353 struct sk_buff *skb, 354 struct flowi *fl, 355 struct request_sock *req) 356 { 357 struct dst_entry *dst; 358 int err; 359 360 tcp_rsk(req)->is_mptcp = 1; 361 subflow_init_req(req, sk); 362 363 dst = tcp_request_sock_ipv6_ops.route_req(sk, skb, fl, req); 364 if (!dst) 365 return NULL; 366 367 err = subflow_check_req(req, sk, skb); 368 if (err == 0) 369 return dst; 370 371 dst_release(dst); 372 if (!req->syncookie) 373 tcp6_request_sock_ops.send_reset(sk, skb); 374 return NULL; 375 } 376 #endif 377 378 /* validate received truncated hmac and create hmac for third ACK */ 379 static bool subflow_thmac_valid(struct mptcp_subflow_context *subflow) 380 { 381 u8 hmac[SHA256_DIGEST_SIZE]; 382 u64 thmac; 383 384 subflow_generate_hmac(subflow->remote_key, subflow->local_key, 385 subflow->remote_nonce, subflow->local_nonce, 386 hmac); 387 388 thmac = get_unaligned_be64(hmac); 389 pr_debug("subflow=%p, token=%u, thmac=%llu, subflow->thmac=%llu\n", 390 subflow, subflow->token, thmac, subflow->thmac); 391 392 return thmac == subflow->thmac; 393 } 394 395 void mptcp_subflow_reset(struct sock *ssk) 396 { 397 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); 398 struct sock *sk = subflow->conn; 399 400 /* mptcp_mp_fail_no_response() can reach here on an already closed 401 * socket 402 */ 403 if (ssk->sk_state == TCP_CLOSE) 404 return; 405 406 /* must hold: tcp_done() could drop last reference on parent */ 407 sock_hold(sk); 408 409 tcp_send_active_reset(ssk, GFP_ATOMIC); 410 tcp_done(ssk); 411 if (!test_and_set_bit(MPTCP_WORK_CLOSE_SUBFLOW, &mptcp_sk(sk)->flags)) 412 mptcp_schedule_work(sk); 413 414 sock_put(sk); 415 } 416 417 static bool subflow_use_different_dport(struct mptcp_sock *msk, const struct sock *sk) 418 { 419 return inet_sk(sk)->inet_dport != inet_sk((struct sock *)msk)->inet_dport; 420 } 421 422 void __mptcp_sync_state(struct sock *sk, int state) 423 { 424 struct mptcp_sock *msk = mptcp_sk(sk); 425 426 __mptcp_propagate_sndbuf(sk, msk->first); 427 if (sk->sk_state == TCP_SYN_SENT) { 428 mptcp_set_state(sk, state); 429 sk->sk_state_change(sk); 430 } 431 } 432 433 static void mptcp_propagate_state(struct sock *sk, struct sock *ssk) 434 { 435 struct mptcp_sock *msk = mptcp_sk(sk); 436 437 mptcp_data_lock(sk); 438 if (!sock_owned_by_user(sk)) { 439 __mptcp_sync_state(sk, ssk->sk_state); 440 } else { 441 msk->pending_state = ssk->sk_state; 442 __set_bit(MPTCP_SYNC_STATE, &msk->cb_flags); 443 } 444 mptcp_data_unlock(sk); 445 } 446 447 static void subflow_set_remote_key(struct mptcp_sock *msk, 448 struct mptcp_subflow_context *subflow, 449 const struct mptcp_options_received *mp_opt) 450 { 451 /* active MPC subflow will reach here multiple times: 452 * at subflow_finish_connect() time and at 4th ack time 453 */ 454 if (subflow->remote_key_valid) 455 return; 456 457 subflow->remote_key_valid = 1; 458 subflow->remote_key = mp_opt->sndr_key; 459 mptcp_crypto_key_sha(subflow->remote_key, NULL, &subflow->iasn); 460 subflow->iasn++; 461 462 WRITE_ONCE(msk->remote_key, subflow->remote_key); 463 WRITE_ONCE(msk->ack_seq, subflow->iasn); 464 WRITE_ONCE(msk->can_ack, true); 465 atomic64_set(&msk->rcv_wnd_sent, subflow->iasn); 466 } 467 468 static void subflow_finish_connect(struct sock *sk, const struct sk_buff *skb) 469 { 470 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 471 struct mptcp_options_received mp_opt; 472 struct sock *parent = subflow->conn; 473 struct mptcp_sock *msk; 474 475 subflow->icsk_af_ops->sk_rx_dst_set(sk, skb); 476 477 /* be sure no special action on any packet other than syn-ack */ 478 if (subflow->conn_finished) 479 return; 480 481 msk = mptcp_sk(parent); 482 subflow->rel_write_seq = 1; 483 subflow->conn_finished = 1; 484 subflow->ssn_offset = TCP_SKB_CB(skb)->seq; 485 pr_debug("subflow=%p synack seq=%x", subflow, subflow->ssn_offset); 486 487 mptcp_get_options(skb, &mp_opt); 488 if (subflow->request_mptcp) { 489 if (!(mp_opt.suboptions & OPTION_MPTCP_MPC_SYNACK)) { 490 MPTCP_INC_STATS(sock_net(sk), 491 MPTCP_MIB_MPCAPABLEACTIVEFALLBACK); 492 mptcp_do_fallback(sk); 493 pr_fallback(msk); 494 goto fallback; 495 } 496 497 if (mp_opt.suboptions & OPTION_MPTCP_CSUMREQD) 498 WRITE_ONCE(msk->csum_enabled, true); 499 if (mp_opt.deny_join_id0) 500 WRITE_ONCE(msk->pm.remote_deny_join_id0, true); 501 subflow->mp_capable = 1; 502 subflow_set_remote_key(msk, subflow, &mp_opt); 503 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_MPCAPABLEACTIVEACK); 504 mptcp_finish_connect(sk); 505 mptcp_propagate_state(parent, sk); 506 } else if (subflow->request_join) { 507 u8 hmac[SHA256_DIGEST_SIZE]; 508 509 if (!(mp_opt.suboptions & OPTION_MPTCP_MPJ_SYNACK)) { 510 subflow->reset_reason = MPTCP_RST_EMPTCP; 511 goto do_reset; 512 } 513 514 subflow->backup = mp_opt.backup; 515 subflow->thmac = mp_opt.thmac; 516 subflow->remote_nonce = mp_opt.nonce; 517 subflow->remote_id = mp_opt.join_id; 518 pr_debug("subflow=%p, thmac=%llu, remote_nonce=%u backup=%d", 519 subflow, subflow->thmac, subflow->remote_nonce, 520 subflow->backup); 521 522 if (!subflow_thmac_valid(subflow)) { 523 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_JOINACKMAC); 524 subflow->reset_reason = MPTCP_RST_EMPTCP; 525 goto do_reset; 526 } 527 528 if (!mptcp_finish_join(sk)) 529 goto do_reset; 530 531 subflow_generate_hmac(subflow->local_key, subflow->remote_key, 532 subflow->local_nonce, 533 subflow->remote_nonce, 534 hmac); 535 memcpy(subflow->hmac, hmac, MPTCPOPT_HMAC_LEN); 536 537 subflow->mp_join = 1; 538 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_JOINSYNACKRX); 539 540 if (subflow_use_different_dport(msk, sk)) { 541 pr_debug("synack inet_dport=%d %d", 542 ntohs(inet_sk(sk)->inet_dport), 543 ntohs(inet_sk(parent)->inet_dport)); 544 MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_JOINPORTSYNACKRX); 545 } 546 } else if (mptcp_check_fallback(sk)) { 547 fallback: 548 mptcp_rcv_space_init(msk, sk); 549 mptcp_propagate_state(parent, sk); 550 } 551 return; 552 553 do_reset: 554 subflow->reset_transient = 0; 555 mptcp_subflow_reset(sk); 556 } 557 558 static void subflow_set_local_id(struct mptcp_subflow_context *subflow, int local_id) 559 { 560 subflow->local_id = local_id; 561 subflow->local_id_valid = 1; 562 } 563 564 static int subflow_chk_local_id(struct sock *sk) 565 { 566 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 567 struct mptcp_sock *msk = mptcp_sk(subflow->conn); 568 int err; 569 570 if (likely(subflow->local_id_valid)) 571 return 0; 572 573 err = mptcp_pm_get_local_id(msk, (struct sock_common *)sk); 574 if (err < 0) 575 return err; 576 577 subflow_set_local_id(subflow, err); 578 return 0; 579 } 580 581 static int subflow_rebuild_header(struct sock *sk) 582 { 583 int err = subflow_chk_local_id(sk); 584 585 if (unlikely(err < 0)) 586 return err; 587 588 return inet_sk_rebuild_header(sk); 589 } 590 591 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 592 static int subflow_v6_rebuild_header(struct sock *sk) 593 { 594 int err = subflow_chk_local_id(sk); 595 596 if (unlikely(err < 0)) 597 return err; 598 599 return inet6_sk_rebuild_header(sk); 600 } 601 #endif 602 603 static struct request_sock_ops mptcp_subflow_v4_request_sock_ops __ro_after_init; 604 static struct tcp_request_sock_ops subflow_request_sock_ipv4_ops __ro_after_init; 605 606 static int subflow_v4_conn_request(struct sock *sk, struct sk_buff *skb) 607 { 608 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 609 610 pr_debug("subflow=%p", subflow); 611 612 /* Never answer to SYNs sent to broadcast or multicast */ 613 if (skb_rtable(skb)->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST)) 614 goto drop; 615 616 return tcp_conn_request(&mptcp_subflow_v4_request_sock_ops, 617 &subflow_request_sock_ipv4_ops, 618 sk, skb); 619 drop: 620 tcp_listendrop(sk); 621 return 0; 622 } 623 624 static void subflow_v4_req_destructor(struct request_sock *req) 625 { 626 subflow_req_destructor(req); 627 tcp_request_sock_ops.destructor(req); 628 } 629 630 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 631 static struct request_sock_ops mptcp_subflow_v6_request_sock_ops __ro_after_init; 632 static struct tcp_request_sock_ops subflow_request_sock_ipv6_ops __ro_after_init; 633 static struct inet_connection_sock_af_ops subflow_v6_specific __ro_after_init; 634 static struct inet_connection_sock_af_ops subflow_v6m_specific __ro_after_init; 635 static struct proto tcpv6_prot_override __ro_after_init; 636 637 static int subflow_v6_conn_request(struct sock *sk, struct sk_buff *skb) 638 { 639 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 640 641 pr_debug("subflow=%p", subflow); 642 643 if (skb->protocol == htons(ETH_P_IP)) 644 return subflow_v4_conn_request(sk, skb); 645 646 if (!ipv6_unicast_destination(skb)) 647 goto drop; 648 649 if (ipv6_addr_v4mapped(&ipv6_hdr(skb)->saddr)) { 650 __IP6_INC_STATS(sock_net(sk), NULL, IPSTATS_MIB_INHDRERRORS); 651 return 0; 652 } 653 654 return tcp_conn_request(&mptcp_subflow_v6_request_sock_ops, 655 &subflow_request_sock_ipv6_ops, sk, skb); 656 657 drop: 658 tcp_listendrop(sk); 659 return 0; /* don't send reset */ 660 } 661 662 static void subflow_v6_req_destructor(struct request_sock *req) 663 { 664 subflow_req_destructor(req); 665 tcp6_request_sock_ops.destructor(req); 666 } 667 #endif 668 669 struct request_sock *mptcp_subflow_reqsk_alloc(const struct request_sock_ops *ops, 670 struct sock *sk_listener, 671 bool attach_listener) 672 { 673 if (ops->family == AF_INET) 674 ops = &mptcp_subflow_v4_request_sock_ops; 675 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 676 else if (ops->family == AF_INET6) 677 ops = &mptcp_subflow_v6_request_sock_ops; 678 #endif 679 680 return inet_reqsk_alloc(ops, sk_listener, attach_listener); 681 } 682 EXPORT_SYMBOL(mptcp_subflow_reqsk_alloc); 683 684 /* validate hmac received in third ACK */ 685 static bool subflow_hmac_valid(const struct request_sock *req, 686 const struct mptcp_options_received *mp_opt) 687 { 688 const struct mptcp_subflow_request_sock *subflow_req; 689 u8 hmac[SHA256_DIGEST_SIZE]; 690 struct mptcp_sock *msk; 691 692 subflow_req = mptcp_subflow_rsk(req); 693 msk = subflow_req->msk; 694 if (!msk) 695 return false; 696 697 subflow_generate_hmac(msk->remote_key, msk->local_key, 698 subflow_req->remote_nonce, 699 subflow_req->local_nonce, hmac); 700 701 return !crypto_memneq(hmac, mp_opt->hmac, MPTCPOPT_HMAC_LEN); 702 } 703 704 static void subflow_ulp_fallback(struct sock *sk, 705 struct mptcp_subflow_context *old_ctx) 706 { 707 struct inet_connection_sock *icsk = inet_csk(sk); 708 709 mptcp_subflow_tcp_fallback(sk, old_ctx); 710 icsk->icsk_ulp_ops = NULL; 711 rcu_assign_pointer(icsk->icsk_ulp_data, NULL); 712 tcp_sk(sk)->is_mptcp = 0; 713 714 mptcp_subflow_ops_undo_override(sk); 715 } 716 717 void mptcp_subflow_drop_ctx(struct sock *ssk) 718 { 719 struct mptcp_subflow_context *ctx = mptcp_subflow_ctx(ssk); 720 721 if (!ctx) 722 return; 723 724 list_del(&mptcp_subflow_ctx(ssk)->node); 725 if (inet_csk(ssk)->icsk_ulp_ops) { 726 subflow_ulp_fallback(ssk, ctx); 727 if (ctx->conn) 728 sock_put(ctx->conn); 729 } 730 731 kfree_rcu(ctx, rcu); 732 } 733 734 void mptcp_subflow_fully_established(struct mptcp_subflow_context *subflow, 735 const struct mptcp_options_received *mp_opt) 736 { 737 struct mptcp_sock *msk = mptcp_sk(subflow->conn); 738 739 subflow_set_remote_key(msk, subflow, mp_opt); 740 subflow->fully_established = 1; 741 WRITE_ONCE(msk->fully_established, true); 742 743 if (subflow->is_mptfo) 744 mptcp_fastopen_gen_msk_ackseq(msk, subflow, mp_opt); 745 } 746 747 static struct sock *subflow_syn_recv_sock(const struct sock *sk, 748 struct sk_buff *skb, 749 struct request_sock *req, 750 struct dst_entry *dst, 751 struct request_sock *req_unhash, 752 bool *own_req) 753 { 754 struct mptcp_subflow_context *listener = mptcp_subflow_ctx(sk); 755 struct mptcp_subflow_request_sock *subflow_req; 756 struct mptcp_options_received mp_opt; 757 bool fallback, fallback_is_fatal; 758 struct mptcp_sock *owner; 759 struct sock *child; 760 761 pr_debug("listener=%p, req=%p, conn=%p", listener, req, listener->conn); 762 763 /* After child creation we must look for MPC even when options 764 * are not parsed 765 */ 766 mp_opt.suboptions = 0; 767 768 /* hopefully temporary handling for MP_JOIN+syncookie */ 769 subflow_req = mptcp_subflow_rsk(req); 770 fallback_is_fatal = tcp_rsk(req)->is_mptcp && subflow_req->mp_join; 771 fallback = !tcp_rsk(req)->is_mptcp; 772 if (fallback) 773 goto create_child; 774 775 /* if the sk is MP_CAPABLE, we try to fetch the client key */ 776 if (subflow_req->mp_capable) { 777 /* we can receive and accept an in-window, out-of-order pkt, 778 * which may not carry the MP_CAPABLE opt even on mptcp enabled 779 * paths: always try to extract the peer key, and fallback 780 * for packets missing it. 781 * Even OoO DSS packets coming legitly after dropped or 782 * reordered MPC will cause fallback, but we don't have other 783 * options. 784 */ 785 mptcp_get_options(skb, &mp_opt); 786 if (!(mp_opt.suboptions & 787 (OPTION_MPTCP_MPC_SYN | OPTION_MPTCP_MPC_ACK))) 788 fallback = true; 789 790 } else if (subflow_req->mp_join) { 791 mptcp_get_options(skb, &mp_opt); 792 if (!(mp_opt.suboptions & OPTION_MPTCP_MPJ_ACK) || 793 !subflow_hmac_valid(req, &mp_opt) || 794 !mptcp_can_accept_new_subflow(subflow_req->msk)) { 795 SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_JOINACKMAC); 796 fallback = true; 797 } 798 } 799 800 create_child: 801 child = listener->icsk_af_ops->syn_recv_sock(sk, skb, req, dst, 802 req_unhash, own_req); 803 804 if (child && *own_req) { 805 struct mptcp_subflow_context *ctx = mptcp_subflow_ctx(child); 806 807 tcp_rsk(req)->drop_req = false; 808 809 /* we need to fallback on ctx allocation failure and on pre-reqs 810 * checking above. In the latter scenario we additionally need 811 * to reset the context to non MPTCP status. 812 */ 813 if (!ctx || fallback) { 814 if (fallback_is_fatal) { 815 subflow_add_reset_reason(skb, MPTCP_RST_EMPTCP); 816 goto dispose_child; 817 } 818 goto fallback; 819 } 820 821 /* ssk inherits options of listener sk */ 822 ctx->setsockopt_seq = listener->setsockopt_seq; 823 824 if (ctx->mp_capable) { 825 ctx->conn = mptcp_sk_clone_init(listener->conn, &mp_opt, child, req); 826 if (!ctx->conn) 827 goto fallback; 828 829 ctx->subflow_id = 1; 830 owner = mptcp_sk(ctx->conn); 831 mptcp_pm_new_connection(owner, child, 1); 832 833 /* with OoO packets we can reach here without ingress 834 * mpc option 835 */ 836 if (mp_opt.suboptions & OPTION_MPTCP_MPC_ACK) { 837 mptcp_subflow_fully_established(ctx, &mp_opt); 838 mptcp_pm_fully_established(owner, child); 839 ctx->pm_notified = 1; 840 } 841 } else if (ctx->mp_join) { 842 owner = subflow_req->msk; 843 if (!owner) { 844 subflow_add_reset_reason(skb, MPTCP_RST_EPROHIBIT); 845 goto dispose_child; 846 } 847 848 /* move the msk reference ownership to the subflow */ 849 subflow_req->msk = NULL; 850 ctx->conn = (struct sock *)owner; 851 852 if (subflow_use_different_sport(owner, sk)) { 853 pr_debug("ack inet_sport=%d %d", 854 ntohs(inet_sk(sk)->inet_sport), 855 ntohs(inet_sk((struct sock *)owner)->inet_sport)); 856 if (!mptcp_pm_sport_in_anno_list(owner, sk)) { 857 SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_MISMATCHPORTACKRX); 858 goto dispose_child; 859 } 860 SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_JOINPORTACKRX); 861 } 862 863 if (!mptcp_finish_join(child)) 864 goto dispose_child; 865 866 SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_JOINACKRX); 867 tcp_rsk(req)->drop_req = true; 868 } 869 } 870 871 /* check for expected invariant - should never trigger, just help 872 * catching eariler subtle bugs 873 */ 874 WARN_ON_ONCE(child && *own_req && tcp_sk(child)->is_mptcp && 875 (!mptcp_subflow_ctx(child) || 876 !mptcp_subflow_ctx(child)->conn)); 877 return child; 878 879 dispose_child: 880 mptcp_subflow_drop_ctx(child); 881 tcp_rsk(req)->drop_req = true; 882 inet_csk_prepare_for_destroy_sock(child); 883 tcp_done(child); 884 req->rsk_ops->send_reset(sk, skb); 885 886 /* The last child reference will be released by the caller */ 887 return child; 888 889 fallback: 890 mptcp_subflow_drop_ctx(child); 891 return child; 892 } 893 894 static struct inet_connection_sock_af_ops subflow_specific __ro_after_init; 895 static struct proto tcp_prot_override __ro_after_init; 896 897 enum mapping_status { 898 MAPPING_OK, 899 MAPPING_INVALID, 900 MAPPING_EMPTY, 901 MAPPING_DATA_FIN, 902 MAPPING_DUMMY, 903 MAPPING_BAD_CSUM 904 }; 905 906 static void dbg_bad_map(struct mptcp_subflow_context *subflow, u32 ssn) 907 { 908 pr_debug("Bad mapping: ssn=%d map_seq=%d map_data_len=%d", 909 ssn, subflow->map_subflow_seq, subflow->map_data_len); 910 } 911 912 static bool skb_is_fully_mapped(struct sock *ssk, struct sk_buff *skb) 913 { 914 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); 915 unsigned int skb_consumed; 916 917 skb_consumed = tcp_sk(ssk)->copied_seq - TCP_SKB_CB(skb)->seq; 918 if (WARN_ON_ONCE(skb_consumed >= skb->len)) 919 return true; 920 921 return skb->len - skb_consumed <= subflow->map_data_len - 922 mptcp_subflow_get_map_offset(subflow); 923 } 924 925 static bool validate_mapping(struct sock *ssk, struct sk_buff *skb) 926 { 927 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); 928 u32 ssn = tcp_sk(ssk)->copied_seq - subflow->ssn_offset; 929 930 if (unlikely(before(ssn, subflow->map_subflow_seq))) { 931 /* Mapping covers data later in the subflow stream, 932 * currently unsupported. 933 */ 934 dbg_bad_map(subflow, ssn); 935 return false; 936 } 937 if (unlikely(!before(ssn, subflow->map_subflow_seq + 938 subflow->map_data_len))) { 939 /* Mapping does covers past subflow data, invalid */ 940 dbg_bad_map(subflow, ssn); 941 return false; 942 } 943 return true; 944 } 945 946 static enum mapping_status validate_data_csum(struct sock *ssk, struct sk_buff *skb, 947 bool csum_reqd) 948 { 949 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); 950 u32 offset, seq, delta; 951 __sum16 csum; 952 int len; 953 954 if (!csum_reqd) 955 return MAPPING_OK; 956 957 /* mapping already validated on previous traversal */ 958 if (subflow->map_csum_len == subflow->map_data_len) 959 return MAPPING_OK; 960 961 /* traverse the receive queue, ensuring it contains a full 962 * DSS mapping and accumulating the related csum. 963 * Preserve the accoumlate csum across multiple calls, to compute 964 * the csum only once 965 */ 966 delta = subflow->map_data_len - subflow->map_csum_len; 967 for (;;) { 968 seq = tcp_sk(ssk)->copied_seq + subflow->map_csum_len; 969 offset = seq - TCP_SKB_CB(skb)->seq; 970 971 /* if the current skb has not been accounted yet, csum its contents 972 * up to the amount covered by the current DSS 973 */ 974 if (offset < skb->len) { 975 __wsum csum; 976 977 len = min(skb->len - offset, delta); 978 csum = skb_checksum(skb, offset, len, 0); 979 subflow->map_data_csum = csum_block_add(subflow->map_data_csum, csum, 980 subflow->map_csum_len); 981 982 delta -= len; 983 subflow->map_csum_len += len; 984 } 985 if (delta == 0) 986 break; 987 988 if (skb_queue_is_last(&ssk->sk_receive_queue, skb)) { 989 /* if this subflow is closed, the partial mapping 990 * will be never completed; flush the pending skbs, so 991 * that subflow_sched_work_if_closed() can kick in 992 */ 993 if (unlikely(ssk->sk_state == TCP_CLOSE)) 994 while ((skb = skb_peek(&ssk->sk_receive_queue))) 995 sk_eat_skb(ssk, skb); 996 997 /* not enough data to validate the csum */ 998 return MAPPING_EMPTY; 999 } 1000 1001 /* the DSS mapping for next skbs will be validated later, 1002 * when a get_mapping_status call will process such skb 1003 */ 1004 skb = skb->next; 1005 } 1006 1007 /* note that 'map_data_len' accounts only for the carried data, does 1008 * not include the eventual seq increment due to the data fin, 1009 * while the pseudo header requires the original DSS data len, 1010 * including that 1011 */ 1012 csum = __mptcp_make_csum(subflow->map_seq, 1013 subflow->map_subflow_seq, 1014 subflow->map_data_len + subflow->map_data_fin, 1015 subflow->map_data_csum); 1016 if (unlikely(csum)) { 1017 MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_DATACSUMERR); 1018 return MAPPING_BAD_CSUM; 1019 } 1020 1021 subflow->valid_csum_seen = 1; 1022 return MAPPING_OK; 1023 } 1024 1025 static enum mapping_status get_mapping_status(struct sock *ssk, 1026 struct mptcp_sock *msk) 1027 { 1028 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); 1029 bool csum_reqd = READ_ONCE(msk->csum_enabled); 1030 struct mptcp_ext *mpext; 1031 struct sk_buff *skb; 1032 u16 data_len; 1033 u64 map_seq; 1034 1035 skb = skb_peek(&ssk->sk_receive_queue); 1036 if (!skb) 1037 return MAPPING_EMPTY; 1038 1039 if (mptcp_check_fallback(ssk)) 1040 return MAPPING_DUMMY; 1041 1042 mpext = mptcp_get_ext(skb); 1043 if (!mpext || !mpext->use_map) { 1044 if (!subflow->map_valid && !skb->len) { 1045 /* the TCP stack deliver 0 len FIN pkt to the receive 1046 * queue, that is the only 0len pkts ever expected here, 1047 * and we can admit no mapping only for 0 len pkts 1048 */ 1049 if (!(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN)) 1050 WARN_ONCE(1, "0len seq %d:%d flags %x", 1051 TCP_SKB_CB(skb)->seq, 1052 TCP_SKB_CB(skb)->end_seq, 1053 TCP_SKB_CB(skb)->tcp_flags); 1054 sk_eat_skb(ssk, skb); 1055 return MAPPING_EMPTY; 1056 } 1057 1058 if (!subflow->map_valid) 1059 return MAPPING_INVALID; 1060 1061 goto validate_seq; 1062 } 1063 1064 trace_get_mapping_status(mpext); 1065 1066 data_len = mpext->data_len; 1067 if (data_len == 0) { 1068 pr_debug("infinite mapping received"); 1069 MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_INFINITEMAPRX); 1070 subflow->map_data_len = 0; 1071 return MAPPING_INVALID; 1072 } 1073 1074 if (mpext->data_fin == 1) { 1075 if (data_len == 1) { 1076 bool updated = mptcp_update_rcv_data_fin(msk, mpext->data_seq, 1077 mpext->dsn64); 1078 pr_debug("DATA_FIN with no payload seq=%llu", mpext->data_seq); 1079 if (subflow->map_valid) { 1080 /* A DATA_FIN might arrive in a DSS 1081 * option before the previous mapping 1082 * has been fully consumed. Continue 1083 * handling the existing mapping. 1084 */ 1085 skb_ext_del(skb, SKB_EXT_MPTCP); 1086 return MAPPING_OK; 1087 } else { 1088 if (updated) 1089 mptcp_schedule_work((struct sock *)msk); 1090 1091 return MAPPING_DATA_FIN; 1092 } 1093 } else { 1094 u64 data_fin_seq = mpext->data_seq + data_len - 1; 1095 1096 /* If mpext->data_seq is a 32-bit value, data_fin_seq 1097 * must also be limited to 32 bits. 1098 */ 1099 if (!mpext->dsn64) 1100 data_fin_seq &= GENMASK_ULL(31, 0); 1101 1102 mptcp_update_rcv_data_fin(msk, data_fin_seq, mpext->dsn64); 1103 pr_debug("DATA_FIN with mapping seq=%llu dsn64=%d", 1104 data_fin_seq, mpext->dsn64); 1105 } 1106 1107 /* Adjust for DATA_FIN using 1 byte of sequence space */ 1108 data_len--; 1109 } 1110 1111 map_seq = mptcp_expand_seq(READ_ONCE(msk->ack_seq), mpext->data_seq, mpext->dsn64); 1112 WRITE_ONCE(mptcp_sk(subflow->conn)->use_64bit_ack, !!mpext->dsn64); 1113 1114 if (subflow->map_valid) { 1115 /* Allow replacing only with an identical map */ 1116 if (subflow->map_seq == map_seq && 1117 subflow->map_subflow_seq == mpext->subflow_seq && 1118 subflow->map_data_len == data_len && 1119 subflow->map_csum_reqd == mpext->csum_reqd) { 1120 skb_ext_del(skb, SKB_EXT_MPTCP); 1121 goto validate_csum; 1122 } 1123 1124 /* If this skb data are fully covered by the current mapping, 1125 * the new map would need caching, which is not supported 1126 */ 1127 if (skb_is_fully_mapped(ssk, skb)) { 1128 MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_DSSNOMATCH); 1129 return MAPPING_INVALID; 1130 } 1131 1132 /* will validate the next map after consuming the current one */ 1133 goto validate_csum; 1134 } 1135 1136 subflow->map_seq = map_seq; 1137 subflow->map_subflow_seq = mpext->subflow_seq; 1138 subflow->map_data_len = data_len; 1139 subflow->map_valid = 1; 1140 subflow->map_data_fin = mpext->data_fin; 1141 subflow->mpc_map = mpext->mpc_map; 1142 subflow->map_csum_reqd = mpext->csum_reqd; 1143 subflow->map_csum_len = 0; 1144 subflow->map_data_csum = csum_unfold(mpext->csum); 1145 1146 /* Cfr RFC 8684 Section 3.3.0 */ 1147 if (unlikely(subflow->map_csum_reqd != csum_reqd)) 1148 return MAPPING_INVALID; 1149 1150 pr_debug("new map seq=%llu subflow_seq=%u data_len=%u csum=%d:%u", 1151 subflow->map_seq, subflow->map_subflow_seq, 1152 subflow->map_data_len, subflow->map_csum_reqd, 1153 subflow->map_data_csum); 1154 1155 validate_seq: 1156 /* we revalidate valid mapping on new skb, because we must ensure 1157 * the current skb is completely covered by the available mapping 1158 */ 1159 if (!validate_mapping(ssk, skb)) { 1160 MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_DSSTCPMISMATCH); 1161 return MAPPING_INVALID; 1162 } 1163 1164 skb_ext_del(skb, SKB_EXT_MPTCP); 1165 1166 validate_csum: 1167 return validate_data_csum(ssk, skb, csum_reqd); 1168 } 1169 1170 static void mptcp_subflow_discard_data(struct sock *ssk, struct sk_buff *skb, 1171 u64 limit) 1172 { 1173 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); 1174 bool fin = TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN; 1175 u32 incr; 1176 1177 incr = limit >= skb->len ? skb->len + fin : limit; 1178 1179 pr_debug("discarding=%d len=%d seq=%d", incr, skb->len, 1180 subflow->map_subflow_seq); 1181 MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_DUPDATA); 1182 tcp_sk(ssk)->copied_seq += incr; 1183 if (!before(tcp_sk(ssk)->copied_seq, TCP_SKB_CB(skb)->end_seq)) 1184 sk_eat_skb(ssk, skb); 1185 if (mptcp_subflow_get_map_offset(subflow) >= subflow->map_data_len) 1186 subflow->map_valid = 0; 1187 } 1188 1189 /* sched mptcp worker to remove the subflow if no more data is pending */ 1190 static void subflow_sched_work_if_closed(struct mptcp_sock *msk, struct sock *ssk) 1191 { 1192 if (likely(ssk->sk_state != TCP_CLOSE)) 1193 return; 1194 1195 if (skb_queue_empty(&ssk->sk_receive_queue) && 1196 !test_and_set_bit(MPTCP_WORK_CLOSE_SUBFLOW, &msk->flags)) 1197 mptcp_schedule_work((struct sock *)msk); 1198 } 1199 1200 static bool subflow_can_fallback(struct mptcp_subflow_context *subflow) 1201 { 1202 struct mptcp_sock *msk = mptcp_sk(subflow->conn); 1203 1204 if (subflow->mp_join) 1205 return false; 1206 else if (READ_ONCE(msk->csum_enabled)) 1207 return !subflow->valid_csum_seen; 1208 else 1209 return !subflow->fully_established; 1210 } 1211 1212 static void mptcp_subflow_fail(struct mptcp_sock *msk, struct sock *ssk) 1213 { 1214 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); 1215 unsigned long fail_tout; 1216 1217 /* greceful failure can happen only on the MPC subflow */ 1218 if (WARN_ON_ONCE(ssk != READ_ONCE(msk->first))) 1219 return; 1220 1221 /* since the close timeout take precedence on the fail one, 1222 * no need to start the latter when the first is already set 1223 */ 1224 if (sock_flag((struct sock *)msk, SOCK_DEAD)) 1225 return; 1226 1227 /* we don't need extreme accuracy here, use a zero fail_tout as special 1228 * value meaning no fail timeout at all; 1229 */ 1230 fail_tout = jiffies + TCP_RTO_MAX; 1231 if (!fail_tout) 1232 fail_tout = 1; 1233 WRITE_ONCE(subflow->fail_tout, fail_tout); 1234 tcp_send_ack(ssk); 1235 1236 mptcp_reset_tout_timer(msk, subflow->fail_tout); 1237 } 1238 1239 static bool subflow_check_data_avail(struct sock *ssk) 1240 { 1241 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); 1242 enum mapping_status status; 1243 struct mptcp_sock *msk; 1244 struct sk_buff *skb; 1245 1246 if (!skb_peek(&ssk->sk_receive_queue)) 1247 WRITE_ONCE(subflow->data_avail, false); 1248 if (subflow->data_avail) 1249 return true; 1250 1251 msk = mptcp_sk(subflow->conn); 1252 for (;;) { 1253 u64 ack_seq; 1254 u64 old_ack; 1255 1256 status = get_mapping_status(ssk, msk); 1257 trace_subflow_check_data_avail(status, skb_peek(&ssk->sk_receive_queue)); 1258 if (unlikely(status == MAPPING_INVALID || status == MAPPING_DUMMY || 1259 status == MAPPING_BAD_CSUM)) 1260 goto fallback; 1261 1262 if (status != MAPPING_OK) 1263 goto no_data; 1264 1265 skb = skb_peek(&ssk->sk_receive_queue); 1266 if (WARN_ON_ONCE(!skb)) 1267 goto no_data; 1268 1269 if (unlikely(!READ_ONCE(msk->can_ack))) 1270 goto fallback; 1271 1272 old_ack = READ_ONCE(msk->ack_seq); 1273 ack_seq = mptcp_subflow_get_mapped_dsn(subflow); 1274 pr_debug("msk ack_seq=%llx subflow ack_seq=%llx", old_ack, 1275 ack_seq); 1276 if (unlikely(before64(ack_seq, old_ack))) { 1277 mptcp_subflow_discard_data(ssk, skb, old_ack - ack_seq); 1278 continue; 1279 } 1280 1281 WRITE_ONCE(subflow->data_avail, true); 1282 break; 1283 } 1284 return true; 1285 1286 no_data: 1287 subflow_sched_work_if_closed(msk, ssk); 1288 return false; 1289 1290 fallback: 1291 if (!__mptcp_check_fallback(msk)) { 1292 /* RFC 8684 section 3.7. */ 1293 if (status == MAPPING_BAD_CSUM && 1294 (subflow->mp_join || subflow->valid_csum_seen)) { 1295 subflow->send_mp_fail = 1; 1296 1297 if (!READ_ONCE(msk->allow_infinite_fallback)) { 1298 subflow->reset_transient = 0; 1299 subflow->reset_reason = MPTCP_RST_EMIDDLEBOX; 1300 goto reset; 1301 } 1302 mptcp_subflow_fail(msk, ssk); 1303 WRITE_ONCE(subflow->data_avail, true); 1304 return true; 1305 } 1306 1307 if (!subflow_can_fallback(subflow) && subflow->map_data_len) { 1308 /* fatal protocol error, close the socket. 1309 * subflow_error_report() will introduce the appropriate barriers 1310 */ 1311 subflow->reset_transient = 0; 1312 subflow->reset_reason = MPTCP_RST_EMPTCP; 1313 1314 reset: 1315 WRITE_ONCE(ssk->sk_err, EBADMSG); 1316 tcp_set_state(ssk, TCP_CLOSE); 1317 while ((skb = skb_peek(&ssk->sk_receive_queue))) 1318 sk_eat_skb(ssk, skb); 1319 tcp_send_active_reset(ssk, GFP_ATOMIC); 1320 WRITE_ONCE(subflow->data_avail, false); 1321 return false; 1322 } 1323 1324 mptcp_do_fallback(ssk); 1325 } 1326 1327 skb = skb_peek(&ssk->sk_receive_queue); 1328 subflow->map_valid = 1; 1329 subflow->map_seq = READ_ONCE(msk->ack_seq); 1330 subflow->map_data_len = skb->len; 1331 subflow->map_subflow_seq = tcp_sk(ssk)->copied_seq - subflow->ssn_offset; 1332 WRITE_ONCE(subflow->data_avail, true); 1333 return true; 1334 } 1335 1336 bool mptcp_subflow_data_available(struct sock *sk) 1337 { 1338 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 1339 1340 /* check if current mapping is still valid */ 1341 if (subflow->map_valid && 1342 mptcp_subflow_get_map_offset(subflow) >= subflow->map_data_len) { 1343 subflow->map_valid = 0; 1344 WRITE_ONCE(subflow->data_avail, false); 1345 1346 pr_debug("Done with mapping: seq=%u data_len=%u", 1347 subflow->map_subflow_seq, 1348 subflow->map_data_len); 1349 } 1350 1351 return subflow_check_data_avail(sk); 1352 } 1353 1354 /* If ssk has an mptcp parent socket, use the mptcp rcvbuf occupancy, 1355 * not the ssk one. 1356 * 1357 * In mptcp, rwin is about the mptcp-level connection data. 1358 * 1359 * Data that is still on the ssk rx queue can thus be ignored, 1360 * as far as mptcp peer is concerned that data is still inflight. 1361 * DSS ACK is updated when skb is moved to the mptcp rx queue. 1362 */ 1363 void mptcp_space(const struct sock *ssk, int *space, int *full_space) 1364 { 1365 const struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); 1366 const struct sock *sk = subflow->conn; 1367 1368 *space = __mptcp_space(sk); 1369 *full_space = mptcp_win_from_space(sk, READ_ONCE(sk->sk_rcvbuf)); 1370 } 1371 1372 static void subflow_error_report(struct sock *ssk) 1373 { 1374 struct sock *sk = mptcp_subflow_ctx(ssk)->conn; 1375 1376 /* bail early if this is a no-op, so that we avoid introducing a 1377 * problematic lockdep dependency between TCP accept queue lock 1378 * and msk socket spinlock 1379 */ 1380 if (!sk->sk_socket) 1381 return; 1382 1383 mptcp_data_lock(sk); 1384 if (!sock_owned_by_user(sk)) 1385 __mptcp_error_report(sk); 1386 else 1387 __set_bit(MPTCP_ERROR_REPORT, &mptcp_sk(sk)->cb_flags); 1388 mptcp_data_unlock(sk); 1389 } 1390 1391 static void subflow_data_ready(struct sock *sk) 1392 { 1393 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 1394 u16 state = 1 << inet_sk_state_load(sk); 1395 struct sock *parent = subflow->conn; 1396 struct mptcp_sock *msk; 1397 1398 trace_sk_data_ready(sk); 1399 1400 msk = mptcp_sk(parent); 1401 if (state & TCPF_LISTEN) { 1402 /* MPJ subflow are removed from accept queue before reaching here, 1403 * avoid stray wakeups 1404 */ 1405 if (reqsk_queue_empty(&inet_csk(sk)->icsk_accept_queue)) 1406 return; 1407 1408 parent->sk_data_ready(parent); 1409 return; 1410 } 1411 1412 WARN_ON_ONCE(!__mptcp_check_fallback(msk) && !subflow->mp_capable && 1413 !subflow->mp_join && !(state & TCPF_CLOSE)); 1414 1415 if (mptcp_subflow_data_available(sk)) { 1416 mptcp_data_ready(parent, sk); 1417 1418 /* subflow-level lowat test are not relevant. 1419 * respect the msk-level threshold eventually mandating an immediate ack 1420 */ 1421 if (mptcp_data_avail(msk) < parent->sk_rcvlowat && 1422 (tcp_sk(sk)->rcv_nxt - tcp_sk(sk)->rcv_wup) > inet_csk(sk)->icsk_ack.rcv_mss) 1423 inet_csk(sk)->icsk_ack.pending |= ICSK_ACK_NOW; 1424 } else if (unlikely(sk->sk_err)) { 1425 subflow_error_report(sk); 1426 } 1427 } 1428 1429 static void subflow_write_space(struct sock *ssk) 1430 { 1431 struct sock *sk = mptcp_subflow_ctx(ssk)->conn; 1432 1433 mptcp_propagate_sndbuf(sk, ssk); 1434 mptcp_write_space(sk); 1435 } 1436 1437 static const struct inet_connection_sock_af_ops * 1438 subflow_default_af_ops(struct sock *sk) 1439 { 1440 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 1441 if (sk->sk_family == AF_INET6) 1442 return &subflow_v6_specific; 1443 #endif 1444 return &subflow_specific; 1445 } 1446 1447 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 1448 void mptcpv6_handle_mapped(struct sock *sk, bool mapped) 1449 { 1450 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 1451 struct inet_connection_sock *icsk = inet_csk(sk); 1452 const struct inet_connection_sock_af_ops *target; 1453 1454 target = mapped ? &subflow_v6m_specific : subflow_default_af_ops(sk); 1455 1456 pr_debug("subflow=%p family=%d ops=%p target=%p mapped=%d", 1457 subflow, sk->sk_family, icsk->icsk_af_ops, target, mapped); 1458 1459 if (likely(icsk->icsk_af_ops == target)) 1460 return; 1461 1462 subflow->icsk_af_ops = icsk->icsk_af_ops; 1463 icsk->icsk_af_ops = target; 1464 } 1465 #endif 1466 1467 void mptcp_info2sockaddr(const struct mptcp_addr_info *info, 1468 struct sockaddr_storage *addr, 1469 unsigned short family) 1470 { 1471 memset(addr, 0, sizeof(*addr)); 1472 addr->ss_family = family; 1473 if (addr->ss_family == AF_INET) { 1474 struct sockaddr_in *in_addr = (struct sockaddr_in *)addr; 1475 1476 if (info->family == AF_INET) 1477 in_addr->sin_addr = info->addr; 1478 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 1479 else if (ipv6_addr_v4mapped(&info->addr6)) 1480 in_addr->sin_addr.s_addr = info->addr6.s6_addr32[3]; 1481 #endif 1482 in_addr->sin_port = info->port; 1483 } 1484 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 1485 else if (addr->ss_family == AF_INET6) { 1486 struct sockaddr_in6 *in6_addr = (struct sockaddr_in6 *)addr; 1487 1488 if (info->family == AF_INET) 1489 ipv6_addr_set_v4mapped(info->addr.s_addr, 1490 &in6_addr->sin6_addr); 1491 else 1492 in6_addr->sin6_addr = info->addr6; 1493 in6_addr->sin6_port = info->port; 1494 } 1495 #endif 1496 } 1497 1498 int __mptcp_subflow_connect(struct sock *sk, const struct mptcp_addr_info *loc, 1499 const struct mptcp_addr_info *remote) 1500 { 1501 struct mptcp_sock *msk = mptcp_sk(sk); 1502 struct mptcp_subflow_context *subflow; 1503 struct sockaddr_storage addr; 1504 int remote_id = remote->id; 1505 int local_id = loc->id; 1506 int err = -ENOTCONN; 1507 struct socket *sf; 1508 struct sock *ssk; 1509 u32 remote_token; 1510 int addrlen; 1511 int ifindex; 1512 u8 flags; 1513 1514 if (!mptcp_is_fully_established(sk)) 1515 goto err_out; 1516 1517 err = mptcp_subflow_create_socket(sk, loc->family, &sf); 1518 if (err) 1519 goto err_out; 1520 1521 ssk = sf->sk; 1522 subflow = mptcp_subflow_ctx(ssk); 1523 do { 1524 get_random_bytes(&subflow->local_nonce, sizeof(u32)); 1525 } while (!subflow->local_nonce); 1526 1527 if (local_id) 1528 subflow_set_local_id(subflow, local_id); 1529 1530 mptcp_pm_get_flags_and_ifindex_by_id(msk, local_id, 1531 &flags, &ifindex); 1532 subflow->remote_key_valid = 1; 1533 subflow->remote_key = msk->remote_key; 1534 subflow->local_key = msk->local_key; 1535 subflow->token = msk->token; 1536 mptcp_info2sockaddr(loc, &addr, ssk->sk_family); 1537 1538 addrlen = sizeof(struct sockaddr_in); 1539 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 1540 if (addr.ss_family == AF_INET6) 1541 addrlen = sizeof(struct sockaddr_in6); 1542 #endif 1543 ssk->sk_bound_dev_if = ifindex; 1544 err = kernel_bind(sf, (struct sockaddr *)&addr, addrlen); 1545 if (err) 1546 goto failed; 1547 1548 mptcp_crypto_key_sha(subflow->remote_key, &remote_token, NULL); 1549 pr_debug("msk=%p remote_token=%u local_id=%d remote_id=%d", msk, 1550 remote_token, local_id, remote_id); 1551 subflow->remote_token = remote_token; 1552 subflow->remote_id = remote_id; 1553 subflow->request_join = 1; 1554 subflow->request_bkup = !!(flags & MPTCP_PM_ADDR_FLAG_BACKUP); 1555 subflow->subflow_id = msk->subflow_id++; 1556 mptcp_info2sockaddr(remote, &addr, ssk->sk_family); 1557 1558 sock_hold(ssk); 1559 list_add_tail(&subflow->node, &msk->conn_list); 1560 err = kernel_connect(sf, (struct sockaddr *)&addr, addrlen, O_NONBLOCK); 1561 if (err && err != -EINPROGRESS) 1562 goto failed_unlink; 1563 1564 /* discard the subflow socket */ 1565 mptcp_sock_graft(ssk, sk->sk_socket); 1566 iput(SOCK_INODE(sf)); 1567 WRITE_ONCE(msk->allow_infinite_fallback, false); 1568 mptcp_stop_tout_timer(sk); 1569 return 0; 1570 1571 failed_unlink: 1572 list_del(&subflow->node); 1573 sock_put(mptcp_subflow_tcp_sock(subflow)); 1574 1575 failed: 1576 subflow->disposable = 1; 1577 sock_release(sf); 1578 1579 err_out: 1580 /* we account subflows before the creation, and this failures will not 1581 * be caught by sk_state_change() 1582 */ 1583 mptcp_pm_close_subflow(msk); 1584 return err; 1585 } 1586 1587 static void mptcp_attach_cgroup(struct sock *parent, struct sock *child) 1588 { 1589 #ifdef CONFIG_SOCK_CGROUP_DATA 1590 struct sock_cgroup_data *parent_skcd = &parent->sk_cgrp_data, 1591 *child_skcd = &child->sk_cgrp_data; 1592 1593 /* only the additional subflows created by kworkers have to be modified */ 1594 if (cgroup_id(sock_cgroup_ptr(parent_skcd)) != 1595 cgroup_id(sock_cgroup_ptr(child_skcd))) { 1596 #ifdef CONFIG_MEMCG 1597 struct mem_cgroup *memcg = parent->sk_memcg; 1598 1599 mem_cgroup_sk_free(child); 1600 if (memcg && css_tryget(&memcg->css)) 1601 child->sk_memcg = memcg; 1602 #endif /* CONFIG_MEMCG */ 1603 1604 cgroup_sk_free(child_skcd); 1605 *child_skcd = *parent_skcd; 1606 cgroup_sk_clone(child_skcd); 1607 } 1608 #endif /* CONFIG_SOCK_CGROUP_DATA */ 1609 } 1610 1611 static void mptcp_subflow_ops_override(struct sock *ssk) 1612 { 1613 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 1614 if (ssk->sk_prot == &tcpv6_prot) 1615 ssk->sk_prot = &tcpv6_prot_override; 1616 else 1617 #endif 1618 ssk->sk_prot = &tcp_prot_override; 1619 } 1620 1621 static void mptcp_subflow_ops_undo_override(struct sock *ssk) 1622 { 1623 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 1624 if (ssk->sk_prot == &tcpv6_prot_override) 1625 ssk->sk_prot = &tcpv6_prot; 1626 else 1627 #endif 1628 ssk->sk_prot = &tcp_prot; 1629 } 1630 1631 int mptcp_subflow_create_socket(struct sock *sk, unsigned short family, 1632 struct socket **new_sock) 1633 { 1634 struct mptcp_subflow_context *subflow; 1635 struct net *net = sock_net(sk); 1636 struct socket *sf; 1637 int err; 1638 1639 /* un-accepted server sockets can reach here - on bad configuration 1640 * bail early to avoid greater trouble later 1641 */ 1642 if (unlikely(!sk->sk_socket)) 1643 return -EINVAL; 1644 1645 err = sock_create_kern(net, family, SOCK_STREAM, IPPROTO_TCP, &sf); 1646 if (err) 1647 return err; 1648 1649 lock_sock_nested(sf->sk, SINGLE_DEPTH_NESTING); 1650 1651 err = security_mptcp_add_subflow(sk, sf->sk); 1652 if (err) 1653 goto err_free; 1654 1655 /* the newly created socket has to be in the same cgroup as its parent */ 1656 mptcp_attach_cgroup(sk, sf->sk); 1657 1658 /* kernel sockets do not by default acquire net ref, but TCP timer 1659 * needs it. 1660 * Update ns_tracker to current stack trace and refcounted tracker. 1661 */ 1662 __netns_tracker_free(net, &sf->sk->ns_tracker, false); 1663 sf->sk->sk_net_refcnt = 1; 1664 get_net_track(net, &sf->sk->ns_tracker, GFP_KERNEL); 1665 sock_inuse_add(net, 1); 1666 err = tcp_set_ulp(sf->sk, "mptcp"); 1667 if (err) 1668 goto err_free; 1669 1670 mptcp_sockopt_sync_locked(mptcp_sk(sk), sf->sk); 1671 release_sock(sf->sk); 1672 1673 /* the newly created socket really belongs to the owning MPTCP master 1674 * socket, even if for additional subflows the allocation is performed 1675 * by a kernel workqueue. Adjust inode references, so that the 1676 * procfs/diag interfaces really show this one belonging to the correct 1677 * user. 1678 */ 1679 SOCK_INODE(sf)->i_ino = SOCK_INODE(sk->sk_socket)->i_ino; 1680 SOCK_INODE(sf)->i_uid = SOCK_INODE(sk->sk_socket)->i_uid; 1681 SOCK_INODE(sf)->i_gid = SOCK_INODE(sk->sk_socket)->i_gid; 1682 1683 subflow = mptcp_subflow_ctx(sf->sk); 1684 pr_debug("subflow=%p", subflow); 1685 1686 *new_sock = sf; 1687 sock_hold(sk); 1688 subflow->conn = sk; 1689 mptcp_subflow_ops_override(sf->sk); 1690 1691 return 0; 1692 1693 err_free: 1694 release_sock(sf->sk); 1695 sock_release(sf); 1696 return err; 1697 } 1698 1699 static struct mptcp_subflow_context *subflow_create_ctx(struct sock *sk, 1700 gfp_t priority) 1701 { 1702 struct inet_connection_sock *icsk = inet_csk(sk); 1703 struct mptcp_subflow_context *ctx; 1704 1705 ctx = kzalloc(sizeof(*ctx), priority); 1706 if (!ctx) 1707 return NULL; 1708 1709 rcu_assign_pointer(icsk->icsk_ulp_data, ctx); 1710 INIT_LIST_HEAD(&ctx->node); 1711 INIT_LIST_HEAD(&ctx->delegated_node); 1712 1713 pr_debug("subflow=%p", ctx); 1714 1715 ctx->tcp_sock = sk; 1716 1717 return ctx; 1718 } 1719 1720 static void __subflow_state_change(struct sock *sk) 1721 { 1722 struct socket_wq *wq; 1723 1724 rcu_read_lock(); 1725 wq = rcu_dereference(sk->sk_wq); 1726 if (skwq_has_sleeper(wq)) 1727 wake_up_interruptible_all(&wq->wait); 1728 rcu_read_unlock(); 1729 } 1730 1731 static bool subflow_is_done(const struct sock *sk) 1732 { 1733 return sk->sk_shutdown & RCV_SHUTDOWN || sk->sk_state == TCP_CLOSE; 1734 } 1735 1736 static void subflow_state_change(struct sock *sk) 1737 { 1738 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk); 1739 struct sock *parent = subflow->conn; 1740 struct mptcp_sock *msk; 1741 1742 __subflow_state_change(sk); 1743 1744 msk = mptcp_sk(parent); 1745 if (subflow_simultaneous_connect(sk)) { 1746 mptcp_do_fallback(sk); 1747 mptcp_rcv_space_init(msk, sk); 1748 pr_fallback(msk); 1749 subflow->conn_finished = 1; 1750 mptcp_propagate_state(parent, sk); 1751 } 1752 1753 /* as recvmsg() does not acquire the subflow socket for ssk selection 1754 * a fin packet carrying a DSS can be unnoticed if we don't trigger 1755 * the data available machinery here. 1756 */ 1757 if (mptcp_subflow_data_available(sk)) 1758 mptcp_data_ready(parent, sk); 1759 else if (unlikely(sk->sk_err)) 1760 subflow_error_report(sk); 1761 1762 subflow_sched_work_if_closed(mptcp_sk(parent), sk); 1763 1764 /* when the fallback subflow closes the rx side, trigger a 'dummy' 1765 * ingress data fin, so that the msk state will follow along 1766 */ 1767 if (__mptcp_check_fallback(msk) && subflow_is_done(sk) && msk->first == sk && 1768 mptcp_update_rcv_data_fin(msk, READ_ONCE(msk->ack_seq), true)) 1769 mptcp_schedule_work(parent); 1770 } 1771 1772 void mptcp_subflow_queue_clean(struct sock *listener_sk, struct sock *listener_ssk) 1773 { 1774 struct request_sock_queue *queue = &inet_csk(listener_ssk)->icsk_accept_queue; 1775 struct request_sock *req, *head, *tail; 1776 struct mptcp_subflow_context *subflow; 1777 struct sock *sk, *ssk; 1778 1779 /* Due to lock dependencies no relevant lock can be acquired under rskq_lock. 1780 * Splice the req list, so that accept() can not reach the pending ssk after 1781 * the listener socket is released below. 1782 */ 1783 spin_lock_bh(&queue->rskq_lock); 1784 head = queue->rskq_accept_head; 1785 tail = queue->rskq_accept_tail; 1786 queue->rskq_accept_head = NULL; 1787 queue->rskq_accept_tail = NULL; 1788 spin_unlock_bh(&queue->rskq_lock); 1789 1790 if (!head) 1791 return; 1792 1793 /* can't acquire the msk socket lock under the subflow one, 1794 * or will cause ABBA deadlock 1795 */ 1796 release_sock(listener_ssk); 1797 1798 for (req = head; req; req = req->dl_next) { 1799 ssk = req->sk; 1800 if (!sk_is_mptcp(ssk)) 1801 continue; 1802 1803 subflow = mptcp_subflow_ctx(ssk); 1804 if (!subflow || !subflow->conn) 1805 continue; 1806 1807 sk = subflow->conn; 1808 sock_hold(sk); 1809 1810 lock_sock_nested(sk, SINGLE_DEPTH_NESTING); 1811 __mptcp_unaccepted_force_close(sk); 1812 release_sock(sk); 1813 1814 /* lockdep will report a false positive ABBA deadlock 1815 * between cancel_work_sync and the listener socket. 1816 * The involved locks belong to different sockets WRT 1817 * the existing AB chain. 1818 * Using a per socket key is problematic as key 1819 * deregistration requires process context and must be 1820 * performed at socket disposal time, in atomic 1821 * context. 1822 * Just tell lockdep to consider the listener socket 1823 * released here. 1824 */ 1825 mutex_release(&listener_sk->sk_lock.dep_map, _RET_IP_); 1826 mptcp_cancel_work(sk); 1827 mutex_acquire(&listener_sk->sk_lock.dep_map, 0, 0, _RET_IP_); 1828 1829 sock_put(sk); 1830 } 1831 1832 /* we are still under the listener msk socket lock */ 1833 lock_sock_nested(listener_ssk, SINGLE_DEPTH_NESTING); 1834 1835 /* restore the listener queue, to let the TCP code clean it up */ 1836 spin_lock_bh(&queue->rskq_lock); 1837 WARN_ON_ONCE(queue->rskq_accept_head); 1838 queue->rskq_accept_head = head; 1839 queue->rskq_accept_tail = tail; 1840 spin_unlock_bh(&queue->rskq_lock); 1841 } 1842 1843 static int subflow_ulp_init(struct sock *sk) 1844 { 1845 struct inet_connection_sock *icsk = inet_csk(sk); 1846 struct mptcp_subflow_context *ctx; 1847 struct tcp_sock *tp = tcp_sk(sk); 1848 int err = 0; 1849 1850 /* disallow attaching ULP to a socket unless it has been 1851 * created with sock_create_kern() 1852 */ 1853 if (!sk->sk_kern_sock) { 1854 err = -EOPNOTSUPP; 1855 goto out; 1856 } 1857 1858 ctx = subflow_create_ctx(sk, GFP_KERNEL); 1859 if (!ctx) { 1860 err = -ENOMEM; 1861 goto out; 1862 } 1863 1864 pr_debug("subflow=%p, family=%d", ctx, sk->sk_family); 1865 1866 tp->is_mptcp = 1; 1867 ctx->icsk_af_ops = icsk->icsk_af_ops; 1868 icsk->icsk_af_ops = subflow_default_af_ops(sk); 1869 ctx->tcp_state_change = sk->sk_state_change; 1870 ctx->tcp_error_report = sk->sk_error_report; 1871 1872 WARN_ON_ONCE(sk->sk_data_ready != sock_def_readable); 1873 WARN_ON_ONCE(sk->sk_write_space != sk_stream_write_space); 1874 1875 sk->sk_data_ready = subflow_data_ready; 1876 sk->sk_write_space = subflow_write_space; 1877 sk->sk_state_change = subflow_state_change; 1878 sk->sk_error_report = subflow_error_report; 1879 out: 1880 return err; 1881 } 1882 1883 static void subflow_ulp_release(struct sock *ssk) 1884 { 1885 struct mptcp_subflow_context *ctx = mptcp_subflow_ctx(ssk); 1886 bool release = true; 1887 struct sock *sk; 1888 1889 if (!ctx) 1890 return; 1891 1892 sk = ctx->conn; 1893 if (sk) { 1894 /* if the msk has been orphaned, keep the ctx 1895 * alive, will be freed by __mptcp_close_ssk(), 1896 * when the subflow is still unaccepted 1897 */ 1898 release = ctx->disposable || list_empty(&ctx->node); 1899 1900 /* inet_child_forget() does not call sk_state_change(), 1901 * explicitly trigger the socket close machinery 1902 */ 1903 if (!release && !test_and_set_bit(MPTCP_WORK_CLOSE_SUBFLOW, 1904 &mptcp_sk(sk)->flags)) 1905 mptcp_schedule_work(sk); 1906 sock_put(sk); 1907 } 1908 1909 mptcp_subflow_ops_undo_override(ssk); 1910 if (release) 1911 kfree_rcu(ctx, rcu); 1912 } 1913 1914 static void subflow_ulp_clone(const struct request_sock *req, 1915 struct sock *newsk, 1916 const gfp_t priority) 1917 { 1918 struct mptcp_subflow_request_sock *subflow_req = mptcp_subflow_rsk(req); 1919 struct mptcp_subflow_context *old_ctx = mptcp_subflow_ctx(newsk); 1920 struct mptcp_subflow_context *new_ctx; 1921 1922 if (!tcp_rsk(req)->is_mptcp || 1923 (!subflow_req->mp_capable && !subflow_req->mp_join)) { 1924 subflow_ulp_fallback(newsk, old_ctx); 1925 return; 1926 } 1927 1928 new_ctx = subflow_create_ctx(newsk, priority); 1929 if (!new_ctx) { 1930 subflow_ulp_fallback(newsk, old_ctx); 1931 return; 1932 } 1933 1934 new_ctx->conn_finished = 1; 1935 new_ctx->icsk_af_ops = old_ctx->icsk_af_ops; 1936 new_ctx->tcp_state_change = old_ctx->tcp_state_change; 1937 new_ctx->tcp_error_report = old_ctx->tcp_error_report; 1938 new_ctx->rel_write_seq = 1; 1939 new_ctx->tcp_sock = newsk; 1940 1941 if (subflow_req->mp_capable) { 1942 /* see comments in subflow_syn_recv_sock(), MPTCP connection 1943 * is fully established only after we receive the remote key 1944 */ 1945 new_ctx->mp_capable = 1; 1946 new_ctx->local_key = subflow_req->local_key; 1947 new_ctx->token = subflow_req->token; 1948 new_ctx->ssn_offset = subflow_req->ssn_offset; 1949 new_ctx->idsn = subflow_req->idsn; 1950 1951 /* this is the first subflow, id is always 0 */ 1952 new_ctx->local_id_valid = 1; 1953 } else if (subflow_req->mp_join) { 1954 new_ctx->ssn_offset = subflow_req->ssn_offset; 1955 new_ctx->mp_join = 1; 1956 new_ctx->fully_established = 1; 1957 new_ctx->remote_key_valid = 1; 1958 new_ctx->backup = subflow_req->backup; 1959 new_ctx->remote_id = subflow_req->remote_id; 1960 new_ctx->token = subflow_req->token; 1961 new_ctx->thmac = subflow_req->thmac; 1962 1963 /* the subflow req id is valid, fetched via subflow_check_req() 1964 * and subflow_token_join_request() 1965 */ 1966 subflow_set_local_id(new_ctx, subflow_req->local_id); 1967 } 1968 } 1969 1970 static void tcp_release_cb_override(struct sock *ssk) 1971 { 1972 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); 1973 long status; 1974 1975 /* process and clear all the pending actions, but leave the subflow into 1976 * the napi queue. To respect locking, only the same CPU that originated 1977 * the action can touch the list. mptcp_napi_poll will take care of it. 1978 */ 1979 status = set_mask_bits(&subflow->delegated_status, MPTCP_DELEGATE_ACTIONS_MASK, 0); 1980 if (status) 1981 mptcp_subflow_process_delegated(ssk, status); 1982 1983 tcp_release_cb(ssk); 1984 } 1985 1986 static int tcp_abort_override(struct sock *ssk, int err) 1987 { 1988 /* closing a listener subflow requires a great deal of care. 1989 * keep it simple and just prevent such operation 1990 */ 1991 if (inet_sk_state_load(ssk) == TCP_LISTEN) 1992 return -EINVAL; 1993 1994 return tcp_abort(ssk, err); 1995 } 1996 1997 static struct tcp_ulp_ops subflow_ulp_ops __read_mostly = { 1998 .name = "mptcp", 1999 .owner = THIS_MODULE, 2000 .init = subflow_ulp_init, 2001 .release = subflow_ulp_release, 2002 .clone = subflow_ulp_clone, 2003 }; 2004 2005 static int subflow_ops_init(struct request_sock_ops *subflow_ops) 2006 { 2007 subflow_ops->obj_size = sizeof(struct mptcp_subflow_request_sock); 2008 2009 subflow_ops->slab = kmem_cache_create(subflow_ops->slab_name, 2010 subflow_ops->obj_size, 0, 2011 SLAB_ACCOUNT | 2012 SLAB_TYPESAFE_BY_RCU, 2013 NULL); 2014 if (!subflow_ops->slab) 2015 return -ENOMEM; 2016 2017 return 0; 2018 } 2019 2020 void __init mptcp_subflow_init(void) 2021 { 2022 mptcp_subflow_v4_request_sock_ops = tcp_request_sock_ops; 2023 mptcp_subflow_v4_request_sock_ops.slab_name = "request_sock_subflow_v4"; 2024 mptcp_subflow_v4_request_sock_ops.destructor = subflow_v4_req_destructor; 2025 2026 if (subflow_ops_init(&mptcp_subflow_v4_request_sock_ops) != 0) 2027 panic("MPTCP: failed to init subflow v4 request sock ops\n"); 2028 2029 subflow_request_sock_ipv4_ops = tcp_request_sock_ipv4_ops; 2030 subflow_request_sock_ipv4_ops.route_req = subflow_v4_route_req; 2031 subflow_request_sock_ipv4_ops.send_synack = subflow_v4_send_synack; 2032 2033 subflow_specific = ipv4_specific; 2034 subflow_specific.conn_request = subflow_v4_conn_request; 2035 subflow_specific.syn_recv_sock = subflow_syn_recv_sock; 2036 subflow_specific.sk_rx_dst_set = subflow_finish_connect; 2037 subflow_specific.rebuild_header = subflow_rebuild_header; 2038 2039 tcp_prot_override = tcp_prot; 2040 tcp_prot_override.release_cb = tcp_release_cb_override; 2041 tcp_prot_override.diag_destroy = tcp_abort_override; 2042 2043 #if IS_ENABLED(CONFIG_MPTCP_IPV6) 2044 /* In struct mptcp_subflow_request_sock, we assume the TCP request sock 2045 * structures for v4 and v6 have the same size. It should not changed in 2046 * the future but better to make sure to be warned if it is no longer 2047 * the case. 2048 */ 2049 BUILD_BUG_ON(sizeof(struct tcp_request_sock) != sizeof(struct tcp6_request_sock)); 2050 2051 mptcp_subflow_v6_request_sock_ops = tcp6_request_sock_ops; 2052 mptcp_subflow_v6_request_sock_ops.slab_name = "request_sock_subflow_v6"; 2053 mptcp_subflow_v6_request_sock_ops.destructor = subflow_v6_req_destructor; 2054 2055 if (subflow_ops_init(&mptcp_subflow_v6_request_sock_ops) != 0) 2056 panic("MPTCP: failed to init subflow v6 request sock ops\n"); 2057 2058 subflow_request_sock_ipv6_ops = tcp_request_sock_ipv6_ops; 2059 subflow_request_sock_ipv6_ops.route_req = subflow_v6_route_req; 2060 subflow_request_sock_ipv6_ops.send_synack = subflow_v6_send_synack; 2061 2062 subflow_v6_specific = ipv6_specific; 2063 subflow_v6_specific.conn_request = subflow_v6_conn_request; 2064 subflow_v6_specific.syn_recv_sock = subflow_syn_recv_sock; 2065 subflow_v6_specific.sk_rx_dst_set = subflow_finish_connect; 2066 subflow_v6_specific.rebuild_header = subflow_v6_rebuild_header; 2067 2068 subflow_v6m_specific = subflow_v6_specific; 2069 subflow_v6m_specific.queue_xmit = ipv4_specific.queue_xmit; 2070 subflow_v6m_specific.send_check = ipv4_specific.send_check; 2071 subflow_v6m_specific.net_header_len = ipv4_specific.net_header_len; 2072 subflow_v6m_specific.mtu_reduced = ipv4_specific.mtu_reduced; 2073 subflow_v6m_specific.rebuild_header = subflow_rebuild_header; 2074 2075 tcpv6_prot_override = tcpv6_prot; 2076 tcpv6_prot_override.release_cb = tcp_release_cb_override; 2077 tcpv6_prot_override.diag_destroy = tcp_abort_override; 2078 #endif 2079 2080 mptcp_diag_subflow_init(&subflow_ulp_ops); 2081 2082 if (tcp_register_ulp(&subflow_ulp_ops) != 0) 2083 panic("MPTCP: failed to register subflows to ULP\n"); 2084 } 2085