-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathConnectionStateMachine.swift
1215 lines (1041 loc) · 48.4 KB
/
ConnectionStateMachine.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
import NIOCore
struct ConnectionStateMachine {
typealias TransactionState = PostgresBackendMessage.TransactionState
struct ConnectionContext {
let backendKeyData: Optional<BackendKeyData>
var parameters: [String: String]
var transactionState: TransactionState
}
struct BackendKeyData {
let processID: Int32
let secretKey: Int32
}
enum State {
enum TLSConfiguration {
case prefer
case require
}
case initialized
case sslRequestSent(TLSConfiguration)
case sslNegotiated
case sslHandlerAdded
case waitingToStartAuthentication
case authenticating(AuthenticationStateMachine)
case authenticated(BackendKeyData?, [String: String])
case readyForQuery(ConnectionContext)
case extendedQuery(ExtendedQueryStateMachine, ConnectionContext)
case closeCommand(CloseStateMachine, ConnectionContext)
case closing(PSQLError?)
case closed(clientInitiated: Bool, error: PSQLError?)
case modifying
}
enum QuiescingState {
case notQuiescing
case quiescing(closePromise: EventLoopPromise<Void>?)
}
enum ConnectionAction {
struct CleanUpContext {
enum Action {
case close
case fireChannelInactive
}
let action: Action
/// Tasks to fail with the error
let tasks: [PSQLTask]
let error: PSQLError
let closePromise: EventLoopPromise<Void>?
}
case read
case wait
case sendSSLRequest
case establishSSLConnection
case provideAuthenticationContext
case forwardNotificationToListeners(PostgresBackendMessage.NotificationResponse)
case fireEventReadyForQuery
case fireChannelInactive
/// Close the connection by sending a `Terminate` message and then closing the connection. This is for clean shutdowns.
case closeConnection(EventLoopPromise<Void>?)
/// Close connection because of an error state. Fail all tasks with the provided error.
case closeConnectionAndCleanup(CleanUpContext)
// Auth Actions
case sendStartupMessage(AuthContext)
case sendPasswordMessage(PasswordAuthencationMode, AuthContext)
case sendSaslInitialResponse(name: String, initialResponse: [UInt8])
case sendSaslResponse([UInt8])
// Connection Actions
// --- general actions
case sendParseDescribeBindExecuteSync(PostgresQuery, promise: EventLoopPromise<Void>?)
case sendBindExecuteSync(PSQLExecuteStatement, promise: EventLoopPromise<Void>?)
case failQuery(EventLoopPromise<PSQLRowStream>, with: PSQLError, cleanupContext: CleanUpContext?)
case succeedQuery(EventLoopPromise<PSQLRowStream>, with: QueryResult)
// --- streaming actions
// actions if query has requested next row but we are waiting for backend
case forwardRows([DataRow])
case forwardStreamComplete([DataRow], commandTag: String)
case forwardStreamError(PSQLError, read: Bool, cleanupContext: CleanUpContext?)
// Prepare statement actions
case sendParseDescribeSync(name: String, query: String, bindingDataTypes: [PostgresDataType], promise: EventLoopPromise<Void>?)
case succeedPreparedStatementCreation(EventLoopPromise<RowDescription?>, with: RowDescription?)
case failPreparedStatementCreation(EventLoopPromise<RowDescription?>, with: PSQLError, cleanupContext: CleanUpContext?)
// Close actions
case sendCloseSync(CloseTarget, promise: EventLoopPromise<Void>?)
case succeedClose(CloseCommandContext)
case failClose(CloseCommandContext, with: PSQLError, cleanupContext: CleanUpContext?)
}
private var state: State
private let requireBackendKeyData: Bool
private var taskQueue = CircularBuffer<PSQLTask>()
private var quiescingState: QuiescingState = .notQuiescing
init(requireBackendKeyData: Bool) {
self.state = .initialized
self.requireBackendKeyData = requireBackendKeyData
}
#if DEBUG
/// for testing purposes only
init(_ state: State, requireBackendKeyData: Bool = true) {
self.state = state
self.requireBackendKeyData = requireBackendKeyData
}
#endif
enum TLSConfiguration {
case disable
case prefer
case require
}
mutating func connected(tls: TLSConfiguration) -> ConnectionAction {
switch self.state {
case .initialized:
switch tls {
case .disable:
self.state = .waitingToStartAuthentication
return .provideAuthenticationContext
case .prefer:
self.state = .sslRequestSent(.prefer)
return .sendSSLRequest
case .require:
self.state = .sslRequestSent(.require)
return .sendSSLRequest
}
case .sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.authenticated,
.readyForQuery,
.extendedQuery,
.closeCommand,
.closing,
.closed,
.modifying:
return .wait
}
}
mutating func provideAuthenticationContext(_ authContext: AuthContext) -> ConnectionAction {
self.startAuthentication(authContext)
}
mutating func gracefulClose(_ promise: EventLoopPromise<Void>?) -> ConnectionAction {
switch self.state {
case .closing, .closed:
// we are already closed, but sometimes an upstream handler might want to close the
// connection, though it has already been closed by the remote. Typical race condition.
return .closeConnection(promise)
case .readyForQuery:
precondition(self.taskQueue.isEmpty, """
The state should only be .readyForQuery if there are no more tasks in the queue
""")
self.state = .closing(nil)
return .closeConnection(promise)
default:
switch self.quiescingState {
case .notQuiescing:
self.quiescingState = .quiescing(closePromise: promise)
case .quiescing(.some(let closePromise)):
closePromise.futureResult.cascade(to: promise)
case .quiescing(.none):
self.quiescingState = .quiescing(closePromise: promise)
}
return .wait
}
}
mutating func close(promise: EventLoopPromise<Void>?) -> ConnectionAction {
return self.closeConnectionAndCleanup(.clientClosedConnection(underlying: nil), closePromise: promise)
}
mutating func closed() -> ConnectionAction {
switch self.state {
case .initialized:
preconditionFailure("How can a connection be closed, if it was never connected.")
case .closed:
return .wait
case .authenticated,
.sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.readyForQuery,
.extendedQuery,
.closeCommand:
return self.errorHappened(.serverClosedConnection(underlying: nil))
case .closing(let error):
self.state = .closed(clientInitiated: true, error: error)
self.quiescingState = .notQuiescing
return .fireChannelInactive
case .modifying:
preconditionFailure("Invalid state")
}
}
mutating func sslSupportedReceived(unprocessedBytes: Int) -> ConnectionAction {
switch self.state {
case .sslRequestSent:
if unprocessedBytes > 0 {
return self.closeConnectionAndCleanup(.receivedUnencryptedDataAfterSSLRequest)
}
self.state = .sslNegotiated
return .establishSSLConnection
case .initialized,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.authenticated,
.readyForQuery,
.extendedQuery,
.closeCommand,
.closing,
.closed:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.sslSupported))
case .modifying:
preconditionFailure("Invalid state: \(self.state)")
}
}
mutating func sslUnsupportedReceived() -> ConnectionAction {
switch self.state {
case .sslRequestSent(.require):
return self.closeConnectionAndCleanup(.sslUnsupported)
case .sslRequestSent(.prefer):
self.state = .waitingToStartAuthentication
return .provideAuthenticationContext
case .initialized,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.authenticated,
.readyForQuery,
.extendedQuery,
.closeCommand,
.closing,
.closed:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.sslSupported))
case .modifying:
preconditionFailure("Invalid state: \(self.state)")
}
}
mutating func sslHandlerAdded() -> ConnectionAction {
switch self.state {
case .initialized,
.sslRequestSent,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.authenticated,
.readyForQuery,
.extendedQuery,
.closeCommand,
.closing,
.closed:
preconditionFailure("Can only add a ssl handler after negotiation: \(self.state)")
case .sslNegotiated:
self.state = .sslHandlerAdded
return .wait
case .modifying:
preconditionFailure("Invalid state: \(self.state)")
}
}
mutating func sslEstablished() -> ConnectionAction {
switch self.state {
case .initialized,
.sslRequestSent,
.sslNegotiated,
.waitingToStartAuthentication,
.authenticating,
.authenticated,
.readyForQuery,
.extendedQuery,
.closeCommand,
.closing,
.closed:
preconditionFailure("Can only establish a ssl connection after adding a ssl handler: \(self.state)")
case .sslHandlerAdded:
self.state = .waitingToStartAuthentication
return .provideAuthenticationContext
case .modifying:
preconditionFailure("Invalid state: \(self.state)")
}
}
mutating func authenticationMessageReceived(_ message: PostgresBackendMessage.Authentication) -> ConnectionAction {
guard case .authenticating(var authState) = self.state else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.authentication(message)))
}
self.state = .modifying // avoid CoW
let action = authState.authenticationMessageReceived(message)
self.state = .authenticating(authState)
return self.modify(with: action)
}
mutating func backendKeyDataReceived(_ keyData: PostgresBackendMessage.BackendKeyData) -> ConnectionAction {
guard case .authenticated(_, let parameters) = self.state else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.backendKeyData(keyData)))
}
let keyData = BackendKeyData(
processID: keyData.processID,
secretKey: keyData.secretKey)
self.state = .authenticated(keyData, parameters)
return .wait
}
mutating func parameterStatusReceived(_ status: PostgresBackendMessage.ParameterStatus) -> ConnectionAction {
switch self.state {
case .sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.closing:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.parameterStatus(status)))
case .authenticated(let keyData, var parameters):
self.state = .modifying // avoid CoW
parameters[status.parameter] = status.value
self.state = .authenticated(keyData, parameters)
return .wait
case .readyForQuery(var connectionContext):
self.state = .modifying // avoid CoW
connectionContext.parameters[status.parameter] = status.value
self.state = .readyForQuery(connectionContext)
return .wait
case .extendedQuery(let query, var connectionContext):
self.state = .modifying // avoid CoW
connectionContext.parameters[status.parameter] = status.value
self.state = .extendedQuery(query, connectionContext)
return .wait
case .closeCommand(let closeState, var connectionContext):
self.state = .modifying // avoid CoW
connectionContext.parameters[status.parameter] = status.value
self.state = .closeCommand(closeState, connectionContext)
return .wait
case .initialized,
.closed:
preconditionFailure("We shouldn't receive messages if we are not connected")
case .modifying:
preconditionFailure("Invalid state")
}
}
mutating func errorReceived(_ errorMessage: PostgresBackendMessage.ErrorResponse) -> ConnectionAction {
switch self.state {
case .sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticated,
.readyForQuery:
return self.closeConnectionAndCleanup(.server(errorMessage))
case .authenticating(var authState):
if authState.isComplete {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.error(errorMessage)))
}
self.state = .modifying // avoid CoW
let action = authState.errorReceived(errorMessage)
self.state = .authenticating(authState)
return self.modify(with: action)
case .closeCommand(var closeStateMachine, let connectionContext):
if closeStateMachine.isComplete {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.error(errorMessage)))
}
self.state = .modifying // avoid CoW
let action = closeStateMachine.errorReceived(errorMessage)
self.state = .closeCommand(closeStateMachine, connectionContext)
return self.modify(with: action)
case .extendedQuery(var extendedQueryState, let connectionContext):
if extendedQueryState.isComplete {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.error(errorMessage)))
}
self.state = .modifying // avoid CoW
let action = extendedQueryState.errorReceived(errorMessage)
self.state = .extendedQuery(extendedQueryState, connectionContext)
return self.modify(with: action)
case .closing:
// If the state machine is in state `.closing`, the connection shutdown was initiated
// by the client. This means a `TERMINATE` message has already been sent and the
// connection close was passed on to the channel. Therefore we await a channelInactive
// as the next event.
// Since a connection close was already issued, we should keep cool and just wait.
return .wait
case .initialized, .closed:
preconditionFailure("We should not receive server errors if we are not connected")
case .modifying:
preconditionFailure("Invalid state")
}
}
mutating func errorHappened(_ error: PSQLError) -> ConnectionAction {
switch self.state {
case .initialized,
.sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticated,
.readyForQuery:
return self.closeConnectionAndCleanup(error)
case .authenticating(var authState):
let action = authState.errorHappened(error)
return self.modify(with: action)
case .extendedQuery(var queryState, _):
if queryState.isComplete {
return self.closeConnectionAndCleanup(error)
} else {
let action = queryState.errorHappened(error)
return self.modify(with: action)
}
case .closeCommand(var closeState, _):
if closeState.isComplete {
return self.closeConnectionAndCleanup(error)
} else {
let action = closeState.errorHappened(error)
return self.modify(with: action)
}
case .closing:
// If the state machine is in state `.closing`, the connection shutdown was initiated
// by the client. This means a `TERMINATE` message has already been sent and the
// connection close was passed on to the channel. Therefore we await a channelInactive
// as the next event.
// For some reason Azure Postgres does not end ssl cleanly when terminating the
// connection. More documentation can be found in the issue:
// https://github.com/vapor/postgres-nio/issues/150
// Since a connection close was already issued, we should keep cool and just wait.
return .wait
case .closed:
return self.closeConnectionAndCleanup(error)
case .modifying:
preconditionFailure("Invalid state")
}
}
mutating func noticeReceived(_ notice: PostgresBackendMessage.NoticeResponse) -> ConnectionAction {
switch self.state {
case .extendedQuery(var extendedQuery, let connectionContext):
self.state = .modifying // avoid CoW
let action = extendedQuery.noticeReceived(notice)
self.state = .extendedQuery(extendedQuery, connectionContext)
return self.modify(with: action)
default:
return .wait
}
}
mutating func notificationReceived(_ notification: PostgresBackendMessage.NotificationResponse) -> ConnectionAction {
return .forwardNotificationToListeners(notification)
}
mutating func readyForQueryReceived(_ transactionState: PostgresBackendMessage.TransactionState) -> ConnectionAction {
switch self.state {
case .authenticated(let backendKeyData, let parameters):
if self.requireBackendKeyData && backendKeyData == nil {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.readyForQuery(transactionState)))
}
let connectionContext = ConnectionContext(
backendKeyData: backendKeyData,
parameters: parameters,
transactionState: transactionState)
self.state = .readyForQuery(connectionContext)
return self.executeNextQueryFromQueue()
case .extendedQuery(let extendedQuery, var connectionContext):
guard extendedQuery.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.readyForQuery(transactionState)))
}
connectionContext.transactionState = transactionState
self.state = .readyForQuery(connectionContext)
return self.executeNextQueryFromQueue()
case .closeCommand(let closeStateMachine, var connectionContext):
guard closeStateMachine.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.readyForQuery(transactionState)))
}
connectionContext.transactionState = transactionState
self.state = .readyForQuery(connectionContext)
return self.executeNextQueryFromQueue()
default:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.readyForQuery(transactionState)))
}
}
mutating func enqueue(task: PSQLTask) -> ConnectionAction {
let psqlErrror: PSQLError
// check if we are quiescing. if so fail task immidiatly
switch self.quiescingState {
case .quiescing:
psqlErrror = PSQLError.clientClosedConnection(underlying: nil)
case .notQuiescing:
switch self.state {
case .initialized,
.authenticated,
.authenticating,
.closeCommand,
.extendedQuery,
.sslNegotiated,
.sslHandlerAdded,
.sslRequestSent,
.waitingToStartAuthentication:
self.taskQueue.append(task)
return .wait
case .readyForQuery:
return self.executeTask(task)
case .closing(let error):
psqlErrror = PSQLError.clientClosedConnection(underlying: error)
case .closed(clientInitiated: true, error: let error):
psqlErrror = PSQLError.clientClosedConnection(underlying: error)
case .closed(clientInitiated: false, error: let error):
psqlErrror = PSQLError.serverClosedConnection(underlying: error)
case .modifying:
preconditionFailure("Invalid state: \(self.state)")
}
}
switch task {
case .extendedQuery(let queryContext, let writePromise):
writePromise?.fail(psqlErrror) /// Use `cleanupContext` or not?
switch queryContext.query {
case .executeStatement(_, let promise), .unnamed(_, let promise):
return .failQuery(promise, with: psqlErrror, cleanupContext: nil)
case .prepareStatement(_, _, _, let promise):
return .failPreparedStatementCreation(promise, with: psqlErrror, cleanupContext: nil)
}
case .closeCommand(let closeContext, let writePromise):
writePromise?.fail(psqlErrror) /// Use `cleanupContext` or not?
return .failClose(closeContext, with: psqlErrror, cleanupContext: nil)
}
}
mutating func channelReadComplete() -> ConnectionAction {
switch self.state {
case .initialized,
.sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.authenticated,
.readyForQuery,
.closeCommand,
.closing,
.closed:
return .wait
case .extendedQuery(var extendedQuery, let connectionContext):
self.state = .modifying // avoid CoW
let action = extendedQuery.channelReadComplete()
self.state = .extendedQuery(extendedQuery, connectionContext)
return self.modify(with: action)
case .modifying:
preconditionFailure("Invalid state")
}
}
mutating func readEventCaught() -> ConnectionAction {
switch self.state {
case .initialized:
preconditionFailure("Invalid state: \(self.state). Read event before connection established?")
case .sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticating,
.authenticated,
.readyForQuery,
.closing:
// all states in which we definitely want to make further forward progress...
return .read
case .extendedQuery(var extendedQuery, let connectionContext):
self.state = .modifying // avoid CoW
let action = extendedQuery.readEventCaught()
self.state = .extendedQuery(extendedQuery, connectionContext)
return self.modify(with: action)
case .closeCommand(var closeState, let connectionContext):
self.state = .modifying // avoid CoW
let action = closeState.readEventCaught()
self.state = .closeCommand(closeState, connectionContext)
return self.modify(with: action)
case .closed:
// Generally we shouldn't see this event (read after connection closed?!).
// But truth is, adopters run into this, again and again. So preconditioning here leads
// to unnecessary crashes. So let's be resilient and just make more forward progress.
// If we really care, we probably need to dive deep into PostgresNIO and SwiftNIO.
return .read
case .modifying:
preconditionFailure("Invalid state: \(self.state)")
}
}
// MARK: - Running Queries -
mutating func parseCompleteReceived() -> ConnectionAction {
switch self.state {
case .extendedQuery(var queryState, let connectionContext) where !queryState.isComplete:
self.state = .modifying // avoid CoW
let action = queryState.parseCompletedReceived()
self.state = .extendedQuery(queryState, connectionContext)
return self.modify(with: action)
default:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.parseComplete))
}
}
mutating func bindCompleteReceived() -> ConnectionAction {
guard case .extendedQuery(var queryState, let connectionContext) = self.state, !queryState.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.bindComplete))
}
self.state = .modifying // avoid CoW
let action = queryState.bindCompleteReceived()
self.state = .extendedQuery(queryState, connectionContext)
return self.modify(with: action)
}
mutating func parameterDescriptionReceived(_ description: PostgresBackendMessage.ParameterDescription) -> ConnectionAction {
switch self.state {
case .extendedQuery(var queryState, let connectionContext) where !queryState.isComplete:
self.state = .modifying // avoid CoW
let action = queryState.parameterDescriptionReceived(description)
self.state = .extendedQuery(queryState, connectionContext)
return self.modify(with: action)
default:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.parameterDescription(description)))
}
}
mutating func rowDescriptionReceived(_ description: RowDescription) -> ConnectionAction {
switch self.state {
case .extendedQuery(var queryState, let connectionContext) where !queryState.isComplete:
self.state = .modifying // avoid CoW
let action = queryState.rowDescriptionReceived(description)
self.state = .extendedQuery(queryState, connectionContext)
return self.modify(with: action)
default:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.rowDescription(description)))
}
}
mutating func noDataReceived() -> ConnectionAction {
switch self.state {
case .extendedQuery(var queryState, let connectionContext) where !queryState.isComplete:
self.state = .modifying // avoid CoW
let action = queryState.noDataReceived()
self.state = .extendedQuery(queryState, connectionContext)
return self.modify(with: action)
default:
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.noData))
}
}
mutating func portalSuspendedReceived() -> ConnectionAction {
self.closeConnectionAndCleanup(.unexpectedBackendMessage(.portalSuspended))
}
mutating func closeCompletedReceived() -> ConnectionAction {
guard case .closeCommand(var closeState, let connectionContext) = self.state, !closeState.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.closeComplete))
}
self.state = .modifying // avoid CoW
let action = closeState.closeCompletedReceived()
self.state = .closeCommand(closeState, connectionContext)
return self.modify(with: action)
}
mutating func commandCompletedReceived(_ commandTag: String) -> ConnectionAction {
guard case .extendedQuery(var queryState, let connectionContext) = self.state, !queryState.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.commandComplete(commandTag)))
}
self.state = .modifying // avoid CoW
let action = queryState.commandCompletedReceived(commandTag)
self.state = .extendedQuery(queryState, connectionContext)
return self.modify(with: action)
}
mutating func emptyQueryResponseReceived() -> ConnectionAction {
guard case .extendedQuery(var queryState, let connectionContext) = self.state, !queryState.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.emptyQueryResponse))
}
self.state = .modifying // avoid CoW
let action = queryState.emptyQueryResponseReceived()
self.state = .extendedQuery(queryState, connectionContext)
return self.modify(with: action)
}
mutating func dataRowReceived(_ dataRow: DataRow) -> ConnectionAction {
guard case .extendedQuery(var queryState, let connectionContext) = self.state, !queryState.isComplete else {
return self.closeConnectionAndCleanup(.unexpectedBackendMessage(.dataRow(dataRow)))
}
self.state = .modifying // avoid CoW
let action = queryState.dataRowReceived(dataRow)
self.state = .extendedQuery(queryState, connectionContext)
return self.modify(with: action)
}
// MARK: Consumer
mutating func cancelQueryStream() -> ConnectionAction {
guard case .extendedQuery(var queryState, let connectionContext) = self.state else {
preconditionFailure("Tried to cancel stream without active query")
}
self.state = .modifying // avoid CoW
let action = queryState.cancel()
self.state = .extendedQuery(queryState, connectionContext)
return self.modify(with: action)
}
mutating func requestQueryRows() -> ConnectionAction {
guard case .extendedQuery(var queryState, let connectionContext) = self.state, !queryState.isComplete else {
preconditionFailure("Tried to consume next row, without active query")
}
self.state = .modifying // avoid CoW
let action = queryState.requestQueryRows()
self.state = .extendedQuery(queryState, connectionContext)
return self.modify(with: action)
}
// MARK: - Private Methods -
private mutating func startAuthentication(_ authContext: AuthContext) -> ConnectionAction {
guard case .waitingToStartAuthentication = self.state else {
preconditionFailure("Can only start authentication after connect or ssl establish")
}
self.state = .modifying // avoid CoW
var authState = AuthenticationStateMachine(authContext: authContext)
let action = authState.start()
self.state = .authenticating(authState)
return self.modify(with: action)
}
private mutating func closeConnectionAndCleanup(_ error: PSQLError, closePromise: EventLoopPromise<Void>? = nil) -> ConnectionAction {
switch self.state {
case .initialized,
.sslRequestSent,
.sslNegotiated,
.sslHandlerAdded,
.waitingToStartAuthentication,
.authenticated,
.readyForQuery:
let cleanupContext = self.setErrorAndCreateCleanupContext(error, closePromise: closePromise)
return .closeConnectionAndCleanup(cleanupContext)
case .authenticating(var authState):
let cleanupContext = self.setErrorAndCreateCleanupContext(error, closePromise: closePromise)
if authState.isComplete {
// in case the auth state machine is complete all necessary actions have already
// been forwarded to the consumer. We can close and cleanup without caring about the
// substate machine.
return .closeConnectionAndCleanup(cleanupContext)
}
let action = authState.errorHappened(error)
guard case .reportAuthenticationError = action else {
preconditionFailure("Expect to fail auth")
}
return .closeConnectionAndCleanup(cleanupContext)
case .extendedQuery(var queryStateMachine, _):
let cleanupContext = self.setErrorAndCreateCleanupContext(error, closePromise: closePromise)
if queryStateMachine.isComplete {
// in case the query state machine is complete all necessary actions have already
// been forwarded to the consumer. We can close and cleanup without caring about the
// substate machine.
return .closeConnectionAndCleanup(cleanupContext)
}
let action = queryStateMachine.errorHappened(error)
switch action {
case .sendParseDescribeBindExecuteSync,
.sendParseDescribeSync,
.sendBindExecuteSync,
.succeedQuery,
.succeedPreparedStatementCreation,
.forwardRows,
.forwardStreamComplete,
.wait,
.read:
preconditionFailure("Invalid query state machine action in state: \(self.state), action: \(action)")
case .evaluateErrorAtConnectionLevel:
return .closeConnectionAndCleanup(cleanupContext)
case .failQuery(let queryContext, with: let error):
return .failQuery(queryContext, with: error, cleanupContext: cleanupContext)
case .forwardStreamError(let error, let read):
return .forwardStreamError(error, read: read, cleanupContext: cleanupContext)
case .failPreparedStatementCreation(let promise, with: let error):
return .failPreparedStatementCreation(promise, with: error, cleanupContext: cleanupContext)
}
case .closeCommand(var closeStateMachine, _):
let cleanupContext = self.setErrorAndCreateCleanupContext(error, closePromise: closePromise)
if closeStateMachine.isComplete {
// in case the close state machine is complete all necessary actions have already
// been forwarded to the consumer. We can close and cleanup without caring about the
// substate machine.
return .closeConnectionAndCleanup(cleanupContext)
}
let action = closeStateMachine.errorHappened(error)
switch action {
case .sendCloseSync,
.succeedClose,
.read,
.wait:
preconditionFailure("Invalid close state machine action in state: \(self.state), action: \(action)")
case .failClose(let closeCommandContext, with: let error):
return .failClose(closeCommandContext, with: error, cleanupContext: cleanupContext)
}
case .closing, .closed:
// We might run into this case because of reentrancy. For example: After we received an
// backend unexpected message, that we read of the wire, we bring this connection into
// the error state and will try to close the connection. However the server might have
// send further follow up messages. In those cases we will run into this method again
// and again. We should just ignore those events.
return .closeConnection(closePromise)
case .modifying:
preconditionFailure("Invalid state: \(self.state)")
}
}
private mutating func executeNextQueryFromQueue() -> ConnectionAction {
guard case .readyForQuery = self.state else {
preconditionFailure("Only expected to be invoked, if we are readyToQuery")
}
if let task = self.taskQueue.popFirst() {
return self.executeTask(task)
}
// if we don't have anything left to do and we are quiescing, next we should close
if case .quiescing(let promise) = self.quiescingState {
self.state = .closing(nil)
return .closeConnection(promise)
}
return .fireEventReadyForQuery
}
private mutating func executeTask(_ task: PSQLTask) -> ConnectionAction {
guard case .readyForQuery(let connectionContext) = self.state else {
preconditionFailure("Only expected to be invoked, if we are readyToQuery")
}
switch task {
case .extendedQuery(let queryContext, let promise):
self.state = .modifying // avoid CoW
var extendedQuery = ExtendedQueryStateMachine(queryContext: queryContext)
let action = extendedQuery.start(promise)
self.state = .extendedQuery(extendedQuery, connectionContext)
return self.modify(with: action)
case .closeCommand(let closeContext, let promise):
self.state = .modifying // avoid CoW
var closeStateMachine = CloseStateMachine(closeContext: closeContext)
let action = closeStateMachine.start(promise)
self.state = .closeCommand(closeStateMachine, connectionContext)
return self.modify(with: action)
}
}
struct Configuration {
let requireTLS: Bool
}
}
extension ConnectionStateMachine {
func shouldCloseConnection(reason error: PSQLError) -> Bool {
switch error.code.base {
case .failedToAddSSLHandler,
.receivedUnencryptedDataAfterSSLRequest,
.sslUnsupported,
.messageDecodingFailure,
.unexpectedBackendMessage,
.unsupportedAuthMechanism,
.authMechanismRequiresPassword,
.saslError,
.tooManyParameters,
.invalidCommandTag,
.connectionError,
.uncleanShutdown,
.unlistenFailed:
return true
case .queryCancelled:
return false
case .server, .listenFailed:
guard let sqlState = error.serverInfo?[.sqlState] else {
// any error message that doesn't have a sql state field, is unexpected by default.
return true
}
if sqlState.starts(with: "28") {
// these are authentication errors
return true
}
return false
case .clientClosedConnection, .poolClosed:
preconditionFailure("A pure client error was thrown directly in PostgresConnection, this shouldn't happen")
case .serverClosedConnection:
return true
}
}
mutating func setErrorAndCreateCleanupContextIfNeeded(_ error: PSQLError) -> ConnectionAction.CleanUpContext? {
if self.shouldCloseConnection(reason: error) {
return self.setErrorAndCreateCleanupContext(error)