xref: /linux/net/mptcp/protocol.c (revision 490599ab23134962a6d18a024e84541d77bdb999)
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 <linux/sched/signal.h>
13 #include <linux/atomic.h>
14 #include <net/aligned_data.h>
15 #include <net/rps.h>
16 #include <net/sock.h>
17 #include <net/inet_common.h>
18 #include <net/inet_hashtables.h>
19 #include <net/protocol.h>
20 #include <net/tcp_states.h>
21 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
22 #include <net/transp_v6.h>
23 #endif
24 #include <net/mptcp.h>
25 #include <net/hotdata.h>
26 #include <net/xfrm.h>
27 #include <asm/ioctls.h>
28 #include "protocol.h"
29 #include "mib.h"
30 
31 static unsigned int mptcp_inq_hint(const struct sock *sk);
32 
33 #define CREATE_TRACE_POINTS
34 #include <trace/events/mptcp.h>
35 
36 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
37 struct mptcp6_sock {
38 	struct mptcp_sock msk;
39 	struct ipv6_pinfo np;
40 };
41 #endif
42 
43 enum {
44 	MPTCP_CMSG_TS = BIT(0),
45 	MPTCP_CMSG_INQ = BIT(1),
46 };
47 
48 static struct percpu_counter mptcp_sockets_allocated ____cacheline_aligned_in_smp;
49 
50 static void __mptcp_destroy_sock(struct sock *sk);
51 static void mptcp_check_send_data_fin(struct sock *sk);
52 
53 DEFINE_PER_CPU(struct mptcp_delegated_action, mptcp_delegated_actions) = {
54 	.bh_lock = INIT_LOCAL_LOCK(bh_lock),
55 };
56 static struct net_device *mptcp_napi_dev;
57 
58 /* Returns end sequence number of the receiver's advertised window */
59 static u64 mptcp_wnd_end(const struct mptcp_sock *msk)
60 {
61 	return READ_ONCE(msk->wnd_end);
62 }
63 
64 static const struct proto_ops *mptcp_fallback_tcp_ops(const struct sock *sk)
65 {
66 	unsigned short family = READ_ONCE(sk->sk_family);
67 
68 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
69 	if (family == AF_INET6)
70 		return &inet6_stream_ops;
71 #endif
72 	WARN_ON_ONCE(family != AF_INET);
73 	return &inet_stream_ops;
74 }
75 
76 bool __mptcp_try_fallback(struct mptcp_sock *msk, int fb_mib)
77 {
78 	struct net *net = sock_net((struct sock *)msk);
79 
80 	if (__mptcp_check_fallback(msk))
81 		return true;
82 
83 	/* The caller possibly is not holding the msk socket lock, but
84 	 * in the fallback case only the current subflow is touching
85 	 * the OoO queue.
86 	 */
87 	if (!RB_EMPTY_ROOT(&msk->out_of_order_queue))
88 		return false;
89 
90 	spin_lock_bh(&msk->fallback_lock);
91 	if (!msk->allow_infinite_fallback) {
92 		spin_unlock_bh(&msk->fallback_lock);
93 		return false;
94 	}
95 
96 	msk->allow_subflows = false;
97 	set_bit(MPTCP_FALLBACK_DONE, &msk->flags);
98 	clear_bit(MPTCP_RTX_ENABLED, &msk->flags);
99 	__MPTCP_INC_STATS(net, fb_mib);
100 	spin_unlock_bh(&msk->fallback_lock);
101 	return true;
102 }
103 
104 static int __mptcp_socket_create(struct mptcp_sock *msk)
105 {
106 	struct mptcp_subflow_context *subflow;
107 	struct sock *sk = (struct sock *)msk;
108 	struct socket *ssock;
109 	int err;
110 
111 	err = mptcp_subflow_create_socket(sk, sk->sk_family, &ssock);
112 	if (err)
113 		return err;
114 
115 	msk->scaling_ratio = tcp_sk(ssock->sk)->scaling_ratio;
116 	WRITE_ONCE(msk->first, ssock->sk);
117 	subflow = mptcp_subflow_ctx(ssock->sk);
118 	list_add(&subflow->node, &msk->conn_list);
119 	sock_hold(ssock->sk);
120 	subflow->request_mptcp = 1;
121 	subflow->subflow_id = msk->subflow_id++;
122 
123 	/* This is the first subflow, always with id 0 */
124 	WRITE_ONCE(subflow->local_id, 0);
125 	mptcp_sock_graft(msk->first, sk->sk_socket);
126 	iput(SOCK_INODE(ssock));
127 
128 	return 0;
129 }
130 
131 /* If the MPC handshake is not started, returns the first subflow,
132  * eventually allocating it.
133  */
134 struct sock *__mptcp_nmpc_sk(struct mptcp_sock *msk)
135 {
136 	struct sock *sk = (struct sock *)msk;
137 	int ret;
138 
139 	if (!((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_LISTEN)))
140 		return ERR_PTR(-EINVAL);
141 
142 	if (!msk->first) {
143 		ret = __mptcp_socket_create(msk);
144 		if (ret)
145 			return ERR_PTR(ret);
146 	}
147 
148 	return msk->first;
149 }
150 
151 static void mptcp_drop(struct sock *sk, struct sk_buff *skb)
152 {
153 	/* The skb forward memory was already transferred to sk by
154 	 * mptcp_borrow_fwdmem(), even before setting the destructor.
155 	 */
156 	if (!skb->destructor)
157 		sk_mem_reclaim(sk);
158 
159 	sk_drops_skbadd(sk, skb);
160 	__kfree_skb(skb);
161 }
162 
163 static bool __mptcp_try_coalesce(struct sock *sk, struct sk_buff *to,
164 				 struct sk_buff *from, bool *fragstolen,
165 				 int *delta)
166 {
167 	int limit = READ_ONCE(sk->sk_rcvbuf);
168 
169 	if (unlikely(MPTCP_SKB_CB(to)->cant_coalesce) ||
170 	    MPTCP_SKB_CB(from)->offset ||
171 	    ((to->len + from->len) > (limit >> 3)) ||
172 	    !skb_try_coalesce(to, from, fragstolen, delta))
173 		return false;
174 
175 	pr_debug("colesced seq %llx into %llx new len %d new end seq %llx\n",
176 		 MPTCP_SKB_CB(from)->map_seq, MPTCP_SKB_CB(to)->map_seq,
177 		 to->len, MPTCP_SKB_CB(from)->end_seq);
178 	MPTCP_SKB_CB(to)->end_seq = MPTCP_SKB_CB(from)->end_seq;
179 	return true;
180 }
181 
182 static bool mptcp_try_coalesce(struct sock *sk, struct sk_buff *to,
183 			       struct sk_buff *from)
184 {
185 	bool fragstolen;
186 	int delta;
187 
188 	if (!__mptcp_try_coalesce(sk, to, from, &fragstolen, &delta))
189 		return false;
190 
191 	/* note the fwd memory can reach a negative value after accounting
192 	 * for the delta, but the later skb free will restore a non
193 	 * negative one
194 	 */
195 	atomic_add(delta, &sk->sk_rmem_alloc);
196 	sk_mem_charge(sk, delta);
197 	kfree_skb_partial(from, fragstolen);
198 
199 	return true;
200 }
201 
202 static bool mptcp_ooo_try_coalesce(struct mptcp_sock *msk, struct sk_buff *to,
203 				   struct sk_buff *from)
204 {
205 	if (MPTCP_SKB_CB(from)->map_seq != MPTCP_SKB_CB(to)->end_seq)
206 		return false;
207 
208 	return mptcp_try_coalesce((struct sock *)msk, to, from);
209 }
210 
211 /* "inspired" by tcp_rcvbuf_grow(), main difference:
212  * - mptcp does not maintain a msk-level window clamp
213  * - returns true when  the receive buffer is actually updated
214  */
215 static bool mptcp_rcvbuf_grow(struct sock *sk, u32 newval)
216 {
217 	struct mptcp_sock *msk = mptcp_sk(sk);
218 	const struct net *net = sock_net(sk);
219 	u32 rcvwin, rcvbuf, cap, oldval;
220 	u64 grow;
221 
222 	oldval = msk->rcvq_space.space;
223 	msk->rcvq_space.space = newval;
224 	if (!READ_ONCE(net->ipv4.sysctl_tcp_moderate_rcvbuf) ||
225 	    (sk->sk_userlocks & SOCK_RCVBUF_LOCK))
226 		return false;
227 
228 	/* DRS is always one RTT late. */
229 	rcvwin = newval << 1;
230 
231 	/* slow start: allow the sender to double its rate. */
232 	grow = (u64)rcvwin * (newval - oldval);
233 	do_div(grow, oldval);
234 	rcvwin += grow << 1;
235 
236 	cap = READ_ONCE(net->ipv4.sysctl_tcp_rmem[2]);
237 
238 	rcvbuf = min_t(u32, mptcp_space_from_win(sk, rcvwin), cap);
239 	if (rcvbuf > sk->sk_rcvbuf) {
240 		WRITE_ONCE(sk->sk_rcvbuf, rcvbuf);
241 		return true;
242 	}
243 	return false;
244 }
245 
246 /* "Inspired" from the TCP version; main difference: stop as soon as the MPTCP
247  * socket is under memory limit.
248  */
249 static void mptcp_prune_ofo_queue(struct sock *sk,
250 				  const struct sk_buff *in_skb)
251 {
252 	struct mptcp_sock *msk = mptcp_sk(sk);
253 	struct rb_node *node, *prev;
254 	bool pruned = false;
255 	u64 mem;
256 
257 	if (RB_EMPTY_ROOT(&msk->out_of_order_queue))
258 		return;
259 
260 	node = &msk->ooo_last_skb->rbnode;
261 
262 	do {
263 		struct sk_buff *skb = rb_to_skb(node);
264 
265 		/* Stop pruning if the incoming skb would land in OoO tail. */
266 		if (after64(MPTCP_SKB_CB(in_skb)->map_seq,
267 			    MPTCP_SKB_CB(skb)->map_seq))
268 			break;
269 
270 		pruned = true;
271 		prev = rb_prev(node);
272 		rb_erase(node, &msk->out_of_order_queue);
273 		mptcp_drop(sk, skb);
274 		msk->ooo_last_skb = rb_to_skb(prev);
275 
276 		mem = (unsigned int)sk_rmem_alloc_get(sk);
277 		if (mem <= sk->sk_rcvbuf)
278 			break;
279 
280 		node = prev;
281 	} while (node);
282 
283 	if (pruned)
284 		MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_OFOPRUNED);
285 }
286 
287 /* The stack can't drop packets for fallback socket at the msk level, or the
288  * stream will break.
289  */
290 static bool mptcp_can_ingest(const struct sock *sk)
291 {
292 	return likely(sk_rmem_alloc_get(sk) <= READ_ONCE(sk->sk_rcvbuf)) ||
293 	       __mptcp_check_fallback(mptcp_sk(sk));
294 }
295 
296 static bool mptcp_try_rmem_schedule(struct sock *sk, const struct sk_buff *skb)
297 {
298 	if (!mptcp_can_ingest(sk)) {
299 		mptcp_prune_ofo_queue(sk, skb);
300 		return mptcp_can_ingest(sk);
301 	}
302 	return true;
303 }
304 
305 /* "inspired" by tcp_data_queue_ofo(), main differences:
306  * - use mptcp seqs
307  * - don't cope with sacks
308  */
309 static void mptcp_data_queue_ofo(struct mptcp_sock *msk, struct sk_buff *skb)
310 {
311 	struct sock *sk = (struct sock *)msk;
312 	struct rb_node **p, *parent;
313 	u64 seq, end_seq, max_seq;
314 	struct sk_buff *skb1;
315 
316 	seq = MPTCP_SKB_CB(skb)->map_seq;
317 	end_seq = MPTCP_SKB_CB(skb)->end_seq;
318 	max_seq = atomic64_read(&msk->rcv_wnd_sent);
319 
320 	pr_debug("msk=%p seq=%llx limit=%llx empty=%d\n", msk, seq, max_seq,
321 		 RB_EMPTY_ROOT(&msk->out_of_order_queue));
322 	if (after64(end_seq, max_seq)) {
323 		/* out of window */
324 		mptcp_drop(sk, skb);
325 		pr_debug("oow by %lld, rcv_wnd_sent %llu\n",
326 			 (unsigned long long)end_seq - (unsigned long)max_seq,
327 			 (unsigned long long)atomic64_read(&msk->rcv_wnd_sent));
328 		MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_NODSSWINDOW);
329 		return;
330 	}
331 
332 	if (!mptcp_try_rmem_schedule(sk, skb)) {
333 		MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_RCVPRUNED);
334 		mptcp_drop(sk, skb);
335 		return;
336 	}
337 
338 	p = &msk->out_of_order_queue.rb_node;
339 	MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_OFOQUEUE);
340 	if (RB_EMPTY_ROOT(&msk->out_of_order_queue)) {
341 		rb_link_node(&skb->rbnode, NULL, p);
342 		rb_insert_color(&skb->rbnode, &msk->out_of_order_queue);
343 		msk->ooo_last_skb = skb;
344 		goto end;
345 	}
346 
347 	/* with 2 subflows, adding at end of ooo queue is quite likely
348 	 * Use of ooo_last_skb avoids the O(Log(N)) rbtree lookup.
349 	 */
350 	if (mptcp_ooo_try_coalesce(msk, msk->ooo_last_skb, skb)) {
351 		MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_OFOMERGE);
352 		MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_OFOQUEUETAIL);
353 		return;
354 	}
355 
356 	/* Can avoid an rbtree lookup if we are adding skb after ooo_last_skb */
357 	if (!before64(seq, MPTCP_SKB_CB(msk->ooo_last_skb)->end_seq)) {
358 		MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_OFOQUEUETAIL);
359 		parent = &msk->ooo_last_skb->rbnode;
360 		p = &parent->rb_right;
361 		goto insert;
362 	}
363 
364 	/* Find place to insert this segment. Handle overlaps on the way. */
365 	parent = NULL;
366 	while (*p) {
367 		parent = *p;
368 		skb1 = rb_to_skb(parent);
369 		if (before64(seq, MPTCP_SKB_CB(skb1)->map_seq)) {
370 			p = &parent->rb_left;
371 			continue;
372 		}
373 		if (before64(seq, MPTCP_SKB_CB(skb1)->end_seq)) {
374 			if (!after64(end_seq, MPTCP_SKB_CB(skb1)->end_seq)) {
375 				/* All the bits are present. Drop. */
376 				mptcp_drop(sk, skb);
377 				MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_DUPDATA);
378 				return;
379 			}
380 			if (after64(seq, MPTCP_SKB_CB(skb1)->map_seq)) {
381 				/* partial overlap:
382 				 *     |     skb      |
383 				 *  |     skb1    |
384 				 * continue traversing
385 				 */
386 			} else {
387 				/* skb's seq == skb1's seq and skb covers skb1.
388 				 * Replace skb1 with skb.
389 				 */
390 				rb_replace_node(&skb1->rbnode, &skb->rbnode,
391 						&msk->out_of_order_queue);
392 				mptcp_drop(sk, skb1);
393 				MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_DUPDATA);
394 				goto merge_right;
395 			}
396 		} else if (mptcp_ooo_try_coalesce(msk, skb1, skb)) {
397 			MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_OFOMERGE);
398 			return;
399 		}
400 		p = &parent->rb_right;
401 	}
402 
403 insert:
404 	/* Insert segment into RB tree. */
405 	rb_link_node(&skb->rbnode, parent, p);
406 	rb_insert_color(&skb->rbnode, &msk->out_of_order_queue);
407 
408 merge_right:
409 	/* Remove other segments covered by skb. */
410 	while ((skb1 = skb_rb_next(skb)) != NULL) {
411 		if (before64(end_seq, MPTCP_SKB_CB(skb1)->end_seq))
412 			break;
413 		rb_erase(&skb1->rbnode, &msk->out_of_order_queue);
414 		mptcp_drop(sk, skb1);
415 		MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_DUPDATA);
416 	}
417 	/* If there is no skb after us, we are the last_skb ! */
418 	if (!skb1)
419 		msk->ooo_last_skb = skb;
420 
421 end:
422 	skb_condense(skb);
423 	skb_set_owner_r(skb, sk);
424 }
425 
426 static void mptcp_init_skb(struct sock *ssk, struct sk_buff *skb, int offset,
427 			   int copy_len)
428 {
429 	struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
430 	bool has_rxtstamp = TCP_SKB_CB(skb)->has_rxtstamp;
431 
432 	/* the skb map_seq accounts for the skb offset:
433 	 * mptcp_subflow_get_mapped_dsn() is based on the current tp->copied_seq
434 	 * value
435 	 */
436 	MPTCP_SKB_CB(skb)->map_seq = mptcp_subflow_get_mapped_dsn(subflow);
437 	MPTCP_SKB_CB(skb)->end_seq = MPTCP_SKB_CB(skb)->map_seq + copy_len;
438 	MPTCP_SKB_CB(skb)->offset = offset;
439 	MPTCP_SKB_CB(skb)->has_rxtstamp = has_rxtstamp;
440 	MPTCP_SKB_CB(skb)->cant_coalesce = 0;
441 
442 	__skb_unlink(skb, &ssk->sk_receive_queue);
443 
444 	skb_ext_reset(skb);
445 	skb_dst_drop(skb);
446 }
447 
448 static bool __mptcp_move_skb(struct sock *sk, struct sk_buff *skb)
449 {
450 	u64 copy_len = MPTCP_SKB_CB(skb)->end_seq - MPTCP_SKB_CB(skb)->map_seq;
451 	struct mptcp_sock *msk = mptcp_sk(sk);
452 	struct sk_buff *tail;
453 
454 	mptcp_borrow_fwdmem(sk, skb);
455 
456 	if (MPTCP_SKB_CB(skb)->map_seq == msk->ack_seq) {
457 		/* in sequence */
458 insert:
459 		if (!mptcp_try_rmem_schedule(sk, skb)) {
460 			MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_RCVPRUNED);
461 			mptcp_drop(sk, skb);
462 			return false;
463 		}
464 
465 		msk->bytes_received += copy_len;
466 		WRITE_ONCE(msk->ack_seq, msk->ack_seq + copy_len);
467 		tail = skb_peek_tail(&sk->sk_receive_queue);
468 		if (tail && mptcp_try_coalesce(sk, tail, skb))
469 			return true;
470 
471 		skb_set_owner_r(skb, sk);
472 		__skb_queue_tail(&sk->sk_receive_queue, skb);
473 		return true;
474 	} else if (after64(MPTCP_SKB_CB(skb)->map_seq, msk->ack_seq)) {
475 		mptcp_data_queue_ofo(msk, skb);
476 		return false;
477 	}
478 
479 	/* Partial packet */
480 	if (after64(MPTCP_SKB_CB(skb)->end_seq, msk->ack_seq)) {
481 		copy_len = MPTCP_SKB_CB(skb)->end_seq - msk->ack_seq;
482 		MPTCP_SKB_CB(skb)->offset += msk->ack_seq -
483 					     MPTCP_SKB_CB(skb)->map_seq;
484 		MPTCP_SKB_CB(skb)->map_seq += msk->ack_seq -
485 					      MPTCP_SKB_CB(skb)->map_seq;
486 		goto insert;
487 	}
488 
489 	/* Completely old data */
490 	MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_DUPDATA);
491 	mptcp_drop(sk, skb);
492 	return false;
493 }
494 
495 static void mptcp_stop_rtx_timer(struct sock *sk)
496 {
497 	sk_stop_timer(sk, &sk->mptcp_retransmit_timer);
498 	mptcp_sk(sk)->timer_ival = 0;
499 }
500 
501 static void mptcp_close_wake_up(struct sock *sk)
502 {
503 	if (sock_flag(sk, SOCK_DEAD))
504 		return;
505 
506 	sk->sk_state_change(sk);
507 	if (sk->sk_shutdown == SHUTDOWN_MASK ||
508 	    sk->sk_state == TCP_CLOSE)
509 		sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_HUP);
510 	else
511 		sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
512 }
513 
514 static void mptcp_shutdown_subflows(struct mptcp_sock *msk)
515 {
516 	struct mptcp_subflow_context *subflow;
517 
518 	mptcp_for_each_subflow(msk, subflow) {
519 		struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
520 		bool slow;
521 
522 		slow = lock_sock_fast(ssk);
523 		tcp_shutdown(ssk, SEND_SHUTDOWN);
524 		unlock_sock_fast(ssk, slow);
525 	}
526 }
527 
528 /* called under the msk socket lock */
529 static bool mptcp_pending_data_fin_ack(struct sock *sk)
530 {
531 	struct mptcp_sock *msk = mptcp_sk(sk);
532 
533 	return ((1 << sk->sk_state) &
534 		(TCPF_FIN_WAIT1 | TCPF_CLOSING | TCPF_LAST_ACK)) &&
535 	       msk->write_seq == READ_ONCE(msk->snd_una);
536 }
537 
538 static void mptcp_check_data_fin_ack(struct sock *sk)
539 {
540 	struct mptcp_sock *msk = mptcp_sk(sk);
541 
542 	/* Look for an acknowledged DATA_FIN */
543 	if (mptcp_pending_data_fin_ack(sk)) {
544 		WRITE_ONCE(msk->snd_data_fin_enable, 0);
545 
546 		switch (sk->sk_state) {
547 		case TCP_FIN_WAIT1:
548 			mptcp_set_state(sk, TCP_FIN_WAIT2);
549 			break;
550 		case TCP_CLOSING:
551 		case TCP_LAST_ACK:
552 			mptcp_shutdown_subflows(msk);
553 			mptcp_set_state(sk, TCP_CLOSE);
554 			break;
555 		}
556 
557 		mptcp_close_wake_up(sk);
558 	}
559 }
560 
561 /* can be called with no lock acquired */
562 static bool mptcp_pending_data_fin(struct sock *sk, u64 *seq)
563 {
564 	struct mptcp_sock *msk = mptcp_sk(sk);
565 
566 	if (READ_ONCE(msk->rcv_data_fin) &&
567 	    ((1 << inet_sk_state_load(sk)) &
568 	     (TCPF_ESTABLISHED | TCPF_FIN_WAIT1 | TCPF_FIN_WAIT2))) {
569 		u64 rcv_data_fin_seq = READ_ONCE(msk->rcv_data_fin_seq);
570 
571 		if (READ_ONCE(msk->ack_seq) == rcv_data_fin_seq) {
572 			if (seq)
573 				*seq = rcv_data_fin_seq;
574 
575 			return true;
576 		}
577 	}
578 
579 	return false;
580 }
581 
582 static void mptcp_set_datafin_timeout(struct sock *sk)
583 {
584 	struct inet_connection_sock *icsk = inet_csk(sk);
585 	u32 rto_min = READ_ONCE(icsk->icsk_rto_min);
586 	u32 rto_max = READ_ONCE(icsk->icsk_rto_max);
587 	u32 retransmits;
588 
589 	/* The sysctls are validated independently: rto_min > rto_max is
590 	 * possible, guard against ilog2(0).
591 	 */
592 	retransmits = min_t(u32, icsk->icsk_retransmits,
593 			    ilog2(max_t(u32, rto_max / rto_min, 1)));
594 
595 	mptcp_sk(sk)->timer_ival = rto_min << retransmits;
596 }
597 
598 static void __mptcp_set_timeout(struct sock *sk, long tout)
599 {
600 	mptcp_sk(sk)->timer_ival = tout > 0 ? tout :
601 				   READ_ONCE(inet_csk(sk)->icsk_rto_min);
602 }
603 
604 static long mptcp_timeout_from_subflow(const struct mptcp_subflow_context *subflow)
605 {
606 	const struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
607 
608 	return inet_csk(ssk)->icsk_pending && !subflow->stale_count ?
609 	       tcp_timeout_expires(ssk) - jiffies : 0;
610 }
611 
612 static void mptcp_set_timeout(struct sock *sk)
613 {
614 	struct mptcp_subflow_context *subflow;
615 	long tout = 0;
616 
617 	mptcp_for_each_subflow(mptcp_sk(sk), subflow)
618 		tout = max(tout, mptcp_timeout_from_subflow(subflow));
619 	__mptcp_set_timeout(sk, tout);
620 }
621 
622 static inline bool tcp_can_send_ack(const struct sock *ssk)
623 {
624 	return !((1 << inet_sk_state_load(ssk)) &
625 	       (TCPF_SYN_SENT | TCPF_SYN_RECV | TCPF_TIME_WAIT | TCPF_CLOSE | TCPF_LISTEN));
626 }
627 
628 void __mptcp_subflow_send_ack(struct sock *ssk)
629 {
630 	if (tcp_can_send_ack(ssk))
631 		tcp_send_ack(ssk);
632 }
633 
634 static void mptcp_subflow_send_ack(struct sock *ssk)
635 {
636 	bool slow;
637 
638 	slow = lock_sock_fast(ssk);
639 	__mptcp_subflow_send_ack(ssk);
640 	unlock_sock_fast(ssk, slow);
641 }
642 
643 static void mptcp_send_ack(struct mptcp_sock *msk)
644 {
645 	struct mptcp_subflow_context *subflow;
646 
647 	mptcp_for_each_subflow(msk, subflow)
648 		mptcp_subflow_send_ack(mptcp_subflow_tcp_sock(subflow));
649 }
650 
651 static void mptcp_subflow_cleanup_rbuf(struct sock *ssk, int copied)
652 {
653 	bool slow;
654 
655 	slow = lock_sock_fast(ssk);
656 	if (tcp_can_send_ack(ssk))
657 		tcp_cleanup_rbuf(ssk, copied);
658 	unlock_sock_fast(ssk, slow);
659 }
660 
661 static bool mptcp_subflow_could_cleanup(const struct sock *ssk, bool rx_empty)
662 {
663 	const struct inet_connection_sock *icsk = inet_csk(ssk);
664 	u8 ack_pending = READ_ONCE(icsk->icsk_ack.pending);
665 	const struct tcp_sock *tp = tcp_sk(ssk);
666 
667 	return (ack_pending & ICSK_ACK_SCHED) &&
668 		((READ_ONCE(tp->rcv_nxt) - READ_ONCE(tp->rcv_wup) >
669 		  READ_ONCE(icsk->icsk_ack.rcv_mss)) ||
670 		 (rx_empty && ack_pending &
671 			      (ICSK_ACK_PUSHED2 | ICSK_ACK_PUSHED)));
672 }
673 
674 static void mptcp_cleanup_rbuf(struct mptcp_sock *msk, int copied)
675 {
676 	int old_space = READ_ONCE(msk->old_wspace);
677 	struct mptcp_subflow_context *subflow;
678 	struct sock *sk = (struct sock *)msk;
679 	int space =  __mptcp_space(sk);
680 	bool cleanup, rx_empty;
681 
682 	cleanup = (space > 0) && (space >= (old_space << 1)) && copied;
683 	rx_empty = !sk_rmem_alloc_get(sk) && copied;
684 
685 	mptcp_for_each_subflow(msk, subflow) {
686 		struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
687 
688 		if (cleanup || mptcp_subflow_could_cleanup(ssk, rx_empty))
689 			mptcp_subflow_cleanup_rbuf(ssk, copied);
690 	}
691 }
692 
693 static void mptcp_check_data_fin(struct sock *sk)
694 {
695 	struct mptcp_sock *msk = mptcp_sk(sk);
696 	u64 rcv_data_fin_seq;
697 
698 	/* Need to ack a DATA_FIN received from a peer while this side
699 	 * of the connection is in ESTABLISHED, FIN_WAIT1, or FIN_WAIT2.
700 	 * msk->rcv_data_fin was set when parsing the incoming options
701 	 * at the subflow level and the msk lock was not held, so this
702 	 * is the first opportunity to act on the DATA_FIN and change
703 	 * the msk state.
704 	 *
705 	 * If we are caught up to the sequence number of the incoming
706 	 * DATA_FIN, send the DATA_ACK now and do state transition.  If
707 	 * not caught up, do nothing and let the recv code send DATA_ACK
708 	 * when catching up.
709 	 */
710 
711 	if (mptcp_pending_data_fin(sk, &rcv_data_fin_seq)) {
712 		WRITE_ONCE(msk->ack_seq, msk->ack_seq + 1);
713 		WRITE_ONCE(msk->rcv_data_fin, 0);
714 
715 		WRITE_ONCE(sk->sk_shutdown, sk->sk_shutdown | RCV_SHUTDOWN);
716 		smp_mb__before_atomic(); /* SHUTDOWN must be visible first */
717 
718 		switch (sk->sk_state) {
719 		case TCP_ESTABLISHED:
720 			mptcp_set_state(sk, TCP_CLOSE_WAIT);
721 			break;
722 		case TCP_FIN_WAIT1:
723 			mptcp_set_state(sk, TCP_CLOSING);
724 			break;
725 		case TCP_FIN_WAIT2:
726 			mptcp_shutdown_subflows(msk);
727 			mptcp_set_state(sk, TCP_CLOSE);
728 			break;
729 		default:
730 			/* Other states not expected */
731 			WARN_ON_ONCE(1);
732 			break;
733 		}
734 
735 		if (!__mptcp_check_fallback(msk))
736 			mptcp_send_ack(msk);
737 		mptcp_close_wake_up(sk);
738 	}
739 }
740 
741 static void mptcp_dss_corruption(struct mptcp_sock *msk, struct sock *ssk)
742 {
743 	if (!mptcp_try_fallback(ssk, MPTCP_MIB_DSSCORRUPTIONFALLBACK)) {
744 		MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_DSSCORRUPTIONRESET);
745 		mptcp_subflow_reset(ssk);
746 	}
747 }
748 
749 static void __mptcp_add_backlog(struct sock *sk,
750 				struct mptcp_subflow_context *subflow,
751 				struct sk_buff *skb)
752 {
753 	struct mptcp_sock *msk = mptcp_sk(sk);
754 	struct sk_buff *tail = NULL;
755 	struct sock *ssk = skb->sk;
756 	bool fragstolen;
757 	u64 limit;
758 	int delta;
759 
760 	if (unlikely(sk->sk_state == TCP_CLOSE)) {
761 		kfree_skb_reason(skb, SKB_DROP_REASON_SOCKET_CLOSE);
762 		return;
763 	}
764 
765 	/* Similar additional allowance as plain TCP. */
766 	limit = READ_ONCE(sk->sk_rcvbuf);
767 	limit += (limit >> 1) + 64 * 1024;
768 	limit = min_t(u64, limit, UINT_MAX);
769 	if (msk->backlog_len > limit && !__mptcp_check_fallback(msk)) {
770 		__MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_BACKLOGDROP);
771 		kfree_skb_reason(skb, SKB_DROP_REASON_SOCKET_BACKLOG);
772 		return;
773 	}
774 
775 	/* Try to coalesce with the last skb in our backlog */
776 	if (!list_empty(&msk->backlog_list))
777 		tail = list_last_entry(&msk->backlog_list, struct sk_buff, list);
778 
779 	if (tail && MPTCP_SKB_CB(skb)->map_seq == MPTCP_SKB_CB(tail)->end_seq &&
780 	    ssk == tail->sk &&
781 	    __mptcp_try_coalesce(sk, tail, skb, &fragstolen, &delta)) {
782 		skb->truesize -= delta;
783 		kfree_skb_partial(skb, fragstolen);
784 		__mptcp_subflow_lend_fwdmem(subflow, delta);
785 		goto account;
786 	}
787 
788 	list_add_tail(&skb->list, &msk->backlog_list);
789 	mptcp_subflow_lend_fwdmem(subflow, skb);
790 	delta = skb->truesize;
791 
792 account:
793 	WRITE_ONCE(msk->backlog_len, msk->backlog_len + delta);
794 
795 	/* Possibly not accept()ed yet, keep track of memory not CG
796 	 * accounted, mptcp_graft_subflows() will handle it.
797 	 */
798 	if (!mem_cgroup_from_sk(ssk))
799 		msk->backlog_unaccounted += delta;
800 }
801 
802 static bool __mptcp_move_skbs_from_subflow(struct mptcp_sock *msk,
803 					   struct sock *ssk, bool own_msk)
804 {
805 	struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
806 	struct sock *sk = (struct sock *)msk;
807 	bool more_data_avail;
808 	struct tcp_sock *tp;
809 	bool ret = false;
810 
811 	pr_debug("msk=%p ssk=%p\n", msk, ssk);
812 	tp = tcp_sk(ssk);
813 	do {
814 		u32 map_remaining, offset;
815 		u32 seq = tp->copied_seq;
816 		struct sk_buff *skb;
817 		bool fin;
818 
819 		/* try to move as much data as available */
820 		map_remaining = subflow->map_data_len -
821 				mptcp_subflow_get_map_offset(subflow);
822 
823 		skb = skb_peek(&ssk->sk_receive_queue);
824 		if (unlikely(!skb))
825 			break;
826 
827 		if (__mptcp_check_fallback(msk)) {
828 			/* Under fallback skbs have no MPTCP extension and TCP could
829 			 * collapse them between the dummy map creation and the
830 			 * current dequeue. Be sure to adjust the map size.
831 			 */
832 			map_remaining = skb->len;
833 			subflow->map_data_len = skb->len;
834 		}
835 
836 		offset = seq - TCP_SKB_CB(skb)->seq;
837 		fin = TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN;
838 		if (fin)
839 			seq++;
840 
841 		if (offset < skb->len) {
842 			size_t len = skb->len - offset;
843 
844 			mptcp_init_skb(ssk, skb, offset, len);
845 
846 			if (own_msk) {
847 				mptcp_subflow_lend_fwdmem(subflow, skb);
848 				ret |= __mptcp_move_skb(sk, skb);
849 			} else {
850 				__mptcp_add_backlog(sk, subflow, skb);
851 			}
852 			seq += len;
853 
854 			if (unlikely(map_remaining < len)) {
855 				DEBUG_NET_WARN_ON_ONCE(1);
856 				mptcp_dss_corruption(msk, ssk);
857 			}
858 		} else {
859 			if (unlikely(!fin)) {
860 				DEBUG_NET_WARN_ON_ONCE(1);
861 				mptcp_dss_corruption(msk, ssk);
862 			}
863 
864 			sk_eat_skb(ssk, skb);
865 		}
866 
867 		WRITE_ONCE(tp->copied_seq, seq);
868 		more_data_avail = mptcp_subflow_data_available(ssk);
869 
870 	} while (more_data_avail);
871 
872 	if (ret)
873 		msk->last_data_recv = tcp_jiffies32;
874 	return ret;
875 }
876 
877 static bool __mptcp_ofo_queue(struct mptcp_sock *msk)
878 {
879 	struct sock *sk = (struct sock *)msk;
880 	struct sk_buff *skb, *tail;
881 	bool moved = false;
882 	struct rb_node *p;
883 	u64 end_seq;
884 
885 	p = rb_first(&msk->out_of_order_queue);
886 	pr_debug("msk=%p empty=%d\n", msk, RB_EMPTY_ROOT(&msk->out_of_order_queue));
887 	while (p) {
888 		skb = rb_to_skb(p);
889 		if (after64(MPTCP_SKB_CB(skb)->map_seq, msk->ack_seq))
890 			break;
891 
892 		p = rb_next(p);
893 		rb_erase(&skb->rbnode, &msk->out_of_order_queue);
894 
895 		if (unlikely(!after64(MPTCP_SKB_CB(skb)->end_seq,
896 				      msk->ack_seq))) {
897 			mptcp_drop(sk, skb);
898 			MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_DUPDATA);
899 			continue;
900 		}
901 
902 		end_seq = MPTCP_SKB_CB(skb)->end_seq;
903 		tail = skb_peek_tail(&sk->sk_receive_queue);
904 		if (!tail || !mptcp_ooo_try_coalesce(msk, tail, skb)) {
905 			int delta = msk->ack_seq - MPTCP_SKB_CB(skb)->map_seq;
906 
907 			/* skip overlapping data, if any */
908 			pr_debug("uncoalesced seq=%llx ack seq=%llx delta=%d\n",
909 				 MPTCP_SKB_CB(skb)->map_seq, msk->ack_seq,
910 				 delta);
911 			MPTCP_SKB_CB(skb)->offset += delta;
912 			MPTCP_SKB_CB(skb)->map_seq += delta;
913 			__skb_queue_tail(&sk->sk_receive_queue, skb);
914 		}
915 		msk->bytes_received += end_seq - msk->ack_seq;
916 		WRITE_ONCE(msk->ack_seq, end_seq);
917 		moved = true;
918 	}
919 	return moved;
920 }
921 
922 static bool __mptcp_subflow_error_report(struct sock *sk, struct sock *ssk)
923 {
924 	int ssk_state;
925 	int err;
926 
927 	/* only propagate errors on fallen-back sockets or
928 	 * on MPC connect
929 	 */
930 	if (sk->sk_state != TCP_SYN_SENT && !__mptcp_check_fallback(mptcp_sk(sk)))
931 		return false;
932 
933 	err = sock_error(ssk);
934 	if (!err)
935 		return false;
936 
937 	/* We need to propagate only transition to CLOSE state.
938 	 * Orphaned socket will see such state change via
939 	 * subflow_sched_work_if_closed() and that path will properly
940 	 * destroy the msk as needed.
941 	 */
942 	ssk_state = inet_sk_state_load(ssk);
943 	if (ssk_state == TCP_CLOSE && !sock_flag(sk, SOCK_DEAD))
944 		mptcp_set_state(sk, ssk_state);
945 	WRITE_ONCE(sk->sk_err, -err);
946 
947 	/* This barrier is coupled with smp_rmb() in mptcp_poll() */
948 	smp_wmb();
949 	sk_error_report(sk);
950 	return true;
951 }
952 
953 void __mptcp_error_report(struct sock *sk)
954 {
955 	struct mptcp_subflow_context *subflow;
956 	struct mptcp_sock *msk = mptcp_sk(sk);
957 
958 	mptcp_for_each_subflow(msk, subflow)
959 		if (__mptcp_subflow_error_report(sk, mptcp_subflow_tcp_sock(subflow)))
960 			break;
961 }
962 
963 /* In most cases we will be able to lock the mptcp socket.  If its already
964  * owned, we need to defer to the work queue to avoid ABBA deadlock.
965  */
966 static bool move_skbs_to_msk(struct mptcp_sock *msk, struct sock *ssk)
967 {
968 	struct sock *sk = (struct sock *)msk;
969 	bool moved;
970 
971 	moved = __mptcp_move_skbs_from_subflow(msk, ssk, true);
972 	__mptcp_ofo_queue(msk);
973 	if (unlikely(ssk->sk_err))
974 		__mptcp_subflow_error_report(sk, ssk);
975 
976 	/* If the moves have caught up with the DATA_FIN sequence number
977 	 * it's time to ack the DATA_FIN and change socket state, but
978 	 * this is not a good place to change state. Let the workqueue
979 	 * do it.
980 	 */
981 	if (mptcp_pending_data_fin(sk, NULL))
982 		mptcp_schedule_work(sk);
983 	return moved;
984 }
985 
986 static void mptcp_rcv_rtt_update(struct mptcp_sock *msk,
987 				 struct mptcp_subflow_context *subflow)
988 {
989 	const struct tcp_sock *tp = tcp_sk(subflow->tcp_sock);
990 	u32 rtt_us = tp->rcv_rtt_est.rtt_us;
991 	int id;
992 
993 	/* Update once per subflow per rcvwnd to avoid touching the msk
994 	 * too often.
995 	 */
996 	if (!rtt_us || tp->rcv_rtt_est.seq == subflow->prev_rtt_seq)
997 		return;
998 
999 	subflow->prev_rtt_seq = tp->rcv_rtt_est.seq;
1000 
1001 	/* Pairs with READ_ONCE() in mptcp_rtt_us_est(). */
1002 	id = msk->rcv_rtt_est.next_sample;
1003 	WRITE_ONCE(msk->rcv_rtt_est.samples[id], rtt_us);
1004 	if (++msk->rcv_rtt_est.next_sample == MPTCP_RTT_SAMPLES)
1005 		msk->rcv_rtt_est.next_sample = 0;
1006 
1007 	/* EWMA among the incoming subflows */
1008 	msk->scaling_ratio = ((msk->scaling_ratio << 3) - msk->scaling_ratio +
1009 			     tp->scaling_ratio) >> 3;
1010 }
1011 
1012 void mptcp_data_ready(struct sock *sk, struct sock *ssk)
1013 {
1014 	struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
1015 	struct mptcp_sock *msk = mptcp_sk(sk);
1016 
1017 	/* The peer can send data while we are shutting down this
1018 	 * subflow at subflow destruction time, but we must avoid enqueuing
1019 	 * more data to the msk receive queue
1020 	 */
1021 	if (unlikely(subflow->closing))
1022 		return;
1023 
1024 	mptcp_data_lock(sk);
1025 	mptcp_rcv_rtt_update(msk, subflow);
1026 	if (!sock_owned_by_user(sk)) {
1027 		/* Wake-up the reader only for in-sequence data */
1028 		if (move_skbs_to_msk(msk, ssk) && mptcp_epollin_ready(sk))
1029 			sk->sk_data_ready(sk);
1030 	} else {
1031 		__mptcp_move_skbs_from_subflow(msk, ssk, false);
1032 	}
1033 	mptcp_data_unlock(sk);
1034 }
1035 
1036 static void mptcp_subflow_joined(struct mptcp_sock *msk, struct sock *ssk)
1037 {
1038 	mptcp_subflow_ctx(ssk)->map_seq = READ_ONCE(msk->ack_seq);
1039 	msk->allow_infinite_fallback = false;
1040 	mptcp_event(MPTCP_EVENT_SUB_ESTABLISHED, msk, ssk, GFP_ATOMIC);
1041 }
1042 
1043 static bool __mptcp_finish_join(struct mptcp_sock *msk, struct sock *ssk)
1044 {
1045 	struct sock *sk = (struct sock *)msk;
1046 
1047 	if (sk->sk_state != TCP_ESTABLISHED)
1048 		return false;
1049 
1050 	spin_lock_bh(&msk->fallback_lock);
1051 	if (!msk->allow_subflows) {
1052 		spin_unlock_bh(&msk->fallback_lock);
1053 		return false;
1054 	}
1055 	mptcp_subflow_joined(msk, ssk);
1056 	spin_unlock_bh(&msk->fallback_lock);
1057 
1058 	mptcp_subflow_ctx(ssk)->subflow_id = msk->subflow_id++;
1059 	mptcp_sockopt_sync_locked(msk, ssk);
1060 	mptcp_stop_tout_timer(sk);
1061 	__mptcp_propagate_sndbuf(sk, ssk);
1062 	return true;
1063 }
1064 
1065 static void __mptcp_flush_join_list(struct sock *sk, struct list_head *join_list)
1066 {
1067 	struct mptcp_subflow_context *tmp, *subflow;
1068 	struct mptcp_sock *msk = mptcp_sk(sk);
1069 
1070 	list_for_each_entry_safe(subflow, tmp, join_list, node) {
1071 		struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
1072 		bool slow = lock_sock_fast(ssk);
1073 
1074 		list_move_tail(&subflow->node, &msk->conn_list);
1075 		if (!__mptcp_finish_join(msk, ssk))
1076 			mptcp_subflow_reset(ssk);
1077 		unlock_sock_fast(ssk, slow);
1078 	}
1079 }
1080 
1081 static bool mptcp_rtx_timer_pending(struct sock *sk)
1082 {
1083 	return timer_pending(&sk->mptcp_retransmit_timer);
1084 }
1085 
1086 static void mptcp_reset_rtx_timer(struct sock *sk)
1087 {
1088 	struct mptcp_sock *msk = mptcp_sk(sk);
1089 	unsigned long tout;
1090 
1091 	/* Prevent rescheduling on close and in case of fallback. */
1092 	if (!test_bit(MPTCP_RTX_ENABLED, &msk->flags))
1093 		return;
1094 
1095 	tout = msk->timer_ival;
1096 	sk_reset_timer(sk, &sk->mptcp_retransmit_timer, jiffies + tout);
1097 }
1098 
1099 bool mptcp_schedule_work(struct sock *sk)
1100 {
1101 	if (inet_sk_state_load(sk) == TCP_CLOSE)
1102 		return false;
1103 
1104 	/* Get a reference on this socket, mptcp_worker() will release it.
1105 	 * As mptcp_worker() might complete before us, we can not avoid
1106 	 * a sock_hold()/sock_put() if schedule_work() returns false.
1107 	 */
1108 	sock_hold(sk);
1109 
1110 	if (schedule_work(&mptcp_sk(sk)->work))
1111 		return true;
1112 
1113 	sock_put(sk);
1114 	return false;
1115 }
1116 
1117 static bool mptcp_skb_can_collapse_to(u64 write_seq,
1118 				      const struct sk_buff *skb,
1119 				      const struct mptcp_ext *mpext)
1120 {
1121 	if (!tcp_skb_can_collapse_to(skb))
1122 		return false;
1123 
1124 	/* can collapse only if MPTCP level sequence is in order and this
1125 	 * mapping has not been xmitted yet
1126 	 */
1127 	return mpext && mpext->data_seq + mpext->data_len == write_seq &&
1128 	       !mpext->frozen;
1129 }
1130 
1131 /* we can append data to the given data frag if:
1132  * - there is space available in the backing page_frag
1133  * - the data frag tail matches the current page_frag free offset
1134  * - the data frag end sequence number matches the current write seq
1135  */
1136 static bool mptcp_frag_can_collapse_to(const struct mptcp_sock *msk,
1137 				       const struct page_frag *pfrag,
1138 				       const struct mptcp_data_frag *df)
1139 {
1140 	return df && !df->eor &&
1141 		pfrag->page == df->page &&
1142 		pfrag->size - pfrag->offset > 0 &&
1143 		pfrag->offset == (df->offset + df->data_len) &&
1144 		df->data_seq + df->data_len == msk->write_seq;
1145 }
1146 
1147 static void dfrag_uncharge(struct sock *sk, int len)
1148 {
1149 	sk_mem_uncharge(sk, len);
1150 	sk_wmem_queued_add(sk, -len);
1151 }
1152 
1153 static void dfrag_clear(struct sock *sk, struct mptcp_data_frag *dfrag)
1154 {
1155 	int len = dfrag->data_len + dfrag->overhead;
1156 
1157 	list_del(&dfrag->list);
1158 	dfrag_uncharge(sk, len);
1159 	put_page(dfrag->page);
1160 }
1161 
1162 /* called under both the msk socket lock and the data lock */
1163 static void __mptcp_clean_una(struct sock *sk)
1164 {
1165 	struct mptcp_sock *msk = mptcp_sk(sk);
1166 	struct mptcp_data_frag *dtmp, *dfrag;
1167 	u64 snd_una;
1168 
1169 	snd_una = msk->snd_una;
1170 	list_for_each_entry_safe(dfrag, dtmp, &msk->rtx_queue, list) {
1171 		if (after64(dfrag->data_seq + dfrag->data_len, snd_una))
1172 			break;
1173 
1174 		if (unlikely(dfrag == msk->first_pending)) {
1175 			/* in recovery mode can see ack after the current snd head */
1176 			if (WARN_ON_ONCE(!msk->recovery))
1177 				break;
1178 
1179 			msk->first_pending = mptcp_send_next(sk);
1180 		}
1181 
1182 		dfrag_clear(sk, dfrag);
1183 	}
1184 
1185 	dfrag = mptcp_rtx_head(sk);
1186 	if (dfrag && after64(snd_una, dfrag->data_seq)) {
1187 		u64 delta = snd_una - dfrag->data_seq;
1188 
1189 		/* prevent wrap around in recovery mode */
1190 		if (unlikely(delta > dfrag->already_sent)) {
1191 			if (WARN_ON_ONCE(!msk->recovery))
1192 				goto out;
1193 			if (WARN_ON_ONCE(delta > dfrag->data_len))
1194 				goto out;
1195 			dfrag->already_sent += delta - dfrag->already_sent;
1196 		}
1197 
1198 		dfrag->data_seq += delta;
1199 		dfrag->offset += delta;
1200 		dfrag->data_len -= delta;
1201 		dfrag->already_sent -= delta;
1202 
1203 		dfrag_uncharge(sk, delta);
1204 	}
1205 
1206 	/* all retransmitted data acked, recovery completed */
1207 	if (unlikely(msk->recovery) && after64(msk->snd_una, msk->recovery_snd_nxt))
1208 		msk->recovery = false;
1209 
1210 out:
1211 	if (snd_una == msk->snd_nxt && snd_una == msk->write_seq) {
1212 		if (mptcp_rtx_timer_pending(sk) && !mptcp_data_fin_enabled(msk))
1213 			mptcp_stop_rtx_timer(sk);
1214 	} else {
1215 		mptcp_reset_rtx_timer(sk);
1216 	}
1217 
1218 	if (mptcp_pending_data_fin_ack(sk))
1219 		mptcp_schedule_work(sk);
1220 }
1221 
1222 static void __mptcp_clean_una_wakeup(struct sock *sk)
1223 {
1224 	lockdep_assert_held_once(&sk->sk_lock.slock);
1225 
1226 	__mptcp_clean_una(sk);
1227 	mptcp_write_space(sk);
1228 }
1229 
1230 static void mptcp_enter_memory_pressure(struct sock *sk)
1231 {
1232 	struct mptcp_subflow_context *subflow;
1233 	struct mptcp_sock *msk = mptcp_sk(sk);
1234 	bool first = true;
1235 
1236 	mptcp_for_each_subflow(msk, subflow) {
1237 		struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
1238 
1239 		if (first && !ssk->sk_bypass_prot_mem) {
1240 			tcp_enter_memory_pressure(ssk);
1241 			first = false;
1242 		}
1243 
1244 		sk_stream_moderate_sndbuf(ssk);
1245 	}
1246 	__mptcp_sync_sndbuf(sk);
1247 }
1248 
1249 /* ensure we get enough memory for the frag hdr, beyond some minimal amount of
1250  * data
1251  */
1252 static bool mptcp_page_frag_refill(struct sock *sk, struct page_frag *pfrag)
1253 {
1254 	if (likely(skb_page_frag_refill(32U + sizeof(struct mptcp_data_frag),
1255 					pfrag, sk->sk_allocation)))
1256 		return true;
1257 
1258 	mptcp_enter_memory_pressure(sk);
1259 	return false;
1260 }
1261 
1262 static struct mptcp_data_frag *
1263 mptcp_carve_data_frag(const struct mptcp_sock *msk, struct page_frag *pfrag,
1264 		      int orig_offset)
1265 {
1266 	int offset = ALIGN(orig_offset, sizeof(long));
1267 	struct mptcp_data_frag *dfrag;
1268 
1269 	dfrag = (struct mptcp_data_frag *)(page_to_virt(pfrag->page) + offset);
1270 	dfrag->data_len = 0;
1271 	dfrag->data_seq = msk->write_seq;
1272 	dfrag->overhead = offset - orig_offset + sizeof(struct mptcp_data_frag);
1273 	dfrag->offset = offset + sizeof(struct mptcp_data_frag);
1274 	dfrag->already_sent = 0;
1275 	dfrag->page = pfrag->page;
1276 	dfrag->eor = 0;
1277 
1278 	return dfrag;
1279 }
1280 
1281 struct mptcp_sendmsg_info {
1282 	int mss_now;
1283 	int size_goal;
1284 	u16 limit;
1285 	u16 sent;
1286 	unsigned int flags;
1287 	bool data_lock_held;
1288 };
1289 
1290 static size_t mptcp_check_allowed_size(const struct mptcp_sock *msk,
1291 				       struct sock *ssk, u64 data_seq,
1292 				       size_t avail_size)
1293 {
1294 	u64 window_end = mptcp_wnd_end(msk);
1295 	u64 mptcp_snd_wnd;
1296 
1297 	if (__mptcp_check_fallback(msk))
1298 		return avail_size;
1299 
1300 	mptcp_snd_wnd = window_end - data_seq;
1301 	avail_size = min(mptcp_snd_wnd, avail_size);
1302 
1303 	if (unlikely(tcp_sk(ssk)->snd_wnd < mptcp_snd_wnd)) {
1304 		tcp_sk(ssk)->snd_wnd = min_t(u64, U32_MAX, mptcp_snd_wnd);
1305 		MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_SNDWNDSHARED);
1306 	}
1307 
1308 	return avail_size;
1309 }
1310 
1311 static bool __mptcp_add_ext(struct sk_buff *skb, gfp_t gfp)
1312 {
1313 	struct skb_ext *mpext = __skb_ext_alloc(gfp);
1314 
1315 	if (!mpext)
1316 		return false;
1317 	__skb_ext_set(skb, SKB_EXT_MPTCP, mpext);
1318 	return true;
1319 }
1320 
1321 static struct sk_buff *__mptcp_do_alloc_tx_skb(struct sock *sk, gfp_t gfp)
1322 {
1323 	struct sk_buff *skb;
1324 
1325 	skb = alloc_skb_fclone(MAX_TCP_HEADER, gfp);
1326 	if (likely(skb)) {
1327 		if (likely(__mptcp_add_ext(skb, gfp))) {
1328 			skb_reserve(skb, MAX_TCP_HEADER);
1329 			skb->ip_summed = CHECKSUM_PARTIAL;
1330 			INIT_LIST_HEAD(&skb->tcp_tsorted_anchor);
1331 			return skb;
1332 		}
1333 		__kfree_skb(skb);
1334 	} else {
1335 		mptcp_enter_memory_pressure(sk);
1336 	}
1337 	return NULL;
1338 }
1339 
1340 static struct sk_buff *__mptcp_alloc_tx_skb(struct sock *sk, struct sock *ssk, gfp_t gfp)
1341 {
1342 	struct sk_buff *skb;
1343 
1344 	skb = __mptcp_do_alloc_tx_skb(sk, gfp);
1345 	if (!skb)
1346 		return NULL;
1347 
1348 	if (likely(sk_wmem_schedule(ssk, skb->truesize))) {
1349 		tcp_skb_entail(ssk, skb);
1350 		return skb;
1351 	}
1352 	tcp_skb_tsorted_anchor_cleanup(skb);
1353 	kfree_skb(skb);
1354 	return NULL;
1355 }
1356 
1357 static struct sk_buff *mptcp_alloc_tx_skb(struct sock *sk, struct sock *ssk, bool data_lock_held)
1358 {
1359 	gfp_t gfp = data_lock_held ? GFP_ATOMIC : sk->sk_allocation;
1360 
1361 	return __mptcp_alloc_tx_skb(sk, ssk, gfp);
1362 }
1363 
1364 /* note: this always recompute the csum on the whole skb, even
1365  * if we just appended a single frag. More status info needed
1366  */
1367 static void mptcp_update_data_checksum(struct sk_buff *skb, int added)
1368 {
1369 	struct mptcp_ext *mpext = mptcp_get_ext(skb);
1370 	__wsum csum = ~csum_unfold(mpext->csum);
1371 	int offset = skb->len - added;
1372 
1373 	mpext->csum = csum_fold(csum_block_add(csum, skb_checksum(skb, offset, added, 0), offset));
1374 }
1375 
1376 static void mptcp_update_infinite_map(struct mptcp_sock *msk,
1377 				      struct sock *ssk,
1378 				      struct mptcp_ext *mpext)
1379 {
1380 	if (!mpext)
1381 		return;
1382 
1383 	mpext->infinite_map = 1;
1384 	mpext->data_len = 0;
1385 
1386 	if (!mptcp_try_fallback(ssk, MPTCP_MIB_INFINITEMAPTX)) {
1387 		MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_FALLBACKFAILED);
1388 		mptcp_subflow_reset(ssk);
1389 		return;
1390 	}
1391 
1392 	mptcp_subflow_ctx(ssk)->send_infinite_map = 0;
1393 }
1394 
1395 #define MPTCP_MAX_GSO_SIZE (GSO_LEGACY_MAX_SIZE - (MAX_TCP_HEADER + 1))
1396 
1397 static int mptcp_sendmsg_frag(struct sock *sk, struct sock *ssk,
1398 			      struct mptcp_data_frag *dfrag,
1399 			      struct mptcp_sendmsg_info *info)
1400 {
1401 	u64 data_seq = dfrag->data_seq + info->sent;
1402 	int offset = dfrag->offset + info->sent;
1403 	struct mptcp_sock *msk = mptcp_sk(sk);
1404 	bool zero_window_probe = false;
1405 	struct mptcp_ext *mpext = NULL;
1406 	bool can_coalesce = false;
1407 	bool reuse_skb = true;
1408 	struct sk_buff *skb;
1409 	size_t copy;
1410 	int i;
1411 
1412 	pr_debug("msk=%p ssk=%p sending dfrag at seq=%llu len=%u already sent=%u\n",
1413 		 msk, ssk, dfrag->data_seq, dfrag->data_len, info->sent);
1414 
1415 	if (WARN_ON_ONCE(info->sent > info->limit ||
1416 			 info->limit > dfrag->data_len))
1417 		return 0;
1418 
1419 	if (unlikely(!__tcp_can_send(ssk)))
1420 		return -EAGAIN;
1421 
1422 	/* compute send limit */
1423 	if (unlikely(ssk->sk_gso_max_size > MPTCP_MAX_GSO_SIZE))
1424 		ssk->sk_gso_max_size = MPTCP_MAX_GSO_SIZE;
1425 	info->mss_now = tcp_send_mss(ssk, &info->size_goal, info->flags);
1426 	copy = info->size_goal;
1427 
1428 	skb = tcp_write_queue_tail(ssk);
1429 	if (skb && copy > skb->len) {
1430 		/* Limit the write to the size available in the
1431 		 * current skb, if any, so that we create at most a new skb.
1432 		 * Explicitly tells TCP internals to avoid collapsing on later
1433 		 * queue management operation, to avoid breaking the ext <->
1434 		 * SSN association set here
1435 		 */
1436 		mpext = mptcp_get_ext(skb);
1437 		if (!mptcp_skb_can_collapse_to(data_seq, skb, mpext)) {
1438 			TCP_SKB_CB(skb)->eor = 1;
1439 			tcp_mark_push(tcp_sk(ssk), skb);
1440 			goto alloc_skb;
1441 		}
1442 
1443 		i = skb_shinfo(skb)->nr_frags;
1444 		can_coalesce = skb_can_coalesce(skb, i, dfrag->page, offset);
1445 		if (!can_coalesce && i >= READ_ONCE(net_hotdata.sysctl_max_skb_frags)) {
1446 			tcp_mark_push(tcp_sk(ssk), skb);
1447 			goto alloc_skb;
1448 		}
1449 
1450 		copy -= skb->len;
1451 	} else {
1452 alloc_skb:
1453 		skb = mptcp_alloc_tx_skb(sk, ssk, info->data_lock_held);
1454 		if (!skb)
1455 			return -ENOMEM;
1456 
1457 		i = skb_shinfo(skb)->nr_frags;
1458 		reuse_skb = false;
1459 		mpext = mptcp_get_ext(skb);
1460 	}
1461 
1462 	/* Zero window and all data acked? Probe. */
1463 	copy = mptcp_check_allowed_size(msk, ssk, data_seq, copy);
1464 	if (copy == 0) {
1465 		u64 snd_una = READ_ONCE(msk->snd_una);
1466 
1467 		/* No need for zero probe if there are any data pending
1468 		 * either at the msk or ssk level; skb is the current write
1469 		 * queue tail and can be empty at this point.
1470 		 */
1471 		if (snd_una != msk->snd_nxt || skb->len ||
1472 		    skb != tcp_send_head(ssk)) {
1473 			tcp_remove_empty_skb(ssk);
1474 			return 0;
1475 		}
1476 
1477 		zero_window_probe = true;
1478 		data_seq = snd_una - 1;
1479 		copy = 1;
1480 	}
1481 
1482 	copy = min_t(size_t, copy, info->limit - info->sent);
1483 	if (!sk_wmem_schedule(ssk, copy)) {
1484 		tcp_remove_empty_skb(ssk);
1485 		return -ENOMEM;
1486 	}
1487 
1488 	if (can_coalesce) {
1489 		skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
1490 	} else {
1491 		get_page(dfrag->page);
1492 		skb_fill_page_desc(skb, i, dfrag->page, offset, copy);
1493 	}
1494 
1495 	skb->len += copy;
1496 	skb->data_len += copy;
1497 	skb->truesize += copy;
1498 	sk_wmem_queued_add(ssk, copy);
1499 	sk_mem_charge(ssk, copy);
1500 	WRITE_ONCE(tcp_sk(ssk)->write_seq, tcp_sk(ssk)->write_seq + copy);
1501 	TCP_SKB_CB(skb)->end_seq += copy;
1502 	tcp_skb_pcount_set(skb, 0);
1503 
1504 	/* on skb reuse we just need to update the DSS len */
1505 	if (reuse_skb) {
1506 		TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_PSH;
1507 		mpext->data_len += copy;
1508 		goto out;
1509 	}
1510 
1511 	memset(mpext, 0, sizeof(*mpext));
1512 	mpext->data_seq = data_seq;
1513 	mpext->subflow_seq = mptcp_subflow_ctx(ssk)->rel_write_seq;
1514 	mpext->data_len = copy;
1515 	mpext->use_map = 1;
1516 	mpext->dsn64 = 1;
1517 
1518 	pr_debug("data_seq=%llu subflow_seq=%u data_len=%u dsn64=%d\n",
1519 		 mpext->data_seq, mpext->subflow_seq, mpext->data_len,
1520 		 mpext->dsn64);
1521 
1522 	if (zero_window_probe) {
1523 		MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_WINPROBE);
1524 		mptcp_subflow_ctx(ssk)->rel_write_seq += copy;
1525 		mpext->frozen = 1;
1526 		if (READ_ONCE(msk->csum_enabled))
1527 			mptcp_update_data_checksum(skb, copy);
1528 		tcp_push_pending_frames(ssk);
1529 		return 0;
1530 	}
1531 out:
1532 	if (READ_ONCE(msk->csum_enabled))
1533 		mptcp_update_data_checksum(skb, copy);
1534 	if (mptcp_subflow_ctx(ssk)->send_infinite_map)
1535 		mptcp_update_infinite_map(msk, ssk, mpext);
1536 	trace_mptcp_sendmsg_frag(mpext);
1537 	mptcp_subflow_ctx(ssk)->rel_write_seq += copy;
1538 
1539 	/* if this is the last chunk of a dfrag with MSG_EOR set,
1540 	 * mark the skb to prevent coalescing with subsequent data.
1541 	 */
1542 	if (dfrag->eor && info->sent + copy >= dfrag->data_len)
1543 		TCP_SKB_CB(skb)->eor = 1;
1544 
1545 	return copy;
1546 }
1547 
1548 #define MPTCP_SEND_BURST_SIZE		((1 << 16) - \
1549 					 sizeof(struct tcphdr) - \
1550 					 MAX_TCP_OPTION_SPACE - \
1551 					 sizeof(struct ipv6hdr) - \
1552 					 sizeof(struct frag_hdr))
1553 
1554 struct subflow_send_info {
1555 	struct sock *ssk;
1556 	u64 linger_time;
1557 };
1558 
1559 void mptcp_subflow_set_active(struct mptcp_subflow_context *subflow)
1560 {
1561 	if (!subflow->stale)
1562 		return;
1563 
1564 	subflow->stale = 0;
1565 	MPTCP_INC_STATS(sock_net(mptcp_subflow_tcp_sock(subflow)), MPTCP_MIB_SUBFLOWRECOVER);
1566 }
1567 
1568 bool mptcp_subflow_active(struct mptcp_subflow_context *subflow)
1569 {
1570 	if (unlikely(subflow->stale)) {
1571 		u32 rcv_tstamp = READ_ONCE(tcp_sk(mptcp_subflow_tcp_sock(subflow))->rcv_tstamp);
1572 
1573 		if (subflow->stale_rcv_tstamp == rcv_tstamp)
1574 			return false;
1575 
1576 		mptcp_subflow_set_active(subflow);
1577 	}
1578 	return __mptcp_subflow_active(subflow);
1579 }
1580 
1581 #define SSK_MODE_ACTIVE	0
1582 #define SSK_MODE_BACKUP	1
1583 #define SSK_MODE_MAX	2
1584 
1585 /* implement the mptcp packet scheduler;
1586  * returns the subflow that will transmit the next DSS
1587  * additionally updates the rtx timeout
1588  */
1589 struct sock *mptcp_subflow_get_send(struct mptcp_sock *msk)
1590 {
1591 	struct subflow_send_info send_info[SSK_MODE_MAX];
1592 	struct mptcp_subflow_context *subflow;
1593 	struct sock *sk = (struct sock *)msk;
1594 	u32 pace, burst, wmem;
1595 	int i, nr_active = 0;
1596 	struct sock *ssk;
1597 	u64 linger_time;
1598 	long tout = 0;
1599 
1600 	/* pick the subflow with the lower wmem/wspace ratio */
1601 	for (i = 0; i < SSK_MODE_MAX; ++i) {
1602 		send_info[i].ssk = NULL;
1603 		send_info[i].linger_time = -1;
1604 	}
1605 
1606 	mptcp_for_each_subflow(msk, subflow) {
1607 		bool backup = subflow->backup || subflow->request_bkup;
1608 
1609 		trace_mptcp_subflow_get_send(subflow);
1610 		ssk =  mptcp_subflow_tcp_sock(subflow);
1611 		if (!mptcp_subflow_active(subflow))
1612 			continue;
1613 
1614 		tout = max(tout, mptcp_timeout_from_subflow(subflow));
1615 		nr_active += !backup;
1616 		pace = subflow->avg_pacing_rate;
1617 		if (unlikely(!pace)) {
1618 			/* init pacing rate from socket */
1619 			subflow->avg_pacing_rate = READ_ONCE(ssk->sk_pacing_rate);
1620 			pace = subflow->avg_pacing_rate;
1621 			if (!pace)
1622 				continue;
1623 		}
1624 
1625 		linger_time = div_u64((u64)READ_ONCE(ssk->sk_wmem_queued) << 32, pace);
1626 		if (linger_time < send_info[backup].linger_time) {
1627 			send_info[backup].ssk = ssk;
1628 			send_info[backup].linger_time = linger_time;
1629 		}
1630 	}
1631 	__mptcp_set_timeout(sk, tout);
1632 
1633 	/* pick the best backup if no other subflow is active */
1634 	if (!nr_active)
1635 		send_info[SSK_MODE_ACTIVE].ssk = send_info[SSK_MODE_BACKUP].ssk;
1636 
1637 	/* According to the blest algorithm, to avoid HoL blocking for the
1638 	 * faster flow, we need to:
1639 	 * - estimate the faster flow linger time
1640 	 * - use the above to estimate the amount of byte transferred
1641 	 *   by the faster flow
1642 	 * - check that the amount of queued data is greater than the above,
1643 	 *   otherwise do not use the picked, slower, subflow
1644 	 * We select the subflow with the shorter estimated time to flush
1645 	 * the queued mem, which basically ensure the above. We just need
1646 	 * to check that subflow has a non empty cwin.
1647 	 */
1648 	ssk = send_info[SSK_MODE_ACTIVE].ssk;
1649 	if (!ssk || !sk_stream_memory_free(ssk))
1650 		return NULL;
1651 
1652 	burst = min(MPTCP_SEND_BURST_SIZE, mptcp_wnd_end(msk) - msk->snd_nxt);
1653 	wmem = READ_ONCE(ssk->sk_wmem_queued);
1654 	if (!burst)
1655 		return ssk;
1656 
1657 	subflow = mptcp_subflow_ctx(ssk);
1658 	subflow->avg_pacing_rate = div_u64((u64)subflow->avg_pacing_rate * wmem +
1659 					   READ_ONCE(ssk->sk_pacing_rate) * burst,
1660 					   burst + wmem);
1661 	msk->snd_burst = burst;
1662 	return ssk;
1663 }
1664 
1665 static void mptcp_push_release(struct sock *ssk, struct mptcp_sendmsg_info *info)
1666 {
1667 	tcp_push(ssk, 0, info->mss_now, tcp_sk(ssk)->nonagle, info->size_goal);
1668 	release_sock(ssk);
1669 }
1670 
1671 static void mptcp_update_post_push(struct mptcp_sock *msk,
1672 				   struct mptcp_data_frag *dfrag,
1673 				   u32 sent)
1674 {
1675 	u64 snd_nxt_new = dfrag->data_seq;
1676 
1677 	dfrag->already_sent += sent;
1678 
1679 	msk->snd_burst -= sent;
1680 
1681 	snd_nxt_new += dfrag->already_sent;
1682 
1683 	/* snd_nxt_new can be smaller than snd_nxt in case mptcp
1684 	 * is recovering after a failover. In that event, this re-sends
1685 	 * old segments.
1686 	 *
1687 	 * Thus compute snd_nxt_new candidate based on
1688 	 * the dfrag->data_seq that was sent and the data
1689 	 * that has been handed to the subflow for transmission
1690 	 * and skip update in case it was old dfrag.
1691 	 */
1692 	if (likely(after64(snd_nxt_new, msk->snd_nxt))) {
1693 		msk->bytes_sent += snd_nxt_new - msk->snd_nxt;
1694 		WRITE_ONCE(msk->snd_nxt, snd_nxt_new);
1695 	}
1696 }
1697 
1698 void mptcp_check_and_set_pending(struct sock *sk)
1699 {
1700 	if (mptcp_send_head(sk)) {
1701 		mptcp_data_lock(sk);
1702 		mptcp_sk(sk)->cb_flags |= BIT(MPTCP_PUSH_PENDING);
1703 		mptcp_data_unlock(sk);
1704 	}
1705 }
1706 
1707 static int __subflow_push_pending(struct sock *sk, struct sock *ssk,
1708 				  struct mptcp_sendmsg_info *info)
1709 {
1710 	struct mptcp_sock *msk = mptcp_sk(sk);
1711 	struct mptcp_data_frag *dfrag;
1712 	int len, copied = 0, err = 0;
1713 
1714 	while ((dfrag = mptcp_send_head(sk))) {
1715 		info->sent = dfrag->already_sent;
1716 		info->limit = dfrag->data_len;
1717 		len = dfrag->data_len - dfrag->already_sent;
1718 		while (len > 0) {
1719 			int ret = 0;
1720 
1721 			ret = mptcp_sendmsg_frag(sk, ssk, dfrag, info);
1722 			if (ret <= 0) {
1723 				err = copied ? : ret;
1724 				goto out;
1725 			}
1726 
1727 			info->sent += ret;
1728 			copied += ret;
1729 			len -= ret;
1730 
1731 			mptcp_update_post_push(msk, dfrag, ret);
1732 		}
1733 		msk->first_pending = mptcp_send_next(sk);
1734 
1735 		if (msk->snd_burst <= 0 ||
1736 		    !sk_stream_memory_free(ssk) ||
1737 		    !mptcp_subflow_active(mptcp_subflow_ctx(ssk))) {
1738 			err = copied;
1739 			goto out;
1740 		}
1741 		mptcp_set_timeout(sk);
1742 	}
1743 	err = copied;
1744 
1745 out:
1746 	if (err > 0)
1747 		msk->last_data_sent = tcp_jiffies32;
1748 	return err;
1749 }
1750 
1751 void __mptcp_push_pending(struct sock *sk, unsigned int flags)
1752 {
1753 	struct sock *prev_ssk = NULL, *ssk = NULL;
1754 	struct mptcp_sock *msk = mptcp_sk(sk);
1755 	struct mptcp_sendmsg_info info = {
1756 				.flags = flags,
1757 	};
1758 	bool copied = false;
1759 	int push_count = 1;
1760 
1761 	while (mptcp_send_head(sk) && (push_count > 0)) {
1762 		struct mptcp_subflow_context *subflow;
1763 		int ret = 0;
1764 
1765 		if (mptcp_sched_get_send(msk))
1766 			break;
1767 
1768 		push_count = 0;
1769 
1770 		mptcp_for_each_subflow(msk, subflow) {
1771 			if (READ_ONCE(subflow->scheduled)) {
1772 				mptcp_subflow_set_scheduled(subflow, false);
1773 
1774 				prev_ssk = ssk;
1775 				ssk = mptcp_subflow_tcp_sock(subflow);
1776 				if (ssk != prev_ssk) {
1777 					/* First check. If the ssk has changed since
1778 					 * the last round, release prev_ssk
1779 					 */
1780 					if (prev_ssk)
1781 						mptcp_push_release(prev_ssk, &info);
1782 
1783 					/* Need to lock the new subflow only if different
1784 					 * from the previous one, otherwise we are still
1785 					 * helding the relevant lock
1786 					 */
1787 					lock_sock(ssk);
1788 				}
1789 
1790 				push_count++;
1791 
1792 				ret = __subflow_push_pending(sk, ssk, &info);
1793 				if (ret <= 0) {
1794 					if (ret != -EAGAIN ||
1795 					    (1 << ssk->sk_state) &
1796 					     (TCPF_FIN_WAIT1 | TCPF_FIN_WAIT2 | TCPF_CLOSE))
1797 						push_count--;
1798 					continue;
1799 				}
1800 				copied = true;
1801 			}
1802 		}
1803 	}
1804 
1805 	/* at this point we held the socket lock for the last subflow we used */
1806 	if (ssk)
1807 		mptcp_push_release(ssk, &info);
1808 
1809 	/* Avoid scheduling the rtx timer if no data has been pushed; the timer
1810 	 * will be updated on positive acks by __mptcp_cleanup_una().
1811 	 */
1812 	if (copied) {
1813 		if (!mptcp_rtx_timer_pending(sk))
1814 			mptcp_reset_rtx_timer(sk);
1815 		mptcp_check_send_data_fin(sk);
1816 	}
1817 }
1818 
1819 static void __mptcp_subflow_push_pending(struct sock *sk, struct sock *ssk, bool first)
1820 {
1821 	struct mptcp_sock *msk = mptcp_sk(sk);
1822 	struct mptcp_sendmsg_info info = {
1823 		.data_lock_held = true,
1824 	};
1825 	bool keep_pushing = true;
1826 	struct sock *xmit_ssk;
1827 	int copied = 0;
1828 
1829 	info.flags = 0;
1830 	while (mptcp_send_head(sk) && keep_pushing) {
1831 		struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
1832 		int ret = 0;
1833 
1834 		/* check for a different subflow usage only after
1835 		 * spooling the first chunk of data
1836 		 */
1837 		if (first) {
1838 			mptcp_subflow_set_scheduled(subflow, false);
1839 			ret = __subflow_push_pending(sk, ssk, &info);
1840 			first = false;
1841 			if (ret <= 0)
1842 				break;
1843 			copied += ret;
1844 			continue;
1845 		}
1846 
1847 		if (mptcp_sched_get_send(msk))
1848 			goto out;
1849 
1850 		if (READ_ONCE(subflow->scheduled)) {
1851 			mptcp_subflow_set_scheduled(subflow, false);
1852 			ret = __subflow_push_pending(sk, ssk, &info);
1853 			if (ret <= 0)
1854 				keep_pushing = false;
1855 			copied += ret;
1856 		}
1857 
1858 		mptcp_for_each_subflow(msk, subflow) {
1859 			if (READ_ONCE(subflow->scheduled)) {
1860 				xmit_ssk = mptcp_subflow_tcp_sock(subflow);
1861 				if (xmit_ssk != ssk) {
1862 					mptcp_subflow_delegate(subflow,
1863 							       MPTCP_DELEGATE_SEND);
1864 					keep_pushing = false;
1865 				}
1866 			}
1867 		}
1868 	}
1869 
1870 out:
1871 	/* __mptcp_alloc_tx_skb could have released some wmem and we are
1872 	 * not going to flush it via release_sock()
1873 	 */
1874 	if (copied) {
1875 		tcp_push(ssk, 0, info.mss_now, tcp_sk(ssk)->nonagle,
1876 			 info.size_goal);
1877 		if (!mptcp_rtx_timer_pending(sk))
1878 			mptcp_reset_rtx_timer(sk);
1879 
1880 		if (msk->snd_data_fin_enable &&
1881 		    msk->snd_nxt + 1 == msk->write_seq)
1882 			mptcp_schedule_work(sk);
1883 	}
1884 }
1885 
1886 static int mptcp_disconnect(struct sock *sk, int flags);
1887 
1888 static int mptcp_sendmsg_fastopen(struct sock *sk, struct msghdr *msg,
1889 				  size_t len, int *copied_syn)
1890 {
1891 	unsigned int saved_flags = msg->msg_flags;
1892 	struct mptcp_sock *msk = mptcp_sk(sk);
1893 	struct sock *ssk;
1894 	int ret;
1895 
1896 	/* on flags based fastopen the mptcp is supposed to create the
1897 	 * first subflow right now. Otherwise we are in the defer_connect
1898 	 * path, and the first subflow must be already present.
1899 	 * Since the defer_connect flag is cleared after the first succsful
1900 	 * fastopen attempt, no need to check for additional subflow status.
1901 	 */
1902 	if (msg->msg_flags & MSG_FASTOPEN) {
1903 		ssk = __mptcp_nmpc_sk(msk);
1904 		if (IS_ERR(ssk))
1905 			return PTR_ERR(ssk);
1906 	}
1907 	if (!msk->first)
1908 		return -EINVAL;
1909 
1910 	ssk = msk->first;
1911 
1912 	lock_sock(ssk);
1913 	msg->msg_flags |= MSG_DONTWAIT;
1914 	msk->fastopening = 1;
1915 	ret = tcp_sendmsg_fastopen(ssk, msg, copied_syn, len, NULL);
1916 	msk->fastopening = 0;
1917 	msg->msg_flags = saved_flags;
1918 	release_sock(ssk);
1919 
1920 	/* do the blocking bits of inet_stream_connect outside the ssk socket lock */
1921 	if (ret == -EINPROGRESS && !(msg->msg_flags & MSG_DONTWAIT)) {
1922 		ret = __inet_stream_connect(sk->sk_socket, msg->msg_name,
1923 					    msg->msg_namelen, msg->msg_flags, 1);
1924 
1925 		/* Keep the same behaviour of plain TCP: zero the copied bytes in
1926 		 * case of any error, except timeout or signal
1927 		 */
1928 		if (ret && ret != -EINPROGRESS && ret != -ERESTARTSYS && ret != -EINTR)
1929 			*copied_syn = 0;
1930 	} else if (ret && ret != -EINPROGRESS) {
1931 		/* The disconnect() op called by tcp_sendmsg_fastopen()/
1932 		 * __inet_stream_connect() can fail, due to looking check,
1933 		 * see mptcp_disconnect().
1934 		 * Attempt it again outside the problematic scope.
1935 		 */
1936 		if (!mptcp_disconnect(sk, 0)) {
1937 			sk->sk_disconnects++;
1938 			sk->sk_socket->state = SS_UNCONNECTED;
1939 		}
1940 	}
1941 	inet_clear_bit(DEFER_CONNECT, sk);
1942 
1943 	return ret;
1944 }
1945 
1946 static int do_copy_data_nocache(struct sock *sk, int copy,
1947 				struct iov_iter *from, char *to)
1948 {
1949 	if (sk->sk_route_caps & NETIF_F_NOCACHE_COPY) {
1950 		if (!copy_from_iter_full_nocache(to, copy, from))
1951 			return -EFAULT;
1952 	} else if (!copy_from_iter_full(to, copy, from)) {
1953 		return -EFAULT;
1954 	}
1955 	return 0;
1956 }
1957 
1958 /* open-code sk_stream_memory_free() plus sent limit computation to
1959  * avoid indirect calls in fast-path.
1960  * Called under the msk socket lock, so we can avoid a bunch of ONCE
1961  * annotations.
1962  */
1963 static u32 mptcp_send_limit(const struct sock *sk)
1964 {
1965 	const struct mptcp_sock *msk = mptcp_sk(sk);
1966 	u32 limit, not_sent;
1967 
1968 	if (sk->sk_wmem_queued >= READ_ONCE(sk->sk_sndbuf))
1969 		return 0;
1970 
1971 	limit = mptcp_notsent_lowat(sk);
1972 	if (limit == UINT_MAX)
1973 		return UINT_MAX;
1974 
1975 	not_sent = msk->write_seq - msk->snd_nxt;
1976 	if (not_sent >= limit)
1977 		return 0;
1978 
1979 	return limit - not_sent;
1980 }
1981 
1982 static void mptcp_rps_record_subflows(const struct mptcp_sock *msk)
1983 {
1984 	struct mptcp_subflow_context *subflow;
1985 
1986 	if (!rfs_is_needed())
1987 		return;
1988 
1989 	mptcp_for_each_subflow(msk, subflow) {
1990 		struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
1991 
1992 		sock_rps_record_flow(ssk);
1993 	}
1994 }
1995 
1996 static int mptcp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
1997 {
1998 	struct mptcp_sock *msk = mptcp_sk(sk);
1999 	struct page_frag *pfrag;
2000 	size_t copied = 0;
2001 	int ret = 0;
2002 	long timeo;
2003 
2004 	/* silently ignore everything else */
2005 	msg->msg_flags &= MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL |
2006 			  MSG_FASTOPEN | MSG_EOR;
2007 
2008 	lock_sock(sk);
2009 
2010 	mptcp_rps_record_subflows(msk);
2011 
2012 	if (unlikely(inet_test_bit(DEFER_CONNECT, sk) ||
2013 		     msg->msg_flags & MSG_FASTOPEN)) {
2014 		int copied_syn = 0;
2015 
2016 		ret = mptcp_sendmsg_fastopen(sk, msg, len, &copied_syn);
2017 		copied += copied_syn;
2018 		if (ret == -EINPROGRESS && copied_syn > 0)
2019 			goto out;
2020 		else if (ret)
2021 			goto do_error;
2022 	}
2023 
2024 	timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
2025 
2026 	if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT)) {
2027 		ret = sk_stream_wait_connect(sk, &timeo);
2028 		if (ret)
2029 			goto do_error;
2030 	}
2031 
2032 	ret = -EPIPE;
2033 	if (unlikely(sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN)))
2034 		goto do_error;
2035 
2036 	pfrag = sk_page_frag(sk);
2037 
2038 	while (msg_data_left(msg)) {
2039 		int total_ts, frag_truesize = 0;
2040 		struct mptcp_data_frag *dfrag;
2041 		bool dfrag_collapsed;
2042 		size_t psize, offset;
2043 		u32 copy_limit;
2044 
2045 		/* ensure fitting the notsent_lowat() constraint */
2046 		copy_limit = mptcp_send_limit(sk);
2047 		if (!copy_limit)
2048 			goto wait_for_memory;
2049 
2050 		/* reuse tail pfrag, if possible, or carve a new one from the
2051 		 * page allocator
2052 		 */
2053 		dfrag = mptcp_pending_tail(sk);
2054 		dfrag_collapsed = mptcp_frag_can_collapse_to(msk, pfrag, dfrag);
2055 		if (!dfrag_collapsed) {
2056 			if (!mptcp_page_frag_refill(sk, pfrag))
2057 				goto wait_for_memory;
2058 
2059 			dfrag = mptcp_carve_data_frag(msk, pfrag, pfrag->offset);
2060 			frag_truesize = dfrag->overhead;
2061 		}
2062 
2063 		/* we do not bound vs wspace, to allow a single packet.
2064 		 * memory accounting will prevent execessive memory usage
2065 		 * anyway
2066 		 */
2067 		offset = dfrag->offset + dfrag->data_len;
2068 		psize = pfrag->size - offset;
2069 		psize = min_t(size_t, psize, msg_data_left(msg));
2070 		psize = min_t(size_t, psize, copy_limit);
2071 		total_ts = psize + frag_truesize;
2072 
2073 		if (!sk_wmem_schedule(sk, total_ts))
2074 			goto wait_for_memory;
2075 
2076 		ret = do_copy_data_nocache(sk, psize, &msg->msg_iter,
2077 					   page_address(dfrag->page) + offset);
2078 		if (ret)
2079 			goto do_error;
2080 
2081 		/* data successfully copied into the write queue */
2082 		sk_forward_alloc_add(sk, -total_ts);
2083 		copied += psize;
2084 		dfrag->data_len += psize;
2085 		frag_truesize += psize;
2086 		pfrag->offset += frag_truesize;
2087 		WRITE_ONCE(msk->write_seq, msk->write_seq + psize);
2088 
2089 		/* charge data on mptcp pending queue to the msk socket
2090 		 * Note: we charge such data both to sk and ssk
2091 		 */
2092 		sk_wmem_queued_add(sk, frag_truesize);
2093 		if (!dfrag_collapsed) {
2094 			get_page(dfrag->page);
2095 			list_add_tail(&dfrag->list, &msk->rtx_queue);
2096 			if (!msk->first_pending)
2097 				msk->first_pending = dfrag;
2098 		}
2099 		pr_debug("msk=%p dfrag at seq=%llu len=%u sent=%u new=%d\n", msk,
2100 			 dfrag->data_seq, dfrag->data_len, dfrag->already_sent,
2101 			 !dfrag_collapsed);
2102 
2103 		continue;
2104 
2105 wait_for_memory:
2106 		set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
2107 		__mptcp_push_pending(sk, msg->msg_flags);
2108 		ret = sk_stream_wait_memory(sk, &timeo);
2109 		if (ret)
2110 			goto do_error;
2111 	}
2112 
2113 	if (copied) {
2114 		/* mark the last dfrag with EOR if MSG_EOR was set */
2115 		if (msg->msg_flags & MSG_EOR) {
2116 			struct mptcp_data_frag *dfrag = mptcp_pending_tail(sk);
2117 
2118 			if (dfrag)
2119 				dfrag->eor = 1;
2120 		}
2121 		__mptcp_push_pending(sk, msg->msg_flags);
2122 	}
2123 
2124 out:
2125 	release_sock(sk);
2126 	return copied;
2127 
2128 do_error:
2129 	if (copied)
2130 		goto out;
2131 
2132 	copied = sk_stream_error(sk, msg->msg_flags, ret);
2133 	goto out;
2134 }
2135 
2136 static void mptcp_rcv_space_adjust(struct mptcp_sock *msk, int copied);
2137 
2138 static void mptcp_eat_recv_skb(struct sock *sk, struct sk_buff *skb)
2139 {
2140 	/* avoid the indirect call, we know the destructor is sock_rfree */
2141 	skb->destructor = NULL;
2142 	skb->sk = NULL;
2143 	atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
2144 	sk_mem_uncharge(sk, skb->truesize);
2145 	__skb_unlink(skb, &sk->sk_receive_queue);
2146 	skb_attempt_defer_free(skb);
2147 }
2148 
2149 static int __mptcp_recvmsg_mskq(struct sock *sk, struct msghdr *msg,
2150 				size_t len, int flags, int copied_total,
2151 				struct scm_timestamping_internal *tss,
2152 				int *cmsg_flags, struct sk_buff **last)
2153 {
2154 	struct mptcp_sock *msk = mptcp_sk(sk);
2155 	struct sk_buff *skb, *tmp;
2156 	int total_data_len = 0;
2157 	int copied = 0;
2158 
2159 	skb_queue_walk_safe(&sk->sk_receive_queue, skb, tmp) {
2160 		u32 delta, offset = MPTCP_SKB_CB(skb)->offset;
2161 		u32 data_len = skb->len - offset;
2162 		u32 count;
2163 		int err;
2164 
2165 		if (flags & MSG_PEEK) {
2166 			/* skip already peeked skbs */
2167 			if (total_data_len + data_len <= copied_total) {
2168 				total_data_len += data_len;
2169 				*last = skb;
2170 				continue;
2171 			}
2172 
2173 			/* skip the already peeked data in the current skb */
2174 			delta = copied_total - total_data_len;
2175 			offset += delta;
2176 			data_len -= delta;
2177 		}
2178 
2179 		count = min_t(size_t, len - copied, data_len);
2180 		if (!(flags & MSG_TRUNC)) {
2181 			err = skb_copy_datagram_msg(skb, offset, msg, count);
2182 			if (unlikely(err < 0)) {
2183 				if (!copied)
2184 					return err;
2185 				break;
2186 			}
2187 		}
2188 
2189 		if (MPTCP_SKB_CB(skb)->has_rxtstamp) {
2190 			tcp_update_recv_tstamps(skb, tss);
2191 			*cmsg_flags |= MPTCP_CMSG_TS;
2192 		}
2193 
2194 		copied += count;
2195 
2196 		if (!(flags & MSG_PEEK)) {
2197 			msk->bytes_consumed += count;
2198 			if (count < data_len) {
2199 				MPTCP_SKB_CB(skb)->offset += count;
2200 				MPTCP_SKB_CB(skb)->map_seq += count;
2201 				break;
2202 			}
2203 
2204 			mptcp_eat_recv_skb(sk, skb);
2205 		} else {
2206 			*last = skb;
2207 		}
2208 
2209 		if (copied >= len)
2210 			break;
2211 	}
2212 
2213 	mptcp_rcv_space_adjust(msk, copied);
2214 	return copied;
2215 }
2216 
2217 static void mptcp_rcv_space_init(struct mptcp_sock *msk, const struct sock *ssk)
2218 {
2219 	const struct tcp_sock *tp = tcp_sk(ssk);
2220 
2221 	msk->rcvspace_init = 1;
2222 	msk->rcvq_space.copied = 0;
2223 
2224 	/* initial rcv_space offering made to peer */
2225 	msk->rcvq_space.space = min_t(u32, tp->rcv_wnd,
2226 				      TCP_INIT_CWND * tp->advmss);
2227 	if (msk->rcvq_space.space == 0)
2228 		msk->rcvq_space.space = TCP_INIT_CWND * TCP_MSS_DEFAULT;
2229 }
2230 
2231 /* receive buffer autotuning.  See tcp_rcv_space_adjust for more information.
2232  *
2233  * Only difference: Use lowest rtt estimate of the subflows in use, see
2234  * mptcp_rcv_rtt_update() and mptcp_rtt_us_est().
2235  */
2236 static void mptcp_rcv_space_adjust(struct mptcp_sock *msk, int copied)
2237 {
2238 	struct mptcp_subflow_context *subflow;
2239 	struct sock *sk = (struct sock *)msk;
2240 	u32 time, rtt_us;
2241 	u64 mstamp;
2242 
2243 	msk_owned_by_me(msk);
2244 
2245 	if (copied <= 0)
2246 		return;
2247 
2248 	if (!msk->rcvspace_init)
2249 		mptcp_rcv_space_init(msk, msk->first);
2250 
2251 	msk->rcvq_space.copied += copied;
2252 
2253 	mstamp = mptcp_stamp();
2254 	time = tcp_stamp_us_delta(mstamp, READ_ONCE(msk->rcvq_space.time));
2255 
2256 	rtt_us = mptcp_rtt_us_est(msk);
2257 	if (rtt_us == U32_MAX || time < (rtt_us >> 3))
2258 		return;
2259 
2260 	copied = msk->rcvq_space.copied;
2261 	copied -= mptcp_inq_hint(sk);
2262 	if (copied <= msk->rcvq_space.space)
2263 		goto new_measure;
2264 
2265 	trace_mptcp_rcvbuf_grow(sk, time);
2266 	if (mptcp_rcvbuf_grow(sk, copied)) {
2267 		/* Make subflows follow along.  If we do not do this, we
2268 		 * get drops at subflow level if skbs can't be moved to
2269 		 * the mptcp rx queue fast enough (announced rcv_win can
2270 		 * exceed ssk->sk_rcvbuf).
2271 		 */
2272 		mptcp_for_each_subflow(msk, subflow) {
2273 			struct sock *ssk;
2274 			bool slow;
2275 
2276 			ssk = mptcp_subflow_tcp_sock(subflow);
2277 			slow = lock_sock_fast(ssk);
2278 			/* subflows can be added before tcp_init_transfer() */
2279 			if (tcp_sk(ssk)->rcvq_space.space)
2280 				tcp_rcvbuf_grow(ssk, copied);
2281 			unlock_sock_fast(ssk, slow);
2282 		}
2283 	}
2284 
2285 new_measure:
2286 	msk->rcvq_space.copied = 0;
2287 	msk->rcvq_space.time = mstamp;
2288 }
2289 
2290 static bool __mptcp_move_skbs(struct sock *sk, struct list_head *skbs, u32 *delta)
2291 {
2292 	struct sk_buff *skb = list_first_entry(skbs, struct sk_buff, list);
2293 	struct mptcp_sock *msk = mptcp_sk(sk);
2294 	bool moved = false;
2295 
2296 	while (1) {
2297 		prefetch(skb->next);
2298 		list_del(&skb->list);
2299 		*delta += skb->truesize;
2300 
2301 		moved |= __mptcp_move_skb(sk, skb);
2302 		if (list_empty(skbs))
2303 			break;
2304 
2305 		skb = list_first_entry(skbs, struct sk_buff, list);
2306 	}
2307 
2308 	__mptcp_ofo_queue(msk);
2309 	if (moved)
2310 		mptcp_check_data_fin((struct sock *)msk);
2311 	return moved;
2312 }
2313 
2314 static bool mptcp_can_spool_backlog(struct sock *sk, struct list_head *skbs)
2315 {
2316 	struct mptcp_sock *msk = mptcp_sk(sk);
2317 
2318 	/* After CG initialization, subflows should never add skb before
2319 	 * gaining the CG themself.
2320 	 */
2321 	DEBUG_NET_WARN_ON_ONCE(msk->backlog_unaccounted && sk->sk_socket &&
2322 			       mem_cgroup_from_sk(sk));
2323 
2324 	if (list_empty(&msk->backlog_list))
2325 		return false;
2326 
2327 	INIT_LIST_HEAD(skbs);
2328 	list_splice_init(&msk->backlog_list, skbs);
2329 	return true;
2330 }
2331 
2332 static bool mptcp_move_skbs(struct sock *sk)
2333 {
2334 	struct mptcp_sock *msk = mptcp_sk(sk);
2335 	struct list_head skbs;
2336 	bool enqueued = false;
2337 	u32 moved = 0;
2338 
2339 	mptcp_data_lock(sk);
2340 	while (mptcp_can_spool_backlog(sk, &skbs)) {
2341 		mptcp_data_unlock(sk);
2342 		enqueued |= __mptcp_move_skbs(sk, &skbs, &moved);
2343 
2344 		mptcp_data_lock(sk);
2345 	}
2346 	WRITE_ONCE(msk->backlog_len, msk->backlog_len - moved);
2347 	mptcp_data_unlock(sk);
2348 
2349 	if (enqueued && mptcp_epollin_ready(sk))
2350 		sk->sk_data_ready(sk);
2351 
2352 	return enqueued;
2353 }
2354 
2355 static unsigned int mptcp_inq_hint(const struct sock *sk)
2356 {
2357 	const struct mptcp_sock *msk = mptcp_sk(sk);
2358 	const struct sk_buff *skb;
2359 
2360 	skb = skb_peek(&sk->sk_receive_queue);
2361 	if (skb) {
2362 		u64 hint_val = READ_ONCE(msk->ack_seq) - MPTCP_SKB_CB(skb)->map_seq;
2363 
2364 		if (hint_val >= INT_MAX)
2365 			return INT_MAX;
2366 
2367 		return (unsigned int)hint_val;
2368 	}
2369 
2370 	if (sk->sk_state == TCP_CLOSE || (sk->sk_shutdown & RCV_SHUTDOWN))
2371 		return 1;
2372 
2373 	return 0;
2374 }
2375 
2376 static int mptcp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2377 			 int flags)
2378 {
2379 	struct mptcp_sock *msk = mptcp_sk(sk);
2380 	struct scm_timestamping_internal tss;
2381 	int copied = 0, cmsg_flags = 0;
2382 	int target;
2383 	long timeo;
2384 
2385 	/* MSG_ERRQUEUE is really a no-op till we support IP_RECVERR */
2386 	if (unlikely(flags & MSG_ERRQUEUE))
2387 		return inet_recv_error(sk, msg, len);
2388 
2389 	lock_sock(sk);
2390 	if (unlikely(sk->sk_state == TCP_LISTEN)) {
2391 		copied = -ENOTCONN;
2392 		goto out_err;
2393 	}
2394 
2395 	mptcp_rps_record_subflows(msk);
2396 
2397 	timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
2398 
2399 	len = min_t(size_t, len, INT_MAX);
2400 	target = sock_rcvlowat(sk, flags & MSG_WAITALL, len);
2401 
2402 	if (unlikely(msk->recvmsg_inq))
2403 		cmsg_flags = MPTCP_CMSG_INQ;
2404 
2405 	while (copied < len) {
2406 		struct sk_buff *last = NULL;
2407 		int err, bytes_read;
2408 
2409 		bytes_read = __mptcp_recvmsg_mskq(sk, msg, len - copied, flags,
2410 						  copied, &tss, &cmsg_flags,
2411 						  &last);
2412 		if (unlikely(bytes_read < 0)) {
2413 			if (!copied)
2414 				copied = bytes_read;
2415 			goto out_err;
2416 		}
2417 
2418 		copied += bytes_read;
2419 
2420 		if (!list_empty(&msk->backlog_list) && mptcp_move_skbs(sk))
2421 			continue;
2422 
2423 		/* only the MPTCP socket status is relevant here. The exit
2424 		 * conditions mirror closely tcp_recvmsg()
2425 		 */
2426 		if (copied >= target)
2427 			break;
2428 
2429 		if (copied) {
2430 			if (tcp_recv_should_stop(sk) ||
2431 			    !timeo)
2432 				break;
2433 		} else {
2434 			if (sk->sk_err) {
2435 				copied = sock_error(sk);
2436 				break;
2437 			}
2438 
2439 			if (sk->sk_shutdown & RCV_SHUTDOWN)
2440 				break;
2441 
2442 			if (sk->sk_state == TCP_CLOSE) {
2443 				copied = -ENOTCONN;
2444 				break;
2445 			}
2446 
2447 			if (!timeo) {
2448 				copied = -EAGAIN;
2449 				break;
2450 			}
2451 
2452 			if (signal_pending(current)) {
2453 				copied = sock_intr_errno(timeo);
2454 				break;
2455 			}
2456 		}
2457 
2458 		pr_debug("block timeout %ld\n", timeo);
2459 		mptcp_cleanup_rbuf(msk, copied);
2460 		err = sk_wait_data(sk, &timeo, last);
2461 		if (err < 0) {
2462 			copied = copied ? : err;
2463 			goto out_err;
2464 		}
2465 	}
2466 
2467 	mptcp_cleanup_rbuf(msk, copied);
2468 
2469 out_err:
2470 	if (cmsg_flags && copied >= 0) {
2471 		if (cmsg_flags & MPTCP_CMSG_TS)
2472 			tcp_recv_timestamp(msg, sk, &tss);
2473 
2474 		if (cmsg_flags & MPTCP_CMSG_INQ) {
2475 			unsigned int inq = mptcp_inq_hint(sk);
2476 
2477 			put_cmsg(msg, SOL_TCP, TCP_CM_INQ, sizeof(inq), &inq);
2478 		}
2479 	}
2480 
2481 	pr_debug("msk=%p rx queue empty=%d copied=%d\n",
2482 		 msk, skb_queue_empty(&sk->sk_receive_queue), copied);
2483 
2484 	release_sock(sk);
2485 	return copied;
2486 }
2487 
2488 static void mptcp_retransmit_timer(struct timer_list *t)
2489 {
2490 	struct sock *sk = timer_container_of(sk, t, mptcp_retransmit_timer);
2491 	struct mptcp_sock *msk = mptcp_sk(sk);
2492 
2493 	bh_lock_sock(sk);
2494 	if (!sock_owned_by_user(sk)) {
2495 		/* we need a process context to retransmit */
2496 		if (!test_and_set_bit(MPTCP_WORK_RTX, &msk->flags))
2497 			mptcp_schedule_work(sk);
2498 	} else {
2499 		/* delegate our work to tcp_release_cb() */
2500 		__set_bit(MPTCP_RETRANSMIT, &msk->cb_flags);
2501 	}
2502 	bh_unlock_sock(sk);
2503 	sock_put(sk);
2504 }
2505 
2506 static void mptcp_tout_timer(struct timer_list *t)
2507 {
2508 	struct inet_connection_sock *icsk =
2509 		timer_container_of(icsk, t, mptcp_tout_timer);
2510 	struct sock *sk = &icsk->icsk_inet.sk;
2511 
2512 	mptcp_schedule_work(sk);
2513 	sock_put(sk);
2514 }
2515 
2516 /* Find an idle subflow.  Return NULL if there is unacked data at tcp
2517  * level.
2518  *
2519  * A backup subflow is returned only if that is the only kind available.
2520  */
2521 struct sock *mptcp_subflow_get_retrans(struct mptcp_sock *msk)
2522 {
2523 	struct sock *backup = NULL, *pick = NULL;
2524 	struct mptcp_subflow_context *subflow;
2525 	int min_stale_count = INT_MAX;
2526 
2527 	mptcp_for_each_subflow(msk, subflow) {
2528 		struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
2529 
2530 		if (!__mptcp_subflow_active(subflow))
2531 			continue;
2532 
2533 		/* still data outstanding at TCP level? skip this */
2534 		if (!tcp_rtx_and_write_queues_empty(ssk)) {
2535 			min_stale_count = min_t(int, min_stale_count, subflow->stale_count);
2536 			continue;
2537 		}
2538 
2539 		if (subflow->backup || subflow->request_bkup) {
2540 			if (!backup)
2541 				backup = ssk;
2542 			continue;
2543 		}
2544 
2545 		if (!pick)
2546 			pick = ssk;
2547 	}
2548 
2549 	if (pick)
2550 		return pick;
2551 
2552 	/* use backup only if there are no progresses anywhere */
2553 	return min_stale_count > 1 ? backup : NULL;
2554 }
2555 
2556 bool __mptcp_retransmit_pending_data(struct sock *sk)
2557 {
2558 	struct mptcp_data_frag *cur, *rtx_head;
2559 	struct mptcp_sock *msk = mptcp_sk(sk);
2560 
2561 	if (__mptcp_check_fallback(msk))
2562 		return false;
2563 
2564 	/* the closing socket has some data untransmitted and/or unacked:
2565 	 * some data in the mptcp rtx queue has not really xmitted yet.
2566 	 * keep it simple and re-inject the whole mptcp level rtx queue
2567 	 */
2568 	mptcp_data_lock(sk);
2569 	__mptcp_clean_una_wakeup(sk);
2570 	rtx_head = mptcp_rtx_head(sk);
2571 	if (!rtx_head) {
2572 		mptcp_data_unlock(sk);
2573 		return false;
2574 	}
2575 
2576 	msk->recovery_snd_nxt = msk->snd_nxt;
2577 	msk->recovery = true;
2578 	mptcp_data_unlock(sk);
2579 
2580 	msk->first_pending = rtx_head;
2581 	msk->snd_burst = 0;
2582 
2583 	/* be sure to clear the "sent status" on all re-injected fragments */
2584 	list_for_each_entry(cur, &msk->rtx_queue, list) {
2585 		if (!cur->already_sent)
2586 			break;
2587 		cur->already_sent = 0;
2588 	}
2589 
2590 	return true;
2591 }
2592 
2593 /* flags for __mptcp_close_ssk() */
2594 #define MPTCP_CF_PUSH		BIT(1)
2595 
2596 /* be sure to send a reset only if the caller asked for it, also
2597  * clean completely the subflow status when the subflow reaches
2598  * TCP_CLOSE state
2599  */
2600 static void __mptcp_subflow_disconnect(struct sock *ssk,
2601 				       struct mptcp_subflow_context *subflow,
2602 				       bool fastclosing)
2603 {
2604 	if (((1 << ssk->sk_state) & (TCPF_CLOSE | TCPF_LISTEN)) ||
2605 	    fastclosing) {
2606 		/* The MPTCP code never wait on the subflow sockets, TCP-level
2607 		 * disconnect should never fail
2608 		 */
2609 		WARN_ON_ONCE(tcp_disconnect(ssk, 0));
2610 		mptcp_subflow_ctx_reset(subflow);
2611 	} else {
2612 		tcp_shutdown(ssk, SEND_SHUTDOWN);
2613 	}
2614 }
2615 
2616 static void mptcp_cleanup_ssk_backlog(struct sock *sk, struct sock *ssk)
2617 {
2618 	struct mptcp_sock *msk = mptcp_sk(sk);
2619 	struct sk_buff *skb;
2620 
2621 	mptcp_data_lock(sk);
2622 	list_for_each_entry(skb, &msk->backlog_list, list) {
2623 		if (skb->sk != ssk)
2624 			continue;
2625 
2626 		atomic_sub(skb->truesize, &skb->sk->sk_rmem_alloc);
2627 		skb->sk = NULL;
2628 	}
2629 	mptcp_data_unlock(sk);
2630 }
2631 
2632 /* subflow sockets can be either outgoing (connect) or incoming
2633  * (accept).
2634  *
2635  * Outgoing subflows use in-kernel sockets.
2636  * Incoming subflows do not have their own 'struct socket' allocated,
2637  * so we need to use tcp_close() after detaching them from the mptcp
2638  * parent socket.
2639  */
2640 static void __mptcp_close_ssk(struct sock *sk, struct sock *ssk,
2641 			      struct mptcp_subflow_context *subflow,
2642 			      unsigned int flags)
2643 {
2644 	struct mptcp_sock *msk = mptcp_sk(sk);
2645 	bool dispose_it, need_push = false;
2646 	int fwd_remaining;
2647 
2648 	/* Do not pass RX data to the msk, even if the subflow socket is not
2649 	 * going to be freed (i.e. even for the first subflow on graceful
2650 	 * subflow close.
2651 	 */
2652 	lock_sock_nested(ssk, SINGLE_DEPTH_NESTING);
2653 	subflow->closing = 1;
2654 
2655 	if (flags & MPTCP_CF_PUSH)
2656 		mptcp_cleanup_ssk_backlog(sk, ssk);
2657 
2658 	/* Borrow the fwd allocated page left-over; fwd memory for the subflow
2659 	 * could be negative at this point, but will be reach zero soon - when
2660 	 * the data allocated using such fragment will be freed.
2661 	 */
2662 	if (subflow->lent_mem_frag) {
2663 		fwd_remaining = PAGE_SIZE - subflow->lent_mem_frag;
2664 		sk_forward_alloc_add(sk, fwd_remaining);
2665 		sk_forward_alloc_add(ssk, -fwd_remaining);
2666 		subflow->lent_mem_frag = 0;
2667 	}
2668 
2669 	/* If the first subflow moved to a close state before accept, e.g. due
2670 	 * to an incoming reset or listener shutdown, the subflow socket is
2671 	 * already deleted by inet_child_forget() and the mptcp socket can't
2672 	 * survive too.
2673 	 */
2674 	if (msk->in_accept_queue && msk->first == ssk &&
2675 	    (sock_flag(sk, SOCK_DEAD) || sock_flag(ssk, SOCK_DEAD))) {
2676 		/* ensure later check in mptcp_worker() will dispose the msk */
2677 		sock_set_flag(sk, SOCK_DEAD);
2678 		mptcp_set_close_tout(sk, tcp_jiffies32 - (mptcp_close_timeout(sk) + 1));
2679 		mptcp_subflow_drop_ctx(ssk);
2680 		goto out_release;
2681 	}
2682 
2683 	dispose_it = msk->free_first || ssk != msk->first;
2684 	if (dispose_it)
2685 		list_del(&subflow->node);
2686 
2687 	if (subflow->send_fastclose && ssk->sk_state != TCP_CLOSE)
2688 		tcp_set_state(ssk, TCP_CLOSE);
2689 
2690 	need_push = (flags & MPTCP_CF_PUSH) && __mptcp_retransmit_pending_data(sk);
2691 	if (!dispose_it) {
2692 		__mptcp_subflow_disconnect(ssk, subflow, msk->fastclosing);
2693 		release_sock(ssk);
2694 
2695 		goto out;
2696 	}
2697 
2698 	subflow->disposable = 1;
2699 
2700 	/* if ssk hit tcp_done(), tcp_cleanup_ulp() cleared the related ops
2701 	 * the ssk has been already destroyed, we just need to release the
2702 	 * reference owned by msk;
2703 	 */
2704 	if (!inet_csk(ssk)->icsk_ulp_ops) {
2705 		WARN_ON_ONCE(!sock_flag(ssk, SOCK_DEAD));
2706 		kfree_rcu(subflow, rcu);
2707 	} else {
2708 		/* otherwise tcp will dispose of the ssk and subflow ctx */
2709 		__tcp_close(ssk, 0);
2710 
2711 		/* close acquired an extra ref */
2712 		__sock_put(ssk);
2713 	}
2714 
2715 out_release:
2716 	__mptcp_subflow_error_report(sk, ssk);
2717 	release_sock(ssk);
2718 
2719 	sock_put(ssk);
2720 
2721 	if (ssk == msk->first)
2722 		WRITE_ONCE(msk->first, NULL);
2723 
2724 out:
2725 	__mptcp_sync_sndbuf(sk);
2726 	if (need_push)
2727 		__mptcp_push_pending(sk, 0);
2728 
2729 	/* Catch every 'all subflows closed' scenario, including peers silently
2730 	 * closing them, e.g. due to timeout.
2731 	 * For established sockets, allow an additional timeout before closing,
2732 	 * as the protocol can still create more subflows.
2733 	 */
2734 	if (list_is_singular(&msk->conn_list) && msk->first &&
2735 	    inet_sk_state_load(msk->first) == TCP_CLOSE) {
2736 		if (sk->sk_state != TCP_ESTABLISHED ||
2737 		    msk->in_accept_queue || sock_flag(sk, SOCK_DEAD)) {
2738 			mptcp_set_state(sk, TCP_CLOSE);
2739 			mptcp_close_wake_up(sk);
2740 		} else {
2741 			mptcp_start_tout_timer(sk);
2742 		}
2743 	}
2744 }
2745 
2746 void mptcp_close_ssk(struct sock *sk, struct sock *ssk,
2747 		     struct mptcp_subflow_context *subflow)
2748 {
2749 	/* The first subflow can already be closed or disconnected */
2750 	if (subflow->close_event_done || READ_ONCE(subflow->local_id) < 0)
2751 		return;
2752 
2753 	subflow->close_event_done = true;
2754 
2755 	if (sk->sk_state == TCP_ESTABLISHED)
2756 		mptcp_event(MPTCP_EVENT_SUB_CLOSED, mptcp_sk(sk), ssk, GFP_KERNEL);
2757 
2758 	/* subflow aborted before reaching the fully_established status
2759 	 * attempt the creation of the next subflow
2760 	 */
2761 	mptcp_pm_subflow_check_next(mptcp_sk(sk), subflow);
2762 
2763 	__mptcp_close_ssk(sk, ssk, subflow, MPTCP_CF_PUSH);
2764 }
2765 
2766 static unsigned int mptcp_sync_mss(struct sock *sk, u32 pmtu)
2767 {
2768 	return 0;
2769 }
2770 
2771 static void __mptcp_close_subflow(struct sock *sk)
2772 {
2773 	struct mptcp_subflow_context *subflow, *tmp;
2774 	struct mptcp_sock *msk = mptcp_sk(sk);
2775 
2776 	might_sleep();
2777 
2778 	mptcp_for_each_subflow_safe(msk, subflow, tmp) {
2779 		struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
2780 		int ssk_state = inet_sk_state_load(ssk);
2781 
2782 		if (ssk_state != TCP_CLOSE &&
2783 		    (ssk_state != TCP_CLOSE_WAIT ||
2784 		     inet_sk_state_load(sk) != TCP_ESTABLISHED ||
2785 		     __mptcp_check_fallback(msk)))
2786 			continue;
2787 
2788 		/* 'subflow_data_ready' will re-sched once rx queue is empty */
2789 		if (!skb_queue_empty_lockless(&ssk->sk_receive_queue))
2790 			continue;
2791 
2792 		mptcp_close_ssk(sk, ssk, subflow);
2793 	}
2794 
2795 }
2796 
2797 static bool mptcp_close_tout_expired(const struct sock *sk)
2798 {
2799 	if (!inet_csk(sk)->icsk_mtup.probe_timestamp ||
2800 	    sk->sk_state == TCP_CLOSE)
2801 		return false;
2802 
2803 	return time_after32(tcp_jiffies32,
2804 		  inet_csk(sk)->icsk_mtup.probe_timestamp + mptcp_close_timeout(sk));
2805 }
2806 
2807 static void mptcp_check_fastclose(struct mptcp_sock *msk)
2808 {
2809 	struct mptcp_subflow_context *subflow, *tmp;
2810 	struct sock *sk = (struct sock *)msk;
2811 
2812 	if (likely(!READ_ONCE(msk->rcv_fastclose)))
2813 		return;
2814 
2815 	mptcp_token_destroy(msk);
2816 
2817 	mptcp_for_each_subflow_safe(msk, subflow, tmp) {
2818 		struct sock *tcp_sk = mptcp_subflow_tcp_sock(subflow);
2819 		bool slow;
2820 
2821 		slow = lock_sock_fast(tcp_sk);
2822 		if (tcp_sk->sk_state != TCP_CLOSE) {
2823 			mptcp_send_active_reset_reason(tcp_sk);
2824 			tcp_set_state(tcp_sk, TCP_CLOSE);
2825 		}
2826 		unlock_sock_fast(tcp_sk, slow);
2827 	}
2828 
2829 	/* Mirror the tcp_reset() error propagation */
2830 	switch (sk->sk_state) {
2831 	case TCP_SYN_SENT:
2832 		WRITE_ONCE(sk->sk_err, ECONNREFUSED);
2833 		break;
2834 	case TCP_CLOSE_WAIT:
2835 		WRITE_ONCE(sk->sk_err, EPIPE);
2836 		break;
2837 	case TCP_CLOSE:
2838 		return;
2839 	default:
2840 		WRITE_ONCE(sk->sk_err, ECONNRESET);
2841 	}
2842 
2843 	mptcp_set_state(sk, TCP_CLOSE);
2844 	WRITE_ONCE(sk->sk_shutdown, SHUTDOWN_MASK);
2845 	smp_mb__before_atomic(); /* SHUTDOWN must be visible first */
2846 	set_bit(MPTCP_WORK_CLOSE_SUBFLOW, &msk->flags);
2847 
2848 	/* the calling mptcp_worker will properly destroy the socket */
2849 	if (sock_flag(sk, SOCK_DEAD))
2850 		return;
2851 
2852 	sk->sk_state_change(sk);
2853 	sk_error_report(sk);
2854 }
2855 
2856 /*
2857  * Retransmit the specified data fragment on all the selected subflows,
2858  * starting from the specified sequence
2859  */
2860 static int __mptcp_push_retrans(struct sock *sk, struct mptcp_data_frag *dfrag,
2861 				u64 sent_seq)
2862 {
2863 	struct mptcp_sendmsg_info info = { .data_lock_held = true, };
2864 	struct mptcp_sock *msk = mptcp_sk(sk);
2865 	struct mptcp_subflow_context *subflow;
2866 	struct sock *ssk;
2867 	int ret, len = 0;
2868 
2869 	mptcp_for_each_subflow(msk, subflow) {
2870 		if (READ_ONCE(subflow->scheduled)) {
2871 			u16 offset = sent_seq - dfrag->data_seq;
2872 			u16 copied = 0;
2873 
2874 			mptcp_subflow_set_scheduled(subflow, false);
2875 
2876 			ssk = mptcp_subflow_tcp_sock(subflow);
2877 
2878 			lock_sock(ssk);
2879 
2880 			/* limit retransmission to the bytes already sent on some subflows */
2881 			info.sent = offset;
2882 			info.limit = READ_ONCE(msk->csum_enabled) ? dfrag->data_len :
2883 								    dfrag->already_sent;
2884 
2885 			/*
2886 			 * make the whole retrans decision, xmit, disallow
2887 			 * fallback atomic, note that we can't retrans even
2888 			 * when an infinite fallback is in progress, i.e. new
2889 			 * subflows are disallowed.
2890 			 */
2891 			spin_lock_bh(&msk->fallback_lock);
2892 			if (__mptcp_check_fallback(msk) ||
2893 			    !msk->allow_subflows) {
2894 				spin_unlock_bh(&msk->fallback_lock);
2895 				release_sock(ssk);
2896 				return -1;
2897 			}
2898 
2899 			while (info.sent < info.limit) {
2900 				ret = mptcp_sendmsg_frag(sk, ssk, dfrag, &info);
2901 				if (ret <= 0)
2902 					break;
2903 
2904 				MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_RETRANSSEGS);
2905 				copied += ret;
2906 				info.sent += ret;
2907 			}
2908 			if (copied) {
2909 				len = max(copied, len);
2910 				tcp_push(ssk, 0, info.mss_now, tcp_sk(ssk)->nonagle,
2911 					 info.size_goal);
2912 				msk->allow_infinite_fallback = false;
2913 			}
2914 			spin_unlock_bh(&msk->fallback_lock);
2915 
2916 			release_sock(ssk);
2917 		}
2918 	}
2919 	return len;
2920 }
2921 
2922 static void __mptcp_retrans(struct sock *sk)
2923 {
2924 	struct mptcp_sock *msk = mptcp_sk(sk);
2925 	struct mptcp_subflow_context *subflow;
2926 	struct mptcp_data_frag *dfrag;
2927 	u64 retrans_seq, sent_seq;
2928 	bool need_retrans;
2929 	int err, len;
2930 
2931 	mptcp_pm_chk_stale(msk);
2932 
2933 	/* Get an updated and consistent rtx queue status. */
2934 	mptcp_data_lock(sk);
2935 	__mptcp_clean_una_wakeup(sk);
2936 	retrans_seq = msk->snd_una;
2937 	dfrag = mptcp_rtx_head(sk);
2938 	need_retrans = !!dfrag;
2939 	mptcp_data_unlock(sk);
2940 
2941 	for (;;) {
2942 		bool already_acked;
2943 
2944 		err = mptcp_sched_get_retrans(msk);
2945 		if (err)
2946 			break;
2947 
2948 		/* `already_sent` can be 0 for `dfrag` belonging to the RTX
2949 		 *  queue due to __mptcp_retransmit_pending_data().
2950 		 */
2951 		if (!dfrag || !dfrag->already_sent)
2952 			break;
2953 
2954 		/* Can fail only in case of fallback. */
2955 		len = __mptcp_push_retrans(sk, dfrag, retrans_seq);
2956 		if (len < 0)
2957 			goto clear_scheduled;
2958 
2959 		retrans_seq += len;
2960 		msk->bytes_retrans += len;
2961 		dfrag->already_sent = max_t(u16, dfrag->already_sent,
2962 					    retrans_seq - dfrag->data_seq);
2963 
2964 		/* With csum enabled, retransmission can send new data. */
2965 		sent_seq = dfrag->already_sent + dfrag->data_seq;
2966 		if (after64(sent_seq, msk->snd_nxt))
2967 			WRITE_ONCE(msk->snd_nxt, sent_seq);
2968 
2969 		/* Attempt the next fragment only if the current one is
2970 		 * completely retransmitted.
2971 		 */
2972 		if (before64(retrans_seq, dfrag->data_seq + dfrag->data_len))
2973 			break;
2974 
2975 		dfrag = list_is_last(&dfrag->list, &msk->rtx_queue) ?
2976 				NULL : list_next_entry(dfrag, list);
2977 		if (!dfrag)
2978 			break;
2979 
2980 		/* Incoming acks can move snd_una after the current dfrag
2981 		 * across loop iterations, if so start again from RTX head.
2982 		 */
2983 		mptcp_data_lock(sk);
2984 		already_acked = !before64(msk->snd_una, dfrag->data_seq +
2985 					  dfrag->already_sent);
2986 		if (already_acked) {
2987 			__mptcp_clean_una_wakeup(sk);
2988 			retrans_seq = msk->snd_una;
2989 			dfrag = mptcp_rtx_head(sk);
2990 			need_retrans = !!dfrag;
2991 		} else if (after64(msk->snd_una, retrans_seq)) {
2992 			retrans_seq = msk->snd_una;
2993 		}
2994 		mptcp_data_unlock(sk);
2995 	}
2996 
2997 	/* Attempt data-fin retransmission only when the RTX queue is empty. */
2998 	if (!need_retrans) {
2999 		if (mptcp_data_fin_enabled(msk)) {
3000 			struct inet_connection_sock *icsk = inet_csk(sk);
3001 
3002 			WRITE_ONCE(icsk->icsk_retransmits,
3003 				   icsk->icsk_retransmits + 1);
3004 			mptcp_set_datafin_timeout(sk);
3005 			mptcp_send_ack(msk);
3006 			goto reset_timer;
3007 		}
3008 
3009 		if (!mptcp_send_head(sk))
3010 			goto clear_scheduled;
3011 	}
3012 
3013 reset_timer:
3014 	mptcp_check_and_set_pending(sk);
3015 
3016 	if (!mptcp_rtx_timer_pending(sk))
3017 		mptcp_reset_rtx_timer(sk);
3018 
3019 clear_scheduled:
3020 	/* If no rtx data was available or in case of fallback, there
3021 	 * could be left-over scheduled subflows; clear them all
3022 	 * or later xmit could use bad ones
3023 	 */
3024 	mptcp_for_each_subflow(msk, subflow)
3025 		if (READ_ONCE(subflow->scheduled))
3026 			mptcp_subflow_set_scheduled(subflow, false);
3027 }
3028 
3029 /* schedule the timeout timer for the relevant event: either close timeout
3030  * or mp_fail timeout. The close timeout takes precedence on the mp_fail one
3031  */
3032 void mptcp_reset_tout_timer(struct mptcp_sock *msk, unsigned long fail_tout)
3033 {
3034 	struct sock *sk = (struct sock *)msk;
3035 	unsigned long timeout, close_timeout;
3036 
3037 	if (!fail_tout && !inet_csk(sk)->icsk_mtup.probe_timestamp)
3038 		return;
3039 
3040 	close_timeout = (unsigned long)inet_csk(sk)->icsk_mtup.probe_timestamp -
3041 			tcp_jiffies32 + jiffies + mptcp_close_timeout(sk);
3042 
3043 	/* the close timeout takes precedence on the fail one, and here at least one of
3044 	 * them is active
3045 	 */
3046 	timeout = inet_csk(sk)->icsk_mtup.probe_timestamp ? close_timeout : fail_tout;
3047 
3048 	sk_reset_timer(sk, &inet_csk(sk)->mptcp_tout_timer, timeout);
3049 }
3050 
3051 static void mptcp_mp_fail_no_response(struct mptcp_sock *msk)
3052 {
3053 	struct sock *ssk = msk->first;
3054 	bool slow;
3055 
3056 	if (!ssk)
3057 		return;
3058 
3059 	pr_debug("MP_FAIL doesn't respond, reset the subflow\n");
3060 
3061 	slow = lock_sock_fast(ssk);
3062 	mptcp_subflow_reset(ssk);
3063 	WRITE_ONCE(mptcp_subflow_ctx(ssk)->fail_tout, 0);
3064 	unlock_sock_fast(ssk, slow);
3065 }
3066 
3067 static void mptcp_backlog_purge(struct sock *sk)
3068 {
3069 	struct mptcp_sock *msk = mptcp_sk(sk);
3070 	struct sk_buff *tmp, *skb;
3071 	LIST_HEAD(backlog);
3072 
3073 	mptcp_data_lock(sk);
3074 	list_splice_init(&msk->backlog_list, &backlog);
3075 	msk->backlog_len = 0;
3076 	mptcp_data_unlock(sk);
3077 
3078 	list_for_each_entry_safe(skb, tmp, &backlog, list) {
3079 		mptcp_borrow_fwdmem(sk, skb);
3080 		kfree_skb_reason(skb, SKB_DROP_REASON_SOCKET_CLOSE);
3081 	}
3082 	sk_mem_reclaim(sk);
3083 }
3084 
3085 static void mptcp_do_fastclose(struct sock *sk)
3086 {
3087 	struct mptcp_subflow_context *subflow, *tmp;
3088 	struct mptcp_sock *msk = mptcp_sk(sk);
3089 
3090 	mptcp_set_state(sk, TCP_CLOSE);
3091 	mptcp_backlog_purge(sk);
3092 	msk->fastclosing = 1;
3093 
3094 	/* Explicitly send the fastclose reset as need */
3095 	if (__mptcp_check_fallback(msk))
3096 		return;
3097 
3098 	mptcp_for_each_subflow_safe(msk, subflow, tmp) {
3099 		struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
3100 
3101 		lock_sock(ssk);
3102 
3103 		/* Some subflow socket states don't allow/need a reset.*/
3104 		if ((1 << ssk->sk_state) & (TCPF_LISTEN | TCPF_CLOSE))
3105 			goto unlock;
3106 
3107 		subflow->send_fastclose = 1;
3108 
3109 		/* Initialize rcv_mss to TCP_MIN_MSS to avoid division by 0
3110 		 * issue in __tcp_select_window(), see tcp_disconnect().
3111 		 */
3112 		inet_csk(ssk)->icsk_ack.rcv_mss = TCP_MIN_MSS;
3113 
3114 		tcp_send_active_reset(ssk, SK_RST_REASON_TCP_ABORT_ON_CLOSE);
3115 unlock:
3116 		release_sock(ssk);
3117 	}
3118 }
3119 
3120 static void mptcp_worker(struct work_struct *work)
3121 {
3122 	struct mptcp_sock *msk = container_of(work, struct mptcp_sock, work);
3123 	struct sock *sk = (struct sock *)msk;
3124 	unsigned long fail_tout;
3125 	int state;
3126 
3127 	lock_sock(sk);
3128 	state = sk->sk_state;
3129 	if (unlikely((1 << state) & (TCPF_CLOSE | TCPF_LISTEN)))
3130 		goto unlock;
3131 
3132 	mptcp_check_fastclose(msk);
3133 
3134 	mptcp_pm_worker(msk);
3135 
3136 	mptcp_check_send_data_fin(sk);
3137 	mptcp_check_data_fin_ack(sk);
3138 	mptcp_check_data_fin(sk);
3139 
3140 	if (test_and_clear_bit(MPTCP_WORK_CLOSE_SUBFLOW, &msk->flags))
3141 		__mptcp_close_subflow(sk);
3142 
3143 	if (mptcp_close_tout_expired(sk)) {
3144 		struct mptcp_subflow_context *subflow, *tmp;
3145 
3146 		mptcp_do_fastclose(sk);
3147 		mptcp_for_each_subflow_safe(msk, subflow, tmp)
3148 			__mptcp_close_ssk(sk, subflow->tcp_sock, subflow, 0);
3149 		mptcp_close_wake_up(sk);
3150 	}
3151 
3152 	if (sock_flag(sk, SOCK_DEAD) && sk->sk_state == TCP_CLOSE) {
3153 		__mptcp_destroy_sock(sk);
3154 		goto unlock;
3155 	}
3156 
3157 	if (test_and_clear_bit(MPTCP_WORK_RTX, &msk->flags))
3158 		__mptcp_retrans(sk);
3159 
3160 	fail_tout = msk->first ? READ_ONCE(mptcp_subflow_ctx(msk->first)->fail_tout) : 0;
3161 	if (fail_tout && time_after(jiffies, fail_tout))
3162 		mptcp_mp_fail_no_response(msk);
3163 
3164 unlock:
3165 	release_sock(sk);
3166 	sock_put(sk);
3167 }
3168 
3169 static void __mptcp_init_sock(struct sock *sk)
3170 {
3171 	struct inet_connection_sock *icsk = inet_csk(sk);
3172 	struct mptcp_sock *msk = mptcp_sk(sk);
3173 	struct net *net = sock_net(sk);
3174 
3175 	INIT_LIST_HEAD(&msk->conn_list);
3176 	INIT_LIST_HEAD(&msk->join_list);
3177 	INIT_LIST_HEAD(&msk->rtx_queue);
3178 	INIT_LIST_HEAD(&msk->backlog_list);
3179 	INIT_WORK(&msk->work, mptcp_worker);
3180 	msk->out_of_order_queue = RB_ROOT;
3181 	msk->first_pending = NULL;
3182 
3183 	/* msk does not go through tcp_init_sock(); seed RTO bounds. */
3184 	icsk->icsk_rto_min =
3185 		usecs_to_jiffies(READ_ONCE(net->ipv4.sysctl_tcp_rto_min_us));
3186 	icsk->icsk_rto_max =
3187 		msecs_to_jiffies(READ_ONCE(net->ipv4.sysctl_tcp_rto_max_ms));
3188 	msk->timer_ival = icsk->icsk_rto_min;
3189 	msk->scaling_ratio = TCP_DEFAULT_SCALING_RATIO;
3190 	msk->backlog_len = 0;
3191 	mptcp_init_rtt_est(msk);
3192 
3193 	WRITE_ONCE(msk->first, NULL);
3194 	inet_csk(sk)->icsk_sync_mss = mptcp_sync_mss;
3195 	WRITE_ONCE(msk->csum_enabled, mptcp_is_checksum_enabled(sock_net(sk)));
3196 	msk->allow_infinite_fallback = true;
3197 	msk->allow_subflows = true;
3198 	msk->recovery = false;
3199 	msk->subflow_id = 1;
3200 	msk->last_data_sent = tcp_jiffies32;
3201 	msk->last_data_recv = tcp_jiffies32;
3202 	msk->last_ack_recv = tcp_jiffies32;
3203 
3204 	mptcp_pm_data_init(msk);
3205 	spin_lock_init(&msk->fallback_lock);
3206 
3207 	/* re-use the csk retrans timer for MPTCP-level retrans */
3208 	timer_setup(&sk->mptcp_retransmit_timer, mptcp_retransmit_timer, 0);
3209 	timer_setup(&msk->sk.mptcp_tout_timer, mptcp_tout_timer, 0);
3210 }
3211 
3212 static void mptcp_ca_reset(struct sock *sk)
3213 {
3214 	struct inet_connection_sock *icsk = inet_csk(sk);
3215 
3216 	tcp_assign_congestion_control(sk);
3217 	strscpy(mptcp_sk(sk)->ca_name, icsk->icsk_ca_ops->name,
3218 		sizeof(mptcp_sk(sk)->ca_name));
3219 
3220 	/* no need to keep a reference to the ops, the name will suffice */
3221 	tcp_cleanup_congestion_control(sk);
3222 	icsk->icsk_ca_ops = NULL;
3223 }
3224 
3225 static int mptcp_init_sock(struct sock *sk)
3226 {
3227 	struct net *net = sock_net(sk);
3228 	int ret;
3229 
3230 	__mptcp_init_sock(sk);
3231 
3232 	if (!mptcp_is_enabled(net))
3233 		return -ENOPROTOOPT;
3234 
3235 	if (unlikely(!net->mib.mptcp_statistics) && !mptcp_mib_alloc(net))
3236 		return -ENOMEM;
3237 
3238 	rcu_read_lock();
3239 	ret = mptcp_init_sched(mptcp_sk(sk),
3240 			       mptcp_sched_find(mptcp_get_scheduler(net)));
3241 	rcu_read_unlock();
3242 	if (ret)
3243 		return ret;
3244 
3245 	set_bit(SOCK_CUSTOM_SOCKOPT, &sk->sk_socket->flags);
3246 
3247 	/* fetch the ca name; do it outside __mptcp_init_sock(), so that clone will
3248 	 * propagate the correct value
3249 	 */
3250 	mptcp_ca_reset(sk);
3251 
3252 	sk_sockets_allocated_inc(sk);
3253 	sk->sk_rcvbuf = READ_ONCE(net->ipv4.sysctl_tcp_rmem[1]);
3254 	sk->sk_sndbuf = READ_ONCE(net->ipv4.sysctl_tcp_wmem[1]);
3255 	sk->sk_write_space = sk_stream_write_space;
3256 
3257 	return 0;
3258 }
3259 
3260 static void __mptcp_clear_xmit(struct sock *sk)
3261 {
3262 	struct mptcp_sock *msk = mptcp_sk(sk);
3263 	struct mptcp_data_frag *dtmp, *dfrag;
3264 
3265 	msk->first_pending = NULL;
3266 	list_for_each_entry_safe(dfrag, dtmp, &msk->rtx_queue, list)
3267 		dfrag_clear(sk, dfrag);
3268 }
3269 
3270 void mptcp_cancel_work(struct sock *sk)
3271 {
3272 	struct mptcp_sock *msk = mptcp_sk(sk);
3273 
3274 	if (cancel_work_sync(&msk->work))
3275 		__sock_put(sk);
3276 }
3277 
3278 void mptcp_subflow_shutdown(struct sock *sk, struct sock *ssk, int how)
3279 {
3280 	lock_sock(ssk);
3281 
3282 	switch (ssk->sk_state) {
3283 	case TCP_LISTEN:
3284 		if (!(how & RCV_SHUTDOWN))
3285 			break;
3286 		fallthrough;
3287 	case TCP_SYN_SENT:
3288 		WARN_ON_ONCE(tcp_disconnect(ssk, O_NONBLOCK));
3289 		break;
3290 	default:
3291 		if (__mptcp_check_fallback(mptcp_sk(sk))) {
3292 			pr_debug("Fallback\n");
3293 			ssk->sk_shutdown |= how;
3294 			tcp_shutdown(ssk, how);
3295 
3296 			/* simulate the data_fin ack reception to let the state
3297 			 * machine move forward
3298 			 */
3299 			WRITE_ONCE(mptcp_sk(sk)->snd_una, mptcp_sk(sk)->snd_nxt);
3300 			mptcp_schedule_work(sk);
3301 		} else {
3302 			pr_debug("Sending DATA_FIN on subflow %p\n", ssk);
3303 			tcp_send_ack(ssk);
3304 			if (!mptcp_rtx_timer_pending(sk))
3305 				mptcp_reset_rtx_timer(sk);
3306 		}
3307 		break;
3308 	}
3309 
3310 	release_sock(ssk);
3311 }
3312 
3313 void mptcp_set_state(struct sock *sk, int state)
3314 {
3315 	int oldstate = sk->sk_state;
3316 
3317 	switch (state) {
3318 	case TCP_ESTABLISHED:
3319 		if (oldstate != TCP_ESTABLISHED)
3320 			MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_CURRESTAB);
3321 		break;
3322 	case TCP_CLOSE_WAIT:
3323 		/* Unlike TCP, MPTCP sk would not have the TCP_SYN_RECV state:
3324 		 * MPTCP "accepted" sockets will be created later on. So no
3325 		 * transition from TCP_SYN_RECV to TCP_CLOSE_WAIT.
3326 		 */
3327 		break;
3328 	case TCP_CLOSE:
3329 		clear_bit(MPTCP_RTX_ENABLED, &mptcp_sk(sk)->flags);
3330 		fallthrough;
3331 	default:
3332 		if (oldstate == TCP_ESTABLISHED || oldstate == TCP_CLOSE_WAIT)
3333 			MPTCP_DEC_STATS(sock_net(sk), MPTCP_MIB_CURRESTAB);
3334 	}
3335 
3336 	inet_sk_state_store(sk, state);
3337 }
3338 
3339 static const unsigned char new_state[16] = {
3340 	/* current state:     new state:      action:	*/
3341 	[0 /* (Invalid) */] = TCP_CLOSE,
3342 	[TCP_ESTABLISHED]   = TCP_FIN_WAIT1 | TCP_ACTION_FIN,
3343 	[TCP_SYN_SENT]      = TCP_CLOSE,
3344 	[TCP_SYN_RECV]      = TCP_FIN_WAIT1 | TCP_ACTION_FIN,
3345 	[TCP_FIN_WAIT1]     = TCP_FIN_WAIT1,
3346 	[TCP_FIN_WAIT2]     = TCP_FIN_WAIT2,
3347 	[TCP_TIME_WAIT]     = TCP_CLOSE,	/* should not happen ! */
3348 	[TCP_CLOSE]         = TCP_CLOSE,
3349 	[TCP_CLOSE_WAIT]    = TCP_LAST_ACK  | TCP_ACTION_FIN,
3350 	[TCP_LAST_ACK]      = TCP_LAST_ACK,
3351 	[TCP_LISTEN]        = TCP_CLOSE,
3352 	[TCP_CLOSING]       = TCP_CLOSING,
3353 	[TCP_NEW_SYN_RECV]  = TCP_CLOSE,	/* should not happen ! */
3354 };
3355 
3356 static int mptcp_close_state(struct sock *sk)
3357 {
3358 	int next = (int)new_state[sk->sk_state];
3359 	int ns = next & TCP_STATE_MASK;
3360 
3361 	mptcp_set_state(sk, ns);
3362 
3363 	return next & TCP_ACTION_FIN;
3364 }
3365 
3366 static void mptcp_check_send_data_fin(struct sock *sk)
3367 {
3368 	struct mptcp_subflow_context *subflow;
3369 	struct mptcp_sock *msk = mptcp_sk(sk);
3370 
3371 	pr_debug("msk=%p snd_data_fin_enable=%d pending=%d snd_nxt=%llu write_seq=%llu\n",
3372 		 msk, msk->snd_data_fin_enable, !!mptcp_send_head(sk),
3373 		 msk->snd_nxt, msk->write_seq);
3374 
3375 	/* we still need to enqueue subflows or not really shutting down,
3376 	 * skip this
3377 	 */
3378 	if (!msk->snd_data_fin_enable || msk->snd_nxt + 1 != msk->write_seq ||
3379 	    mptcp_send_head(sk))
3380 		return;
3381 
3382 	WRITE_ONCE(msk->snd_nxt, msk->write_seq);
3383 
3384 	mptcp_for_each_subflow(msk, subflow) {
3385 		struct sock *tcp_sk = mptcp_subflow_tcp_sock(subflow);
3386 
3387 		mptcp_subflow_shutdown(sk, tcp_sk, SEND_SHUTDOWN);
3388 	}
3389 }
3390 
3391 static void __mptcp_wr_shutdown(struct sock *sk)
3392 {
3393 	struct mptcp_sock *msk = mptcp_sk(sk);
3394 
3395 	pr_debug("msk=%p snd_data_fin_enable=%d shutdown=%x state=%d pending=%d\n",
3396 		 msk, msk->snd_data_fin_enable, sk->sk_shutdown, sk->sk_state,
3397 		 !!mptcp_send_head(sk));
3398 
3399 	/* will be ignored by fallback sockets */
3400 	WRITE_ONCE(msk->write_seq, msk->write_seq + 1);
3401 	WRITE_ONCE(msk->snd_data_fin_enable, 1);
3402 
3403 	mptcp_check_send_data_fin(sk);
3404 }
3405 
3406 static void __mptcp_destroy_sock(struct sock *sk)
3407 {
3408 	struct mptcp_sock *msk = mptcp_sk(sk);
3409 
3410 	pr_debug("msk=%p\n", msk);
3411 
3412 	might_sleep();
3413 
3414 	mptcp_stop_rtx_timer(sk);
3415 	sk_stop_timer(sk, &inet_csk(sk)->mptcp_tout_timer);
3416 	msk->pm.status = 0;
3417 	mptcp_release_sched(msk);
3418 
3419 	sk->sk_prot->destroy(sk);
3420 
3421 	sk_stream_kill_queues(sk);
3422 	xfrm_sk_free_policy(sk);
3423 
3424 	sock_put(sk);
3425 }
3426 
3427 void __mptcp_unaccepted_force_close(struct sock *sk)
3428 {
3429 	sock_set_flag(sk, SOCK_DEAD);
3430 	mptcp_do_fastclose(sk);
3431 	__mptcp_destroy_sock(sk);
3432 }
3433 
3434 static __poll_t mptcp_check_readable(struct sock *sk)
3435 {
3436 	return mptcp_epollin_ready(sk) ? EPOLLIN | EPOLLRDNORM : 0;
3437 }
3438 
3439 static void mptcp_check_listen_stop(struct sock *sk)
3440 {
3441 	struct sock *ssk;
3442 
3443 	if (inet_sk_state_load(sk) != TCP_LISTEN)
3444 		return;
3445 
3446 	sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
3447 	ssk = mptcp_sk(sk)->first;
3448 	if (WARN_ON_ONCE(!ssk || inet_sk_state_load(ssk) != TCP_LISTEN))
3449 		return;
3450 
3451 	lock_sock_nested(ssk, SINGLE_DEPTH_NESTING);
3452 	tcp_set_state(ssk, TCP_CLOSE);
3453 	mptcp_subflow_queue_clean(sk, ssk);
3454 	inet_csk_listen_stop(ssk);
3455 	mptcp_event_pm_listener(ssk, MPTCP_EVENT_LISTENER_CLOSED);
3456 	release_sock(ssk);
3457 }
3458 
3459 bool __mptcp_close(struct sock *sk, long timeout)
3460 {
3461 	struct mptcp_subflow_context *subflow;
3462 	struct mptcp_sock *msk = mptcp_sk(sk);
3463 	bool do_cancel_work = false;
3464 	int subflows_alive = 0;
3465 
3466 	WRITE_ONCE(sk->sk_shutdown, SHUTDOWN_MASK);
3467 
3468 	if ((1 << sk->sk_state) & (TCPF_LISTEN | TCPF_CLOSE)) {
3469 		mptcp_check_listen_stop(sk);
3470 		mptcp_set_state(sk, TCP_CLOSE);
3471 		goto cleanup;
3472 	}
3473 
3474 	if (mptcp_data_avail(msk) || timeout < 0 ||
3475 	    (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
3476 		/* If the msk has read data, or the caller explicitly ask it,
3477 		 * do the MPTCP equivalent of TCP reset, aka MPTCP fastclose
3478 		 */
3479 		mptcp_do_fastclose(sk);
3480 		timeout = 0;
3481 	} else if (mptcp_close_state(sk)) {
3482 		__mptcp_wr_shutdown(sk);
3483 	}
3484 
3485 	sk_stream_wait_close(sk, timeout);
3486 
3487 cleanup:
3488 	/* orphan all the subflows */
3489 	mptcp_for_each_subflow(msk, subflow) {
3490 		struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
3491 		bool slow = lock_sock_fast_nested(ssk);
3492 
3493 		subflows_alive += ssk->sk_state != TCP_CLOSE;
3494 
3495 		/* since the close timeout takes precedence on the fail one,
3496 		 * cancel the latter
3497 		 */
3498 		if (ssk == msk->first)
3499 			subflow->fail_tout = 0;
3500 
3501 		/* detach from the parent socket, but allow data_ready to
3502 		 * push incoming data into the mptcp stack, to properly ack it
3503 		 */
3504 		ssk->sk_socket = NULL;
3505 		ssk->sk_wq = NULL;
3506 		unlock_sock_fast(ssk, slow);
3507 	}
3508 	sock_orphan(sk);
3509 
3510 	/* all the subflows are closed, only timeout can change the msk
3511 	 * state, let's not keep resources busy for no reasons
3512 	 */
3513 	if (subflows_alive == 0)
3514 		mptcp_set_state(sk, TCP_CLOSE);
3515 
3516 	sock_hold(sk);
3517 	pr_debug("msk=%p state=%d\n", sk, sk->sk_state);
3518 	mptcp_pm_connection_closed(msk);
3519 
3520 	if (sk->sk_state == TCP_CLOSE) {
3521 		__mptcp_destroy_sock(sk);
3522 		do_cancel_work = true;
3523 	} else {
3524 		mptcp_start_tout_timer(sk);
3525 	}
3526 
3527 	return do_cancel_work;
3528 }
3529 
3530 static void mptcp_close(struct sock *sk, long timeout)
3531 {
3532 	bool do_cancel_work;
3533 
3534 	lock_sock(sk);
3535 
3536 	do_cancel_work = __mptcp_close(sk, timeout);
3537 	release_sock(sk);
3538 	if (do_cancel_work)
3539 		mptcp_cancel_work(sk);
3540 
3541 	sock_put(sk);
3542 }
3543 
3544 static void mptcp_copy_inaddrs(struct sock *msk, const struct sock *ssk)
3545 {
3546 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
3547 	const struct ipv6_pinfo *ssk6 = inet6_sk(ssk);
3548 	struct ipv6_pinfo *msk6 = inet6_sk(msk);
3549 
3550 	msk->sk_v6_daddr = ssk->sk_v6_daddr;
3551 	msk->sk_v6_rcv_saddr = ssk->sk_v6_rcv_saddr;
3552 
3553 	if (msk6 && ssk6) {
3554 		msk6->saddr = ssk6->saddr;
3555 		msk6->flow_label = ssk6->flow_label;
3556 	}
3557 #endif
3558 
3559 	inet_sk(msk)->inet_num = inet_sk(ssk)->inet_num;
3560 	inet_sk(msk)->inet_dport = inet_sk(ssk)->inet_dport;
3561 	inet_sk(msk)->inet_sport = inet_sk(ssk)->inet_sport;
3562 	inet_sk(msk)->inet_daddr = inet_sk(ssk)->inet_daddr;
3563 	inet_sk(msk)->inet_saddr = inet_sk(ssk)->inet_saddr;
3564 	inet_sk(msk)->inet_rcv_saddr = inet_sk(ssk)->inet_rcv_saddr;
3565 }
3566 
3567 static void mptcp_destroy_common(struct mptcp_sock *msk)
3568 {
3569 	struct mptcp_subflow_context *subflow, *tmp;
3570 	struct sock *sk = (struct sock *)msk;
3571 
3572 	__mptcp_clear_xmit(sk);
3573 	mptcp_backlog_purge(sk);
3574 
3575 	/* join list will be eventually flushed (with rst) at sock lock release time */
3576 	mptcp_for_each_subflow_safe(msk, subflow, tmp)
3577 		__mptcp_close_ssk(sk, mptcp_subflow_tcp_sock(subflow), subflow, 0);
3578 
3579 	__skb_queue_purge(&sk->sk_receive_queue);
3580 	skb_rbtree_purge(&msk->out_of_order_queue);
3581 
3582 	/* move all the rx fwd alloc into the sk_mem_reclaim_final in
3583 	 * inet_sock_destruct() will dispose it
3584 	 */
3585 	mptcp_token_destroy(msk);
3586 	mptcp_pm_destroy(msk);
3587 }
3588 
3589 static int mptcp_disconnect(struct sock *sk, int flags)
3590 {
3591 	struct inet_connection_sock *icsk = inet_csk(sk);
3592 	struct mptcp_sock *msk = mptcp_sk(sk);
3593 
3594 	/* We are on the fastopen error path. We can't call straight into the
3595 	 * subflows cleanup code due to lock nesting (we are already under
3596 	 * msk->firstsocket lock).
3597 	 */
3598 	if (msk->fastopening)
3599 		return -EBUSY;
3600 
3601 	mptcp_check_listen_stop(sk);
3602 	mptcp_set_state(sk, TCP_CLOSE);
3603 
3604 	/* The later subflow close can not kick again the tout timer,
3605 	 * as the msk is already in closed status.
3606 	 */
3607 	msk->timer_ival = icsk->icsk_rto_min;
3608 	sk_stop_timer_sync(sk, &sk->mptcp_retransmit_timer);
3609 	icsk->icsk_mtup.probe_timestamp = 0;
3610 	sk_stop_timer_sync(sk, &icsk->mptcp_tout_timer);
3611 
3612 	mptcp_pm_connection_closed(msk);
3613 
3614 	/* msk->subflow is still intact, the following will not free the first
3615 	 * subflow
3616 	 */
3617 	mptcp_do_fastclose(sk);
3618 	mptcp_destroy_common(msk);
3619 
3620 	/* The first subflow is already in TCP_CLOSE status, the following
3621 	 * can't overlap with a fallback anymore
3622 	 */
3623 	spin_lock_bh(&msk->fallback_lock);
3624 	msk->allow_subflows = true;
3625 	msk->allow_infinite_fallback = true;
3626 	WRITE_ONCE(msk->flags, 0);
3627 	spin_unlock_bh(&msk->fallback_lock);
3628 
3629 	msk->cb_flags = 0;
3630 	msk->recovery = false;
3631 	WRITE_ONCE(msk->can_ack, false);
3632 	WRITE_ONCE(msk->fully_established, false);
3633 	WRITE_ONCE(msk->rcv_data_fin, false);
3634 	WRITE_ONCE(msk->snd_data_fin_enable, false);
3635 	WRITE_ONCE(msk->rcv_fastclose, false);
3636 	WRITE_ONCE(msk->use_64bit_ack, false);
3637 	WRITE_ONCE(msk->csum_enabled, mptcp_is_checksum_enabled(sock_net(sk)));
3638 	mptcp_pm_data_reset(msk);
3639 	mptcp_ca_reset(sk);
3640 	msk->bytes_consumed = 0;
3641 	msk->bytes_acked = 0;
3642 	msk->bytes_received = 0;
3643 	msk->bytes_sent = 0;
3644 	msk->bytes_retrans = 0;
3645 	msk->rcvspace_init = 0;
3646 	msk->fastclosing = 0;
3647 	mptcp_init_rtt_est(msk);
3648 
3649 	/* for fallback's sake */
3650 	WRITE_ONCE(msk->ack_seq, 0);
3651 	atomic64_set(&msk->rcv_wnd_sent, 0);
3652 
3653 	WRITE_ONCE(sk->sk_shutdown, 0);
3654 	sk_error_report(sk);
3655 	return 0;
3656 }
3657 
3658 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
3659 static struct ipv6_pinfo *mptcp_inet6_sk(const struct sock *sk)
3660 {
3661 	struct mptcp6_sock *msk6 = container_of(mptcp_sk(sk), struct mptcp6_sock, msk);
3662 
3663 	return &msk6->np;
3664 }
3665 
3666 static void mptcp_copy_ip6_options(struct sock *newsk, const struct sock *sk)
3667 {
3668 	const struct ipv6_pinfo *np = inet6_sk(sk);
3669 	struct ipv6_txoptions *opt;
3670 	struct ipv6_pinfo *newnp;
3671 
3672 	newnp = inet6_sk(newsk);
3673 
3674 	rcu_read_lock();
3675 	opt = rcu_dereference(np->opt);
3676 	if (opt) {
3677 		opt = ipv6_dup_options(newsk, opt);
3678 		if (!opt)
3679 			net_warn_ratelimited("%s: Failed to copy ip6 options\n", __func__);
3680 	}
3681 	RCU_INIT_POINTER(newnp->opt, opt);
3682 	rcu_read_unlock();
3683 }
3684 #endif
3685 
3686 static void mptcp_copy_ip_options(struct sock *newsk, const struct sock *sk)
3687 {
3688 	struct ip_options_rcu *inet_opt, *newopt = NULL;
3689 	const struct inet_sock *inet = inet_sk(sk);
3690 	struct inet_sock *newinet;
3691 
3692 	newinet = inet_sk(newsk);
3693 
3694 	rcu_read_lock();
3695 	inet_opt = rcu_dereference(inet->inet_opt);
3696 	if (inet_opt) {
3697 		newopt = sock_kmemdup(newsk, inet_opt, sizeof(*inet_opt) +
3698 				      inet_opt->opt.optlen, GFP_ATOMIC);
3699 		if (!newopt)
3700 			net_warn_ratelimited("%s: Failed to copy ip options\n", __func__);
3701 	}
3702 	RCU_INIT_POINTER(newinet->inet_opt, newopt);
3703 	rcu_read_unlock();
3704 }
3705 
3706 struct sock *mptcp_sk_clone_init(const struct sock *sk,
3707 				 const struct mptcp_options_received *mp_opt,
3708 				 struct sock *ssk,
3709 				 struct request_sock *req)
3710 {
3711 	struct mptcp_subflow_request_sock *subflow_req = mptcp_subflow_rsk(req);
3712 	struct sock *nsk = sk_clone_lock(sk, GFP_ATOMIC);
3713 	struct mptcp_subflow_context *subflow;
3714 	struct mptcp_sock *msk;
3715 
3716 	if (!nsk)
3717 		return NULL;
3718 
3719 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
3720 	if (nsk->sk_family == AF_INET6)
3721 		inet_sk(nsk)->pinet6 = mptcp_inet6_sk(nsk);
3722 #endif
3723 
3724 	__mptcp_init_sock(nsk);
3725 
3726 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
3727 	if (nsk->sk_family == AF_INET6)
3728 		mptcp_copy_ip6_options(nsk, sk);
3729 	else
3730 #endif
3731 		mptcp_copy_ip_options(nsk, sk);
3732 
3733 	msk = mptcp_sk(nsk);
3734 	WRITE_ONCE(msk->local_key, subflow_req->local_key);
3735 	WRITE_ONCE(msk->token, subflow_req->token);
3736 	msk->in_accept_queue = 1;
3737 	WRITE_ONCE(msk->fully_established, false);
3738 	if (mp_opt->suboptions & OPTION_MPTCP_CSUMREQD)
3739 		WRITE_ONCE(msk->csum_enabled, true);
3740 
3741 	WRITE_ONCE(msk->write_seq, subflow_req->idsn + 1);
3742 	WRITE_ONCE(msk->snd_nxt, msk->write_seq);
3743 	WRITE_ONCE(msk->snd_una, msk->write_seq);
3744 	WRITE_ONCE(msk->wnd_end, msk->snd_nxt + tcp_sk(ssk)->snd_wnd);
3745 	msk->setsockopt_seq = mptcp_sk(sk)->setsockopt_seq;
3746 	mptcp_init_sched(msk, mptcp_sk(sk)->sched);
3747 
3748 	/* passive msk is created after the first/MPC subflow */
3749 	msk->subflow_id = 2;
3750 
3751 	sock_reset_flag(nsk, SOCK_RCU_FREE);
3752 	security_inet_csk_clone(nsk, req);
3753 
3754 	/* this can't race with mptcp_close(), as the msk is
3755 	 * not yet exposted to user-space
3756 	 */
3757 	mptcp_set_state(nsk, TCP_ESTABLISHED);
3758 
3759 	/* The msk maintain a ref to each subflow in the connections list */
3760 	WRITE_ONCE(msk->first, ssk);
3761 	subflow = mptcp_subflow_ctx(ssk);
3762 	list_add(&subflow->node, &msk->conn_list);
3763 	sock_hold(ssk);
3764 
3765 	/* new mpc subflow takes ownership of the newly
3766 	 * created mptcp socket
3767 	 */
3768 	mptcp_token_accept(subflow_req, msk);
3769 
3770 	/* set msk addresses early to ensure mptcp_pm_get_local_id()
3771 	 * uses the correct data
3772 	 */
3773 	mptcp_copy_inaddrs(nsk, ssk);
3774 
3775 	mptcp_rcv_space_init(msk, ssk);
3776 	msk->rcvq_space.time = mptcp_stamp();
3777 
3778 	if (mp_opt->suboptions & OPTION_MPTCP_MPC_ACK)
3779 		__mptcp_subflow_fully_established(msk, subflow, mp_opt);
3780 	bh_unlock_sock(nsk);
3781 
3782 	/* note: the newly allocated socket refcount is 2 now */
3783 	return nsk;
3784 }
3785 
3786 static void mptcp_destroy(struct sock *sk)
3787 {
3788 	struct mptcp_sock *msk = mptcp_sk(sk);
3789 
3790 	/* allow the following to close even the initial subflow */
3791 	msk->free_first = 1;
3792 	mptcp_destroy_common(msk);
3793 	sk_sockets_allocated_dec(sk);
3794 }
3795 
3796 void __mptcp_data_acked(struct sock *sk)
3797 {
3798 	if (!sock_owned_by_user(sk))
3799 		__mptcp_clean_una(sk);
3800 	else
3801 		__set_bit(MPTCP_CLEAN_UNA, &mptcp_sk(sk)->cb_flags);
3802 }
3803 
3804 void __mptcp_check_push(struct sock *sk, struct sock *ssk)
3805 {
3806 	if (!sock_owned_by_user(sk))
3807 		__mptcp_subflow_push_pending(sk, ssk, false);
3808 	else
3809 		__set_bit(MPTCP_PUSH_PENDING, &mptcp_sk(sk)->cb_flags);
3810 }
3811 
3812 #define MPTCP_FLAGS_PROCESS_CTX_NEED (BIT(MPTCP_PUSH_PENDING) | \
3813 				      BIT(MPTCP_RETRANSMIT) | \
3814 				      BIT(MPTCP_FLUSH_JOIN_LIST))
3815 
3816 /* processes deferred events and flush wmem */
3817 static void mptcp_release_cb(struct sock *sk)
3818 	__must_hold(&sk->sk_lock.slock)
3819 {
3820 	struct mptcp_sock *msk = mptcp_sk(sk);
3821 	u32 moved = 0;
3822 
3823 	for (;;) {
3824 		unsigned long flags = (msk->cb_flags & MPTCP_FLAGS_PROCESS_CTX_NEED);
3825 		struct list_head join_list, skbs;
3826 		bool spool_bl;
3827 
3828 		spool_bl = mptcp_can_spool_backlog(sk, &skbs);
3829 		if (!flags && !spool_bl)
3830 			break;
3831 
3832 		INIT_LIST_HEAD(&join_list);
3833 		list_splice_init(&msk->join_list, &join_list);
3834 
3835 		/* the following actions acquire the subflow socket lock
3836 		 *
3837 		 * 1) can't be invoked in atomic scope
3838 		 * 2) must avoid ABBA deadlock with msk socket spinlock: the RX
3839 		 *    datapath acquires the msk socket spinlock while helding
3840 		 *    the subflow socket lock
3841 		 */
3842 		msk->cb_flags &= ~flags;
3843 		spin_unlock_bh(&sk->sk_lock.slock);
3844 
3845 		if (flags & BIT(MPTCP_FLUSH_JOIN_LIST))
3846 			__mptcp_flush_join_list(sk, &join_list);
3847 		if (flags & BIT(MPTCP_PUSH_PENDING))
3848 			__mptcp_push_pending(sk, 0);
3849 		if (flags & BIT(MPTCP_RETRANSMIT))
3850 			__mptcp_retrans(sk);
3851 		if (spool_bl && __mptcp_move_skbs(sk, &skbs, &moved)) {
3852 			/* notify ack seq update */
3853 			mptcp_cleanup_rbuf(msk, 0);
3854 			sk->sk_data_ready(sk);
3855 		}
3856 
3857 		cond_resched();
3858 		spin_lock_bh(&sk->sk_lock.slock);
3859 	}
3860 	if (moved)
3861 		WRITE_ONCE(msk->backlog_len, msk->backlog_len - moved);
3862 
3863 	if (__test_and_clear_bit(MPTCP_CLEAN_UNA, &msk->cb_flags))
3864 		__mptcp_clean_una_wakeup(sk);
3865 	if (unlikely(msk->cb_flags)) {
3866 		/* be sure to sync the msk state before taking actions
3867 		 * depending on sk_state (MPTCP_ERROR_REPORT)
3868 		 * On sk release avoid actions depending on the first subflow
3869 		 */
3870 		if (__test_and_clear_bit(MPTCP_SYNC_STATE, &msk->cb_flags) && msk->first)
3871 			__mptcp_sync_state(sk, msk->pending_state);
3872 		if (__test_and_clear_bit(MPTCP_ERROR_REPORT, &msk->cb_flags))
3873 			__mptcp_error_report(sk);
3874 		if (__test_and_clear_bit(MPTCP_SYNC_SNDBUF, &msk->cb_flags))
3875 			__mptcp_sync_sndbuf(sk);
3876 	}
3877 }
3878 
3879 /* MP_JOIN client subflow must wait for 4th ack before sending any data:
3880  * TCP can't schedule delack timer before the subflow is fully established.
3881  * MPTCP uses the delack timer to do 3rd ack retransmissions
3882  */
3883 static void schedule_3rdack_retransmission(struct sock *ssk)
3884 {
3885 	struct inet_connection_sock *icsk = inet_csk(ssk);
3886 	struct tcp_sock *tp = tcp_sk(ssk);
3887 	unsigned long timeout;
3888 
3889 	if (mptcp_subflow_ctx(ssk)->fully_established)
3890 		return;
3891 
3892 	/* reschedule with a timeout above RTT, as we must look only for drop */
3893 	if (tp->srtt_us)
3894 		timeout = usecs_to_jiffies(tp->srtt_us >> (3 - 1));
3895 	else
3896 		timeout = TCP_TIMEOUT_INIT;
3897 	timeout += jiffies;
3898 
3899 	WARN_ON_ONCE(icsk->icsk_ack.pending & ICSK_ACK_TIMER);
3900 	smp_store_release(&icsk->icsk_ack.pending,
3901 			  icsk->icsk_ack.pending | ICSK_ACK_SCHED | ICSK_ACK_TIMER);
3902 	sk_reset_timer(ssk, &icsk->icsk_delack_timer, timeout);
3903 }
3904 
3905 void mptcp_subflow_process_delegated(struct sock *ssk, long status)
3906 {
3907 	struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
3908 	struct sock *sk = subflow->conn;
3909 
3910 	if (status & BIT(MPTCP_DELEGATE_SEND)) {
3911 		mptcp_data_lock(sk);
3912 		if (!sock_owned_by_user(sk))
3913 			__mptcp_subflow_push_pending(sk, ssk, true);
3914 		else
3915 			__set_bit(MPTCP_PUSH_PENDING, &mptcp_sk(sk)->cb_flags);
3916 		mptcp_data_unlock(sk);
3917 	}
3918 	if (status & BIT(MPTCP_DELEGATE_SNDBUF)) {
3919 		mptcp_data_lock(sk);
3920 		if (!sock_owned_by_user(sk))
3921 			__mptcp_sync_sndbuf(sk);
3922 		else
3923 			__set_bit(MPTCP_SYNC_SNDBUF, &mptcp_sk(sk)->cb_flags);
3924 		mptcp_data_unlock(sk);
3925 	}
3926 	if (status & BIT(MPTCP_DELEGATE_ACK))
3927 		schedule_3rdack_retransmission(ssk);
3928 }
3929 
3930 static int mptcp_hash(struct sock *sk)
3931 {
3932 	/* should never be called,
3933 	 * we hash the TCP subflows not the MPTCP socket
3934 	 */
3935 	WARN_ON_ONCE(1);
3936 	return 0;
3937 }
3938 
3939 static void mptcp_unhash(struct sock *sk)
3940 {
3941 	/* called from sk_common_release(), but nothing to do here */
3942 }
3943 
3944 static int mptcp_get_port(struct sock *sk, unsigned short snum)
3945 {
3946 	struct mptcp_sock *msk = mptcp_sk(sk);
3947 
3948 	pr_debug("msk=%p, ssk=%p\n", msk, msk->first);
3949 	if (WARN_ON_ONCE(!msk->first))
3950 		return -EINVAL;
3951 
3952 	return inet_csk_get_port(msk->first, snum);
3953 }
3954 
3955 void mptcp_finish_connect(struct sock *ssk)
3956 {
3957 	struct mptcp_subflow_context *subflow;
3958 	struct mptcp_sock *msk;
3959 	struct sock *sk;
3960 
3961 	subflow = mptcp_subflow_ctx(ssk);
3962 	sk = subflow->conn;
3963 	msk = mptcp_sk(sk);
3964 
3965 	pr_debug("msk=%p, token=%u\n", sk, subflow->token);
3966 
3967 	subflow->map_seq = subflow->iasn;
3968 	subflow->map_subflow_seq = 1;
3969 
3970 	/* the socket is not connected yet, no msk/subflow ops can access/race
3971 	 * accessing the field below
3972 	 */
3973 	WRITE_ONCE(msk->local_key, subflow->local_key);
3974 	WRITE_ONCE(msk->rcvq_space.time, mptcp_stamp());
3975 
3976 	mptcp_pm_new_connection(msk, ssk, 0);
3977 }
3978 
3979 void mptcp_sock_graft(struct sock *sk, struct socket *parent)
3980 {
3981 	write_lock_bh(&sk->sk_callback_lock);
3982 	rcu_assign_pointer(sk->sk_wq, &parent->wq);
3983 	sk_set_socket(sk, parent);
3984 	write_unlock_bh(&sk->sk_callback_lock);
3985 }
3986 
3987 /* Can be called without holding the msk socket lock; use the callback lock
3988  * to avoid {READ_,WRITE_}ONCE annotations on sk_socket.
3989  */
3990 static void mptcp_sock_check_graft(struct sock *sk, struct sock *ssk)
3991 {
3992 	struct socket *sock;
3993 
3994 	write_lock_bh(&sk->sk_callback_lock);
3995 	sock = sk->sk_socket;
3996 	write_unlock_bh(&sk->sk_callback_lock);
3997 	if (sock) {
3998 		mptcp_sock_graft(ssk, sock);
3999 		__mptcp_inherit_cgrp_data(sk, ssk);
4000 		__mptcp_inherit_memcg(sk, ssk, GFP_ATOMIC);
4001 	}
4002 }
4003 
4004 bool mptcp_finish_join(struct sock *ssk)
4005 {
4006 	struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
4007 	struct mptcp_sock *msk = mptcp_sk(subflow->conn);
4008 	struct sock *parent = (void *)msk;
4009 	bool ret = true;
4010 
4011 	pr_debug("msk=%p, subflow=%p\n", msk, subflow);
4012 
4013 	/* mptcp socket already closing? */
4014 	if (!mptcp_is_fully_established(parent)) {
4015 		MPTCP_INC_STATS(sock_net(parent), MPTCP_MIB_MPJOINNOTESTABLISHED);
4016 		subflow->reset_reason = MPTCP_RST_EMPTCP;
4017 		return false;
4018 	}
4019 
4020 	/* Active subflow, already present inside the conn_list; is grafted
4021 	 * either by __mptcp_subflow_connect() or accept.
4022 	 */
4023 	if (!list_empty(&subflow->node)) {
4024 		spin_lock_bh(&msk->fallback_lock);
4025 		if (!msk->allow_subflows) {
4026 			spin_unlock_bh(&msk->fallback_lock);
4027 			return false;
4028 		}
4029 		mptcp_subflow_joined(msk, ssk);
4030 		spin_unlock_bh(&msk->fallback_lock);
4031 		mptcp_propagate_sndbuf(parent, ssk);
4032 		return true;
4033 	}
4034 
4035 	if (!mptcp_pm_allow_new_subflow(msk)) {
4036 		MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_JOINREJECTED);
4037 		goto err_prohibited;
4038 	}
4039 
4040 	/* If we can't acquire msk socket lock here, let the release callback
4041 	 * handle it
4042 	 */
4043 	mptcp_data_lock(parent);
4044 	if (!sock_owned_by_user(parent)) {
4045 		ret = __mptcp_finish_join(msk, ssk);
4046 		if (ret) {
4047 			sock_hold(ssk);
4048 			list_add_tail(&subflow->node, &msk->conn_list);
4049 			mptcp_sock_check_graft(parent, ssk);
4050 		}
4051 	} else {
4052 		sock_hold(ssk);
4053 		list_add_tail(&subflow->node, &msk->join_list);
4054 		__set_bit(MPTCP_FLUSH_JOIN_LIST, &msk->cb_flags);
4055 
4056 		/* In case of later failures, __mptcp_flush_join_list() will
4057 		 * properly orphan the ssk via mptcp_close_ssk().
4058 		 */
4059 		mptcp_sock_check_graft(parent, ssk);
4060 	}
4061 	mptcp_data_unlock(parent);
4062 
4063 	if (!ret) {
4064 		mptcp_pm_close_subflow(msk);
4065 err_prohibited:
4066 		subflow->reset_reason = MPTCP_RST_EPROHIBIT;
4067 		return false;
4068 	}
4069 
4070 	return true;
4071 }
4072 
4073 static void mptcp_shutdown(struct sock *sk, int how)
4074 {
4075 	pr_debug("sk=%p, how=%d\n", sk, how);
4076 
4077 	if ((how & SEND_SHUTDOWN) && mptcp_close_state(sk))
4078 		__mptcp_wr_shutdown(sk);
4079 }
4080 
4081 static int mptcp_ioctl_outq(const struct mptcp_sock *msk, u64 v)
4082 {
4083 	const struct sock *sk = (void *)msk;
4084 	u64 delta;
4085 
4086 	if (sk->sk_state == TCP_LISTEN)
4087 		return -EINVAL;
4088 
4089 	if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV))
4090 		return 0;
4091 
4092 	delta = msk->write_seq - v;
4093 	if (__mptcp_check_fallback(msk) && msk->first) {
4094 		struct tcp_sock *tp = tcp_sk(msk->first);
4095 
4096 		/* the first subflow is disconnected after close - see
4097 		 * __mptcp_close_ssk(). tcp_disconnect() moves the write_seq
4098 		 * so ignore that status, too.
4099 		 */
4100 		if (!((1 << msk->first->sk_state) &
4101 		      (TCPF_SYN_SENT | TCPF_SYN_RECV | TCPF_CLOSE)))
4102 			delta += READ_ONCE(tp->write_seq) - tp->snd_una;
4103 	}
4104 	if (delta > INT_MAX)
4105 		delta = INT_MAX;
4106 
4107 	return (int)delta;
4108 }
4109 
4110 static int mptcp_ioctl(struct sock *sk, int cmd, int *karg)
4111 {
4112 	struct mptcp_sock *msk = mptcp_sk(sk);
4113 	bool slow;
4114 
4115 	switch (cmd) {
4116 	case SIOCINQ:
4117 		if (sk->sk_state == TCP_LISTEN)
4118 			return -EINVAL;
4119 
4120 		lock_sock(sk);
4121 		if (mptcp_move_skbs(sk))
4122 			mptcp_cleanup_rbuf(msk, 0);
4123 		*karg = mptcp_inq_hint(sk);
4124 		release_sock(sk);
4125 		break;
4126 	case SIOCOUTQ:
4127 		slow = lock_sock_fast(sk);
4128 		*karg = mptcp_ioctl_outq(msk, READ_ONCE(msk->snd_una));
4129 		unlock_sock_fast(sk, slow);
4130 		break;
4131 	case SIOCOUTQNSD:
4132 		slow = lock_sock_fast(sk);
4133 		*karg = mptcp_ioctl_outq(msk, msk->snd_nxt);
4134 		unlock_sock_fast(sk, slow);
4135 		break;
4136 	default:
4137 		return -ENOIOCTLCMD;
4138 	}
4139 
4140 	return 0;
4141 }
4142 
4143 static int mptcp_connect(struct sock *sk, struct sockaddr_unsized *uaddr,
4144 			 int addr_len)
4145 {
4146 	struct mptcp_subflow_context *subflow;
4147 	struct mptcp_sock *msk = mptcp_sk(sk);
4148 	int err = -EINVAL;
4149 	struct sock *ssk;
4150 
4151 	ssk = __mptcp_nmpc_sk(msk);
4152 	if (IS_ERR(ssk))
4153 		return PTR_ERR(ssk);
4154 
4155 	set_bit(MPTCP_RTX_ENABLED, &msk->flags);
4156 	mptcp_set_state(sk, TCP_SYN_SENT);
4157 	subflow = mptcp_subflow_ctx(ssk);
4158 #ifdef CONFIG_TCP_MD5SIG
4159 	/* no MPTCP if MD5SIG is enabled on this socket or we may run out of
4160 	 * TCP option space.
4161 	 */
4162 	if (rcu_access_pointer(tcp_sk(ssk)->md5sig_info))
4163 		mptcp_early_fallback(msk, subflow, MPTCP_MIB_MD5SIGFALLBACK);
4164 #endif
4165 	if (subflow->request_mptcp) {
4166 		if (mptcp_active_should_disable(sk))
4167 			mptcp_early_fallback(msk, subflow,
4168 					     MPTCP_MIB_MPCAPABLEACTIVEDISABLED);
4169 		else if (mptcp_token_new_connect(ssk) < 0)
4170 			mptcp_early_fallback(msk, subflow,
4171 					     MPTCP_MIB_TOKENFALLBACKINIT);
4172 	}
4173 
4174 	WRITE_ONCE(msk->write_seq, subflow->idsn);
4175 	WRITE_ONCE(msk->snd_nxt, subflow->idsn);
4176 	WRITE_ONCE(msk->snd_una, subflow->idsn);
4177 	if (likely(!__mptcp_check_fallback(msk)))
4178 		MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_MPCAPABLEACTIVE);
4179 
4180 	/* if reaching here via the fastopen/sendmsg path, the caller already
4181 	 * acquired the subflow socket lock, too.
4182 	 */
4183 	if (!msk->fastopening)
4184 		lock_sock(ssk);
4185 
4186 	/* the following mirrors closely a very small chunk of code from
4187 	 * __inet_stream_connect()
4188 	 */
4189 	if (ssk->sk_state != TCP_CLOSE)
4190 		goto out;
4191 
4192 	if (BPF_CGROUP_PRE_CONNECT_ENABLED(ssk)) {
4193 		err = ssk->sk_prot->pre_connect(ssk, uaddr, addr_len);
4194 		if (err)
4195 			goto out;
4196 	}
4197 
4198 	err = ssk->sk_prot->connect(ssk, uaddr, addr_len);
4199 	if (err < 0)
4200 		goto out;
4201 
4202 	inet_assign_bit(DEFER_CONNECT, sk, inet_test_bit(DEFER_CONNECT, ssk));
4203 
4204 out:
4205 	if (!msk->fastopening)
4206 		release_sock(ssk);
4207 
4208 	/* on successful connect, the msk state will be moved to established by
4209 	 * subflow_finish_connect()
4210 	 */
4211 	if (unlikely(err)) {
4212 		/* avoid leaving a dangling token in an unconnected socket */
4213 		mptcp_token_destroy(msk);
4214 		mptcp_set_state(sk, TCP_CLOSE);
4215 		return err;
4216 	}
4217 
4218 	mptcp_copy_inaddrs(sk, ssk);
4219 	return 0;
4220 }
4221 
4222 static struct proto mptcp_prot = {
4223 	.name		= "MPTCP",
4224 	.owner		= THIS_MODULE,
4225 	.init		= mptcp_init_sock,
4226 	.connect	= mptcp_connect,
4227 	.disconnect	= mptcp_disconnect,
4228 	.close		= mptcp_close,
4229 	.setsockopt	= mptcp_setsockopt,
4230 	.getsockopt	= mptcp_getsockopt,
4231 	.shutdown	= mptcp_shutdown,
4232 	.destroy	= mptcp_destroy,
4233 	.sendmsg	= mptcp_sendmsg,
4234 	.ioctl		= mptcp_ioctl,
4235 	.recvmsg	= mptcp_recvmsg,
4236 	.release_cb	= mptcp_release_cb,
4237 	.hash		= mptcp_hash,
4238 	.unhash		= mptcp_unhash,
4239 	.get_port	= mptcp_get_port,
4240 	.stream_memory_free	= mptcp_stream_memory_free,
4241 	.sockets_allocated	= &mptcp_sockets_allocated,
4242 
4243 	.memory_allocated	= &net_aligned_data.tcp_memory_allocated,
4244 	.per_cpu_fw_alloc	= &tcp_memory_per_cpu_fw_alloc,
4245 
4246 	.memory_pressure	= &tcp_memory_pressure,
4247 	.sysctl_wmem_offset	= offsetof(struct net, ipv4.sysctl_tcp_wmem),
4248 	.sysctl_rmem_offset	= offsetof(struct net, ipv4.sysctl_tcp_rmem),
4249 	.sysctl_mem	= sysctl_tcp_mem,
4250 	.obj_size	= sizeof(struct mptcp_sock),
4251 	.slab_flags	= SLAB_TYPESAFE_BY_RCU,
4252 	.no_autobind	= true,
4253 };
4254 
4255 static int mptcp_bind(struct socket *sock, struct sockaddr_unsized *uaddr, int addr_len)
4256 {
4257 	struct mptcp_sock *msk = mptcp_sk(sock->sk);
4258 	struct sock *ssk, *sk = sock->sk;
4259 	int err = -EINVAL;
4260 
4261 	lock_sock(sk);
4262 	ssk = __mptcp_nmpc_sk(msk);
4263 	if (IS_ERR(ssk)) {
4264 		err = PTR_ERR(ssk);
4265 		goto unlock;
4266 	}
4267 
4268 	if (sk->sk_family == AF_INET)
4269 		err = inet_bind_sk(ssk, uaddr, addr_len);
4270 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
4271 	else if (sk->sk_family == AF_INET6)
4272 		err = inet6_bind_sk(ssk, uaddr, addr_len);
4273 #endif
4274 	if (!err)
4275 		mptcp_copy_inaddrs(sk, ssk);
4276 
4277 unlock:
4278 	release_sock(sk);
4279 	return err;
4280 }
4281 
4282 static int mptcp_listen(struct socket *sock, int backlog)
4283 {
4284 	struct mptcp_sock *msk = mptcp_sk(sock->sk);
4285 	struct sock *sk = sock->sk;
4286 	struct sock *ssk;
4287 	int err;
4288 
4289 	pr_debug("msk=%p\n", msk);
4290 
4291 	lock_sock(sk);
4292 
4293 	err = -EINVAL;
4294 	if (sock->state != SS_UNCONNECTED || sock->type != SOCK_STREAM)
4295 		goto unlock;
4296 
4297 	ssk = __mptcp_nmpc_sk(msk);
4298 	if (IS_ERR(ssk)) {
4299 		err = PTR_ERR(ssk);
4300 		goto unlock;
4301 	}
4302 
4303 	set_bit(MPTCP_RTX_ENABLED, &msk->flags);
4304 	mptcp_set_state(sk, TCP_LISTEN);
4305 	sock_set_flag(sk, SOCK_RCU_FREE);
4306 
4307 	lock_sock(ssk);
4308 	err = __inet_listen_sk(ssk, backlog);
4309 	release_sock(ssk);
4310 	mptcp_set_state(sk, inet_sk_state_load(ssk));
4311 
4312 	if (!err) {
4313 		sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
4314 		mptcp_copy_inaddrs(sk, ssk);
4315 		mptcp_event_pm_listener(ssk, MPTCP_EVENT_LISTENER_CREATED);
4316 	}
4317 
4318 unlock:
4319 	release_sock(sk);
4320 	return err;
4321 }
4322 
4323 static void mptcp_graft_subflows(struct sock *sk)
4324 {
4325 	struct mptcp_subflow_context *subflow;
4326 	struct mptcp_sock *msk = mptcp_sk(sk);
4327 
4328 	if (mem_cgroup_sockets_enabled) {
4329 		LIST_HEAD(join_list);
4330 
4331 		/* Subflows joining after __inet_accept() will get the
4332 		 * mem CG properly initialized at mptcp_finish_join() time,
4333 		 * but subflows pending in join_list need explicit
4334 		 * initialization before flushing `backlog_unaccounted`
4335 		 * or MPTCP can later unexpectedly observe unaccounted memory.
4336 		 */
4337 		mptcp_data_lock(sk);
4338 		list_splice_init(&msk->join_list, &join_list);
4339 		mptcp_data_unlock(sk);
4340 
4341 		__mptcp_flush_join_list(sk, &join_list);
4342 	}
4343 
4344 	mptcp_for_each_subflow(msk, subflow) {
4345 		struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
4346 
4347 		lock_sock(ssk);
4348 
4349 		/* Set ssk->sk_socket of accept()ed flows to mptcp socket.
4350 		 * This is needed so NOSPACE flag can be set from tcp stack.
4351 		 */
4352 		if (!ssk->sk_socket)
4353 			mptcp_sock_graft(ssk, sk->sk_socket);
4354 
4355 		if (!mem_cgroup_sk_enabled(sk))
4356 			goto unlock;
4357 
4358 		__mptcp_inherit_cgrp_data(sk, ssk);
4359 		__mptcp_inherit_memcg(sk, ssk, GFP_KERNEL);
4360 
4361 unlock:
4362 		release_sock(ssk);
4363 	}
4364 
4365 	if (mem_cgroup_sk_enabled(sk)) {
4366 		gfp_t gfp = GFP_KERNEL | __GFP_NOFAIL;
4367 		int amt;
4368 
4369 		/* Account the backlog memory; prior accept() is aware of
4370 		 * fwd and rmem only.
4371 		 */
4372 		mptcp_data_lock(sk);
4373 		amt = sk_mem_pages(sk->sk_forward_alloc +
4374 				   msk->backlog_unaccounted +
4375 				   atomic_read(&sk->sk_rmem_alloc)) -
4376 		      sk_mem_pages(sk->sk_forward_alloc +
4377 				   atomic_read(&sk->sk_rmem_alloc));
4378 		msk->backlog_unaccounted = 0;
4379 		mptcp_data_unlock(sk);
4380 
4381 		if (amt)
4382 			mem_cgroup_sk_charge(sk, amt, gfp);
4383 	}
4384 }
4385 
4386 static int mptcp_stream_accept(struct socket *sock, struct socket *newsock,
4387 			       struct proto_accept_arg *arg)
4388 {
4389 	struct mptcp_sock *msk = mptcp_sk(sock->sk);
4390 	struct sock *ssk, *newsk;
4391 
4392 	pr_debug("msk=%p\n", msk);
4393 
4394 	/* Buggy applications can call accept on socket states other then LISTEN
4395 	 * but no need to allocate the first subflow just to error out.
4396 	 */
4397 	ssk = READ_ONCE(msk->first);
4398 	if (!ssk)
4399 		return -EINVAL;
4400 
4401 	pr_debug("ssk=%p, listener=%p\n", ssk, mptcp_subflow_ctx(ssk));
4402 	newsk = inet_csk_accept(ssk, arg);
4403 	if (!newsk)
4404 		return arg->err;
4405 
4406 	pr_debug("newsk=%p, subflow is mptcp=%d\n", newsk, sk_is_mptcp(newsk));
4407 	if (sk_is_mptcp(newsk)) {
4408 		struct mptcp_subflow_context *subflow;
4409 		struct sock *new_mptcp_sock;
4410 
4411 		subflow = mptcp_subflow_ctx(newsk);
4412 		new_mptcp_sock = subflow->conn;
4413 
4414 		/* is_mptcp should be false if subflow->conn is missing, see
4415 		 * subflow_syn_recv_sock()
4416 		 */
4417 		if (WARN_ON_ONCE(!new_mptcp_sock)) {
4418 			tcp_sk(newsk)->is_mptcp = 0;
4419 			goto tcpfallback;
4420 		}
4421 
4422 		newsk = new_mptcp_sock;
4423 		MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_MPCAPABLEPASSIVEACK);
4424 
4425 		newsk->sk_kern_sock = arg->kern;
4426 		lock_sock(newsk);
4427 		__inet_accept(sock, newsock, newsk);
4428 
4429 		set_bit(SOCK_CUSTOM_SOCKOPT, &newsock->flags);
4430 		msk = mptcp_sk(newsk);
4431 		msk->in_accept_queue = 0;
4432 
4433 		mptcp_graft_subflows(newsk);
4434 		mptcp_rps_record_subflows(msk);
4435 		__mptcp_propagate_sndbuf(newsk, mptcp_subflow_tcp_sock(subflow));
4436 
4437 		/* Do late cleanup for the first subflow as necessary. Also
4438 		 * deal with bad peers not doing a complete shutdown.
4439 		 */
4440 		if (unlikely(inet_sk_state_load(msk->first) == TCP_CLOSE)) {
4441 			if (unlikely(list_is_singular(&msk->conn_list)))
4442 				mptcp_set_state(newsk, TCP_CLOSE);
4443 			mptcp_close_ssk(newsk, msk->first,
4444 					mptcp_subflow_ctx(msk->first));
4445 		}
4446 	} else {
4447 tcpfallback:
4448 		newsk->sk_kern_sock = arg->kern;
4449 		lock_sock(newsk);
4450 		__inet_accept(sock, newsock, newsk);
4451 		/* we are being invoked after accepting a non-mp-capable
4452 		 * flow: sk is a tcp_sk, not an mptcp one.
4453 		 *
4454 		 * Hand the socket over to tcp so all further socket ops
4455 		 * bypass mptcp.
4456 		 */
4457 		WRITE_ONCE(newsock->sk->sk_socket->ops,
4458 			   mptcp_fallback_tcp_ops(newsock->sk));
4459 	}
4460 	release_sock(newsk);
4461 
4462 	return 0;
4463 }
4464 
4465 static __poll_t mptcp_check_writeable(struct mptcp_sock *msk)
4466 {
4467 	struct sock *sk = (struct sock *)msk;
4468 
4469 	if (__mptcp_stream_is_writeable(sk, 1))
4470 		return EPOLLOUT | EPOLLWRNORM;
4471 
4472 	set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
4473 	smp_mb__after_atomic(); /* NOSPACE is changed by mptcp_write_space() */
4474 	if (__mptcp_stream_is_writeable(sk, 1))
4475 		return EPOLLOUT | EPOLLWRNORM;
4476 
4477 	return 0;
4478 }
4479 
4480 static __poll_t mptcp_poll(struct file *file, struct socket *sock,
4481 			   struct poll_table_struct *wait)
4482 {
4483 	struct sock *sk = sock->sk;
4484 	struct mptcp_sock *msk;
4485 	__poll_t mask = 0;
4486 	u8 shutdown;
4487 	int state;
4488 
4489 	msk = mptcp_sk(sk);
4490 	sock_poll_wait(file, sock, wait);
4491 
4492 	state = inet_sk_state_load(sk);
4493 	pr_debug("msk=%p state=%d flags=%lx\n", msk, state, msk->flags);
4494 	if (state == TCP_LISTEN) {
4495 		struct sock *ssk = READ_ONCE(msk->first);
4496 
4497 		if (WARN_ON_ONCE(!ssk))
4498 			return 0;
4499 
4500 		return inet_csk_listen_poll(ssk);
4501 	}
4502 
4503 	shutdown = READ_ONCE(sk->sk_shutdown);
4504 	if (shutdown == SHUTDOWN_MASK || state == TCP_CLOSE)
4505 		mask |= EPOLLHUP;
4506 	if (shutdown & RCV_SHUTDOWN)
4507 		mask |= EPOLLIN | EPOLLRDNORM | EPOLLRDHUP;
4508 
4509 	if (state != TCP_SYN_SENT && state != TCP_SYN_RECV) {
4510 		mask |= mptcp_check_readable(sk);
4511 		if (shutdown & SEND_SHUTDOWN)
4512 			mask |= EPOLLOUT | EPOLLWRNORM;
4513 		else
4514 			mask |= mptcp_check_writeable(msk);
4515 	} else if (state == TCP_SYN_SENT &&
4516 		   inet_test_bit(DEFER_CONNECT, sk)) {
4517 		/* cf tcp_poll() note about TFO */
4518 		mask |= EPOLLOUT | EPOLLWRNORM;
4519 	}
4520 
4521 	/* This barrier is coupled with smp_wmb() in __mptcp_error_report() */
4522 	smp_rmb();
4523 	if (READ_ONCE(sk->sk_err))
4524 		mask |= EPOLLERR;
4525 
4526 	return mask;
4527 }
4528 
4529 static struct sk_buff *mptcp_recv_skb(struct sock *sk, u32 *off)
4530 {
4531 	struct mptcp_sock *msk = mptcp_sk(sk);
4532 	struct sk_buff *skb;
4533 	u32 offset;
4534 
4535 	if (!list_empty(&msk->backlog_list))
4536 		mptcp_move_skbs(sk);
4537 
4538 	while ((skb = skb_peek(&sk->sk_receive_queue)) != NULL) {
4539 		offset = MPTCP_SKB_CB(skb)->offset;
4540 		if (offset < skb->len) {
4541 			*off = offset;
4542 			return skb;
4543 		}
4544 		mptcp_eat_recv_skb(sk, skb);
4545 	}
4546 	return NULL;
4547 }
4548 
4549 /*
4550  * Note:
4551  *	- It is assumed that the socket was locked by the caller.
4552  */
4553 static int __mptcp_read_sock(struct sock *sk, read_descriptor_t *desc,
4554 			     sk_read_actor_t recv_actor, bool noack)
4555 {
4556 	struct mptcp_sock *msk = mptcp_sk(sk);
4557 	struct sk_buff *skb;
4558 	int copied = 0;
4559 	u32 offset;
4560 
4561 	msk_owned_by_me(msk);
4562 
4563 	if (sk->sk_state == TCP_LISTEN)
4564 		return -ENOTCONN;
4565 	while ((skb = mptcp_recv_skb(sk, &offset)) != NULL) {
4566 		u32 data_len = skb->len - offset;
4567 		int count;
4568 		u32 size;
4569 
4570 		size = min_t(size_t, data_len, INT_MAX);
4571 		count = recv_actor(desc, skb, offset, size);
4572 		if (count <= 0) {
4573 			if (!copied)
4574 				copied = count;
4575 			break;
4576 		}
4577 
4578 		copied += count;
4579 
4580 		msk->bytes_consumed += count;
4581 		if (count < data_len) {
4582 			MPTCP_SKB_CB(skb)->offset += count;
4583 			MPTCP_SKB_CB(skb)->map_seq += count;
4584 			break;
4585 		}
4586 
4587 		mptcp_eat_recv_skb(sk, skb);
4588 		if (!desc->count)
4589 			break;
4590 	}
4591 
4592 	if (noack)
4593 		goto out;
4594 
4595 	mptcp_rcv_space_adjust(msk, copied);
4596 
4597 	if (copied > 0) {
4598 		mptcp_recv_skb(sk, &offset);
4599 		mptcp_cleanup_rbuf(msk, copied);
4600 	}
4601 out:
4602 	return copied;
4603 }
4604 
4605 static int mptcp_read_sock(struct sock *sk, read_descriptor_t *desc,
4606 			   sk_read_actor_t recv_actor)
4607 {
4608 	return __mptcp_read_sock(sk, desc, recv_actor, false);
4609 }
4610 
4611 static int __mptcp_splice_read(struct sock *sk, struct tcp_splice_state *tss)
4612 {
4613 	/* Store TCP splice context information in read_descriptor_t. */
4614 	read_descriptor_t rd_desc = {
4615 		.arg.data = tss,
4616 		.count	  = tss->len,
4617 	};
4618 
4619 	return mptcp_read_sock(sk, &rd_desc, tcp_splice_data_recv);
4620 }
4621 
4622 /**
4623  *  mptcp_splice_read - splice data from MPTCP socket to a pipe
4624  * @sock:	socket to splice from
4625  * @ppos:	position (not valid)
4626  * @pipe:	pipe to splice to
4627  * @len:	number of bytes to splice
4628  * @flags:	splice modifier flags
4629  *
4630  * Description:
4631  *    Will read pages from given socket and fill them into a pipe.
4632  *
4633  * Return:
4634  *    Amount of bytes that have been spliced.
4635  *
4636  **/
4637 static ssize_t mptcp_splice_read(struct socket *sock, loff_t *ppos,
4638 				 struct pipe_inode_info *pipe, size_t len,
4639 				 unsigned int flags)
4640 {
4641 	struct tcp_splice_state tss = {
4642 		.pipe	= pipe,
4643 		.len	= len,
4644 		.flags	= flags,
4645 	};
4646 	struct sock *sk = sock->sk;
4647 	ssize_t spliced = 0;
4648 	int ret = 0;
4649 	long timeo;
4650 
4651 	/*
4652 	 * We can't seek on a socket input
4653 	 */
4654 	if (unlikely(*ppos))
4655 		return -ESPIPE;
4656 
4657 	lock_sock(sk);
4658 
4659 	mptcp_rps_record_subflows(mptcp_sk(sk));
4660 
4661 	timeo = sock_rcvtimeo(sk, sock->file->f_flags & O_NONBLOCK);
4662 	while (tss.len) {
4663 		ret = __mptcp_splice_read(sk, &tss);
4664 		if (ret < 0) {
4665 			break;
4666 		} else if (!ret) {
4667 			if (spliced)
4668 				break;
4669 			if (sock_flag(sk, SOCK_DONE))
4670 				break;
4671 			if (sk->sk_err) {
4672 				ret = sock_error(sk);
4673 				break;
4674 			}
4675 			if (sk->sk_shutdown & RCV_SHUTDOWN)
4676 				break;
4677 			if (sk->sk_state == TCP_CLOSE) {
4678 				/*
4679 				 * This occurs when user tries to read
4680 				 * from never connected socket.
4681 				 */
4682 				ret = -ENOTCONN;
4683 				break;
4684 			}
4685 			if (!timeo) {
4686 				ret = -EAGAIN;
4687 				break;
4688 			}
4689 			/* if __mptcp_splice_read() got nothing while we have
4690 			 * an skb in receive queue, we do not want to loop.
4691 			 * This might happen with URG data.
4692 			 */
4693 			if (!skb_queue_empty(&sk->sk_receive_queue))
4694 				break;
4695 			ret = sk_wait_data(sk, &timeo, NULL);
4696 			if (ret < 0)
4697 				break;
4698 			if (signal_pending(current)) {
4699 				ret = sock_intr_errno(timeo);
4700 				break;
4701 			}
4702 			continue;
4703 		}
4704 		tss.len -= ret;
4705 		spliced += ret;
4706 
4707 		if (!tss.len || !timeo)
4708 			break;
4709 		release_sock(sk);
4710 		lock_sock(sk);
4711 
4712 		if (tcp_recv_should_stop(sk))
4713 			break;
4714 	}
4715 
4716 	release_sock(sk);
4717 
4718 	if (spliced)
4719 		return spliced;
4720 
4721 	return ret;
4722 }
4723 
4724 static const struct proto_ops mptcp_stream_ops = {
4725 	.family		   = PF_INET,
4726 	.owner		   = THIS_MODULE,
4727 	.release	   = inet_release,
4728 	.bind		   = mptcp_bind,
4729 	.connect	   = inet_stream_connect,
4730 	.socketpair	   = sock_no_socketpair,
4731 	.accept		   = mptcp_stream_accept,
4732 	.getname	   = inet_getname,
4733 	.poll		   = mptcp_poll,
4734 	.ioctl		   = inet_ioctl,
4735 	.gettstamp	   = sock_gettstamp,
4736 	.listen		   = mptcp_listen,
4737 	.shutdown	   = inet_shutdown,
4738 	.setsockopt	   = sock_common_setsockopt,
4739 	.getsockopt	   = sock_common_getsockopt,
4740 	.sendmsg	   = inet_sendmsg,
4741 	.recvmsg	   = inet_recvmsg,
4742 	.mmap		   = sock_no_mmap,
4743 	.set_rcvlowat	   = mptcp_set_rcvlowat,
4744 	.read_sock	   = mptcp_read_sock,
4745 	.splice_read	   = mptcp_splice_read,
4746 };
4747 
4748 static struct inet_protosw mptcp_protosw = {
4749 	.type		= SOCK_STREAM,
4750 	.protocol	= IPPROTO_MPTCP,
4751 	.prot		= &mptcp_prot,
4752 	.ops		= &mptcp_stream_ops,
4753 	.flags		= INET_PROTOSW_ICSK,
4754 };
4755 
4756 static int mptcp_napi_poll(struct napi_struct *napi, int budget)
4757 {
4758 	struct mptcp_delegated_action *delegated;
4759 	struct mptcp_subflow_context *subflow;
4760 	int work_done = 0;
4761 
4762 	delegated = container_of(napi, struct mptcp_delegated_action, napi);
4763 	while ((subflow = mptcp_subflow_delegated_next(delegated)) != NULL) {
4764 		struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
4765 
4766 		bh_lock_sock_nested(ssk);
4767 		if (!sock_owned_by_user(ssk)) {
4768 			mptcp_subflow_process_delegated(ssk, xchg(&subflow->delegated_status, 0));
4769 		} else {
4770 			/* tcp_release_cb_override already processed
4771 			 * the action or will do at next release_sock().
4772 			 * In both case must dequeue the subflow here - on the same
4773 			 * CPU that scheduled it.
4774 			 */
4775 			smp_wmb();
4776 			clear_bit(MPTCP_DELEGATE_SCHEDULED, &subflow->delegated_status);
4777 		}
4778 		bh_unlock_sock(ssk);
4779 		sock_put(ssk);
4780 
4781 		if (++work_done == budget)
4782 			return budget;
4783 	}
4784 
4785 	/* always provide a 0 'work_done' argument, so that napi_complete_done
4786 	 * will not try accessing the NULL napi->dev ptr
4787 	 */
4788 	napi_complete_done(napi, 0);
4789 	return work_done;
4790 }
4791 
4792 void __init mptcp_proto_init(void)
4793 {
4794 	struct mptcp_delegated_action *delegated;
4795 	int cpu;
4796 
4797 	mptcp_prot.h.hashinfo = tcp_prot.h.hashinfo;
4798 
4799 	if (percpu_counter_init(&mptcp_sockets_allocated, 0, GFP_KERNEL))
4800 		panic("Failed to allocate MPTCP pcpu counter\n");
4801 
4802 	mptcp_napi_dev = alloc_netdev_dummy(0);
4803 	if (!mptcp_napi_dev)
4804 		panic("Failed to allocate MPTCP dummy netdev\n");
4805 	for_each_possible_cpu(cpu) {
4806 		delegated = per_cpu_ptr(&mptcp_delegated_actions, cpu);
4807 		INIT_LIST_HEAD(&delegated->head);
4808 		netif_napi_add_tx(mptcp_napi_dev, &delegated->napi,
4809 				  mptcp_napi_poll);
4810 		napi_enable(&delegated->napi);
4811 	}
4812 
4813 	mptcp_subflow_init();
4814 	mptcp_pm_init();
4815 	mptcp_sched_init();
4816 	mptcp_token_init();
4817 
4818 	if (proto_register(&mptcp_prot, 1) != 0)
4819 		panic("Failed to register MPTCP proto.\n");
4820 
4821 	inet_register_protosw(&mptcp_protosw);
4822 
4823 	BUILD_BUG_ON(sizeof(struct mptcp_skb_cb) > sizeof_field(struct sk_buff, cb));
4824 
4825 	/* struct mptcp_data_frag: 'overhead' corresponds to the alignment
4826 	 * (ALIGN(1, sizeof(long)) - 1, so 8-1) + the struct's size
4827 	 */
4828 	BUILD_BUG_ON(ALIGN(1, sizeof(long)) - 1 + sizeof(struct mptcp_data_frag)
4829 		     > U8_MAX);
4830 }
4831 
4832 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
4833 static const struct proto_ops mptcp_v6_stream_ops = {
4834 	.family		   = PF_INET6,
4835 	.owner		   = THIS_MODULE,
4836 	.release	   = inet6_release,
4837 	.bind		   = mptcp_bind,
4838 	.connect	   = inet_stream_connect,
4839 	.socketpair	   = sock_no_socketpair,
4840 	.accept		   = mptcp_stream_accept,
4841 	.getname	   = inet6_getname,
4842 	.poll		   = mptcp_poll,
4843 	.ioctl		   = inet6_ioctl,
4844 	.gettstamp	   = sock_gettstamp,
4845 	.listen		   = mptcp_listen,
4846 	.shutdown	   = inet_shutdown,
4847 	.setsockopt	   = sock_common_setsockopt,
4848 	.getsockopt	   = sock_common_getsockopt,
4849 	.sendmsg	   = inet6_sendmsg,
4850 	.recvmsg	   = inet6_recvmsg,
4851 	.mmap		   = sock_no_mmap,
4852 #ifdef CONFIG_COMPAT
4853 	.compat_ioctl	   = inet6_compat_ioctl,
4854 #endif
4855 	.set_rcvlowat	   = mptcp_set_rcvlowat,
4856 	.read_sock	   = mptcp_read_sock,
4857 	.splice_read	   = mptcp_splice_read,
4858 };
4859 
4860 static struct proto mptcp_v6_prot;
4861 
4862 static struct inet_protosw mptcp_v6_protosw = {
4863 	.type		= SOCK_STREAM,
4864 	.protocol	= IPPROTO_MPTCP,
4865 	.prot		= &mptcp_v6_prot,
4866 	.ops		= &mptcp_v6_stream_ops,
4867 	.flags		= INET_PROTOSW_ICSK,
4868 };
4869 
4870 int __init mptcp_proto_v6_init(void)
4871 {
4872 	int err;
4873 
4874 	mptcp_subflow_v6_init();
4875 
4876 	mptcp_v6_prot = mptcp_prot;
4877 	strscpy(mptcp_v6_prot.name, "MPTCPv6", sizeof(mptcp_v6_prot.name));
4878 	mptcp_v6_prot.slab = NULL;
4879 	mptcp_v6_prot.obj_size = sizeof(struct mptcp6_sock);
4880 	mptcp_v6_prot.ipv6_pinfo_offset = offsetof(struct mptcp6_sock, np);
4881 
4882 	err = proto_register(&mptcp_v6_prot, 1);
4883 	if (err)
4884 		return err;
4885 
4886 	err = inet6_register_protosw(&mptcp_v6_protosw);
4887 	if (err)
4888 		proto_unregister(&mptcp_v6_prot);
4889 
4890 	return err;
4891 }
4892 #endif
4893