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 : 80565 : static inline bool before64(__u64 seq1, __u64 seq2)
139 : : {
140 [ + + ][ + + : 8996143 : 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 [ + - + + : 1281727 : 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 : : u16 overhead;
268 : : u16 already_sent;
269 : : struct page *page;
270 : : };
271 : :
272 : : /* Arbitrary compromise between as low as possible to react timely to subflow
273 : : * close event and as big as possible to avoid being fouled by biased large
274 : : * samples due to peer sending data on a different subflow WRT to the incoming
275 : : * ack.
276 : : */
277 : : #define MPTCP_RTT_SAMPLES 5
278 : :
279 : : /* MPTCP connection sock */
280 : : struct mptcp_sock {
281 : : /* inet_connection_sock must be the first member */
282 : : struct inet_connection_sock sk;
283 : : u64 local_key; /* protected by the first subflow socket lock
284 : : * lockless access read
285 : : */
286 : : u64 remote_key; /* same as above */
287 : : u64 write_seq;
288 : : u64 bytes_sent;
289 : : u64 snd_nxt;
290 : : u64 bytes_received;
291 : : u64 ack_seq;
292 : : atomic64_t rcv_wnd_sent;
293 : : u64 rcv_data_fin_seq;
294 : : u64 bytes_retrans;
295 : : u64 bytes_consumed;
296 : : int snd_burst;
297 : : int old_wspace;
298 : : u64 recovery_snd_nxt; /* in recovery mode accept up to this seq;
299 : : * recovery related fields are under data_lock
300 : : * protection
301 : : */
302 : : u64 bytes_acked;
303 : : u64 snd_una;
304 : : u64 wnd_end;
305 : : u32 last_data_sent;
306 : : u32 last_data_recv;
307 : : u32 last_ack_recv;
308 : : unsigned long timer_ival;
309 : : u32 token;
310 : : unsigned long flags;
311 : : unsigned long cb_flags;
312 : : bool recovery; /* closing subflow write queue reinjected */
313 : : bool can_ack;
314 : : bool fully_established;
315 : : bool rcv_data_fin;
316 : : bool snd_data_fin_enable;
317 : : bool rcv_fastclose;
318 : : bool use_64bit_ack; /* Set when we received a 64-bit DSN */
319 : : bool csum_enabled;
320 : : bool allow_infinite_fallback;
321 : : u8 pending_state; /* A subflow asked to set this sk_state,
322 : : * protected by the msk data lock
323 : : */
324 : : u8 mpc_endpoint_id;
325 : : u8 recvmsg_inq:1,
326 : : cork:1,
327 : : nodelay:1,
328 : : fastopening:1,
329 : : in_accept_queue:1,
330 : : free_first:1,
331 : : rcvspace_init:1,
332 : : fastclosing:1;
333 : : u32 notsent_lowat;
334 : : int keepalive_cnt;
335 : : int keepalive_idle;
336 : : int keepalive_intvl;
337 : : int maxseg;
338 : : struct work_struct work;
339 : : struct sk_buff *ooo_last_skb;
340 : : struct rb_root out_of_order_queue;
341 : : struct list_head conn_list;
342 : : struct list_head rtx_queue;
343 : : struct mptcp_data_frag *first_pending;
344 : : struct list_head join_list;
345 : : struct sock *first; /* The mptcp ops can safely dereference, using suitable
346 : : * ONCE annotation, the subflow outside the socket
347 : : * lock as such sock is freed after close().
348 : : */
349 : : struct mptcp_pm_data pm;
350 : : struct mptcp_sched_ops *sched;
351 : :
352 : : /* Most recent rtt_us observed by in use incoming subflows. */
353 : : struct {
354 : : u32 samples[MPTCP_RTT_SAMPLES];
355 : : u32 next_sample;
356 : : } rcv_rtt_est;
357 : :
358 : : struct {
359 : : int space; /* bytes copied in last measurement window */
360 : : int copied; /* bytes copied in this measurement window */
361 : : u64 time; /* start time of measurement window */
362 : : } rcvq_space;
363 : : u8 scaling_ratio;
364 : : bool allow_subflows;
365 : :
366 : : u32 subflow_id;
367 : : u32 setsockopt_seq;
368 : : char ca_name[TCP_CA_NAME_MAX];
369 : :
370 : : spinlock_t fallback_lock; /* protects fallback,
371 : : * allow_infinite_fallback and
372 : : * allow_join
373 : : */
374 : :
375 : : struct list_head backlog_list; /* protected by the data lock */
376 : : u32 backlog_len;
377 : : u32 backlog_unaccounted;
378 : : };
379 : :
380 : : #define mptcp_data_lock(sk) spin_lock_bh(&(sk)->sk_lock.slock)
381 : : #define mptcp_data_unlock(sk) spin_unlock_bh(&(sk)->sk_lock.slock)
382 : :
383 : : #define mptcp_for_each_subflow(__msk, __subflow) \
384 : : list_for_each_entry(__subflow, &((__msk)->conn_list), node)
385 : : #define mptcp_for_each_subflow_safe(__msk, __subflow, __tmp) \
386 : : list_for_each_entry_safe(__subflow, __tmp, &((__msk)->conn_list), node)
387 : : #define mptcp_next_subflow(__msk, __subflow) \
388 : : list_next_entry_circular(__subflow, &((__msk)->conn_list), node)
389 : :
390 : : extern struct genl_family mptcp_genl_family;
391 : :
392 : 366586 : static inline void msk_owned_by_me(const struct mptcp_sock *msk)
393 : : {
394 : 1113985 : sock_owned_by_me((const struct sock *)msk);
395 : : }
396 : :
397 : : #ifdef CONFIG_DEBUG_NET
398 : : /* MPTCP-specific: we might (indirectly) call this helper with the wrong sk */
399 : : #undef tcp_sk
400 : : #define tcp_sk(ptr) ({ \
401 : : typeof(ptr) _ptr = (ptr); \
402 : : WARN_ON(_ptr->sk_protocol != IPPROTO_TCP); \
403 : : container_of_const(_ptr, struct tcp_sock, inet_conn.icsk_inet.sk); \
404 : : })
405 : : #define mptcp_sk(ptr) ({ \
406 : : typeof(ptr) _ptr = (ptr); \
407 : : WARN_ON(_ptr->sk_protocol != IPPROTO_MPTCP); \
408 : : container_of_const(_ptr, struct mptcp_sock, sk.icsk_inet.sk); \
409 : : })
410 : :
411 : : #else /* !CONFIG_DEBUG_NET */
412 : : #define mptcp_sk(ptr) container_of_const(ptr, struct mptcp_sock, sk.icsk_inet.sk)
413 : : #endif
414 : :
415 : 5136790 : static inline int mptcp_win_from_space(const struct sock *sk, int space)
416 : : {
417 [ - + ]: 5136790 : return __tcp_win_from_space(mptcp_sk(sk)->scaling_ratio, space);
418 : : }
419 : :
420 : 3021 : static inline int mptcp_space_from_win(const struct sock *sk, int win)
421 : : {
422 [ - + ]: 3021 : return __tcp_space_from_win(mptcp_sk(sk)->scaling_ratio, win);
423 : : }
424 : :
425 : 3072559 : static inline int __mptcp_space(const struct sock *sk)
426 : : {
427 : 10810671 : return mptcp_win_from_space(sk, READ_ONCE(sk->sk_rcvbuf) -
428 [ - + ]: 3072559 : READ_ONCE(mptcp_sk(sk)->backlog_len) -
429 : 3072559 : sk_rmem_alloc_get(sk));
430 : : }
431 : :
432 : 4016849 : static inline struct mptcp_data_frag *mptcp_send_head(const struct sock *sk)
433 : : {
434 [ - + ]: 4016849 : const struct mptcp_sock *msk = mptcp_sk(sk);
435 : :
436 : 4016849 : return msk->first_pending;
437 : : }
438 : :
439 : 0 : static inline void mptcp_init_rtt_est(struct mptcp_sock *msk)
440 : : {
441 : 4514 : int i;
442 : :
443 [ + + + + ]: 28272 : for (i = 0; i < MPTCP_RTT_SAMPLES; ++i)
444 : 22570 : msk->rcv_rtt_est.samples[i] = U32_MAX;
445 : 4514 : msk->rcv_rtt_est.next_sample = 0;
446 : 4514 : msk->scaling_ratio = TCP_DEFAULT_SCALING_RATIO;
447 : : }
448 : :
449 : 0 : static inline u32 mptcp_rtt_us_est(const struct mptcp_sock *msk)
450 : : {
451 : 0 : u32 rtt_us = msk->rcv_rtt_est.samples[0];
452 : 0 : int i;
453 : :
454 : : /* Lockless access of collected samples. */
455 [ + + - - : 4283505 : for (i = 1; i < MPTCP_RTT_SAMPLES; ++i)
- - ]
456 : 0 : rtt_us = min(rtt_us, READ_ONCE(msk->rcv_rtt_est.samples[i]));
457 [ + + ]: 856701 : return rtt_us;
458 : : }
459 : :
460 : 529635 : static inline struct mptcp_data_frag *mptcp_send_next(struct sock *sk)
461 : : {
462 [ - + ]: 529635 : struct mptcp_sock *msk = mptcp_sk(sk);
463 : 529635 : struct mptcp_data_frag *cur;
464 : :
465 : 529635 : cur = msk->first_pending;
466 [ + + ]: 529635 : return list_is_last(&cur->list, &msk->rtx_queue) ? NULL :
467 : 148245 : list_next_entry(cur, list);
468 : : }
469 : :
470 : 774900 : static inline struct mptcp_data_frag *mptcp_pending_tail(const struct sock *sk)
471 : : {
472 [ - + ]: 774900 : const struct mptcp_sock *msk = mptcp_sk(sk);
473 : :
474 [ + + ]: 774900 : if (!msk->first_pending)
475 : : return NULL;
476 : :
477 [ - + + - ]: 393522 : if (WARN_ON_ONCE(list_empty(&msk->rtx_queue)))
478 : : return NULL;
479 : :
480 : 393522 : return list_last_entry(&msk->rtx_queue, struct mptcp_data_frag, list);
481 : : }
482 : :
483 : 420219 : static inline struct mptcp_data_frag *mptcp_rtx_head(struct sock *sk)
484 : : {
485 [ - + ]: 420219 : struct mptcp_sock *msk = mptcp_sk(sk);
486 : :
487 [ + + ]: 420219 : if (msk->snd_una == msk->snd_nxt)
488 : : return NULL;
489 : :
490 [ + + ]: 320418 : return list_first_entry_or_null(&msk->rtx_queue, struct mptcp_data_frag, list);
491 : : }
492 : :
493 : : struct csum_pseudo_header {
494 : : __be64 data_seq;
495 : : __be32 subflow_seq;
496 : : __be16 data_len;
497 : : __sum16 csum;
498 : : };
499 : :
500 : : struct mptcp_subflow_request_sock {
501 : : struct tcp_request_sock sk;
502 : : u16 mp_capable : 1,
503 : : mp_join : 1,
504 : : backup : 1,
505 : : request_bkup : 1,
506 : : csum_reqd : 1,
507 : : allow_join_id0 : 1;
508 : : u8 local_id;
509 : : u8 remote_id;
510 : : u64 local_key;
511 : : u64 idsn;
512 : : u32 token;
513 : : u32 ssn_offset;
514 : : u64 thmac;
515 : : u32 local_nonce;
516 : : u32 remote_nonce;
517 : : struct mptcp_sock *msk;
518 : : struct hlist_nulls_node token_node;
519 : : };
520 : :
521 : : static inline struct mptcp_subflow_request_sock *
522 : : mptcp_subflow_rsk(const struct request_sock *rsk)
523 : : {
524 : : return (struct mptcp_subflow_request_sock *)rsk;
525 : : }
526 : :
527 : : struct mptcp_delegated_action {
528 : : struct napi_struct napi;
529 : : local_lock_t bh_lock;
530 : : struct list_head head;
531 : : };
532 : :
533 : : DECLARE_PER_CPU(struct mptcp_delegated_action, mptcp_delegated_actions);
534 : :
535 : : #define MPTCP_DELEGATE_SCHEDULED 0
536 : : #define MPTCP_DELEGATE_SEND 1
537 : : #define MPTCP_DELEGATE_ACK 2
538 : : #define MPTCP_DELEGATE_SNDBUF 3
539 : :
540 : : #define MPTCP_DELEGATE_ACTIONS_MASK (~BIT(MPTCP_DELEGATE_SCHEDULED))
541 : : /* MPTCP subflow context */
542 : : struct mptcp_subflow_context {
543 : : struct list_head node;/* conn_list of subflows */
544 : :
545 : : struct_group(reset,
546 : :
547 : : unsigned long avg_pacing_rate; /* protected by msk socket lock */
548 : : u64 local_key;
549 : : u64 remote_key;
550 : : u64 idsn;
551 : : u64 map_seq;
552 : : u64 rcv_wnd_sent;
553 : : u32 snd_isn;
554 : : u32 token;
555 : : u32 rel_write_seq;
556 : : u32 map_subflow_seq;
557 : : u32 ssn_offset;
558 : : u32 map_data_len;
559 : : __wsum map_data_csum;
560 : : u32 map_csum_len;
561 : : u32 prev_rtt_us;
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 : 134115 : mptcp_subflow_ctx(const struct sock *sk)
634 : : {
635 [ - + ]: 818106 : const struct inet_connection_sock *icsk = inet_csk(sk);
[ - + + - ]
636 : :
637 : : /* Use RCU on icsk_ulp_data only for sock diag code */
638 [ + + ][ + + : 43303254 : return (__force struct mptcp_subflow_context *)icsk->icsk_ulp_data;
+ - + - -
+ - + + +
+ + + + +
+ - + + +
+ + - + -
- - + + +
+ - + + -
+ - + - +
+ + + - +
+ - + ][ -
+ + - - +
- + + + +
+ + - + +
- + + + +
+ - + -
+ ][ - + +
+ - + -
+ ][ + + -
+ - + - +
- + - + +
+ - + + -
+ + - + -
+ - + - +
+ + ][ + +
+ - - + -
+ - + - +
- + + + -
+ + - + +
- + - + -
+ - + +
+ ]
639 : : }
640 : :
641 : : static inline struct sock *
642 : 18 : mptcp_subflow_tcp_sock(const struct mptcp_subflow_context *subflow)
643 : : {
644 [ - + + + : 5461774 : return subflow->tcp_sock;
+ + ][ + + ]
[ + - + +
+ + - + -
- + + + +
- - - - ]
[ + - + +
+ + - + -
- - - + +
+ + - - -
- ]
645 : : }
646 : :
647 : : static inline void
648 : 66 : mptcp_subflow_ctx_reset(struct mptcp_subflow_context *subflow)
649 : : {
650 : 1440 : memset(&subflow->reset, 0, sizeof(subflow->reset));
651 : 1440 : subflow->request_mptcp = 1;
652 : 1440 : WRITE_ONCE(subflow->local_id, -1);
653 : 1440 : }
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 : 63 : mptcp_send_active_reset_reason(struct sock *sk)
684 : : {
685 : 63 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
686 : 63 : enum sk_rst_reason reason;
687 : :
688 [ + - ]: 63 : reason = sk_rst_convert_mptcp_reason(subflow->reset_reason);
689 : 63 : tcp_send_active_reset(sk, GFP_ATOMIC, reason);
690 : 63 : }
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 : 733230 : static inline void mptcp_borrow_fwdmem(struct sock *sk, struct sk_buff *skb)
697 : : {
698 : 733230 : 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 [ - + ]: 733230 : DEBUG_NET_WARN_ON_ONCE(skb->destructor);
704 [ + - ]: 733230 : sk_forward_alloc_add(sk, skb->truesize);
705 [ + - ]: 733230 : if (!ssk)
706 : : return;
707 : :
708 : 733230 : atomic_sub(skb->truesize, &ssk->sk_rmem_alloc);
709 : 733230 : skb->sk = NULL;
710 : : }
711 : :
712 : : static inline void
713 : 75041 : __mptcp_subflow_lend_fwdmem(struct mptcp_subflow_context *subflow, int size)
714 : : {
715 : 751597 : int frag = (subflow->lent_mem_frag + size) & (PAGE_SIZE - 1);
716 : :
717 : 18413 : subflow->lent_mem_frag = frag;
718 : : }
719 : :
720 : : static inline void
721 : 74956 : mptcp_subflow_lend_fwdmem(struct mptcp_subflow_context *subflow,
722 : : struct sk_buff *skb)
723 : : {
724 : 733230 : __mptcp_subflow_lend_fwdmem(subflow, skb->truesize);
725 : 733230 : skb->destructor = NULL;
726 : : }
727 : :
728 : : static inline u64
729 : 3504242 : mptcp_subflow_get_map_offset(const struct mptcp_subflow_context *subflow)
730 : : {
731 [ - + ]: 3504242 : return tcp_sk(mptcp_subflow_tcp_sock(subflow))->copied_seq -
732 : 3504242 : subflow->ssn_offset -
733 : 3504242 : subflow->map_subflow_seq;
734 : : }
735 : :
736 : : static inline u64
737 : 155606 : mptcp_subflow_get_mapped_dsn(const struct mptcp_subflow_context *subflow)
738 : : {
739 [ - + ]: 1462797 : 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 : 111114 : static inline void mptcp_subflow_delegate(struct mptcp_subflow_context *subflow, int action)
745 : : {
746 [ - + ]: 111114 : long old, set_bits = BIT(MPTCP_DELEGATE_SCHEDULED) | BIT(action);
747 : 111114 : struct mptcp_delegated_action *delegated;
748 : 111114 : bool schedule;
749 : :
750 : : /* the caller held the subflow bh socket lock */
751 [ + - + - : 111114 : 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 [ - + - + ]: 111114 : old = set_mask_bits(&subflow->delegated_status, 0, set_bits);
758 [ + + ]: 111114 : if (!(old & BIT(MPTCP_DELEGATE_SCHEDULED))) {
759 [ - + + - ]: 58582 : if (WARN_ON_ONCE(!list_empty(&subflow->delegated_node)))
760 : : return;
761 : :
762 [ + - + - : 58582 : local_lock_nested_bh(&mptcp_delegated_actions.bh_lock);
+ - + - -
+ ]
763 : 58582 : delegated = this_cpu_ptr(&mptcp_delegated_actions);
764 : 58582 : schedule = list_empty(&delegated->head);
765 : 58582 : list_add_tail(&subflow->delegated_node, &delegated->head);
766 : 58582 : local_unlock_nested_bh(&mptcp_delegated_actions.bh_lock);
767 : 58582 : sock_hold(mptcp_subflow_tcp_sock(subflow));
768 [ + + ]: 58582 : if (schedule)
769 : 55336 : napi_schedule(&delegated->napi);
770 : : }
771 : : }
772 : :
773 : : static inline struct mptcp_subflow_context *
774 : 113493 : mptcp_subflow_delegated_next(struct mptcp_delegated_action *delegated)
775 : : {
776 : 113493 : struct mptcp_subflow_context *ret;
777 : :
778 [ + - + - : 113493 : local_lock_nested_bh(&mptcp_delegated_actions.bh_lock);
+ - + - -
+ ]
779 [ + + ]: 113493 : if (list_empty(&delegated->head)) {
780 : 30615 : local_unlock_nested_bh(&mptcp_delegated_actions.bh_lock);
781 : 30300 : return NULL;
782 : : }
783 : :
784 : 58582 : ret = list_first_entry(&delegated->head, struct mptcp_subflow_context, delegated_node);
785 : 58582 : list_del_init(&ret->delegated_node);
786 : 58582 : local_unlock_nested_bh(&mptcp_delegated_actions.bh_lock);
787 : 58582 : 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 : 105698 : static inline u64 mptcp_data_avail(const struct mptcp_sock *msk)
862 : : {
863 [ + + ]: 701215 : return READ_ONCE(msk->bytes_received) - READ_ONCE(msk->bytes_consumed);
864 : : }
865 : :
866 : 1224115 : static inline bool mptcp_epollin_ready(const struct sock *sk)
867 : : {
868 [ - + ]: 1224115 : u64 data_avail = mptcp_data_avail(mptcp_sk(sk));
869 : :
870 [ + + ]: 1224115 : 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 [ - + - - ]: 1673276 : 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 : 1693273 : static inline bool __tcp_can_send(const struct sock *ssk)
883 : : {
884 : : /* only send if our side has not closed yet */
885 [ + + ]: 2078432 : return ((1 << inet_sk_state_load(ssk)) & (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT));
886 : : }
887 : :
888 : 1510405 : 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 [ + + - + : 1510405 : if (subflow->request_join && !READ_ONCE(subflow->fully_established))
+ + ]
[ + + + + ]
892 : : return false;
893 : :
894 : 1509937 : 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 : 198 : sk->sk_data_ready = sock_def_readable;
907 : 198 : sk->sk_state_change = ctx->tcp_state_change;
908 : 198 : sk->sk_write_space = sk_stream_write_space;
909 : 198 : sk->sk_error_report = ctx->tcp_error_report;
910 : :
911 [ - + ]: 198 : 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 : : #endif
918 : :
919 : : struct sock *mptcp_sk_clone_init(const struct sock *sk,
920 : : const struct mptcp_options_received *mp_opt,
921 : : struct sock *ssk,
922 : : struct request_sock *req);
923 : : void mptcp_get_options(const struct sk_buff *skb,
924 : : struct mptcp_options_received *mp_opt);
925 : :
926 : : void mptcp_finish_connect(struct sock *sk);
927 : : void __mptcp_sync_state(struct sock *sk, int state);
928 : : void mptcp_reset_tout_timer(struct mptcp_sock *msk, unsigned long fail_tout);
929 : :
930 : 1153 : static inline void mptcp_stop_tout_timer(struct sock *sk)
931 : : {
932 [ + + ]: 1153 : if (!inet_csk(sk)->icsk_mtup.probe_timestamp)
933 : : return;
934 : :
935 : 4 : sk_stop_timer(sk, &inet_csk(sk)->mptcp_tout_timer);
936 : 4 : inet_csk(sk)->icsk_mtup.probe_timestamp = 0;
937 : : }
938 : :
939 : 126 : static inline void mptcp_set_close_tout(struct sock *sk, unsigned long tout)
940 : : {
941 : : /* avoid 0 timestamp, as that means no close timeout */
942 : 36 : inet_csk(sk)->icsk_mtup.probe_timestamp = tout ? : 1;
943 : : }
944 : :
945 : 1329 : static inline void mptcp_start_tout_timer(struct sock *sk)
946 : : {
947 : 1329 : mptcp_set_close_tout(sk, tcp_jiffies32);
948 [ - + ]: 1329 : mptcp_reset_tout_timer(mptcp_sk(sk), 0);
949 : 1329 : }
950 : :
951 : 3616 : static inline bool mptcp_is_fully_established(struct sock *sk)
952 : : {
953 [ + + ]: 3616 : return inet_sk_state_load(sk) == TCP_ESTABLISHED &&
954 [ - + - + : 3259 : READ_ONCE(mptcp_sk(sk)->fully_established);
- + ]
[ - + - + ]
955 : : }
956 : :
957 : 253279 : static inline u64 mptcp_stamp(void)
958 : : {
959 [ + - ]: 859545 : return div_u64(tcp_clock_ns(), NSEC_PER_USEC);
960 : : }
961 : :
962 : : void mptcp_data_ready(struct sock *sk, struct sock *ssk);
963 : : bool mptcp_finish_join(struct sock *sk);
964 : : bool mptcp_schedule_work(struct sock *sk);
965 : : int mptcp_setsockopt(struct sock *sk, int level, int optname,
966 : : sockptr_t optval, unsigned int optlen);
967 : : int mptcp_getsockopt(struct sock *sk, int level, int optname,
968 : : char __user *optval, int __user *option);
969 : :
970 : : u64 __mptcp_expand_seq(u64 old_seq, u64 cur_seq);
971 : 218673 : static inline u64 mptcp_expand_seq(u64 old_seq, u64 cur_seq, bool use_64bit)
972 : : {
973 [ + + ]: 2132032 : if (use_64bit)
[ + + + + ]
974 : : return cur_seq;
975 : :
976 : 147937 : return __mptcp_expand_seq(old_seq, cur_seq);
977 : : }
978 : : void __mptcp_check_push(struct sock *sk, struct sock *ssk);
979 : : void __mptcp_data_acked(struct sock *sk);
980 : : void __mptcp_error_report(struct sock *sk);
981 : : bool mptcp_update_rcv_data_fin(struct mptcp_sock *msk, u64 data_fin_seq, bool use_64bit);
982 : 1886931 : static inline bool mptcp_data_fin_enabled(const struct mptcp_sock *msk)
983 : : {
984 [ + + + + ]: 3188179 : return READ_ONCE(msk->snd_data_fin_enable) &&
[ + + ]
985 [ + + ]: 239950 : READ_ONCE(msk->write_seq) == READ_ONCE(msk->snd_nxt);
[ + + - + ]
986 : : }
987 : :
988 : 2830684 : static inline u32 mptcp_notsent_lowat(const struct sock *sk)
989 : : {
990 [ - + ]: 2830684 : struct net *net = sock_net(sk);
991 : 2830684 : u32 val;
992 : :
993 [ - + ]: 2830684 : val = READ_ONCE(mptcp_sk(sk)->notsent_lowat);
994 [ + + ]: 2830684 : return val ?: READ_ONCE(net->ipv4.sysctl_tcp_notsent_lowat);
995 : : }
996 : :
997 : 2055778 : static inline bool mptcp_stream_memory_free(const struct sock *sk, int wake)
998 : : {
999 [ - + ]: 2055778 : const struct mptcp_sock *msk = mptcp_sk(sk);
1000 : 2055778 : u32 notsent_bytes;
1001 : :
1002 : 2055778 : notsent_bytes = READ_ONCE(msk->write_seq) - READ_ONCE(msk->snd_nxt);
1003 [ - + ]: 2055778 : return (notsent_bytes << wake) < mptcp_notsent_lowat(sk);
1004 : : }
1005 : :
1006 : 637558 : static inline bool __mptcp_stream_is_writeable(const struct sock *sk, int wake)
1007 : : {
1008 [ + - + + ]: 1275116 : return mptcp_stream_memory_free(sk, wake) &&
1009 : 637558 : __sk_stream_is_writeable(sk, wake);
1010 : : }
1011 : :
1012 : 835038 : static inline void mptcp_write_space(struct sock *sk)
1013 : : {
1014 : : /* pairs with memory barrier in mptcp_poll */
1015 : 835038 : smp_mb();
1016 [ + + ]: 835038 : if (mptcp_stream_memory_free(sk, 1))
1017 : 834978 : sk_stream_write_space(sk);
1018 : 835038 : }
1019 : :
1020 : 34095 : static inline void __mptcp_sync_sndbuf(struct sock *sk)
1021 : : {
1022 : 34095 : struct mptcp_subflow_context *subflow;
1023 : 34095 : int ssk_sndbuf, new_sndbuf;
1024 : :
1025 [ + - ]: 34095 : if (sk->sk_userlocks & SOCK_SNDBUF_LOCK)
1026 : : return;
1027 : :
1028 [ - + ]: 34095 : new_sndbuf = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_wmem[0]);
1029 [ - + - + : 91581 : mptcp_for_each_subflow(mptcp_sk(sk), subflow) {
+ + ]
1030 : 57486 : ssk_sndbuf = READ_ONCE(mptcp_subflow_tcp_sock(subflow)->sk_sndbuf);
1031 : :
1032 : 57486 : subflow->cached_sndbuf = ssk_sndbuf;
1033 : 57486 : new_sndbuf += ssk_sndbuf;
1034 : : }
1035 : :
1036 : : /* the msk max wmem limit is <nr_subflows> * tcp wmem[2] */
1037 : 34095 : WRITE_ONCE(sk->sk_sndbuf, new_sndbuf);
1038 : 34095 : mptcp_write_space(sk);
1039 : : }
1040 : :
1041 : : /* The called held both the msk socket and the subflow socket locks,
1042 : : * possibly under BH
1043 : : */
1044 : 168 : static inline void __mptcp_propagate_sndbuf(struct sock *sk, struct sock *ssk)
1045 : : {
1046 : 3512 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
1047 : :
1048 [ + + ]: 3512 : if (READ_ONCE(ssk->sk_sndbuf) != subflow->cached_sndbuf)
[ + - + - ]
1049 : 3448 : __mptcp_sync_sndbuf(sk);
1050 : : }
1051 : :
1052 : : /* the caller held only the subflow socket lock, either in process or
1053 : : * BH context. Additionally this can be called under the msk data lock,
1054 : : * so we can't acquire such lock here: let the delegate action acquires
1055 : : * the needed locks in suitable order.
1056 : : */
1057 : 682000 : static inline void mptcp_propagate_sndbuf(struct sock *sk, struct sock *ssk)
1058 : : {
1059 : 682000 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
1060 : :
1061 [ + + ]: 682000 : if (likely(READ_ONCE(ssk->sk_sndbuf) == subflow->cached_sndbuf))
1062 : : return;
1063 : :
1064 : 79189 : local_bh_disable();
1065 : 79189 : mptcp_subflow_delegate(subflow, MPTCP_DELEGATE_SNDBUF);
1066 : 79189 : local_bh_enable();
1067 : : }
1068 : :
1069 : : #define MPTCP_TOKEN_MAX_RETRIES 4
1070 : :
1071 : : void __init mptcp_token_init(void);
1072 : 120 : static inline void mptcp_token_init_request(struct request_sock *req)
1073 : : {
1074 : 2228 : mptcp_subflow_rsk(req)->token_node.pprev = NULL;
1075 : : }
1076 : :
1077 : : int mptcp_token_new_request(struct request_sock *req);
1078 : : void mptcp_token_destroy_request(struct request_sock *req);
1079 : : int mptcp_token_new_connect(struct sock *ssk);
1080 : : void mptcp_token_accept(struct mptcp_subflow_request_sock *r,
1081 : : struct mptcp_sock *msk);
1082 : : bool mptcp_token_exists(u32 token);
1083 : : struct mptcp_sock *mptcp_token_get_sock(struct net *net, u32 token);
1084 : : struct mptcp_sock *mptcp_token_iter_next(const struct net *net, long *s_slot,
1085 : : long *s_num);
1086 : : void mptcp_token_destroy(struct mptcp_sock *msk);
1087 : :
1088 : : void mptcp_crypto_key_sha(u64 key, u32 *token, u64 *idsn);
1089 : :
1090 : : void mptcp_crypto_hmac_sha(u64 key1, u64 key2, u8 *msg, int len, void *hmac);
1091 : : __sum16 __mptcp_make_csum(u64 data_seq, u32 subflow_seq, u16 data_len, __wsum sum);
1092 : :
1093 : : void __init mptcp_pm_init(void);
1094 : : void mptcp_pm_data_init(struct mptcp_sock *msk);
1095 : : void mptcp_pm_data_reset(struct mptcp_sock *msk);
1096 : : void mptcp_pm_destroy(struct mptcp_sock *msk);
1097 : : int mptcp_pm_parse_addr(struct nlattr *attr, struct genl_info *info,
1098 : : struct mptcp_addr_info *addr);
1099 : : int mptcp_pm_parse_entry(struct nlattr *attr, struct genl_info *info,
1100 : : bool require_family,
1101 : : struct mptcp_pm_addr_entry *entry);
1102 : : bool mptcp_pm_addr_families_match(const struct sock *sk,
1103 : : const struct mptcp_addr_info *loc,
1104 : : const struct mptcp_addr_info *rem);
1105 : : void mptcp_pm_subflow_chk_stale(const struct mptcp_sock *msk, struct sock *ssk);
1106 : : void mptcp_pm_new_connection(struct mptcp_sock *msk, const struct sock *ssk, int server_side);
1107 : : void mptcp_pm_fully_established(struct mptcp_sock *msk, const struct sock *ssk);
1108 : : bool mptcp_pm_allow_new_subflow(struct mptcp_sock *msk);
1109 : : void mptcp_pm_connection_closed(struct mptcp_sock *msk);
1110 : : void mptcp_pm_subflow_established(struct mptcp_sock *msk);
1111 : : bool mptcp_pm_nl_check_work_pending(struct mptcp_sock *msk);
1112 : : void mptcp_pm_subflow_check_next(struct mptcp_sock *msk,
1113 : : const struct mptcp_subflow_context *subflow);
1114 : : void mptcp_pm_add_addr_received(const struct sock *ssk,
1115 : : const struct mptcp_addr_info *addr);
1116 : : void mptcp_pm_add_addr_echoed(struct mptcp_sock *msk,
1117 : : const struct mptcp_addr_info *addr);
1118 : : void mptcp_pm_add_addr_send_ack(struct mptcp_sock *msk);
1119 : : void mptcp_pm_send_ack(struct mptcp_sock *msk,
1120 : : struct mptcp_subflow_context *subflow,
1121 : : bool prio, bool backup);
1122 : : void mptcp_pm_addr_send_ack(struct mptcp_sock *msk);
1123 : : void mptcp_pm_nl_rm_addr(struct mptcp_sock *msk, u8 rm_id);
1124 : : void mptcp_pm_rm_subflow(struct mptcp_sock *msk,
1125 : : const struct mptcp_rm_list *rm_list);
1126 : : void mptcp_pm_rm_addr_received(struct mptcp_sock *msk,
1127 : : const struct mptcp_rm_list *rm_list);
1128 : : void mptcp_pm_mp_prio_received(struct sock *sk, u8 bkup);
1129 : : void mptcp_pm_mp_fail_received(struct sock *sk, u64 fail_seq);
1130 : : int mptcp_pm_mp_prio_send_ack(struct mptcp_sock *msk,
1131 : : struct mptcp_addr_info *addr,
1132 : : struct mptcp_addr_info *rem,
1133 : : u8 bkup);
1134 : : bool mptcp_pm_alloc_anno_list(struct mptcp_sock *msk,
1135 : : const struct mptcp_addr_info *addr);
1136 : : bool mptcp_pm_sport_in_anno_list(struct mptcp_sock *msk, const struct sock *sk);
1137 : : struct mptcp_pm_add_entry *
1138 : : mptcp_pm_del_add_timer(struct mptcp_sock *msk,
1139 : : const struct mptcp_addr_info *addr, bool check_id);
1140 : : bool mptcp_lookup_subflow_by_saddr(const struct list_head *list,
1141 : : const struct mptcp_addr_info *saddr);
1142 : : bool mptcp_remove_anno_list_by_saddr(struct mptcp_sock *msk,
1143 : : const struct mptcp_addr_info *addr);
1144 : : int mptcp_pm_nl_set_flags(struct mptcp_pm_addr_entry *local,
1145 : : struct genl_info *info);
1146 : : int mptcp_userspace_pm_set_flags(struct mptcp_pm_addr_entry *local,
1147 : : struct genl_info *info);
1148 : : int mptcp_pm_announce_addr(struct mptcp_sock *msk,
1149 : : const struct mptcp_addr_info *addr,
1150 : : bool echo);
1151 : : int mptcp_pm_remove_addr(struct mptcp_sock *msk, const struct mptcp_rm_list *rm_list);
1152 : : void mptcp_pm_remove_addr_entry(struct mptcp_sock *msk,
1153 : : struct mptcp_pm_addr_entry *entry);
1154 : :
1155 : : /* the default path manager, used in mptcp_pm_unregister */
1156 : : extern struct mptcp_pm_ops mptcp_pm_kernel;
1157 : :
1158 : : struct mptcp_pm_ops *mptcp_pm_find(const char *name);
1159 : : int mptcp_pm_register(struct mptcp_pm_ops *pm_ops);
1160 : : void mptcp_pm_unregister(struct mptcp_pm_ops *pm_ops);
1161 : : int mptcp_pm_validate(struct mptcp_pm_ops *pm_ops);
1162 : : void mptcp_pm_get_available(char *buf, size_t maxlen);
1163 : :
1164 : : void mptcp_userspace_pm_free_local_addr_list(struct mptcp_sock *msk);
1165 : :
1166 : : void mptcp_event(enum mptcp_event_type type, const struct mptcp_sock *msk,
1167 : : const struct sock *ssk, gfp_t gfp);
1168 : : void mptcp_event_addr_announced(const struct sock *ssk, const struct mptcp_addr_info *info);
1169 : : void mptcp_event_addr_removed(const struct mptcp_sock *msk, u8 id);
1170 : : void mptcp_event_pm_listener(const struct sock *ssk,
1171 : : enum mptcp_event_type event);
1172 : : bool mptcp_userspace_pm_active(const struct mptcp_sock *msk);
1173 : :
1174 : : void mptcp_fastopen_subflow_synack_set_params(struct mptcp_subflow_context *subflow,
1175 : : struct request_sock *req);
1176 : : int mptcp_pm_genl_fill_addr(struct sk_buff *msg,
1177 : : struct netlink_callback *cb,
1178 : : struct mptcp_pm_addr_entry *entry);
1179 : :
1180 : 446090 : static inline bool mptcp_pm_should_add_signal(struct mptcp_sock *msk)
1181 : : {
1182 [ + + ][ - + : 3140204 : return READ_ONCE(msk->pm.addr_signal) &
+ - + + -
- ]
1183 : : (BIT(MPTCP_ADD_ADDR_SIGNAL) | BIT(MPTCP_ADD_ADDR_ECHO));
1184 : : }
1185 : :
1186 : 0 : static inline bool mptcp_pm_should_add_signal_addr(struct mptcp_sock *msk)
1187 : : {
1188 [ + + + - ]: 130 : return READ_ONCE(msk->pm.addr_signal) & BIT(MPTCP_ADD_ADDR_SIGNAL);
1189 : : }
1190 : :
1191 : 6 : static inline bool mptcp_pm_should_add_signal_echo(struct mptcp_sock *msk)
1192 : : {
1193 [ + + ]: 826 : return READ_ONCE(msk->pm.addr_signal) & BIT(MPTCP_ADD_ADDR_ECHO);
1194 : : }
1195 : :
1196 : 446084 : static inline bool mptcp_pm_should_rm_signal(struct mptcp_sock *msk)
1197 : : {
1198 [ + + ]: 3137708 : return READ_ONCE(msk->pm.addr_signal) & BIT(MPTCP_RM_ADDR_SIGNAL);
[ - + + + ]
1199 : : }
1200 : :
1201 : 42 : static inline bool mptcp_pm_is_userspace(const struct mptcp_sock *msk)
1202 : : {
1203 [ + + ][ - + : 3652 : return READ_ONCE(msk->pm.pm_type) == MPTCP_PM_TYPE_USERSPACE;
+ - - + +
+ - + ][ +
+ + + +
+ ]
1204 : : }
1205 : :
1206 : 12 : static inline bool mptcp_pm_is_kernel(const struct mptcp_sock *msk)
1207 : : {
1208 [ + + ]: 1072 : return READ_ONCE(msk->pm.pm_type) == MPTCP_PM_TYPE_KERNEL;
[ + - - - ]
1209 : : }
1210 : :
1211 : 12 : static inline unsigned int mptcp_add_addr_len(int family, bool echo, bool port)
1212 : : {
1213 : 1652 : u8 len = TCPOLEN_MPTCP_ADD_ADDR_BASE;
1214 : :
1215 [ + + ]: 1652 : if (family == AF_INET6)
1216 : 372 : len = TCPOLEN_MPTCP_ADD_ADDR6_BASE;
1217 [ + + ]: 1652 : if (!echo)
1218 : 872 : len += MPTCPOPT_THMAC_LEN;
1219 : : /* account for 2 trailing 'nop' options */
1220 [ + + ]: 1652 : if (port)
1221 : 136 : len += TCPOLEN_MPTCP_PORT_LEN + TCPOLEN_MPTCP_PORT_ALIGN;
1222 : :
1223 [ - + ]: 1652 : return len;
1224 : : }
1225 : :
1226 : 0 : static inline int mptcp_rm_addr_len(const struct mptcp_rm_list *rm_list)
1227 : : {
1228 [ - + ]: 212 : if (rm_list->nr == 0 || rm_list->nr > MPTCP_RM_IDS_MAX)
1229 : : return -EINVAL;
1230 : :
1231 [ - + ]: 212 : return TCPOLEN_MPTCP_RM_ADDR_BASE + roundup(rm_list->nr - 1, 4) + 1;
1232 : : }
1233 : :
1234 : : bool mptcp_pm_add_addr_signal(struct mptcp_sock *msk, const struct sk_buff *skb,
1235 : : unsigned int opt_size, unsigned int remaining,
1236 : : struct mptcp_addr_info *addr, bool *echo,
1237 : : bool *drop_other_suboptions);
1238 : : bool mptcp_pm_rm_addr_signal(struct mptcp_sock *msk, unsigned int remaining,
1239 : : struct mptcp_rm_list *rm_list);
1240 : : int mptcp_pm_get_local_id(struct mptcp_sock *msk, struct sock_common *skc);
1241 : : bool mptcp_pm_is_backup(struct mptcp_sock *msk, struct sock_common *skc);
1242 : : int mptcp_pm_nl_dump_addr(struct sk_buff *msg,
1243 : : struct netlink_callback *cb);
1244 : : int mptcp_userspace_pm_dump_addr(struct sk_buff *msg,
1245 : : struct netlink_callback *cb);
1246 : : int mptcp_pm_nl_get_addr(u8 id, struct mptcp_pm_addr_entry *addr,
1247 : : struct genl_info *info);
1248 : : int mptcp_userspace_pm_get_addr(u8 id, struct mptcp_pm_addr_entry *addr,
1249 : : struct genl_info *info);
1250 : :
1251 : 72 : static inline u8 subflow_get_local_id(const struct mptcp_subflow_context *subflow)
1252 : : {
1253 : 1042 : int local_id = READ_ONCE(subflow->local_id);
1254 : :
1255 : 1042 : if (local_id < 0)
1256 : : return 0;
1257 : : return local_id;
1258 : : }
1259 : :
1260 : : void __init mptcp_pm_kernel_register(void);
1261 : : void __init mptcp_pm_userspace_register(void);
1262 : : void __init mptcp_pm_nl_init(void);
1263 : : void mptcp_pm_worker(struct mptcp_sock *msk);
1264 : : void __mptcp_pm_kernel_worker(struct mptcp_sock *msk);
1265 : : u8 mptcp_pm_get_endp_signal_max(const struct mptcp_sock *msk);
1266 : : u8 mptcp_pm_get_endp_subflow_max(const struct mptcp_sock *msk);
1267 : : u8 mptcp_pm_get_endp_laminar_max(const struct mptcp_sock *msk);
1268 : : u8 mptcp_pm_get_endp_fullmesh_max(const struct mptcp_sock *msk);
1269 : : u8 mptcp_pm_get_limit_add_addr_accepted(const struct mptcp_sock *msk);
1270 : : u8 mptcp_pm_get_limit_extra_subflows(const struct mptcp_sock *msk);
1271 : :
1272 : : /* called under PM lock */
1273 : 672 : static inline void __mptcp_pm_close_subflow(struct mptcp_sock *msk)
1274 : : {
1275 [ + - ]: 672 : if (--msk->pm.extra_subflows < mptcp_pm_get_limit_extra_subflows(msk))
1276 : 672 : WRITE_ONCE(msk->pm.accept_subflow, true);
1277 : 672 : }
1278 : :
1279 : 85 : static inline void mptcp_pm_close_subflow(struct mptcp_sock *msk)
1280 : : {
1281 : 85 : spin_lock_bh(&msk->pm.lock);
1282 : 85 : __mptcp_pm_close_subflow(msk);
1283 : 85 : spin_unlock_bh(&msk->pm.lock);
1284 : 85 : }
1285 : :
1286 : 1170 : static inline bool mptcp_pm_add_addr_c_flag_case(struct mptcp_sock *msk)
1287 : : {
1288 [ - + ]: 1000 : return READ_ONCE(msk->pm.remote_deny_join_id0) &&
1289 [ + + + + ]: 38 : msk->pm.local_addr_used == 0 &&
[ # # ]
1290 [ + + - + ]: 1176 : mptcp_pm_get_limit_add_addr_accepted(msk) == 0 &&
1291 [ # # ]: 4 : msk->pm.extra_subflows < mptcp_pm_get_limit_extra_subflows(msk);
1292 : : }
1293 : :
1294 : : void mptcp_sockopt_sync_locked(struct mptcp_sock *msk, struct sock *ssk);
1295 : :
1296 : 0 : static inline struct mptcp_ext *mptcp_get_ext(const struct sk_buff *skb)
1297 : : {
1298 [ + + + - ]: 3746032 : return (struct mptcp_ext *)skb_ext_find(skb, SKB_EXT_MPTCP);
[ + - + -
+ - ][ + -
+ + + + +
+ ][ + + +
- + + - -
- - ][ - -
- - + + +
+ + + + -
- - ]
1299 : : }
1300 : :
1301 : : void mptcp_diag_subflow_init(struct tcp_ulp_ops *ops);
1302 : :
1303 : 9406223 : static inline bool __mptcp_check_fallback(const struct mptcp_sock *msk)
1304 : : {
1305 [ - + - - : 9406223 : return test_bit(MPTCP_FALLBACK_DONE, &msk->flags);
- - ]
1306 : : }
1307 : :
1308 : 848397 : static inline bool mptcp_check_fallback(const struct sock *sk)
1309 : : {
1310 : 848397 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
1311 [ - + ]: 848397 : struct mptcp_sock *msk = mptcp_sk(subflow->conn);
1312 : :
1313 : 848397 : return __mptcp_check_fallback(msk);
1314 : : }
1315 : :
1316 : 1026 : static inline bool __mptcp_has_initial_subflow(const struct mptcp_sock *msk)
1317 : : {
1318 : 1026 : struct sock *ssk = READ_ONCE(msk->first);
1319 : :
1320 [ + - - + : 2052 : return ssk && ((1 << inet_sk_state_load(ssk)) &
+ + ]
[ + - + + ]
1321 : : (TCPF_ESTABLISHED | TCPF_SYN_SENT |
1322 : : TCPF_SYN_RECV | TCPF_LISTEN));
1323 : : }
1324 : :
1325 : : bool __mptcp_try_fallback(struct mptcp_sock *msk, int fb_mib);
1326 : :
1327 : 160 : static inline bool mptcp_try_fallback(struct sock *ssk, int fb_mib)
1328 : : {
1329 : 160 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
1330 : 160 : struct sock *sk = subflow->conn;
1331 : 160 : struct mptcp_sock *msk;
1332 : :
1333 [ - + ]: 160 : msk = mptcp_sk(sk);
1334 [ + + ]: 160 : if (!__mptcp_try_fallback(msk, fb_mib))
1335 : : return false;
1336 [ - + - + : 148 : if (READ_ONCE(msk->snd_data_fin_enable) && !(ssk->sk_shutdown & SEND_SHUTDOWN)) {
- - ]
[ - + - - ]
1337 : 0 : gfp_t saved_allocation = ssk->sk_allocation;
1338 : :
1339 : : /* we are in a atomic (BH) scope, override ssk default for data
1340 : : * fin allocation
1341 : : */
1342 : 0 : ssk->sk_allocation = GFP_ATOMIC;
1343 : 0 : ssk->sk_shutdown |= SEND_SHUTDOWN;
1344 : 0 : tcp_shutdown(ssk, SEND_SHUTDOWN);
1345 : 0 : ssk->sk_allocation = saved_allocation;
1346 : : }
1347 : : return true;
1348 : : }
1349 : :
1350 : 30 : static inline void mptcp_early_fallback(struct mptcp_sock *msk,
1351 : : struct mptcp_subflow_context *subflow,
1352 : : int fb_mib)
1353 : : {
1354 : 30 : subflow->request_mptcp = 0;
1355 [ - + ]: 30 : WARN_ON_ONCE(!__mptcp_try_fallback(msk, fb_mib));
1356 : 30 : }
1357 : :
1358 : 83328 : static inline bool mptcp_check_infinite_map(struct sk_buff *skb)
1359 : : {
1360 : 83328 : struct mptcp_ext *mpext;
1361 : :
1362 [ + + ]: 83328 : mpext = skb ? mptcp_get_ext(skb) : NULL;
1363 [ + + + + ]: 16301 : if (mpext && mpext->infinite_map)
1364 : 1 : return true;
1365 : :
1366 : : return false;
1367 : : }
1368 : :
1369 : 0 : static inline bool is_active_ssk(struct mptcp_subflow_context *subflow)
1370 : : {
1371 [ + - - - ]: 6 : return (subflow->request_mptcp || subflow->request_join);
1372 : : }
1373 : :
1374 : 1632 : static inline bool subflow_simultaneous_connect(struct sock *sk)
1375 : : {
1376 : 1632 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
1377 : :
1378 : : /* Note that the sk state implies !subflow->conn_finished. */
1379 [ + + ]: 1632 : return sk->sk_state == TCP_SYN_RECV && is_active_ssk(subflow);
1380 : : }
1381 : :
1382 : : #ifdef CONFIG_SYN_COOKIES
1383 : : void subflow_init_req_cookie_join_save(const struct mptcp_subflow_request_sock *subflow_req,
1384 : : struct sk_buff *skb);
1385 : : bool mptcp_token_join_cookie_init_state(struct mptcp_subflow_request_sock *subflow_req,
1386 : : struct sk_buff *skb);
1387 : : void __init mptcp_join_cookie_init(void);
1388 : : #else
1389 : : static inline void
1390 : : subflow_init_req_cookie_join_save(const struct mptcp_subflow_request_sock *subflow_req,
1391 : : struct sk_buff *skb) {}
1392 : : static inline bool
1393 : : mptcp_token_join_cookie_init_state(struct mptcp_subflow_request_sock *subflow_req,
1394 : : struct sk_buff *skb)
1395 : : {
1396 : : return false;
1397 : : }
1398 : :
1399 : : static inline void mptcp_join_cookie_init(void) {}
1400 : : #endif
1401 : :
1402 : : #endif /* __MPTCP_PROTOCOL_H */
|