1 /* SPDX-License-Identifier: GPL-2.0 */
5 * Copyright (c) 2017 - 2019, Intel Corporation.
11 #include <linux/skbuff.h>
12 #include <linux/tcp.h>
13 #include <linux/types.h>
19 /* MPTCP sk_buff extension data */
42 #define MPTCPOPT_HMAC_LEN 20
43 #define MPTCP_RM_IDS_MAX 8
45 struct mptcp_rm_list {
46 u8 ids[MPTCP_RM_IDS_MAX];
50 struct mptcp_addr_info {
56 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
57 struct in6_addr addr6;
62 struct mptcp_out_options {
63 #if IS_ENABLED(CONFIG_MPTCP)
65 struct mptcp_rm_list rm_list;
82 struct mptcp_addr_info addr;
86 struct mptcp_ext ext_copy;
93 u8 hmac[MPTCPOPT_HMAC_LEN];
99 #define MPTCP_SCHED_NAME_MAX 16
100 #define MPTCP_SUBFLOWS_MAX 8
102 struct mptcp_sched_data {
105 struct mptcp_subflow_context *contexts[MPTCP_SUBFLOWS_MAX];
108 struct mptcp_sched_ops {
109 int (*get_subflow)(struct mptcp_sock *msk,
110 struct mptcp_sched_data *data);
112 char name[MPTCP_SCHED_NAME_MAX];
113 struct module *owner;
114 struct list_head list;
116 void (*init)(struct mptcp_sock *msk);
117 void (*release)(struct mptcp_sock *msk);
118 } ____cacheline_aligned_in_smp;
121 void mptcp_init(void);
123 static inline bool sk_is_mptcp(const struct sock *sk)
125 return tcp_sk(sk)->is_mptcp;
128 static inline bool rsk_is_mptcp(const struct request_sock *req)
130 return tcp_rsk(req)->is_mptcp;
133 static inline bool rsk_drop_req(const struct request_sock *req)
135 return tcp_rsk(req)->is_mptcp && tcp_rsk(req)->drop_req;
138 void mptcp_space(const struct sock *ssk, int *space, int *full_space);
139 bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb,
140 unsigned int *size, struct mptcp_out_options *opts);
141 bool mptcp_synack_options(const struct request_sock *req, unsigned int *size,
142 struct mptcp_out_options *opts);
143 bool mptcp_established_options(struct sock *sk, struct sk_buff *skb,
144 unsigned int *size, unsigned int remaining,
145 struct mptcp_out_options *opts);
146 bool mptcp_incoming_options(struct sock *sk, struct sk_buff *skb);
148 void mptcp_write_options(struct tcphdr *th, __be32 *ptr, struct tcp_sock *tp,
149 struct mptcp_out_options *opts);
151 void mptcp_diag_fill_info(struct mptcp_sock *msk, struct mptcp_info *info);
153 /* move the skb extension owership, with the assumption that 'to' is
156 static inline void mptcp_skb_ext_move(struct sk_buff *to,
157 struct sk_buff *from)
159 if (!skb_ext_exist(from, SKB_EXT_MPTCP))
162 if (WARN_ON_ONCE(to->active_extensions))
165 to->active_extensions = from->active_extensions;
166 to->extensions = from->extensions;
167 from->active_extensions = 0;
170 static inline void mptcp_skb_ext_copy(struct sk_buff *to,
171 struct sk_buff *from)
173 struct mptcp_ext *from_ext;
175 from_ext = skb_ext_find(from, SKB_EXT_MPTCP);
179 from_ext->frozen = 1;
180 skb_ext_copy(to, from);
183 static inline bool mptcp_ext_matches(const struct mptcp_ext *to_ext,
184 const struct mptcp_ext *from_ext)
186 /* MPTCP always clears the ext when adding it to the skb, so
187 * holes do not bother us here
190 (to_ext && from_ext &&
191 !memcmp(from_ext, to_ext, sizeof(struct mptcp_ext)));
194 /* check if skbs can be collapsed.
195 * MPTCP collapse is allowed if neither @to or @from carry an mptcp data
196 * mapping, or if the extension of @to is the same as @from.
197 * Collapsing is not possible if @to lacks an extension, but @from carries one.
199 static inline bool mptcp_skb_can_collapse(const struct sk_buff *to,
200 const struct sk_buff *from)
202 return mptcp_ext_matches(skb_ext_find(to, SKB_EXT_MPTCP),
203 skb_ext_find(from, SKB_EXT_MPTCP));
206 void mptcp_seq_show(struct seq_file *seq);
207 int mptcp_subflow_init_cookie_req(struct request_sock *req,
208 const struct sock *sk_listener,
209 struct sk_buff *skb);
210 struct request_sock *mptcp_subflow_reqsk_alloc(const struct request_sock_ops *ops,
211 struct sock *sk_listener,
212 bool attach_listener);
214 __be32 mptcp_get_reset_option(const struct sk_buff *skb);
216 static inline __be32 mptcp_reset_option(const struct sk_buff *skb)
218 if (skb_ext_exist(skb, SKB_EXT_MPTCP))
219 return mptcp_get_reset_option(skb);
225 static inline void mptcp_init(void)
229 static inline bool sk_is_mptcp(const struct sock *sk)
234 static inline bool rsk_is_mptcp(const struct request_sock *req)
239 static inline bool rsk_drop_req(const struct request_sock *req)
244 static inline bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb,
246 struct mptcp_out_options *opts)
251 static inline bool mptcp_synack_options(const struct request_sock *req,
253 struct mptcp_out_options *opts)
258 static inline bool mptcp_established_options(struct sock *sk,
261 unsigned int remaining,
262 struct mptcp_out_options *opts)
267 static inline bool mptcp_incoming_options(struct sock *sk,
273 static inline void mptcp_skb_ext_move(struct sk_buff *to,
274 const struct sk_buff *from)
278 static inline void mptcp_skb_ext_copy(struct sk_buff *to,
279 struct sk_buff *from)
283 static inline bool mptcp_skb_can_collapse(const struct sk_buff *to,
284 const struct sk_buff *from)
289 static inline void mptcp_space(const struct sock *ssk, int *s, int *fs) { }
290 static inline void mptcp_seq_show(struct seq_file *seq) { }
292 static inline int mptcp_subflow_init_cookie_req(struct request_sock *req,
293 const struct sock *sk_listener,
296 return 0; /* TCP fallback */
299 static inline struct request_sock *mptcp_subflow_reqsk_alloc(const struct request_sock_ops *ops,
300 struct sock *sk_listener,
301 bool attach_listener)
306 static inline __be32 mptcp_reset_option(const struct sk_buff *skb) { return htonl(0u); }
307 #endif /* CONFIG_MPTCP */
309 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
310 int mptcpv6_init(void);
311 void mptcpv6_handle_mapped(struct sock *sk, bool mapped);
312 #elif IS_ENABLED(CONFIG_IPV6)
313 static inline int mptcpv6_init(void) { return 0; }
314 static inline void mptcpv6_handle_mapped(struct sock *sk, bool mapped) { }
317 #if defined(CONFIG_MPTCP) && defined(CONFIG_BPF_SYSCALL)
318 struct mptcp_sock *bpf_mptcp_sock_from_subflow(struct sock *sk);
320 static inline struct mptcp_sock *bpf_mptcp_sock_from_subflow(struct sock *sk) { return NULL; }
323 #if !IS_ENABLED(CONFIG_MPTCP)
324 struct mptcp_sock { };
327 #endif /* __NET_MPTCP_H */