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>
17 /* MPTCP sk_buff extension data */
39 #define MPTCP_RM_IDS_MAX 8
41 struct mptcp_rm_list {
42 u8 ids[MPTCP_RM_IDS_MAX];
46 struct mptcp_addr_info {
52 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
53 struct in6_addr addr6;
58 struct mptcp_out_options {
59 #if IS_ENABLED(CONFIG_MPTCP)
64 struct mptcp_addr_info addr;
65 struct mptcp_rm_list rm_list;
76 struct mptcp_ext ext_copy;
81 extern struct request_sock_ops mptcp_subflow_request_sock_ops;
83 void mptcp_init(void);
85 static inline bool sk_is_mptcp(const struct sock *sk)
87 return tcp_sk(sk)->is_mptcp;
90 static inline bool rsk_is_mptcp(const struct request_sock *req)
92 return tcp_rsk(req)->is_mptcp;
95 static inline bool rsk_drop_req(const struct request_sock *req)
97 return tcp_rsk(req)->is_mptcp && tcp_rsk(req)->drop_req;
100 void mptcp_space(const struct sock *ssk, int *space, int *full_space);
101 bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb,
102 unsigned int *size, struct mptcp_out_options *opts);
103 bool mptcp_synack_options(const struct request_sock *req, unsigned int *size,
104 struct mptcp_out_options *opts);
105 bool mptcp_established_options(struct sock *sk, struct sk_buff *skb,
106 unsigned int *size, unsigned int remaining,
107 struct mptcp_out_options *opts);
108 bool mptcp_incoming_options(struct sock *sk, struct sk_buff *skb);
110 void mptcp_write_options(__be32 *ptr, const struct tcp_sock *tp,
111 struct mptcp_out_options *opts);
113 /* move the skb extension owership, with the assumption that 'to' is
116 static inline void mptcp_skb_ext_move(struct sk_buff *to,
117 struct sk_buff *from)
119 if (!skb_ext_exist(from, SKB_EXT_MPTCP))
122 if (WARN_ON_ONCE(to->active_extensions))
125 to->active_extensions = from->active_extensions;
126 to->extensions = from->extensions;
127 from->active_extensions = 0;
130 static inline void mptcp_skb_ext_copy(struct sk_buff *to,
131 struct sk_buff *from)
133 struct mptcp_ext *from_ext;
135 from_ext = skb_ext_find(from, SKB_EXT_MPTCP);
139 from_ext->frozen = 1;
140 skb_ext_copy(to, from);
143 static inline bool mptcp_ext_matches(const struct mptcp_ext *to_ext,
144 const struct mptcp_ext *from_ext)
146 /* MPTCP always clears the ext when adding it to the skb, so
147 * holes do not bother us here
150 (to_ext && from_ext &&
151 !memcmp(from_ext, to_ext, sizeof(struct mptcp_ext)));
154 /* check if skbs can be collapsed.
155 * MPTCP collapse is allowed if neither @to or @from carry an mptcp data
156 * mapping, or if the extension of @to is the same as @from.
157 * Collapsing is not possible if @to lacks an extension, but @from carries one.
159 static inline bool mptcp_skb_can_collapse(const struct sk_buff *to,
160 const struct sk_buff *from)
162 return mptcp_ext_matches(skb_ext_find(to, SKB_EXT_MPTCP),
163 skb_ext_find(from, SKB_EXT_MPTCP));
166 void mptcp_seq_show(struct seq_file *seq);
167 int mptcp_subflow_init_cookie_req(struct request_sock *req,
168 const struct sock *sk_listener,
169 struct sk_buff *skb);
171 __be32 mptcp_get_reset_option(const struct sk_buff *skb);
173 static inline __be32 mptcp_reset_option(const struct sk_buff *skb)
175 if (skb_ext_exist(skb, SKB_EXT_MPTCP))
176 return mptcp_get_reset_option(skb);
182 static inline void mptcp_init(void)
186 static inline bool sk_is_mptcp(const struct sock *sk)
191 static inline bool rsk_is_mptcp(const struct request_sock *req)
196 static inline bool rsk_drop_req(const struct request_sock *req)
201 static inline void mptcp_parse_option(const struct sk_buff *skb,
202 const unsigned char *ptr, int opsize,
203 struct tcp_options_received *opt_rx)
207 static inline bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb,
209 struct mptcp_out_options *opts)
214 static inline bool mptcp_synack_options(const struct request_sock *req,
216 struct mptcp_out_options *opts)
221 static inline bool mptcp_established_options(struct sock *sk,
224 unsigned int remaining,
225 struct mptcp_out_options *opts)
230 static inline bool mptcp_incoming_options(struct sock *sk,
236 static inline void mptcp_skb_ext_move(struct sk_buff *to,
237 const struct sk_buff *from)
241 static inline void mptcp_skb_ext_copy(struct sk_buff *to,
242 struct sk_buff *from)
246 static inline bool mptcp_skb_can_collapse(const struct sk_buff *to,
247 const struct sk_buff *from)
252 static inline void mptcp_space(const struct sock *ssk, int *s, int *fs) { }
253 static inline void mptcp_seq_show(struct seq_file *seq) { }
255 static inline int mptcp_subflow_init_cookie_req(struct request_sock *req,
256 const struct sock *sk_listener,
259 return 0; /* TCP fallback */
262 static inline __be32 mptcp_reset_option(const struct sk_buff *skb) { return htonl(0u); }
263 #endif /* CONFIG_MPTCP */
265 #if IS_ENABLED(CONFIG_MPTCP_IPV6)
266 int mptcpv6_init(void);
267 void mptcpv6_handle_mapped(struct sock *sk, bool mapped);
268 #elif IS_ENABLED(CONFIG_IPV6)
269 static inline int mptcpv6_init(void) { return 0; }
270 static inline void mptcpv6_handle_mapped(struct sock *sk, bool mapped) { }
273 #endif /* __NET_MPTCP_H */