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 : 80929 : static inline bool before64(__u64 seq1, __u64 seq2)
139 : : {
140 [ + + ][ + + : 7735716 : 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 [ + - + + : 1022863 : 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 : : u32 notsent_lowat;
333 : : int keepalive_cnt;
334 : : int keepalive_idle;
335 : : int keepalive_intvl;
336 : : int maxseg;
337 : : struct work_struct work;
338 : : struct sk_buff *ooo_last_skb;
339 : : struct rb_root out_of_order_queue;
340 : : struct list_head conn_list;
341 : : struct list_head rtx_queue;
342 : : struct mptcp_data_frag *first_pending;
343 : : struct list_head join_list;
344 : : struct sock *first; /* The mptcp ops can safely dereference, using suitable
345 : : * ONCE annotation, the subflow outside the socket
346 : : * lock as such sock is freed after close().
347 : : */
348 : : struct mptcp_pm_data pm;
349 : : struct mptcp_sched_ops *sched;
350 : :
351 : : /* Most recent rtt_us observed by in use incoming subflows. */
352 : : struct {
353 : : u32 samples[MPTCP_RTT_SAMPLES];
354 : : u32 next_sample;
355 : : } rcv_rtt_est;
356 : :
357 : : struct {
358 : : int space; /* bytes copied in last measurement window */
359 : : int copied; /* bytes copied in this measurement window */
360 : : u64 time; /* start time of measurement window */
361 : : } rcvq_space;
362 : : u8 scaling_ratio;
363 : : bool allow_subflows;
364 : :
365 : : u32 subflow_id;
366 : : u32 setsockopt_seq;
367 : : char ca_name[TCP_CA_NAME_MAX];
368 : :
369 : : spinlock_t fallback_lock; /* protects fallback,
370 : : * allow_infinite_fallback and
371 : : * allow_join
372 : : */
373 : :
374 : : struct list_head backlog_list; /* protected by the data lock */
375 : : u32 backlog_len;
376 : : u32 backlog_unaccounted;
377 : : };
378 : :
379 : : #define mptcp_data_lock(sk) spin_lock_bh(&(sk)->sk_lock.slock)
380 : : #define mptcp_data_unlock(sk) spin_unlock_bh(&(sk)->sk_lock.slock)
381 : :
382 : : #define mptcp_for_each_subflow(__msk, __subflow) \
383 : : list_for_each_entry(__subflow, &((__msk)->conn_list), node)
384 : : #define mptcp_for_each_subflow_safe(__msk, __subflow, __tmp) \
385 : : list_for_each_entry_safe(__subflow, __tmp, &((__msk)->conn_list), node)
386 : : #define mptcp_next_subflow(__msk, __subflow) \
387 : : list_next_entry_circular(__subflow, &((__msk)->conn_list), node)
388 : :
389 : : extern struct genl_family mptcp_genl_family;
390 : :
391 : 371098 : static inline void msk_owned_by_me(const struct mptcp_sock *msk)
392 : : {
393 : 853149 : sock_owned_by_me((const struct sock *)msk);
394 : : }
395 : :
396 : : #ifdef CONFIG_DEBUG_NET
397 : : /* MPTCP-specific: we might (indirectly) call this helper with the wrong sk */
398 : : #undef tcp_sk
399 : : #define tcp_sk(ptr) ({ \
400 : : typeof(ptr) _ptr = (ptr); \
401 : : WARN_ON(_ptr->sk_protocol != IPPROTO_TCP); \
402 : : container_of_const(_ptr, struct tcp_sock, inet_conn.icsk_inet.sk); \
403 : : })
404 : : #define mptcp_sk(ptr) ({ \
405 : : typeof(ptr) _ptr = (ptr); \
406 : : WARN_ON(_ptr->sk_protocol != IPPROTO_MPTCP); \
407 : : container_of_const(_ptr, struct mptcp_sock, sk.icsk_inet.sk); \
408 : : })
409 : :
410 : : #else /* !CONFIG_DEBUG_NET */
411 : : #define mptcp_sk(ptr) container_of_const(ptr, struct mptcp_sock, sk.icsk_inet.sk)
412 : : #endif
413 : :
414 : 4234595 : static inline int mptcp_win_from_space(const struct sock *sk, int space)
415 : : {
416 [ - + ]: 4234595 : return __tcp_win_from_space(mptcp_sk(sk)->scaling_ratio, space);
417 : : }
418 : :
419 : 2826 : static inline int mptcp_space_from_win(const struct sock *sk, int win)
420 : : {
421 [ - + ]: 2826 : return __tcp_space_from_win(mptcp_sk(sk)->scaling_ratio, win);
422 : : }
423 : :
424 : 2548786 : static inline int __mptcp_space(const struct sock *sk)
425 : : {
426 : 8800298 : return mptcp_win_from_space(sk, READ_ONCE(sk->sk_rcvbuf) -
427 [ - + ]: 2548786 : READ_ONCE(mptcp_sk(sk)->backlog_len) -
428 : 2548786 : sk_rmem_alloc_get(sk));
429 : : }
430 : :
431 : 3552364 : static inline struct mptcp_data_frag *mptcp_send_head(const struct sock *sk)
432 : : {
433 [ - + ]: 3552364 : const struct mptcp_sock *msk = mptcp_sk(sk);
434 : :
435 : 3552364 : return msk->first_pending;
436 : : }
437 : :
438 : 0 : static inline void mptcp_init_rtt_est(struct mptcp_sock *msk)
439 : : {
440 : 4514 : int i;
441 : :
442 [ + + + + ]: 28272 : for (i = 0; i < MPTCP_RTT_SAMPLES; ++i)
443 : 22570 : msk->rcv_rtt_est.samples[i] = U32_MAX;
444 : 4514 : msk->rcv_rtt_est.next_sample = 0;
445 : 4514 : msk->scaling_ratio = TCP_DEFAULT_SCALING_RATIO;
446 : : }
447 : :
448 : 0 : static inline u32 mptcp_rtt_us_est(const struct mptcp_sock *msk)
449 : : {
450 : 0 : u32 rtt_us = msk->rcv_rtt_est.samples[0];
451 : 0 : int i;
452 : :
453 : : /* Lockless access of collected samples. */
454 [ + + - - : 3722565 : for (i = 1; i < MPTCP_RTT_SAMPLES; ++i)
- - ]
455 : 0 : rtt_us = min(rtt_us, READ_ONCE(msk->rcv_rtt_est.samples[i]));
456 [ + + ]: 744513 : return rtt_us;
457 : : }
458 : :
459 : 461253 : static inline struct mptcp_data_frag *mptcp_send_next(struct sock *sk)
460 : : {
461 [ - + ]: 461253 : struct mptcp_sock *msk = mptcp_sk(sk);
462 : 461253 : struct mptcp_data_frag *cur;
463 : :
464 : 461253 : cur = msk->first_pending;
465 [ + + ]: 461253 : return list_is_last(&cur->list, &msk->rtx_queue) ? NULL :
466 : 110898 : list_next_entry(cur, list);
467 : : }
468 : :
469 : 683474 : static inline struct mptcp_data_frag *mptcp_pending_tail(const struct sock *sk)
470 : : {
471 [ - + ]: 683474 : const struct mptcp_sock *msk = mptcp_sk(sk);
472 : :
473 [ + + ]: 683474 : if (!msk->first_pending)
474 : : return NULL;
475 : :
476 [ - + + - ]: 333120 : if (WARN_ON_ONCE(list_empty(&msk->rtx_queue)))
477 : : return NULL;
478 : :
479 : 333120 : return list_last_entry(&msk->rtx_queue, struct mptcp_data_frag, list);
480 : : }
481 : :
482 : 312479 : static inline struct mptcp_data_frag *mptcp_rtx_head(struct sock *sk)
483 : : {
484 [ - + ]: 312479 : struct mptcp_sock *msk = mptcp_sk(sk);
485 : :
486 [ + + ]: 312479 : if (msk->snd_una == msk->snd_nxt)
487 : : return NULL;
488 : :
489 [ + + ]: 242349 : return list_first_entry_or_null(&msk->rtx_queue, struct mptcp_data_frag, list);
490 : : }
491 : :
492 : : struct csum_pseudo_header {
493 : : __be64 data_seq;
494 : : __be32 subflow_seq;
495 : : __be16 data_len;
496 : : __sum16 csum;
497 : : };
498 : :
499 : : struct mptcp_subflow_request_sock {
500 : : struct tcp_request_sock sk;
501 : : u16 mp_capable : 1,
502 : : mp_join : 1,
503 : : backup : 1,
504 : : request_bkup : 1,
505 : : csum_reqd : 1,
506 : : allow_join_id0 : 1;
507 : : u8 local_id;
508 : : u8 remote_id;
509 : : u64 local_key;
510 : : u64 idsn;
511 : : u32 token;
512 : : u32 ssn_offset;
513 : : u64 thmac;
514 : : u32 local_nonce;
515 : : u32 remote_nonce;
516 : : struct mptcp_sock *msk;
517 : : struct hlist_nulls_node token_node;
518 : : };
519 : :
520 : : static inline struct mptcp_subflow_request_sock *
521 : : mptcp_subflow_rsk(const struct request_sock *rsk)
522 : : {
523 : : return (struct mptcp_subflow_request_sock *)rsk;
524 : : }
525 : :
526 : : struct mptcp_delegated_action {
527 : : struct napi_struct napi;
528 : : local_lock_t bh_lock;
529 : : struct list_head head;
530 : : };
531 : :
532 : : DECLARE_PER_CPU(struct mptcp_delegated_action, mptcp_delegated_actions);
533 : :
534 : : #define MPTCP_DELEGATE_SCHEDULED 0
535 : : #define MPTCP_DELEGATE_SEND 1
536 : : #define MPTCP_DELEGATE_ACK 2
537 : : #define MPTCP_DELEGATE_SNDBUF 3
538 : :
539 : : #define MPTCP_DELEGATE_ACTIONS_MASK (~BIT(MPTCP_DELEGATE_SCHEDULED))
540 : : /* MPTCP subflow context */
541 : : struct mptcp_subflow_context {
542 : : struct list_head node;/* conn_list of subflows */
543 : :
544 : : struct_group(reset,
545 : :
546 : : unsigned long avg_pacing_rate; /* protected by msk socket lock */
547 : : u64 local_key;
548 : : u64 remote_key;
549 : : u64 idsn;
550 : : u64 map_seq;
551 : : u64 rcv_wnd_sent;
552 : : u32 snd_isn;
553 : : u32 token;
554 : : u32 rel_write_seq;
555 : : u32 map_subflow_seq;
556 : : u32 ssn_offset;
557 : : u32 map_data_len;
558 : : __wsum map_data_csum;
559 : : u32 map_csum_len;
560 : : u32 prev_rtt_us;
561 : : u32 prev_rtt_seq;
562 : : u32 request_mptcp : 1, /* send MP_CAPABLE */
563 : : request_join : 1, /* send MP_JOIN */
564 : : request_bkup : 1,
565 : : mp_capable : 1, /* remote is MPTCP capable */
566 : : mp_join : 1, /* remote is JOINing */
567 : : pm_notified : 1, /* PM hook called for established status */
568 : : conn_finished : 1,
569 : : map_valid : 1,
570 : : map_csum_reqd : 1,
571 : : map_data_fin : 1,
572 : : mpc_map : 1,
573 : : backup : 1,
574 : : send_mp_prio : 1,
575 : : send_mp_fail : 1,
576 : : send_fastclose : 1,
577 : : send_infinite_map : 1,
578 : : remote_key_valid : 1, /* received the peer key from */
579 : : disposable : 1, /* ctx can be free at ulp release time */
580 : : closing : 1, /* must not pass rx data to msk anymore */
581 : : stale : 1, /* unable to snd/rcv data, do not use for xmit */
582 : : valid_csum_seen : 1, /* at least one csum validated */
583 : : is_mptfo : 1, /* subflow is doing TFO */
584 : : close_event_done : 1, /* has done the post-closed part */
585 : : mpc_drop : 1, /* the MPC option has been dropped in a rtx */
586 : : __unused : 8;
587 : : bool data_avail;
588 : : bool scheduled;
589 : : bool pm_listener; /* a listener managed by the kernel PM? */
590 : : bool fully_established; /* path validated */
591 : : u32 lent_mem_frag;
592 : : u32 remote_nonce;
593 : : u64 thmac;
594 : : u32 local_nonce;
595 : : u32 remote_token;
596 : : union {
597 : : u8 hmac[MPTCPOPT_HMAC_LEN]; /* MPJ subflow only */
598 : : u64 iasn; /* initial ack sequence number, MPC subflows only */
599 : : };
600 : : s16 local_id; /* if negative not initialized yet */
601 : : u8 remote_id;
602 : : u8 reset_seen:1;
603 : : u8 reset_transient:1;
604 : : u8 reset_reason:4;
605 : : u8 stale_count;
606 : :
607 : : u32 subflow_id;
608 : :
609 : : long delegated_status;
610 : : unsigned long fail_tout;
611 : :
612 : : );
613 : :
614 : : struct list_head delegated_node; /* link into delegated_action, protected by local BH */
615 : :
616 : : u32 setsockopt_seq;
617 : : u32 stale_rcv_tstamp;
618 : : int cached_sndbuf; /* sndbuf size when last synced with the msk sndbuf,
619 : : * protected by the msk socket lock
620 : : */
621 : :
622 : : struct sock *tcp_sock; /* tcp sk backpointer */
623 : : struct sock *conn; /* parent mptcp_sock */
624 : : const struct inet_connection_sock_af_ops *icsk_af_ops;
625 : : void (*tcp_state_change)(struct sock *sk);
626 : : void (*tcp_error_report)(struct sock *sk);
627 : :
628 : : struct rcu_head rcu;
629 : : };
630 : :
631 : : static inline struct mptcp_subflow_context *
632 : 134008 : mptcp_subflow_ctx(const struct sock *sk)
633 : : {
634 [ - + ]: 701967 : const struct inet_connection_sock *icsk = inet_csk(sk);
[ - + + - ]
635 : :
636 : : /* Use RCU on icsk_ulp_data only for sock diag code */
637 [ + + ][ + + : 36860593 : return (__force struct mptcp_subflow_context *)icsk->icsk_ulp_data;
+ - + - -
+ - + + +
+ + + + +
+ - + + +
+ + - + -
- - + + +
+ - + + -
+ - + - +
+ + + - +
+ - + ][ -
+ + - - +
- + + + +
+ + - + +
- + + + +
+ - + -
+ ][ - + +
+ - + -
+ ][ + + -
+ - + - +
- + - + +
+ - + + -
+ + - + -
+ - + - +
+ + ][ + +
+ - - + -
+ - + - +
- + + + -
+ + - + +
- + - + -
+ - + +
+ ]
638 : : }
639 : :
640 : : static inline struct sock *
641 : 8 : mptcp_subflow_tcp_sock(const struct mptcp_subflow_context *subflow)
642 : : {
643 [ - + + + : 4777171 : return subflow->tcp_sock;
+ + ][ + + ]
[ + - + +
+ + - + -
- + + + +
- - - - ]
[ + - + +
+ + - + -
- - - + +
+ + - - -
- ]
644 : : }
645 : :
646 : : static inline void
647 : 66 : mptcp_subflow_ctx_reset(struct mptcp_subflow_context *subflow)
648 : : {
649 : 1417 : memset(&subflow->reset, 0, sizeof(subflow->reset));
650 : 1417 : subflow->request_mptcp = 1;
651 : 1417 : WRITE_ONCE(subflow->local_id, -1);
652 : 1417 : }
653 : :
654 : : /* Convert reset reasons in MPTCP to enum sk_rst_reason type */
655 : : static inline enum sk_rst_reason
656 : : sk_rst_convert_mptcp_reason(u32 reason)
657 : : {
658 : : switch (reason) {
659 : : case MPTCP_RST_EUNSPEC:
660 : : return SK_RST_REASON_MPTCP_RST_EUNSPEC;
661 : : case MPTCP_RST_EMPTCP:
662 : : return SK_RST_REASON_MPTCP_RST_EMPTCP;
663 : : case MPTCP_RST_ERESOURCE:
664 : : return SK_RST_REASON_MPTCP_RST_ERESOURCE;
665 : : case MPTCP_RST_EPROHIBIT:
666 : : return SK_RST_REASON_MPTCP_RST_EPROHIBIT;
667 : : case MPTCP_RST_EWQ2BIG:
668 : : return SK_RST_REASON_MPTCP_RST_EWQ2BIG;
669 : : case MPTCP_RST_EBADPERF:
670 : : return SK_RST_REASON_MPTCP_RST_EBADPERF;
671 : : case MPTCP_RST_EMIDDLEBOX:
672 : : return SK_RST_REASON_MPTCP_RST_EMIDDLEBOX;
673 : : default:
674 : : /* It should not happen, or else errors may occur
675 : : * in MPTCP layer
676 : : */
677 : : return SK_RST_REASON_ERROR;
678 : : }
679 : : }
680 : :
681 : : static inline void
682 : 49 : mptcp_send_active_reset_reason(struct sock *sk)
683 : : {
684 : 49 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
685 : 49 : enum sk_rst_reason reason;
686 : :
687 [ + - ]: 49 : reason = sk_rst_convert_mptcp_reason(subflow->reset_reason);
688 : 49 : tcp_send_active_reset(sk, GFP_ATOMIC, reason);
689 : 49 : }
690 : :
691 : : /* Made the fwd mem carried by the given skb available to the msk,
692 : : * To be paired with a previous mptcp_subflow_lend_fwdmem() before freeing
693 : : * the skb or setting the skb ownership.
694 : : */
695 : 660046 : static inline void mptcp_borrow_fwdmem(struct sock *sk, struct sk_buff *skb)
696 : : {
697 : 660046 : struct sock *ssk = skb->sk;
698 : :
699 : : /* The subflow just lend the skb fwd memory; if the subflow meanwhile
700 : : * closed, mptcp_close_ssk() already released the ssk rcv memory.
701 : : */
702 [ - + ]: 660046 : DEBUG_NET_WARN_ON_ONCE(skb->destructor);
703 [ + - ]: 660046 : sk_forward_alloc_add(sk, skb->truesize);
704 [ + - ]: 660046 : if (!ssk)
705 : : return;
706 : :
707 : 660046 : atomic_sub(skb->truesize, &ssk->sk_rmem_alloc);
708 : 660046 : skb->sk = NULL;
709 : : }
710 : :
711 : : static inline void
712 : 75442 : __mptcp_subflow_lend_fwdmem(struct mptcp_subflow_context *subflow, int size)
713 : : {
714 : 690841 : int frag = (subflow->lent_mem_frag + size) & (PAGE_SIZE - 1);
715 : :
716 : 30841 : subflow->lent_mem_frag = frag;
717 : : }
718 : :
719 : : static inline void
720 : 75374 : mptcp_subflow_lend_fwdmem(struct mptcp_subflow_context *subflow,
721 : : struct sk_buff *skb)
722 : : {
723 : 660046 : __mptcp_subflow_lend_fwdmem(subflow, skb->truesize);
724 : 660046 : skb->destructor = NULL;
725 : : }
726 : :
727 : : static inline u64
728 : 3273229 : mptcp_subflow_get_map_offset(const struct mptcp_subflow_context *subflow)
729 : : {
730 [ - + ]: 3273229 : return tcp_sk(mptcp_subflow_tcp_sock(subflow))->copied_seq -
731 : 3273229 : subflow->ssn_offset -
732 : 3273229 : subflow->map_subflow_seq;
733 : : }
734 : :
735 : : static inline u64
736 : 156371 : mptcp_subflow_get_mapped_dsn(const struct mptcp_subflow_context *subflow)
737 : : {
738 [ - + ]: 1354092 : return subflow->map_seq + mptcp_subflow_get_map_offset(subflow);
739 : : }
740 : :
741 : : void mptcp_subflow_process_delegated(struct sock *ssk, long actions);
742 : :
743 : 99057 : static inline void mptcp_subflow_delegate(struct mptcp_subflow_context *subflow, int action)
744 : : {
745 [ - + ]: 99057 : long old, set_bits = BIT(MPTCP_DELEGATE_SCHEDULED) | BIT(action);
746 : 99057 : struct mptcp_delegated_action *delegated;
747 : 99057 : bool schedule;
748 : :
749 : : /* the caller held the subflow bh socket lock */
750 [ + - + - : 99057 : lockdep_assert_in_softirq();
+ - + - -
+ ]
751 : :
752 : : /* The implied barrier pairs with tcp_release_cb_override()
753 : : * mptcp_napi_poll(), and ensures the below list check sees list
754 : : * updates done prior to delegated status bits changes
755 : : */
756 [ + + + + ]: 99058 : old = set_mask_bits(&subflow->delegated_status, 0, set_bits);
757 [ + + ]: 99057 : if (!(old & BIT(MPTCP_DELEGATE_SCHEDULED))) {
758 [ - + + - ]: 54130 : if (WARN_ON_ONCE(!list_empty(&subflow->delegated_node)))
759 : : return;
760 : :
761 [ + - + - : 54130 : local_lock_nested_bh(&mptcp_delegated_actions.bh_lock);
+ - + - -
+ ]
762 : 54130 : delegated = this_cpu_ptr(&mptcp_delegated_actions);
763 : 54130 : schedule = list_empty(&delegated->head);
764 : 54130 : list_add_tail(&subflow->delegated_node, &delegated->head);
765 : 54130 : local_unlock_nested_bh(&mptcp_delegated_actions.bh_lock);
766 : 54130 : sock_hold(mptcp_subflow_tcp_sock(subflow));
767 [ + + ]: 54130 : if (schedule)
768 : 51152 : napi_schedule(&delegated->napi);
769 : : }
770 : : }
771 : :
772 : : static inline struct mptcp_subflow_context *
773 : 104895 : mptcp_subflow_delegated_next(struct mptcp_delegated_action *delegated)
774 : : {
775 : 104895 : struct mptcp_subflow_context *ret;
776 : :
777 [ + - + - : 104895 : local_lock_nested_bh(&mptcp_delegated_actions.bh_lock);
+ - + - -
+ ]
778 [ + + ]: 104895 : if (list_empty(&delegated->head)) {
779 : 23783 : local_unlock_nested_bh(&mptcp_delegated_actions.bh_lock);
780 : 23218 : return NULL;
781 : : }
782 : :
783 : 54130 : ret = list_first_entry(&delegated->head, struct mptcp_subflow_context, delegated_node);
784 : 54130 : list_del_init(&ret->delegated_node);
785 : 54130 : local_unlock_nested_bh(&mptcp_delegated_actions.bh_lock);
786 : 54130 : return ret;
787 : : }
788 : :
789 : : void __mptcp_inherit_memcg(struct sock *sk, struct sock *ssk, gfp_t gfp);
790 : : void __mptcp_inherit_cgrp_data(struct sock *sk, struct sock *ssk);
791 : :
792 : : int mptcp_is_enabled(const struct net *net);
793 : : unsigned int mptcp_get_add_addr_timeout(const struct net *net);
794 : : int mptcp_is_checksum_enabled(const struct net *net);
795 : : int mptcp_allow_join_id0(const struct net *net);
796 : : unsigned int mptcp_stale_loss_cnt(const struct net *net);
797 : : unsigned int mptcp_close_timeout(const struct sock *sk);
798 : : int mptcp_get_pm_type(const struct net *net);
799 : : const char *mptcp_get_path_manager(const struct net *net);
800 : : const char *mptcp_get_scheduler(const struct net *net);
801 : :
802 : : void mptcp_active_disable(struct sock *sk);
803 : : bool mptcp_active_should_disable(struct sock *ssk);
804 : : void mptcp_active_enable(struct sock *sk);
805 : :
806 : : void mptcp_get_available_schedulers(char *buf, size_t maxlen);
807 : : void __mptcp_subflow_fully_established(struct mptcp_sock *msk,
808 : : struct mptcp_subflow_context *subflow,
809 : : const struct mptcp_options_received *mp_opt);
810 : : bool __mptcp_retransmit_pending_data(struct sock *sk);
811 : : void mptcp_check_and_set_pending(struct sock *sk);
812 : : void __mptcp_push_pending(struct sock *sk, unsigned int flags);
813 : : bool mptcp_subflow_data_available(struct sock *sk);
814 : : void __init mptcp_subflow_init(void);
815 : : void mptcp_subflow_shutdown(struct sock *sk, struct sock *ssk, int how);
816 : : void mptcp_close_ssk(struct sock *sk, struct sock *ssk,
817 : : struct mptcp_subflow_context *subflow);
818 : : void __mptcp_subflow_send_ack(struct sock *ssk);
819 : : void mptcp_subflow_reset(struct sock *ssk);
820 : : void mptcp_subflow_queue_clean(struct sock *sk, struct sock *ssk);
821 : : void mptcp_sock_graft(struct sock *sk, struct socket *parent);
822 : : u64 mptcp_wnd_end(const struct mptcp_sock *msk);
823 : : void mptcp_set_timeout(struct sock *sk);
824 : : struct sock *__mptcp_nmpc_sk(struct mptcp_sock *msk);
825 : : bool __mptcp_close(struct sock *sk, long timeout);
826 : : void mptcp_cancel_work(struct sock *sk);
827 : : void __mptcp_unaccepted_force_close(struct sock *sk);
828 : : void mptcp_set_state(struct sock *sk, int state);
829 : :
830 : : bool mptcp_addresses_equal(const struct mptcp_addr_info *a,
831 : : const struct mptcp_addr_info *b, bool use_port);
832 : : void mptcp_local_address(const struct sock_common *skc,
833 : : struct mptcp_addr_info *addr);
834 : : void mptcp_remote_address(const struct sock_common *skc,
835 : : struct mptcp_addr_info *addr);
836 : :
837 : : /* called with sk socket lock held */
838 : : int __mptcp_subflow_connect(struct sock *sk, const struct mptcp_pm_local *local,
839 : : const struct mptcp_addr_info *remote);
840 : : int mptcp_subflow_create_socket(struct sock *sk, unsigned short family,
841 : : struct socket **new_sock);
842 : : void mptcp_info2sockaddr(const struct mptcp_addr_info *info,
843 : : struct sockaddr_storage *addr,
844 : : unsigned short family);
845 : : struct mptcp_sched_ops *mptcp_sched_find(const char *name);
846 : : int mptcp_validate_scheduler(struct mptcp_sched_ops *sched);
847 : : int mptcp_register_scheduler(struct mptcp_sched_ops *sched);
848 : : void mptcp_unregister_scheduler(struct mptcp_sched_ops *sched);
849 : : void mptcp_sched_init(void);
850 : : int mptcp_init_sched(struct mptcp_sock *msk,
851 : : struct mptcp_sched_ops *sched);
852 : : void mptcp_release_sched(struct mptcp_sock *msk);
853 : : void mptcp_subflow_set_scheduled(struct mptcp_subflow_context *subflow,
854 : : bool scheduled);
855 : : struct sock *mptcp_subflow_get_send(struct mptcp_sock *msk);
856 : : struct sock *mptcp_subflow_get_retrans(struct mptcp_sock *msk);
857 : : int mptcp_sched_get_send(struct mptcp_sock *msk);
858 : : int mptcp_sched_get_retrans(struct mptcp_sock *msk);
859 : :
860 : 108882 : static inline u64 mptcp_data_avail(const struct mptcp_sock *msk)
861 : : {
862 [ + + ]: 656308 : return READ_ONCE(msk->bytes_received) - READ_ONCE(msk->bytes_consumed);
863 : : }
864 : :
865 : 1135977 : static inline bool mptcp_epollin_ready(const struct sock *sk)
866 : : {
867 [ - + ]: 1135977 : u64 data_avail = mptcp_data_avail(mptcp_sk(sk));
868 : :
869 [ + + ]: 1135977 : if (!data_avail)
870 : : return false;
871 : :
872 : : /* mptcp doesn't have to deal with small skbs in the receive queue,
873 : : * as it can always coalesce them
874 : : */
875 [ - + - - ]: 1545028 : return (data_avail >= sk->sk_rcvlowat) ||
876 : 0 : tcp_under_memory_pressure(sk);
877 : : }
878 : :
879 : : int mptcp_set_rcvlowat(struct sock *sk, int val);
880 : :
881 : 1245729 : static inline bool __tcp_can_send(const struct sock *ssk)
882 : : {
883 : : /* only send if our side has not closed yet */
884 [ + + ]: 1628489 : return ((1 << inet_sk_state_load(ssk)) & (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT));
885 : : }
886 : :
887 : 1282844 : static inline bool __mptcp_subflow_active(struct mptcp_subflow_context *subflow)
888 : : {
889 : : /* can't send if JOIN hasn't completed yet (i.e. is usable for mptcp) */
890 [ + + - + : 1282844 : if (subflow->request_join && !READ_ONCE(subflow->fully_established))
+ + ]
[ + + + + ]
891 : : return false;
892 : :
893 : 1282382 : return __tcp_can_send(mptcp_subflow_tcp_sock(subflow));
894 : : }
895 : :
896 : : void mptcp_subflow_set_active(struct mptcp_subflow_context *subflow);
897 : :
898 : : bool mptcp_subflow_active(struct mptcp_subflow_context *subflow);
899 : :
900 : : void mptcp_subflow_drop_ctx(struct sock *ssk);
901 : :
902 : 30 : static inline void mptcp_subflow_tcp_fallback(struct sock *sk,
903 : : struct mptcp_subflow_context *ctx)
904 : : {
905 : 198 : sk->sk_data_ready = sock_def_readable;
906 : 198 : sk->sk_state_change = ctx->tcp_state_change;
907 : 198 : sk->sk_write_space = sk_stream_write_space;
908 : 198 : sk->sk_error_report = ctx->tcp_error_report;
909 : :
910 [ - + ]: 198 : inet_csk(sk)->icsk_af_ops = ctx->icsk_af_ops;
911 : : }
912 : :
913 : : void __init mptcp_proto_init(void);
914 : : #if IS_ENABLED(CONFIG_MPTCP_IPV6)
915 : : int __init mptcp_proto_v6_init(void);
916 : : #endif
917 : :
918 : : struct sock *mptcp_sk_clone_init(const struct sock *sk,
919 : : const struct mptcp_options_received *mp_opt,
920 : : struct sock *ssk,
921 : : struct request_sock *req);
922 : : void mptcp_get_options(const struct sk_buff *skb,
923 : : struct mptcp_options_received *mp_opt);
924 : :
925 : : void mptcp_finish_connect(struct sock *sk);
926 : : void __mptcp_sync_state(struct sock *sk, int state);
927 : : void mptcp_reset_tout_timer(struct mptcp_sock *msk, unsigned long fail_tout);
928 : :
929 : 1152 : static inline void mptcp_stop_tout_timer(struct sock *sk)
930 : : {
931 [ + + ]: 1152 : if (!inet_csk(sk)->icsk_mtup.probe_timestamp)
932 : : return;
933 : :
934 : 4 : sk_stop_timer(sk, &inet_csk(sk)->mptcp_tout_timer);
935 : 4 : inet_csk(sk)->icsk_mtup.probe_timestamp = 0;
936 : : }
937 : :
938 : 126 : static inline void mptcp_set_close_tout(struct sock *sk, unsigned long tout)
939 : : {
940 : : /* avoid 0 timestamp, as that means no close timeout */
941 : 36 : inet_csk(sk)->icsk_mtup.probe_timestamp = tout ? : 1;
942 : : }
943 : :
944 : 1325 : static inline void mptcp_start_tout_timer(struct sock *sk)
945 : : {
946 : 1325 : mptcp_set_close_tout(sk, tcp_jiffies32);
947 [ - + ]: 1325 : mptcp_reset_tout_timer(mptcp_sk(sk), 0);
948 : 1325 : }
949 : :
950 : 3620 : static inline bool mptcp_is_fully_established(struct sock *sk)
951 : : {
952 [ + + ]: 3620 : return inet_sk_state_load(sk) == TCP_ESTABLISHED &&
953 [ - + - + : 3255 : READ_ONCE(mptcp_sk(sk)->fully_established);
- + ]
[ - + - + ]
954 : : }
955 : :
956 : 253055 : static inline u64 mptcp_stamp(void)
957 : : {
958 [ + - ]: 747357 : return div_u64(tcp_clock_ns(), NSEC_PER_USEC);
959 : : }
960 : :
961 : : void mptcp_data_ready(struct sock *sk, struct sock *ssk);
962 : : bool mptcp_finish_join(struct sock *sk);
963 : : bool mptcp_schedule_work(struct sock *sk);
964 : : int mptcp_setsockopt(struct sock *sk, int level, int optname,
965 : : sockptr_t optval, unsigned int optlen);
966 : : int mptcp_getsockopt(struct sock *sk, int level, int optname,
967 : : char __user *optval, int __user *option);
968 : :
969 : : u64 __mptcp_expand_seq(u64 old_seq, u64 cur_seq);
970 : 218629 : static inline u64 mptcp_expand_seq(u64 old_seq, u64 cur_seq, bool use_64bit)
971 : : {
972 [ + + ]: 1921997 : if (use_64bit)
[ + + + + ]
973 : : return cur_seq;
974 : :
975 : 84516 : return __mptcp_expand_seq(old_seq, cur_seq);
976 : : }
977 : : void __mptcp_check_push(struct sock *sk, struct sock *ssk);
978 : : void __mptcp_data_acked(struct sock *sk);
979 : : void __mptcp_error_report(struct sock *sk);
980 : : bool mptcp_update_rcv_data_fin(struct mptcp_sock *msk, u64 data_fin_seq, bool use_64bit);
981 : 1403153 : static inline bool mptcp_data_fin_enabled(const struct mptcp_sock *msk)
982 : : {
983 [ + + + + ]: 2624724 : return READ_ONCE(msk->snd_data_fin_enable) &&
[ + + ]
984 [ + + ]: 169349 : READ_ONCE(msk->write_seq) == READ_ONCE(msk->snd_nxt);
[ + + - + ]
985 : : }
986 : :
987 : 2257409 : static inline u32 mptcp_notsent_lowat(const struct sock *sk)
988 : : {
989 [ - + ]: 2257409 : struct net *net = sock_net(sk);
990 : 2257409 : u32 val;
991 : :
992 [ - + ]: 2257409 : val = READ_ONCE(mptcp_sk(sk)->notsent_lowat);
993 [ + + ]: 2257409 : return val ?: READ_ONCE(net->ipv4.sysctl_tcp_notsent_lowat);
994 : : }
995 : :
996 : 1573929 : static inline bool mptcp_stream_memory_free(const struct sock *sk, int wake)
997 : : {
998 [ - + ]: 1573929 : const struct mptcp_sock *msk = mptcp_sk(sk);
999 : 1573929 : u32 notsent_bytes;
1000 : :
1001 : 1573929 : notsent_bytes = READ_ONCE(msk->write_seq) - READ_ONCE(msk->snd_nxt);
1002 [ - + ]: 1573929 : return (notsent_bytes << wake) < mptcp_notsent_lowat(sk);
1003 : : }
1004 : :
1005 : 500056 : static inline bool __mptcp_stream_is_writeable(const struct sock *sk, int wake)
1006 : : {
1007 [ + - + + ]: 1000112 : return mptcp_stream_memory_free(sk, wake) &&
1008 : 500056 : __sk_stream_is_writeable(sk, wake);
1009 : : }
1010 : :
1011 : 585574 : static inline void mptcp_write_space(struct sock *sk)
1012 : : {
1013 : : /* pairs with memory barrier in mptcp_poll */
1014 : 585574 : smp_mb();
1015 [ + + ]: 585574 : if (mptcp_stream_memory_free(sk, 1))
1016 : 585514 : sk_stream_write_space(sk);
1017 : 585574 : }
1018 : :
1019 : 32988 : static inline void __mptcp_sync_sndbuf(struct sock *sk)
1020 : : {
1021 : 32988 : struct mptcp_subflow_context *subflow;
1022 : 32988 : int ssk_sndbuf, new_sndbuf;
1023 : :
1024 [ + - ]: 32988 : if (sk->sk_userlocks & SOCK_SNDBUF_LOCK)
1025 : : return;
1026 : :
1027 [ - + ]: 32988 : new_sndbuf = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_wmem[0]);
1028 [ - + - + : 89467 : mptcp_for_each_subflow(mptcp_sk(sk), subflow) {
+ + ]
1029 : 56479 : ssk_sndbuf = READ_ONCE(mptcp_subflow_tcp_sock(subflow)->sk_sndbuf);
1030 : :
1031 : 56479 : subflow->cached_sndbuf = ssk_sndbuf;
1032 : 56479 : new_sndbuf += ssk_sndbuf;
1033 : : }
1034 : :
1035 : : /* the msk max wmem limit is <nr_subflows> * tcp wmem[2] */
1036 : 32988 : WRITE_ONCE(sk->sk_sndbuf, new_sndbuf);
1037 : 32988 : mptcp_write_space(sk);
1038 : : }
1039 : :
1040 : : /* The called held both the msk socket and the subflow socket locks,
1041 : : * possibly under BH
1042 : : */
1043 : 168 : static inline void __mptcp_propagate_sndbuf(struct sock *sk, struct sock *ssk)
1044 : : {
1045 : 3518 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
1046 : :
1047 [ + + ]: 3518 : if (READ_ONCE(ssk->sk_sndbuf) != subflow->cached_sndbuf)
[ + - + - ]
1048 : 3454 : __mptcp_sync_sndbuf(sk);
1049 : : }
1050 : :
1051 : : /* the caller held only the subflow socket lock, either in process or
1052 : : * BH context. Additionally this can be called under the msk data lock,
1053 : : * so we can't acquire such lock here: let the delegate action acquires
1054 : : * the needed locks in suitable order.
1055 : : */
1056 : 460487 : static inline void mptcp_propagate_sndbuf(struct sock *sk, struct sock *ssk)
1057 : : {
1058 : 460487 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
1059 : :
1060 [ + + ]: 460487 : if (likely(READ_ONCE(ssk->sk_sndbuf) == subflow->cached_sndbuf))
1061 : : return;
1062 : :
1063 : 71088 : local_bh_disable();
1064 : 71088 : mptcp_subflow_delegate(subflow, MPTCP_DELEGATE_SNDBUF);
1065 : 71088 : local_bh_enable();
1066 : : }
1067 : :
1068 : : #define MPTCP_TOKEN_MAX_RETRIES 4
1069 : :
1070 : : void __init mptcp_token_init(void);
1071 : 120 : static inline void mptcp_token_init_request(struct request_sock *req)
1072 : : {
1073 : 2228 : mptcp_subflow_rsk(req)->token_node.pprev = NULL;
1074 : : }
1075 : :
1076 : : int mptcp_token_new_request(struct request_sock *req);
1077 : : void mptcp_token_destroy_request(struct request_sock *req);
1078 : : int mptcp_token_new_connect(struct sock *ssk);
1079 : : void mptcp_token_accept(struct mptcp_subflow_request_sock *r,
1080 : : struct mptcp_sock *msk);
1081 : : bool mptcp_token_exists(u32 token);
1082 : : struct mptcp_sock *mptcp_token_get_sock(struct net *net, u32 token);
1083 : : struct mptcp_sock *mptcp_token_iter_next(const struct net *net, long *s_slot,
1084 : : long *s_num);
1085 : : void mptcp_token_destroy(struct mptcp_sock *msk);
1086 : :
1087 : : void mptcp_crypto_key_sha(u64 key, u32 *token, u64 *idsn);
1088 : :
1089 : : void mptcp_crypto_hmac_sha(u64 key1, u64 key2, u8 *msg, int len, void *hmac);
1090 : : __sum16 __mptcp_make_csum(u64 data_seq, u32 subflow_seq, u16 data_len, __wsum sum);
1091 : :
1092 : : void __init mptcp_pm_init(void);
1093 : : void mptcp_pm_data_init(struct mptcp_sock *msk);
1094 : : void mptcp_pm_data_reset(struct mptcp_sock *msk);
1095 : : void mptcp_pm_destroy(struct mptcp_sock *msk);
1096 : : int mptcp_pm_parse_addr(struct nlattr *attr, struct genl_info *info,
1097 : : struct mptcp_addr_info *addr);
1098 : : int mptcp_pm_parse_entry(struct nlattr *attr, struct genl_info *info,
1099 : : bool require_family,
1100 : : struct mptcp_pm_addr_entry *entry);
1101 : : bool mptcp_pm_addr_families_match(const struct sock *sk,
1102 : : const struct mptcp_addr_info *loc,
1103 : : const struct mptcp_addr_info *rem);
1104 : : void mptcp_pm_subflow_chk_stale(const struct mptcp_sock *msk, struct sock *ssk);
1105 : : void mptcp_pm_new_connection(struct mptcp_sock *msk, const struct sock *ssk, int server_side);
1106 : : void mptcp_pm_fully_established(struct mptcp_sock *msk, const struct sock *ssk);
1107 : : bool mptcp_pm_allow_new_subflow(struct mptcp_sock *msk);
1108 : : void mptcp_pm_connection_closed(struct mptcp_sock *msk);
1109 : : void mptcp_pm_subflow_established(struct mptcp_sock *msk);
1110 : : bool mptcp_pm_nl_check_work_pending(struct mptcp_sock *msk);
1111 : : void mptcp_pm_subflow_check_next(struct mptcp_sock *msk,
1112 : : const struct mptcp_subflow_context *subflow);
1113 : : void mptcp_pm_add_addr_received(const struct sock *ssk,
1114 : : const struct mptcp_addr_info *addr);
1115 : : void mptcp_pm_add_addr_echoed(struct mptcp_sock *msk,
1116 : : const struct mptcp_addr_info *addr);
1117 : : void mptcp_pm_add_addr_send_ack(struct mptcp_sock *msk);
1118 : : void mptcp_pm_send_ack(struct mptcp_sock *msk,
1119 : : struct mptcp_subflow_context *subflow,
1120 : : bool prio, bool backup);
1121 : : void mptcp_pm_addr_send_ack(struct mptcp_sock *msk);
1122 : : void mptcp_pm_nl_rm_addr(struct mptcp_sock *msk, u8 rm_id);
1123 : : void mptcp_pm_rm_subflow(struct mptcp_sock *msk,
1124 : : const struct mptcp_rm_list *rm_list);
1125 : : void mptcp_pm_rm_addr_received(struct mptcp_sock *msk,
1126 : : const struct mptcp_rm_list *rm_list);
1127 : : void mptcp_pm_mp_prio_received(struct sock *sk, u8 bkup);
1128 : : void mptcp_pm_mp_fail_received(struct sock *sk, u64 fail_seq);
1129 : : int mptcp_pm_mp_prio_send_ack(struct mptcp_sock *msk,
1130 : : struct mptcp_addr_info *addr,
1131 : : struct mptcp_addr_info *rem,
1132 : : u8 bkup);
1133 : : bool mptcp_pm_alloc_anno_list(struct mptcp_sock *msk,
1134 : : const struct mptcp_addr_info *addr);
1135 : : bool mptcp_pm_sport_in_anno_list(struct mptcp_sock *msk, const struct sock *sk);
1136 : : struct mptcp_pm_add_entry *
1137 : : mptcp_pm_del_add_timer(struct mptcp_sock *msk,
1138 : : const struct mptcp_addr_info *addr, bool check_id);
1139 : : bool mptcp_lookup_subflow_by_saddr(const struct list_head *list,
1140 : : const struct mptcp_addr_info *saddr);
1141 : : bool mptcp_remove_anno_list_by_saddr(struct mptcp_sock *msk,
1142 : : const struct mptcp_addr_info *addr);
1143 : : int mptcp_pm_nl_set_flags(struct mptcp_pm_addr_entry *local,
1144 : : struct genl_info *info);
1145 : : int mptcp_userspace_pm_set_flags(struct mptcp_pm_addr_entry *local,
1146 : : struct genl_info *info);
1147 : : int mptcp_pm_announce_addr(struct mptcp_sock *msk,
1148 : : const struct mptcp_addr_info *addr,
1149 : : bool echo);
1150 : : int mptcp_pm_remove_addr(struct mptcp_sock *msk, const struct mptcp_rm_list *rm_list);
1151 : : void mptcp_pm_remove_addr_entry(struct mptcp_sock *msk,
1152 : : struct mptcp_pm_addr_entry *entry);
1153 : :
1154 : : /* the default path manager, used in mptcp_pm_unregister */
1155 : : extern struct mptcp_pm_ops mptcp_pm_kernel;
1156 : :
1157 : : struct mptcp_pm_ops *mptcp_pm_find(const char *name);
1158 : : int mptcp_pm_register(struct mptcp_pm_ops *pm_ops);
1159 : : void mptcp_pm_unregister(struct mptcp_pm_ops *pm_ops);
1160 : : int mptcp_pm_validate(struct mptcp_pm_ops *pm_ops);
1161 : : void mptcp_pm_get_available(char *buf, size_t maxlen);
1162 : :
1163 : : void mptcp_userspace_pm_free_local_addr_list(struct mptcp_sock *msk);
1164 : :
1165 : : void mptcp_event(enum mptcp_event_type type, const struct mptcp_sock *msk,
1166 : : const struct sock *ssk, gfp_t gfp);
1167 : : void mptcp_event_addr_announced(const struct sock *ssk, const struct mptcp_addr_info *info);
1168 : : void mptcp_event_addr_removed(const struct mptcp_sock *msk, u8 id);
1169 : : void mptcp_event_pm_listener(const struct sock *ssk,
1170 : : enum mptcp_event_type event);
1171 : : bool mptcp_userspace_pm_active(const struct mptcp_sock *msk);
1172 : :
1173 : : void mptcp_fastopen_subflow_synack_set_params(struct mptcp_subflow_context *subflow,
1174 : : struct request_sock *req);
1175 : : int mptcp_pm_genl_fill_addr(struct sk_buff *msg,
1176 : : struct netlink_callback *cb,
1177 : : struct mptcp_pm_addr_entry *entry);
1178 : :
1179 : 446144 : static inline bool mptcp_pm_should_add_signal(struct mptcp_sock *msk)
1180 : : {
1181 [ + + ][ - + : 2589374 : return READ_ONCE(msk->pm.addr_signal) &
+ - + + -
- ]
1182 : : (BIT(MPTCP_ADD_ADDR_SIGNAL) | BIT(MPTCP_ADD_ADDR_ECHO));
1183 : : }
1184 : :
1185 : 0 : static inline bool mptcp_pm_should_add_signal_addr(struct mptcp_sock *msk)
1186 : : {
1187 [ + + + - ]: 134 : return READ_ONCE(msk->pm.addr_signal) & BIT(MPTCP_ADD_ADDR_SIGNAL);
1188 : : }
1189 : :
1190 : 6 : static inline bool mptcp_pm_should_add_signal_echo(struct mptcp_sock *msk)
1191 : : {
1192 [ + + ]: 830 : return READ_ONCE(msk->pm.addr_signal) & BIT(MPTCP_ADD_ADDR_ECHO);
1193 : : }
1194 : :
1195 : 446138 : static inline bool mptcp_pm_should_rm_signal(struct mptcp_sock *msk)
1196 : : {
1197 [ + + ]: 2586870 : return READ_ONCE(msk->pm.addr_signal) & BIT(MPTCP_RM_ADDR_SIGNAL);
[ - + + + ]
1198 : : }
1199 : :
1200 : 42 : static inline bool mptcp_pm_is_userspace(const struct mptcp_sock *msk)
1201 : : {
1202 [ + + ][ - + : 3653 : return READ_ONCE(msk->pm.pm_type) == MPTCP_PM_TYPE_USERSPACE;
+ - - + +
+ - + ][ +
+ + + +
+ ]
1203 : : }
1204 : :
1205 : 16 : static inline bool mptcp_pm_is_kernel(const struct mptcp_sock *msk)
1206 : : {
1207 [ + + ]: 1090 : return READ_ONCE(msk->pm.pm_type) == MPTCP_PM_TYPE_KERNEL;
[ + - - - ]
1208 : : }
1209 : :
1210 : 12 : static inline unsigned int mptcp_add_addr_len(int family, bool echo, bool port)
1211 : : {
1212 : 1658 : u8 len = TCPOLEN_MPTCP_ADD_ADDR_BASE;
1213 : :
1214 [ + + ]: 1658 : if (family == AF_INET6)
1215 : 374 : len = TCPOLEN_MPTCP_ADD_ADDR6_BASE;
1216 [ + + ]: 1658 : if (!echo)
1217 : 878 : len += MPTCPOPT_THMAC_LEN;
1218 : : /* account for 2 trailing 'nop' options */
1219 [ + + ]: 1658 : if (port)
1220 : 136 : len += TCPOLEN_MPTCP_PORT_LEN + TCPOLEN_MPTCP_PORT_ALIGN;
1221 : :
1222 [ + + ]: 1658 : return len;
1223 : : }
1224 : :
1225 : 0 : static inline int mptcp_rm_addr_len(const struct mptcp_rm_list *rm_list)
1226 : : {
1227 [ - + ]: 212 : if (rm_list->nr == 0 || rm_list->nr > MPTCP_RM_IDS_MAX)
1228 : : return -EINVAL;
1229 : :
1230 [ - + ]: 212 : return TCPOLEN_MPTCP_RM_ADDR_BASE + roundup(rm_list->nr - 1, 4) + 1;
1231 : : }
1232 : :
1233 : : bool mptcp_pm_add_addr_signal(struct mptcp_sock *msk, const struct sk_buff *skb,
1234 : : unsigned int opt_size, unsigned int remaining,
1235 : : struct mptcp_addr_info *addr, bool *echo,
1236 : : bool *drop_other_suboptions);
1237 : : bool mptcp_pm_rm_addr_signal(struct mptcp_sock *msk, unsigned int remaining,
1238 : : struct mptcp_rm_list *rm_list);
1239 : : int mptcp_pm_get_local_id(struct mptcp_sock *msk, struct sock_common *skc);
1240 : : bool mptcp_pm_is_backup(struct mptcp_sock *msk, struct sock_common *skc);
1241 : : int mptcp_pm_nl_dump_addr(struct sk_buff *msg,
1242 : : struct netlink_callback *cb);
1243 : : int mptcp_userspace_pm_dump_addr(struct sk_buff *msg,
1244 : : struct netlink_callback *cb);
1245 : : int mptcp_pm_nl_get_addr(u8 id, struct mptcp_pm_addr_entry *addr,
1246 : : struct genl_info *info);
1247 : : int mptcp_userspace_pm_get_addr(u8 id, struct mptcp_pm_addr_entry *addr,
1248 : : struct genl_info *info);
1249 : :
1250 : 72 : static inline u8 subflow_get_local_id(const struct mptcp_subflow_context *subflow)
1251 : : {
1252 : 1042 : int local_id = READ_ONCE(subflow->local_id);
1253 : :
1254 : 1042 : if (local_id < 0)
1255 : : return 0;
1256 : : return local_id;
1257 : : }
1258 : :
1259 : : void __init mptcp_pm_kernel_register(void);
1260 : : void __init mptcp_pm_userspace_register(void);
1261 : : void __init mptcp_pm_nl_init(void);
1262 : : void mptcp_pm_worker(struct mptcp_sock *msk);
1263 : : void __mptcp_pm_kernel_worker(struct mptcp_sock *msk);
1264 : : u8 mptcp_pm_get_endp_signal_max(const struct mptcp_sock *msk);
1265 : : u8 mptcp_pm_get_endp_subflow_max(const struct mptcp_sock *msk);
1266 : : u8 mptcp_pm_get_endp_laminar_max(const struct mptcp_sock *msk);
1267 : : u8 mptcp_pm_get_endp_fullmesh_max(const struct mptcp_sock *msk);
1268 : : u8 mptcp_pm_get_limit_add_addr_accepted(const struct mptcp_sock *msk);
1269 : : u8 mptcp_pm_get_limit_extra_subflows(const struct mptcp_sock *msk);
1270 : :
1271 : : /* called under PM lock */
1272 : 677 : static inline void __mptcp_pm_close_subflow(struct mptcp_sock *msk)
1273 : : {
1274 [ + - ]: 677 : if (--msk->pm.extra_subflows < mptcp_pm_get_limit_extra_subflows(msk))
1275 : 677 : WRITE_ONCE(msk->pm.accept_subflow, true);
1276 : 677 : }
1277 : :
1278 : 84 : static inline void mptcp_pm_close_subflow(struct mptcp_sock *msk)
1279 : : {
1280 : 84 : spin_lock_bh(&msk->pm.lock);
1281 : 84 : __mptcp_pm_close_subflow(msk);
1282 : 84 : spin_unlock_bh(&msk->pm.lock);
1283 : 84 : }
1284 : :
1285 : 1167 : static inline bool mptcp_pm_add_addr_c_flag_case(struct mptcp_sock *msk)
1286 : : {
1287 [ - + ]: 997 : return READ_ONCE(msk->pm.remote_deny_join_id0) &&
1288 [ + + + + ]: 38 : msk->pm.local_addr_used == 0 &&
[ # # ]
1289 [ + + - + ]: 1173 : mptcp_pm_get_limit_add_addr_accepted(msk) == 0 &&
1290 [ # # ]: 4 : msk->pm.extra_subflows < mptcp_pm_get_limit_extra_subflows(msk);
1291 : : }
1292 : :
1293 : : void mptcp_sockopt_sync_locked(struct mptcp_sock *msk, struct sock *ssk);
1294 : :
1295 : 0 : static inline struct mptcp_ext *mptcp_get_ext(const struct sk_buff *skb)
1296 : : {
1297 [ + + + - ]: 3175162 : return (struct mptcp_ext *)skb_ext_find(skb, SKB_EXT_MPTCP);
[ + - + -
+ - ][ + -
+ + + + +
+ ][ + + +
- + + - -
- - ][ - -
- - + + +
+ + + + -
- - ]
1298 : : }
1299 : :
1300 : : void mptcp_diag_subflow_init(struct tcp_ulp_ops *ops);
1301 : :
1302 : 8149649 : static inline bool __mptcp_check_fallback(const struct mptcp_sock *msk)
1303 : : {
1304 [ - + - - : 8149649 : return test_bit(MPTCP_FALLBACK_DONE, &msk->flags);
- - ]
1305 : : }
1306 : :
1307 : 793377 : static inline bool mptcp_check_fallback(const struct sock *sk)
1308 : : {
1309 : 793377 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
1310 [ - + ]: 793377 : struct mptcp_sock *msk = mptcp_sk(subflow->conn);
1311 : :
1312 : 793377 : return __mptcp_check_fallback(msk);
1313 : : }
1314 : :
1315 : 1044 : static inline bool __mptcp_has_initial_subflow(const struct mptcp_sock *msk)
1316 : : {
1317 : 1044 : struct sock *ssk = READ_ONCE(msk->first);
1318 : :
1319 [ + - - + : 2088 : return ssk && ((1 << inet_sk_state_load(ssk)) &
+ + ]
[ + - + + ]
1320 : : (TCPF_ESTABLISHED | TCPF_SYN_SENT |
1321 : : TCPF_SYN_RECV | TCPF_LISTEN));
1322 : : }
1323 : :
1324 : : bool __mptcp_try_fallback(struct mptcp_sock *msk, int fb_mib);
1325 : :
1326 : 160 : static inline bool mptcp_try_fallback(struct sock *ssk, int fb_mib)
1327 : : {
1328 : 160 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk);
1329 : 160 : struct sock *sk = subflow->conn;
1330 : 160 : struct mptcp_sock *msk;
1331 : :
1332 [ - + ]: 160 : msk = mptcp_sk(sk);
1333 [ + + ]: 160 : if (!__mptcp_try_fallback(msk, fb_mib))
1334 : : return false;
1335 [ - + - + : 148 : if (READ_ONCE(msk->snd_data_fin_enable) && !(ssk->sk_shutdown & SEND_SHUTDOWN)) {
- - ]
[ - + - - ]
1336 : 0 : gfp_t saved_allocation = ssk->sk_allocation;
1337 : :
1338 : : /* we are in a atomic (BH) scope, override ssk default for data
1339 : : * fin allocation
1340 : : */
1341 : 0 : ssk->sk_allocation = GFP_ATOMIC;
1342 : 0 : ssk->sk_shutdown |= SEND_SHUTDOWN;
1343 : 0 : tcp_shutdown(ssk, SEND_SHUTDOWN);
1344 : 0 : ssk->sk_allocation = saved_allocation;
1345 : : }
1346 : : return true;
1347 : : }
1348 : :
1349 : 30 : static inline void mptcp_early_fallback(struct mptcp_sock *msk,
1350 : : struct mptcp_subflow_context *subflow,
1351 : : int fb_mib)
1352 : : {
1353 : 30 : subflow->request_mptcp = 0;
1354 [ - + ]: 30 : WARN_ON_ONCE(!__mptcp_try_fallback(msk, fb_mib));
1355 : 30 : }
1356 : :
1357 : 55349 : static inline bool mptcp_check_infinite_map(struct sk_buff *skb)
1358 : : {
1359 : 55349 : struct mptcp_ext *mpext;
1360 : :
1361 [ + + ]: 55349 : mpext = skb ? mptcp_get_ext(skb) : NULL;
1362 [ + + + + ]: 10460 : if (mpext && mpext->infinite_map)
1363 : 1 : return true;
1364 : :
1365 : : return false;
1366 : : }
1367 : :
1368 : 225 : static inline bool is_active_ssk(struct mptcp_subflow_context *subflow)
1369 : : {
1370 [ + + + + ]: 5124 : return (subflow->request_mptcp || subflow->request_join);
1371 : : }
1372 : :
1373 : 9817 : static inline bool subflow_simultaneous_connect(struct sock *sk)
1374 : : {
1375 : 9817 : struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(sk);
1376 : :
1377 : 5026 : return (1 << sk->sk_state) &
1378 : : (TCPF_ESTABLISHED | TCPF_FIN_WAIT1 | TCPF_FIN_WAIT2 | TCPF_CLOSING) &&
1379 [ - + + + ]: 9817 : is_active_ssk(subflow) &&
[ + + ]
1380 [ + + ]: 2623 : !subflow->conn_finished;
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 */
|