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