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