-
Notifications
You must be signed in to change notification settings - Fork 737
Expand file tree
/
Copy pathBSDSocketAPI.swift
More file actions
610 lines (533 loc) · 17.9 KB
/
BSDSocketAPI.swift
File metadata and controls
610 lines (533 loc) · 17.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2020-2021 Apple Inc. and the SwiftNIO project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
#if os(Windows)
import ucrt
import let WinSDK.IPPROTO_IP
import let WinSDK.IPPROTO_IPV6
import let WinSDK.IPPROTO_TCP
import let WinSDK.IPPROTO_UDP
import let WinSDK.IP_ADD_MEMBERSHIP
import let WinSDK.IP_DROP_MEMBERSHIP
import let WinSDK.IP_HDRINCL
import let WinSDK.IP_MULTICAST_IF
import let WinSDK.IP_MULTICAST_LOOP
import let WinSDK.IP_MULTICAST_TTL
import let WinSDK.IPV6_JOIN_GROUP
import let WinSDK.IPV6_LEAVE_GROUP
import let WinSDK.IPV6_MULTICAST_HOPS
import let WinSDK.IPV6_MULTICAST_IF
import let WinSDK.IPV6_MULTICAST_LOOP
import let WinSDK.IPV6_V6ONLY
import let WinSDK.AF_INET
import let WinSDK.AF_INET6
import let WinSDK.AF_UNIX
import let WinSDK.PF_INET
import let WinSDK.PF_INET6
import let WinSDK.PF_UNIX
import let WinSDK.SO_BROADCAST
import let WinSDK.SO_ERROR
import let WinSDK.SO_KEEPALIVE
import let WinSDK.SO_LINGER
import let WinSDK.SO_RCVBUF
import let WinSDK.SO_RCVTIMEO
import let WinSDK.SO_REUSEADDR
import let WinSDK.SO_SNDBUF
import let WinSDK.SOL_SOCKET
import let WinSDK.TCP_NODELAY
import struct WinSDK.SOCKET
import func WinSDK.inet_ntop
import func WinSDK.inet_pton
import func WinSDK.GetLastError
import func WinSDK.WSAGetLastError
internal typealias socklen_t = ucrt.size_t
#elseif os(Linux) || os(Android)
#if canImport(Glibc)
@preconcurrency import Glibc
#elseif canImport(Musl)
@preconcurrency import Musl
#elseif canImport(Android)
@preconcurrency import Android
#endif
import CNIOLinux
#if os(Android)
private let sysInet_ntop:
@convention(c) (CInt, UnsafeRawPointer, UnsafeMutablePointer<CChar>, socklen_t) -> UnsafePointer<CChar>? = inet_ntop
private let sysInet_pton: @convention(c) (CInt, UnsafePointer<CChar>, UnsafeMutableRawPointer) -> CInt = inet_pton
#else
private let sysInet_ntop:
@convention(c) (CInt, UnsafeRawPointer?, UnsafeMutablePointer<CChar>?, socklen_t) -> UnsafePointer<CChar>? =
inet_ntop
private let sysInet_pton: @convention(c) (CInt, UnsafePointer<CChar>?, UnsafeMutableRawPointer?) -> CInt = inet_pton
#endif
#elseif canImport(Darwin)
import Darwin
private let sysInet_ntop:
@convention(c) (CInt, UnsafeRawPointer?, UnsafeMutablePointer<CChar>?, socklen_t) -> UnsafePointer<CChar>? =
inet_ntop
private let sysInet_pton: @convention(c) (CInt, UnsafePointer<CChar>?, UnsafeMutableRawPointer?) -> CInt = inet_pton
#elseif canImport(WASILibc)
@preconcurrency import WASILibc
private let sysInet_ntop:
@convention(c) (CInt, UnsafeRawPointer?, UnsafeMutablePointer<CChar>?, socklen_t) -> UnsafePointer<CChar>? =
inet_ntop
private let sysInet_pton: @convention(c) (CInt, UnsafePointer<CChar>?, UnsafeMutableRawPointer?) -> CInt = inet_pton
#elseif os(FreeBSD)
import Glibc
private let sysInet_ntop:
@convention(c) (CInt, UnsafeRawPointer?, UnsafeMutablePointer<CChar>?, socklen_t) -> UnsafePointer<CChar>? =
__inet_ntop
private let sysInet_pton: @convention(c) (CInt, UnsafePointer<CChar>?, UnsafeMutableRawPointer?) -> CInt = __inet_pton
#else
#error("The BSD Socket module was unable to identify your C library.")
#endif
#if os(Android)
#if compiler(>=6.0)
@usableFromInline let IFF_BROADCAST: CUnsignedInt = numericCast(Android.IFF_BROADCAST.rawValue)
@usableFromInline let IFF_POINTOPOINT: CUnsignedInt = numericCast(Android.IFF_POINTOPOINT.rawValue)
@usableFromInline let IFF_MULTICAST: CUnsignedInt = numericCast(Android.IFF_MULTICAST.rawValue)
#else
@usableFromInline let IFF_BROADCAST: CUnsignedInt = numericCast(SwiftGlibc.IFF_BROADCAST.rawValue)
@usableFromInline let IFF_POINTOPOINT: CUnsignedInt = numericCast(SwiftGlibc.IFF_POINTOPOINT.rawValue)
@usableFromInline let IFF_MULTICAST: CUnsignedInt = numericCast(SwiftGlibc.IFF_MULTICAST.rawValue)
#endif
#if arch(arm)
@usableFromInline let SO_RCVTIMEO = SO_RCVTIMEO_OLD
@usableFromInline let SO_TIMESTAMP = SO_TIMESTAMP_OLD
#endif
#elseif os(Linux)
// Work around SO_TIMESTAMP/SO_RCVTIMEO being awkwardly defined in glibc.
@usableFromInline let SO_TIMESTAMP = CNIOLinux_SO_TIMESTAMP
@usableFromInline let SO_RCVTIMEO = CNIOLinux_SO_RCVTIMEO
#endif
public enum NIOBSDSocket: Sendable {
#if os(Windows)
public typealias Handle = SOCKET
#else
public typealias Handle = CInt
#endif
}
extension NIOBSDSocket {
/// Specifies the addressing scheme that the socket can use.
public struct AddressFamily: RawRepresentable, Sendable {
public typealias RawValue = CInt
public var rawValue: RawValue
@inlinable
public init(rawValue: RawValue) {
self.rawValue = rawValue
}
}
}
extension NIOBSDSocket.AddressFamily: Equatable {
}
extension NIOBSDSocket.AddressFamily: Hashable {
}
extension NIOBSDSocket {
/// Specifies the type of protocol that the socket can use.
public struct ProtocolFamily: RawRepresentable, Sendable {
public typealias RawValue = CInt
public var rawValue: RawValue
@inlinable
public init(rawValue: RawValue) {
self.rawValue = rawValue
}
}
}
extension NIOBSDSocket.ProtocolFamily: Equatable {
}
extension NIOBSDSocket.ProtocolFamily: Hashable {
}
extension NIOBSDSocket {
/// Defines socket option levels.
public struct OptionLevel: RawRepresentable, Sendable {
public typealias RawValue = CInt
public var rawValue: RawValue
@inlinable
public init(rawValue: RawValue) {
self.rawValue = rawValue
}
}
}
extension NIOBSDSocket.OptionLevel: Equatable {
}
extension NIOBSDSocket.OptionLevel: Hashable {
}
extension NIOBSDSocket {
/// Defines configuration option names.
public struct Option: RawRepresentable, Sendable {
public typealias RawValue = CInt
public var rawValue: RawValue
@inlinable
public init(rawValue: RawValue) {
self.rawValue = rawValue
}
}
}
extension NIOBSDSocket.Option: Equatable {
}
extension NIOBSDSocket.Option: Hashable {
}
// Address Family
extension NIOBSDSocket.AddressFamily {
/// Address for IP version 4.
@inlinable
public static var inet: NIOBSDSocket.AddressFamily {
NIOBSDSocket.AddressFamily(rawValue: AF_INET)
}
/// Address for IP version 6.
@inlinable
public static var inet6: NIOBSDSocket.AddressFamily {
NIOBSDSocket.AddressFamily(rawValue: AF_INET6)
}
/// Unix local to host address.
@inlinable
public static var unix: NIOBSDSocket.AddressFamily {
NIOBSDSocket.AddressFamily(rawValue: AF_UNIX)
}
}
// Protocol Family
extension NIOBSDSocket.ProtocolFamily {
/// IP network 4 protocol.
@inlinable
public static var inet: NIOBSDSocket.ProtocolFamily {
NIOBSDSocket.ProtocolFamily(rawValue: PF_INET)
}
/// IP network 6 protocol.
@inlinable
public static var inet6: NIOBSDSocket.ProtocolFamily {
NIOBSDSocket.ProtocolFamily(rawValue: PF_INET6)
}
#if !os(WASI)
/// UNIX local to the host.
@inlinable
public static var unix: NIOBSDSocket.ProtocolFamily {
NIOBSDSocket.ProtocolFamily(rawValue: PF_UNIX)
}
#endif
}
#if !os(Windows) && !os(WASI)
extension NIOBSDSocket.ProtocolFamily {
/// UNIX local to the host, alias for `PF_UNIX` (`.unix`)
@inlinable
public static var local: NIOBSDSocket.ProtocolFamily {
NIOBSDSocket.ProtocolFamily(rawValue: PF_LOCAL)
}
}
#endif
// Option Level
extension NIOBSDSocket.OptionLevel {
/// Socket options that apply only to IP sockets.
#if os(Linux) || os(Android)
@inlinable
public static var ip: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: CInt(IPPROTO_IP))
}
#else
@inlinable
public static var ip: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: IPPROTO_IP)
}
#endif
/// Socket options that apply only to IPv6 sockets.
#if os(Linux) || os(Android)
@inlinable
public static var ipv6: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: CInt(IPPROTO_IPV6))
}
#elseif os(Windows)
@inlinable
public static var ipv6: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: IPPROTO_IPV6.rawValue)
}
#else
@inlinable
public static var ipv6: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: IPPROTO_IPV6)
}
#endif
/// Socket options that apply only to TCP sockets.
#if os(Linux) || os(Android)
@inlinable
public static var tcp: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: CInt(IPPROTO_TCP))
}
#elseif os(Windows)
@inlinable
public static var tcp: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: IPPROTO_TCP.rawValue)
}
#else
@inlinable
public static var tcp: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: IPPROTO_TCP)
}
#endif
/// Socket options that apply to MPTCP sockets.
///
/// These only work on Linux currently.
@inlinable
public static var mptcp: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: 284)
}
/// Socket options that apply to all sockets.
@inlinable
public static var socket: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: SOL_SOCKET)
}
/// Socket options that apply only to UDP sockets.
#if os(Linux) || os(Android)
@inlinable
public static var udp: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: CInt(IPPROTO_UDP))
}
#elseif os(Windows)
@inlinable
public static var udp: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: IPPROTO_UDP.rawValue)
}
#else
@inlinable
public static var udp: NIOBSDSocket.OptionLevel {
NIOBSDSocket.OptionLevel(rawValue: IPPROTO_UDP)
}
#endif
}
// IPv4 Options
extension NIOBSDSocket.Option {
/// Add a multicast group membership.
@inlinable
public static var ip_add_membership: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: IP_ADD_MEMBERSHIP)
}
/// Drop a multicast group membership.
@inlinable
public static var ip_drop_membership: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: IP_DROP_MEMBERSHIP)
}
/// Set the interface for outgoing multicast packets.
@inlinable
public static var ip_multicast_if: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: IP_MULTICAST_IF)
}
/// Control multicast loopback.
@inlinable
public static var ip_multicast_loop: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: IP_MULTICAST_LOOP)
}
/// Control multicast time-to-live.
@inlinable
public static var ip_multicast_ttl: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: IP_MULTICAST_TTL)
}
/// The IPv4 layer generates an IP header when sending a packet
/// unless the ``ip_hdrincl`` socket option is enabled on the socket.
/// When it is enabled, the packet must contain an IP header. For
/// receiving, the IP header is always included in the packet.
@inlinable
public static var ip_hdrincl: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: IP_HDRINCL)
}
}
// IPv6 Options
extension NIOBSDSocket.Option {
/// Add an IPv6 group membership.
@inlinable
public static var ipv6_join_group: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: IPV6_JOIN_GROUP)
}
/// Drop an IPv6 group membership.
@inlinable
public static var ipv6_leave_group: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: IPV6_LEAVE_GROUP)
}
/// Specify the maximum number of router hops for an IPv6 packet.
@inlinable
public static var ipv6_multicast_hops: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: IPV6_MULTICAST_HOPS)
}
/// Set the interface for outgoing multicast packets.
@inlinable
public static var ipv6_multicast_if: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: IPV6_MULTICAST_IF)
}
/// Control multicast loopback.
@inlinable
public static var ipv6_multicast_loop: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: IPV6_MULTICAST_LOOP)
}
/// Indicates if a socket created for the `AF_INET6` address family is
/// restricted to IPv6 only.
@inlinable
public static var ipv6_v6only: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: IPV6_V6ONLY)
}
}
// TCP Options
extension NIOBSDSocket.Option {
/// Disables the Nagle algorithm for send coalescing.
@inlinable
public static var tcp_nodelay: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: TCP_NODELAY)
}
}
#if os(Linux) || os(FreeBSD) || os(Android)
extension NIOBSDSocket.Option {
/// Get information about the TCP connection.
@inlinable
public static var tcp_info: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: TCP_INFO)
}
}
#endif
#if canImport(Darwin)
extension NIOBSDSocket.Option {
/// Get information about the TCP connection.
@inlinable
public static var tcp_connection_info: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: TCP_CONNECTION_INFO)
}
}
#endif
#if os(Linux)
extension NIOBSDSocket.Option {
// Note: UDP_SEGMENT and UDP_GRO are not available on all Linux platforms so values are
// hardcoded.
/// Use UDP segmentation offload (UDP_SEGMENT, or 'GSO'). Only available on Linux.
@inlinable
public static var udp_segment: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: 103)
}
/// Use UDP generic receive offload (GRO). Only available on Linux.
@inlinable
public static var udp_gro: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: 104)
}
}
#endif
// MPTCP options
//
// These values are hardcoded as they're fairly new, and not available in all
// header files yet.
extension NIOBSDSocket.Option {
/// Get info about an MPTCP connection
@inlinable
public static var mptcp_info: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: 1)
}
}
#if !os(WASI)
// Socket Options
extension NIOBSDSocket.Option {
/// Get the error status and clear.
@inlinable
public static var so_error: NIOBSDSocket.Option {
Self(rawValue: SO_ERROR)
}
/// Use keep-alives.
@inlinable
public static var so_keepalive: NIOBSDSocket.Option {
Self(rawValue: SO_KEEPALIVE)
}
/// Linger on close if unsent data is present.
@inlinable
public static var so_linger: NIOBSDSocket.Option {
Self(rawValue: SO_LINGER)
}
/// Specifies the total per-socket buffer space reserved for receives.
@inlinable
public static var so_rcvbuf: NIOBSDSocket.Option {
Self(rawValue: SO_RCVBUF)
}
/// Specifies the total per-socket buffer space reserved for sends.
@inlinable
public static var so_sndbuf: NIOBSDSocket.Option {
Self(rawValue: SO_SNDBUF)
}
/// Specifies the receive timeout.
@inlinable
public static var so_rcvtimeo: NIOBSDSocket.Option {
Self(rawValue: SO_RCVTIMEO)
}
/// Allows the socket to be bound to an address that is already in use.
@inlinable
public static var so_reuseaddr: NIOBSDSocket.Option {
Self(rawValue: SO_REUSEADDR)
}
/// Allows the socket to send broadcast messages.
@inlinable
public static var so_broadcast: NIOBSDSocket.Option {
Self(rawValue: SO_BROADCAST)
}
}
#endif
#if !os(Windows) && !os(WASI)
extension NIOBSDSocket.Option {
/// Indicate when to generate timestamps.
@inlinable
public static var so_timestamp: NIOBSDSocket.Option {
NIOBSDSocket.Option(rawValue: SO_TIMESTAMP)
}
}
#endif
extension NIOBSDSocket {
// Sadly this was defined on BSDSocket, and we need it for SocketAddress.
@inline(never)
internal static func inet_pton(
addressFamily: NIOBSDSocket.AddressFamily,
addressDescription: UnsafePointer<CChar>,
address: UnsafeMutableRawPointer
) throws {
#if os(Windows)
// TODO(compnerd) use `InetPtonW` to ensure that we handle unicode properly
switch WinSDK.inet_pton(addressFamily.rawValue, addressDescription, address) {
case 0: throw IOError(errnoCode: EINVAL, reason: "inet_pton")
case 1: return
default: throw IOError(winsock: WSAGetLastError(), reason: "inet_pton")
}
#else
switch sysInet_pton(CInt(addressFamily.rawValue), addressDescription, address) {
case 0: throw IOError(errnoCode: EINVAL, reason: #function)
case 1: return
default: throw IOError(errnoCode: errno, reason: #function)
}
#endif
}
@discardableResult
@inline(never)
internal static func inet_ntop(
addressFamily: NIOBSDSocket.AddressFamily,
addressBytes: UnsafeRawPointer,
addressDescription: UnsafeMutablePointer<CChar>,
addressDescriptionLength: socklen_t
) throws -> UnsafePointer<CChar> {
#if os(Windows)
// TODO(compnerd) use `InetNtopW` to ensure that we handle unicode properly
guard
let result = WinSDK.inet_ntop(
addressFamily.rawValue,
addressBytes,
addressDescription,
Int(addressDescriptionLength)
)
else {
throw IOError(windows: GetLastError(), reason: "inet_ntop")
}
return result
#else
switch sysInet_ntop(CInt(addressFamily.rawValue), addressBytes, addressDescription, addressDescriptionLength) {
case .none: throw IOError(errnoCode: errno, reason: #function)
case .some(let ptr): return ptr
}
#endif
}
}