-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathconnection.go
796 lines (649 loc) · 19.3 KB
/
connection.go
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
package connection
import (
"bufio"
"context"
"crypto/tls"
"errors"
"fmt"
"io"
"net"
"sync"
"time"
"github.com/moov-io/iso8583"
iso8583Errors "github.com/moov-io/iso8583/errors"
"github.com/moov-io/iso8583/utils"
)
var (
ErrConnectionClosed = errors.New("connection closed")
ErrSendTimeout = errors.New("message send timeout")
)
// RejectedMessageError is returned to the `Send` method caller when message is rejected.
type RejectedMessageError struct {
Err error
}
func (e *RejectedMessageError) Error() string {
return fmt.Sprintf("message rejected: %s", e.Err.Error())
}
func (e *RejectedMessageError) Unwrap() error {
return e.Err
}
// MessageLengthReader reads message header from the r and returns message length
type MessageLengthReader func(r io.Reader) (int, error)
// MessageLengthWriter writes message header with encoded length into w
type MessageLengthWriter func(w io.Writer, length int) (int, error)
// ConnectionStatus
type Status string
const (
// StatusOnline means connection is online
StatusOnline Status = "online"
// StatusOffline means connection is offline
StatusOffline Status = "offline"
// StatusUnknown means connection status is unknown (not set)
StatusUnknown Status = ""
)
// directWrite is used to write data directly to the connection
type directWrite struct {
data []byte
errCh chan error
}
// Connection represents an ISO 8583 Connection. Connection may be used
// by multiple goroutines simultaneously.
type Connection struct {
addr string
Opts Options
conn io.ReadWriteCloser
requestsCh chan request
readResponseCh chan *iso8583.Message
directWriteCh chan directWrite
done chan struct{}
// spec that will be used to unpack received messages
spec *iso8583.MessageSpec
// readMessageLength is the function that reads message length header
// from the connection, decodes and returns message length
readMessageLength MessageLengthReader
// writeMessageLength is the function that encodes message length and
// writes message length header into the connection
writeMessageLength MessageLengthWriter
pendingRequestsMu sync.Mutex
respMap map[string]response
// WaitGroup to wait for all Send calls to finish
wg sync.WaitGroup
// to protect following: closing, status
mutex sync.Mutex
// user has called Close
closing bool
// connection status
status Status
}
var _ io.Writer = (*Connection)(nil)
// New creates and configures Connection. To establish network connection, call `Connect()`.
func New(addr string, spec *iso8583.MessageSpec, mlReader MessageLengthReader, mlWriter MessageLengthWriter, options ...Option) (*Connection, error) {
opts := GetDefaultOptions()
for _, opt := range options {
if err := opt(&opts); err != nil {
return nil, fmt.Errorf("setting client option: %v %w", opt, err)
}
}
return &Connection{
addr: addr,
Opts: opts,
requestsCh: make(chan request),
readResponseCh: make(chan *iso8583.Message),
directWriteCh: make(chan directWrite),
done: make(chan struct{}),
respMap: make(map[string]response),
spec: spec,
readMessageLength: mlReader,
writeMessageLength: mlWriter,
}, nil
}
// NewFrom accepts conn (net.Conn, or any io.ReadWriteCloser) which will be
// used as a transport for the returned Connection. Returned Connection is
// ready to be used for message sending and receiving
func NewFrom(conn io.ReadWriteCloser, spec *iso8583.MessageSpec, mlReader MessageLengthReader, mlWriter MessageLengthWriter, options ...Option) (*Connection, error) {
c, err := New("", spec, mlReader, mlWriter, options...)
if err != nil {
return nil, fmt.Errorf("creating client: %w", err)
}
c.conn = conn
c.run()
return c, nil
}
// SetOptions sets connection options
func (c *Connection) SetOptions(options ...Option) error {
for _, opt := range options {
if err := opt(&c.Opts); err != nil {
return fmt.Errorf("setting client option: %v %w", opt, err)
}
}
return nil
}
// Connect establishes the connection to the server using configured Addr
func (c *Connection) Connect() error {
return c.ConnectCtx(context.Background())
}
// ConnectCtx establishes the connection to the server using configured Addr
func (c *Connection) ConnectCtx(ctx context.Context) error {
var conn net.Conn
var err error
if c.conn != nil {
return nil
}
d := &net.Dialer{Timeout: c.Opts.ConnectTimeout}
if c.Opts.TLSConfig != nil {
conn, err = tls.DialWithDialer(d, "tcp", c.addr, c.Opts.TLSConfig)
} else {
conn, err = d.Dial("tcp", c.addr)
}
if err != nil {
return fmt.Errorf("connecting to server %s: %w", c.addr, err)
}
c.conn = conn
c.run()
onConnect := c.Opts.OnConnectCtx
if onConnect == nil && c.Opts.OnConnect != nil {
onConnect = func(_ context.Context, c *Connection) error {
return c.Opts.OnConnect(c)
}
}
if onConnect != nil {
if err := onConnect(ctx, c); err != nil {
// close connection if OnConnect failed
// but ignore the potential error from Close()
// as it's a rare case
_ = c.CloseCtx(ctx)
return fmt.Errorf("on connect callback %s: %w", c.addr, err)
}
}
if c.Opts.ConnectionEstablishedHandler != nil {
go c.Opts.ConnectionEstablishedHandler(c)
}
return nil
}
// Write writes data directly to the connection. It is crucial to note that the
// Write operation is atomic in nature, meaning it completes in a single
// uninterrupted step.
// When writing data, the entire message—including its header and any other
// components—should be written in one go. Splitting a single message into
// multiple Write calls is dangerous, as it could lead to unexpected behavior
// or errors.
func (c *Connection) Write(p []byte) (int, error) {
dw := directWrite{
data: p,
errCh: make(chan error, 1),
}
select {
case c.directWriteCh <- dw:
return len(p), <-dw.errCh
case <-c.done:
return 0, ErrConnectionClosed
}
}
// run starts read and write loops in goroutines
func (c *Connection) run() {
go c.writeLoop()
go c.readLoop()
go c.readResponseLoop()
}
func (c *Connection) handleError(err error) {
if c.Opts.ErrorHandler == nil {
return
}
c.mutex.Lock()
if c.closing {
c.mutex.Unlock()
return
}
c.mutex.Unlock()
go c.Opts.ErrorHandler(err)
}
// when connection fails it cleans up all the things
func (c *Connection) handleConnectionError(err error) {
// lock to check and update `closing`
c.mutex.Lock()
if err == nil || c.closing {
c.mutex.Unlock()
return
}
c.closing = true
c.mutex.Unlock()
// channel to wait for all goroutines to exit
done := make(chan bool)
c.pendingRequestsMu.Lock()
for _, resp := range c.respMap {
resp.errCh <- ErrConnectionClosed
}
c.pendingRequestsMu.Unlock()
// return error to all Send methods
go func() {
for {
select {
case req := <-c.requestsCh:
req.errCh <- ErrConnectionClosed
case <-done:
return
}
}
}()
go func() {
c.wg.Wait()
done <- true
}()
// close everything else we close normally
c.close()
}
func (c *Connection) close() error {
// wait for all requests to complete before closing the connection
c.wg.Wait()
close(c.done)
if c.conn != nil {
err := c.conn.Close()
if err != nil {
return fmt.Errorf("closing connection: %w", err)
}
}
if len(c.Opts.ConnectionClosedHandlers) > 0 {
for _, handler := range c.Opts.ConnectionClosedHandlers {
go handler(c)
}
}
return nil
}
// Close waits for pending requests to complete and then closes network
// connection with ISO 8583 server
func (c *Connection) Close() error {
return c.CloseCtx(context.Background())
}
// CloseCtx waits for pending requests to complete and then closes network
// connection with ISO 8583 server
func (c *Connection) CloseCtx(ctx context.Context) error {
onClose := c.Opts.OnCloseCtx
if onClose == nil && c.Opts.OnClose != nil {
onClose = func(_ context.Context, c *Connection) error {
return c.Opts.OnClose(c)
}
}
if onClose != nil {
if err := onClose(ctx, c); err != nil {
c.handleError(fmt.Errorf("on close callback: %w", err))
}
}
c.mutex.Lock()
// if we are closing already, just return
if c.closing {
c.mutex.Unlock()
return nil
}
c.closing = true
c.mutex.Unlock()
return c.close()
}
func (c *Connection) Done() <-chan struct{} {
return c.done
}
// request represents request to the ISO 8583 server
type request struct {
// message to send
message *iso8583.Message
// ID of the request (based on STAN, RRN, etc.)
requestID string
// channel to receive reply from the server
replyCh chan *iso8583.Message
// channel to receive error that may happen down the road
errCh chan error
}
type response struct {
// channel to receive reply from the server
replyCh chan *iso8583.Message
// channel to receive error that may happen down the road
errCh chan error
}
// Send sends message and waits for the response. You can pass optional
// parameters to the Send method using functional options pattern. Currently,
// only SendTimeout option is supported. Using it, you can set specific send
// timeout value for the `Send` method call.
// Example:
//
// conn.Send(msg, connection.SendTimeout(5 * time.Second))
func (c *Connection) Send(message *iso8583.Message, options ...Option) (*iso8583.Message, error) {
// use the SendTimeout from the connection options
sendTimeout := c.Opts.SendTimeout
// Only if there are any options passed, apply them
if len(options) > 0 {
// use send timeout value configured for the connection
opts := &Options{
SendTimeout: sendTimeout,
}
// apply all options
for _, opt := range options {
opt(opts)
}
sendTimeout = opts.SendTimeout
}
c.mutex.Lock()
if c.closing {
c.mutex.Unlock()
return nil, ErrConnectionClosed
}
// calling wg.Add(1) within mutex guarantees that it does not pass the wg.Wait() call in the Close method
// otherwise we will have data race issue
c.wg.Add(1)
c.mutex.Unlock()
defer c.wg.Done()
// prepare request
reqID, err := c.Opts.RequestIDGenerator.GenerateRequestID(message)
if err != nil {
return nil, fmt.Errorf("creating request ID: %w", err)
}
req := request{
message: message,
requestID: reqID,
replyCh: make(chan *iso8583.Message),
errCh: make(chan error),
}
var resp *iso8583.Message
c.requestsCh <- req
sendTimeoutTimer := time.NewTimer(sendTimeout)
defer sendTimeoutTimer.Stop()
select {
case resp = <-req.replyCh:
case err = <-req.errCh:
case <-sendTimeoutTimer.C:
err = ErrSendTimeout
// reply can still be sent after SendTimeout received.
// if we have InboundMessageHandler set, then we want reply
// to be handled by it.
defer func() {
select {
case resp := <-req.replyCh:
if c.Opts.InboundMessageHandler != nil {
go c.Opts.InboundMessageHandler(c, resp)
}
default:
return
}
}()
}
c.pendingRequestsMu.Lock()
delete(c.respMap, req.requestID)
c.pendingRequestsMu.Unlock()
return resp, err
}
func (c *Connection) writeMessage(message *iso8583.Message) error {
if c.Opts.MessageWriter != nil {
err := c.Opts.MessageWriter.WriteMessage(c.conn, message)
if err != nil {
return fmt.Errorf("writing message: %w", err)
}
return nil
}
// if no custom message writer is set, use default one
packed, err := message.Pack()
if err != nil {
return fmt.Errorf("packing message: %w", err)
}
// create header
_, err = c.writeMessageLength(c.conn, len(packed))
if err != nil {
return fmt.Errorf("writing message length: %w", err)
}
_, err = c.conn.Write(packed)
if err != nil {
return fmt.Errorf("writing packed message: %w", err)
}
return nil
}
// Reply sends the message and does not wait for a reply to be received.
// Any reply received for message send using Reply will be handled with
// unmatchedMessageHandler
func (c *Connection) Reply(message *iso8583.Message) error {
c.mutex.Lock()
if c.closing {
c.mutex.Unlock()
return ErrConnectionClosed
}
// calling wg.Add(1) within mutex guarantees that it does not pass the wg.Wait() call in the Close method
// otherwise we will have data race issue
c.wg.Add(1)
c.mutex.Unlock()
defer c.wg.Done()
req := request{
message: message,
errCh: make(chan error),
}
c.requestsCh <- req
sendTimeoutTimer := time.NewTimer(c.Opts.SendTimeout)
defer sendTimeoutTimer.Stop()
var err error
select {
case err = <-req.errCh:
case <-sendTimeoutTimer.C:
err = ErrSendTimeout
}
return err
}
const (
// position of the MTI specifies the message function which
// defines how the message should flow within the system.
messageFunctionIndex = 2
// following are responses to our requests
messageFunctionRequestResponse = "1"
messageFunctionAdviceResponse = "3"
messageFunctionNotificationAcknowledgment = "5"
messageFunctionInstructionAcknowledgment = "7"
)
func isResponse(message *iso8583.Message) bool {
if message == nil {
return false
}
mti, _ := message.GetMTI()
if len(mti) < 4 {
return false
}
messageFunction := string(mti[messageFunctionIndex])
switch messageFunction {
case messageFunctionRequestResponse,
messageFunctionAdviceResponse,
messageFunctionNotificationAcknowledgment,
messageFunctionInstructionAcknowledgment:
return true
}
return false
}
// writeLoop reads requests from the channel and writes request message into
// the socket connection. It also sends message when idle time passes
func (c *Connection) writeLoop() {
var err error
for err == nil {
idleTimeTimer := time.NewTimer(c.Opts.IdleTime)
select {
case req := <-c.requestsCh:
// if it's a request message, not a response
if req.replyCh != nil {
c.pendingRequestsMu.Lock()
c.respMap[req.requestID] = response{
replyCh: req.replyCh,
errCh: req.errCh,
}
c.pendingRequestsMu.Unlock()
}
err = c.writeMessage(req.message)
if err != nil {
c.handleError(fmt.Errorf("writing message: %w", err))
var packErr *iso8583Errors.PackError
if errors.As(err, &packErr) {
// let caller know that the message was not sent because of pack error.
// We don't set all type of errors to errCh as this case is handled
// by handleConnectionError(err) which sends the same error to all
// pending requests, including this one
req.errCh <- err
err = nil
// we can continue to write other messages
continue
}
break
}
// for replies (requests without replyCh) we just
// return nil to errCh as caller is waiting for error
// or send timeout. Regular requests waits for responses
// to be received to their replyCh channel.
if req.replyCh == nil {
req.errCh <- nil
}
case dw := <-c.directWriteCh:
_, err = c.conn.Write(dw.data)
if err != nil {
c.handleError(fmt.Errorf("writing data: %w", err))
dw.errCh <- err
// we can't continue to write other messages or data when we failed to write
// one of them
break
}
dw.errCh <- nil
case <-idleTimeTimer.C:
// if no message was sent during idle time, we have to send ping message
if c.Opts.PingHandler != nil {
go c.Opts.PingHandler(c)
}
case <-c.done:
idleTimeTimer.Stop()
return
}
idleTimeTimer.Stop()
}
c.handleConnectionError(err)
}
// readLoop reads data from the socket (message length header and raw message)
// and runs a goroutine to handle the message
func (c *Connection) readLoop() {
var outErr error
r := bufio.NewReader(c.conn)
for {
message, err := c.readMessage(r)
if err != nil {
c.handleError(utils.NewSafeError(err, "failed to read message from connection"))
// if err is UnpackError, we can still continue reading
// from the connection
var unpackErr *iso8583Errors.UnpackError
if errors.As(err, &unpackErr) {
continue
}
outErr = err
break
}
// if readMessage returns nil message, it means that
// it was a ping message or something else, not a regular
// iso8583 message and we can continue reading
if message == nil {
continue
}
c.readResponseCh <- message
}
c.handleConnectionError(outErr)
}
// readMessage reads message length header and raw message from the connection
// and returns iso8583.Message and error if any
func (c *Connection) readMessage(r io.Reader) (*iso8583.Message, error) {
if c.Opts.MessageReader != nil {
return c.Opts.MessageReader.ReadMessage(r)
}
// default message reader
messageLength, err := c.readMessageLength(r)
if err != nil {
return nil, fmt.Errorf("failed to read message length: %w", err)
}
// read the packed message
rawMessage := make([]byte, messageLength)
_, err = io.ReadFull(r, rawMessage)
if err != nil {
return nil, fmt.Errorf("failed to read message from connection: %w", err)
}
// unpack the message
message := iso8583.NewMessage(c.spec)
err = message.Unpack(rawMessage)
if err != nil {
return nil, fmt.Errorf("unpacking message: %w", err)
}
return message, nil
}
func (c *Connection) readResponseLoop() {
for {
readTimeoutTimer := time.NewTimer(c.Opts.ReadTimeout)
select {
case mess := <-c.readResponseCh:
go c.handleResponse(mess)
case <-readTimeoutTimer.C:
if c.Opts.ReadTimeoutHandler != nil {
go c.Opts.ReadTimeoutHandler(c)
}
case <-c.done:
readTimeoutTimer.Stop()
return
}
readTimeoutTimer.Stop()
}
}
// handleResponse sends message to the reply channel that corresponds to the
// message ID (request ID)
func (c *Connection) handleResponse(message *iso8583.Message) {
if isResponse(message) {
reqID, err := c.Opts.RequestIDGenerator.GenerateRequestID(message)
if err != nil {
c.handleError(fmt.Errorf("creating request ID: %w", err))
return
}
// send response message to the reply channel
c.pendingRequestsMu.Lock()
response, found := c.respMap[reqID]
c.pendingRequestsMu.Unlock()
if found {
response.replyCh <- message
} else if c.Opts.InboundMessageHandler != nil {
go c.Opts.InboundMessageHandler(c, message)
} else {
c.handleError(fmt.Errorf("can't find request for ID: %s", reqID))
}
} else {
if c.Opts.InboundMessageHandler != nil {
go c.Opts.InboundMessageHandler(c, message)
}
}
}
// SetStatus sets the connection status
func (c *Connection) SetStatus(status Status) {
c.mutex.Lock()
c.status = status
c.mutex.Unlock()
}
// Status returns the connection status
func (c *Connection) Status() Status {
c.mutex.Lock()
defer c.mutex.Unlock()
return c.status
}
// Addr returns the remote address of the connection
func (c *Connection) Addr() string {
return c.addr
}
// RejectMessage returns RejectedMessageError to the response err channel that
// corresponds to the ID of the rejectedMessage. This method is used to reject
// messages that were sent to the network and response was received, but
// response code indicates that message was rejected. In many cases, such
// rejection happens outside of normal request-response flow, so it is not
// possible to return response to the caller. In such cases,
// RejectedMessageError is returned. It's up to the implementation to decide
// when to call RejectMessage and when to return RejectedMessageError.
func (c *Connection) RejectMessage(rejectedMessage *iso8583.Message, rejectionError error) error {
reqID, err := c.Opts.RequestIDGenerator.GenerateRequestID(rejectedMessage)
if err != nil {
return fmt.Errorf("creating request ID: %w", err)
}
c.pendingRequestsMu.Lock()
response, found := c.respMap[reqID]
c.pendingRequestsMu.Unlock()
if !found {
return fmt.Errorf("can't find response for ID: %s", reqID)
}
response.errCh <- &RejectedMessageError{Err: rejectionError}
return nil
}