xref: /openbmc/linux/net/mptcp/options.c (revision ec3edaa7ca6ce02f3ced3e28d6bb322d7e776497)
1eda7acddSPeter Krystad // SPDX-License-Identifier: GPL-2.0
2eda7acddSPeter Krystad /* Multipath TCP
3eda7acddSPeter Krystad  *
4eda7acddSPeter Krystad  * Copyright (c) 2017 - 2019, Intel Corporation.
5eda7acddSPeter Krystad  */
6eda7acddSPeter Krystad 
7eda7acddSPeter Krystad #include <linux/kernel.h>
8eda7acddSPeter Krystad #include <net/tcp.h>
9eda7acddSPeter Krystad #include <net/mptcp.h>
10eda7acddSPeter Krystad #include "protocol.h"
11eda7acddSPeter Krystad 
1265492c5aSPaolo Abeni static bool mptcp_cap_flag_sha256(u8 flags)
1365492c5aSPaolo Abeni {
1465492c5aSPaolo Abeni 	return (flags & MPTCP_CAP_FLAG_MASK) == MPTCP_CAP_HMAC_SHA256;
1565492c5aSPaolo Abeni }
1665492c5aSPaolo Abeni 
17cc7972eaSChristoph Paasch void mptcp_parse_option(const struct sk_buff *skb, const unsigned char *ptr,
18cc7972eaSChristoph Paasch 			int opsize, struct tcp_options_received *opt_rx)
19eda7acddSPeter Krystad {
20eda7acddSPeter Krystad 	struct mptcp_options_received *mp_opt = &opt_rx->mptcp;
21eda7acddSPeter Krystad 	u8 subtype = *ptr >> 4;
22648ef4b8SMat Martineau 	int expected_opsize;
23eda7acddSPeter Krystad 	u8 version;
24eda7acddSPeter Krystad 	u8 flags;
25eda7acddSPeter Krystad 
26eda7acddSPeter Krystad 	switch (subtype) {
27eda7acddSPeter Krystad 	case MPTCPOPT_MP_CAPABLE:
28cc7972eaSChristoph Paasch 		/* strict size checking */
29cc7972eaSChristoph Paasch 		if (!(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_SYN)) {
30cc7972eaSChristoph Paasch 			if (skb->len > tcp_hdr(skb)->doff << 2)
31cc7972eaSChristoph Paasch 				expected_opsize = TCPOLEN_MPTCP_MPC_ACK_DATA;
32cc7972eaSChristoph Paasch 			else
33cc7972eaSChristoph Paasch 				expected_opsize = TCPOLEN_MPTCP_MPC_ACK;
34cc7972eaSChristoph Paasch 		} else {
35cc7972eaSChristoph Paasch 			if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_ACK)
36cc7972eaSChristoph Paasch 				expected_opsize = TCPOLEN_MPTCP_MPC_SYNACK;
37cc7972eaSChristoph Paasch 			else
38cc7972eaSChristoph Paasch 				expected_opsize = TCPOLEN_MPTCP_MPC_SYN;
39cc7972eaSChristoph Paasch 		}
40cc7972eaSChristoph Paasch 		if (opsize != expected_opsize)
41eda7acddSPeter Krystad 			break;
42eda7acddSPeter Krystad 
43cc7972eaSChristoph Paasch 		/* try to be gentle vs future versions on the initial syn */
44eda7acddSPeter Krystad 		version = *ptr++ & MPTCP_VERSION_MASK;
45cc7972eaSChristoph Paasch 		if (opsize != TCPOLEN_MPTCP_MPC_SYN) {
46eda7acddSPeter Krystad 			if (version != MPTCP_SUPPORTED_VERSION)
47eda7acddSPeter Krystad 				break;
48cc7972eaSChristoph Paasch 		} else if (version < MPTCP_SUPPORTED_VERSION) {
49cc7972eaSChristoph Paasch 			break;
50cc7972eaSChristoph Paasch 		}
51eda7acddSPeter Krystad 
52eda7acddSPeter Krystad 		flags = *ptr++;
5365492c5aSPaolo Abeni 		if (!mptcp_cap_flag_sha256(flags) ||
54eda7acddSPeter Krystad 		    (flags & MPTCP_CAP_EXTENSIBILITY))
55eda7acddSPeter Krystad 			break;
56eda7acddSPeter Krystad 
57eda7acddSPeter Krystad 		/* RFC 6824, Section 3.1:
58eda7acddSPeter Krystad 		 * "For the Checksum Required bit (labeled "A"), if either
59eda7acddSPeter Krystad 		 * host requires the use of checksums, checksums MUST be used.
60eda7acddSPeter Krystad 		 * In other words, the only way for checksums not to be used
61eda7acddSPeter Krystad 		 * is if both hosts in their SYNs set A=0."
62eda7acddSPeter Krystad 		 *
63eda7acddSPeter Krystad 		 * Section 3.3.0:
64eda7acddSPeter Krystad 		 * "If a checksum is not present when its use has been
65eda7acddSPeter Krystad 		 * negotiated, the receiver MUST close the subflow with a RST as
66eda7acddSPeter Krystad 		 * it is considered broken."
67eda7acddSPeter Krystad 		 *
68eda7acddSPeter Krystad 		 * We don't implement DSS checksum - fall back to TCP.
69eda7acddSPeter Krystad 		 */
70eda7acddSPeter Krystad 		if (flags & MPTCP_CAP_CHECKSUM_REQD)
71eda7acddSPeter Krystad 			break;
72eda7acddSPeter Krystad 
73eda7acddSPeter Krystad 		mp_opt->mp_capable = 1;
74cc7972eaSChristoph Paasch 		if (opsize >= TCPOLEN_MPTCP_MPC_SYNACK) {
75eda7acddSPeter Krystad 			mp_opt->sndr_key = get_unaligned_be64(ptr);
76eda7acddSPeter Krystad 			ptr += 8;
77cc7972eaSChristoph Paasch 		}
78cc7972eaSChristoph Paasch 		if (opsize >= TCPOLEN_MPTCP_MPC_ACK) {
79eda7acddSPeter Krystad 			mp_opt->rcvr_key = get_unaligned_be64(ptr);
80eda7acddSPeter Krystad 			ptr += 8;
81eda7acddSPeter Krystad 		}
82cc7972eaSChristoph Paasch 		if (opsize == TCPOLEN_MPTCP_MPC_ACK_DATA) {
83cc7972eaSChristoph Paasch 			/* Section 3.1.:
84cc7972eaSChristoph Paasch 			 * "the data parameters in a MP_CAPABLE are semantically
85cc7972eaSChristoph Paasch 			 * equivalent to those in a DSS option and can be used
86cc7972eaSChristoph Paasch 			 * interchangeably."
87cc7972eaSChristoph Paasch 			 */
88cc7972eaSChristoph Paasch 			mp_opt->dss = 1;
89cc7972eaSChristoph Paasch 			mp_opt->use_map = 1;
90cc7972eaSChristoph Paasch 			mp_opt->mpc_map = 1;
91cc7972eaSChristoph Paasch 			mp_opt->data_len = get_unaligned_be16(ptr);
92cc7972eaSChristoph Paasch 			ptr += 2;
93cc7972eaSChristoph Paasch 		}
94cc7972eaSChristoph Paasch 		pr_debug("MP_CAPABLE version=%x, flags=%x, optlen=%d sndr=%llu, rcvr=%llu len=%d",
95cc7972eaSChristoph Paasch 			 version, flags, opsize, mp_opt->sndr_key,
96cc7972eaSChristoph Paasch 			 mp_opt->rcvr_key, mp_opt->data_len);
97eda7acddSPeter Krystad 		break;
98eda7acddSPeter Krystad 
99f296234cSPeter Krystad 	case MPTCPOPT_MP_JOIN:
100f296234cSPeter Krystad 		mp_opt->mp_join = 1;
101f296234cSPeter Krystad 		if (opsize == TCPOLEN_MPTCP_MPJ_SYN) {
102f296234cSPeter Krystad 			mp_opt->backup = *ptr++ & MPTCPOPT_BACKUP;
103f296234cSPeter Krystad 			mp_opt->join_id = *ptr++;
104f296234cSPeter Krystad 			mp_opt->token = get_unaligned_be32(ptr);
105f296234cSPeter Krystad 			ptr += 4;
106f296234cSPeter Krystad 			mp_opt->nonce = get_unaligned_be32(ptr);
107f296234cSPeter Krystad 			ptr += 4;
108f296234cSPeter Krystad 			pr_debug("MP_JOIN bkup=%u, id=%u, token=%u, nonce=%u",
109f296234cSPeter Krystad 				 mp_opt->backup, mp_opt->join_id,
110f296234cSPeter Krystad 				 mp_opt->token, mp_opt->nonce);
111f296234cSPeter Krystad 		} else if (opsize == TCPOLEN_MPTCP_MPJ_SYNACK) {
112f296234cSPeter Krystad 			mp_opt->backup = *ptr++ & MPTCPOPT_BACKUP;
113f296234cSPeter Krystad 			mp_opt->join_id = *ptr++;
114f296234cSPeter Krystad 			mp_opt->thmac = get_unaligned_be64(ptr);
115f296234cSPeter Krystad 			ptr += 8;
116f296234cSPeter Krystad 			mp_opt->nonce = get_unaligned_be32(ptr);
117f296234cSPeter Krystad 			ptr += 4;
118f296234cSPeter Krystad 			pr_debug("MP_JOIN bkup=%u, id=%u, thmac=%llu, nonce=%u",
119f296234cSPeter Krystad 				 mp_opt->backup, mp_opt->join_id,
120f296234cSPeter Krystad 				 mp_opt->thmac, mp_opt->nonce);
121f296234cSPeter Krystad 		} else if (opsize == TCPOLEN_MPTCP_MPJ_ACK) {
122f296234cSPeter Krystad 			ptr += 2;
123f296234cSPeter Krystad 			memcpy(mp_opt->hmac, ptr, MPTCPOPT_HMAC_LEN);
124f296234cSPeter Krystad 			pr_debug("MP_JOIN hmac");
125f296234cSPeter Krystad 		} else {
126f296234cSPeter Krystad 			pr_warn("MP_JOIN bad option size");
127f296234cSPeter Krystad 			mp_opt->mp_join = 0;
128f296234cSPeter Krystad 		}
129f296234cSPeter Krystad 		break;
130f296234cSPeter Krystad 
131eda7acddSPeter Krystad 	case MPTCPOPT_DSS:
132eda7acddSPeter Krystad 		pr_debug("DSS");
133648ef4b8SMat Martineau 		ptr++;
134648ef4b8SMat Martineau 
135cc7972eaSChristoph Paasch 		/* we must clear 'mpc_map' be able to detect MP_CAPABLE
136cc7972eaSChristoph Paasch 		 * map vs DSS map in mptcp_incoming_options(), and reconstruct
137cc7972eaSChristoph Paasch 		 * map info accordingly
138cc7972eaSChristoph Paasch 		 */
139cc7972eaSChristoph Paasch 		mp_opt->mpc_map = 0;
140648ef4b8SMat Martineau 		flags = (*ptr++) & MPTCP_DSS_FLAG_MASK;
141648ef4b8SMat Martineau 		mp_opt->data_fin = (flags & MPTCP_DSS_DATA_FIN) != 0;
142648ef4b8SMat Martineau 		mp_opt->dsn64 = (flags & MPTCP_DSS_DSN64) != 0;
143648ef4b8SMat Martineau 		mp_opt->use_map = (flags & MPTCP_DSS_HAS_MAP) != 0;
144648ef4b8SMat Martineau 		mp_opt->ack64 = (flags & MPTCP_DSS_ACK64) != 0;
145648ef4b8SMat Martineau 		mp_opt->use_ack = (flags & MPTCP_DSS_HAS_ACK);
146648ef4b8SMat Martineau 
147648ef4b8SMat Martineau 		pr_debug("data_fin=%d dsn64=%d use_map=%d ack64=%d use_ack=%d",
148648ef4b8SMat Martineau 			 mp_opt->data_fin, mp_opt->dsn64,
149648ef4b8SMat Martineau 			 mp_opt->use_map, mp_opt->ack64,
150648ef4b8SMat Martineau 			 mp_opt->use_ack);
151648ef4b8SMat Martineau 
152648ef4b8SMat Martineau 		expected_opsize = TCPOLEN_MPTCP_DSS_BASE;
153648ef4b8SMat Martineau 
154648ef4b8SMat Martineau 		if (mp_opt->use_ack) {
155648ef4b8SMat Martineau 			if (mp_opt->ack64)
156648ef4b8SMat Martineau 				expected_opsize += TCPOLEN_MPTCP_DSS_ACK64;
157648ef4b8SMat Martineau 			else
158648ef4b8SMat Martineau 				expected_opsize += TCPOLEN_MPTCP_DSS_ACK32;
159648ef4b8SMat Martineau 		}
160648ef4b8SMat Martineau 
161648ef4b8SMat Martineau 		if (mp_opt->use_map) {
162648ef4b8SMat Martineau 			if (mp_opt->dsn64)
163648ef4b8SMat Martineau 				expected_opsize += TCPOLEN_MPTCP_DSS_MAP64;
164648ef4b8SMat Martineau 			else
165648ef4b8SMat Martineau 				expected_opsize += TCPOLEN_MPTCP_DSS_MAP32;
166648ef4b8SMat Martineau 		}
167648ef4b8SMat Martineau 
168648ef4b8SMat Martineau 		/* RFC 6824, Section 3.3:
169648ef4b8SMat Martineau 		 * If a checksum is present, but its use had
170648ef4b8SMat Martineau 		 * not been negotiated in the MP_CAPABLE handshake,
171648ef4b8SMat Martineau 		 * the checksum field MUST be ignored.
172648ef4b8SMat Martineau 		 */
173648ef4b8SMat Martineau 		if (opsize != expected_opsize &&
174648ef4b8SMat Martineau 		    opsize != expected_opsize + TCPOLEN_MPTCP_DSS_CHECKSUM)
175648ef4b8SMat Martineau 			break;
176648ef4b8SMat Martineau 
177eda7acddSPeter Krystad 		mp_opt->dss = 1;
178648ef4b8SMat Martineau 
179648ef4b8SMat Martineau 		if (mp_opt->use_ack) {
180648ef4b8SMat Martineau 			if (mp_opt->ack64) {
181648ef4b8SMat Martineau 				mp_opt->data_ack = get_unaligned_be64(ptr);
182648ef4b8SMat Martineau 				ptr += 8;
183648ef4b8SMat Martineau 			} else {
184648ef4b8SMat Martineau 				mp_opt->data_ack = get_unaligned_be32(ptr);
185648ef4b8SMat Martineau 				ptr += 4;
186648ef4b8SMat Martineau 			}
187648ef4b8SMat Martineau 
188648ef4b8SMat Martineau 			pr_debug("data_ack=%llu", mp_opt->data_ack);
189648ef4b8SMat Martineau 		}
190648ef4b8SMat Martineau 
191648ef4b8SMat Martineau 		if (mp_opt->use_map) {
192648ef4b8SMat Martineau 			if (mp_opt->dsn64) {
193648ef4b8SMat Martineau 				mp_opt->data_seq = get_unaligned_be64(ptr);
194648ef4b8SMat Martineau 				ptr += 8;
195648ef4b8SMat Martineau 			} else {
196648ef4b8SMat Martineau 				mp_opt->data_seq = get_unaligned_be32(ptr);
197648ef4b8SMat Martineau 				ptr += 4;
198648ef4b8SMat Martineau 			}
199648ef4b8SMat Martineau 
200648ef4b8SMat Martineau 			mp_opt->subflow_seq = get_unaligned_be32(ptr);
201648ef4b8SMat Martineau 			ptr += 4;
202648ef4b8SMat Martineau 
203648ef4b8SMat Martineau 			mp_opt->data_len = get_unaligned_be16(ptr);
204648ef4b8SMat Martineau 			ptr += 2;
205648ef4b8SMat Martineau 
206648ef4b8SMat Martineau 			pr_debug("data_seq=%llu subflow_seq=%u data_len=%u",
207648ef4b8SMat Martineau 				 mp_opt->data_seq, mp_opt->subflow_seq,
208648ef4b8SMat Martineau 				 mp_opt->data_len);
209648ef4b8SMat Martineau 		}
210648ef4b8SMat Martineau 
211eda7acddSPeter Krystad 		break;
212eda7acddSPeter Krystad 
2133df523abSPeter Krystad 	case MPTCPOPT_ADD_ADDR:
2143df523abSPeter Krystad 		mp_opt->echo = (*ptr++) & MPTCP_ADDR_ECHO;
2153df523abSPeter Krystad 		if (!mp_opt->echo) {
2163df523abSPeter Krystad 			if (opsize == TCPOLEN_MPTCP_ADD_ADDR ||
2173df523abSPeter Krystad 			    opsize == TCPOLEN_MPTCP_ADD_ADDR_PORT)
2183df523abSPeter Krystad 				mp_opt->family = MPTCP_ADDR_IPVERSION_4;
2193df523abSPeter Krystad #if IS_ENABLED(CONFIG_MPTCP_IPV6)
2203df523abSPeter Krystad 			else if (opsize == TCPOLEN_MPTCP_ADD_ADDR6 ||
2213df523abSPeter Krystad 				 opsize == TCPOLEN_MPTCP_ADD_ADDR6_PORT)
2223df523abSPeter Krystad 				mp_opt->family = MPTCP_ADDR_IPVERSION_6;
2233df523abSPeter Krystad #endif
2243df523abSPeter Krystad 			else
2253df523abSPeter Krystad 				break;
2263df523abSPeter Krystad 		} else {
2273df523abSPeter Krystad 			if (opsize == TCPOLEN_MPTCP_ADD_ADDR_BASE ||
2283df523abSPeter Krystad 			    opsize == TCPOLEN_MPTCP_ADD_ADDR_BASE_PORT)
2293df523abSPeter Krystad 				mp_opt->family = MPTCP_ADDR_IPVERSION_4;
2303df523abSPeter Krystad #if IS_ENABLED(CONFIG_MPTCP_IPV6)
2313df523abSPeter Krystad 			else if (opsize == TCPOLEN_MPTCP_ADD_ADDR6_BASE ||
2323df523abSPeter Krystad 				 opsize == TCPOLEN_MPTCP_ADD_ADDR6_BASE_PORT)
2333df523abSPeter Krystad 				mp_opt->family = MPTCP_ADDR_IPVERSION_6;
2343df523abSPeter Krystad #endif
2353df523abSPeter Krystad 			else
2363df523abSPeter Krystad 				break;
2373df523abSPeter Krystad 		}
2383df523abSPeter Krystad 
2393df523abSPeter Krystad 		mp_opt->add_addr = 1;
2403df523abSPeter Krystad 		mp_opt->port = 0;
2413df523abSPeter Krystad 		mp_opt->addr_id = *ptr++;
2423df523abSPeter Krystad 		pr_debug("ADD_ADDR: id=%d", mp_opt->addr_id);
2433df523abSPeter Krystad 		if (mp_opt->family == MPTCP_ADDR_IPVERSION_4) {
2443df523abSPeter Krystad 			memcpy((u8 *)&mp_opt->addr.s_addr, (u8 *)ptr, 4);
2453df523abSPeter Krystad 			ptr += 4;
2463df523abSPeter Krystad 			if (opsize == TCPOLEN_MPTCP_ADD_ADDR_PORT ||
2473df523abSPeter Krystad 			    opsize == TCPOLEN_MPTCP_ADD_ADDR_BASE_PORT) {
2483df523abSPeter Krystad 				mp_opt->port = get_unaligned_be16(ptr);
2493df523abSPeter Krystad 				ptr += 2;
2503df523abSPeter Krystad 			}
2513df523abSPeter Krystad 		}
2523df523abSPeter Krystad #if IS_ENABLED(CONFIG_MPTCP_IPV6)
2533df523abSPeter Krystad 		else {
2543df523abSPeter Krystad 			memcpy(mp_opt->addr6.s6_addr, (u8 *)ptr, 16);
2553df523abSPeter Krystad 			ptr += 16;
2563df523abSPeter Krystad 			if (opsize == TCPOLEN_MPTCP_ADD_ADDR6_PORT ||
2573df523abSPeter Krystad 			    opsize == TCPOLEN_MPTCP_ADD_ADDR6_BASE_PORT) {
2583df523abSPeter Krystad 				mp_opt->port = get_unaligned_be16(ptr);
2593df523abSPeter Krystad 				ptr += 2;
2603df523abSPeter Krystad 			}
2613df523abSPeter Krystad 		}
2623df523abSPeter Krystad #endif
2633df523abSPeter Krystad 		if (!mp_opt->echo) {
2643df523abSPeter Krystad 			mp_opt->ahmac = get_unaligned_be64(ptr);
2653df523abSPeter Krystad 			ptr += 8;
2663df523abSPeter Krystad 		}
2673df523abSPeter Krystad 		break;
2683df523abSPeter Krystad 
2693df523abSPeter Krystad 	case MPTCPOPT_RM_ADDR:
2703df523abSPeter Krystad 		if (opsize != TCPOLEN_MPTCP_RM_ADDR_BASE)
2713df523abSPeter Krystad 			break;
2723df523abSPeter Krystad 
2733df523abSPeter Krystad 		mp_opt->rm_addr = 1;
2743df523abSPeter Krystad 		mp_opt->rm_id = *ptr++;
2753df523abSPeter Krystad 		pr_debug("RM_ADDR: id=%d", mp_opt->rm_id);
2763df523abSPeter Krystad 		break;
2773df523abSPeter Krystad 
278eda7acddSPeter Krystad 	default:
279eda7acddSPeter Krystad 		break;
280eda7acddSPeter Krystad 	}
281eda7acddSPeter Krystad }
282eda7acddSPeter Krystad 
283cec37a6eSPeter Krystad void mptcp_get_options(const struct sk_buff *skb,
284cec37a6eSPeter Krystad 		       struct tcp_options_received *opt_rx)
285cec37a6eSPeter Krystad {
286cec37a6eSPeter Krystad 	const unsigned char *ptr;
287cec37a6eSPeter Krystad 	const struct tcphdr *th = tcp_hdr(skb);
288cec37a6eSPeter Krystad 	int length = (th->doff * 4) - sizeof(struct tcphdr);
289cec37a6eSPeter Krystad 
290cec37a6eSPeter Krystad 	ptr = (const unsigned char *)(th + 1);
291cec37a6eSPeter Krystad 
292cec37a6eSPeter Krystad 	while (length > 0) {
293cec37a6eSPeter Krystad 		int opcode = *ptr++;
294cec37a6eSPeter Krystad 		int opsize;
295cec37a6eSPeter Krystad 
296cec37a6eSPeter Krystad 		switch (opcode) {
297cec37a6eSPeter Krystad 		case TCPOPT_EOL:
298cec37a6eSPeter Krystad 			return;
299cec37a6eSPeter Krystad 		case TCPOPT_NOP:	/* Ref: RFC 793 section 3.1 */
300cec37a6eSPeter Krystad 			length--;
301cec37a6eSPeter Krystad 			continue;
302cec37a6eSPeter Krystad 		default:
303cec37a6eSPeter Krystad 			opsize = *ptr++;
304cec37a6eSPeter Krystad 			if (opsize < 2) /* "silly options" */
305cec37a6eSPeter Krystad 				return;
306cec37a6eSPeter Krystad 			if (opsize > length)
307cec37a6eSPeter Krystad 				return;	/* don't parse partial options */
308cec37a6eSPeter Krystad 			if (opcode == TCPOPT_MPTCP)
309cc7972eaSChristoph Paasch 				mptcp_parse_option(skb, ptr, opsize, opt_rx);
310cec37a6eSPeter Krystad 			ptr += opsize - 2;
311cec37a6eSPeter Krystad 			length -= opsize;
312cec37a6eSPeter Krystad 		}
313cec37a6eSPeter Krystad 	}
314cec37a6eSPeter Krystad }
315cec37a6eSPeter Krystad 
316cc7972eaSChristoph Paasch bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb,
317cc7972eaSChristoph Paasch 		       unsigned int *size, struct mptcp_out_options *opts)
318cec37a6eSPeter Krystad {
319cec37a6eSPeter Krystad 	struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
320cec37a6eSPeter Krystad 
321cc7972eaSChristoph Paasch 	/* we will use snd_isn to detect first pkt [re]transmission
322cc7972eaSChristoph Paasch 	 * in mptcp_established_options_mp()
323cc7972eaSChristoph Paasch 	 */
324cc7972eaSChristoph Paasch 	subflow->snd_isn = TCP_SKB_CB(skb)->end_seq;
325cec37a6eSPeter Krystad 	if (subflow->request_mptcp) {
326cec37a6eSPeter Krystad 		pr_debug("local_key=%llu", subflow->local_key);
327cec37a6eSPeter Krystad 		opts->suboptions = OPTION_MPTCP_MPC_SYN;
328cec37a6eSPeter Krystad 		opts->sndr_key = subflow->local_key;
329cec37a6eSPeter Krystad 		*size = TCPOLEN_MPTCP_MPC_SYN;
330cec37a6eSPeter Krystad 		return true;
331*ec3edaa7SPeter Krystad 	} else if (subflow->request_join) {
332*ec3edaa7SPeter Krystad 		pr_debug("remote_token=%u, nonce=%u", subflow->remote_token,
333*ec3edaa7SPeter Krystad 			 subflow->local_nonce);
334*ec3edaa7SPeter Krystad 		opts->suboptions = OPTION_MPTCP_MPJ_SYN;
335*ec3edaa7SPeter Krystad 		opts->join_id = subflow->local_id;
336*ec3edaa7SPeter Krystad 		opts->token = subflow->remote_token;
337*ec3edaa7SPeter Krystad 		opts->nonce = subflow->local_nonce;
338*ec3edaa7SPeter Krystad 		opts->backup = subflow->request_bkup;
339*ec3edaa7SPeter Krystad 		*size = TCPOLEN_MPTCP_MPJ_SYN;
340*ec3edaa7SPeter Krystad 		return true;
341cec37a6eSPeter Krystad 	}
342cec37a6eSPeter Krystad 	return false;
343cec37a6eSPeter Krystad }
344cec37a6eSPeter Krystad 
345cec37a6eSPeter Krystad void mptcp_rcv_synsent(struct sock *sk)
346cec37a6eSPeter Krystad {
347cec37a6eSPeter Krystad 	struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
348cec37a6eSPeter Krystad 	struct tcp_sock *tp = tcp_sk(sk);
349cec37a6eSPeter Krystad 
350cec37a6eSPeter Krystad 	if (subflow->request_mptcp && tp->rx_opt.mptcp.mp_capable) {
351cec37a6eSPeter Krystad 		subflow->mp_capable = 1;
352d22f4988SChristoph Paasch 		subflow->can_ack = 1;
353cec37a6eSPeter Krystad 		subflow->remote_key = tp->rx_opt.mptcp.sndr_key;
354*ec3edaa7SPeter Krystad 		pr_debug("subflow=%p, remote_key=%llu", subflow,
355*ec3edaa7SPeter Krystad 			 subflow->remote_key);
356*ec3edaa7SPeter Krystad 	} else if (subflow->request_join && tp->rx_opt.mptcp.mp_join) {
357*ec3edaa7SPeter Krystad 		subflow->mp_join = 1;
358*ec3edaa7SPeter Krystad 		subflow->thmac = tp->rx_opt.mptcp.thmac;
359*ec3edaa7SPeter Krystad 		subflow->remote_nonce = tp->rx_opt.mptcp.nonce;
360*ec3edaa7SPeter Krystad 		pr_debug("subflow=%p, thmac=%llu, remote_nonce=%u", subflow,
361*ec3edaa7SPeter Krystad 			 subflow->thmac, subflow->remote_nonce);
362*ec3edaa7SPeter Krystad 	} else if (subflow->request_mptcp) {
363cec37a6eSPeter Krystad 		tcp_sk(sk)->is_mptcp = 0;
364cec37a6eSPeter Krystad 	}
365cec37a6eSPeter Krystad }
366cec37a6eSPeter Krystad 
367*ec3edaa7SPeter Krystad /* MP_JOIN client subflow must wait for 4th ack before sending any data:
368*ec3edaa7SPeter Krystad  * TCP can't schedule delack timer before the subflow is fully established.
369*ec3edaa7SPeter Krystad  * MPTCP uses the delack timer to do 3rd ack retransmissions
370*ec3edaa7SPeter Krystad  */
371*ec3edaa7SPeter Krystad static void schedule_3rdack_retransmission(struct sock *sk)
372*ec3edaa7SPeter Krystad {
373*ec3edaa7SPeter Krystad 	struct inet_connection_sock *icsk = inet_csk(sk);
374*ec3edaa7SPeter Krystad 	struct tcp_sock *tp = tcp_sk(sk);
375*ec3edaa7SPeter Krystad 	unsigned long timeout;
376*ec3edaa7SPeter Krystad 
377*ec3edaa7SPeter Krystad 	/* reschedule with a timeout above RTT, as we must look only for drop */
378*ec3edaa7SPeter Krystad 	if (tp->srtt_us)
379*ec3edaa7SPeter Krystad 		timeout = tp->srtt_us << 1;
380*ec3edaa7SPeter Krystad 	else
381*ec3edaa7SPeter Krystad 		timeout = TCP_TIMEOUT_INIT;
382*ec3edaa7SPeter Krystad 
383*ec3edaa7SPeter Krystad 	WARN_ON_ONCE(icsk->icsk_ack.pending & ICSK_ACK_TIMER);
384*ec3edaa7SPeter Krystad 	icsk->icsk_ack.pending |= ICSK_ACK_SCHED | ICSK_ACK_TIMER;
385*ec3edaa7SPeter Krystad 	icsk->icsk_ack.timeout = timeout;
386*ec3edaa7SPeter Krystad 	sk_reset_timer(sk, &icsk->icsk_delack_timer, timeout);
387*ec3edaa7SPeter Krystad }
388*ec3edaa7SPeter Krystad 
389*ec3edaa7SPeter Krystad static void clear_3rdack_retransmission(struct sock *sk)
390*ec3edaa7SPeter Krystad {
391*ec3edaa7SPeter Krystad 	struct inet_connection_sock *icsk = inet_csk(sk);
392*ec3edaa7SPeter Krystad 
393*ec3edaa7SPeter Krystad 	sk_stop_timer(sk, &icsk->icsk_delack_timer);
394*ec3edaa7SPeter Krystad 	icsk->icsk_ack.timeout = 0;
395*ec3edaa7SPeter Krystad 	icsk->icsk_ack.ato = 0;
396*ec3edaa7SPeter Krystad 	icsk->icsk_ack.pending &= ~(ICSK_ACK_SCHED | ICSK_ACK_TIMER);
397*ec3edaa7SPeter Krystad }
398*ec3edaa7SPeter Krystad 
399cc7972eaSChristoph Paasch static bool mptcp_established_options_mp(struct sock *sk, struct sk_buff *skb,
400cc7972eaSChristoph Paasch 					 unsigned int *size,
4016d0060f6SMat Martineau 					 unsigned int remaining,
402cec37a6eSPeter Krystad 					 struct mptcp_out_options *opts)
403cec37a6eSPeter Krystad {
404cec37a6eSPeter Krystad 	struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
405cc7972eaSChristoph Paasch 	struct mptcp_ext *mpext;
406cc7972eaSChristoph Paasch 	unsigned int data_len;
407cec37a6eSPeter Krystad 
408*ec3edaa7SPeter Krystad 	/* When skb is not available, we better over-estimate the emitted
409*ec3edaa7SPeter Krystad 	 * options len. A full DSS option (28 bytes) is longer than
410*ec3edaa7SPeter Krystad 	 * TCPOLEN_MPTCP_MPC_ACK_DATA(22) or TCPOLEN_MPTCP_MPJ_ACK(24), so
411*ec3edaa7SPeter Krystad 	 * tell the caller to defer the estimate to
412*ec3edaa7SPeter Krystad 	 * mptcp_established_options_dss(), which will reserve enough space.
413cc7972eaSChristoph Paasch 	 */
414*ec3edaa7SPeter Krystad 	if (!skb)
415*ec3edaa7SPeter Krystad 		return false;
416*ec3edaa7SPeter Krystad 
417*ec3edaa7SPeter Krystad 	/* MPC/MPJ needed only on 3rd ack packet */
418*ec3edaa7SPeter Krystad 	if (subflow->fully_established ||
419*ec3edaa7SPeter Krystad 	    subflow->snd_isn != TCP_SKB_CB(skb)->seq)
420*ec3edaa7SPeter Krystad 		return false;
421*ec3edaa7SPeter Krystad 
422*ec3edaa7SPeter Krystad 	if (subflow->mp_capable) {
423cc7972eaSChristoph Paasch 		mpext = mptcp_get_ext(skb);
424cc7972eaSChristoph Paasch 		data_len = mpext ? mpext->data_len : 0;
425cc7972eaSChristoph Paasch 
426cc7972eaSChristoph Paasch 		/* we will check ext_copy.data_len in mptcp_write_options() to
427cc7972eaSChristoph Paasch 		 * discriminate between TCPOLEN_MPTCP_MPC_ACK_DATA and
428cc7972eaSChristoph Paasch 		 * TCPOLEN_MPTCP_MPC_ACK
429cc7972eaSChristoph Paasch 		 */
430cc7972eaSChristoph Paasch 		opts->ext_copy.data_len = data_len;
431cec37a6eSPeter Krystad 		opts->suboptions = OPTION_MPTCP_MPC_ACK;
432cec37a6eSPeter Krystad 		opts->sndr_key = subflow->local_key;
433cec37a6eSPeter Krystad 		opts->rcvr_key = subflow->remote_key;
434cc7972eaSChristoph Paasch 
435cc7972eaSChristoph Paasch 		/* Section 3.1.
436cc7972eaSChristoph Paasch 		 * The MP_CAPABLE option is carried on the SYN, SYN/ACK, and ACK
437cc7972eaSChristoph Paasch 		 * packets that start the first subflow of an MPTCP connection,
438cc7972eaSChristoph Paasch 		 * as well as the first packet that carries data
439cc7972eaSChristoph Paasch 		 */
440cc7972eaSChristoph Paasch 		if (data_len > 0)
441cc7972eaSChristoph Paasch 			*size = ALIGN(TCPOLEN_MPTCP_MPC_ACK_DATA, 4);
442cc7972eaSChristoph Paasch 		else
443cec37a6eSPeter Krystad 			*size = TCPOLEN_MPTCP_MPC_ACK;
444cc7972eaSChristoph Paasch 
445cc7972eaSChristoph Paasch 		pr_debug("subflow=%p, local_key=%llu, remote_key=%llu map_len=%d",
446cc7972eaSChristoph Paasch 			 subflow, subflow->local_key, subflow->remote_key,
447cc7972eaSChristoph Paasch 			 data_len);
448cc7972eaSChristoph Paasch 
449cec37a6eSPeter Krystad 		return true;
450*ec3edaa7SPeter Krystad 	} else if (subflow->mp_join) {
451*ec3edaa7SPeter Krystad 		opts->suboptions = OPTION_MPTCP_MPJ_ACK;
452*ec3edaa7SPeter Krystad 		memcpy(opts->hmac, subflow->hmac, MPTCPOPT_HMAC_LEN);
453*ec3edaa7SPeter Krystad 		*size = TCPOLEN_MPTCP_MPJ_ACK;
454*ec3edaa7SPeter Krystad 		pr_debug("subflow=%p", subflow);
455*ec3edaa7SPeter Krystad 
456*ec3edaa7SPeter Krystad 		schedule_3rdack_retransmission(sk);
457*ec3edaa7SPeter Krystad 		return true;
458cec37a6eSPeter Krystad 	}
459cec37a6eSPeter Krystad 	return false;
460cec37a6eSPeter Krystad }
461cec37a6eSPeter Krystad 
4626d0060f6SMat Martineau static void mptcp_write_data_fin(struct mptcp_subflow_context *subflow,
4636d0060f6SMat Martineau 				 struct mptcp_ext *ext)
4646d0060f6SMat Martineau {
4656d0060f6SMat Martineau 	if (!ext->use_map) {
4666d0060f6SMat Martineau 		/* RFC6824 requires a DSS mapping with specific values
4676d0060f6SMat Martineau 		 * if DATA_FIN is set but no data payload is mapped
4686d0060f6SMat Martineau 		 */
4696d37a0b8SMat Martineau 		ext->data_fin = 1;
4706d0060f6SMat Martineau 		ext->use_map = 1;
4716d0060f6SMat Martineau 		ext->dsn64 = 1;
47276c42a29SMat Martineau 		ext->data_seq = subflow->data_fin_tx_seq;
4736d0060f6SMat Martineau 		ext->subflow_seq = 0;
4746d0060f6SMat Martineau 		ext->data_len = 1;
4756d37a0b8SMat Martineau 	} else if (ext->data_seq + ext->data_len == subflow->data_fin_tx_seq) {
4766d37a0b8SMat Martineau 		/* If there's an existing DSS mapping and it is the
4776d37a0b8SMat Martineau 		 * final mapping, DATA_FIN consumes 1 additional byte of
4786d37a0b8SMat Martineau 		 * mapping space.
4796d0060f6SMat Martineau 		 */
4806d37a0b8SMat Martineau 		ext->data_fin = 1;
4816d0060f6SMat Martineau 		ext->data_len++;
4826d0060f6SMat Martineau 	}
4836d0060f6SMat Martineau }
4846d0060f6SMat Martineau 
4856d0060f6SMat Martineau static bool mptcp_established_options_dss(struct sock *sk, struct sk_buff *skb,
4866d0060f6SMat Martineau 					  unsigned int *size,
4876d0060f6SMat Martineau 					  unsigned int remaining,
4886d0060f6SMat Martineau 					  struct mptcp_out_options *opts)
4896d0060f6SMat Martineau {
4906d0060f6SMat Martineau 	struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
4916d0060f6SMat Martineau 	unsigned int dss_size = 0;
4926d0060f6SMat Martineau 	struct mptcp_ext *mpext;
4936d0060f6SMat Martineau 	struct mptcp_sock *msk;
4946d0060f6SMat Martineau 	unsigned int ack_size;
495d22f4988SChristoph Paasch 	bool ret = false;
4966d0060f6SMat Martineau 	u8 tcp_fin;
4976d0060f6SMat Martineau 
4986d0060f6SMat Martineau 	if (skb) {
4996d0060f6SMat Martineau 		mpext = mptcp_get_ext(skb);
5006d0060f6SMat Martineau 		tcp_fin = TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN;
5016d0060f6SMat Martineau 	} else {
5026d0060f6SMat Martineau 		mpext = NULL;
5036d0060f6SMat Martineau 		tcp_fin = 0;
5046d0060f6SMat Martineau 	}
5056d0060f6SMat Martineau 
5066d0060f6SMat Martineau 	if (!skb || (mpext && mpext->use_map) || tcp_fin) {
5076d0060f6SMat Martineau 		unsigned int map_size;
5086d0060f6SMat Martineau 
5096d0060f6SMat Martineau 		map_size = TCPOLEN_MPTCP_DSS_BASE + TCPOLEN_MPTCP_DSS_MAP64;
5106d0060f6SMat Martineau 
5116d0060f6SMat Martineau 		remaining -= map_size;
5126d0060f6SMat Martineau 		dss_size = map_size;
5136d0060f6SMat Martineau 		if (mpext)
5146d0060f6SMat Martineau 			opts->ext_copy = *mpext;
5156d0060f6SMat Martineau 
51676c42a29SMat Martineau 		if (skb && tcp_fin && subflow->data_fin_tx_enable)
5176d0060f6SMat Martineau 			mptcp_write_data_fin(subflow, &opts->ext_copy);
518d22f4988SChristoph Paasch 		ret = true;
519d22f4988SChristoph Paasch 	}
520d22f4988SChristoph Paasch 
5212398e399SPaolo Abeni 	/* passive sockets msk will set the 'can_ack' after accept(), even
5222398e399SPaolo Abeni 	 * if the first subflow may have the already the remote key handy
5232398e399SPaolo Abeni 	 */
524d22f4988SChristoph Paasch 	opts->ext_copy.use_ack = 0;
525d22f4988SChristoph Paasch 	msk = mptcp_sk(subflow->conn);
526dc093db5SPaolo Abeni 	if (!READ_ONCE(msk->can_ack)) {
527d22f4988SChristoph Paasch 		*size = ALIGN(dss_size, 4);
528d22f4988SChristoph Paasch 		return ret;
5296d0060f6SMat Martineau 	}
5306d0060f6SMat Martineau 
5316d0060f6SMat Martineau 	ack_size = TCPOLEN_MPTCP_DSS_ACK64;
5326d0060f6SMat Martineau 
5336d0060f6SMat Martineau 	/* Add kind/length/subtype/flag overhead if mapping is not populated */
5346d0060f6SMat Martineau 	if (dss_size == 0)
5356d0060f6SMat Martineau 		ack_size += TCPOLEN_MPTCP_DSS_BASE;
5366d0060f6SMat Martineau 
5376d0060f6SMat Martineau 	dss_size += ack_size;
5386d0060f6SMat Martineau 
539dc093db5SPaolo Abeni 	opts->ext_copy.data_ack = msk->ack_seq;
5406d0060f6SMat Martineau 	opts->ext_copy.ack64 = 1;
5416d0060f6SMat Martineau 	opts->ext_copy.use_ack = 1;
5426d0060f6SMat Martineau 
5436d0060f6SMat Martineau 	*size = ALIGN(dss_size, 4);
5446d0060f6SMat Martineau 	return true;
5456d0060f6SMat Martineau }
5466d0060f6SMat Martineau 
5473df523abSPeter Krystad static u64 add_addr_generate_hmac(u64 key1, u64 key2, u8 addr_id,
5483df523abSPeter Krystad 				  struct in_addr *addr)
5493df523abSPeter Krystad {
5503df523abSPeter Krystad 	u8 hmac[MPTCP_ADDR_HMAC_LEN];
5513df523abSPeter Krystad 	u8 msg[7];
5523df523abSPeter Krystad 
5533df523abSPeter Krystad 	msg[0] = addr_id;
5543df523abSPeter Krystad 	memcpy(&msg[1], &addr->s_addr, 4);
5553df523abSPeter Krystad 	msg[5] = 0;
5563df523abSPeter Krystad 	msg[6] = 0;
5573df523abSPeter Krystad 
5583df523abSPeter Krystad 	mptcp_crypto_hmac_sha(key1, key2, msg, 7, hmac);
5593df523abSPeter Krystad 
5603df523abSPeter Krystad 	return get_unaligned_be64(hmac);
5613df523abSPeter Krystad }
5623df523abSPeter Krystad 
5633df523abSPeter Krystad #if IS_ENABLED(CONFIG_MPTCP_IPV6)
5643df523abSPeter Krystad static u64 add_addr6_generate_hmac(u64 key1, u64 key2, u8 addr_id,
5653df523abSPeter Krystad 				   struct in6_addr *addr)
5663df523abSPeter Krystad {
5673df523abSPeter Krystad 	u8 hmac[MPTCP_ADDR_HMAC_LEN];
5683df523abSPeter Krystad 	u8 msg[19];
5693df523abSPeter Krystad 
5703df523abSPeter Krystad 	msg[0] = addr_id;
5713df523abSPeter Krystad 	memcpy(&msg[1], &addr->s6_addr, 16);
5723df523abSPeter Krystad 	msg[17] = 0;
5733df523abSPeter Krystad 	msg[18] = 0;
5743df523abSPeter Krystad 
5753df523abSPeter Krystad 	mptcp_crypto_hmac_sha(key1, key2, msg, 19, hmac);
5763df523abSPeter Krystad 
5773df523abSPeter Krystad 	return get_unaligned_be64(hmac);
5783df523abSPeter Krystad }
5793df523abSPeter Krystad #endif
5803df523abSPeter Krystad 
5813df523abSPeter Krystad static bool mptcp_established_options_addr(struct sock *sk,
5823df523abSPeter Krystad 					   unsigned int *size,
5833df523abSPeter Krystad 					   unsigned int remaining,
5843df523abSPeter Krystad 					   struct mptcp_out_options *opts)
5853df523abSPeter Krystad {
5863df523abSPeter Krystad 	struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
5873df523abSPeter Krystad 	struct mptcp_sock *msk = mptcp_sk(subflow->conn);
5881b1c7a0eSPeter Krystad 	struct mptcp_addr_info saddr;
5891b1c7a0eSPeter Krystad 	int len;
5903df523abSPeter Krystad 
5911b1c7a0eSPeter Krystad 	if (!mptcp_pm_should_signal(msk) ||
5921b1c7a0eSPeter Krystad 	    !(mptcp_pm_addr_signal(msk, remaining, &saddr)))
5933df523abSPeter Krystad 		return false;
5941b1c7a0eSPeter Krystad 
5951b1c7a0eSPeter Krystad 	len = mptcp_add_addr_len(saddr.family);
5961b1c7a0eSPeter Krystad 	if (remaining < len)
5971b1c7a0eSPeter Krystad 		return false;
5981b1c7a0eSPeter Krystad 
5991b1c7a0eSPeter Krystad 	*size = len;
6001b1c7a0eSPeter Krystad 	opts->addr_id = saddr.id;
6011b1c7a0eSPeter Krystad 	if (saddr.family == AF_INET) {
6023df523abSPeter Krystad 		opts->suboptions |= OPTION_MPTCP_ADD_ADDR;
6031b1c7a0eSPeter Krystad 		opts->addr = saddr.addr;
6043df523abSPeter Krystad 		opts->ahmac = add_addr_generate_hmac(msk->local_key,
6053df523abSPeter Krystad 						     msk->remote_key,
6063df523abSPeter Krystad 						     opts->addr_id,
6073df523abSPeter Krystad 						     &opts->addr);
6083df523abSPeter Krystad 	}
6093df523abSPeter Krystad #if IS_ENABLED(CONFIG_MPTCP_IPV6)
6101b1c7a0eSPeter Krystad 	else if (saddr.family == AF_INET6) {
6113df523abSPeter Krystad 		opts->suboptions |= OPTION_MPTCP_ADD_ADDR6;
6121b1c7a0eSPeter Krystad 		opts->addr6 = saddr.addr6;
6133df523abSPeter Krystad 		opts->ahmac = add_addr6_generate_hmac(msk->local_key,
6143df523abSPeter Krystad 						      msk->remote_key,
6153df523abSPeter Krystad 						      opts->addr_id,
6163df523abSPeter Krystad 						      &opts->addr6);
6173df523abSPeter Krystad 	}
6183df523abSPeter Krystad #endif
6193df523abSPeter Krystad 	pr_debug("addr_id=%d, ahmac=%llu", opts->addr_id, opts->ahmac);
6203df523abSPeter Krystad 
6213df523abSPeter Krystad 	return true;
6223df523abSPeter Krystad }
6233df523abSPeter Krystad 
6246d0060f6SMat Martineau bool mptcp_established_options(struct sock *sk, struct sk_buff *skb,
6256d0060f6SMat Martineau 			       unsigned int *size, unsigned int remaining,
6266d0060f6SMat Martineau 			       struct mptcp_out_options *opts)
6276d0060f6SMat Martineau {
6286d0060f6SMat Martineau 	unsigned int opt_size = 0;
6296d0060f6SMat Martineau 	bool ret = false;
6306d0060f6SMat Martineau 
6313df523abSPeter Krystad 	opts->suboptions = 0;
6323df523abSPeter Krystad 
633cc7972eaSChristoph Paasch 	if (mptcp_established_options_mp(sk, skb, &opt_size, remaining, opts))
6346d0060f6SMat Martineau 		ret = true;
6356d0060f6SMat Martineau 	else if (mptcp_established_options_dss(sk, skb, &opt_size, remaining,
6366d0060f6SMat Martineau 					       opts))
6376d0060f6SMat Martineau 		ret = true;
6386d0060f6SMat Martineau 
6396d0060f6SMat Martineau 	/* we reserved enough space for the above options, and exceeding the
6406d0060f6SMat Martineau 	 * TCP option space would be fatal
6416d0060f6SMat Martineau 	 */
6426d0060f6SMat Martineau 	if (WARN_ON_ONCE(opt_size > remaining))
6436d0060f6SMat Martineau 		return false;
6446d0060f6SMat Martineau 
6456d0060f6SMat Martineau 	*size += opt_size;
6466d0060f6SMat Martineau 	remaining -= opt_size;
6473df523abSPeter Krystad 	if (mptcp_established_options_addr(sk, &opt_size, remaining, opts)) {
6483df523abSPeter Krystad 		*size += opt_size;
6493df523abSPeter Krystad 		remaining -= opt_size;
6503df523abSPeter Krystad 		ret = true;
6513df523abSPeter Krystad 	}
6526d0060f6SMat Martineau 
6536d0060f6SMat Martineau 	return ret;
6546d0060f6SMat Martineau }
6556d0060f6SMat Martineau 
656cec37a6eSPeter Krystad bool mptcp_synack_options(const struct request_sock *req, unsigned int *size,
657cec37a6eSPeter Krystad 			  struct mptcp_out_options *opts)
658cec37a6eSPeter Krystad {
659cec37a6eSPeter Krystad 	struct mptcp_subflow_request_sock *subflow_req = mptcp_subflow_rsk(req);
660cec37a6eSPeter Krystad 
661cec37a6eSPeter Krystad 	if (subflow_req->mp_capable) {
662cec37a6eSPeter Krystad 		opts->suboptions = OPTION_MPTCP_MPC_SYNACK;
663cec37a6eSPeter Krystad 		opts->sndr_key = subflow_req->local_key;
664cec37a6eSPeter Krystad 		*size = TCPOLEN_MPTCP_MPC_SYNACK;
665cec37a6eSPeter Krystad 		pr_debug("subflow_req=%p, local_key=%llu",
666cec37a6eSPeter Krystad 			 subflow_req, subflow_req->local_key);
667cec37a6eSPeter Krystad 		return true;
668f296234cSPeter Krystad 	} else if (subflow_req->mp_join) {
669f296234cSPeter Krystad 		opts->suboptions = OPTION_MPTCP_MPJ_SYNACK;
670f296234cSPeter Krystad 		opts->backup = subflow_req->backup;
671f296234cSPeter Krystad 		opts->join_id = subflow_req->local_id;
672f296234cSPeter Krystad 		opts->thmac = subflow_req->thmac;
673f296234cSPeter Krystad 		opts->nonce = subflow_req->local_nonce;
674f296234cSPeter Krystad 		pr_debug("req=%p, bkup=%u, id=%u, thmac=%llu, nonce=%u",
675f296234cSPeter Krystad 			 subflow_req, opts->backup, opts->join_id,
676f296234cSPeter Krystad 			 opts->thmac, opts->nonce);
677f296234cSPeter Krystad 		*size = TCPOLEN_MPTCP_MPJ_SYNACK;
678f296234cSPeter Krystad 		return true;
679cec37a6eSPeter Krystad 	}
680cec37a6eSPeter Krystad 	return false;
681cec37a6eSPeter Krystad }
682cec37a6eSPeter Krystad 
683f296234cSPeter Krystad static bool check_fully_established(struct mptcp_sock *msk, struct sock *sk,
684f296234cSPeter Krystad 				    struct mptcp_subflow_context *subflow,
685d22f4988SChristoph Paasch 				    struct sk_buff *skb,
686d22f4988SChristoph Paasch 				    struct mptcp_options_received *mp_opt)
687d22f4988SChristoph Paasch {
688d22f4988SChristoph Paasch 	/* here we can process OoO, in-window pkts, only in-sequence 4th ack
689f296234cSPeter Krystad 	 * will make the subflow fully established
690d22f4988SChristoph Paasch 	 */
691f296234cSPeter Krystad 	if (likely(subflow->fully_established)) {
692f296234cSPeter Krystad 		/* on passive sockets, check for 3rd ack retransmission
693f296234cSPeter Krystad 		 * note that msk is always set by subflow_syn_recv_sock()
694f296234cSPeter Krystad 		 * for mp_join subflows
695f296234cSPeter Krystad 		 */
696f296234cSPeter Krystad 		if (TCP_SKB_CB(skb)->seq == subflow->ssn_offset + 1 &&
697f296234cSPeter Krystad 		    TCP_SKB_CB(skb)->end_seq == TCP_SKB_CB(skb)->seq &&
698f296234cSPeter Krystad 		    subflow->mp_join && mp_opt->mp_join &&
699f296234cSPeter Krystad 		    READ_ONCE(msk->pm.server_side))
700f296234cSPeter Krystad 			tcp_send_ack(sk);
701f296234cSPeter Krystad 		goto fully_established;
702f296234cSPeter Krystad 	}
703d22f4988SChristoph Paasch 
704f296234cSPeter Krystad 	/* we should process OoO packets before the first subflow is fully
705f296234cSPeter Krystad 	 * established, but not expected for MP_JOIN subflows
706f296234cSPeter Krystad 	 */
707f296234cSPeter Krystad 	if (TCP_SKB_CB(skb)->seq != subflow->ssn_offset + 1)
708f296234cSPeter Krystad 		return subflow->mp_capable;
709f296234cSPeter Krystad 
710f296234cSPeter Krystad 	if (mp_opt->use_ack) {
711f296234cSPeter Krystad 		/* subflows are fully established as soon as we get any
712f296234cSPeter Krystad 		 * additional ack.
713f296234cSPeter Krystad 		 */
7140be534f5SPaolo Abeni 		subflow->fully_established = 1;
715f296234cSPeter Krystad 		goto fully_established;
716f296234cSPeter Krystad 	}
717d22f4988SChristoph Paasch 
718f296234cSPeter Krystad 	WARN_ON_ONCE(subflow->can_ack);
719d22f4988SChristoph Paasch 
720d22f4988SChristoph Paasch 	/* If the first established packet does not contain MP_CAPABLE + data
721d22f4988SChristoph Paasch 	 * then fallback to TCP
722d22f4988SChristoph Paasch 	 */
723d22f4988SChristoph Paasch 	if (!mp_opt->mp_capable) {
724d22f4988SChristoph Paasch 		subflow->mp_capable = 0;
725f296234cSPeter Krystad 		tcp_sk(sk)->is_mptcp = 0;
726d22f4988SChristoph Paasch 		return false;
727d22f4988SChristoph Paasch 	}
728f296234cSPeter Krystad 
729f296234cSPeter Krystad 	subflow->fully_established = 1;
730d22f4988SChristoph Paasch 	subflow->remote_key = mp_opt->sndr_key;
731d22f4988SChristoph Paasch 	subflow->can_ack = 1;
732f296234cSPeter Krystad 
733f296234cSPeter Krystad fully_established:
734f296234cSPeter Krystad 	if (likely(subflow->pm_notified))
735f296234cSPeter Krystad 		return true;
736f296234cSPeter Krystad 
737f296234cSPeter Krystad 	subflow->pm_notified = 1;
738*ec3edaa7SPeter Krystad 	if (subflow->mp_join) {
739*ec3edaa7SPeter Krystad 		clear_3rdack_retransmission(sk);
740f296234cSPeter Krystad 		mptcp_pm_subflow_established(msk, subflow);
741*ec3edaa7SPeter Krystad 	} else {
742f296234cSPeter Krystad 		mptcp_pm_fully_established(msk);
743*ec3edaa7SPeter Krystad 	}
744d22f4988SChristoph Paasch 	return true;
745d22f4988SChristoph Paasch }
746d22f4988SChristoph Paasch 
7471b1c7a0eSPeter Krystad static bool add_addr_hmac_valid(struct mptcp_sock *msk,
7481b1c7a0eSPeter Krystad 				struct mptcp_options_received *mp_opt)
7491b1c7a0eSPeter Krystad {
7501b1c7a0eSPeter Krystad 	u64 hmac = 0;
7511b1c7a0eSPeter Krystad 
7521b1c7a0eSPeter Krystad 	if (mp_opt->echo)
7531b1c7a0eSPeter Krystad 		return true;
7541b1c7a0eSPeter Krystad 
7551b1c7a0eSPeter Krystad 	if (mp_opt->family == MPTCP_ADDR_IPVERSION_4)
7561b1c7a0eSPeter Krystad 		hmac = add_addr_generate_hmac(msk->remote_key,
7571b1c7a0eSPeter Krystad 					      msk->local_key,
7581b1c7a0eSPeter Krystad 					      mp_opt->addr_id, &mp_opt->addr);
7591b1c7a0eSPeter Krystad #if IS_ENABLED(CONFIG_MPTCP_IPV6)
7601b1c7a0eSPeter Krystad 	else
7611b1c7a0eSPeter Krystad 		hmac = add_addr6_generate_hmac(msk->remote_key,
7621b1c7a0eSPeter Krystad 					       msk->local_key,
7631b1c7a0eSPeter Krystad 					       mp_opt->addr_id, &mp_opt->addr6);
7641b1c7a0eSPeter Krystad #endif
7651b1c7a0eSPeter Krystad 
7661b1c7a0eSPeter Krystad 	pr_debug("msk=%p, ahmac=%llu, mp_opt->ahmac=%llu\n",
7671b1c7a0eSPeter Krystad 		 msk, (unsigned long long)hmac,
7681b1c7a0eSPeter Krystad 		 (unsigned long long)mp_opt->ahmac);
7691b1c7a0eSPeter Krystad 
7701b1c7a0eSPeter Krystad 	return hmac == mp_opt->ahmac;
7711b1c7a0eSPeter Krystad }
7721b1c7a0eSPeter Krystad 
773648ef4b8SMat Martineau void mptcp_incoming_options(struct sock *sk, struct sk_buff *skb,
774648ef4b8SMat Martineau 			    struct tcp_options_received *opt_rx)
775648ef4b8SMat Martineau {
776d22f4988SChristoph Paasch 	struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
7771b1c7a0eSPeter Krystad 	struct mptcp_sock *msk = mptcp_sk(subflow->conn);
778648ef4b8SMat Martineau 	struct mptcp_options_received *mp_opt;
779648ef4b8SMat Martineau 	struct mptcp_ext *mpext;
780648ef4b8SMat Martineau 
781648ef4b8SMat Martineau 	mp_opt = &opt_rx->mptcp;
782f296234cSPeter Krystad 	if (!check_fully_established(msk, sk, subflow, skb, mp_opt))
783d22f4988SChristoph Paasch 		return;
784648ef4b8SMat Martineau 
7851b1c7a0eSPeter Krystad 	if (mp_opt->add_addr && add_addr_hmac_valid(msk, mp_opt)) {
7861b1c7a0eSPeter Krystad 		struct mptcp_addr_info addr;
7871b1c7a0eSPeter Krystad 
7881b1c7a0eSPeter Krystad 		addr.port = htons(mp_opt->port);
7891b1c7a0eSPeter Krystad 		addr.id = mp_opt->addr_id;
7901b1c7a0eSPeter Krystad 		if (mp_opt->family == MPTCP_ADDR_IPVERSION_4) {
7911b1c7a0eSPeter Krystad 			addr.family = AF_INET;
7921b1c7a0eSPeter Krystad 			addr.addr = mp_opt->addr;
7931b1c7a0eSPeter Krystad 		}
7941b1c7a0eSPeter Krystad #if IS_ENABLED(CONFIG_MPTCP_IPV6)
7951b1c7a0eSPeter Krystad 		else if (mp_opt->family == MPTCP_ADDR_IPVERSION_6) {
7961b1c7a0eSPeter Krystad 			addr.family = AF_INET6;
7971b1c7a0eSPeter Krystad 			addr.addr6 = mp_opt->addr6;
7981b1c7a0eSPeter Krystad 		}
7991b1c7a0eSPeter Krystad #endif
8001b1c7a0eSPeter Krystad 		if (!mp_opt->echo)
8011b1c7a0eSPeter Krystad 			mptcp_pm_add_addr_received(msk, &addr);
8021b1c7a0eSPeter Krystad 		mp_opt->add_addr = 0;
8031b1c7a0eSPeter Krystad 	}
8041b1c7a0eSPeter Krystad 
805648ef4b8SMat Martineau 	if (!mp_opt->dss)
806648ef4b8SMat Martineau 		return;
807648ef4b8SMat Martineau 
808648ef4b8SMat Martineau 	mpext = skb_ext_add(skb, SKB_EXT_MPTCP);
809648ef4b8SMat Martineau 	if (!mpext)
810648ef4b8SMat Martineau 		return;
811648ef4b8SMat Martineau 
812648ef4b8SMat Martineau 	memset(mpext, 0, sizeof(*mpext));
813648ef4b8SMat Martineau 
814648ef4b8SMat Martineau 	if (mp_opt->use_map) {
815cc7972eaSChristoph Paasch 		if (mp_opt->mpc_map) {
816cc7972eaSChristoph Paasch 			/* this is an MP_CAPABLE carrying MPTCP data
817cc7972eaSChristoph Paasch 			 * we know this map the first chunk of data
818cc7972eaSChristoph Paasch 			 */
819cc7972eaSChristoph Paasch 			mptcp_crypto_key_sha(subflow->remote_key, NULL,
820cc7972eaSChristoph Paasch 					     &mpext->data_seq);
821cc7972eaSChristoph Paasch 			mpext->data_seq++;
822cc7972eaSChristoph Paasch 			mpext->subflow_seq = 1;
823cc7972eaSChristoph Paasch 			mpext->dsn64 = 1;
824cc7972eaSChristoph Paasch 			mpext->mpc_map = 1;
825cc7972eaSChristoph Paasch 		} else {
826648ef4b8SMat Martineau 			mpext->data_seq = mp_opt->data_seq;
827648ef4b8SMat Martineau 			mpext->subflow_seq = mp_opt->subflow_seq;
828cc7972eaSChristoph Paasch 			mpext->dsn64 = mp_opt->dsn64;
829cc7972eaSChristoph Paasch 		}
830648ef4b8SMat Martineau 		mpext->data_len = mp_opt->data_len;
831648ef4b8SMat Martineau 		mpext->use_map = 1;
832648ef4b8SMat Martineau 	}
833648ef4b8SMat Martineau 
834648ef4b8SMat Martineau 	if (mp_opt->use_ack) {
835648ef4b8SMat Martineau 		mpext->data_ack = mp_opt->data_ack;
836648ef4b8SMat Martineau 		mpext->use_ack = 1;
837648ef4b8SMat Martineau 		mpext->ack64 = mp_opt->ack64;
838648ef4b8SMat Martineau 	}
839648ef4b8SMat Martineau 
840648ef4b8SMat Martineau 	mpext->data_fin = mp_opt->data_fin;
841648ef4b8SMat Martineau }
842648ef4b8SMat Martineau 
843eda7acddSPeter Krystad void mptcp_write_options(__be32 *ptr, struct mptcp_out_options *opts)
844eda7acddSPeter Krystad {
845cc7972eaSChristoph Paasch 	if ((OPTION_MPTCP_MPC_SYN | OPTION_MPTCP_MPC_SYNACK |
846eda7acddSPeter Krystad 	     OPTION_MPTCP_MPC_ACK) & opts->suboptions) {
847eda7acddSPeter Krystad 		u8 len;
848eda7acddSPeter Krystad 
849eda7acddSPeter Krystad 		if (OPTION_MPTCP_MPC_SYN & opts->suboptions)
850eda7acddSPeter Krystad 			len = TCPOLEN_MPTCP_MPC_SYN;
851cec37a6eSPeter Krystad 		else if (OPTION_MPTCP_MPC_SYNACK & opts->suboptions)
852cec37a6eSPeter Krystad 			len = TCPOLEN_MPTCP_MPC_SYNACK;
853cc7972eaSChristoph Paasch 		else if (opts->ext_copy.data_len)
854cc7972eaSChristoph Paasch 			len = TCPOLEN_MPTCP_MPC_ACK_DATA;
855eda7acddSPeter Krystad 		else
856eda7acddSPeter Krystad 			len = TCPOLEN_MPTCP_MPC_ACK;
857eda7acddSPeter Krystad 
8583df523abSPeter Krystad 		*ptr++ = mptcp_option(MPTCPOPT_MP_CAPABLE, len,
8593df523abSPeter Krystad 				      MPTCP_SUPPORTED_VERSION,
86065492c5aSPaolo Abeni 				      MPTCP_CAP_HMAC_SHA256);
861cc7972eaSChristoph Paasch 
862cc7972eaSChristoph Paasch 		if (!((OPTION_MPTCP_MPC_SYNACK | OPTION_MPTCP_MPC_ACK) &
863cc7972eaSChristoph Paasch 		    opts->suboptions))
864cc7972eaSChristoph Paasch 			goto mp_capable_done;
865cc7972eaSChristoph Paasch 
866eda7acddSPeter Krystad 		put_unaligned_be64(opts->sndr_key, ptr);
867eda7acddSPeter Krystad 		ptr += 2;
868cc7972eaSChristoph Paasch 		if (!((OPTION_MPTCP_MPC_ACK) & opts->suboptions))
869cc7972eaSChristoph Paasch 			goto mp_capable_done;
870cc7972eaSChristoph Paasch 
871eda7acddSPeter Krystad 		put_unaligned_be64(opts->rcvr_key, ptr);
872eda7acddSPeter Krystad 		ptr += 2;
873cc7972eaSChristoph Paasch 		if (!opts->ext_copy.data_len)
874cc7972eaSChristoph Paasch 			goto mp_capable_done;
875cc7972eaSChristoph Paasch 
876cc7972eaSChristoph Paasch 		put_unaligned_be32(opts->ext_copy.data_len << 16 |
877cc7972eaSChristoph Paasch 				   TCPOPT_NOP << 8 | TCPOPT_NOP, ptr);
878cc7972eaSChristoph Paasch 		ptr += 1;
879eda7acddSPeter Krystad 	}
8806d0060f6SMat Martineau 
881cc7972eaSChristoph Paasch mp_capable_done:
8823df523abSPeter Krystad 	if (OPTION_MPTCP_ADD_ADDR & opts->suboptions) {
8833df523abSPeter Krystad 		if (opts->ahmac)
8843df523abSPeter Krystad 			*ptr++ = mptcp_option(MPTCPOPT_ADD_ADDR,
8853df523abSPeter Krystad 					      TCPOLEN_MPTCP_ADD_ADDR, 0,
8863df523abSPeter Krystad 					      opts->addr_id);
8873df523abSPeter Krystad 		else
8883df523abSPeter Krystad 			*ptr++ = mptcp_option(MPTCPOPT_ADD_ADDR,
8893df523abSPeter Krystad 					      TCPOLEN_MPTCP_ADD_ADDR_BASE,
8903df523abSPeter Krystad 					      MPTCP_ADDR_ECHO,
8913df523abSPeter Krystad 					      opts->addr_id);
8923df523abSPeter Krystad 		memcpy((u8 *)ptr, (u8 *)&opts->addr.s_addr, 4);
8933df523abSPeter Krystad 		ptr += 1;
8943df523abSPeter Krystad 		if (opts->ahmac) {
8953df523abSPeter Krystad 			put_unaligned_be64(opts->ahmac, ptr);
8963df523abSPeter Krystad 			ptr += 2;
8973df523abSPeter Krystad 		}
8983df523abSPeter Krystad 	}
8993df523abSPeter Krystad 
9003df523abSPeter Krystad #if IS_ENABLED(CONFIG_MPTCP_IPV6)
9013df523abSPeter Krystad 	if (OPTION_MPTCP_ADD_ADDR6 & opts->suboptions) {
9023df523abSPeter Krystad 		if (opts->ahmac)
9033df523abSPeter Krystad 			*ptr++ = mptcp_option(MPTCPOPT_ADD_ADDR,
9043df523abSPeter Krystad 					      TCPOLEN_MPTCP_ADD_ADDR6, 0,
9053df523abSPeter Krystad 					      opts->addr_id);
9063df523abSPeter Krystad 		else
9073df523abSPeter Krystad 			*ptr++ = mptcp_option(MPTCPOPT_ADD_ADDR,
9083df523abSPeter Krystad 					      TCPOLEN_MPTCP_ADD_ADDR6_BASE,
9093df523abSPeter Krystad 					      MPTCP_ADDR_ECHO,
9103df523abSPeter Krystad 					      opts->addr_id);
9113df523abSPeter Krystad 		memcpy((u8 *)ptr, opts->addr6.s6_addr, 16);
9123df523abSPeter Krystad 		ptr += 4;
9133df523abSPeter Krystad 		if (opts->ahmac) {
9143df523abSPeter Krystad 			put_unaligned_be64(opts->ahmac, ptr);
9153df523abSPeter Krystad 			ptr += 2;
9163df523abSPeter Krystad 		}
9173df523abSPeter Krystad 	}
9183df523abSPeter Krystad #endif
9193df523abSPeter Krystad 
9203df523abSPeter Krystad 	if (OPTION_MPTCP_RM_ADDR & opts->suboptions) {
9213df523abSPeter Krystad 		*ptr++ = mptcp_option(MPTCPOPT_RM_ADDR,
9223df523abSPeter Krystad 				      TCPOLEN_MPTCP_RM_ADDR_BASE,
9233df523abSPeter Krystad 				      0, opts->rm_id);
9243df523abSPeter Krystad 	}
9253df523abSPeter Krystad 
926*ec3edaa7SPeter Krystad 	if (OPTION_MPTCP_MPJ_SYN & opts->suboptions) {
927*ec3edaa7SPeter Krystad 		*ptr++ = mptcp_option(MPTCPOPT_MP_JOIN,
928*ec3edaa7SPeter Krystad 				      TCPOLEN_MPTCP_MPJ_SYN,
929*ec3edaa7SPeter Krystad 				      opts->backup, opts->join_id);
930*ec3edaa7SPeter Krystad 		put_unaligned_be32(opts->token, ptr);
931*ec3edaa7SPeter Krystad 		ptr += 1;
932*ec3edaa7SPeter Krystad 		put_unaligned_be32(opts->nonce, ptr);
933*ec3edaa7SPeter Krystad 		ptr += 1;
934*ec3edaa7SPeter Krystad 	}
935*ec3edaa7SPeter Krystad 
936f296234cSPeter Krystad 	if (OPTION_MPTCP_MPJ_SYNACK & opts->suboptions) {
937f296234cSPeter Krystad 		*ptr++ = mptcp_option(MPTCPOPT_MP_JOIN,
938f296234cSPeter Krystad 				      TCPOLEN_MPTCP_MPJ_SYNACK,
939f296234cSPeter Krystad 				      opts->backup, opts->join_id);
940f296234cSPeter Krystad 		put_unaligned_be64(opts->thmac, ptr);
941f296234cSPeter Krystad 		ptr += 2;
942f296234cSPeter Krystad 		put_unaligned_be32(opts->nonce, ptr);
943f296234cSPeter Krystad 		ptr += 1;
944f296234cSPeter Krystad 	}
945f296234cSPeter Krystad 
946*ec3edaa7SPeter Krystad 	if (OPTION_MPTCP_MPJ_ACK & opts->suboptions) {
947*ec3edaa7SPeter Krystad 		*ptr++ = mptcp_option(MPTCPOPT_MP_JOIN,
948*ec3edaa7SPeter Krystad 				      TCPOLEN_MPTCP_MPJ_ACK, 0, 0);
949*ec3edaa7SPeter Krystad 		memcpy(ptr, opts->hmac, MPTCPOPT_HMAC_LEN);
950*ec3edaa7SPeter Krystad 		ptr += 5;
951*ec3edaa7SPeter Krystad 	}
952*ec3edaa7SPeter Krystad 
9536d0060f6SMat Martineau 	if (opts->ext_copy.use_ack || opts->ext_copy.use_map) {
9546d0060f6SMat Martineau 		struct mptcp_ext *mpext = &opts->ext_copy;
9556d0060f6SMat Martineau 		u8 len = TCPOLEN_MPTCP_DSS_BASE;
9566d0060f6SMat Martineau 		u8 flags = 0;
9576d0060f6SMat Martineau 
9586d0060f6SMat Martineau 		if (mpext->use_ack) {
9596d0060f6SMat Martineau 			len += TCPOLEN_MPTCP_DSS_ACK64;
9606d0060f6SMat Martineau 			flags = MPTCP_DSS_HAS_ACK | MPTCP_DSS_ACK64;
9616d0060f6SMat Martineau 		}
9626d0060f6SMat Martineau 
9636d0060f6SMat Martineau 		if (mpext->use_map) {
9646d0060f6SMat Martineau 			len += TCPOLEN_MPTCP_DSS_MAP64;
9656d0060f6SMat Martineau 
9666d0060f6SMat Martineau 			/* Use only 64-bit mapping flags for now, add
9676d0060f6SMat Martineau 			 * support for optional 32-bit mappings later.
9686d0060f6SMat Martineau 			 */
9696d0060f6SMat Martineau 			flags |= MPTCP_DSS_HAS_MAP | MPTCP_DSS_DSN64;
9706d0060f6SMat Martineau 			if (mpext->data_fin)
9716d0060f6SMat Martineau 				flags |= MPTCP_DSS_DATA_FIN;
9726d0060f6SMat Martineau 		}
9736d0060f6SMat Martineau 
9743df523abSPeter Krystad 		*ptr++ = mptcp_option(MPTCPOPT_DSS, len, 0, flags);
9756d0060f6SMat Martineau 
9766d0060f6SMat Martineau 		if (mpext->use_ack) {
9776d0060f6SMat Martineau 			put_unaligned_be64(mpext->data_ack, ptr);
9786d0060f6SMat Martineau 			ptr += 2;
9796d0060f6SMat Martineau 		}
9806d0060f6SMat Martineau 
9816d0060f6SMat Martineau 		if (mpext->use_map) {
9826d0060f6SMat Martineau 			put_unaligned_be64(mpext->data_seq, ptr);
9836d0060f6SMat Martineau 			ptr += 2;
9846d0060f6SMat Martineau 			put_unaligned_be32(mpext->subflow_seq, ptr);
9856d0060f6SMat Martineau 			ptr += 1;
9866d0060f6SMat Martineau 			put_unaligned_be32(mpext->data_len << 16 |
9876d0060f6SMat Martineau 					   TCPOPT_NOP << 8 | TCPOPT_NOP, ptr);
9886d0060f6SMat Martineau 		}
9896d0060f6SMat Martineau 	}
990eda7acddSPeter Krystad }
991