forked from PerfectlySoft/Perfect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetTCPSSL.swift
558 lines (476 loc) · 13.7 KB
/
NetTCPSSL.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
//
// NetTCPSSL.swift
// PerfectLib
//
// Created by Kyle Jessup on 2015-09-23.
// Copyright (C) 2015 PerfectlySoft, Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version, as supplemented by the
// Perfect Additional Terms.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License, as supplemented by the
// Perfect Additional Terms, for more details.
//
// You should have received a copy of the GNU Affero General Public License
// and the Perfect Additional Terms that immediately follow the terms and
// conditions of the GNU Affero General Public License along with this
// program. If not, see <http://www.perfect.org/AGPL_3_0_With_Perfect_Additional_Terms.txt>.
//
import OpenSSL
private typealias passwordCallbackFunc = @convention(c) (UnsafeMutablePointer<Int8>, Int32, Int32, UnsafeMutablePointer<Void>) -> Int32
public class NetTCPSSL : NetTCP {
public class X509 {
private let ptr: UnsafeMutablePointer<OpenSSL.X509>
init(ptr: UnsafeMutablePointer<OpenSSL.X509>) {
self.ptr = ptr
}
deinit {
X509_free(self.ptr)
}
public var publicKeyBytes: [UInt8] {
let pk = X509_get_pubkey(self.ptr)
let len = Int(i2d_PUBKEY(pk, nil))
var mp = UnsafeMutablePointer<UInt8>()
defer {
free(mp)
EVP_PKEY_free(pk)
}
i2d_PUBKEY(pk, &mp)
var ret = [UInt8]()
ret.reserveCapacity(len)
for b in 0..<len {
ret.append(mp[b])
}
return ret
}
}
static var dispatchOnce = Threading.ThreadOnce()
private var sharedSSLCtx = true
private var sslCtx: UnsafeMutablePointer<SSL_CTX>?
private var ssl: UnsafeMutablePointer<SSL>?
public var keyFilePassword: String = "" {
didSet {
if !self.keyFilePassword.isEmpty {
self.initSocket()
let opaqueMe = UnsafeMutablePointer<Void>(Unmanaged.passUnretained(self).toOpaque())
let callback: passwordCallbackFunc = {
(buf, size, rwflag, userData) -> Int32 in
let crl = Unmanaged<NetTCPSSL>.fromOpaque(COpaquePointer(userData)).takeUnretainedValue()
return crl.passwordCallback(buf, size: size, rwflag: rwflag)
}
SSL_CTX_set_default_passwd_cb_userdata(self.sslCtx!, opaqueMe)
SSL_CTX_set_default_passwd_cb(self.sslCtx!, callback)
}
}
}
public var peerCertificate: X509? {
guard let ssl = self.ssl else {
return nil
}
let cert = SSL_get_peer_certificate(ssl)
if cert != nil {
return X509(ptr: cert)
}
return nil
}
public var cipherList: [String] {
get {
var a = [String]()
guard let ssl = self.ssl else {
return a
}
var i = Int32(0)
while true {
let n = SSL_get_cipher_list(ssl, i)
if n != nil {
a.append(String.fromCString(n)!)
} else {
break
}
i += 1
}
return a
}
set(list) {
let listStr = list.joinWithSeparator(",")
if let ctx = self.sslCtx {
if 0 == SSL_CTX_set_cipher_list(ctx, listStr) {
print("SSL_CTX_set_cipher_list failed: \(self.errorStr(Int32(self.errorCode())))")
}
}
if let ssl = self.ssl {
if 0 == SSL_set_cipher_list(ssl, listStr) {
print("SSL_CTX_set_cipher_list failed: \(self.errorStr(Int32(self.errorCode())))")
}
}
}
}
public func setTmpDH(path: String) -> Bool {
guard let ctx = self.sslCtx else {
return false
}
let bio = BIO_new_file(path, "r")
if bio == nil {
return false
}
let dh = PEM_read_bio_DHparams(bio, nil, nil, nil)
SSL_CTX_ctrl(ctx, SSL_CTRL_SET_TMP_DH, 0, dh)
DH_free(dh)
BIO_free(bio)
return true
}
public var usingSSL: Bool {
return self.sslCtx != nil
}
public override init() {
super.init()
Threading.once(&NetTCPSSL.dispatchOnce) {
SSL_library_init()
ERR_load_crypto_strings()
SSL_load_error_strings()
}
}
deinit {
if let ssl = self.ssl {
SSL_shutdown(ssl)
SSL_free(ssl)
}
if let sslCtx = self.sslCtx where self.sharedSSLCtx == false {
SSL_CTX_free(sslCtx)
}
}
func passwordCallback(buf:UnsafeMutablePointer<Int8>, size:Int32, rwflag:Int32) -> Int32 {
let chars = self.keyFilePassword.utf8
memmove(buf, self.keyFilePassword, chars.count + 1)
return Int32(chars.count)
}
override public func initSocket() {
super.initSocket()
guard self.sslCtx == nil else {
return
}
self.sslCtx = SSL_CTX_new(TLSv1_2_method())
guard let sslCtx = self.sslCtx else {
return
}
self.sharedSSLCtx = false
SSL_CTX_ctrl(sslCtx, SSL_CTRL_SET_ECDH_AUTO, 1, nil)
SSL_CTX_ctrl(sslCtx, SSL_CTRL_MODE, SSL_MODE_AUTO_RETRY, nil)
SSL_CTX_ctrl(sslCtx, SSL_CTRL_OPTIONS, SSL_OP_ALL, nil)
self.ssl = SSL_new(sslCtx)
SSL_set_fd(self.ssl!, self.fd.fd)
}
public func errorCode() -> UInt {
let err = ERR_get_error()
return err
}
public func sslErrorCode(resultCode: Int32) -> Int32 {
if let ssl = self.ssl {
let err = SSL_get_error(ssl, resultCode)
return err
}
return -1
}
public func errorStr(errorCode: Int32) -> String {
let maxLen = 1024
let buf = UnsafeMutablePointer<Int8>.alloc(maxLen)
defer {
buf.destroy() ; buf.dealloc(maxLen)
}
ERR_error_string_n(UInt(errorCode), buf, maxLen)
let ret = String.fromCString(buf) ?? ""
return ret
}
public func reasonErrorStr(errorCode: Int32) -> String {
let buf = ERR_reason_error_string(UInt(errorCode))
let ret = String.fromCString(buf) ?? ""
return ret
}
override func isEAgain(err: Int) -> Bool {
if err == -1 && self.usingSSL {
let sslErr = SSL_get_error(self.ssl!, Int32(err))
if sslErr != SSL_ERROR_SYSCALL {
return sslErr == SSL_ERROR_WANT_READ || sslErr == SSL_ERROR_WANT_WRITE
}
}
return super.isEAgain(err)
}
override func evWhatFor(operation: Int32) -> Int32 {
if self.usingSSL {
let sslErr = SSL_get_error(self.ssl!, -1)
if sslErr == SSL_ERROR_WANT_READ {
return EV_READ
} else if sslErr == SSL_ERROR_WANT_WRITE {
return EV_WRITE
}
}
return super.evWhatFor(operation)
}
override func recv(buf: UnsafeMutablePointer<Void>, count: Int) -> Int {
if self.usingSSL {
let i = Int(SSL_read(self.ssl!, buf, Int32(count)))
return i
}
return super.recv(buf, count: count)
}
override func send(buf: UnsafePointer<Void>, count: Int) -> Int {
if self.usingSSL {
let i = Int(SSL_write(self.ssl!, buf, Int32(count)))
return i
}
return super.send(buf, count: count)
}
override func readBytesFullyIncomplete(into: ReferenceBuffer, read: Int, remaining: Int, timeoutSeconds: Double, completion: ([UInt8]?) -> ()) {
guard usingSSL else {
return super.readBytesFullyIncomplete(into, read: read, remaining: remaining, timeoutSeconds: timeoutSeconds, completion: completion)
}
var what = EV_WRITE
let sslErr = SSL_get_error(self.ssl!, -1)
if sslErr == SSL_ERROR_WANT_READ {
what = EV_READ
}
let event: LibEvent = LibEvent(base: LibEvent.eventBase, fd: fd.fd, what: what, userData: nil) {
(fd:Int32, w:Int16, ud:AnyObject?) -> () in
if (Int32(w) & EV_TIMEOUT) == 0 {
self.readBytesFully(into, read: read, remaining: remaining, timeoutSeconds: timeoutSeconds, completion: completion)
} else {
completion(nil) // timeout or error
}
}
event.add()
}
override func writeBytesIncomplete(nptr: UnsafeMutablePointer<UInt8>, wrote: Int, length: Int, completion: (Int) -> ()) {
guard usingSSL else {
return super.writeBytesIncomplete(nptr, wrote: wrote, length: length, completion: completion)
}
var what = EV_WRITE
let sslErr = SSL_get_error(self.ssl!, -1)
if sslErr == SSL_ERROR_WANT_READ {
what = EV_READ
}
let event: LibEvent = LibEvent(base: LibEvent.eventBase, fd: fd.fd, what: what, userData: nil) {
[weak self] (fd:Int32, w:Int16, ud:AnyObject?) -> () in
self?.writeBytes(nptr, wrote: wrote, length: length, completion: completion)
}
event.add()
}
public override func close() {
if let ssl = self.ssl {
SSL_shutdown(ssl)
SSL_free(ssl)
self.ssl = nil
}
if let sslCtx = self.sslCtx where self.sharedSSLCtx == false {
SSL_CTX_free(sslCtx)
}
self.sslCtx = nil
super.close()
}
public func beginSSL(closure: (Bool) -> ()) {
self.beginSSL(5.0, closure: closure)
}
public func beginSSL(timeout: Double, closure: (Bool) -> ()) {
guard self.fd.fd != invalidSocket else {
closure(false)
return
}
guard let sslCtx = self.sslCtx else {
closure(false)
return
}
guard let ssl = self.ssl else {
closure(false)
return
}
let res = SSL_connect(ssl)
switch res {
case 1:
closure(true)
case 0:
closure(false)
case -1:
let sslErr = SSL_get_error(ssl, res)
if sslErr == SSL_ERROR_WANT_WRITE {
let event: LibEvent = LibEvent(base: LibEvent.eventBase, fd: fd.fd, what: EV_WRITE, userData: nil) {
[weak self] (fd:Int32, w:Int16, ud:AnyObject?) -> () in
if (Int32(w) & EV_WRITE) != 0 {
self?.beginSSL(timeout, closure: closure)
} else {
closure(false)
}
}
event.add(timeout)
return
} else if sslErr == SSL_ERROR_WANT_READ {
let event: LibEvent = LibEvent(base: LibEvent.eventBase, fd: fd.fd, what: EV_READ, userData: nil) {
[weak self] (fd:Int32, w:Int16, ud:AnyObject?) -> () in
if (Int32(w) & EV_READ) != 0 {
self?.beginSSL(timeout, closure: closure)
} else {
closure(false)
}
}
event.add(timeout)
return
} else {
closure(false)
}
default:
closure(false)
}
}
public func endSSL() {
if let ssl = self.ssl {
SSL_free(ssl)
self.ssl = nil
}
if let sslCtx = self.sslCtx {
SSL_CTX_free(sslCtx)
self.sslCtx = nil
}
}
public func shutdown() {
if let ssl = self.ssl {
SSL_shutdown(ssl)
}
}
public func setConnectState() {
if let ssl = self.ssl {
SSL_set_connect_state(ssl)
}
}
public func setAcceptState() {
if let ssl = self.ssl {
SSL_set_accept_state(ssl)
}
}
public func setDefaultVerifyPaths() -> Bool {
self.initSocket()
guard let sslCtx = self.sslCtx else {
return false
}
let r = SSL_CTX_set_default_verify_paths(sslCtx)
return r == 1
}
public func setVerifyLocations(caFilePath: String, caDirPath: String) -> Bool {
self.initSocket()
guard let sslCtx = self.sslCtx else {
return false
}
let r = SSL_CTX_load_verify_locations(sslCtx, caFilePath, caDirPath)
return r == 1
}
public func useCertificateFile(cert: String) -> Bool {
self.initSocket()
guard let sslCtx = self.sslCtx else {
return false
}
let r = SSL_CTX_use_certificate_file(sslCtx, cert, SSL_FILETYPE_PEM)
return r == 1
}
public func useCertificateChainFile(cert: String) -> Bool {
self.initSocket()
guard let sslCtx = self.sslCtx else {
return false
}
let r = SSL_CTX_use_certificate_chain_file(sslCtx, cert)
return r == 1
}
public func usePrivateKeyFile(cert: String) -> Bool {
self.initSocket()
guard let sslCtx = self.sslCtx else {
return false
}
let r = SSL_CTX_use_PrivateKey_file(sslCtx, cert, SSL_FILETYPE_PEM)
return r == 1
}
public func checkPrivateKey() -> Bool {
self.initSocket()
guard let sslCtx = self.sslCtx else {
return false
}
let r = SSL_CTX_check_private_key(sslCtx)
return r == 1
}
override func makeFromFd(fd: Int32) -> NetTCP {
return NetTCPSSL(fd: fd)
}
override public func forEachAccept(callBack: (NetTCP?) -> ()) {
super.forEachAccept {
[unowned self] (net:NetTCP?) -> () in
if let netSSL = net as? NetTCPSSL {
netSSL.sslCtx = self.sslCtx
netSSL.ssl = SSL_new(self.sslCtx!)
SSL_set_fd(netSSL.ssl!, netSSL.fd.fd)
self.finishAccept(-1, net: netSSL, callBack: callBack)
} else {
callBack(net)
}
}
}
override public func accept(timeoutSeconds: Double, callBack: (NetTCP?) -> ()) throws {
try super.accept(timeoutSeconds, callBack: {
[unowned self] (net:NetTCP?) -> () in
if let netSSL = net as? NetTCPSSL {
netSSL.sslCtx = self.sslCtx
netSSL.ssl = SSL_new(self.sslCtx!)
SSL_set_fd(netSSL.ssl!, netSSL.fd.fd)
self.finishAccept(timeoutSeconds, net: netSSL, callBack: callBack)
} else {
callBack(net)
}
})
}
func finishAccept(timeoutSeconds: Double, net: NetTCPSSL, callBack: (NetTCP?) -> ()) {
let res = SSL_accept(net.ssl!)
let sslErr = SSL_get_error(net.ssl!, res)
if res == -1 {
if sslErr == SSL_ERROR_WANT_WRITE {
let event: LibEvent = LibEvent(base: LibEvent.eventBase, fd: net.fd.fd, what: EV_WRITE, userData: nil) {
(fd:Int32, w:Int16, ud:AnyObject?) -> () in
if (Int32(w) & EV_TIMEOUT) != 0 {
callBack(nil)
} else {
self.finishAccept(timeoutSeconds, net: net, callBack: callBack)
}
}
event.add(timeoutSeconds)
} else if sslErr == SSL_ERROR_WANT_READ {
let event: LibEvent = LibEvent(base: LibEvent.eventBase, fd: net.fd.fd, what: EV_READ, userData: nil) {
(fd:Int32, w:Int16, ud:AnyObject?) -> () in
if (Int32(w) & EV_TIMEOUT) != 0 {
callBack(nil)
} else {
self.finishAccept(timeoutSeconds, net: net, callBack: callBack)
}
}
event.add(timeoutSeconds)
} else {
callBack(nil)
}
} else {
callBack(net)
}
}
// private func throwSSLNetworkError(err: Int32) throws {
// if err != 0 {
// let maxLen = 1024
// let buf = UnsafeMutablePointer<Int8>.alloc(maxLen)
// defer {
// buf.destroy() ; buf.dealloc(maxLen)
// }
// ERR_error_string_n(self.sslErrorCode, buf, maxLen)
// let msg = String.fromCString(buf) ?? ""
//
// print("SSL NetworkError: \(err) \(msg)")
//
// throw PerfectError.NetworkError(err, msg)
// }
// }
}