Branch data Line data Source code
1 : : /* SPDX-License-Identifier: GPL-2.0 */
2 : : /* Multipath TCP
3 : : *
4 : : * Copyright (c) 2017 - 2019, Intel Corporation.
5 : : */
6 : :
7 : : #ifndef __MPTCP_PROTOCOL_H
8 : : #define __MPTCP_PROTOCOL_H
9 : :
10 : : #include <linux/random.h>
11 : : #include <net/tcp.h>
12 : : #include <net/inet_connection_sock.h>
13 : : #include <uapi/linux/mptcp.h>
14 : : #include <net/genetlink.h>
15 : : #include <net/rstreason.h>
16 : :
17 : : #define MPTCP_SUPPORTED_VERSION 1
18 : :
19 : : /* MPTCP option bits */
20 : : #define OPTION_MPTCP_MPC_SYN BIT(0)
21 : : #define OPTION_MPTCP_MPC_SYNACK BIT(1)
22 : : #define OPTION_MPTCP_MPC_ACK BIT(2)
23 : : #define OPTION_MPTCP_MPJ_SYN BIT(3)
24 : : #define OPTION_MPTCP_MPJ_SYNACK BIT(4)
25 : : #define OPTION_MPTCP_MPJ_ACK BIT(5)
26 : : #define OPTION_MPTCP_ADD_ADDR BIT(6)
27 : : #define OPTION_MPTCP_RM_ADDR BIT(7)
28 : : #define OPTION_MPTCP_FASTCLOSE BIT(8)
29 : : #define OPTION_MPTCP_PRIO BIT(9)
30 : : #define OPTION_MPTCP_RST BIT(10)
31 : : #define OPTION_MPTCP_DSS BIT(11)
32 : : #define OPTION_MPTCP_FAIL BIT(12)
33 : :
34 : : #define OPTION_MPTCP_CSUMREQD BIT(13)
35 : :
36 : : #define OPTIONS_MPTCP_MPC (OPTION_MPTCP_MPC_SYN | OPTION_MPTCP_MPC_SYNACK | \
37 : : OPTION_MPTCP_MPC_ACK)
38 : : #define OPTIONS_MPTCP_MPJ (OPTION_MPTCP_MPJ_SYN | OPTION_MPTCP_MPJ_SYNACK | \
39 : : OPTION_MPTCP_MPJ_ACK)
40 : : #define OPTIONS_MPTCP_DSS (OPTION_MPTCP_DSS | OPTION_MPTCP_CSUMREQD)
41 : :
42 : : /* MPTCP option subtypes */
43 : : #define MPTCPOPT_MP_CAPABLE 0
44 : : #define MPTCPOPT_MP_JOIN 1
45 : : #define MPTCPOPT_DSS 2
46 : : #define MPTCPOPT_ADD_ADDR 3
47 : : #define MPTCPOPT_RM_ADDR 4
48 : : #define MPTCPOPT_MP_PRIO 5
49 : : #define MPTCPOPT_MP_FAIL 6
50 : : #define MPTCPOPT_MP_FASTCLOSE 7
51 : : #define MPTCPOPT_RST 8
52 : :
53 : : /* MPTCP suboption lengths */
54 : : #define TCPOLEN_MPTCP_MPC_SYN 4
55 : : #define TCPOLEN_MPTCP_MPC_SYNACK 12
56 : : #define TCPOLEN_MPTCP_MPC_ACK 20
57 : : #define TCPOLEN_MPTCP_MPC_ACK_DATA 22
58 : : #define TCPOLEN_MPTCP_MPJ_SYN 12
59 : : #define TCPOLEN_MPTCP_MPJ_SYNACK 16
60 : : #define TCPOLEN_MPTCP_MPJ_ACK 24
61 : : #define TCPOLEN_MPTCP_DSS_BASE 4
62 : : #define TCPOLEN_MPTCP_DSS_ACK32 4
63 : : #define TCPOLEN_MPTCP_DSS_ACK64 8
64 : : #define TCPOLEN_MPTCP_DSS_MAP32 10
65 : : #define TCPOLEN_MPTCP_DSS_MAP64 14
66 : : #define TCPOLEN_MPTCP_DSS_CHECKSUM 2
67 : : #define TCPOLEN_MPTCP_ADD_ADDR 16
68 : : #define TCPOLEN_MPTCP_ADD_ADDR_PORT 18
69 : : #define TCPOLEN_MPTCP_ADD_ADDR_BASE 8
70 : : #define TCPOLEN_MPTCP_ADD_ADDR_BASE_PORT 10
71 : : #define TCPOLEN_MPTCP_ADD_ADDR6 28
72 : : #define TCPOLEN_MPTCP_ADD_ADDR6_PORT 30
73 : : #define TCPOLEN_MPTCP_ADD_ADDR6_BASE 20
74 : : #define TCPOLEN_MPTCP_ADD_ADDR6_BASE_PORT 22
75 : : #define TCPOLEN_MPTCP_PORT_LEN 2
76 : : #define TCPOLEN_MPTCP_PORT_ALIGN 2
77 : : #define TCPOLEN_MPTCP_RM_ADDR_BASE 3
78 : : #define TCPOLEN_MPTCP_PRIO 3
79 : : #define TCPOLEN_MPTCP_PRIO_ALIGN 4
80 : : #define TCPOLEN_MPTCP_FASTCLOSE 12
81 : : #define TCPOLEN_MPTCP_RST 4
82 : : #define TCPOLEN_MPTCP_FAIL 12
83 : :
84 : : #define TCPOLEN_MPTCP_MPC_ACK_DATA_CSUM (TCPOLEN_MPTCP_DSS_CHECKSUM + TCPOLEN_MPTCP_MPC_ACK_DATA)
85 : :
86 : : /* MPTCP MP_JOIN flags */
87 : : #define MPTCPOPT_BACKUP BIT(0)
88 : : #define MPTCPOPT_THMAC_LEN 8
89 : :
90 : : /* MPTCP MP_CAPABLE flags */
91 : : #define MPTCP_VERSION_MASK (0x0F)
92 : : #define MPTCP_CAP_CHECKSUM_REQD BIT(7)
93 : : #define MPTCP_CAP_EXTENSIBILITY BIT(6)
94 : : #define MPTCP_CAP_DENY_JOIN_ID0 BIT(5)
95 : : #define MPTCP_CAP_HMAC_SHA256 BIT(0)
96 : : #define MPTCP_CAP_FLAG_MASK (0x1F)
97 : :
98 : : /* MPTCP DSS flags */
99 : : #define MPTCP_DSS_DATA_FIN BIT(4)
100 : : #define MPTCP_DSS_DSN64 BIT(3)
101 : : #define MPTCP_DSS_HAS_MAP BIT(2)
102 : : #define MPTCP_DSS_ACK64 BIT(1)
103 : : #define MPTCP_DSS_HAS_ACK BIT(0)
104 : : #define MPTCP_DSS_FLAG_MASK (0x1F)
105 : :
106 : : /* MPTCP ADD_ADDR flags */
107 : : #define MPTCP_ADDR_ECHO BIT(0)
108 : :
109 : : /* MPTCP MP_PRIO flags */
110 : : #define MPTCP_PRIO_BKUP BIT(0)
111 : :
112 : : /* MPTCP TCPRST flags */
113 : : #define MPTCP_RST_TRANSIENT BIT(0)
114 : :
115 : : /* MPTCP socket atomic flags */
116 : : #define MPTCP_WORK_RTX 1
117 : : #define MPTCP_FALLBACK_DONE 2
118 : : #define MPTCP_WORK_CLOSE_SUBFLOW 3
119 : : #define MPTCP_RTX_ENABLED 4
120 : :
121 : : /* MPTCP socket release cb flags */
122 : : #define MPTCP_PUSH_PENDING 1
123 : : #define MPTCP_CLEAN_UNA 2
124 : : #define MPTCP_ERROR_REPORT 3
125 : : #define MPTCP_RETRANSMIT 4
126 : : #define MPTCP_FLUSH_JOIN_LIST 5
127 : : #define MPTCP_SYNC_STATE 6
128 : : #define MPTCP_SYNC_SNDBUF 7
129 : :
130 : : struct mptcp_skb_cb {
131 : : u64 map_seq;
132 : : u64 end_seq;
133 : : u32 offset;
134 : : u8 has_rxtstamp;
135 : : u8 cant_coalesce;
136 : : };
137 : :
138 : : #define MPTCP_SKB_CB(__skb) ((struct mptcp_skb_cb *)&((__skb)->cb[0]))
139 : :
140 : 416999 : static inline bool before64(__u64 seq1, __u64 seq2)
141 : : {
142 [ + + + + : 15260997 : return (__s64)(seq1 - seq2) < 0;
+ + + + +
+ + + +
+ ][ + + ]
[ - + + +
+ + - + +
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + -
- ]
143 : : }
144 : :
145 : : #define after64(seq2, seq1) before64(seq1, seq2)
146 : :
147 : : struct mptcp_options_received {
148 : : struct { /* DSS, also used by MP_CAPABLE with data */
149 : : u64 data_ack;
150 : : u64 data_seq;
151 : : u32 subflow_seq;
152 : : u16 data_len;
153 : : __sum16 csum;
154 : : };
155 : : struct_group(status,
156 : : u16 suboptions;
157 : : u16 use_map:1,
158 : : dsn64:1,
159 : : data_fin:1,
160 : : use_ack:1,
161 : : ack64:1,
162 : : mpc_map:1,
163 : : reset_reason:4,
164 : : reset_transient:1,
165 : : echo:1,
166 : : backup:1,
167 : : deny_join_id0:1,
168 : : __unused:2;
169 : : );
170 : : struct mptcp_rm_list rm_list;
171 : : /* Options below are mutually exclusive, see mptcp_parse_option() */
172 : : union {
173 : : struct { /* MP_CAPABLE */
174 : : u64 sndr_key;
175 : : u64 rcvr_key;
176 : : };
177 : : struct { /* MP_JOIN */
178 : : u32 nonce;
179 : : u8 join_id;
180 : : union {
181 : : u32 token; /* SYN */
182 : : u64 thmac; /* SYN + ACK */
183 : : u8 hmac[MPTCPOPT_HMAC_LEN]; /* ACK */
184 : : };
185 : : };
186 : : struct { /* ADD_ADDR */
187 : : struct mptcp_addr_info addr;
188 : : u64 ahmac;
189 : : };
190 : : u64 fail_seq; /* MP_FAIL */
191 : : u64 fc_recv_key; /* MP_FASTCLOSE */
192 : : };
193 : : };
194 : :
195 : 0 : static inline __be32 mptcp_option(u8 subopt, u8 len, u8 nib, u8 field)
196 : : {
197 [ + - + + : 2039643 : return htonl((TCPOPT_MPTCP << 24) | (len << 16) | (subopt << 12) |
+ + ][ + -
+ + + + +
- ]
198 : : ((nib & 0xF) << 8) | field);
199 : : }
200 : :
201 : : enum mptcp_pm_status {
202 : : MPTCP_PM_ADD_ADDR_RECEIVED,
203 : : MPTCP_PM_ADD_ADDR_SEND_ACK,
204 : : MPTCP_PM_RM_ADDR_RECEIVED,
205 : : MPTCP_PM_ESTABLISHED,
206 : : MPTCP_PM_SUBFLOW_ESTABLISHED,
207 : : MPTCP_PM_ALREADY_ESTABLISHED, /* persistent status, set after ESTABLISHED event */
208 : : MPTCP_PM_MPC_ENDPOINT_ACCOUNTED, /* persistent status, set after MPC local address is
209 : : * accounted int id_avail_bitmap
210 : : */
211 : : MPTCP_PM_DESTROYING, /* To fence out PM list allocs */
212 : : };
213 : :
214 : : enum mptcp_pm_type {
215 : : MPTCP_PM_TYPE_KERNEL = 0,
216 : : MPTCP_PM_TYPE_USERSPACE,
217 : :
218 : : __MPTCP_PM_TYPE_NR,
219 : : __MPTCP_PM_TYPE_MAX = __MPTCP_PM_TYPE_NR - 1,
220 : : };
221 : :
222 : : /* Status bits below MPTCP_PM_ALREADY_ESTABLISHED need pm worker actions */
223 : : #define MPTCP_PM_WORK_MASK ((1 << MPTCP_PM_ALREADY_ESTABLISHED) - 1)
224 : :
225 : : enum mptcp_addr_signal_status {
226 : : MPTCP_ADD_ADDR_SIGNAL,
227 : : MPTCP_ADD_ADDR_ECHO,
228 : : MPTCP_RM_ADDR_SIGNAL,
229 : : };
230 : :
231 : : /* max value of mptcp_addr_info.id */
232 : : #define MPTCP_PM_MAX_ADDR_ID U8_MAX
233 : :
234 : : struct mptcp_pm_data {
235 : : struct mptcp_addr_info local;
236 : : struct mptcp_addr_info remote;
237 : : struct list_head anno_list;
238 : : struct list_head userspace_pm_local_addr_list;
239 : : struct mptcp_pm_ops *ops;
240 : :
241 : : spinlock_t lock; /*protects the whole PM data */
242 : :
243 : : struct_group(reset,
244 : :
245 : : u8 addr_signal;
246 : : bool server_side;
247 : : bool work_pending;
248 : : bool accept_addr;
249 : : bool accept_subflow;
250 : : bool remote_deny_join_id0;
251 : : u8 add_addr_signaled;
252 : : u8 add_addr_accepted;
253 : : u8 local_addr_used;
254 : : u8 pm_type;
255 : : u8 extra_subflows;
256 : : u8 status;
257 : :
258 : : );
259 : :
260 : : DECLARE_BITMAP(id_avail_bitmap, MPTCP_PM_MAX_ADDR_ID + 1);
261 : : struct mptcp_rm_list rm_list_tx;
262 : : struct mptcp_rm_list rm_list_rx;
263 : : };
264 : :
265 : : struct mptcp_pm_local {
266 : : struct mptcp_addr_info addr;
267 : : u32 flags;
268 : : int ifindex;
269 : : };
270 : :
271 : : struct mptcp_pm_addr_entry {
272 : : struct list_head list;
273 : : struct mptcp_addr_info addr;
274 : : u32 flags;
275 : : int ifindex;
276 : : struct socket *lsk;
277 : : };
278 : :
279 : : struct mptcp_data_frag {
280 : : struct list_head list;
281 : : u64 data_seq;
282 : : u16 data_len;
283 : : u16 offset;
284 : : u8 overhead;
285 : : u8 eor; /* currently using 1 bit */
286 : : u16 already_sent;
287 : : struct page *page;
288 : : };
289 : :
290 : : /* Arbitrary compromise between as low as possible to react timely to subflow
291 : : * close event and as big as possible to avoid being fouled by biased large
292 : : * samples due to peer sending data on a different subflow WRT to the incoming
293 : : * ack.
294 : : */
295 : : #define MPTCP_RTT_SAMPLES 5
296 : :
297 : : /* MPTCP connection sock */
298 : : struct mptcp_sock {
299 : : /* inet_connection_sock must be the first member */
300 : : struct inet_connection_sock sk;
301 : : u64 local_key; /* protected by the first subflow socket lock
302 : : * lockless access read
303 : : */
304 : : u64 remote_key; /* same as above */
305 : : u64 write_seq;
306 : : u64 bytes_sent;
307 : : u64 snd_nxt;
308 : : u64 bytes_received;
309 : : u64 ack_seq;
310 : : atomic64_t rcv_wnd_sent;
311 : : u64 rcv_data_fin_seq;
312 : : u64 bytes_retrans;
313 : : u64 bytes_consumed;
314 : : int snd_burst;
315 : : int old_wspace;
316 : : u64 recovery_snd_nxt; /* in recovery mode accept up to this seq;
317 : : * recovery related fields are under data_lock
318 : : * protection
319 : : */
320 : : u64 bytes_acked;
321 : : u64 snd_una;
322 : : u64 wnd_end;
323 : : u32 last_data_sent;
324 : : u32 last_data_recv;
325 : : u32 last_ack_recv;
326 : : unsigned long timer_ival;
327 : : u32 token;
328 : : unsigned long flags;
329 : : unsigned long cb_flags;
330 : : bool recovery; /* closing subflow write queue reinjected */
331 : : bool can_ack;
332 : : bool fully_established;
333 : : bool rcv_data_fin;
334 : : bool snd_data_fin_enable;
335 : : bool rcv_fastclose;
336 : : bool use_64bit_ack; /* Set when we received a 64-bit DSN */
337 : : bool csum_enabled;
338 : : bool allow_infinite_fallback;
339 : : u8 pending_state; /* A subflow asked to set this sk_state,
340 : : * protected by the msk data lock
341 : : */
342 : : u8 mpc_endpoint_id;
343 : : u8 recvmsg_inq:1,
344 : : cork:1,
345 : : nodelay:1,
346 : : fastopening:1,
347 : : in_accept_queue:1,
348 : : free_first:1,
349 : : rcvspace_init:1,
350 : : fastclosing:1;
351 : : u32 notsent_lowat;
352 : : int keepalive_cnt;
353 : : int keepalive_idle;
354 : : int keepalive_intvl;
355 : : int maxseg;
356 : : struct work_struct work;
357 : : struct sk_buff *ooo_last_skb;
358 : : struct rb_root out_of_order_queue;
359 : : struct list_head conn_list;
360 : : struct list_head rtx_queue;
361 : : struct mptcp_data_frag *first_pending;
362 : : struct list_head join_list;
363 : : struct sock *first; /* The mptcp ops can safely dereference, using suitable
364 : : * ONCE annotation, the subflow outside the socket
365 : : * lock as such sock is freed after close().
366 : : */
367 : : struct mptcp_pm_data pm;
368 : : struct mptcp_sched_ops *sched;
369 : :
370 : : /* Most recent rtt_us observed by in use incoming subflows. */
371 : : struct {
372 : : u32 samples[MPTCP_RTT_SAMPLES];
373 : : u32 next_sample;
374 : : } rcv_rtt_est;
375 : :
376 : : struct {
377 : : int space; /* bytes copied in last measurement window */
378 : : int copied; /* bytes copied in this measurement window */
379 : : u64 time; /* start time of measurement window */
380 : : } rcvq_space;
381 : : u8 scaling_ratio;
382 : : bool allow_subflows;
383 : :
384 : : u32 subflow_id;
385 : : u32 setsockopt_seq;
386 : : char ca_name[TCP_CA_NAME_MAX];
387 : :
388 : : spinlock_t fallback_lock; /* protects fallback,
389 : : * allow_infinite_fallback and
390 : : * allow_join
391 : : */
392 : :
393 : : struct list_head backlog_list; /* protected by the data lock */
394 : : u32 backlog_len;
395 : : u32 backlog_unaccounted;
396 : : };
397 : :
398 : : #define mptcp_data_lock(sk) spin_lock_bh(&(sk)->sk_lock.slock)
399 : : #define mptcp_data_unlock(sk) spin_unlock_bh(&(sk)->sk_lock.slock)
400 : :
401 : : #define mptcp_for_each_subflow(__msk, __subflow) \
402 : : list_for_each_entry(__subflow, &((__msk)->conn_list), node)
403 : : #define mptcp_for_each_subflow_safe(__msk, __subflow, __tmp) \
404 : : list_for_each_entry_safe(__subflow, __tmp, &((__msk)->conn_list), node)
405 : : #define mptcp_next_subflow(__msk, __subflow) \
406 : : list_next_entry_circular(__subflow, &((__msk)->conn_list), node)
407 : :
408 : : extern struct genl_family mptcp_genl_family;
409 : :
410 : 258889 : static inline void msk_owned_by_me(const struct mptcp_sock *msk)
411 : : {
412 : 2181567 : sock_owned_by_me((const struct sock *)msk);
413 : : }
414 : :
415 : : #ifdef CONFIG_DEBUG_NET
416 : : /* MPTCP-specific: we might (indirectly) call this helper with the wrong sk */
417 : : #undef tcp_sk
418 : : #define tcp_sk(ptr) ({ \
419 : : typeof(ptr) _ptr = (ptr); \
420 : : WARN_ON(_ptr->sk_protocol != IPPROTO_TCP); \
421 : : container_of_const(_ptr, struct tcp_sock, inet_conn.icsk_inet.sk); \
422 : : })
423 : : #define mptcp_sk(ptr) ({ \
424 : : typeof(ptr) _ptr = (ptr); \
425 : : WARN_ON(_ptr->sk_protocol != IPPROTO_MPTCP); \
426 : : container_of_const(_ptr, struct mptcp_sock, sk.icsk_inet.sk); \
427 : : })
428 : :
429 : : #else /* !CONFIG_DEBUG_NET */
430 : : #define mptcp_sk(ptr) container_of_const(ptr, struct mptcp_sock, sk.icsk_inet.sk)
431 : : #endif
432 : :
433 : 7879477 : static inline int mptcp_win_from_space(const struct sock *sk, int space)
434 : : {
435 [ - + ]: 7879477 : return __tcp_win_from_space(mptcp_sk(sk)->scaling_ratio, space);
436 : : }
437 : :
438 : 5267 : static inline int mptcp_space_from_win(const struct sock *sk, int win)
439 : : {
440 [ - + ]: 5267 : return __tcp_space_from_win(mptcp_sk(sk)->scaling_ratio, win);
441 : : }
442 : :
443 : 4843267 : static inline int __mptcp_space(const struct sock *sk)
444 : : {
445 : 17331043 : return mptcp_win_from_space(sk, READ_ONCE(sk->sk_rcvbuf) -
446 [ - + ]: 4843267 : READ_ONCE(mptcp_sk(sk)->backlog_len) -
447 : 4843267 : sk_rmem_alloc_get(sk));
448 : : }
449 : :
450 : 5200289 : static inline struct mptcp_data_frag *mptcp_send_head(const struct sock *sk)
451 : : {
452 [ - + ]: 5200289 : const struct mptcp_sock *msk = mptcp_sk(sk);
453 : :
454 : 5200289 : return msk->first_pending;
455 : : }
456 : :
457 : 0 : static inline void mptcp_init_rtt_est(struct mptcp_sock *msk)
458 : : {
459 : 5115 : int i;
460 : :
461 [ + + + + ]: 31986 : for (i = 0; i < MPTCP_RTT_SAMPLES; ++i)
462 : 25575 : msk->rcv_rtt_est.samples[i] = U32_MAX;
463 : 5115 : msk->rcv_rtt_est.next_sample = 0;
464 : 5115 : msk->scaling_ratio = TCP_DEFAULT_SCALING_RATIO;
465 : : }
466 : :
467 : 0 : static inline u32 mptcp_rtt_us_est(const struct mptcp_sock *msk)
468 : : {
469 : 0 : u32 rtt_us = READ_ONCE(msk->rcv_rtt_est.samples[0]);
470 : 0 : int i;
471 : :
472 : : /* Lockless access of collected samples. */
473 [ + + - - : 7298265 : for (i = 1; i < MPTCP_RTT_SAMPLES; ++i)
- - ]
474 : 0 : rtt_us = min(rtt_us, READ_ONCE(msk->rcv_rtt_est.samples[i]));
475 [ + + ]: 1459653 : return rtt_us;
476 : : }
477 : :
478 : 741029 : static inline struct mptcp_data_frag *mptcp_send_next(struct sock *sk)
479 : : {
480 [ - + ]: 741029 : struct mptcp_sock *msk = mptcp_sk(sk);
481 : 741029 : struct mptcp_data_frag *cur;
482 : :
483 : 741029 : cur = msk->first_pending;
484 [ + + ]: 741029 : return list_is_last(&cur->list, &msk->rtx_queue) ? NULL :
485 : : list_next_entry(cur, list);
486 : : }
487 : :
488 : 957373 : static inline struct mptcp_data_frag *mptcp_pending_tail(const struct sock *sk)
489 : : {
490 [ - + ]: 957373 : const struct mptcp_sock *msk = mptcp_sk(sk);
491 : :
492 [ + + ]: 957373 : if (!msk->first_pending)
493 : : return NULL;
494 : :
495 [ - + + - ]: 425726 : if (WARN_ON_ONCE(list_empty(&msk->rtx_queue)))
496 : : return NULL;
497 : :
498 : 425726 : return list_last_entry(&msk->rtx_queue, struct mptcp_data_frag, list);
499 : : }
500 : :
501 : 528601 : static inline struct mptcp_data_frag *mptcp_rtx_head(struct sock *sk)
502 : : {
503 [ - + ]: 528601 : struct mptcp_sock *msk = mptcp_sk(sk);
504 : :
505 [ + + ]: 528601 : if (msk->snd_una == msk->snd_nxt)
506 : : return NULL;
507 : :
508 [ + + ]: 447481 : return list_first_entry_or_null(&msk->rtx_queue, struct mptcp_data_frag, list);
509 : : }
510 : :
511 : : struct csum_pseudo_header {
512 : : __be64 data_seq;
513 : : __be32 subflow_seq;
514 : : __be16 data_len;
515 : : __sum16 csum;
516 : : };
517 : :
518 : : struct mptcp_subflow_request_sock {
519 : : struct tcp_request_sock sk;
520 : : u16 mp_capable : 1,
521 : : mp_join : 1,
522 : : backup : 1,
523 : : request_bkup : 1,
524 : : csum_reqd : 1,
525 : : allow_join_id0 : 1;
526 : : u8 local_id;
527 : : u8 remote_id;
528 : : u64 local_key;
529 : : u64 idsn;
530 : : u32 token;
531 : : u32 ssn_offset;
532 : : u64 thmac;
533 : : u32 local_nonce;
534 : : u32 remote_nonce;
535 : : struct mptcp_sock *msk;
536 : : struct hlist_nulls_node token_node;
537 : : };
538 : :
539 : : static inline struct mptcp_subflow_request_sock *
540 : : mptcp_subflow_rsk(const struct request_sock *rsk)
541 : : {
542 : : return (struct mptcp_subflow_request_sock *)rsk;
543 : : }
544 : :
545 : : struct mptcp_delegated_action {
546 : : struct napi_struct napi;
547 : : local_lock_t bh_lock;
548 : : struct list_head head;
549 : : };
550 : :
551 : : DECLARE_PER_CPU(struct mptcp_delegated_action, mptcp_delegated_actions);
552 : :
553 : : #define MPTCP_DELEGATE_SCHEDULED 0
554 : : #define MPTCP_DELEGATE_SEND 1
555 : : #define MPTCP_DELEGATE_ACK 2
556 : : #define MPTCP_DELEGATE_SNDBUF 3
557 : :
558 : : #define MPTCP_DELEGATE_ACTIONS_MASK (~BIT(MPTCP_DELEGATE_SCHEDULED))
559 : : /* MPTCP subflow context */
560 : : struct mptcp_subflow_context {
561 : : struct list_head node;/* conn_list of subflows */
562 : :
563 : : struct_group(reset,
564 : :
565 : : unsigned long avg_pacing_rate; /* protected by msk socket lock */
566 : : u64 local_key;
567 : : u64 remote_key;
568 : : u64 idsn;
569 : : u64 map_seq;
570 : : u64 rcv_wnd_sent;
571 : : u32 snd_isn;
572 : : u32 token;
573 : : u32 rel_write_seq;
574 : : u32 map_subflow_seq;
575 : : u32 ssn_offset;
576 : : u32 map_data_len;
577 : : __wsum map_data_csum;
578 : : u32 map_csum_len;
579 : : u32 prev_rtt_seq;
580 : : u32 request_mptcp : 1, /* send MP_CAPABLE */
581 : : request_join : 1, /* send MP_JOIN */
582 : : request_bkup : 1,
583 : : mp_capable : 1, /* remote is MPTCP capable */
584 : : mp_join : 1, /* remote is JOINing */
585 : : pm_notified : 1, /* PM hook called for established status */
586 : : conn_finished : 1,
587 : : map_valid : 1,
588 : : map_csum_reqd : 1,
589 : : map_data_fin : 1,
590 : : mpc_map : 1,
591 : : backup : 1,
592 : : send_mp_prio : 1,
593 : : send_mp_fail : 1,
594 : : send_fastclose : 1,
595 : : send_infinite_map : 1,
596 : : remote_key_valid : 1, /* received the peer key from */
597 : : disposable : 1, /* ctx can be free at ulp release time */
598 : : closing : 1, /* must not pass rx data to msk anymore */
599 : : valid_csum_seen : 1, /* at least one csum validated */
600 : : is_mptfo : 1, /* subflow is doing TFO */
601 : : close_event_done : 1, /* has done the post-closed part */
602 : : mpc_drop : 1, /* the MPC option has been dropped in a rtx */
603 : : resetting : 1, /* subflow is resetting */
604 : : __unused : 8;
605 : : bool data_avail;
606 : : bool scheduled;
607 : : bool pm_listener; /* a listener managed by the kernel PM? */
608 : : bool fully_established; /* path validated */
609 : : u32 lent_mem_frag;
610 : : u32 remote_nonce;
611 : : u32 local_nonce;
612 : : u32 remote_token;
613 : : union {
614 : : u8 hmac[MPTCPOPT_HMAC_LEN]; /* MPJ subflow only */
615 : : u64 iasn; /* initial ack sequence number, MPC subflows only */
616 : : };
617 : : s16 local_id; /* if negative not initialized yet */
618 : : u8 remote_id;
619 : : u8 reset_seen:1;
620 : : u8 reset_transient:1;
621 : : u8 reset_reason:4;
622 : : u8 stale_count; /* Protected by the msk socket lock */
623 : : u8 stale; /* Protected by the msk socket lock,
624 : : * if set the subflow is unable to snd/rcv
625 : : * data, the schedule should skip it
626 : : */
627 : :
628 : : u32 subflow_id;
629 : :
630 : : long delegated_status;
631 : : unsigned long fail_tout;
632 : :
633 : : );
634 : :
635 : : struct list_head delegated_node; /* link into delegated_action, protected by local BH */
636 : :
637 : : u32 setsockopt_seq;
638 : : u32 stale_rcv_tstamp;
639 : : int cached_sndbuf; /* sndbuf size when last synced with the msk sndbuf,
640 : : * protected by the msk socket lock
641 : : */
642 : :
643 : : struct sock *tcp_sock; /* tcp sk backpointer */
644 : : struct sock *conn; /* parent mptcp_sock */
645 : : const struct inet_connection_sock_af_ops *icsk_af_ops;
646 : : void (*tcp_state_change)(struct sock *sk);
647 : : void (*tcp_error_report)(struct sock *sk);
648 : :
649 : : struct rcu_head rcu;
650 : : };
651 : :
652 : : static inline struct mptcp_subflow_context *
653 : 88 : mptcp_subflow_ctx(const struct sock *sk)
654 : : {
655 [ - + ]: 709083 : const struct inet_connection_sock *icsk = inet_csk(sk);
[ - + + - ]
656 : :
657 : : /* Use RCU on icsk_ulp_data only for sock diag code */
658 [ - + - + : 67909580 : return (__force struct mptcp_subflow_context *)icsk->icsk_ulp_data;
- + ][ + + ]
[ - + + +
- + - + -
+ - + + +
- + + - +
+ - + - +
- + - + +
+ ][ - + +
- - + -
+ ][ + + +
- + - - +
- + + + +
+ + + + +
- + + + +
+ - + - -
- + + + +
- + + - +
- + - + +
+ + - + +
- + ][ - +
+ + + + -
+ + + - +
+ + + + +
+ + + + +
+ + + + -
+ - + +
+ ][ - + +
- - + - +
+ + + + +
- + + - +
+ + + + +
+ - + -
+ ]
659 : : }
660 : :
661 : : static inline struct sock *
662 : 87962 : mptcp_subflow_tcp_sock(const struct mptcp_subflow_context *subflow)
663 : : {
664 [ + + ][ - + : 6866808 : return subflow->tcp_sock;
+ + + + +
+ ][ + - +
+ + + - +
- - + + +
+ - - -
- ][ + - +
+ + + - +
- - - - +
+ + + - -
- - ]
665 : : }
666 : :
667 : : static inline void
668 : 72 : mptcp_subflow_ctx_reset(struct mptcp_subflow_context *subflow)
669 : : {
670 : 1677 : memset(&subflow->reset, 0, sizeof(subflow->reset));
671 : 1677 : subflow->request_mptcp = 1;
672 : 1677 : WRITE_ONCE(subflow->local_id, -1);
673 : 1677 : }
674 : :
675 : : /* Convert reset reasons in MPTCP to enum sk_rst_reason type */
676 : : static inline enum sk_rst_reason
677 : : sk_rst_convert_mptcp_reason(u32 reason)
678 : : {
679 : : switch (reason) {
680 : : case MPTCP_RST_EUNSPEC:
681 : : return SK_RST_REASON_MPTCP_RST_EUNSPEC;
682 : : case MPTCP_RST_EMPTCP:
683 : : return SK_RST_REASON_MPTCP_RST_EMPTCP;
684 : : case MPTCP_RST_ERESOURCE:
685 : : return SK_RST_REASON_MPTCP_RST_ERESOURCE;
686 : : case MPTCP_RST_EPROHIBIT:
687 : : return SK_RST_REASON_MPTCP_RST_EPROHIBIT;
688 : : case MPTCP_RST_EWQ2BIG:
689 : : return SK_RST_REASON_MPTCP_RST_EWQ2BIG;
690 : : case MPTCP_RST_EBADPERF:
691 : : return SK_RST_REASON_MPTCP_RST_EBADPERF;
692 : : case MPTCP_RST_EMIDDLEBOX:
693 : : return SK_RST_REASON_MPTCP_RST_EMIDDLEBOX;
694 : : default:
695 : : /* It should not happen, or else errors may occur
696 : : * in MPTCP layer
697 : : */
698 : : return SK_RST_REASON_ERROR;
699 : : }
700 : : }
701 : :
702 : : static inline void
703 : 51 : mptcp_send_active_reset_reason(struct sock *sk)
704 : : {
705 : 51 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
706 : 51 : enum sk_rst_reason reason;
707 : :
708 [ + - ]: 51 : reason = sk_rst_convert_mptcp_reason(subflow->reset_reason);
709 : 51 : tcp_send_active_reset(sk, reason);
710 : 51 : }
711 : :
712 : : /* Made the fwd mem carried by the given skb available to the msk,
713 : : * To be paired with a previous mptcp_subflow_lend_fwdmem() before freeing
714 : : * the skb or setting the skb ownership.
715 : : */
716 : 1385391 : static inline void mptcp_borrow_fwdmem(struct sock *sk, struct sk_buff *skb)
717 : : {
718 : 1385391 : struct sock *ssk = skb->sk;
719 : :
720 : : /* The subflow just lend the skb fwd memory; if the subflow meanwhile
721 : : * closed, mptcp_close_ssk() already released the ssk rcv memory.
722 : : */
723 [ - + ]: 1385391 : DEBUG_NET_WARN_ON_ONCE(skb->destructor);
724 [ + - ]: 1385391 : sk_forward_alloc_add(sk, skb->truesize);
725 [ + - ]: 1385391 : if (!ssk)
726 : : return;
727 : :
728 : 1385391 : atomic_sub(skb->truesize, &ssk->sk_rmem_alloc);
729 : 1385391 : skb->sk = NULL;
730 : : }
731 : :
732 : : static inline void
733 : 81312 : __mptcp_subflow_lend_fwdmem(struct mptcp_subflow_context *subflow, int size)
734 : : {
735 : 1435031 : int frag = (subflow->lent_mem_frag + size) & (PAGE_SIZE - 1);
736 : :
737 : 49690 : subflow->lent_mem_frag = frag;
738 : : }
739 : :
740 : : static inline void
741 : 81257 : mptcp_subflow_lend_fwdmem(struct mptcp_subflow_context *subflow,
742 : : struct sk_buff *skb)
743 : : {
744 : 1385391 : __mptcp_subflow_lend_fwdmem(subflow, skb->truesize);
745 : 1385391 : skb->destructor = NULL;
746 : : }
747 : :
748 : : static inline u64
749 : 6650427 : mptcp_subflow_get_map_offset(const struct mptcp_subflow_context *subflow)
750 : : {
751 [ - + ]: 6650427 : return tcp_sk(mptcp_subflow_tcp_sock(subflow))->copied_seq -
752 : 6650427 : subflow->ssn_offset -
753 : 6650427 : subflow->map_subflow_seq;
754 : : }
755 : :
756 : : static inline u64
757 : 171206 : mptcp_subflow_get_mapped_dsn(const struct mptcp_subflow_context *subflow)
758 : : {
759 [ - + ]: 2782897 : return subflow->map_seq + mptcp_subflow_get_map_offset(subflow);
760 : : }
761 : :
762 : : void mptcp_subflow_process_delegated(struct sock *ssk, long actions);
763 : :
764 : 150926 : static inline void mptcp_subflow_delegate(struct mptcp_subflow_context *subflow, int action)
765 : : {
766 [ - + ]: 150926 : long old, set_bits = BIT(MPTCP_DELEGATE_SCHEDULED) | BIT(action);
767 : 150926 : struct mptcp_delegated_action *delegated;
768 : 150926 : bool schedule;
769 : :
770 : : /* the caller held the subflow bh socket lock */
771 [ + - + - : 150926 : lockdep_assert_in_softirq();
+ - + - -
+ ]
772 : :
773 : : /* The implied barrier pairs with tcp_release_cb_override()
774 : : * mptcp_napi_poll(), and ensures the below list check sees list
775 : : * updates done prior to delegated status bits changes
776 : : */
777 [ + + + + ]: 150927 : old = set_mask_bits(&subflow->delegated_status, 0, set_bits);
778 [ + + ]: 150926 : if (!(old & BIT(MPTCP_DELEGATE_SCHEDULED))) {
779 [ - + + - ]: 86374 : if (WARN_ON_ONCE(!list_empty(&subflow->delegated_node)))
780 : : return;
781 : :
782 [ + - + - : 86374 : local_lock_nested_bh(&mptcp_delegated_actions.bh_lock);
+ - + - -
+ ]
783 : 86374 : delegated = this_cpu_ptr(&mptcp_delegated_actions);
784 : 86374 : schedule = list_empty(&delegated->head);
785 : 86374 : list_add_tail(&subflow->delegated_node, &delegated->head);
786 : 86374 : local_unlock_nested_bh(&mptcp_delegated_actions.bh_lock);
787 : 86374 : sock_hold(mptcp_subflow_tcp_sock(subflow));
788 [ + + ]: 86374 : if (schedule)
789 : 84894 : napi_schedule(&delegated->napi);
790 : : }
791 : : }
792 : :
793 : : static inline struct mptcp_subflow_context *
794 : 170942 : mptcp_subflow_delegated_next(struct mptcp_delegated_action *delegated)
795 : : {
796 : 170942 : struct mptcp_subflow_context *ret;
797 : :
798 [ + - + - : 170942 : local_lock_nested_bh(&mptcp_delegated_actions.bh_lock);
+ - + - -
+ ]
799 [ + + ]: 170942 : if (list_empty(&delegated->head)) {
800 : 65406 : local_unlock_nested_bh(&mptcp_delegated_actions.bh_lock);
801 : 64949 : return NULL;
802 : : }
803 : :
804 : 86374 : ret = list_first_entry(&delegated->head, struct mptcp_subflow_context, delegated_node);
805 : 86374 : list_del_init(&ret->delegated_node);
806 : 86374 : local_unlock_nested_bh(&mptcp_delegated_actions.bh_lock);
807 : 86374 : return ret;
808 : : }
809 : :
810 : : void __mptcp_inherit_memcg(struct sock *sk, struct sock *ssk, gfp_t gfp);
811 : : void __mptcp_inherit_cgrp_data(struct sock *sk, struct sock *ssk);
812 : :
813 : : int mptcp_is_enabled(const struct net *net);
814 : : unsigned int mptcp_get_add_addr_timeout(const struct net *net);
815 : : int mptcp_is_checksum_enabled(const struct net *net);
816 : : int mptcp_allow_join_id0(const struct net *net);
817 : : unsigned int mptcp_stale_loss_cnt(const struct net *net);
818 : : unsigned int mptcp_close_timeout(const struct sock *sk);
819 : : int mptcp_get_pm_type(const struct net *net);
820 : : const char *mptcp_get_path_manager(const struct net *net);
821 : : const char *mptcp_get_scheduler(const struct net *net);
822 : : unsigned int mptcp_add_addr_v6_port_drop_ts(const struct net *net);
823 : :
824 : : void mptcp_active_disable(struct sock *sk);
825 : : bool mptcp_active_should_disable(struct sock *ssk);
826 : : void mptcp_active_enable(struct sock *sk);
827 : :
828 : : void mptcp_get_available_schedulers(char *buf, size_t maxlen);
829 : : void __mptcp_subflow_fully_established(struct mptcp_sock *msk,
830 : : struct mptcp_subflow_context *subflow,
831 : : const struct mptcp_options_received *mp_opt);
832 : : bool __mptcp_retransmit_pending_data(struct sock *sk);
833 : : void mptcp_check_and_set_pending(struct sock *sk);
834 : : void __mptcp_push_pending(struct sock *sk, unsigned int flags);
835 : : bool mptcp_subflow_data_available(struct sock *sk);
836 : : void __init mptcp_subflow_init(void);
837 : : void mptcp_subflow_shutdown(struct sock *sk, struct sock *ssk, int how);
838 : : void mptcp_close_ssk(struct sock *sk, struct sock *ssk,
839 : : struct mptcp_subflow_context *subflow);
840 : : void __mptcp_subflow_send_ack(struct sock *ssk);
841 : : void mptcp_subflow_reset(struct sock *ssk);
842 : : void mptcp_subflow_queue_clean(struct sock *sk, struct sock *ssk);
843 : : void mptcp_sock_graft(struct sock *sk, struct socket *parent);
844 : : u64 mptcp_wnd_end(const struct mptcp_sock *msk);
845 : : void mptcp_set_timeout(struct sock *sk);
846 : : struct sock *__mptcp_nmpc_sk(struct mptcp_sock *msk);
847 : : bool __mptcp_close(struct sock *sk, long timeout);
848 : : void mptcp_cancel_work(struct sock *sk);
849 : : void __mptcp_unaccepted_force_close(struct sock *sk);
850 : : void mptcp_set_state(struct sock *sk, int state);
851 : :
852 : : bool mptcp_addresses_equal(const struct mptcp_addr_info *a,
853 : : const struct mptcp_addr_info *b, bool use_port);
854 : : void mptcp_local_address(const struct sock_common *skc,
855 : : struct mptcp_addr_info *addr);
856 : : void mptcp_remote_address(const struct sock_common *skc,
857 : : struct mptcp_addr_info *addr);
858 : :
859 : : /* called with sk socket lock held */
860 : : int __mptcp_subflow_connect(struct sock *sk, const struct mptcp_pm_local *local,
861 : : const struct mptcp_addr_info *remote);
862 : : int mptcp_subflow_create_socket(struct sock *sk, unsigned short family,
863 : : struct socket **new_sock);
864 : : void mptcp_info2sockaddr(const struct mptcp_addr_info *info,
865 : : struct sockaddr_storage *addr,
866 : : unsigned short family);
867 : : struct mptcp_sched_ops *mptcp_sched_find(const char *name);
868 : : int mptcp_validate_scheduler(struct mptcp_sched_ops *sched);
869 : : int mptcp_register_scheduler(struct mptcp_sched_ops *sched);
870 : : void mptcp_unregister_scheduler(struct mptcp_sched_ops *sched);
871 : : void mptcp_sched_init(void);
872 : : int mptcp_init_sched(struct mptcp_sock *msk,
873 : : struct mptcp_sched_ops *sched);
874 : : void mptcp_release_sched(struct mptcp_sock *msk);
875 : : void mptcp_subflow_set_scheduled(struct mptcp_subflow_context *subflow,
876 : : bool scheduled);
877 : : struct sock *mptcp_subflow_get_send(struct mptcp_sock *msk);
878 : : struct sock *mptcp_subflow_get_retrans(struct mptcp_sock *msk);
879 : : int mptcp_sched_get_send(struct mptcp_sock *msk);
880 : : int mptcp_sched_get_retrans(struct mptcp_sock *msk);
881 : :
882 : 111874 : static inline u64 mptcp_data_avail(const struct mptcp_sock *msk)
883 : : {
884 [ + + ]: 1337166 : return READ_ONCE(msk->bytes_received) - READ_ONCE(msk->bytes_consumed);
885 : : }
886 : :
887 : 2198644 : static inline bool mptcp_epollin_ready(const struct sock *sk)
888 : : {
889 [ - + ]: 2198644 : u64 data_avail = mptcp_data_avail(mptcp_sk(sk));
890 : :
891 [ + + ]: 2198644 : if (!data_avail)
892 : : return false;
893 : :
894 : : /* mptcp doesn't have to deal with small skbs in the receive queue,
895 : : * as it can always coalesce them
896 : : */
897 [ - + - - ]: 3040330 : return (data_avail >= sk->sk_rcvlowat) ||
898 : 0 : tcp_under_memory_pressure(sk);
899 : : }
900 : :
901 : : int mptcp_set_rcvlowat(struct sock *sk, int val);
902 : :
903 : 1973789 : static inline bool __tcp_can_send(const struct sock *ssk)
904 : : {
905 : : /* only send if our side has not closed yet */
906 [ + + ]: 2510159 : return ((1 << inet_sk_state_load(ssk)) & (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT));
907 : : }
908 : :
909 : 1781389 : static inline bool __mptcp_subflow_active(struct mptcp_subflow_context *subflow)
910 : : {
911 : : /* can't send if JOIN hasn't completed yet (i.e. is usable for mptcp) */
912 [ + + - + : 1781389 : if (subflow->request_join && !READ_ONCE(subflow->fully_established))
+ + ]
[ + + + + ]
913 : : return false;
914 : :
915 : 1780927 : return __tcp_can_send(mptcp_subflow_tcp_sock(subflow));
916 : : }
917 : :
918 : : void mptcp_subflow_set_active(struct mptcp_subflow_context *subflow);
919 : :
920 : : bool mptcp_subflow_active(struct mptcp_subflow_context *subflow);
921 : :
922 : : void mptcp_subflow_drop_ctx(struct sock *ssk);
923 : :
924 : 36 : static inline void mptcp_subflow_tcp_fallback(struct sock *sk,
925 : : struct mptcp_subflow_context *ctx)
926 : : {
927 : 228 : sk->sk_data_ready = sock_def_readable;
928 : 228 : sk->sk_state_change = ctx->tcp_state_change;
929 : 228 : sk->sk_write_space = sk_stream_write_space;
930 : 228 : sk->sk_error_report = ctx->tcp_error_report;
931 : :
932 [ - + ]: 228 : inet_csk(sk)->icsk_af_ops = ctx->icsk_af_ops;
933 : : }
934 : :
935 : : void __init mptcp_proto_init(void);
936 : : #if IS_ENABLED(CONFIG_MPTCP_IPV6)
937 : : int __init mptcp_proto_v6_init(void);
938 : : void __init mptcp_subflow_v6_init(void);
939 : : #endif
940 : :
941 : : struct sock *mptcp_sk_clone_init(const struct sock *sk,
942 : : const struct mptcp_options_received *mp_opt,
943 : : struct sock *ssk,
944 : : struct request_sock *req);
945 : : void mptcp_get_options(const struct sk_buff *skb,
946 : : struct mptcp_options_received *mp_opt);
947 : :
948 : : void mptcp_finish_connect(struct sock *sk);
949 : : void __mptcp_sync_state(struct sock *sk, int state);
950 : : void mptcp_reset_tout_timer(struct mptcp_sock *msk, unsigned long fail_tout);
951 : :
952 : 1328 : static inline void mptcp_stop_tout_timer(struct sock *sk)
953 : : {
954 [ + + ]: 1328 : if (!inet_csk(sk)->icsk_mtup.probe_timestamp)
955 : : return;
956 : :
957 : 4 : sk_stop_timer(sk, &inet_csk(sk)->mptcp_tout_timer);
958 : 4 : inet_csk(sk)->icsk_mtup.probe_timestamp = 0;
959 : : }
960 : :
961 : 138 : static inline void mptcp_set_close_tout(struct sock *sk, unsigned long tout)
962 : : {
963 : : /* avoid 0 timestamp, as that means no close timeout */
964 : 42 : inet_csk(sk)->icsk_mtup.probe_timestamp = tout ? : 1;
965 : : }
966 : :
967 : 1498 : static inline void mptcp_start_tout_timer(struct sock *sk)
968 : : {
969 : 1498 : mptcp_set_close_tout(sk, tcp_jiffies32);
970 [ - + ]: 1498 : mptcp_reset_tout_timer(mptcp_sk(sk), 0);
971 : 1498 : }
972 : :
973 : 4462 : static inline bool mptcp_is_fully_established(struct sock *sk)
974 : : {
975 [ + + ]: 4462 : return inet_sk_state_load(sk) == TCP_ESTABLISHED &&
976 [ - + - + : 3883 : READ_ONCE(mptcp_sk(sk)->fully_established);
- + ]
[ - + - + ]
977 : : }
978 : :
979 : 253356 : static inline u64 mptcp_stamp(void)
980 : : {
981 [ + - ]: 1462838 : return div_u64(tcp_clock_ns(), NSEC_PER_USEC);
982 : : }
983 : :
984 : : void mptcp_data_ready(struct sock *sk, struct sock *ssk);
985 : : bool mptcp_finish_join(struct sock *sk);
986 : : bool mptcp_schedule_work(struct sock *sk);
987 : : int mptcp_setsockopt(struct sock *sk, int level, int optname,
988 : : sockptr_t optval, unsigned int optlen);
989 : : int mptcp_getsockopt(struct sock *sk, int level, int optname,
990 : : char __user *optval, int __user *option);
991 : :
992 : : u64 __mptcp_expand_seq(u64 old_seq, u64 cur_seq);
993 : 248862 : static inline u64 mptcp_expand_seq(u64 old_seq, u64 cur_seq, bool use_64bit)
994 : : {
995 [ + + + + ]: 3904816 : if (use_64bit)
[ + + ]
996 : : return cur_seq;
997 : :
998 : 262485 : return __mptcp_expand_seq(old_seq, cur_seq);
999 : : }
1000 : : void __mptcp_check_push(struct sock *sk, struct sock *ssk);
1001 : : void __mptcp_data_acked(struct sock *sk);
1002 : : void __mptcp_error_report(struct sock *sk);
1003 : : bool mptcp_update_rcv_data_fin(struct mptcp_sock *msk, u64 data_fin_seq, bool use_64bit);
1004 : 2621186 : static inline bool mptcp_data_fin_enabled(const struct mptcp_sock *msk)
1005 : : {
1006 [ + + + + ]: 4612597 : return READ_ONCE(msk->snd_data_fin_enable) &&
[ + + ]
1007 [ + + ]: 245536 : READ_ONCE(msk->write_seq) == READ_ONCE(msk->snd_nxt);
[ + + - + ]
1008 : : }
1009 : :
1010 : 3899862 : static inline u32 mptcp_notsent_lowat(const struct sock *sk)
1011 : : {
1012 [ - + ]: 3899862 : struct net *net = sock_net(sk);
1013 : 3899862 : u32 val;
1014 : :
1015 [ - + ]: 3899862 : val = READ_ONCE(mptcp_sk(sk)->notsent_lowat);
1016 [ + + ]: 3899862 : return val ?: READ_ONCE(net->ipv4.sysctl_tcp_notsent_lowat);
1017 : : }
1018 : :
1019 : 2942488 : static inline bool mptcp_stream_memory_free(const struct sock *sk, int wake)
1020 : : {
1021 [ - + ]: 2942488 : const struct mptcp_sock *msk = mptcp_sk(sk);
1022 : 2942488 : u32 notsent_bytes;
1023 : :
1024 : 2942488 : notsent_bytes = READ_ONCE(msk->write_seq) - READ_ONCE(msk->snd_nxt);
1025 [ - + ]: 2942488 : return (notsent_bytes << wake) < mptcp_notsent_lowat(sk);
1026 : : }
1027 : :
1028 : 976508 : static inline bool __mptcp_stream_is_writeable(const struct sock *sk, int wake)
1029 : : {
1030 [ + - + + ]: 1953016 : return mptcp_stream_memory_free(sk, wake) &&
1031 : 976508 : __sk_stream_is_writeable(sk, wake);
1032 : : }
1033 : :
1034 : 1218931 : static inline void mptcp_write_space(struct sock *sk)
1035 : : {
1036 : : /* pairs with memory barrier in mptcp_poll */
1037 : 1218931 : smp_mb();
1038 [ + + ]: 1218931 : if (mptcp_stream_memory_free(sk, 1))
1039 [ + - ]: 1218871 : INDIRECT_CALL_1(sk->sk_write_space, sk_stream_write_space, sk);
1040 : 1218931 : }
1041 : :
1042 : 29938 : static inline void __mptcp_sync_sndbuf(struct sock *sk)
1043 : : {
1044 : 29938 : struct mptcp_subflow_context *subflow;
1045 : 29938 : int ssk_sndbuf, new_sndbuf;
1046 : :
1047 [ + - ]: 29938 : if (sk->sk_userlocks & SOCK_SNDBUF_LOCK)
1048 : : return;
1049 : :
1050 [ - + ]: 29938 : new_sndbuf = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_wmem[0]);
1051 [ - + - + : 94952 : mptcp_for_each_subflow(mptcp_sk(sk), subflow) {
+ + ]
1052 : 65014 : ssk_sndbuf = READ_ONCE(mptcp_subflow_tcp_sock(subflow)->sk_sndbuf);
1053 : :
1054 : 65014 : subflow->cached_sndbuf = ssk_sndbuf;
1055 : 65014 : new_sndbuf += ssk_sndbuf;
1056 : : }
1057 : :
1058 : : /* the msk max wmem limit is <nr_subflows> * tcp wmem[2] */
1059 : 29938 : WRITE_ONCE(sk->sk_sndbuf, new_sndbuf);
1060 : 29938 : mptcp_write_space(sk);
1061 : : }
1062 : :
1063 : : /* The called held both the msk socket and the subflow socket locks,
1064 : : * possibly under BH
1065 : : */
1066 : 156 : static inline void __mptcp_propagate_sndbuf(struct sock *sk, struct sock *ssk)
1067 : : {
1068 : 3965 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
1069 : :
1070 [ + + ]: 3965 : if (READ_ONCE(ssk->sk_sndbuf) != subflow->cached_sndbuf)
[ + + + - ]
1071 : 3853 : __mptcp_sync_sndbuf(sk);
1072 : : }
1073 : :
1074 : : /* the caller held only the subflow socket lock, either in process or
1075 : : * BH context. Additionally this can be called under the msk data lock,
1076 : : * so we can't acquire such lock here: let the delegate action acquires
1077 : : * the needed locks in suitable order.
1078 : : */
1079 : 991741 : static inline void mptcp_propagate_sndbuf(struct sock *sk, struct sock *ssk)
1080 : : {
1081 : 991741 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
1082 : :
1083 [ + + ]: 991741 : if (likely(READ_ONCE(ssk->sk_sndbuf) == subflow->cached_sndbuf))
1084 : : return;
1085 : :
1086 : 139364 : local_bh_disable();
1087 : 139364 : mptcp_subflow_delegate(subflow, MPTCP_DELEGATE_SNDBUF);
1088 : 139364 : local_bh_enable();
1089 : : }
1090 : :
1091 : : #define MPTCP_TOKEN_MAX_RETRIES 4
1092 : :
1093 : : void __init mptcp_token_init(void);
1094 : 126 : static inline void mptcp_token_init_request(struct request_sock *req)
1095 : : {
1096 : 2600 : mptcp_subflow_rsk(req)->token_node.pprev = NULL;
1097 : : }
1098 : :
1099 : : int mptcp_token_new_request(struct request_sock *req);
1100 : : void mptcp_token_destroy_request(struct request_sock *req);
1101 : : int mptcp_token_new_connect(struct sock *ssk);
1102 : : void mptcp_token_accept(struct mptcp_subflow_request_sock *r,
1103 : : struct mptcp_sock *msk);
1104 : : bool mptcp_token_exists(u32 token);
1105 : : struct mptcp_sock *mptcp_token_get_sock(struct net *net, u32 token);
1106 : : struct mptcp_sock *mptcp_token_iter_next(const struct net *net, long *s_slot,
1107 : : long *s_num);
1108 : : void mptcp_token_destroy(struct mptcp_sock *msk);
1109 : :
1110 : : void mptcp_crypto_key_sha(u64 key, u32 *token, u64 *idsn);
1111 : :
1112 : : void mptcp_crypto_hmac_sha(u64 key1, u64 key2, u8 *msg, int len, void *hmac);
1113 : : __sum16 __mptcp_make_csum(u64 data_seq, u32 subflow_seq, u16 data_len, __wsum sum);
1114 : :
1115 : : void __init mptcp_pm_init(void);
1116 : : void mptcp_pm_data_init(struct mptcp_sock *msk);
1117 : : void mptcp_pm_data_reset(struct mptcp_sock *msk);
1118 : : void mptcp_pm_destroy(struct mptcp_sock *msk);
1119 : : int mptcp_pm_parse_addr(struct nlattr *attr, struct genl_info *info,
1120 : : struct mptcp_addr_info *addr);
1121 : : int mptcp_pm_parse_entry(struct nlattr *attr, struct genl_info *info,
1122 : : bool require_family,
1123 : : struct mptcp_pm_addr_entry *entry);
1124 : : bool mptcp_pm_addr_families_match(const struct sock *sk,
1125 : : const struct mptcp_addr_info *loc,
1126 : : const struct mptcp_addr_info *rem);
1127 : : void mptcp_pm_chk_stale(const struct mptcp_sock *msk);
1128 : : void mptcp_pm_new_connection(struct mptcp_sock *msk, const struct sock *ssk, int server_side);
1129 : : void mptcp_pm_fully_established(struct mptcp_sock *msk, const struct sock *ssk);
1130 : : bool mptcp_pm_allow_new_subflow(struct mptcp_sock *msk);
1131 : : void mptcp_pm_connection_closed(struct mptcp_sock *msk);
1132 : : void mptcp_pm_subflow_established(struct mptcp_sock *msk);
1133 : : bool mptcp_pm_nl_check_work_pending(struct mptcp_sock *msk);
1134 : : void mptcp_pm_subflow_check_next(struct mptcp_sock *msk,
1135 : : const struct mptcp_subflow_context *subflow);
1136 : : void mptcp_pm_add_addr_received(const struct sock *ssk,
1137 : : const struct mptcp_addr_info *addr);
1138 : : void mptcp_pm_add_addr_echoed(struct mptcp_sock *msk,
1139 : : const struct mptcp_addr_info *addr);
1140 : : void mptcp_pm_send_ack(struct mptcp_sock *msk,
1141 : : struct mptcp_subflow_context *subflow,
1142 : : bool prio, bool backup);
1143 : : void mptcp_pm_addr_send_ack(struct mptcp_sock *msk);
1144 : : void mptcp_pm_nl_rm_addr(struct mptcp_sock *msk, u8 rm_id);
1145 : : void mptcp_pm_rm_subflow(struct mptcp_sock *msk,
1146 : : const struct mptcp_rm_list *rm_list);
1147 : : void mptcp_pm_rm_addr_received(struct mptcp_sock *msk,
1148 : : const struct mptcp_rm_list *rm_list);
1149 : : void mptcp_pm_mp_prio_received(struct sock *sk, u8 bkup);
1150 : : void mptcp_pm_mp_fail_received(struct sock *sk, u64 fail_seq);
1151 : : int mptcp_pm_mp_prio_send_ack(struct mptcp_sock *msk,
1152 : : struct mptcp_addr_info *addr,
1153 : : struct mptcp_addr_info *rem,
1154 : : u8 bkup);
1155 : : bool mptcp_pm_announced_alloc(struct mptcp_sock *msk,
1156 : : const struct mptcp_addr_info *addr);
1157 : : bool mptcp_pm_announced_remove(struct mptcp_sock *msk,
1158 : : const struct mptcp_addr_info *addr);
1159 : : bool mptcp_pm_announced_has_ssk(struct mptcp_sock *msk, const struct sock *ssk);
1160 : : bool mptcp_pm_has_subflow_saddr(const struct mptcp_sock *msk,
1161 : : const struct mptcp_addr_info *saddr);
1162 : : int mptcp_pm_nl_set_flags(struct mptcp_pm_addr_entry *local,
1163 : : struct genl_info *info);
1164 : : int mptcp_userspace_pm_set_flags(struct mptcp_pm_addr_entry *local,
1165 : : struct genl_info *info);
1166 : : int mptcp_pm_announce_addr(struct mptcp_sock *msk,
1167 : : const struct mptcp_addr_info *addr,
1168 : : bool echo);
1169 : : int mptcp_pm_remove_addr(struct mptcp_sock *msk, const struct mptcp_rm_list *rm_list);
1170 : :
1171 : : /* the default path manager, used in mptcp_pm_unregister */
1172 : : extern struct mptcp_pm_ops mptcp_pm_kernel;
1173 : :
1174 : : struct mptcp_pm_ops *mptcp_pm_find(const char *name);
1175 : : int mptcp_pm_register(struct mptcp_pm_ops *pm_ops);
1176 : : void mptcp_pm_unregister(struct mptcp_pm_ops *pm_ops);
1177 : : int mptcp_pm_validate(struct mptcp_pm_ops *pm_ops);
1178 : : void mptcp_pm_get_available(char *buf, size_t maxlen);
1179 : :
1180 : : void mptcp_userspace_pm_free_local_addr_list(struct mptcp_sock *msk);
1181 : :
1182 : : void mptcp_event(enum mptcp_event_type type, const struct mptcp_sock *msk,
1183 : : const struct sock *ssk, gfp_t gfp);
1184 : : void mptcp_event_addr_announced(const struct sock *ssk, const struct mptcp_addr_info *info);
1185 : : void mptcp_event_addr_removed(const struct mptcp_sock *msk, u8 id);
1186 : : void mptcp_event_pm_listener(const struct sock *ssk,
1187 : : enum mptcp_event_type event);
1188 : : bool mptcp_userspace_pm_active(const struct mptcp_sock *msk);
1189 : :
1190 : : void mptcp_fastopen_subflow_synack_set_params(struct mptcp_subflow_context *subflow,
1191 : : struct request_sock *req);
1192 : : int mptcp_pm_genl_fill_addr(struct sk_buff *msg,
1193 : : struct netlink_callback *cb,
1194 : : struct mptcp_pm_addr_entry *entry);
1195 : :
1196 : 480389 : static inline bool mptcp_pm_should_add_signal(struct mptcp_sock *msk)
1197 : : {
1198 [ - + + - : 4563251 : return READ_ONCE(msk->pm.addr_signal) &
+ + - - ]
[ + + ]
1199 : : (BIT(MPTCP_ADD_ADDR_SIGNAL) | BIT(MPTCP_ADD_ADDR_ECHO));
1200 : : }
1201 : :
1202 : 0 : static inline bool mptcp_pm_should_add_signal_addr(struct mptcp_sock *msk)
1203 : : {
1204 [ + + + - ]: 152 : return READ_ONCE(msk->pm.addr_signal) & BIT(MPTCP_ADD_ADDR_SIGNAL);
1205 : : }
1206 : :
1207 : 6 : static inline bool mptcp_pm_should_add_signal_echo(struct mptcp_sock *msk)
1208 : : {
1209 [ + + ]: 916 : return READ_ONCE(msk->pm.addr_signal) & BIT(MPTCP_ADD_ADDR_ECHO);
1210 : : }
1211 : :
1212 : 480383 : static inline bool mptcp_pm_should_rm_signal(struct mptcp_sock *msk)
1213 : : {
1214 [ - + + + ]: 4560491 : return READ_ONCE(msk->pm.addr_signal) & BIT(MPTCP_RM_ADDR_SIGNAL);
[ + + ]
1215 : : }
1216 : :
1217 : 42 : static inline bool mptcp_pm_is_userspace(const struct mptcp_sock *msk)
1218 : : {
1219 [ + + + + : 4411 : return READ_ONCE(msk->pm.pm_type) == MPTCP_PM_TYPE_USERSPACE;
+ + ][ + + ]
[ - + + -
- + + + -
+ ]
1220 : : }
1221 : :
1222 : 23 : static inline bool mptcp_pm_is_kernel(const struct mptcp_sock *msk)
1223 : : {
1224 [ + - - - ]: 1127 : return READ_ONCE(msk->pm.pm_type) == MPTCP_PM_TYPE_KERNEL;
[ + + ]
1225 : : }
1226 : :
1227 : : bool mptcp_pm_add_addr_signal(struct mptcp_sock *msk, int *size, int remaining,
1228 : : struct mptcp_addr_info *addr, bool *echo,
1229 : : bool *drop_ts);
1230 : : bool mptcp_pm_rm_addr_signal(struct mptcp_sock *msk, unsigned int remaining,
1231 : : struct mptcp_rm_list *rm_list, int *len);
1232 : : int mptcp_pm_get_local_id(struct mptcp_sock *msk, struct sock_common *skc);
1233 : : bool mptcp_pm_is_backup(struct mptcp_sock *msk, struct sock_common *skc);
1234 : : int mptcp_pm_nl_dump_addr(struct sk_buff *msg,
1235 : : struct netlink_callback *cb);
1236 : : int mptcp_userspace_pm_dump_addr(struct sk_buff *msg,
1237 : : struct netlink_callback *cb);
1238 : : int mptcp_pm_nl_get_addr(u8 id, struct mptcp_pm_addr_entry *addr,
1239 : : struct genl_info *info);
1240 : : int mptcp_userspace_pm_get_addr(u8 id, struct mptcp_pm_addr_entry *addr,
1241 : : struct genl_info *info);
1242 : :
1243 : 72 : static inline u8 subflow_get_local_id(const struct mptcp_subflow_context *subflow)
1244 : : {
1245 : 1216 : int local_id = READ_ONCE(subflow->local_id);
1246 : :
1247 : 1216 : if (local_id < 0)
1248 : : return 0;
1249 : : return local_id;
1250 : : }
1251 : :
1252 : : void __init mptcp_pm_kernel_register(void);
1253 : : void __init mptcp_pm_userspace_register(void);
1254 : : void __init mptcp_pm_nl_init(void);
1255 : : void mptcp_pm_worker(struct mptcp_sock *msk);
1256 : : void __mptcp_pm_kernel_worker(struct mptcp_sock *msk);
1257 : : u8 mptcp_pm_get_endp_signal_max(const struct mptcp_sock *msk);
1258 : : u8 mptcp_pm_get_endp_subflow_max(const struct mptcp_sock *msk);
1259 : : u8 mptcp_pm_get_endp_laminar_max(const struct mptcp_sock *msk);
1260 : : u8 mptcp_pm_get_endp_fullmesh_max(const struct mptcp_sock *msk);
1261 : : u8 mptcp_pm_get_limit_add_addr_accepted(const struct mptcp_sock *msk);
1262 : : u8 mptcp_pm_get_limit_extra_subflows(const struct mptcp_sock *msk);
1263 : :
1264 : : /* called under PM lock */
1265 : 886 : static inline void __mptcp_pm_close_subflow(struct mptcp_sock *msk)
1266 : : {
1267 [ - + + - ]: 1772 : if (!WARN_ON_ONCE(msk->pm.extra_subflows == 0) &&
1268 : 886 : --msk->pm.extra_subflows < mptcp_pm_get_limit_extra_subflows(msk))
1269 : 886 : WRITE_ONCE(msk->pm.accept_subflow, true);
1270 : 886 : }
1271 : :
1272 : 85 : static inline void mptcp_pm_close_subflow(struct mptcp_sock *msk)
1273 : : {
1274 : 85 : spin_lock_bh(&msk->pm.lock);
1275 : 85 : __mptcp_pm_close_subflow(msk);
1276 : 85 : spin_unlock_bh(&msk->pm.lock);
1277 : 85 : }
1278 : :
1279 : 1283 : static inline bool mptcp_pm_add_addr_c_flag_case(struct mptcp_sock *msk)
1280 : : {
1281 [ - + ]: 1078 : return READ_ONCE(msk->pm.remote_deny_join_id0) &&
1282 [ + + + + ]: 39 : msk->pm.local_addr_used == 0 &&
[ # # ]
1283 [ + + - + ]: 1290 : mptcp_pm_get_limit_add_addr_accepted(msk) == 0 &&
1284 [ # # ]: 5 : msk->pm.extra_subflows < mptcp_pm_get_limit_extra_subflows(msk);
1285 : : }
1286 : :
1287 : : void mptcp_sockopt_sync_locked(struct mptcp_sock *msk, struct sock *ssk);
1288 : :
1289 : 0 : static inline struct mptcp_ext *mptcp_get_ext(const struct sk_buff *skb)
1290 : : {
1291 [ + - + + : 5520338 : return (struct mptcp_ext *)skb_ext_find(skb, SKB_EXT_MPTCP);
+ + + + ]
[ + + + - ]
[ + - + -
+ - ][ - -
- - + + +
+ + + + -
- - ][ + +
+ - + + -
- - - ]
1292 : : }
1293 : :
1294 : : void mptcp_diag_subflow_init(struct tcp_ulp_ops *ops);
1295 : :
1296 : 14625340 : static inline bool __mptcp_check_fallback(const struct mptcp_sock *msk)
1297 : : {
1298 [ - + - - : 14625340 : return test_bit(MPTCP_FALLBACK_DONE, &msk->flags);
- - ]
1299 : : }
1300 : :
1301 : 1612860 : static inline bool mptcp_check_fallback(const struct sock *sk)
1302 : : {
1303 : 1612860 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
1304 [ - + ]: 1612860 : struct mptcp_sock *msk = mptcp_sk(subflow->conn);
1305 : :
1306 : 1612860 : return __mptcp_check_fallback(msk);
1307 : : }
1308 : :
1309 : 1081 : static inline bool __mptcp_has_initial_subflow(const struct mptcp_sock *msk)
1310 : : {
1311 : 1081 : struct sock *ssk = READ_ONCE(msk->first);
1312 : :
1313 [ + - - + : 2162 : return ssk && ((1 << inet_sk_state_load(ssk)) &
+ + ]
[ + - + + ]
1314 : : (TCPF_ESTABLISHED | TCPF_SYN_SENT |
1315 : : TCPF_SYN_RECV | TCPF_LISTEN));
1316 : : }
1317 : :
1318 : : bool __mptcp_try_fallback(struct mptcp_sock *msk, int fb_mib);
1319 : :
1320 : 184 : static inline bool mptcp_try_fallback(struct sock *ssk, int fb_mib)
1321 : : {
1322 : 184 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
1323 : 184 : struct sock *sk = subflow->conn;
1324 : 184 : struct mptcp_sock *msk;
1325 : :
1326 [ - + ]: 184 : msk = mptcp_sk(sk);
1327 [ + + ]: 184 : if (!__mptcp_try_fallback(msk, fb_mib))
1328 : : return false;
1329 [ - + - + : 172 : if (READ_ONCE(msk->snd_data_fin_enable) && !(ssk->sk_shutdown & SEND_SHUTDOWN)) {
- - ]
[ - + - - ]
1330 : 0 : gfp_t saved_allocation = ssk->sk_allocation;
1331 : :
1332 : : /* we are in a atomic (BH) scope, override ssk default for data
1333 : : * fin allocation
1334 : : */
1335 : 0 : ssk->sk_allocation = GFP_ATOMIC;
1336 : 0 : ssk->sk_shutdown |= SEND_SHUTDOWN;
1337 : 0 : tcp_shutdown(ssk, SEND_SHUTDOWN);
1338 : 0 : ssk->sk_allocation = saved_allocation;
1339 : : }
1340 : : return true;
1341 : : }
1342 : :
1343 : 30 : static inline void mptcp_early_fallback(struct mptcp_sock *msk,
1344 : : struct mptcp_subflow_context *subflow,
1345 : : int fb_mib)
1346 : : {
1347 : 30 : subflow->request_mptcp = 0;
1348 [ - + ]: 30 : WARN_ON_ONCE(!__mptcp_try_fallback(msk, fb_mib));
1349 : 30 : }
1350 : :
1351 : 108452 : static inline bool mptcp_check_infinite_map(struct sk_buff *skb)
1352 : : {
1353 : 108452 : struct mptcp_ext *mpext;
1354 : :
1355 [ + + ]: 108452 : mpext = skb ? mptcp_get_ext(skb) : NULL;
1356 [ + + + + ]: 20738 : if (mpext && mpext->infinite_map)
1357 : 1 : return true;
1358 : :
1359 : : return false;
1360 : : }
1361 : :
1362 : 0 : static inline bool is_active_ssk(struct mptcp_subflow_context *subflow)
1363 : : {
1364 [ + - - - ]: 6 : return (subflow->request_mptcp || subflow->request_join);
1365 : : }
1366 : :
1367 : 1786 : static inline bool subflow_simultaneous_connect(struct sock *sk)
1368 : : {
1369 : 1786 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
1370 : :
1371 : : /* Note that the sk state implies !subflow->conn_finished. */
1372 [ + + ]: 1786 : return sk->sk_state == TCP_SYN_RECV && is_active_ssk(subflow);
1373 : : }
1374 : :
1375 : : #ifdef CONFIG_SYN_COOKIES
1376 : : void subflow_init_req_cookie_join_save(const struct mptcp_subflow_request_sock *subflow_req,
1377 : : struct sk_buff *skb);
1378 : : bool mptcp_token_join_cookie_init_state(struct mptcp_subflow_request_sock *subflow_req,
1379 : : struct sk_buff *skb);
1380 : : void __init mptcp_join_cookie_init(void);
1381 : : #else
1382 : : static inline void
1383 : : subflow_init_req_cookie_join_save(const struct mptcp_subflow_request_sock *subflow_req,
1384 : : struct sk_buff *skb) {}
1385 : : static inline bool
1386 : : mptcp_token_join_cookie_init_state(struct mptcp_subflow_request_sock *subflow_req,
1387 : : struct sk_buff *skb)
1388 : : {
1389 : : return false;
1390 : : }
1391 : :
1392 : : static inline void mptcp_join_cookie_init(void) {}
1393 : : #endif
1394 : :
1395 : : #endif /* __MPTCP_PROTOCOL_H */
|