-
Notifications
You must be signed in to change notification settings - Fork 661
/
Copy pathSystem.swift
1090 lines (1010 loc) · 34 KB
/
System.swift
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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2017-2024 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
//
//===----------------------------------------------------------------------===//
// This file contains code that ensures errno is captured correctly when doing syscalls and no ARC traffic can happen inbetween that *could* change the errno
// value before we were able to read it.
// It's important that all static methods are declared with `@inline(never)` so it's not possible any ARC traffic happens while we need to read errno.
import NIOCore
#if canImport(Darwin)
@_exported import Darwin.C
import CNIODarwin
internal typealias MMsgHdr = CNIODarwin_mmsghdr
#elseif os(Linux) || os(FreeBSD) || os(Android)
#if canImport(Glibc)
@_exported @preconcurrency import Glibc
#elseif canImport(Musl)
@_exported @preconcurrency import Musl
#elseif canImport(Android)
@_exported @preconcurrency import Android
#endif
import CNIOLinux
internal typealias MMsgHdr = CNIOLinux_mmsghdr
internal typealias in6_pktinfo = CNIOLinux_in6_pktinfo
#elseif os(Windows)
@_exported import ucrt
import CNIOWindows
internal typealias MMsgHdr = CNIOWindows_mmsghdr
#else
#error("The POSIX system module was unable to identify your C library.")
#endif
#if os(Android)
let INADDR_ANY = UInt32(0) // #define INADDR_ANY ((unsigned long int) 0x00000000)
#if compiler(>=6.0)
let IFF_BROADCAST: CUnsignedInt = numericCast(Android.IFF_BROADCAST.rawValue)
let IFF_POINTOPOINT: CUnsignedInt = numericCast(Android.IFF_POINTOPOINT.rawValue)
let IFF_MULTICAST: CUnsignedInt = numericCast(Android.IFF_MULTICAST.rawValue)
#else
let IFF_BROADCAST: CUnsignedInt = numericCast(SwiftGlibc.IFF_BROADCAST.rawValue)
let IFF_POINTOPOINT: CUnsignedInt = numericCast(SwiftGlibc.IFF_POINTOPOINT.rawValue)
let IFF_MULTICAST: CUnsignedInt = numericCast(SwiftGlibc.IFF_MULTICAST.rawValue)
#endif
internal typealias in_port_t = UInt16
extension ipv6_mreq { // http://lkml.iu.edu/hypermail/linux/kernel/0106.1/0080.html
init(ipv6mr_multiaddr: in6_addr, ipv6mr_interface: UInt32) {
self.init(
ipv6mr_multiaddr: ipv6mr_multiaddr,
ipv6mr_ifindex: Int32(bitPattern: ipv6mr_interface)
)
}
}
#if arch(arm)
#if compiler(>=6.0)
let S_IFSOCK = UInt32(Android.S_IFSOCK)
let S_IFMT = UInt32(Android.S_IFMT)
let S_IFREG = UInt32(Android.S_IFREG)
let S_IFDIR = UInt32(Android.S_IFDIR)
let S_IFLNK = UInt32(Android.S_IFLNK)
let S_IFBLK = UInt32(Android.S_IFBLK)
#else
let S_IFSOCK = UInt32(SwiftGlibc.S_IFSOCK)
let S_IFMT = UInt32(SwiftGlibc.S_IFMT)
let S_IFREG = UInt32(SwiftGlibc.S_IFREG)
let S_IFDIR = UInt32(SwiftGlibc.S_IFDIR)
let S_IFLNK = UInt32(SwiftGlibc.S_IFLNK)
let S_IFBLK = UInt32(SwiftGlibc.S_IFBLK)
#endif
#endif
#endif
// Declare aliases to share more code and not need to repeat #if #else blocks
#if !os(Windows)
private let sysClose = close
private let sysShutdown = shutdown
private let sysBind = bind
private let sysFcntl: @Sendable @convention(c) (CInt, CInt, CInt) -> CInt = { fcntl($0, $1, $2) }
private let sysSocket = socket
private let sysSetsockopt = setsockopt
private let sysGetsockopt = getsockopt
private let sysListen = listen
private let sysAccept = accept
private let sysConnect = connect
private let sysOpen: @Sendable @convention(c) (UnsafePointer<CChar>, CInt) -> CInt = { open($0, $1) }
private let sysOpenWithMode: @Sendable @convention(c) (UnsafePointer<CChar>, CInt, mode_t) -> CInt = {
open($0, $1, $2)
}
private let sysFtruncate = ftruncate
private let sysWrite = write
private let sysPwrite = pwrite
private let sysRead = read
private let sysPread = pread
private let sysLseek = lseek
private let sysPoll = poll
#endif
#if os(Android)
func sysRecvFrom_wrapper(
sockfd: CInt,
buf: UnsafeMutableRawPointer,
len: CLong,
flags: CInt,
src_addr: UnsafeMutablePointer<sockaddr>,
addrlen: UnsafeMutablePointer<socklen_t>
) -> CLong {
// src_addr is 'UnsafeMutablePointer', but it need to be 'UnsafePointer'
recvfrom(sockfd, buf, len, flags, src_addr, addrlen)
// src_addr is 'UnsafeMutablePointer', but it need to be 'UnsafePointer'
}
func sysWritev_wrapper(fd: CInt, iov: UnsafePointer<iovec>?, iovcnt: CInt) -> CLong {
CLong(writev(fd, iov!, iovcnt)) // cast 'Int32' to 'CLong'// cast 'Int32' to 'CLong'
}
private let sysWritev = sysWritev_wrapper
#elseif !os(Windows)
private let sysWritev: @convention(c) (Int32, UnsafePointer<iovec>?, CInt) -> CLong = writev
#endif
#if canImport(Android)
private let sysRecvMsg: @convention(c) (CInt, UnsafeMutablePointer<msghdr>, CInt) -> ssize_t = recvmsg
private let sysSendMsg: @convention(c) (CInt, UnsafePointer<msghdr>, CInt) -> ssize_t = sendmsg
#elseif !os(Windows)
private let sysRecvMsg: @convention(c) (CInt, UnsafeMutablePointer<msghdr>?, CInt) -> ssize_t = recvmsg
private let sysSendMsg: @convention(c) (CInt, UnsafePointer<msghdr>?, CInt) -> ssize_t = sendmsg
#endif
private let sysDup: @convention(c) (CInt) -> CInt = dup
#if canImport(Android)
private let sysGetpeername:
@convention(c) (CInt, UnsafeMutablePointer<sockaddr>, UnsafeMutablePointer<socklen_t>) -> CInt = getpeername
private let sysGetsockname:
@convention(c) (CInt, UnsafeMutablePointer<sockaddr>, UnsafeMutablePointer<socklen_t>) -> CInt = getsockname
#elseif !os(Windows)
private let sysGetpeername:
@convention(c) (CInt, UnsafeMutablePointer<sockaddr>?, UnsafeMutablePointer<socklen_t>?) -> CInt = getpeername
private let sysGetsockname:
@convention(c) (CInt, UnsafeMutablePointer<sockaddr>?, UnsafeMutablePointer<socklen_t>?) -> CInt = getsockname
#endif
#if os(Android)
private let sysIfNameToIndex: @convention(c) (UnsafePointer<CChar>) -> CUnsignedInt = if_nametoindex
#else
private let sysIfNameToIndex: @convention(c) (UnsafePointer<CChar>?) -> CUnsignedInt = if_nametoindex
#endif
#if canImport(Android)
private let sysSocketpair: @convention(c) (CInt, CInt, CInt, UnsafeMutablePointer<CInt>) -> CInt = socketpair
#elseif !os(Windows)
private let sysSocketpair: @convention(c) (CInt, CInt, CInt, UnsafeMutablePointer<CInt>?) -> CInt = socketpair
#endif
#if os(Linux) || os(Android) || canImport(Darwin)
private let sysFstat = fstat
private let sysStat = stat
private let sysLstat = lstat
private let sysSymlink = symlink
private let sysReadlink = readlink
private let sysUnlink = unlink
private let sysMkdir = mkdir
private let sysOpendir = opendir
private let sysReaddir = readdir
private let sysClosedir = closedir
private let sysRename = rename
private let sysRemove = remove
#endif
#if os(Linux) || os(Android)
private let sysSendMmsg = CNIOLinux_sendmmsg
private let sysRecvMmsg = CNIOLinux_recvmmsg
#elseif canImport(Darwin)
private let sysKevent = kevent
private let sysMkpath = mkpath_np
private let sysSendMmsg = CNIODarwin_sendmmsg
private let sysRecvMmsg = CNIODarwin_recvmmsg
#endif
#if !os(Windows)
private let sysIoctl: @convention(c) (CInt, CUnsignedLong, UnsafeMutableRawPointer) -> CInt = ioctl
#endif // !os(Windows)
@inlinable
func isUnacceptableErrno(_ code: CInt) -> Bool {
// On iOS, EBADF is a possible result when a file descriptor has been reaped in the background.
// In particular, it's possible to get EBADF from accept(), where the underlying accept() FD
// is valid but the accepted one is not. The right solution here is to perform a check for
// SO_ISDEFUNCT when we see this happen, but we haven't yet invested the time to do that.
// In the meantime, we just tolerate EBADF on iOS.
#if canImport(Darwin) && !os(macOS)
switch code {
case EFAULT:
return true
default:
return false
}
#else
switch code {
case EFAULT, EBADF:
return true
default:
return false
}
#endif
}
@inlinable
public func isUnacceptableErrnoOnClose(_ code: CInt) -> Bool {
// We treat close() differently to all other FDs: we still want to catch EBADF here.
switch code {
case EFAULT, EBADF:
return true
default:
return false
}
}
@inlinable
internal func isUnacceptableErrnoForbiddingEINVAL(_ code: CInt) -> Bool {
// We treat read() and pread() differently since we also want to catch EINVAL.
#if canImport(Darwin) && !os(macOS)
switch code {
case EFAULT, EINVAL:
return true
default:
return false
}
#else
switch code {
case EFAULT, EBADF, EINVAL:
return true
default:
return false
}
#endif
}
#if os(Windows)
@inlinable
internal func strerror(_ errno: CInt) -> String {
withUnsafeTemporaryAllocation(of: CChar.self, capacity: 95) {
let result = strerror_s($0.baseAddress, $0.count, errno)
guard result == 0 else { return "Unknown error: \(errno)" }
return String(cString: $0.baseAddress!)
}
}
#endif
@inlinable
internal func preconditionIsNotUnacceptableErrno(err: CInt, where function: String) {
// strerror is documented to return "Unknown error: ..." for illegal value so it won't ever fail
#if os(Windows)
precondition(!isUnacceptableErrno(err), "unacceptable errno \(err) \(strerror(err)) in \(function))")
#else
precondition(
!isUnacceptableErrno(err),
"unacceptable errno \(err) \(String(cString: strerror(err)!)) in \(function))"
)
#endif
}
@inlinable
internal func preconditionIsNotUnacceptableErrnoOnClose(err: CInt, where function: String) {
// strerror is documented to return "Unknown error: ..." for illegal value so it won't ever fail
#if os(Windows)
precondition(!isUnacceptableErrnoOnClose(err), "unacceptable errno \(err) \(strerror(err)) in \(function))")
#else
precondition(
!isUnacceptableErrnoOnClose(err),
"unacceptable errno \(err) \(String(cString: strerror(err)!)) in \(function))"
)
#endif
}
@inlinable
internal func preconditionIsNotUnacceptableErrnoForbiddingEINVAL(err: CInt, where function: String) {
// strerror is documented to return "Unknown error: ..." for illegal value so it won't ever fail
#if os(Windows)
precondition(
!isUnacceptableErrnoForbiddingEINVAL(err),
"unacceptable errno \(err) \(strerror(err)) in \(function))"
)
#else
precondition(
!isUnacceptableErrnoForbiddingEINVAL(err),
"unacceptable errno \(err) \(String(cString: strerror(err)!)) in \(function))"
)
#endif
}
// Sorry, we really try hard to not use underscored attributes. In this case
// however we seem to break the inlining threshold which makes a system call
// take twice the time, ie. we need this exception.
@inline(__always)
@discardableResult
@inlinable
internal func syscall<T: FixedWidthInteger>(
blocking: Bool,
where function: String = #function,
_ body: () throws -> T
)
throws -> IOResult<T>
{
while true {
let res = try body()
if res == -1 {
#if os(Windows)
var err: CInt = 0
_get_errno(&err)
#else
let err = errno
#endif
switch (err, blocking) {
case (EINTR, _):
continue
case (EWOULDBLOCK, true):
return .wouldBlock(0)
default:
preconditionIsNotUnacceptableErrno(err: err, where: function)
throw IOError(errnoCode: err, reason: function)
}
}
return .processed(res)
}
}
#if canImport(Darwin)
@inline(__always)
@inlinable
@discardableResult
internal func syscall<T>(
where function: String = #function,
_ body: () throws -> UnsafeMutablePointer<T>?
)
throws -> UnsafeMutablePointer<T>
{
while true {
if let res = try body() {
return res
} else {
let err = errno
switch err {
case EINTR:
continue
default:
preconditionIsNotUnacceptableErrno(err: err, where: function)
throw IOError(errnoCode: err, reason: function)
}
}
}
}
#elseif os(Linux) || os(Android)
@inline(__always)
@inlinable
@discardableResult
internal func syscall(
where function: String = #function,
_ body: () throws -> OpaquePointer?
)
throws -> OpaquePointer
{
while true {
if let res = try body() {
return res
} else {
let err = errno
switch err {
case EINTR:
continue
default:
preconditionIsNotUnacceptableErrno(err: err, where: function)
throw IOError(errnoCode: err, reason: function)
}
}
}
}
#endif
#if !os(Windows)
@inline(__always)
@inlinable
@discardableResult
internal func syscallOptional<T>(
where function: String = #function,
_ body: () throws -> UnsafeMutablePointer<T>?
)
throws -> UnsafeMutablePointer<T>?
{
while true {
errno = 0
if let res = try body() {
return res
} else {
let err = errno
switch err {
case 0:
return nil
case EINTR:
continue
default:
preconditionIsNotUnacceptableErrno(err: err, where: function)
throw IOError(errnoCode: err, reason: function)
}
}
}
}
#endif
// Sorry, we really try hard to not use underscored attributes. In this case
// however we seem to break the inlining threshold which makes a system call
// take twice the time, ie. we need this exception.
@inline(__always)
@inlinable
@discardableResult
internal func syscallForbiddingEINVAL<T: FixedWidthInteger>(
where function: String = #function,
_ body: () throws -> T
)
throws -> IOResult<T>
{
while true {
let res = try body()
if res == -1 {
#if os(Windows)
var err: CInt = 0
_get_errno(&err)
#else
let err = errno
#endif
switch err {
case EINTR:
continue
case EWOULDBLOCK:
return .wouldBlock(0)
default:
preconditionIsNotUnacceptableErrnoForbiddingEINVAL(err: err, where: function)
throw IOError(errnoCode: err, reason: function)
}
}
return .processed(res)
}
}
@usableFromInline
internal enum Posix: Sendable {
#if canImport(Darwin)
@usableFromInline
static let UIO_MAXIOV: Int = 1024
@usableFromInline
static let SHUT_RD: CInt = CInt(Darwin.SHUT_RD)
@usableFromInline
static let SHUT_WR: CInt = CInt(Darwin.SHUT_WR)
@usableFromInline
static let SHUT_RDWR: CInt = CInt(Darwin.SHUT_RDWR)
#elseif os(Linux) || os(FreeBSD) || os(Android)
#if canImport(Glibc)
@usableFromInline
static let UIO_MAXIOV: Int = Int(Glibc.UIO_MAXIOV)
@usableFromInline
static let SHUT_RD: CInt = CInt(Glibc.SHUT_RD)
@usableFromInline
static let SHUT_WR: CInt = CInt(Glibc.SHUT_WR)
@usableFromInline
static let SHUT_RDWR: CInt = CInt(Glibc.SHUT_RDWR)
#elseif canImport(Musl)
@usableFromInline
static let UIO_MAXIOV: Int = Int(Musl.UIO_MAXIOV)
@usableFromInline
static let SHUT_RD: CInt = CInt(Musl.SHUT_RD)
@usableFromInline
static let SHUT_WR: CInt = CInt(Musl.SHUT_WR)
@usableFromInline
static let SHUT_RDWR: CInt = CInt(Musl.SHUT_RDWR)
#elseif canImport(Android)
@usableFromInline
static let UIO_MAXIOV: Int = Int(Android.UIO_MAXIOV)
@usableFromInline
static let SHUT_RD: CInt = CInt(Android.SHUT_RD)
@usableFromInline
static let SHUT_WR: CInt = CInt(Android.SHUT_WR)
@usableFromInline
static let SHUT_RDWR: CInt = CInt(Android.SHUT_RDWR)
#endif
#else
@usableFromInline
static var UIO_MAXIOV: Int {
fatalError("unsupported OS")
}
@usableFromInline
static var SHUT_RD: Int {
fatalError("unsupported OS")
}
@usableFromInline
static var SHUT_WR: Int {
fatalError("unsupported OS")
}
@usableFromInline
static var SHUT_RDWR: Int {
fatalError("unsupported OS")
}
#endif
#if canImport(Darwin)
static let IPTOS_ECN_NOTECT: CInt = CNIODarwin_IPTOS_ECN_NOTECT
static let IPTOS_ECN_MASK: CInt = CNIODarwin_IPTOS_ECN_MASK
static let IPTOS_ECN_ECT0: CInt = CNIODarwin_IPTOS_ECN_ECT0
static let IPTOS_ECN_ECT1: CInt = CNIODarwin_IPTOS_ECN_ECT1
static let IPTOS_ECN_CE: CInt = CNIODarwin_IPTOS_ECN_CE
#elseif os(Linux) || os(FreeBSD) || os(Android)
#if os(Android)
static let IPTOS_ECN_NOTECT: CInt = CInt(CNIOLinux.IPTOS_ECN_NOTECT)
#else
static let IPTOS_ECN_NOTECT: CInt = CInt(CNIOLinux.IPTOS_ECN_NOT_ECT)
#endif
static let IPTOS_ECN_MASK: CInt = CInt(CNIOLinux.IPTOS_ECN_MASK)
static let IPTOS_ECN_ECT0: CInt = CInt(CNIOLinux.IPTOS_ECN_ECT0)
static let IPTOS_ECN_ECT1: CInt = CInt(CNIOLinux.IPTOS_ECN_ECT1)
static let IPTOS_ECN_CE: CInt = CInt(CNIOLinux.IPTOS_ECN_CE)
#elseif os(Windows)
static let IPTOS_ECN_NOTECT: CInt = CInt(0x00)
static let IPTOS_ECN_MASK: CInt = CInt(0x03)
static let IPTOS_ECN_ECT0: CInt = CInt(0x02)
static let IPTOS_ECN_ECT1: CInt = CInt(0x01)
static let IPTOS_ECN_CE: CInt = CInt(0x03)
#endif
#if canImport(Darwin)
static let IP_RECVPKTINFO: CInt = CNIODarwin.IP_RECVPKTINFO
static let IP_PKTINFO: CInt = CNIODarwin.IP_PKTINFO
static let IPV6_RECVPKTINFO: CInt = CNIODarwin_IPV6_RECVPKTINFO
static let IPV6_PKTINFO: CInt = CNIODarwin_IPV6_PKTINFO
#elseif os(Linux) || os(FreeBSD) || os(Android)
static let IP_RECVPKTINFO: CInt = CInt(CNIOLinux.IP_PKTINFO)
static let IP_PKTINFO: CInt = CInt(CNIOLinux.IP_PKTINFO)
static let IPV6_RECVPKTINFO: CInt = CInt(CNIOLinux.IPV6_RECVPKTINFO)
static let IPV6_PKTINFO: CInt = CInt(CNIOLinux.IPV6_PKTINFO)
#elseif os(Windows)
static let IP_PKTINFO: CInt = CInt(WinSDK.IP_PKTINFO)
static let IPV6_PKTINFO: CInt = CInt(WinSDK.IPV6_PKTINFO)
#endif
#if !os(Windows)
@inline(never)
public static func shutdown(descriptor: CInt, how: Shutdown) throws {
_ = try syscall(blocking: false) {
sysShutdown(descriptor, how.cValue)
}
}
@inline(never)
public static func close(descriptor: CInt) throws {
let res = sysClose(descriptor)
if res == -1 {
#if os(Windows)
var err: CInt = 0
_get_errno(&err)
#else
let err = errno
#endif
// There is really nothing "good" we can do when EINTR was reported on close.
// So just ignore it and "assume" everything is fine == we closed the file descriptor.
//
// For more details see:
// - https://bugs.chromium.org/p/chromium/issues/detail?id=269623
// - https://lwn.net/Articles/576478/
if err != EINTR {
preconditionIsNotUnacceptableErrnoOnClose(err: err, where: #function)
throw IOError(errnoCode: err, reason: "close")
}
}
}
@inline(never)
public static func bind(descriptor: CInt, ptr: UnsafePointer<sockaddr>, bytes: Int) throws {
_ = try syscall(blocking: false) {
sysBind(descriptor, ptr, socklen_t(bytes))
}
}
@inline(never)
@discardableResult
@usableFromInline
// TODO: Allow varargs
internal static func fcntl(descriptor: CInt, command: CInt, value: CInt) throws -> CInt {
try syscall(blocking: false) {
sysFcntl(descriptor, command, value)
}.result
}
@inline(never)
public static func socket(
domain: NIOBSDSocket.ProtocolFamily,
type: NIOBSDSocket.SocketType,
protocolSubtype: NIOBSDSocket.ProtocolSubtype
) throws -> CInt {
try syscall(blocking: false) {
sysSocket(domain.rawValue, type.rawValue, protocolSubtype.rawValue)
}.result
}
@inline(never)
public static func setsockopt(
socket: CInt,
level: CInt,
optionName: CInt,
optionValue: UnsafeRawPointer,
optionLen: socklen_t
) throws {
_ = try syscall(blocking: false) {
sysSetsockopt(socket, level, optionName, optionValue, optionLen)
}
}
@inline(never)
public static func getsockopt(
socket: CInt,
level: CInt,
optionName: CInt,
optionValue: UnsafeMutableRawPointer,
optionLen: UnsafeMutablePointer<socklen_t>
) throws {
_ = try syscall(blocking: false) {
sysGetsockopt(socket, level, optionName, optionValue, optionLen)
}.result
}
@inline(never)
public static func listen(descriptor: CInt, backlog: CInt) throws {
_ = try syscall(blocking: false) {
sysListen(descriptor, backlog)
}
}
@inline(never)
public static func accept(
descriptor: CInt,
addr: UnsafeMutablePointer<sockaddr>?,
len: UnsafeMutablePointer<socklen_t>?
) throws -> CInt? {
let result: IOResult<CInt> = try syscall(blocking: true) {
sysAccept(descriptor, addr, len)
}
if case .processed(let fd) = result {
return fd
} else {
return nil
}
}
@inline(never)
public static func connect(descriptor: CInt, addr: UnsafePointer<sockaddr>, size: socklen_t) throws -> Bool {
do {
_ = try syscall(blocking: false) {
sysConnect(descriptor, addr, size)
}
return true
} catch let err as IOError {
if err.errnoCode == EINPROGRESS {
return false
}
throw err
}
}
@inline(never)
public static func open(file: UnsafePointer<CChar>, oFlag: CInt, mode: mode_t) throws -> CInt {
try syscall(blocking: false) {
sysOpenWithMode(file, oFlag, mode)
}.result
}
@inline(never)
public static func open(file: UnsafePointer<CChar>, oFlag: CInt) throws -> CInt {
try syscall(blocking: false) {
sysOpen(file, oFlag)
}.result
}
@inline(never)
@discardableResult
public static func ftruncate(descriptor: CInt, size: off_t) throws -> CInt {
try syscall(blocking: false) {
sysFtruncate(descriptor, size)
}.result
}
@inline(never)
public static func write(descriptor: CInt, pointer: UnsafeRawPointer, size: Int) throws -> IOResult<Int> {
try syscall(blocking: true) {
sysWrite(descriptor, pointer, size)
}
}
@inline(never)
public static func pwrite(
descriptor: CInt,
pointer: UnsafeRawPointer,
size: Int,
offset: off_t
) throws -> IOResult<Int> {
try syscall(blocking: true) {
sysPwrite(descriptor, pointer, size, offset)
}
}
#if !os(Windows)
@inline(never)
public static func writev(descriptor: CInt, iovecs: UnsafeBufferPointer<IOVector>) throws -> IOResult<Int> {
try syscall(blocking: true) {
sysWritev(descriptor, iovecs.baseAddress!, CInt(iovecs.count))
}
}
#endif
@inline(never)
public static func read(
descriptor: CInt,
pointer: UnsafeMutableRawPointer,
size: size_t
) throws -> IOResult<ssize_t> {
try syscallForbiddingEINVAL {
sysRead(descriptor, pointer, size)
}
}
@inline(never)
public static func pread(
descriptor: CInt,
pointer: UnsafeMutableRawPointer,
size: size_t,
offset: off_t
) throws -> IOResult<ssize_t> {
try syscallForbiddingEINVAL {
sysPread(descriptor, pointer, size, offset)
}
}
@inline(never)
public static func recvmsg(
descriptor: CInt,
msgHdr: UnsafeMutablePointer<msghdr>,
flags: CInt
) throws -> IOResult<ssize_t> {
try syscall(blocking: true) {
sysRecvMsg(descriptor, msgHdr, flags)
}
}
@inline(never)
public static func sendmsg(
descriptor: CInt,
msgHdr: UnsafePointer<msghdr>,
flags: CInt
) throws -> IOResult<ssize_t> {
try syscall(blocking: true) {
sysSendMsg(descriptor, msgHdr, flags)
}
}
@discardableResult
@inline(never)
public static func lseek(descriptor: CInt, offset: off_t, whence: CInt) throws -> off_t {
try syscall(blocking: false) {
sysLseek(descriptor, offset, whence)
}.result
}
#endif
@discardableResult
@inline(never)
public static func dup(descriptor: CInt) throws -> CInt {
try syscall(blocking: false) {
sysDup(descriptor)
}.result
}
#if !os(Windows)
// It's not really posix but exists on Linux and MacOS / BSD so just put it here for now to keep it simple
@inline(never)
public static func sendfile(descriptor: CInt, fd: CInt, offset: off_t, count: size_t) throws -> IOResult<Int> {
var written: off_t = 0
do {
_ = try syscall(blocking: false) { () -> ssize_t in
#if canImport(Darwin)
var w: off_t = off_t(count)
let result: CInt = Darwin.sendfile(fd, descriptor, offset, &w, nil, 0)
written = w
return ssize_t(result)
#elseif os(Linux) || os(FreeBSD) || os(Android)
var off: off_t = offset
#if canImport(Glibc)
let result: ssize_t = Glibc.sendfile(descriptor, fd, &off, count)
#elseif canImport(Musl)
let result: ssize_t = Musl.sendfile(descriptor, fd, &off, count)
#elseif canImport(Android)
let result: ssize_t = Android.sendfile(descriptor, fd, &off, count)
#endif
if result >= 0 {
written = off_t(result)
} else {
written = 0
}
return result
#else
fatalError("unsupported OS")
#endif
}
return .processed(Int(written))
} catch let err as IOError {
if err.errnoCode == EAGAIN {
return .wouldBlock(Int(written))
}
throw err
}
}
@inline(never)
public static func sendmmsg(
sockfd: CInt,
msgvec: UnsafeMutablePointer<MMsgHdr>,
vlen: CUnsignedInt,
flags: CInt
) throws -> IOResult<Int> {
try syscall(blocking: true) {
Int(sysSendMmsg(sockfd, msgvec, vlen, flags))
}
}
@inline(never)
public static func recvmmsg(
sockfd: CInt,
msgvec: UnsafeMutablePointer<MMsgHdr>,
vlen: CUnsignedInt,
flags: CInt,
timeout: UnsafeMutablePointer<timespec>?
) throws -> IOResult<Int> {
try syscall(blocking: true) {
Int(sysRecvMmsg(sockfd, msgvec, vlen, flags, timeout))
}
}
@inline(never)
public static func getpeername(
socket: CInt,
address: UnsafeMutablePointer<sockaddr>,
addressLength: UnsafeMutablePointer<socklen_t>
) throws {
_ = try syscall(blocking: false) {
sysGetpeername(socket, address, addressLength)
}
}
@inline(never)
public static func getsockname(
socket: CInt,
address: UnsafeMutablePointer<sockaddr>,
addressLength: UnsafeMutablePointer<socklen_t>
) throws {
_ = try syscall(blocking: false) {
sysGetsockname(socket, address, addressLength)
}
}
#endif
@inline(never)
public static func if_nametoindex(_ name: UnsafePointer<CChar>?) throws -> CUnsignedInt {
try syscall(blocking: false) {
sysIfNameToIndex(name!)
}.result
}
#if !os(Windows)
@inline(never)
public static func poll(fds: UnsafeMutablePointer<pollfd>, nfds: nfds_t, timeout: CInt) throws -> CInt {
try syscall(blocking: false) {
sysPoll(fds, nfds, timeout)
}.result
}
@inline(never)
public static func fstat(descriptor: CInt, outStat: UnsafeMutablePointer<stat>) throws {
_ = try syscall(blocking: false) {
sysFstat(descriptor, outStat)
}
}
@inline(never)
public static func stat(pathname: String, outStat: UnsafeMutablePointer<stat>) throws {
_ = try syscall(blocking: false) {
sysStat(pathname, outStat)
}
}
@inline(never)
public static func lstat(pathname: String, outStat: UnsafeMutablePointer<stat>) throws {
_ = try syscall(blocking: false) {
sysLstat(pathname, outStat)
}
}
@inline(never)
public static func symlink(pathname: String, destination: String) throws {
_ = try syscall(blocking: false) {
sysSymlink(destination, pathname)
}
}
@inline(never)
public static func readlink(
pathname: String,
outPath: UnsafeMutablePointer<CChar>,
outPathSize: Int
) throws -> CLong {
try syscall(blocking: false) {
sysReadlink(pathname, outPath, outPathSize)
}.result
}
@inline(never)
public static func unlink(pathname: String) throws {
_ = try syscall(blocking: false) {
sysUnlink(pathname)
}
}
@inline(never)
public static func mkdir(pathname: String, mode: mode_t) throws {
_ = try syscall(blocking: false) {
sysMkdir(pathname, mode)
}
}
#if canImport(Darwin)
@inline(never)
public static func mkpath_np(pathname: String, mode: mode_t) throws {
_ = try syscall(blocking: false) {
sysMkpath(pathname, mode)
}
}
@inline(never)
public static func opendir(pathname: String) throws -> UnsafeMutablePointer<DIR> {
try syscall {
sysOpendir(pathname)
}
}
@inline(never)
public static func readdir(dir: UnsafeMutablePointer<DIR>) throws -> UnsafeMutablePointer<dirent>? {
try syscallOptional {
sysReaddir(dir)
}
}
@inline(never)
public static func closedir(dir: UnsafeMutablePointer<DIR>) throws {
_ = try syscall(blocking: true) {
sysClosedir(dir)
}
}
#elseif os(Linux) || os(FreeBSD) || os(Android)
@inline(never)
public static func opendir(pathname: String) throws -> OpaquePointer {
try syscall {
sysOpendir(pathname)
}
}
@inline(never)
public static func readdir(dir: OpaquePointer) throws -> UnsafeMutablePointer<dirent>? {
try syscallOptional {
sysReaddir(dir)
}
}
@inline(never)
public static func closedir(dir: OpaquePointer) throws {
_ = try syscall(blocking: true) {
sysClosedir(dir)
}
}
#endif
@inline(never)
public static func rename(pathname: String, newName: String) throws {
_ = try syscall(blocking: true) {
sysRename(pathname, newName)
}
}
@inline(never)