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 */
41 #define MPTCP_RM_IDS_MAX 8
43 struct mptcp_rm_list {
44 u8 ids[MPTCP_RM_IDS_MAX];
48 struct mptcp_addr_info {
54 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
55 struct in6_addr addr6;
60 struct mptcp_out_options {
61 #if IS_ENABLED(CONFIG_MPTCP)
63 struct mptcp_rm_list rm_list;
76 struct mptcp_addr_info addr;
80 struct mptcp_ext ext_copy;
94 extern struct request_sock_ops mptcp_subflow_request_sock_ops;
96 void mptcp_init(void);
98 static inline bool sk_is_mptcp(const struct sock *sk)
100 return tcp_sk(sk)->is_mptcp;
103 static inline bool rsk_is_mptcp(const struct request_sock *req)
105 return tcp_rsk(req)->is_mptcp;
108 static inline bool rsk_drop_req(const struct request_sock *req)
110 return tcp_rsk(req)->is_mptcp && tcp_rsk(req)->drop_req;
113 void mptcp_space(const struct sock *ssk, int *space, int *full_space);
114 bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb,
115 unsigned int *size, struct mptcp_out_options *opts);
116 bool mptcp_synack_options(const struct request_sock *req, unsigned int *size,
117 struct mptcp_out_options *opts);
118 bool mptcp_established_options(struct sock *sk, struct sk_buff *skb,
119 unsigned int *size, unsigned int remaining,
120 struct mptcp_out_options *opts);
121 bool mptcp_incoming_options(struct sock *sk, struct sk_buff *skb);
123 void mptcp_write_options(__be32 *ptr, const struct tcp_sock *tp,
124 struct mptcp_out_options *opts);
126 void mptcp_diag_fill_info(struct mptcp_sock *msk, struct mptcp_info *info);
128 /* move the skb extension owership, with the assumption that 'to' is
131 static inline void mptcp_skb_ext_move(struct sk_buff *to,
132 struct sk_buff *from)
134 if (!skb_ext_exist(from, SKB_EXT_MPTCP))
137 if (WARN_ON_ONCE(to->active_extensions))
140 to->active_extensions = from->active_extensions;
141 to->extensions = from->extensions;
142 from->active_extensions = 0;
145 static inline void mptcp_skb_ext_copy(struct sk_buff *to,
146 struct sk_buff *from)
148 struct mptcp_ext *from_ext;
150 from_ext = skb_ext_find(from, SKB_EXT_MPTCP);
154 from_ext->frozen = 1;
155 skb_ext_copy(to, from);
158 static inline bool mptcp_ext_matches(const struct mptcp_ext *to_ext,
159 const struct mptcp_ext *from_ext)
161 /* MPTCP always clears the ext when adding it to the skb, so
162 * holes do not bother us here
165 (to_ext && from_ext &&
166 !memcmp(from_ext, to_ext, sizeof(struct mptcp_ext)));
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.
174 static inline bool mptcp_skb_can_collapse(const struct sk_buff *to,
175 const struct sk_buff *from)
177 return mptcp_ext_matches(skb_ext_find(to, SKB_EXT_MPTCP),
178 skb_ext_find(from, SKB_EXT_MPTCP));
181 void mptcp_seq_show(struct seq_file *seq);
182 int mptcp_subflow_init_cookie_req(struct request_sock *req,
183 const struct sock *sk_listener,
184 struct sk_buff *skb);
186 __be32 mptcp_get_reset_option(const struct sk_buff *skb);
188 static inline __be32 mptcp_reset_option(const struct sk_buff *skb)
190 if (skb_ext_exist(skb, SKB_EXT_MPTCP))
191 return mptcp_get_reset_option(skb);
197 static inline void mptcp_init(void)
201 static inline bool sk_is_mptcp(const struct sock *sk)
206 static inline bool rsk_is_mptcp(const struct request_sock *req)
211 static inline bool rsk_drop_req(const struct request_sock *req)
216 static inline void mptcp_parse_option(const struct sk_buff *skb,
217 const unsigned char *ptr, int opsize,
218 struct tcp_options_received *opt_rx)
222 static inline bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb,
224 struct mptcp_out_options *opts)
229 static inline bool mptcp_synack_options(const struct request_sock *req,
231 struct mptcp_out_options *opts)
236 static inline bool mptcp_established_options(struct sock *sk,
239 unsigned int remaining,
240 struct mptcp_out_options *opts)
245 static inline bool mptcp_incoming_options(struct sock *sk,
251 static inline void mptcp_skb_ext_move(struct sk_buff *to,
252 const struct sk_buff *from)
256 static inline void mptcp_skb_ext_copy(struct sk_buff *to,
257 struct sk_buff *from)
261 static inline bool mptcp_skb_can_collapse(const struct sk_buff *to,
262 const struct sk_buff *from)
267 static inline void mptcp_space(const struct sock *ssk, int *s, int *fs) { }
268 static inline void mptcp_seq_show(struct seq_file *seq) { }
270 static inline int mptcp_subflow_init_cookie_req(struct request_sock *req,
271 const struct sock *sk_listener,
274 return 0; /* TCP fallback */
277 static inline __be32 mptcp_reset_option(const struct sk_buff *skb) { return htonl(0u); }
278 #endif /* CONFIG_MPTCP */
280 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
281 int mptcpv6_init(void);
282 void mptcpv6_handle_mapped(struct sock *sk, bool mapped);
283 #elif IS_ENABLED(CONFIG_IPV6)
284 static inline int mptcpv6_init(void) { return 0; }
285 static inline void mptcpv6_handle_mapped(struct sock *sk, bool mapped) { }
288 #endif /* __NET_MPTCP_H */