2 * Copyright (c) 2012-2017 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 #ifndef _NETINET_MPTCP_VAR_H_
30 #define _NETINET_MPTCP_VAR_H_
33 #include <netinet/in.h>
34 #include <netinet/tcp.h>
37 #ifdef BSD_KERNEL_PRIVATE
38 #include <sys/queue.h>
39 #include <sys/protosw.h>
40 #include <kern/locks.h>
41 #include <mach/boolean.h>
42 #include <netinet/mp_pcb.h>
43 #include <netinet/tcp_var.h>
48 uint32_t has_v4_conn
:1,
57 * This is an extension to the multipath PCB specific for MPTCP, protected by
58 * the per-PCB mpp_lock (also the socket's lock);
61 struct mppcb
*mpte_mppcb
; /* back ptr to multipath PCB */
62 struct mptcb
*mpte_mptcb
; /* ptr to MPTCP PCB */
63 TAILQ_HEAD(, mptopt
) mpte_sopts
; /* list of socket options */
64 TAILQ_HEAD(, mptsub
) mpte_subflows
; /* list of subflows */
65 uint16_t mpte_numflows
; /* # of subflows in list */
66 uint16_t mpte_nummpcapflows
; /* # of MP_CAP subflows */
67 sae_associd_t mpte_associd
; /* MPTCP association ID */
68 sae_connid_t mpte_connid_last
; /* last used connection ID */
71 /* Source address of initial subflow */
72 struct sockaddr mpte_src
;
73 struct sockaddr_in __mpte_src_v4
;
74 struct sockaddr_in6 __mpte_src_v6
;
78 /* Destination address of initial subflow */
79 struct sockaddr mpte_dst
;
80 struct sockaddr_in __mpte_dst_v4
;
81 struct sockaddr_in6 __mpte_dst_v6
;
84 struct sockaddr_in mpte_dst_v4_nat64
;
86 uint16_t mpte_alternate_port
; /* Alternate port for subflow establishment (network-byte-order) */
88 struct mptsub
*mpte_active_sub
; /* ptr to last active subf */
89 uint8_t mpte_flags
; /* per mptcp session flags */
90 #define MPTE_SND_REM_ADDR 0x01 /* Send Remove_addr option */
91 #define MPTE_SVCTYPE_CHECKED 0x02 /* Did entitlement-check for service-type */
92 #define MPTE_FIRSTPARTY 0x04 /* First-party app used multipath_extended entitlement */
93 #define MPTE_ACCESS_GRANTED 0x08 /* Access to cellular has been granted for this connection */
94 #define MPTE_IN_WORKLOOP 0x10 /* Are we currently inside the workloop ? */
95 #define MPTE_WORKLOOP_RELAUNCH 0x20 /* Another event got queued, we should restart the workloop */
96 uint8_t mpte_svctype
; /* MPTCP Service type */
97 uint8_t mpte_lost_aid
; /* storing lost address id */
98 uint8_t mpte_addrid_last
; /* storing address id parm */
100 #define MPTE_ITFINFO_SIZE 4
101 uint32_t mpte_itfinfo_size
;
102 struct mpt_itf_info _mpte_itfinfo
[MPTE_ITFINFO_SIZE
];
103 struct mpt_itf_info
*mpte_itfinfo
;
105 struct mbuf
*mpte_reinjectq
;
107 /* The below is used for stats */
108 uint32_t mpte_subflow_switches
; /* Number of subflow-switches in sending */
109 uint32_t mpte_used_cell
:1,
113 mpte_handshake_success
:1;
115 struct mptcp_itf_stats mpte_itfstats
[MPTCP_ITFSTATS_SIZE
];
116 uint64_t mpte_init_txbytes
__attribute__((aligned(8)));
117 uint64_t mpte_init_rxbytes
__attribute__((aligned(8)));
120 static inline struct socket
*
121 mptetoso(struct mptses
*mpte
)
123 return mpte
->mpte_mppcb
->mpp_socket
;
126 static inline struct mptses
*
127 mptompte(struct mppcb
*mp
)
129 return (struct mptses
*)mp
->mpp_pcbe
;
132 static inline struct mptses
*
133 mpsotompte(struct socket
*so
)
135 return mptompte(mpsotomppcb(so
));
139 mpp_lock_assert_held(struct mppcb
*mp
)
144 LCK_MTX_ASSERT(&mp
->mpp_lock
, LCK_MTX_ASSERT_OWNED
);
148 mpp_lock_assert_notheld(struct mppcb
*mp
)
153 LCK_MTX_ASSERT(&mp
->mpp_lock
, LCK_MTX_ASSERT_NOTOWNED
);
156 static inline boolean_t
157 mpp_try_lock(struct mppcb
*mp
)
159 if (!lck_mtx_try_lock(&mp
->mpp_lock
)) {
163 VERIFY(!(mp
->mpp_flags
& MPP_INSIDE_OUTPUT
));
164 VERIFY(!(mp
->mpp_flags
& MPP_INSIDE_INPUT
));
170 mpp_lock(struct mppcb
*mp
)
172 lck_mtx_lock(&mp
->mpp_lock
);
173 VERIFY(!(mp
->mpp_flags
& MPP_INSIDE_OUTPUT
));
174 VERIFY(!(mp
->mpp_flags
& MPP_INSIDE_INPUT
));
178 mpp_unlock(struct mppcb
*mp
)
180 VERIFY(!(mp
->mpp_flags
& MPP_INSIDE_OUTPUT
));
181 VERIFY(!(mp
->mpp_flags
& MPP_INSIDE_INPUT
));
182 lck_mtx_unlock(&mp
->mpp_lock
);
185 static inline lck_mtx_t
*
186 mpp_getlock(struct mppcb
*mp
, int flags
)
188 if (flags
& PR_F_WILLUNLOCK
) {
189 VERIFY(!(mp
->mpp_flags
& MPP_INSIDE_OUTPUT
));
190 VERIFY(!(mp
->mpp_flags
& MPP_INSIDE_INPUT
));
193 return &mp
->mpp_lock
;
197 mpte_lock_assert_held(struct mptses
*mpte
)
199 mpp_lock_assert_held(mpte
->mpte_mppcb
);
203 mpte_lock_assert_notheld(struct mptses
*mpte
)
205 mpp_lock_assert_notheld(mpte
->mpte_mppcb
);
208 static inline boolean_t
209 mpte_try_lock(struct mptses
*mpte
)
211 return mpp_try_lock(mpte
->mpte_mppcb
);
215 mpte_lock(struct mptses
*mpte
)
217 mpp_lock(mpte
->mpte_mppcb
);
221 mpte_unlock(struct mptses
*mpte
)
223 mpp_unlock(mpte
->mpte_mppcb
);
226 static inline lck_mtx_t
*
227 mpte_getlock(struct mptses
*mpte
, int flags
)
229 return mpp_getlock(mpte
->mpte_mppcb
, flags
);
233 mptcp_subflow_cwnd_space(struct socket
*so
)
235 struct tcpcb
*tp
= sototcpcb(so
);
236 int cwnd
= min(tp
->snd_wnd
, tp
->snd_cwnd
) - (so
->so_snd
.sb_cc
);
238 return min(cwnd
, sbspace(&so
->so_snd
));
243 * MPTCP socket options
246 TAILQ_ENTRY(mptopt
) mpo_entry
; /* glue to other options */
247 uint32_t mpo_flags
; /* see flags below */
248 int mpo_level
; /* sopt_level */
249 int mpo_name
; /* sopt_name */
250 int mpo_intval
; /* sopt_val */
253 #define MPOF_ATTACHED 0x1 /* attached to MP socket */
254 #define MPOF_SUBFLOW_OK 0x2 /* can be issued on subflow socket */
255 #define MPOF_INTERIM 0x4 /* has not been issued on any subflow */
260 * Note that mpts_flags and mpts_evctl are modified via atomic operations.
263 TAILQ_ENTRY(mptsub
) mpts_entry
; /* glue to peer subflows */
264 uint32_t mpts_refcnt
; /* reference count */
265 uint32_t mpts_flags
; /* see flags below */
266 uint32_t mpts_evctl
; /* subflow control events */
267 sae_connid_t mpts_connid
; /* subflow connection ID */
268 int mpts_oldintval
; /* sopt_val before sosetopt */
269 struct mptses
*mpts_mpte
; /* back ptr to MPTCP session */
270 struct socket
*mpts_socket
; /* subflow socket */
271 struct sockaddr
*mpts_src
; /* source address */
274 /* destination address */
275 struct sockaddr mpts_dst
;
276 struct sockaddr_in __mpts_dst_v4
;
277 struct sockaddr_in6 __mpts_dst_v6
;
280 u_int32_t mpts_rel_seq
; /* running count of subflow # */
281 u_int32_t mpts_iss
; /* Initial sequence number, taking TFO into account */
282 u_int32_t mpts_ifscope
; /* scoped to the interface */
283 uint32_t mpts_probesoon
; /* send probe after probeto */
284 uint32_t mpts_probecnt
; /* number of probes sent */
285 uint32_t mpts_maxseg
; /* cached value of t_maxseg */
289 * Valid values for mpts_flags. In particular:
291 * - MP_CAPABLE means that the connection is successfully established as
292 * MPTCP and data transfer may occur, but is not yet ready for multipath-
293 * related semantics until MP_READY. I.e. if this is on the first subflow,
294 * it causes the MPTCP socket to transition to a connected state, except
295 * that additional subflows will not be established; they will be marked
296 * with PENDING and will be processed when the first subflow is marked
299 * - MP_READY implies that an MP_CAPABLE connection has been confirmed as
300 * an MPTCP connection. See notes above.
302 * - MP_DEGRADED implies that the connection has lost its MPTCP capabilities
303 * but data transfer on the MPTCP socket is unaffected. Any existing
304 * PENDING subflows will be disconnected, and further attempts to connect
305 * additional subflows will be rejected.
307 * Note that these are per-subflow flags. The setting and clearing of MP_READY
308 * reflects the state of the MPTCP connection with regards to its multipath
309 * semantics, via the MPTCPF_JOIN_READY flag. Until that flag is set (meaning
310 * until at least a subflow is marked with MP_READY), further connectx(2)
311 * attempts to join will be queued. When the flag is cleared (after it has
312 * been set), further connectx(2) will fail (and existing queued ones will be
313 * aborted) and the MPTCP connection loses all of its multipath semantics.
315 * Keep in sync with bsd/dev/dtrace/scripts/mptcp.d.
317 #define MPTSF_ATTACHED 0x00000001 /* attached to MPTCP PCB */
318 #define MPTSF_CONNECTING 0x00000002 /* connection was attempted */
319 #define MPTSF_CONNECT_PENDING 0x00000004 /* will connect when MPTCP is ready */
320 #define MPTSF_CONNECTED 0x00000008 /* connection is established */
321 #define MPTSF_DISCONNECTING 0x00000010 /* disconnection was attempted */
322 #define MPTSF_DISCONNECTED 0x00000020 /* has been disconnected */
323 #define MPTSF_MP_CAPABLE 0x00000040 /* connected as a MPTCP subflow */
324 #define MPTSF_MP_READY 0x00000080 /* MPTCP has been confirmed */
325 #define MPTSF_MP_DEGRADED 0x00000100 /* has lost its MPTCP capabilities */
326 #define MPTSF_PREFERRED 0x00000200 /* primary/preferred subflow */
327 #define MPTSF_SOPT_OLDVAL 0x00000400 /* old option value is valid */
328 #define MPTSF_SOPT_INPROG 0x00000800 /* sosetopt in progress */
329 #define MPTSF_FAILINGOVER 0x00001000 /* subflow not used for output */
330 #define MPTSF_ACTIVE 0x00002000 /* subflow currently in use */
331 #define MPTSF_MPCAP_CTRSET 0x00004000 /* mpcap counter */
332 #define MPTSF_CLOSED 0x00008000 /* soclose_locked has been called on this subflow */
333 #define MPTSF_TFO_REQD 0x00010000 /* TFO requested */
334 #define MPTSF_CLOSE_REQD 0x00020000 /* A close has been requested from NECP */
335 #define MPTSF_INITIAL_SUB 0x00040000 /* This is the initial subflow */
336 #define MPTSF_READ_STALL 0x00080000 /* A read-stall has been detected */
337 #define MPTSF_WRITE_STALL 0x00100000 /* A write-stall has been detected */
338 #define MPTSF_CONFIRMED 0x00200000 /* Subflow confirmed to be MPTCP-capable */
341 "\020\1ATTACHED\2CONNECTING\3PENDING\4CONNECTED\5DISCONNECTING" \
342 "\6DISCONNECTED\7MP_CAPABLE\10MP_READY\11MP_DEGRADED" \
343 "\12PREFERRED\13SOPT_OLDVAL" \
344 "\14SOPT_INPROG\15FAILINGOVER\16ACTIVE\17MPCAP_CTRSET" \
345 "\20CLOSED\21TFO_REQD\22CLOSEREQD\23INITIALSUB\24READ_STALL" \
346 "\25WRITE_STALL\26CONFIRMED"
350 * Keep in sync with bsd/dev/dtrace/mptcp.d
352 typedef enum mptcp_state
{
353 MPTCPS_CLOSED
= 0, /* closed */
354 MPTCPS_LISTEN
= 1, /* not yet implemented */
355 MPTCPS_ESTABLISHED
= 2, /* MPTCP connection established */
356 MPTCPS_CLOSE_WAIT
= 3, /* rcvd DFIN, waiting for close */
357 MPTCPS_FIN_WAIT_1
= 4, /* have closed, sent DFIN */
358 MPTCPS_CLOSING
= 5, /* closed xchd DFIN, waiting DFIN ACK */
359 MPTCPS_LAST_ACK
= 6, /* had DFIN and close; await DFIN ACK */
360 MPTCPS_FIN_WAIT_2
= 7, /* have closed, DFIN is acked */
361 MPTCPS_TIME_WAIT
= 8, /* in 2*MSL quiet wait after close */
362 MPTCPS_TERMINATE
= 9, /* terminal state */
365 typedef u_int64_t mptcp_key_t
;
366 typedef u_int32_t mptcp_token_t
;
367 typedef u_int8_t mptcp_addr_id
;
370 /* Address ID list */
371 struct mptcp_subf_auth_entry
{
372 LIST_ENTRY(mptcp_subf_auth_entry
) msae_next
;
373 u_int32_t msae_laddr_rand
; /* Local nonce */
374 u_int32_t msae_raddr_rand
; /* Remote nonce */
375 mptcp_addr_id msae_laddr_id
; /* Local addr ID */
376 mptcp_addr_id msae_raddr_id
; /* Remote addr ID */
380 * MPTCP Protocol Control Block
382 * Protected by per-MPTCP mpt_lock.
383 * Keep in sync with bsd/dev/dtrace/scripts/mptcp.d.
386 struct mptses
*mpt_mpte
; /* back ptr to MPTCP session */
387 mptcp_state_t mpt_state
; /* MPTCP state */
388 u_int32_t mpt_flags
; /* see flags below */
389 u_int32_t mpt_version
; /* MPTCP proto version */
390 int mpt_softerror
; /* error not yet reported */
392 * Authentication and metadata invariants
394 mptcp_key_t mpt_localkey
; /* in network byte order */
395 mptcp_key_t mpt_remotekey
; /* in network byte order */
396 mptcp_token_t mpt_localtoken
; /* HMAC SHA1 of local key */
397 mptcp_token_t mpt_remotetoken
; /* HMAC SHA1 of remote key */
400 * Timer vars for scenarios where subflow level acks arrive, but
403 int mpt_rxtshift
; /* num of consecutive retrans */
404 u_int32_t mpt_rxtstart
; /* time at which rxt started */
405 u_int64_t mpt_rtseq
; /* seq # being tracked */
406 u_int32_t mpt_timer_vals
; /* timer related values */
407 u_int32_t mpt_timewait
; /* timewait */
411 u_int64_t mpt_snduna
; /* DSN of last unacked byte */
412 u_int64_t mpt_sndnxt
; /* DSN of next byte to send */
413 u_int64_t mpt_sndmax
; /* DSN of max byte sent */
414 u_int64_t mpt_local_idsn
; /* First byte's DSN */
415 u_int32_t mpt_sndwnd
;
416 u_int64_t mpt_sndwl1
;
417 u_int64_t mpt_sndwl2
;
421 u_int64_t mpt_rcvnxt
; /* Next expected DSN */
422 u_int64_t mpt_remote_idsn
; /* Peer's IDSN */
423 u_int32_t mpt_rcvwnd
;
424 LIST_HEAD(, mptcp_subf_auth_entry
) mpt_subauth_list
; /* address IDs */
428 u_int64_t mpt_dsn_at_csum_fail
; /* MPFail Opt DSN */
429 u_int32_t mpt_ssn_at_csum_fail
; /* MPFail Subflow Seq */
433 #define MPT_GC_TICKS (30)
434 #define MPT_GC_TICKS_FAST (10)
435 int32_t mpt_gc_ticks
; /* Used for zombie deletion */
437 u_int32_t mpt_notsent_lowat
; /* TCP_NOTSENT_LOWAT support */
438 u_int32_t mpt_peer_version
; /* Version from peer */
440 struct tsegqe_head mpt_segq
;
441 u_int16_t mpt_reassqlen
; /* length of reassembly queue */
444 /* valid values for mpt_flags (see also notes on mpts_flags above) */
445 #define MPTCPF_CHECKSUM 0x001 /* checksum DSS option */
446 #define MPTCPF_FALLBACK_TO_TCP 0x002 /* Fallback to TCP */
447 #define MPTCPF_JOIN_READY 0x004 /* Ready to start 2 or more subflows */
448 #define MPTCPF_RECVD_MPFAIL 0x008 /* Received MP_FAIL option */
449 #define MPTCPF_SND_64BITDSN 0x010 /* Send full 64-bit DSN */
450 #define MPTCPF_SND_64BITACK 0x020 /* Send 64-bit ACK response */
451 #define MPTCPF_RCVD_64BITACK 0x040 /* Received 64-bit Data ACK */
452 #define MPTCPF_POST_FALLBACK_SYNC 0x080 /* Post fallback resend data */
453 #define MPTCPF_FALLBACK_HEURISTIC 0x100 /* Send SYN without MP_CAPABLE due to heuristic */
454 #define MPTCPF_HEURISTIC_TRAC 0x200 /* Tracked this connection in the heuristics as a failure */
455 #define MPTCPF_REASS_INPROG 0x400 /* Reassembly is in progress */
457 #define MPTCPF_BITS \
458 "\020\1CHECKSUM\2FALLBACK_TO_TCP\3JOIN_READY\4RECVD_MPFAIL" \
459 "\5SND_64BITDSN\6SND_64BITACK\7RCVD_64BITACK\10POST_FALLBACK_SYNC" \
460 "\11FALLBACK_HEURISTIC\12HEURISTIC_TRAC\13REASS_INPROG"
462 /* valid values for mpt_timer_vals */
463 #define MPTT_REXMT 0x01 /* Starting Retransmit Timer */
464 #define MPTT_TW 0x02 /* Starting Timewait Timer */
465 #define MPTT_FASTCLOSE 0x04 /* Starting Fastclose wait timer */
467 /* events for close FSM */
468 #define MPCE_CLOSE 0x1
469 #define MPCE_RECV_DATA_ACK 0x2
470 #define MPCE_RECV_DATA_FIN 0x4
472 /* mptcb manipulation */
473 static inline struct mptcb
*
474 tptomptp(struct tcpcb
*tp
)
480 * MPTCP control block and state structures are allocated along with
481 * the MP protocol control block; the folllowing represents the layout.
484 struct mppcb mpp
; /* Multipath PCB */
485 struct mptses mpp_ses
; /* MPTCP session */
486 struct mptcb mtcb
; /* MPTCP PCB */
490 SYSCTL_DECL(_net_inet_mptcp
);
491 #endif /* SYSCTL_DECL */
493 extern struct mppcbinfo mtcbinfo
;
494 extern struct pr_usrreqs mptcp_usrreqs
;
495 extern os_log_t mptcp_log_handle
;
497 /* Encryption algorithm related definitions */
498 #define SHA1_TRUNCATED 8
500 /* MPTCP Debugging Levels */
501 #define MPTCP_LOGLVL_NONE 0x0 /* No debug logging */
502 #define MPTCP_LOGLVL_ERR 0x1 /* Errors in execution are logged */
503 #define MPTCP_LOGLVL_LOG 0x2 /* Important logs */
504 #define MPTCP_LOGLVL_VERBOSE 0x4 /* Verbose logs */
506 /* MPTCP sub-components for debug logging */
507 #define MPTCP_NO_DBG 0x00 /* No areas are logged */
508 #define MPTCP_STATE_DBG 0x01 /* State machine logging */
509 #define MPTCP_SOCKET_DBG 0x02 /* Socket call logging */
510 #define MPTCP_SENDER_DBG 0x04 /* Sender side logging */
511 #define MPTCP_RECEIVER_DBG 0x08 /* Receiver logging */
512 #define MPTCP_EVENTS_DBG 0x10 /* Subflow events logging */
514 /* Mask to obtain 32-bit portion of data sequence number */
515 #define MPTCP_DATASEQ_LOW32_MASK (0xffffffff)
516 #define MPTCP_DATASEQ_LOW32(seq) (seq & MPTCP_DATASEQ_LOW32_MASK)
518 /* Mask to obtain upper 32-bit portion of data sequence number */
519 #define MPTCP_DATASEQ_HIGH32_MASK (0xffffffff00000000)
520 #define MPTCP_DATASEQ_HIGH32(seq) (seq & MPTCP_DATASEQ_HIGH32_MASK)
522 /* Mask to obtain 32-bit portion of data ack */
523 #define MPTCP_DATAACK_LOW32_MASK (0xffffffff)
524 #define MPTCP_DATAACK_LOW32(ack) (ack & MPTCP_DATAACK_LOW32_MASK)
526 /* Mask to obtain upper 32-bit portion of data ack */
527 #define MPTCP_DATAACK_HIGH32_MASK (0xffffffff00000000)
528 #define MPTCP_DATAACK_HIGH32(ack) (ack & MPTCP_DATAACK_HIGH32_MASK)
531 * x is the 64-bit data sequence number, y the 32-bit data seq number to be
532 * extended. z is y extended to the appropriate 64-bit value.
533 * This algorithm is based on the fact that subflow level window sizes are
534 * at the maximum 2**30 (in reality, they are a lot lesser). A high throughput
535 * application sending on a large number of subflows can in theory have very
536 * large MPTCP level send and receive windows. In which case, 64 bit DSNs
537 * must be sent in place of 32 bit DSNs on wire. For us, with 2 subflows at
538 * 512K each, sequence wraparound detection can be done by checking whether
539 * the 32-bit value obtained on wire is 2**31 bytes apart from the stored
540 * lower 32-bits of the Data Sequence Number. Bogus DSNs are dropped by
541 * comparing against rwnd. Bogus DSNs within rwnd cannot be protected against
542 * and are as weak as bogus TCP sequence numbers.
544 #define MPTCP_EXTEND_DSN(x, y, z) { \
545 if ((MPTCP_DATASEQ_LOW32(x) > y) && \
546 ((((u_int32_t)MPTCP_DATASEQ_LOW32(x)) - (u_int32_t)y) >= \
547 (u_int32_t)(1 << 31))) { \
549 * y wrapped around and x and y are 2**31 bytes apart \
551 z = MPTCP_DATASEQ_HIGH32(x) + 0x100000000; \
553 } else if ((MPTCP_DATASEQ_LOW32(x) < y) && \
555 ((u_int32_t)MPTCP_DATASEQ_LOW32(x))) >= \
556 (u_int32_t)(1 << 31))) { \
558 * x wrapped around and x and y are 2**31 apart \
560 z = MPTCP_DATASEQ_HIGH32(x) - 0x100000000; \
563 z = MPTCP_DATASEQ_HIGH32(x) | y; \
567 #define mptcplog(x, y, z) do { \
568 if ((mptcp_dbg_area & y) && (mptcp_dbg_level & z)) \
572 extern int mptcp_enable
; /* Multipath TCP */
573 extern int mptcp_mpcap_retries
; /* Multipath TCP retries */
574 extern int mptcp_join_retries
; /* Multipath TCP Join retries */
575 extern int mptcp_dss_csum
; /* Multipath DSS Option checksum */
576 extern int mptcp_fail_thresh
; /* Multipath failover thresh of retransmits */
577 extern int mptcp_subflow_keeptime
; /* Multipath subflow TCP_KEEPALIVE opt */
578 extern uint32_t mptcp_dbg_level
; /* Multipath TCP debugging level */
579 extern uint32_t mptcp_dbg_area
; /* Multipath TCP debugging area */
580 extern int mptcp_developer_mode
; /* Allow aggregation mode */
582 extern int tcp_jack_rxmt
; /* Join ACK retransmission value in msecs */
585 extern void mptcp_init(struct protosw
*, struct domain
*);
586 extern int mptcp_ctloutput(struct socket
*, struct sockopt
*);
587 extern int mptcp_sescreate(struct mppcb
*);
588 extern void mptcp_check_subflows_and_add(struct mptses
*);
589 extern int mptcp_get_statsindex(struct mptcp_itf_stats
*stats
,
590 const struct mptsub
*mpts
);
591 extern void mptcpstats_inc_switch(struct mptses
*, const struct mptsub
*);
592 extern struct mptses
*mptcp_drop(struct mptses
*, struct mptcb
*, int);
593 extern struct mptses
*mptcp_close(struct mptses
*, struct mptcb
*);
594 extern int mptcp_lock(struct socket
*, int, void *);
595 extern int mptcp_unlock(struct socket
*, int, void *);
596 extern lck_mtx_t
*mptcp_getlock(struct socket
*, int);
597 extern void mptcp_subflow_workloop(struct mptses
*);
599 extern void mptcp_sched_create_subflows(struct mptses
*);
601 extern void mptcp_finish_usrclosed(struct mptses
*mpte
);
602 extern struct mptopt
*mptcp_sopt_alloc(int);
603 extern const char *mptcp_sopt2str(int, int);
604 extern void mptcp_sopt_free(struct mptopt
*);
605 extern void mptcp_sopt_insert(struct mptses
*, struct mptopt
*);
606 extern void mptcp_sopt_remove(struct mptses
*, struct mptopt
*);
607 extern struct mptopt
*mptcp_sopt_find(struct mptses
*, struct sockopt
*);
609 extern int mptcp_subflow_add(struct mptses
*, struct sockaddr
*,
610 struct sockaddr
*, uint32_t, sae_connid_t
*);
611 extern void mptcpstats_update(struct mptcp_itf_stats
*stats
, struct mptsub
*mpts
);
612 extern void mptcp_subflow_del(struct mptses
*, struct mptsub
*);
614 #define MPTCP_SUBOUT_PROBING 0x01
615 extern int mptcp_subflow_output(struct mptses
*mpte
, struct mptsub
*mpts
, int flags
);
616 extern void mptcp_clean_reinjectq(struct mptses
*mpte
);
617 extern void mptcp_subflow_shutdown(struct mptses
*, struct mptsub
*);
618 extern void mptcp_subflow_disconnect(struct mptses
*, struct mptsub
*);
619 extern int mptcp_subflow_sosetopt(struct mptses
*, struct mptsub
*,
621 extern int mptcp_subflow_sogetopt(struct mptses
*, struct socket
*,
624 extern void mptcp_input(struct mptses
*, struct mbuf
*);
625 extern boolean_t
mptcp_can_send_more(struct mptcb
*mp_tp
, boolean_t ignore_reinject
);
626 extern int mptcp_output(struct mptses
*);
627 extern void mptcp_close_fsm(struct mptcb
*, uint32_t);
629 extern void mptcp_hmac_sha1(mptcp_key_t
, mptcp_key_t
, u_int32_t
, u_int32_t
,
631 extern void mptcp_get_hmac(mptcp_addr_id
, struct mptcb
*, u_char
*);
632 extern void mptcp_get_rands(mptcp_addr_id
, struct mptcb
*, u_int32_t
*,
634 extern void mptcp_set_raddr_rand(mptcp_addr_id
, struct mptcb
*, mptcp_addr_id
,
636 extern int mptcp_init_remote_parms(struct mptcb
*);
637 extern boolean_t
mptcp_ok_to_keepalive(struct mptcb
*);
638 extern void mptcp_insert_dsn(struct mppcb
*, struct mbuf
*);
639 extern void mptcp_output_getm_dsnmap32(struct socket
*so
, int off
,
640 uint32_t *dsn
, uint32_t *relseq
,
641 uint16_t *data_len
, uint16_t *dss_csum
);
642 extern void mptcp_output_getm_dsnmap64(struct socket
*so
, int off
,
643 uint64_t *dsn
, uint32_t *relseq
,
644 uint16_t *data_len
, uint16_t *dss_csum
);
645 extern void mptcp_act_on_txfail(struct socket
*);
646 extern struct mptsub
*mptcp_get_subflow(struct mptses
*, struct mptsub
*,
648 extern int mptcp_get_map_for_dsn(struct socket
*, u_int64_t
, u_int32_t
*);
649 extern int32_t mptcp_adj_sendlen(struct socket
*so
, int32_t off
);
650 extern void mptcp_sbrcv_grow(struct mptcb
*mp_tp
);
651 extern int32_t mptcp_sbspace(struct mptcb
*);
652 extern void mptcp_notify_mpready(struct socket
*);
653 extern void mptcp_notify_mpfail(struct socket
*);
654 extern void mptcp_notify_close(struct socket
*);
655 extern boolean_t
mptcp_no_rto_spike(struct socket
*);
656 extern int mptcp_set_notsent_lowat(struct mptses
*mpte
, int optval
);
657 extern u_int32_t
mptcp_get_notsent_lowat(struct mptses
*mpte
);
658 extern int mptcp_notsent_lowat_check(struct socket
*so
);
659 extern void mptcp_ask_symptoms(struct mptses
*mpte
);
660 extern void mptcp_control_register(void);
661 extern int mptcp_is_wifi_unusable(struct mptses
*mpte
);
662 extern boolean_t
mptcp_subflow_is_bad(struct mptses
*mpte
, struct mptsub
*mpts
);
663 extern void mptcp_ask_for_nat64(struct ifnet
*ifp
);
664 extern void mptcp_session_necp_cb(void *, int, uint32_t, uint32_t, bool *);
665 extern void mptcp_set_restrictions(struct socket
*mp_so
);
666 extern int mptcp_freeq(struct mptcb
*);
667 extern void mptcp_set_cellicon(struct mptses
*mpte
);
668 extern void mptcp_unset_cellicon(void);
669 extern void mptcp_reset_rexmit_state(struct tcpcb
*tp
);
670 extern void mptcp_reset_keepalive(struct tcpcb
*tp
);
671 extern int mptcp_validate_csum(struct tcpcb
*tp
, struct mbuf
*m
, uint64_t dsn
,
672 uint32_t sseq
, uint16_t dlen
, uint16_t csum
,
676 #endif /* BSD_KERNEL_PRIVATE */
679 typedef struct mptcp_flow
{
681 size_t flow_tcpci_offset
;
683 sae_connid_t flow_cid
;
684 struct sockaddr_storage flow_src
;
685 struct sockaddr_storage flow_dst
;
686 uint32_t flow_relseq
; /* last subflow rel seq# */
687 int32_t flow_soerror
; /* subflow level error */
688 uint32_t flow_probecnt
; /* number of probes sent */
689 conninfo_tcp_t flow_ci
; /* must be the last field */
692 typedef struct conninfo_mptcp
{
694 size_t mptcpci_flow_offset
; /* offsetof first flow */
695 size_t mptcpci_nflows
; /* number of subflows */
696 uint32_t mptcpci_state
; /* MPTCP level state */
697 uint32_t mptcpci_mpte_flags
; /* Session flags */
698 uint32_t mptcpci_flags
; /* MPTCB flags */
699 uint32_t mptcpci_ltoken
; /* local token */
700 uint32_t mptcpci_rtoken
; /* remote token */
701 uint32_t mptcpci_notsent_lowat
; /* NOTSENT_LOWAT */
704 uint64_t mptcpci_snduna
; /* DSN of last unacked byte */
705 uint64_t mptcpci_sndnxt
; /* DSN of next byte to send */
706 uint64_t mptcpci_sndmax
; /* DSN of max byte sent */
707 uint64_t mptcpci_lidsn
; /* Local IDSN */
708 uint32_t mptcpci_sndwnd
; /* Send window snapshot */
711 uint64_t mptcpci_rcvnxt
; /* Next expected DSN */
712 uint64_t mptcpci_rcvatmark
; /* Session level rcvnxt */
713 uint64_t mptcpci_ridsn
; /* Peer's IDSN */
714 uint32_t mptcpci_rcvwnd
; /* Receive window */
716 uint8_t mptcpci_mpte_addrid
; /* last addr id */
718 mptcp_flow_t mptcpci_flows
[1];
721 /* Use SymptomsD notifications of wifi and cell status in subflow selection */
722 #define MPTCP_KERN_CTL_NAME "com.apple.network.advisory"
723 typedef struct symptoms_advisory
{
725 uint32_t sa_nwk_status_int
;
728 #define SYMPTOMS_ADVISORY_NOCOMMENT 0x0000
729 #define SYMPTOMS_ADVISORY_USEAPP 0xFFFF /* Very ugly workaround to avoid breaking backwards compatibility - ToDo: Fix it in +1 */
730 uint16_t sa_nwk_status
;
732 #define SYMPTOMS_ADVISORY_WIFI_BAD 0x01
733 #define SYMPTOMS_ADVISORY_WIFI_OK 0x02
734 uint8_t sa_wifi_status
;
735 #define SYMPTOMS_ADVISORY_CELL_BAD 0x01
736 #define SYMPTOMS_ADVISORY_CELL_OK 0x02
737 uint8_t sa_cell_status
;
743 } symptoms_advisory_t
;
745 struct mptcp_symptoms_ask_uuid
{
747 #define MPTCP_SYMPTOMS_ASK_UUID 1
750 #define MPTCP_SYMPTOMS_UNKNOWN 0
751 #define MPTCP_SYMPTOMS_BACKGROUND 1
752 #define MPTCP_SYMPTOMS_FOREGROUND 2
755 struct kev_mptcp_data
{
760 #endif /* _NETINET_MPTCP_VAR_H_ */