2 * Copyright (c) 2012-2015 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>
47 * This is an extension to the multipath PCB specific for MPTCP, protected by
48 * the per-PCB mpp_lock (also the socket's lock); MPTCP thread signalling uses
49 * its own mpte_thread_lock due to lock ordering constraints.
52 struct mppcb
*mpte_mppcb
; /* back ptr to multipath PCB */
53 struct mptcb
*mpte_mptcb
; /* ptr to MPTCP PCB */
54 TAILQ_HEAD(, mptopt
) mpte_sopts
; /* list of socket options */
55 TAILQ_HEAD(, mptsub
) mpte_subflows
; /* list of subflows */
56 uint16_t mpte_numflows
; /* # of subflows in list */
57 uint16_t mpte_nummpcapflows
; /* # of MP_CAP subflows */
58 sae_associd_t mpte_associd
; /* MPTCP association ID */
59 sae_connid_t mpte_connid_last
; /* last used connection ID */
61 * Threading (protected by mpte_thread_lock)
63 decl_lck_mtx_data(, mpte_thread_lock
); /* thread lock */
64 struct thread
*mpte_thread
; /* worker thread */
65 uint32_t mpte_thread_active
; /* thread is running */
66 uint32_t mpte_thread_reqs
; /* # of requests for thread */
67 struct mptsub
*mpte_active_sub
; /* ptr to last active subf */
68 uint8_t mpte_flags
; /* per mptcp session flags */
69 uint8_t mpte_lost_aid
; /* storing lost address id */
70 uint8_t mpte_addrid_last
; /* storing address id parm */
74 * Valid values for mpte_flags.
76 #define MPTE_SND_REM_ADDR 0x01 /* Send Remove_addr option */
78 #define mptompte(mp) ((struct mptses *)(mp)->mpp_pcbe)
80 #define MPTE_LOCK_ASSERT_HELD(_mpte) \
81 lck_mtx_assert(&(_mpte)->mpte_mppcb->mpp_lock, LCK_MTX_ASSERT_OWNED)
83 #define MPTE_LOCK_ASSERT_NOTHELD(_mpte) \
84 lck_mtx_assert(&(_mpte)->mpte_mppcb->mpp_lock, LCK_MTX_ASSERT_NOTOWNED)
86 #define MPTE_LOCK(_mpte) \
87 lck_mtx_lock(&(_mpte)->mpte_mppcb->mpp_lock)
89 #define MPTE_LOCK_SPIN(_mpte) \
90 lck_mtx_lock_spin(&(_mpte)->mpte_mppcb->mpp_lock)
92 #define MPTE_CONVERT_LOCK(_mpte) do { \
93 MPTE_LOCK_ASSERT_HELD(_mpte); \
94 lck_mtx_convert_spin(&(_mpte)->mpte_mppcb->mpp_lock); \
97 #define MPTE_UNLOCK(_mpte) \
98 lck_mtx_unlock(&(_mpte)->mpte_mppcb->mpp_lock)
101 * MPTCP socket options
104 TAILQ_ENTRY(mptopt
) mpo_entry
; /* glue to other options */
105 uint32_t mpo_flags
; /* see flags below */
106 int mpo_level
; /* sopt_level */
107 int mpo_name
; /* sopt_name */
108 int mpo_intval
; /* sopt_val */
111 #define MPOF_ATTACHED 0x1 /* attached to MP socket */
112 #define MPOF_SUBFLOW_OK 0x2 /* can be issued on subflow socket */
113 #define MPOF_INTERIM 0x4 /* has not been issued on any subflow */
116 * Structure passed down to TCP during subflow connection establishment
117 * containing information pertaining to the MPTCP.
119 struct mptsub_connreq
{
120 uint32_t mpcr_type
; /* see MPTSUB_CONNREQ_* below */
121 uint32_t mpcr_ifscope
; /* ifscope parameter to connectx(2) */
122 struct proc
*mpcr_proc
; /* process issuing connectx(2) */
125 /* valid values for mpcr_type */
126 #define MPTSUB_CONNREQ_MP_ENABLE 1 /* enable MPTCP */
127 #define MPTSUB_CONNREQ_MP_ADD 2 /* join an existing MPTCP */
132 * Protected by the the per-subflow mpts_lock. Note that mpts_flags
133 * and mpts_evctl are modified via atomic operations.
136 decl_lck_mtx_data(, mpts_lock
); /* per-subflow lock */
137 TAILQ_ENTRY(mptsub
) mpts_entry
; /* glue to peer subflows */
138 uint32_t mpts_refcnt
; /* reference count */
139 uint32_t mpts_flags
; /* see flags below */
140 uint32_t mpts_evctl
; /* subflow control events */
141 uint32_t mpts_family
; /* address family */
142 sae_connid_t mpts_connid
; /* subflow connection ID */
143 int mpts_oldintval
; /* sopt_val before sosetopt */
144 uint32_t mpts_rank
; /* subflow priority/rank */
145 int32_t mpts_soerror
; /* most recent subflow error */
146 struct mptses
*mpts_mpte
; /* back ptr to MPTCP session */
147 struct socket
*mpts_socket
; /* subflow socket */
148 struct sockaddr_list
*mpts_src_sl
; /* source list */
149 struct sockaddr_list
*mpts_dst_sl
; /* destination list */
150 struct ifnet
*mpts_outif
; /* outbound interface */
151 u_int64_t mpts_sndnxt
; /* next byte to send in mp so */
152 u_int32_t mpts_rel_seq
; /* running count of subflow # */
153 struct protosw
*mpts_oprotosw
; /* original protosw */
154 struct mptsub_connreq mpts_mpcr
; /* connection request */
155 int32_t mpts_srtt
; /* tcp's rtt estimate */
156 int32_t mpts_rxtcur
; /* tcp's rto estimate */
157 uint32_t mpts_probesoon
; /* send probe after probeto */
158 uint32_t mpts_probecnt
; /* number of probes sent */
159 uint32_t mpts_maxseg
; /* cached value of t_maxseg */
160 uint32_t mpts_peerswitch
;/* no of uses of backup so */
161 #define MPTSL_WIRED 0x01
162 #define MPTSL_WIFI 0x02
163 #define MPTSL_CELL 0x04
164 uint32_t mpts_linktype
; /* wired, wifi, cell */
168 * Valid values for mpts_flags. In particular:
170 * - MP_CAPABLE means that the connection is successfully established as
171 * MPTCP and data transfer may occur, but is not yet ready for multipath-
172 * related semantics until MP_READY. I.e. if this is on the first subflow,
173 * it causes the MPTCP socket to transition to a connected state, except
174 * that additional subflows will not be established; they will be marked
175 * with PENDING and will be processed when the first subflow is marked
178 * - MP_READY implies that an MP_CAPABLE connection has been confirmed as
179 * an MPTCP connection. See notes above.
181 * - MP_DEGRADED implies that the connection has lost its MPTCP capabilities
182 * but data transfer on the MPTCP socket is unaffected. Any existing
183 * PENDING subflows will be disconnected, and further attempts to connect
184 * additional subflows will be rejected.
186 * Note that these are per-subflow flags. The setting and clearing of MP_READY
187 * reflects the state of the MPTCP connection with regards to its multipath
188 * semantics, via the MPTCPF_JOIN_READY flag. Until that flag is set (meaning
189 * until at least a subflow is marked with MP_READY), further connectx(2)
190 * attempts to join will be queued. When the flag is cleared (after it has
191 * been set), further connectx(2) will fail (and existing queued ones will be
192 * aborted) and the MPTCP connection loses all of its multipath semantics.
194 * Keep in sync with bsd/dev/dtrace/scripts/mptcp.d.
196 #define MPTSF_ATTACHED 0x1 /* attached to MPTCP PCB */
197 #define MPTSF_CONNECTING 0x2 /* connection was attempted */
198 #define MPTSF_CONNECT_PENDING 0x4 /* will connect when MPTCP is ready */
199 #define MPTSF_CONNECTED 0x8 /* connection is established */
200 #define MPTSF_DISCONNECTING 0x10 /* disconnection was attempted */
201 #define MPTSF_DISCONNECTED 0x20 /* has been disconnected */
202 #define MPTSF_MP_CAPABLE 0x40 /* connected as a MPTCP subflow */
203 #define MPTSF_MP_READY 0x80 /* MPTCP has been confirmed */
204 #define MPTSF_MP_DEGRADED 0x100 /* has lost its MPTCP capabilities */
205 #define MPTSF_SUSPENDED 0x200 /* write-side is flow controlled */
206 #define MPTSF_BOUND_IF 0x400 /* subflow bound to an interface */
207 #define MPTSF_BOUND_IP 0x800 /* subflow bound to a src address */
208 #define MPTSF_BOUND_PORT 0x1000 /* subflow bound to a src port */
209 #define MPTSF_PREFERRED 0x2000 /* primary/preferred subflow */
210 #define MPTSF_SOPT_OLDVAL 0x4000 /* old option value is valid */
211 #define MPTSF_SOPT_INPROG 0x8000 /* sosetopt in progress */
212 #define MPTSF_DELETEOK 0x10000 /* subflow can be deleted */
213 #define MPTSF_FAILINGOVER 0x20000 /* subflow not used for output */
214 #define MPTSF_ACTIVE 0x40000 /* subflow currently in use */
215 #define MPTSF_MPCAP_CTRSET 0x80000 /* mpcap counter */
216 #define MPTSF_FASTJ_SEND 0x100000 /* send data after SYN in MP_JOIN */
217 #define MPTSF_FASTJ_REQD 0x200000 /* fastjoin required */
218 #define MPTSF_USER_DISCONNECT 0x400000 /* User triggered disconnect */
219 #define MPTSF_TFO_REQD 0x800000 /* TFO requested */
222 "\020\1ATTACHED\2CONNECTING\3PENDING\4CONNECTED\5DISCONNECTING" \
223 "\6DISCONNECTED\7MP_CAPABLE\10MP_READY\11MP_DEGRADED\12SUSPENDED" \
224 "\13BOUND_IF\14BOUND_IP\15BOUND_PORT\16PREFERRED\17SOPT_OLDVAL" \
225 "\20SOPT_INPROG\21NOLINGER\22FAILINGOVER\23ACTIVE\24MPCAP_CTRSET" \
226 "\25FASTJ_SEND\26FASTJ_REQD\27USER_DISCONNECT"
228 #define MPTS_LOCK_ASSERT_HELD(_mpts) \
229 lck_mtx_assert(&(_mpts)->mpts_lock, LCK_MTX_ASSERT_OWNED)
231 #define MPTS_LOCK_ASSERT_NOTHELD(_mpts) \
232 lck_mtx_assert(&(_mpts)->mpts_lock, LCK_MTX_ASSERT_NOTOWNED)
234 #define MPTS_LOCK(_mpts) \
235 lck_mtx_lock(&(_mpts)->mpts_lock)
237 #define MPTS_UNLOCK(_mpts) \
238 lck_mtx_unlock(&(_mpts)->mpts_lock)
240 #define MPTS_ADDREF(_mpts) \
241 mptcp_subflow_addref(_mpts, 0)
243 #define MPTS_ADDREF_LOCKED(_mpts) \
244 mptcp_subflow_addref(_mpts, 1)
246 #define MPTS_REMREF(_mpts) \
247 mptcp_subflow_remref(_mpts)
251 * Keep in sync with bsd/dev/dtrace/mptcp.d
253 typedef enum mptcp_state
{
254 MPTCPS_CLOSED
= 0, /* closed */
255 MPTCPS_LISTEN
= 1, /* not yet implemented */
256 MPTCPS_ESTABLISHED
= 2, /* MPTCP connection established */
257 MPTCPS_CLOSE_WAIT
= 3, /* rcvd DFIN, waiting for close */
258 MPTCPS_FIN_WAIT_1
= 4, /* have closed, sent DFIN */
259 MPTCPS_CLOSING
= 5, /* closed xchd DFIN, waiting DFIN ACK */
260 MPTCPS_LAST_ACK
= 6, /* had DFIN and close; await DFIN ACK */
261 MPTCPS_FIN_WAIT_2
= 7, /* have closed, DFIN is acked */
262 MPTCPS_TIME_WAIT
= 8, /* in 2*MSL quiet wait after close */
263 MPTCPS_FASTCLOSE_WAIT
= 9, /* sent MP_FASTCLOSE */
264 MPTCPS_TERMINATE
= 10, /* terminal state */
267 typedef u_int64_t mptcp_key_t
;
268 typedef u_int32_t mptcp_token_t
;
269 typedef u_int8_t mptcp_addr_id
;
272 /* Address ID list */
273 struct mptcp_subf_auth_entry
{
274 LIST_ENTRY(mptcp_subf_auth_entry
) msae_next
;
275 u_int32_t msae_laddr_rand
; /* Local nonce */
276 u_int32_t msae_raddr_rand
; /* Remote nonce */
277 mptcp_addr_id msae_laddr_id
; /* Local addr ID */
278 mptcp_addr_id msae_raddr_id
; /* Remote addr ID */
282 * MPTCP Protocol Control Block
284 * Protected by per-MPTCP mpt_lock.
285 * Keep in sync with bsd/dev/dtrace/scripts/mptcp.d.
288 decl_lck_mtx_data(, mpt_lock
); /* per MPTCP PCB lock */
289 struct mptses
*mpt_mpte
; /* back ptr to MPTCP session */
290 mptcp_state_t mpt_state
; /* MPTCP state */
291 u_int32_t mpt_flags
; /* see flags below */
292 u_int32_t mpt_refcnt
; /* references held on mptcb */
293 u_int32_t mpt_version
; /* MPTCP proto version */
294 int mpt_softerror
; /* error not yet reported */
296 * Authentication and metadata invariants
298 mptcp_key_t
*mpt_localkey
; /* in network byte order */
299 mptcp_key_t mpt_remotekey
; /* in network byte order */
300 mptcp_token_t mpt_localtoken
; /* HMAC SHA1 of local key */
301 mptcp_token_t mpt_remotetoken
; /* HMAC SHA1 of remote key */
304 * Timer vars for scenarios where subflow level acks arrive, but
307 int mpt_rxtshift
; /* num of consecutive retrans */
308 u_int32_t mpt_rxtstart
; /* time at which rxt started */
309 u_int64_t mpt_rtseq
; /* seq # being tracked */
310 u_int32_t mpt_timer_vals
; /* timer related values */
311 u_int32_t mpt_timewait
; /* timewait */
315 u_int64_t mpt_snduna
; /* DSN of last unacked byte */
316 u_int64_t mpt_sndnxt
; /* DSN of next byte to send */
317 u_int64_t mpt_sndmax
; /* DSN of max byte sent */
318 u_int64_t mpt_local_idsn
; /* First byte's DSN */
319 u_int32_t mpt_sndwnd
;
323 u_int64_t mpt_rcvnxt
; /* Next expected DSN */
324 u_int64_t mpt_rcvatmark
; /* mpsocket marker of rcvnxt */
325 u_int64_t mpt_remote_idsn
; /* Peer's IDSN */
326 u_int32_t mpt_rcvwnd
;
327 LIST_HEAD(, mptcp_subf_auth_entry
) mpt_subauth_list
; /* address IDs */
331 u_int64_t mpt_dsn_at_csum_fail
; /* MPFail Opt DSN */
332 u_int32_t mpt_ssn_at_csum_fail
; /* MPFail Subflow Seq */
336 #define MPT_GC_TICKS (30)
337 #define MPT_GC_TICKS_FAST (10)
338 int32_t mpt_gc_ticks
; /* Used for zombie deletion */
340 u_int32_t mpt_notsent_lowat
; /* TCP_NOTSENT_LOWAT support */
341 u_int32_t mpt_peer_version
; /* Version from peer */
344 /* valid values for mpt_flags (see also notes on mpts_flags above) */
345 #define MPTCPF_CHECKSUM 0x1 /* checksum DSS option */
346 #define MPTCPF_FALLBACK_TO_TCP 0x2 /* Fallback to TCP */
347 #define MPTCPF_JOIN_READY 0x4 /* Ready to start 2 or more subflows */
348 #define MPTCPF_RECVD_MPFAIL 0x8 /* Received MP_FAIL option */
349 #define MPTCPF_PEEL_OFF 0x10 /* Peel off this socket */
350 #define MPTCPF_SND_64BITDSN 0x20 /* Send full 64-bit DSN */
351 #define MPTCPF_SND_64BITACK 0x40 /* Send 64-bit ACK response */
352 #define MPTCPF_RCVD_64BITACK 0x80 /* Received 64-bit Data ACK */
353 #define MPTCPF_POST_FALLBACK_SYNC 0x100 /* Post fallback resend data */
355 #define MPTCPF_BITS \
356 "\020\1CHECKSUM\2FALLBACK_TO_TCP\3JOIN_READY\4RECVD_MPFAIL\5PEEL_OFF" \
357 "\6SND_64BITDSN\7SND_64BITACK\10RCVD_64BITACK\11POST_FALLBACK_SYNC"
359 /* valid values for mpt_timer_vals */
360 #define MPTT_REXMT 0x01 /* Starting Retransmit Timer */
361 #define MPTT_TW 0x02 /* Starting Timewait Timer */
362 #define MPTT_FASTCLOSE 0x04 /* Starting Fastclose wait timer */
363 //#define MPTT_PROBE_TIMER 0x08 /* Timer for probing preferred path */
365 #define MPT_LOCK_ASSERT_HELD(_mpt) \
366 lck_mtx_assert(&(_mpt)->mpt_lock, LCK_MTX_ASSERT_OWNED)
368 #define MPT_LOCK_ASSERT_NOTHELD(_mpt) \
369 lck_mtx_assert(&(_mpt)->mpt_lock, LCK_MTX_ASSERT_NOTOWNED)
371 #define MPT_LOCK(_mpt) \
372 lck_mtx_lock(&(_mpt)->mpt_lock)
374 #define MPT_LOCK_SPIN(_mpt) \
375 lck_mtx_lock_spin(&(_mpt)->mpt_lock)
377 #define MPT_CONVERT_LOCK(_mpt) do { \
378 MPT_LOCK_ASSERT_HELD(_mpt); \
379 lck_mtx_convert_spin(&(_mpt)->mpt_lock); \
382 #define MPT_UNLOCK(_mpt) \
383 lck_mtx_unlock(&(_mpt)->mpt_lock)
385 /* events for close FSM */
386 #define MPCE_CLOSE 0x1
387 #define MPCE_RECV_DATA_ACK 0x2
388 #define MPCE_RECV_DATA_FIN 0x4
390 /* mptcb manipulation */
391 #define tptomptp(tp) ((struct mptcb *)((tp)->t_mptcb))
394 * MPTCP control block and state structures are allocated along with
395 * the MP protocol control block; the folllowing represents the layout.
398 struct mppcb mpp
; /* Multipath PCB */
399 struct mptses mpp_ses
; /* MPTCP session */
400 struct mptcb mtcb
; /* MPTCP PCB */
404 SYSCTL_DECL(_net_inet_mptcp
);
405 #endif /* SYSCTL_DECL */
407 extern struct mppcbinfo mtcbinfo
;
408 extern struct pr_usrreqs mptcp_usrreqs
;
410 /* Encryption algorithm related definitions */
411 #define MPTCP_SHA1_RESULTLEN 20
412 #define SHA1_TRUNCATED 8
414 /* List of valid keys to use for MPTCP connections */
415 #define MPTCP_KEY_DIGEST_LEN (MPTCP_SHA1_RESULTLEN)
416 #define MPTCP_MX_KEY_ALLOCS (256)
417 #define MPTCP_KEY_PREALLOCS_MX (16)
418 #define MPTCP_MX_PREALLOC_ZONE_SZ (8192)
420 struct mptcp_key_entry
{
421 LIST_ENTRY(mptcp_key_entry
) mkey_next
;
422 mptcp_key_t mkey_value
;
423 #define MKEYF_FREE 0x0
424 #define MKEYF_INUSE 0x1
425 u_int32_t mkey_flags
;
426 char mkey_digest
[MPTCP_KEY_DIGEST_LEN
];
429 /* structure for managing unique key list */
430 struct mptcp_keys_pool_head
{
431 struct mptcp_key_entry
*lh_first
; /* list of keys */
432 u_int32_t mkph_count
; /* total keys in pool */
433 vm_size_t mkph_key_elm_sz
; /* size of key entry */
434 struct zone
*mkph_key_entry_zone
; /* zone for key entry */
435 decl_lck_mtx_data(, mkph_lock
); /* lock for key list */
438 /* MPTCP Receive Window */
439 #define MPTCP_RWIN_MAX (1<<16)
441 /* MPTCP Debugging Levels */
442 #define MPTCP_LOGLVL_NONE 0x0 /* No debug logging */
443 #define MPTCP_LOGLVL_ERR 0x1 /* Errors in execution are logged */
444 #define MPTCP_LOGLVL_LOG 0x2 /* Important logs */
445 #define MPTCP_LOGLVL_VERBOSE 0x3 /* Verbose logs */
447 /* MPTCP sub-components for debug logging */
448 #define MPTCP_NO_DBG 0x00 /* No areas are logged */
449 #define MPTCP_STATE_DBG 0x01 /* State machine logging */
450 #define MPTCP_SOCKET_DBG 0x02 /* Socket call logging */
451 #define MPTCP_SENDER_DBG 0x04 /* Sender side logging */
452 #define MPTCP_RECEIVER_DBG 0x08 /* Receiver logging */
453 #define MPTCP_EVENTS_DBG 0x10 /* Subflow events logging */
454 #define MPTCP_ALL_DBG (MPTCP_STATE_DBG | MPTCP_SOCKET_DBG | \
455 MPTCP_SENDER_DBG | MPTCP_RECEIVER_DBG | MPTCP_EVENTS_DBG)
457 /* Mask to obtain 32-bit portion of data sequence number */
458 #define MPTCP_DATASEQ_LOW32_MASK (0xffffffff)
459 #define MPTCP_DATASEQ_LOW32(seq) (seq & MPTCP_DATASEQ_LOW32_MASK)
461 /* Mask to obtain upper 32-bit portion of data sequence number */
462 #define MPTCP_DATASEQ_HIGH32_MASK (0xffffffff00000000)
463 #define MPTCP_DATASEQ_HIGH32(seq) (seq & MPTCP_DATASEQ_HIGH32_MASK)
465 /* Mask to obtain 32-bit portion of data ack */
466 #define MPTCP_DATAACK_LOW32_MASK (0xffffffff)
467 #define MPTCP_DATAACK_LOW32(ack) (ack & MPTCP_DATAACK_LOW32_MASK)
469 /* Mask to obtain upper 32-bit portion of data ack */
470 #define MPTCP_DATAACK_HIGH32_MASK (0xffffffff00000000)
471 #define MPTCP_DATAACK_HIGH32(ack) (ack & MPTCP_DATAACK_HIGH32_MASK)
474 * x is the 64-bit data sequence number, y the 32-bit data seq number to be
475 * extended. z is y extended to the appropriate 64-bit value.
476 * This algorithm is based on the fact that subflow level window sizes are
477 * at the maximum 2**30 (in reality, they are a lot lesser). A high throughput
478 * application sending on a large number of subflows can in theory have very
479 * large MPTCP level send and receive windows. In which case, 64 bit DSNs
480 * must be sent in place of 32 bit DSNs on wire. For us, with 2 subflows at
481 * 512K each, sequence wraparound detection can be done by checking whether
482 * the 32-bit value obtained on wire is 2**31 bytes apart from the stored
483 * lower 32-bits of the Data Sequence Number. Bogus DSNs are dropped by
484 * comparing against rwnd. Bogus DSNs within rwnd cannot be protected against
485 * and are as weak as bogus TCP sequence numbers.
487 #define MPTCP_EXTEND_DSN(x, y, z) { \
488 if ((MPTCP_DATASEQ_LOW32(x) > y) && \
489 ((((u_int32_t)MPTCP_DATASEQ_LOW32(x)) - (u_int32_t)y) >= \
490 (u_int32_t)(1 << 31))) { \
492 * y wrapped around and x and y are 2**31 bytes apart \
494 z = MPTCP_DATASEQ_HIGH32(x) + 0x100000000; \
496 } else if ((MPTCP_DATASEQ_LOW32(x) < y) && \
498 ((u_int32_t)MPTCP_DATASEQ_LOW32(x))) >= \
499 (u_int32_t)(1 << 31))) { \
501 * x wrapped around and x and y are 2**31 apart \
503 z = MPTCP_DATASEQ_HIGH32(x) - 0x100000000; \
506 z = MPTCP_DATASEQ_HIGH32(x) | y; \
510 #define mptcplog(x, y, z) do { \
511 if ((mptcp_dbg_area & y) && \
512 (mptcp_dbg_level >= z)) \
516 extern int mptcp_enable
; /* Multipath TCP */
517 extern int mptcp_mpcap_retries
; /* Multipath TCP retries */
518 extern int mptcp_join_retries
; /* Multipath TCP Join retries */
519 extern int mptcp_dss_csum
; /* Multipath DSS Option checksum */
520 extern int mptcp_fail_thresh
; /* Multipath failover thresh of retransmits */
521 extern int mptcp_subflow_keeptime
; /* Multipath subflow TCP_KEEPALIVE opt */
522 extern int mptcp_mpprio_enable
; /* MP_PRIO option enable/disable */
523 extern int mptcp_remaddr_enable
;/* REMOVE_ADDR option enable/disable */
524 extern int mptcp_fastjoin
; /* Enable FastJoin */
525 extern int mptcp_zerortt_fastjoin
; /* Enable Data after SYN Fast Join */
526 extern int mptcp_rwnotify
; /* Enable RW notification on resume */
527 extern uint32_t mptcp_dbg_level
; /* Multipath TCP debugging level */
528 extern uint32_t mptcp_dbg_area
; /* Multipath TCP debugging area */
530 #define MPPCB_LIMIT 16
531 extern uint32_t mptcp_socket_limit
; /* max number of mptcp sockets allowed */
532 extern uint32_t mptcp_delayed_subf_start
; /* delayed cellular subflow start */
533 extern int tcp_jack_rxmt
; /* Join ACK retransmission value in msecs */
536 extern void mptcp_init(struct protosw
*, struct domain
*);
537 extern int mptcp_ctloutput(struct socket
*, struct sockopt
*);
538 extern void *mptcp_sescreate(struct socket
*, struct mppcb
*);
539 extern void mptcp_drain(void);
540 extern struct mptses
*mptcp_drop(struct mptses
*, struct mptcb
*, int);
541 extern struct mptses
*mptcp_close(struct mptses
*, struct mptcb
*);
542 extern int mptcp_lock(struct socket
*, int, void *);
543 extern int mptcp_unlock(struct socket
*, int, void *);
544 extern lck_mtx_t
*mptcp_getlock(struct socket
*, int);
545 extern void mptcp_thread_signal(struct mptses
*);
546 extern void mptcp_flush_sopts(struct mptses
*);
547 extern int mptcp_setconnorder(struct mptses
*, sae_connid_t
, uint32_t);
548 extern int mptcp_getconnorder(struct mptses
*, sae_connid_t
, uint32_t *);
550 extern struct mptopt
*mptcp_sopt_alloc(int);
551 extern const char *mptcp_sopt2str(int, int, char *, int);
552 extern void mptcp_sopt_free(struct mptopt
*);
553 extern void mptcp_sopt_insert(struct mptses
*, struct mptopt
*);
554 extern void mptcp_sopt_remove(struct mptses
*, struct mptopt
*);
555 extern struct mptopt
*mptcp_sopt_find(struct mptses
*, struct sockopt
*);
557 extern struct mptsub
*mptcp_subflow_alloc(int);
558 extern void mptcp_subflow_free(struct mptsub
*);
559 extern void mptcp_subflow_addref(struct mptsub
*, int);
560 extern int mptcp_subflow_add(struct mptses
*, struct mptsub
*,
561 struct proc
*, uint32_t);
562 extern void mptcp_subflow_del(struct mptses
*, struct mptsub
*, boolean_t
);
563 extern void mptcp_subflow_remref(struct mptsub
*);
564 extern int mptcp_subflow_output(struct mptses
*, struct mptsub
*);
565 extern void mptcp_subflow_disconnect(struct mptses
*, struct mptsub
*,
567 extern void mptcp_subflow_sopeeloff(struct mptses
*, struct mptsub
*,
569 extern int mptcp_subflow_sosetopt(struct mptses
*, struct socket
*,
571 extern int mptcp_subflow_sogetopt(struct mptses
*, struct socket
*,
574 extern void mptcp_input(struct mptses
*, struct mbuf
*);
575 extern int mptcp_output(struct mptses
*);
576 extern void mptcp_close_fsm(struct mptcb
*, uint32_t);
578 extern mptcp_token_t
mptcp_get_localtoken(void *);
579 extern mptcp_token_t
mptcp_get_remotetoken(void *);
581 extern u_int64_t
mptcp_get_localkey(void *);
582 extern u_int64_t
mptcp_get_remotekey(void *);
584 extern void mptcp_free_key(mptcp_key_t
*key
);
585 extern void mptcp_hmac_sha1(mptcp_key_t
, mptcp_key_t
, u_int32_t
, u_int32_t
,
587 extern void mptcp_get_hmac(mptcp_addr_id
, struct mptcb
*, u_char
*, int);
588 extern void mptcp_get_rands(mptcp_addr_id
, struct mptcb
*, u_int32_t
*,
590 extern void mptcp_set_raddr_rand(mptcp_addr_id
, struct mptcb
*, mptcp_addr_id
,
592 extern u_int64_t
mptcp_get_trunced_hmac(mptcp_addr_id
, struct mptcb
*mp_tp
);
593 extern void mptcp_generate_token(char *, int, caddr_t
, int);
594 extern void mptcp_generate_idsn(char *, int, caddr_t
, int);
595 extern int mptcp_init_remote_parms(struct mptcb
*);
596 extern boolean_t
mptcp_ok_to_keepalive(struct mptcb
*);
597 extern void mptcp_insert_dsn(struct mppcb
*, struct mbuf
*);
598 extern void mptcp_output_getm_dsnmap32(struct socket
*, int, uint32_t,
599 u_int32_t
*, u_int32_t
*, u_int16_t
*, u_int64_t
*);
600 extern void mptcp_output_getm_dsnmap64(struct socket
*, int, uint32_t,
601 u_int64_t
*, u_int32_t
*, u_int16_t
*);
602 extern void mptcp_send_dfin(struct socket
*);
603 extern void mptcp_act_on_txfail(struct socket
*);
604 extern struct mptsub
*mptcp_get_subflow(struct mptses
*, struct mptsub
*,
606 extern struct mptsub
*mptcp_get_pending_subflow(struct mptses
*,
608 extern struct mptsub
* mptcp_use_symptoms_hints(struct mptsub
*,
610 extern int mptcp_get_map_for_dsn(struct socket
*, u_int64_t
, u_int32_t
*);
611 extern int32_t mptcp_adj_sendlen(struct socket
*so
, int32_t off
, int32_t len
);
612 extern int32_t mptcp_sbspace(struct mptcb
*);
613 extern void mptcp_notify_mpready(struct socket
*);
614 extern void mptcp_notify_mpfail(struct socket
*);
615 extern void mptcp_notify_close(struct socket
*);
616 extern boolean_t
mptcp_no_rto_spike(struct socket
*);
617 extern int mptcp_set_notsent_lowat(struct mptses
*mpte
, int optval
);
618 extern u_int32_t
mptcp_get_notsent_lowat(struct mptses
*mpte
);
619 extern int mptcp_notsent_lowat_check(struct socket
*so
);
620 extern void mptcp_control_register(void);
621 extern int mptcp_is_wifi_unusable(void);
622 extern int mptcp_is_cell_unusable(void);
625 #endif /* BSD_KERNEL_PRIVATE */
628 typedef struct mptcp_flow
{
630 size_t flow_tcpci_offset
;
632 sae_connid_t flow_cid
;
633 struct sockaddr_storage flow_src
;
634 struct sockaddr_storage flow_dst
;
635 uint64_t flow_sndnxt
; /* subflow's sndnxt snapshot */
636 uint32_t flow_relseq
; /* last subflow rel seq# */
637 int32_t flow_soerror
; /* subflow level error */
638 uint32_t flow_probecnt
; /* number of probes sent */
639 uint32_t flow_peerswitch
;/* did peer switch */
640 conninfo_tcp_t flow_ci
; /* must be the last field */
643 typedef struct conninfo_mptcp
{
645 size_t mptcpci_flow_offset
; /* offsetof first flow */
646 size_t mptcpci_nflows
; /* number of subflows */
647 uint32_t mptcpci_state
; /* MPTCP level state */
648 uint32_t mptcpci_mpte_flags
; /* Session flags */
649 uint32_t mptcpci_flags
; /* MPTCB flags */
650 uint32_t mptcpci_ltoken
; /* local token */
651 uint32_t mptcpci_rtoken
; /* remote token */
652 uint32_t mptcpci_notsent_lowat
; /* NOTSENT_LOWAT */
655 uint64_t mptcpci_snduna
; /* DSN of last unacked byte */
656 uint64_t mptcpci_sndnxt
; /* DSN of next byte to send */
657 uint64_t mptcpci_sndmax
; /* DSN of max byte sent */
658 uint64_t mptcpci_lidsn
; /* Local IDSN */
659 uint32_t mptcpci_sndwnd
; /* Send window snapshot */
662 uint64_t mptcpci_rcvnxt
; /* Next expected DSN */
663 uint64_t mptcpci_rcvatmark
; /* Session level rcvnxt */
664 uint64_t mptcpci_ridsn
; /* Peer's IDSN */
665 uint32_t mptcpci_rcvwnd
; /* Receive window */
667 uint8_t mptcpci_mpte_addrid
; /* last addr id */
669 mptcp_flow_t mptcpci_flows
[1];
672 /* Use SymptomsD notifications of wifi and cell status in subflow selection */
673 #define MPTCP_KERN_CTL_NAME "com.apple.network.advisory"
674 typedef struct symptoms_advisory
{
676 uint32_t sa_nwk_status_int
;
679 #define SYMPTOMS_ADVISORY_NOCOMMENT 0x00
680 uint16_t sa_nwk_status
;
682 #define SYMPTOMS_ADVISORY_WIFI_BAD 0x01
683 #define SYMPTOMS_ADVISORY_WIFI_OK 0x02
684 uint8_t sa_wifi_status
;
685 #define SYMPTOMS_ADVISORY_CELL_BAD 0x01
686 #define SYMPTOMS_ADVISORY_CELL_OK 0x02
687 uint8_t sa_cell_status
;
693 } symptoms_advisory_t
;
697 #endif /* _NETINET_MPTCP_VAR_H_ */