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