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