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