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];
100 void mptcp_init(void);
102 static inline bool sk_is_mptcp(const struct sock *sk)
104 return tcp_sk(sk)->is_mptcp;
107 static inline bool rsk_is_mptcp(const struct request_sock *req)
109 return tcp_rsk(req)->is_mptcp;
112 static inline bool rsk_drop_req(const struct request_sock *req)
114 return tcp_rsk(req)->is_mptcp && tcp_rsk(req)->drop_req;
117 void mptcp_space(const struct sock *ssk, int *space, int *full_space);
118 bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb,
119 unsigned int *size, struct mptcp_out_options *opts);
120 bool mptcp_synack_options(const struct request_sock *req, unsigned int *size,
121 struct mptcp_out_options *opts);
122 bool mptcp_established_options(struct sock *sk, struct sk_buff *skb,
123 unsigned int *size, unsigned int remaining,
124 struct mptcp_out_options *opts);
125 bool mptcp_incoming_options(struct sock *sk, struct sk_buff *skb);
127 void mptcp_write_options(struct tcphdr *th, __be32 *ptr, struct tcp_sock *tp,
128 struct mptcp_out_options *opts);
130 void mptcp_diag_fill_info(struct mptcp_sock *msk, struct mptcp_info *info);
132 /* move the skb extension owership, with the assumption that 'to' is
135 static inline void mptcp_skb_ext_move(struct sk_buff *to,
136 struct sk_buff *from)
138 if (!skb_ext_exist(from, SKB_EXT_MPTCP))
141 if (WARN_ON_ONCE(to->active_extensions))
144 to->active_extensions = from->active_extensions;
145 to->extensions = from->extensions;
146 from->active_extensions = 0;
149 static inline void mptcp_skb_ext_copy(struct sk_buff *to,
150 struct sk_buff *from)
152 struct mptcp_ext *from_ext;
154 from_ext = skb_ext_find(from, SKB_EXT_MPTCP);
158 from_ext->frozen = 1;
159 skb_ext_copy(to, from);
162 static inline bool mptcp_ext_matches(const struct mptcp_ext *to_ext,
163 const struct mptcp_ext *from_ext)
165 /* MPTCP always clears the ext when adding it to the skb, so
166 * holes do not bother us here
169 (to_ext && from_ext &&
170 !memcmp(from_ext, to_ext, sizeof(struct mptcp_ext)));
173 /* check if skbs can be collapsed.
174 * MPTCP collapse is allowed if neither @to or @from carry an mptcp data
175 * mapping, or if the extension of @to is the same as @from.
176 * Collapsing is not possible if @to lacks an extension, but @from carries one.
178 static inline bool mptcp_skb_can_collapse(const struct sk_buff *to,
179 const struct sk_buff *from)
181 return mptcp_ext_matches(skb_ext_find(to, SKB_EXT_MPTCP),
182 skb_ext_find(from, SKB_EXT_MPTCP));
185 void mptcp_seq_show(struct seq_file *seq);
186 int mptcp_subflow_init_cookie_req(struct request_sock *req,
187 const struct sock *sk_listener,
188 struct sk_buff *skb);
189 struct request_sock *mptcp_subflow_reqsk_alloc(const struct request_sock_ops *ops,
190 struct sock *sk_listener,
191 bool attach_listener);
193 __be32 mptcp_get_reset_option(const struct sk_buff *skb);
195 static inline __be32 mptcp_reset_option(const struct sk_buff *skb)
197 if (skb_ext_exist(skb, SKB_EXT_MPTCP))
198 return mptcp_get_reset_option(skb);
204 static inline void mptcp_init(void)
208 static inline bool sk_is_mptcp(const struct sock *sk)
213 static inline bool rsk_is_mptcp(const struct request_sock *req)
218 static inline bool rsk_drop_req(const struct request_sock *req)
223 static inline bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb,
225 struct mptcp_out_options *opts)
230 static inline bool mptcp_synack_options(const struct request_sock *req,
232 struct mptcp_out_options *opts)
237 static inline bool mptcp_established_options(struct sock *sk,
240 unsigned int remaining,
241 struct mptcp_out_options *opts)
246 static inline bool mptcp_incoming_options(struct sock *sk,
252 static inline void mptcp_skb_ext_move(struct sk_buff *to,
253 const struct sk_buff *from)
257 static inline void mptcp_skb_ext_copy(struct sk_buff *to,
258 struct sk_buff *from)
262 static inline bool mptcp_skb_can_collapse(const struct sk_buff *to,
263 const struct sk_buff *from)
268 static inline void mptcp_space(const struct sock *ssk, int *s, int *fs) { }
269 static inline void mptcp_seq_show(struct seq_file *seq) { }
271 static inline int mptcp_subflow_init_cookie_req(struct request_sock *req,
272 const struct sock *sk_listener,
275 return 0; /* TCP fallback */
278 static inline struct request_sock *mptcp_subflow_reqsk_alloc(const struct request_sock_ops *ops,
279 struct sock *sk_listener,
280 bool attach_listener)
285 static inline __be32 mptcp_reset_option(const struct sk_buff *skb) { return htonl(0u); }
286 #endif /* CONFIG_MPTCP */
288 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
289 int mptcpv6_init(void);
290 void mptcpv6_handle_mapped(struct sock *sk, bool mapped);
291 #elif IS_ENABLED(CONFIG_IPV6)
292 static inline int mptcpv6_init(void) { return 0; }
293 static inline void mptcpv6_handle_mapped(struct sock *sk, bool mapped) { }
296 #if defined(CONFIG_MPTCP) && defined(CONFIG_BPF_SYSCALL)
297 struct mptcp_sock *bpf_mptcp_sock_from_subflow(struct sock *sk);
299 static inline struct mptcp_sock *bpf_mptcp_sock_from_subflow(struct sock *sk) { return NULL; }
302 #if !IS_ENABLED(CONFIG_MPTCP)
303 struct mptcp_sock { };
306 #endif /* __NET_MPTCP_H */