Commit | Line | Data |
---|---|---|
3ee17bc7 MM |
1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | /* | |
3 | * Multipath TCP | |
4 | * | |
5 | * Copyright (c) 2017 - 2019, Intel Corporation. | |
6 | */ | |
7 | ||
8 | #ifndef __NET_MPTCP_H | |
9 | #define __NET_MPTCP_H | |
10 | ||
85712484 | 11 | #include <linux/skbuff.h> |
eda7acdd | 12 | #include <linux/tcp.h> |
3ee17bc7 MM |
13 | #include <linux/types.h> |
14 | ||
fc518953 FW |
15 | struct seq_file; |
16 | ||
3ee17bc7 MM |
17 | /* MPTCP sk_buff extension data */ |
18 | struct mptcp_ext { | |
a0c1d0ea CP |
19 | union { |
20 | u64 data_ack; | |
21 | u32 data_ack32; | |
22 | }; | |
3ee17bc7 MM |
23 | u64 data_seq; |
24 | u32 subflow_seq; | |
25 | u16 data_len; | |
d0cc2987 | 26 | __sum16 csum; |
3ee17bc7 MM |
27 | u8 use_map:1, |
28 | dsn64:1, | |
29 | data_fin:1, | |
30 | use_ack:1, | |
31 | ack64:1, | |
cc7972ea | 32 | mpc_map:1, |
5a369ca6 | 33 | frozen:1, |
dc87efdb | 34 | reset_transient:1; |
208e8f66 GT |
35 | u8 reset_reason:4, |
36 | csum_reqd:1; | |
3ee17bc7 MM |
37 | }; |
38 | ||
6445e17a GT |
39 | #define MPTCP_RM_IDS_MAX 8 |
40 | ||
41 | struct mptcp_rm_list { | |
42 | u8 ids[MPTCP_RM_IDS_MAX]; | |
43 | u8 nr; | |
44 | }; | |
45 | ||
30f60bae GT |
46 | struct mptcp_addr_info { |
47 | u8 id; | |
48 | sa_family_t family; | |
49 | __be16 port; | |
50 | union { | |
51 | struct in_addr addr; | |
52 | #if IS_ENABLED(CONFIG_MPTCP_IPV6) | |
53 | struct in6_addr addr6; | |
54 | #endif | |
55 | }; | |
56 | }; | |
57 | ||
eda7acdd PK |
58 | struct mptcp_out_options { |
59 | #if IS_ENABLED(CONFIG_MPTCP) | |
60 | u16 suboptions; | |
6445e17a | 61 | struct mptcp_rm_list rm_list; |
f296234c PK |
62 | u8 join_id; |
63 | u8 backup; | |
06fe1719 GT |
64 | u8 reset_reason:4, |
65 | reset_transient:1, | |
bab6b88e GT |
66 | csum_reqd:1, |
67 | allow_join_id0:1; | |
d7b26908 PA |
68 | union { |
69 | struct { | |
70 | u64 sndr_key; | |
71 | u64 rcvr_key; | |
f7cc8890 DC |
72 | u64 data_seq; |
73 | u32 subflow_seq; | |
74 | u16 data_len; | |
75 | __sum16 csum; | |
d7b26908 PA |
76 | }; |
77 | struct { | |
78 | struct mptcp_addr_info addr; | |
79 | u64 ahmac; | |
80 | }; | |
c25aeb4e GT |
81 | struct { |
82 | struct mptcp_ext ext_copy; | |
83 | u64 fail_seq; | |
84 | }; | |
d7b26908 PA |
85 | struct { |
86 | u32 nonce; | |
87 | u32 token; | |
88 | u64 thmac; | |
89 | u8 hmac[20]; | |
90 | }; | |
91 | }; | |
eda7acdd PK |
92 | #endif |
93 | }; | |
94 | ||
85712484 | 95 | #ifdef CONFIG_MPTCP |
08b8d080 | 96 | extern struct request_sock_ops mptcp_subflow_request_sock_ops; |
85712484 | 97 | |
f870fa0b MM |
98 | void mptcp_init(void); |
99 | ||
cec37a6e PK |
100 | static inline bool sk_is_mptcp(const struct sock *sk) |
101 | { | |
102 | return tcp_sk(sk)->is_mptcp; | |
103 | } | |
104 | ||
105 | static inline bool rsk_is_mptcp(const struct request_sock *req) | |
106 | { | |
107 | return tcp_rsk(req)->is_mptcp; | |
108 | } | |
109 | ||
90bf4513 PA |
110 | static inline bool rsk_drop_req(const struct request_sock *req) |
111 | { | |
112 | return tcp_rsk(req)->is_mptcp && tcp_rsk(req)->drop_req; | |
113 | } | |
114 | ||
071c8ed6 | 115 | void mptcp_space(const struct sock *ssk, int *space, int *full_space); |
cc7972ea CP |
116 | bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb, |
117 | unsigned int *size, struct mptcp_out_options *opts); | |
cec37a6e PK |
118 | bool mptcp_synack_options(const struct request_sock *req, unsigned int *size, |
119 | struct mptcp_out_options *opts); | |
120 | bool mptcp_established_options(struct sock *sk, struct sk_buff *skb, | |
121 | unsigned int *size, unsigned int remaining, | |
122 | struct mptcp_out_options *opts); | |
6787b7e3 | 123 | bool mptcp_incoming_options(struct sock *sk, struct sk_buff *skb); |
cec37a6e | 124 | |
fa3fe2b1 FW |
125 | void mptcp_write_options(__be32 *ptr, const struct tcp_sock *tp, |
126 | struct mptcp_out_options *opts); | |
eda7acdd | 127 | |
85712484 MM |
128 | /* move the skb extension owership, with the assumption that 'to' is |
129 | * newly allocated | |
130 | */ | |
131 | static inline void mptcp_skb_ext_move(struct sk_buff *to, | |
132 | struct sk_buff *from) | |
133 | { | |
134 | if (!skb_ext_exist(from, SKB_EXT_MPTCP)) | |
135 | return; | |
136 | ||
137 | if (WARN_ON_ONCE(to->active_extensions)) | |
138 | skb_ext_put(to); | |
139 | ||
140 | to->active_extensions = from->active_extensions; | |
141 | to->extensions = from->extensions; | |
142 | from->active_extensions = 0; | |
143 | } | |
144 | ||
5a369ca6 PA |
145 | static inline void mptcp_skb_ext_copy(struct sk_buff *to, |
146 | struct sk_buff *from) | |
147 | { | |
148 | struct mptcp_ext *from_ext; | |
149 | ||
150 | from_ext = skb_ext_find(from, SKB_EXT_MPTCP); | |
151 | if (!from_ext) | |
152 | return; | |
153 | ||
154 | from_ext->frozen = 1; | |
155 | skb_ext_copy(to, from); | |
156 | } | |
157 | ||
85712484 MM |
158 | static inline bool mptcp_ext_matches(const struct mptcp_ext *to_ext, |
159 | const struct mptcp_ext *from_ext) | |
160 | { | |
161 | /* MPTCP always clears the ext when adding it to the skb, so | |
162 | * holes do not bother us here | |
163 | */ | |
164 | return !from_ext || | |
165 | (to_ext && from_ext && | |
166 | !memcmp(from_ext, to_ext, sizeof(struct mptcp_ext))); | |
167 | } | |
168 | ||
169 | /* check if skbs can be collapsed. | |
170 | * MPTCP collapse is allowed if neither @to or @from carry an mptcp data | |
171 | * mapping, or if the extension of @to is the same as @from. | |
172 | * Collapsing is not possible if @to lacks an extension, but @from carries one. | |
173 | */ | |
174 | static inline bool mptcp_skb_can_collapse(const struct sk_buff *to, | |
175 | const struct sk_buff *from) | |
176 | { | |
177 | return mptcp_ext_matches(skb_ext_find(to, SKB_EXT_MPTCP), | |
178 | skb_ext_find(from, SKB_EXT_MPTCP)); | |
179 | } | |
180 | ||
fc518953 | 181 | void mptcp_seq_show(struct seq_file *seq); |
c83a47e5 FW |
182 | int mptcp_subflow_init_cookie_req(struct request_sock *req, |
183 | const struct sock *sk_listener, | |
184 | struct sk_buff *skb); | |
dc87efdb FW |
185 | |
186 | __be32 mptcp_get_reset_option(const struct sk_buff *skb); | |
187 | ||
188 | static inline __be32 mptcp_reset_option(const struct sk_buff *skb) | |
189 | { | |
190 | if (skb_ext_exist(skb, SKB_EXT_MPTCP)) | |
191 | return mptcp_get_reset_option(skb); | |
192 | ||
193 | return htonl(0u); | |
194 | } | |
85712484 MM |
195 | #else |
196 | ||
f870fa0b MM |
197 | static inline void mptcp_init(void) |
198 | { | |
199 | } | |
200 | ||
cec37a6e PK |
201 | static inline bool sk_is_mptcp(const struct sock *sk) |
202 | { | |
203 | return false; | |
204 | } | |
205 | ||
206 | static inline bool rsk_is_mptcp(const struct request_sock *req) | |
207 | { | |
208 | return false; | |
209 | } | |
210 | ||
90bf4513 PA |
211 | static inline bool rsk_drop_req(const struct request_sock *req) |
212 | { | |
213 | return false; | |
214 | } | |
215 | ||
cc7972ea CP |
216 | static inline void mptcp_parse_option(const struct sk_buff *skb, |
217 | const unsigned char *ptr, int opsize, | |
eda7acdd PK |
218 | struct tcp_options_received *opt_rx) |
219 | { | |
220 | } | |
221 | ||
cc7972ea CP |
222 | static inline bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb, |
223 | unsigned int *size, | |
cec37a6e PK |
224 | struct mptcp_out_options *opts) |
225 | { | |
226 | return false; | |
227 | } | |
228 | ||
cec37a6e PK |
229 | static inline bool mptcp_synack_options(const struct request_sock *req, |
230 | unsigned int *size, | |
231 | struct mptcp_out_options *opts) | |
232 | { | |
233 | return false; | |
234 | } | |
235 | ||
236 | static inline bool mptcp_established_options(struct sock *sk, | |
237 | struct sk_buff *skb, | |
238 | unsigned int *size, | |
239 | unsigned int remaining, | |
240 | struct mptcp_out_options *opts) | |
241 | { | |
242 | return false; | |
243 | } | |
244 | ||
6787b7e3 | 245 | static inline bool mptcp_incoming_options(struct sock *sk, |
77d0cab9 | 246 | struct sk_buff *skb) |
648ef4b8 | 247 | { |
6787b7e3 | 248 | return true; |
648ef4b8 MM |
249 | } |
250 | ||
85712484 MM |
251 | static inline void mptcp_skb_ext_move(struct sk_buff *to, |
252 | const struct sk_buff *from) | |
253 | { | |
254 | } | |
255 | ||
5a369ca6 PA |
256 | static inline void mptcp_skb_ext_copy(struct sk_buff *to, |
257 | struct sk_buff *from) | |
258 | { | |
259 | } | |
260 | ||
85712484 MM |
261 | static inline bool mptcp_skb_can_collapse(const struct sk_buff *to, |
262 | const struct sk_buff *from) | |
263 | { | |
264 | return true; | |
265 | } | |
266 | ||
071c8ed6 | 267 | static inline void mptcp_space(const struct sock *ssk, int *s, int *fs) { } |
fc518953 | 268 | static inline void mptcp_seq_show(struct seq_file *seq) { } |
c83a47e5 FW |
269 | |
270 | static inline int mptcp_subflow_init_cookie_req(struct request_sock *req, | |
271 | const struct sock *sk_listener, | |
272 | struct sk_buff *skb) | |
273 | { | |
274 | return 0; /* TCP fallback */ | |
275 | } | |
dc87efdb FW |
276 | |
277 | static inline __be32 mptcp_reset_option(const struct sk_buff *skb) { return htonl(0u); } | |
85712484 | 278 | #endif /* CONFIG_MPTCP */ |
f870fa0b MM |
279 | |
280 | #if IS_ENABLED(CONFIG_MPTCP_IPV6) | |
281 | int mptcpv6_init(void); | |
31484d56 | 282 | void mptcpv6_handle_mapped(struct sock *sk, bool mapped); |
f870fa0b | 283 | #elif IS_ENABLED(CONFIG_IPV6) |
31484d56 GU |
284 | static inline int mptcpv6_init(void) { return 0; } |
285 | static inline void mptcpv6_handle_mapped(struct sock *sk, bool mapped) { } | |
f870fa0b MM |
286 | #endif |
287 | ||
3ee17bc7 | 288 | #endif /* __NET_MPTCP_H */ |