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