blob: 753ba7e755d6d1427634110ee975ab61474f3420 [file] [log] [blame]
Mat Martineau3ee17bc2020-01-09 07:59:19 -08001/* 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
Mat Martineau85712482020-01-09 07:59:20 -080011#include <linux/skbuff.h>
Peter Krystadeda7acd2020-01-21 16:56:16 -080012#include <linux/tcp.h>
Mat Martineau3ee17bc2020-01-09 07:59:19 -080013#include <linux/types.h>
14
Florian Westphalfc518952020-03-27 14:48:50 -070015struct seq_file;
16
Mat Martineau3ee17bc2020-01-09 07:59:19 -080017/* MPTCP sk_buff extension data */
18struct mptcp_ext {
Christoph Paascha0c1d0e2020-05-14 08:53:03 -070019 union {
20 u64 data_ack;
21 u32 data_ack32;
22 };
Mat Martineau3ee17bc2020-01-09 07:59:19 -080023 u64 data_seq;
24 u32 subflow_seq;
25 u16 data_len;
26 u8 use_map:1,
27 dsn64:1,
28 data_fin:1,
29 use_ack:1,
30 ack64:1,
Christoph Paaschcc7972e2020-01-21 16:56:31 -080031 mpc_map:1,
32 __unused:2;
Mat Martineau3ee17bc2020-01-09 07:59:19 -080033 /* one byte hole */
34};
35
Peter Krystadeda7acd2020-01-21 16:56:16 -080036struct mptcp_out_options {
37#if IS_ENABLED(CONFIG_MPTCP)
38 u16 suboptions;
39 u64 sndr_key;
40 u64 rcvr_key;
Peter Krystad3df523a2020-03-27 14:48:37 -070041 union {
42 struct in_addr addr;
43#if IS_ENABLED(CONFIG_MPTCP_IPV6)
44 struct in6_addr addr6;
45#endif
46 };
47 u8 addr_id;
48 u64 ahmac;
49 u8 rm_id;
Peter Krystadf2962342020-03-27 14:48:39 -070050 u8 join_id;
51 u8 backup;
52 u32 nonce;
53 u64 thmac;
Peter Krystadec3edaa2020-03-27 14:48:40 -070054 u32 token;
55 u8 hmac[20];
Mat Martineau6d0060f2020-01-21 16:56:23 -080056 struct mptcp_ext ext_copy;
Peter Krystadeda7acd2020-01-21 16:56:16 -080057#endif
58};
59
Mat Martineau85712482020-01-09 07:59:20 -080060#ifdef CONFIG_MPTCP
Florian Westphal08b8d082020-07-30 21:25:53 +020061extern struct request_sock_ops mptcp_subflow_request_sock_ops;
Mat Martineau85712482020-01-09 07:59:20 -080062
Mat Martineauf870fa02020-01-21 16:56:15 -080063void mptcp_init(void);
64
Peter Krystadcec37a62020-01-21 16:56:18 -080065static inline bool sk_is_mptcp(const struct sock *sk)
66{
67 return tcp_sk(sk)->is_mptcp;
68}
69
70static inline bool rsk_is_mptcp(const struct request_sock *req)
71{
72 return tcp_rsk(req)->is_mptcp;
73}
74
Paolo Abeni90bf4512020-05-15 19:22:15 +020075static inline bool rsk_drop_req(const struct request_sock *req)
76{
77 return tcp_rsk(req)->is_mptcp && tcp_rsk(req)->drop_req;
78}
79
Florian Westphal071c8ed2020-04-24 12:31:50 +020080void mptcp_space(const struct sock *ssk, int *space, int *full_space);
Christoph Paaschcc7972e2020-01-21 16:56:31 -080081bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb,
82 unsigned int *size, struct mptcp_out_options *opts);
Peter Krystadcec37a62020-01-21 16:56:18 -080083bool mptcp_synack_options(const struct request_sock *req, unsigned int *size,
84 struct mptcp_out_options *opts);
85bool mptcp_established_options(struct sock *sk, struct sk_buff *skb,
86 unsigned int *size, unsigned int remaining,
87 struct mptcp_out_options *opts);
Florian Westphal77d0cab2020-09-25 01:23:02 +020088void mptcp_incoming_options(struct sock *sk, struct sk_buff *skb);
Peter Krystadcec37a62020-01-21 16:56:18 -080089
Peter Krystadeda7acd2020-01-21 16:56:16 -080090void mptcp_write_options(__be32 *ptr, struct mptcp_out_options *opts);
91
Mat Martineau85712482020-01-09 07:59:20 -080092/* move the skb extension owership, with the assumption that 'to' is
93 * newly allocated
94 */
95static inline void mptcp_skb_ext_move(struct sk_buff *to,
96 struct sk_buff *from)
97{
98 if (!skb_ext_exist(from, SKB_EXT_MPTCP))
99 return;
100
101 if (WARN_ON_ONCE(to->active_extensions))
102 skb_ext_put(to);
103
104 to->active_extensions = from->active_extensions;
105 to->extensions = from->extensions;
106 from->active_extensions = 0;
107}
108
109static inline bool mptcp_ext_matches(const struct mptcp_ext *to_ext,
110 const struct mptcp_ext *from_ext)
111{
112 /* MPTCP always clears the ext when adding it to the skb, so
113 * holes do not bother us here
114 */
115 return !from_ext ||
116 (to_ext && from_ext &&
117 !memcmp(from_ext, to_ext, sizeof(struct mptcp_ext)));
118}
119
120/* check if skbs can be collapsed.
121 * MPTCP collapse is allowed if neither @to or @from carry an mptcp data
122 * mapping, or if the extension of @to is the same as @from.
123 * Collapsing is not possible if @to lacks an extension, but @from carries one.
124 */
125static inline bool mptcp_skb_can_collapse(const struct sk_buff *to,
126 const struct sk_buff *from)
127{
128 return mptcp_ext_matches(skb_ext_find(to, SKB_EXT_MPTCP),
129 skb_ext_find(from, SKB_EXT_MPTCP));
130}
131
Florian Westphalfc518952020-03-27 14:48:50 -0700132void mptcp_seq_show(struct seq_file *seq);
Florian Westphalc83a47e2020-07-30 21:25:54 +0200133int mptcp_subflow_init_cookie_req(struct request_sock *req,
134 const struct sock *sk_listener,
135 struct sk_buff *skb);
Mat Martineau85712482020-01-09 07:59:20 -0800136#else
137
Mat Martineauf870fa02020-01-21 16:56:15 -0800138static inline void mptcp_init(void)
139{
140}
141
Peter Krystadcec37a62020-01-21 16:56:18 -0800142static inline bool sk_is_mptcp(const struct sock *sk)
143{
144 return false;
145}
146
147static inline bool rsk_is_mptcp(const struct request_sock *req)
148{
149 return false;
150}
151
Paolo Abeni90bf4512020-05-15 19:22:15 +0200152static inline bool rsk_drop_req(const struct request_sock *req)
153{
154 return false;
155}
156
Christoph Paaschcc7972e2020-01-21 16:56:31 -0800157static inline void mptcp_parse_option(const struct sk_buff *skb,
158 const unsigned char *ptr, int opsize,
Peter Krystadeda7acd2020-01-21 16:56:16 -0800159 struct tcp_options_received *opt_rx)
160{
161}
162
Christoph Paaschcc7972e2020-01-21 16:56:31 -0800163static inline bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb,
164 unsigned int *size,
Peter Krystadcec37a62020-01-21 16:56:18 -0800165 struct mptcp_out_options *opts)
166{
167 return false;
168}
169
Peter Krystadcec37a62020-01-21 16:56:18 -0800170static inline bool mptcp_synack_options(const struct request_sock *req,
171 unsigned int *size,
172 struct mptcp_out_options *opts)
173{
174 return false;
175}
176
177static inline bool mptcp_established_options(struct sock *sk,
178 struct sk_buff *skb,
179 unsigned int *size,
180 unsigned int remaining,
181 struct mptcp_out_options *opts)
182{
183 return false;
184}
185
Mat Martineau648ef4b2020-01-21 16:56:24 -0800186static inline void mptcp_incoming_options(struct sock *sk,
Florian Westphal77d0cab2020-09-25 01:23:02 +0200187 struct sk_buff *skb)
Mat Martineau648ef4b2020-01-21 16:56:24 -0800188{
189}
190
Mat Martineau85712482020-01-09 07:59:20 -0800191static inline void mptcp_skb_ext_move(struct sk_buff *to,
192 const struct sk_buff *from)
193{
194}
195
196static inline bool mptcp_skb_can_collapse(const struct sk_buff *to,
197 const struct sk_buff *from)
198{
199 return true;
200}
201
Florian Westphal071c8ed2020-04-24 12:31:50 +0200202static inline void mptcp_space(const struct sock *ssk, int *s, int *fs) { }
Florian Westphalfc518952020-03-27 14:48:50 -0700203static inline void mptcp_seq_show(struct seq_file *seq) { }
Florian Westphalc83a47e2020-07-30 21:25:54 +0200204
205static inline int mptcp_subflow_init_cookie_req(struct request_sock *req,
206 const struct sock *sk_listener,
207 struct sk_buff *skb)
208{
209 return 0; /* TCP fallback */
210}
Mat Martineau85712482020-01-09 07:59:20 -0800211#endif /* CONFIG_MPTCP */
Mat Martineauf870fa02020-01-21 16:56:15 -0800212
213#if IS_ENABLED(CONFIG_MPTCP_IPV6)
214int mptcpv6_init(void);
Geert Uytterhoeven31484d52020-01-30 10:45:26 +0100215void mptcpv6_handle_mapped(struct sock *sk, bool mapped);
Mat Martineauf870fa02020-01-21 16:56:15 -0800216#elif IS_ENABLED(CONFIG_IPV6)
Geert Uytterhoeven31484d52020-01-30 10:45:26 +0100217static inline int mptcpv6_init(void) { return 0; }
218static inline void mptcpv6_handle_mapped(struct sock *sk, bool mapped) { }
Mat Martineauf870fa02020-01-21 16:56:15 -0800219#endif
220
Mat Martineau3ee17bc2020-01-09 07:59:19 -0800221#endif /* __NET_MPTCP_H */