xref: /openbmc/linux/net/mptcp/options.c (revision b51f9b80c032e1af1e3e7e8dc733d2d49831e982)
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;
331ec3edaa7SPeter Krystad 	} else if (subflow->request_join) {
332ec3edaa7SPeter Krystad 		pr_debug("remote_token=%u, nonce=%u", subflow->remote_token,
333ec3edaa7SPeter Krystad 			 subflow->local_nonce);
334ec3edaa7SPeter Krystad 		opts->suboptions = OPTION_MPTCP_MPJ_SYN;
335ec3edaa7SPeter Krystad 		opts->join_id = subflow->local_id;
336ec3edaa7SPeter Krystad 		opts->token = subflow->remote_token;
337ec3edaa7SPeter Krystad 		opts->nonce = subflow->local_nonce;
338ec3edaa7SPeter Krystad 		opts->backup = subflow->request_bkup;
339ec3edaa7SPeter Krystad 		*size = TCPOLEN_MPTCP_MPJ_SYN;
340ec3edaa7SPeter 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;
354ec3edaa7SPeter Krystad 		pr_debug("subflow=%p, remote_key=%llu", subflow,
355ec3edaa7SPeter Krystad 			 subflow->remote_key);
356ec3edaa7SPeter Krystad 	} else if (subflow->request_join && tp->rx_opt.mptcp.mp_join) {
357ec3edaa7SPeter Krystad 		subflow->mp_join = 1;
358ec3edaa7SPeter Krystad 		subflow->thmac = tp->rx_opt.mptcp.thmac;
359ec3edaa7SPeter Krystad 		subflow->remote_nonce = tp->rx_opt.mptcp.nonce;
360ec3edaa7SPeter Krystad 		pr_debug("subflow=%p, thmac=%llu, remote_nonce=%u", subflow,
361ec3edaa7SPeter Krystad 			 subflow->thmac, subflow->remote_nonce);
362ec3edaa7SPeter Krystad 	} else if (subflow->request_mptcp) {
363cec37a6eSPeter Krystad 		tcp_sk(sk)->is_mptcp = 0;
364cec37a6eSPeter Krystad 	}
365cec37a6eSPeter Krystad }
366cec37a6eSPeter Krystad 
367ec3edaa7SPeter Krystad /* MP_JOIN client subflow must wait for 4th ack before sending any data:
368ec3edaa7SPeter Krystad  * TCP can't schedule delack timer before the subflow is fully established.
369ec3edaa7SPeter Krystad  * MPTCP uses the delack timer to do 3rd ack retransmissions
370ec3edaa7SPeter Krystad  */
371ec3edaa7SPeter Krystad static void schedule_3rdack_retransmission(struct sock *sk)
372ec3edaa7SPeter Krystad {
373ec3edaa7SPeter Krystad 	struct inet_connection_sock *icsk = inet_csk(sk);
374ec3edaa7SPeter Krystad 	struct tcp_sock *tp = tcp_sk(sk);
375ec3edaa7SPeter Krystad 	unsigned long timeout;
376ec3edaa7SPeter Krystad 
377ec3edaa7SPeter Krystad 	/* reschedule with a timeout above RTT, as we must look only for drop */
378ec3edaa7SPeter Krystad 	if (tp->srtt_us)
379ec3edaa7SPeter Krystad 		timeout = tp->srtt_us << 1;
380ec3edaa7SPeter Krystad 	else
381ec3edaa7SPeter Krystad 		timeout = TCP_TIMEOUT_INIT;
382ec3edaa7SPeter Krystad 
383ec3edaa7SPeter Krystad 	WARN_ON_ONCE(icsk->icsk_ack.pending & ICSK_ACK_TIMER);
384ec3edaa7SPeter Krystad 	icsk->icsk_ack.pending |= ICSK_ACK_SCHED | ICSK_ACK_TIMER;
385ec3edaa7SPeter Krystad 	icsk->icsk_ack.timeout = timeout;
386ec3edaa7SPeter Krystad 	sk_reset_timer(sk, &icsk->icsk_delack_timer, timeout);
387ec3edaa7SPeter Krystad }
388ec3edaa7SPeter Krystad 
389ec3edaa7SPeter Krystad static void clear_3rdack_retransmission(struct sock *sk)
390ec3edaa7SPeter Krystad {
391ec3edaa7SPeter Krystad 	struct inet_connection_sock *icsk = inet_csk(sk);
392ec3edaa7SPeter Krystad 
393ec3edaa7SPeter Krystad 	sk_stop_timer(sk, &icsk->icsk_delack_timer);
394ec3edaa7SPeter Krystad 	icsk->icsk_ack.timeout = 0;
395ec3edaa7SPeter Krystad 	icsk->icsk_ack.ato = 0;
396ec3edaa7SPeter Krystad 	icsk->icsk_ack.pending &= ~(ICSK_ACK_SCHED | ICSK_ACK_TIMER);
397ec3edaa7SPeter Krystad }
398ec3edaa7SPeter 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 
408ec3edaa7SPeter Krystad 	/* When skb is not available, we better over-estimate the emitted
409ec3edaa7SPeter Krystad 	 * options len. A full DSS option (28 bytes) is longer than
410ec3edaa7SPeter Krystad 	 * TCPOLEN_MPTCP_MPC_ACK_DATA(22) or TCPOLEN_MPTCP_MPJ_ACK(24), so
411ec3edaa7SPeter Krystad 	 * tell the caller to defer the estimate to
412ec3edaa7SPeter Krystad 	 * mptcp_established_options_dss(), which will reserve enough space.
413cc7972eaSChristoph Paasch 	 */
414ec3edaa7SPeter Krystad 	if (!skb)
415ec3edaa7SPeter Krystad 		return false;
416ec3edaa7SPeter Krystad 
417ec3edaa7SPeter Krystad 	/* MPC/MPJ needed only on 3rd ack packet */
418ec3edaa7SPeter Krystad 	if (subflow->fully_established ||
419ec3edaa7SPeter Krystad 	    subflow->snd_isn != TCP_SKB_CB(skb)->seq)
420ec3edaa7SPeter Krystad 		return false;
421ec3edaa7SPeter Krystad 
422ec3edaa7SPeter 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;
450ec3edaa7SPeter Krystad 	} else if (subflow->mp_join) {
451ec3edaa7SPeter Krystad 		opts->suboptions = OPTION_MPTCP_MPJ_ACK;
452ec3edaa7SPeter Krystad 		memcpy(opts->hmac, subflow->hmac, MPTCPOPT_HMAC_LEN);
453ec3edaa7SPeter Krystad 		*size = TCPOLEN_MPTCP_MPJ_ACK;
454ec3edaa7SPeter Krystad 		pr_debug("subflow=%p", subflow);
455ec3edaa7SPeter Krystad 
456ec3edaa7SPeter Krystad 		schedule_3rdack_retransmission(sk);
457ec3edaa7SPeter 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;
738ec3edaa7SPeter Krystad 	if (subflow->mp_join) {
739ec3edaa7SPeter Krystad 		clear_3rdack_retransmission(sk);
740f296234cSPeter Krystad 		mptcp_pm_subflow_established(msk, subflow);
741ec3edaa7SPeter Krystad 	} else {
742f296234cSPeter Krystad 		mptcp_pm_fully_established(msk);
743ec3edaa7SPeter Krystad 	}
744d22f4988SChristoph Paasch 	return true;
745d22f4988SChristoph Paasch }
746d22f4988SChristoph Paasch 
747cc9d2566SPaolo Abeni static u64 expand_ack(u64 old_ack, u64 cur_ack, bool use_64bit)
748cc9d2566SPaolo Abeni {
749cc9d2566SPaolo Abeni 	u32 old_ack32, cur_ack32;
750cc9d2566SPaolo Abeni 
751cc9d2566SPaolo Abeni 	if (use_64bit)
752cc9d2566SPaolo Abeni 		return cur_ack;
753cc9d2566SPaolo Abeni 
754cc9d2566SPaolo Abeni 	old_ack32 = (u32)old_ack;
755cc9d2566SPaolo Abeni 	cur_ack32 = (u32)cur_ack;
756cc9d2566SPaolo Abeni 	cur_ack = (old_ack & GENMASK_ULL(63, 32)) + cur_ack32;
757cc9d2566SPaolo Abeni 	if (unlikely(before(cur_ack32, old_ack32)))
758cc9d2566SPaolo Abeni 		return cur_ack + (1LL << 32);
759cc9d2566SPaolo Abeni 	return cur_ack;
760cc9d2566SPaolo Abeni }
761cc9d2566SPaolo Abeni 
762cc9d2566SPaolo Abeni static void update_una(struct mptcp_sock *msk,
763cc9d2566SPaolo Abeni 		       struct mptcp_options_received *mp_opt)
764cc9d2566SPaolo Abeni {
765cc9d2566SPaolo Abeni 	u64 new_snd_una, snd_una, old_snd_una = atomic64_read(&msk->snd_una);
766cc9d2566SPaolo Abeni 	u64 write_seq = READ_ONCE(msk->write_seq);
767cc9d2566SPaolo Abeni 
768cc9d2566SPaolo Abeni 	/* avoid ack expansion on update conflict, to reduce the risk of
769cc9d2566SPaolo Abeni 	 * wrongly expanding to a future ack sequence number, which is way
770cc9d2566SPaolo Abeni 	 * more dangerous than missing an ack
771cc9d2566SPaolo Abeni 	 */
772cc9d2566SPaolo Abeni 	new_snd_una = expand_ack(old_snd_una, mp_opt->data_ack, mp_opt->ack64);
773cc9d2566SPaolo Abeni 
774cc9d2566SPaolo Abeni 	/* ACK for data not even sent yet? Ignore. */
775cc9d2566SPaolo Abeni 	if (after64(new_snd_una, write_seq))
776cc9d2566SPaolo Abeni 		new_snd_una = old_snd_una;
777cc9d2566SPaolo Abeni 
778cc9d2566SPaolo Abeni 	while (after64(new_snd_una, old_snd_una)) {
779cc9d2566SPaolo Abeni 		snd_una = old_snd_una;
780cc9d2566SPaolo Abeni 		old_snd_una = atomic64_cmpxchg(&msk->snd_una, snd_una,
781cc9d2566SPaolo Abeni 					       new_snd_una);
782*b51f9b80SPaolo Abeni 		if (old_snd_una == snd_una) {
783*b51f9b80SPaolo Abeni 			mptcp_data_acked((struct sock *)msk);
784cc9d2566SPaolo Abeni 			break;
785cc9d2566SPaolo Abeni 		}
786cc9d2566SPaolo Abeni 	}
787*b51f9b80SPaolo Abeni }
788cc9d2566SPaolo Abeni 
7891b1c7a0eSPeter Krystad static bool add_addr_hmac_valid(struct mptcp_sock *msk,
7901b1c7a0eSPeter Krystad 				struct mptcp_options_received *mp_opt)
7911b1c7a0eSPeter Krystad {
7921b1c7a0eSPeter Krystad 	u64 hmac = 0;
7931b1c7a0eSPeter Krystad 
7941b1c7a0eSPeter Krystad 	if (mp_opt->echo)
7951b1c7a0eSPeter Krystad 		return true;
7961b1c7a0eSPeter Krystad 
7971b1c7a0eSPeter Krystad 	if (mp_opt->family == MPTCP_ADDR_IPVERSION_4)
7981b1c7a0eSPeter Krystad 		hmac = add_addr_generate_hmac(msk->remote_key,
7991b1c7a0eSPeter Krystad 					      msk->local_key,
8001b1c7a0eSPeter Krystad 					      mp_opt->addr_id, &mp_opt->addr);
8011b1c7a0eSPeter Krystad #if IS_ENABLED(CONFIG_MPTCP_IPV6)
8021b1c7a0eSPeter Krystad 	else
8031b1c7a0eSPeter Krystad 		hmac = add_addr6_generate_hmac(msk->remote_key,
8041b1c7a0eSPeter Krystad 					       msk->local_key,
8051b1c7a0eSPeter Krystad 					       mp_opt->addr_id, &mp_opt->addr6);
8061b1c7a0eSPeter Krystad #endif
8071b1c7a0eSPeter Krystad 
8081b1c7a0eSPeter Krystad 	pr_debug("msk=%p, ahmac=%llu, mp_opt->ahmac=%llu\n",
8091b1c7a0eSPeter Krystad 		 msk, (unsigned long long)hmac,
8101b1c7a0eSPeter Krystad 		 (unsigned long long)mp_opt->ahmac);
8111b1c7a0eSPeter Krystad 
8121b1c7a0eSPeter Krystad 	return hmac == mp_opt->ahmac;
8131b1c7a0eSPeter Krystad }
8141b1c7a0eSPeter Krystad 
815648ef4b8SMat Martineau void mptcp_incoming_options(struct sock *sk, struct sk_buff *skb,
816648ef4b8SMat Martineau 			    struct tcp_options_received *opt_rx)
817648ef4b8SMat Martineau {
818d22f4988SChristoph Paasch 	struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
8191b1c7a0eSPeter Krystad 	struct mptcp_sock *msk = mptcp_sk(subflow->conn);
820648ef4b8SMat Martineau 	struct mptcp_options_received *mp_opt;
821648ef4b8SMat Martineau 	struct mptcp_ext *mpext;
822648ef4b8SMat Martineau 
823648ef4b8SMat Martineau 	mp_opt = &opt_rx->mptcp;
824f296234cSPeter Krystad 	if (!check_fully_established(msk, sk, subflow, skb, mp_opt))
825d22f4988SChristoph Paasch 		return;
826648ef4b8SMat Martineau 
8271b1c7a0eSPeter Krystad 	if (mp_opt->add_addr && add_addr_hmac_valid(msk, mp_opt)) {
8281b1c7a0eSPeter Krystad 		struct mptcp_addr_info addr;
8291b1c7a0eSPeter Krystad 
8301b1c7a0eSPeter Krystad 		addr.port = htons(mp_opt->port);
8311b1c7a0eSPeter Krystad 		addr.id = mp_opt->addr_id;
8321b1c7a0eSPeter Krystad 		if (mp_opt->family == MPTCP_ADDR_IPVERSION_4) {
8331b1c7a0eSPeter Krystad 			addr.family = AF_INET;
8341b1c7a0eSPeter Krystad 			addr.addr = mp_opt->addr;
8351b1c7a0eSPeter Krystad 		}
8361b1c7a0eSPeter Krystad #if IS_ENABLED(CONFIG_MPTCP_IPV6)
8371b1c7a0eSPeter Krystad 		else if (mp_opt->family == MPTCP_ADDR_IPVERSION_6) {
8381b1c7a0eSPeter Krystad 			addr.family = AF_INET6;
8391b1c7a0eSPeter Krystad 			addr.addr6 = mp_opt->addr6;
8401b1c7a0eSPeter Krystad 		}
8411b1c7a0eSPeter Krystad #endif
8421b1c7a0eSPeter Krystad 		if (!mp_opt->echo)
8431b1c7a0eSPeter Krystad 			mptcp_pm_add_addr_received(msk, &addr);
8441b1c7a0eSPeter Krystad 		mp_opt->add_addr = 0;
8451b1c7a0eSPeter Krystad 	}
8461b1c7a0eSPeter Krystad 
847648ef4b8SMat Martineau 	if (!mp_opt->dss)
848648ef4b8SMat Martineau 		return;
849648ef4b8SMat Martineau 
850cc9d2566SPaolo Abeni 	/* we can't wait for recvmsg() to update the ack_seq, otherwise
851cc9d2566SPaolo Abeni 	 * monodirectional flows will stuck
852cc9d2566SPaolo Abeni 	 */
853cc9d2566SPaolo Abeni 	if (mp_opt->use_ack)
854cc9d2566SPaolo Abeni 		update_una(msk, mp_opt);
855cc9d2566SPaolo Abeni 
856648ef4b8SMat Martineau 	mpext = skb_ext_add(skb, SKB_EXT_MPTCP);
857648ef4b8SMat Martineau 	if (!mpext)
858648ef4b8SMat Martineau 		return;
859648ef4b8SMat Martineau 
860648ef4b8SMat Martineau 	memset(mpext, 0, sizeof(*mpext));
861648ef4b8SMat Martineau 
862648ef4b8SMat Martineau 	if (mp_opt->use_map) {
863cc7972eaSChristoph Paasch 		if (mp_opt->mpc_map) {
864cc7972eaSChristoph Paasch 			/* this is an MP_CAPABLE carrying MPTCP data
865cc7972eaSChristoph Paasch 			 * we know this map the first chunk of data
866cc7972eaSChristoph Paasch 			 */
867cc7972eaSChristoph Paasch 			mptcp_crypto_key_sha(subflow->remote_key, NULL,
868cc7972eaSChristoph Paasch 					     &mpext->data_seq);
869cc7972eaSChristoph Paasch 			mpext->data_seq++;
870cc7972eaSChristoph Paasch 			mpext->subflow_seq = 1;
871cc7972eaSChristoph Paasch 			mpext->dsn64 = 1;
872cc7972eaSChristoph Paasch 			mpext->mpc_map = 1;
873cc7972eaSChristoph Paasch 		} else {
874648ef4b8SMat Martineau 			mpext->data_seq = mp_opt->data_seq;
875648ef4b8SMat Martineau 			mpext->subflow_seq = mp_opt->subflow_seq;
876cc7972eaSChristoph Paasch 			mpext->dsn64 = mp_opt->dsn64;
877cc7972eaSChristoph Paasch 		}
878648ef4b8SMat Martineau 		mpext->data_len = mp_opt->data_len;
879648ef4b8SMat Martineau 		mpext->use_map = 1;
880648ef4b8SMat Martineau 	}
881648ef4b8SMat Martineau 
882648ef4b8SMat Martineau 	mpext->data_fin = mp_opt->data_fin;
883648ef4b8SMat Martineau }
884648ef4b8SMat Martineau 
885eda7acddSPeter Krystad void mptcp_write_options(__be32 *ptr, struct mptcp_out_options *opts)
886eda7acddSPeter Krystad {
887cc7972eaSChristoph Paasch 	if ((OPTION_MPTCP_MPC_SYN | OPTION_MPTCP_MPC_SYNACK |
888eda7acddSPeter Krystad 	     OPTION_MPTCP_MPC_ACK) & opts->suboptions) {
889eda7acddSPeter Krystad 		u8 len;
890eda7acddSPeter Krystad 
891eda7acddSPeter Krystad 		if (OPTION_MPTCP_MPC_SYN & opts->suboptions)
892eda7acddSPeter Krystad 			len = TCPOLEN_MPTCP_MPC_SYN;
893cec37a6eSPeter Krystad 		else if (OPTION_MPTCP_MPC_SYNACK & opts->suboptions)
894cec37a6eSPeter Krystad 			len = TCPOLEN_MPTCP_MPC_SYNACK;
895cc7972eaSChristoph Paasch 		else if (opts->ext_copy.data_len)
896cc7972eaSChristoph Paasch 			len = TCPOLEN_MPTCP_MPC_ACK_DATA;
897eda7acddSPeter Krystad 		else
898eda7acddSPeter Krystad 			len = TCPOLEN_MPTCP_MPC_ACK;
899eda7acddSPeter Krystad 
9003df523abSPeter Krystad 		*ptr++ = mptcp_option(MPTCPOPT_MP_CAPABLE, len,
9013df523abSPeter Krystad 				      MPTCP_SUPPORTED_VERSION,
90265492c5aSPaolo Abeni 				      MPTCP_CAP_HMAC_SHA256);
903cc7972eaSChristoph Paasch 
904cc7972eaSChristoph Paasch 		if (!((OPTION_MPTCP_MPC_SYNACK | OPTION_MPTCP_MPC_ACK) &
905cc7972eaSChristoph Paasch 		    opts->suboptions))
906cc7972eaSChristoph Paasch 			goto mp_capable_done;
907cc7972eaSChristoph Paasch 
908eda7acddSPeter Krystad 		put_unaligned_be64(opts->sndr_key, ptr);
909eda7acddSPeter Krystad 		ptr += 2;
910cc7972eaSChristoph Paasch 		if (!((OPTION_MPTCP_MPC_ACK) & opts->suboptions))
911cc7972eaSChristoph Paasch 			goto mp_capable_done;
912cc7972eaSChristoph Paasch 
913eda7acddSPeter Krystad 		put_unaligned_be64(opts->rcvr_key, ptr);
914eda7acddSPeter Krystad 		ptr += 2;
915cc7972eaSChristoph Paasch 		if (!opts->ext_copy.data_len)
916cc7972eaSChristoph Paasch 			goto mp_capable_done;
917cc7972eaSChristoph Paasch 
918cc7972eaSChristoph Paasch 		put_unaligned_be32(opts->ext_copy.data_len << 16 |
919cc7972eaSChristoph Paasch 				   TCPOPT_NOP << 8 | TCPOPT_NOP, ptr);
920cc7972eaSChristoph Paasch 		ptr += 1;
921eda7acddSPeter Krystad 	}
9226d0060f6SMat Martineau 
923cc7972eaSChristoph Paasch mp_capable_done:
9243df523abSPeter Krystad 	if (OPTION_MPTCP_ADD_ADDR & opts->suboptions) {
9253df523abSPeter Krystad 		if (opts->ahmac)
9263df523abSPeter Krystad 			*ptr++ = mptcp_option(MPTCPOPT_ADD_ADDR,
9273df523abSPeter Krystad 					      TCPOLEN_MPTCP_ADD_ADDR, 0,
9283df523abSPeter Krystad 					      opts->addr_id);
9293df523abSPeter Krystad 		else
9303df523abSPeter Krystad 			*ptr++ = mptcp_option(MPTCPOPT_ADD_ADDR,
9313df523abSPeter Krystad 					      TCPOLEN_MPTCP_ADD_ADDR_BASE,
9323df523abSPeter Krystad 					      MPTCP_ADDR_ECHO,
9333df523abSPeter Krystad 					      opts->addr_id);
9343df523abSPeter Krystad 		memcpy((u8 *)ptr, (u8 *)&opts->addr.s_addr, 4);
9353df523abSPeter Krystad 		ptr += 1;
9363df523abSPeter Krystad 		if (opts->ahmac) {
9373df523abSPeter Krystad 			put_unaligned_be64(opts->ahmac, ptr);
9383df523abSPeter Krystad 			ptr += 2;
9393df523abSPeter Krystad 		}
9403df523abSPeter Krystad 	}
9413df523abSPeter Krystad 
9423df523abSPeter Krystad #if IS_ENABLED(CONFIG_MPTCP_IPV6)
9433df523abSPeter Krystad 	if (OPTION_MPTCP_ADD_ADDR6 & opts->suboptions) {
9443df523abSPeter Krystad 		if (opts->ahmac)
9453df523abSPeter Krystad 			*ptr++ = mptcp_option(MPTCPOPT_ADD_ADDR,
9463df523abSPeter Krystad 					      TCPOLEN_MPTCP_ADD_ADDR6, 0,
9473df523abSPeter Krystad 					      opts->addr_id);
9483df523abSPeter Krystad 		else
9493df523abSPeter Krystad 			*ptr++ = mptcp_option(MPTCPOPT_ADD_ADDR,
9503df523abSPeter Krystad 					      TCPOLEN_MPTCP_ADD_ADDR6_BASE,
9513df523abSPeter Krystad 					      MPTCP_ADDR_ECHO,
9523df523abSPeter Krystad 					      opts->addr_id);
9533df523abSPeter Krystad 		memcpy((u8 *)ptr, opts->addr6.s6_addr, 16);
9543df523abSPeter Krystad 		ptr += 4;
9553df523abSPeter Krystad 		if (opts->ahmac) {
9563df523abSPeter Krystad 			put_unaligned_be64(opts->ahmac, ptr);
9573df523abSPeter Krystad 			ptr += 2;
9583df523abSPeter Krystad 		}
9593df523abSPeter Krystad 	}
9603df523abSPeter Krystad #endif
9613df523abSPeter Krystad 
9623df523abSPeter Krystad 	if (OPTION_MPTCP_RM_ADDR & opts->suboptions) {
9633df523abSPeter Krystad 		*ptr++ = mptcp_option(MPTCPOPT_RM_ADDR,
9643df523abSPeter Krystad 				      TCPOLEN_MPTCP_RM_ADDR_BASE,
9653df523abSPeter Krystad 				      0, opts->rm_id);
9663df523abSPeter Krystad 	}
9673df523abSPeter Krystad 
968ec3edaa7SPeter Krystad 	if (OPTION_MPTCP_MPJ_SYN & opts->suboptions) {
969ec3edaa7SPeter Krystad 		*ptr++ = mptcp_option(MPTCPOPT_MP_JOIN,
970ec3edaa7SPeter Krystad 				      TCPOLEN_MPTCP_MPJ_SYN,
971ec3edaa7SPeter Krystad 				      opts->backup, opts->join_id);
972ec3edaa7SPeter Krystad 		put_unaligned_be32(opts->token, ptr);
973ec3edaa7SPeter Krystad 		ptr += 1;
974ec3edaa7SPeter Krystad 		put_unaligned_be32(opts->nonce, ptr);
975ec3edaa7SPeter Krystad 		ptr += 1;
976ec3edaa7SPeter Krystad 	}
977ec3edaa7SPeter Krystad 
978f296234cSPeter Krystad 	if (OPTION_MPTCP_MPJ_SYNACK & opts->suboptions) {
979f296234cSPeter Krystad 		*ptr++ = mptcp_option(MPTCPOPT_MP_JOIN,
980f296234cSPeter Krystad 				      TCPOLEN_MPTCP_MPJ_SYNACK,
981f296234cSPeter Krystad 				      opts->backup, opts->join_id);
982f296234cSPeter Krystad 		put_unaligned_be64(opts->thmac, ptr);
983f296234cSPeter Krystad 		ptr += 2;
984f296234cSPeter Krystad 		put_unaligned_be32(opts->nonce, ptr);
985f296234cSPeter Krystad 		ptr += 1;
986f296234cSPeter Krystad 	}
987f296234cSPeter Krystad 
988ec3edaa7SPeter Krystad 	if (OPTION_MPTCP_MPJ_ACK & opts->suboptions) {
989ec3edaa7SPeter Krystad 		*ptr++ = mptcp_option(MPTCPOPT_MP_JOIN,
990ec3edaa7SPeter Krystad 				      TCPOLEN_MPTCP_MPJ_ACK, 0, 0);
991ec3edaa7SPeter Krystad 		memcpy(ptr, opts->hmac, MPTCPOPT_HMAC_LEN);
992ec3edaa7SPeter Krystad 		ptr += 5;
993ec3edaa7SPeter Krystad 	}
994ec3edaa7SPeter Krystad 
9956d0060f6SMat Martineau 	if (opts->ext_copy.use_ack || opts->ext_copy.use_map) {
9966d0060f6SMat Martineau 		struct mptcp_ext *mpext = &opts->ext_copy;
9976d0060f6SMat Martineau 		u8 len = TCPOLEN_MPTCP_DSS_BASE;
9986d0060f6SMat Martineau 		u8 flags = 0;
9996d0060f6SMat Martineau 
10006d0060f6SMat Martineau 		if (mpext->use_ack) {
10016d0060f6SMat Martineau 			len += TCPOLEN_MPTCP_DSS_ACK64;
10026d0060f6SMat Martineau 			flags = MPTCP_DSS_HAS_ACK | MPTCP_DSS_ACK64;
10036d0060f6SMat Martineau 		}
10046d0060f6SMat Martineau 
10056d0060f6SMat Martineau 		if (mpext->use_map) {
10066d0060f6SMat Martineau 			len += TCPOLEN_MPTCP_DSS_MAP64;
10076d0060f6SMat Martineau 
10086d0060f6SMat Martineau 			/* Use only 64-bit mapping flags for now, add
10096d0060f6SMat Martineau 			 * support for optional 32-bit mappings later.
10106d0060f6SMat Martineau 			 */
10116d0060f6SMat Martineau 			flags |= MPTCP_DSS_HAS_MAP | MPTCP_DSS_DSN64;
10126d0060f6SMat Martineau 			if (mpext->data_fin)
10136d0060f6SMat Martineau 				flags |= MPTCP_DSS_DATA_FIN;
10146d0060f6SMat Martineau 		}
10156d0060f6SMat Martineau 
10163df523abSPeter Krystad 		*ptr++ = mptcp_option(MPTCPOPT_DSS, len, 0, flags);
10176d0060f6SMat Martineau 
10186d0060f6SMat Martineau 		if (mpext->use_ack) {
10196d0060f6SMat Martineau 			put_unaligned_be64(mpext->data_ack, ptr);
10206d0060f6SMat Martineau 			ptr += 2;
10216d0060f6SMat Martineau 		}
10226d0060f6SMat Martineau 
10236d0060f6SMat Martineau 		if (mpext->use_map) {
10246d0060f6SMat Martineau 			put_unaligned_be64(mpext->data_seq, ptr);
10256d0060f6SMat Martineau 			ptr += 2;
10266d0060f6SMat Martineau 			put_unaligned_be32(mpext->subflow_seq, ptr);
10276d0060f6SMat Martineau 			ptr += 1;
10286d0060f6SMat Martineau 			put_unaligned_be32(mpext->data_len << 16 |
10296d0060f6SMat Martineau 					   TCPOPT_NOP << 8 | TCPOPT_NOP, ptr);
10306d0060f6SMat Martineau 		}
10316d0060f6SMat Martineau 	}
1032eda7acddSPeter Krystad }
1033