forked from vcabbage/amqp
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathconn.go
1205 lines (1042 loc) · 34.2 KB
/
conn.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
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
package amqp
import (
"bytes"
"context"
"crypto/tls"
"errors"
"fmt"
"math"
"net"
"net/url"
"sync"
"time"
"github.com/Azure/go-amqp/internal/bitmap"
"github.com/Azure/go-amqp/internal/buffer"
"github.com/Azure/go-amqp/internal/debug"
"github.com/Azure/go-amqp/internal/encoding"
"github.com/Azure/go-amqp/internal/frames"
"github.com/Azure/go-amqp/internal/shared"
)
// Default connection options
const (
defaultIdleTimeout = 1 * time.Minute
defaultMaxFrameSize = 65536
defaultMaxSessions = 65536
defaultWriteTimeout = 30 * time.Second
)
// ConnOptions contains the optional settings for configuring an AMQP connection.
type ConnOptions struct {
// ContainerID sets the container-id to use when opening the connection.
//
// A container ID will be randomly generated if this option is not used.
ContainerID string
// HostName sets the hostname sent in the AMQP
// Open frame and TLS ServerName (if not otherwise set).
HostName string
// IdleTimeout specifies the maximum period between
// receiving frames from the peer.
//
// Specify a value less than zero to disable idle timeout.
//
// Default: 1 minute (60000000000).
IdleTimeout time.Duration
// MaxFrameSize sets the maximum frame size that
// the connection will accept.
//
// Must be 512 or greater.
//
// Default: 65536.
MaxFrameSize uint32
// MaxSessions sets the maximum number of channels.
// The value must be greater than zero.
//
// Default: 65536.
MaxSessions uint16
// Properties sets an entry in the connection properties map sent to the server.
Properties map[string]any
// SASLType contains the specified SASL authentication mechanism.
SASLType SASLType
// TLSConfig sets the tls.Config to be used during
// TLS negotiation.
//
// This option is for advanced usage, in most scenarios
// providing a URL scheme of "amqps://" is sufficient.
TLSConfig *tls.Config
// WriteTimeout controls the write deadline when writing AMQP frames to the
// underlying net.Conn and no caller provided context.Context is available or
// the context contains no deadline (e.g. context.Background()).
// The timeout is set per write.
//
// Setting to a value less than zero means no timeout is set, so writes
// defer to the underlying behavior of net.Conn with no write deadline.
//
// Default: 30s
WriteTimeout time.Duration
// test hook
dialer dialer
}
// Dial connects to an AMQP broker.
//
// If the addr includes a scheme, it must be "amqp", "amqps", or "amqp+ssl".
// If no port is provided, 5672 will be used for "amqp" and 5671 for "amqps" or "amqp+ssl".
//
// If username and password information is not empty it's used as SASL PLAIN
// credentials, equal to passing ConnSASLPlain option.
//
// opts: pass nil to accept the default values.
func Dial(ctx context.Context, addr string, opts *ConnOptions) (*Conn, error) {
c, err := dialConn(ctx, addr, opts)
if err != nil {
return nil, err
}
err = c.start(ctx)
if err != nil {
return nil, err
}
return c, nil
}
// NewConn establishes a new AMQP client connection over conn.
// NOTE: [Conn] takes ownership of the provided [net.Conn] and will close it as required.
// opts: pass nil to accept the default values.
func NewConn(ctx context.Context, conn net.Conn, opts *ConnOptions) (*Conn, error) {
c, err := newConn(conn, opts)
if err != nil {
return nil, err
}
err = c.start(ctx)
if err != nil {
return nil, err
}
return c, nil
}
// Conn is an AMQP connection.
type Conn struct {
net net.Conn // underlying connection
dialer dialer // used for testing purposes, it allows faking dialing TCP/TLS endpoints
writeTimeout time.Duration // controls write deadline in absense of a context
// TLS
tlsNegotiation bool // negotiate TLS
tlsComplete bool // TLS negotiation complete
tlsConfig *tls.Config // TLS config, default used if nil (ServerName set to Client.hostname)
// SASL
saslHandlers map[encoding.Symbol]stateFunc // map of supported handlers keyed by SASL mechanism, SASL not negotiated if nil
saslComplete bool // SASL negotiation complete; internal *except* for SASL auth methods
// local settings
maxFrameSize uint32 // max frame size to accept
channelMax uint16 // maximum number of channels to allow
hostname string // hostname of remote server (set explicitly or parsed from URL)
idleTimeout time.Duration // maximum period between receiving frames
properties map[encoding.Symbol]any // additional properties sent upon connection open
containerID string // set explicitly or randomly generated
// peer settings
peerIdleTimeout time.Duration // maximum period between sending frames
peerMaxFrameSize uint32 // maximum frame size peer will accept
peerProperties map[string]any // properties returned by the peer
// conn state
done chan struct{} // indicates the connection has terminated
doneErr error // contains the error state returned from Close(); DO NOT TOUCH outside of conn.go until done has been closed!
// connReader and connWriter management
rxtxExit chan struct{} // signals connReader and connWriter to exit
closeOnce sync.Once // ensures that close() is only called once
// session tracking
channels *bitmap.Bitmap
sessionsByChannel map[uint16]*Session
sessionsByChannelMu sync.RWMutex
abandonedSessionsMu sync.Mutex
abandonedSessions []*Session
// connReader
rxBuf buffer.Buffer // incoming bytes buffer
rxDone chan struct{} // closed when connReader exits
rxErr error // contains last error reading from c.net; DO NOT TOUCH outside of connReader until rxDone has been closed!
// connWriter
txFrame chan frameEnvelope // AMQP frames to be sent by connWriter
txBuf buffer.Buffer // buffer for marshaling frames before transmitting
txDone chan struct{} // closed when connWriter exits
txErr error // contains last error writing to c.net; DO NOT TOUCH outside of connWriter until txDone has been closed!
}
// used to abstract the underlying dialer for testing purposes
type dialer interface {
NetDialerDial(ctx context.Context, c *Conn, host, port string) error
TLSDialWithDialer(ctx context.Context, c *Conn, host, port string) error
}
// implements the dialer interface
type defaultDialer struct{}
func (defaultDialer) NetDialerDial(ctx context.Context, c *Conn, host, port string) (err error) {
dialer := &net.Dialer{}
c.net, err = dialer.DialContext(ctx, "tcp", net.JoinHostPort(host, port))
return
}
func (defaultDialer) TLSDialWithDialer(ctx context.Context, c *Conn, host, port string) (err error) {
dialer := &tls.Dialer{Config: c.tlsConfig}
c.net, err = dialer.DialContext(ctx, "tcp", net.JoinHostPort(host, port))
return
}
func dialConn(ctx context.Context, addr string, opts *ConnOptions) (*Conn, error) {
u, err := url.Parse(addr)
if err != nil {
return nil, err
}
host, port := u.Hostname(), u.Port()
if port == "" {
port = "5672"
if u.Scheme == "amqps" || u.Scheme == "amqp+ssl" {
port = "5671"
}
}
var cp ConnOptions
if opts != nil {
cp = *opts
}
// prepend SASL credentials when the user/pass segment is not empty
if u.User != nil {
pass, _ := u.User.Password()
cp.SASLType = SASLTypePlain(u.User.Username(), pass)
}
if cp.HostName == "" {
cp.HostName = host
}
c, err := newConn(nil, &cp)
if err != nil {
return nil, err
}
switch u.Scheme {
case "amqp", "":
err = c.dialer.NetDialerDial(ctx, c, host, port)
case "amqps", "amqp+ssl":
c.initTLSConfig()
c.tlsNegotiation = false
err = c.dialer.TLSDialWithDialer(ctx, c, host, port)
default:
err = fmt.Errorf("unsupported scheme %q", u.Scheme)
}
if err != nil {
return nil, err
}
return c, nil
}
func newConn(netConn net.Conn, opts *ConnOptions) (*Conn, error) {
c := &Conn{
dialer: defaultDialer{},
net: netConn,
maxFrameSize: defaultMaxFrameSize,
peerMaxFrameSize: defaultMaxFrameSize,
channelMax: defaultMaxSessions - 1, // -1 because channel-max starts at zero
idleTimeout: defaultIdleTimeout,
containerID: shared.RandString(40),
done: make(chan struct{}),
rxtxExit: make(chan struct{}),
rxDone: make(chan struct{}),
txFrame: make(chan frameEnvelope),
txDone: make(chan struct{}),
sessionsByChannel: map[uint16]*Session{},
writeTimeout: defaultWriteTimeout,
}
// apply options
if opts == nil {
opts = &ConnOptions{}
}
if opts.WriteTimeout > 0 {
c.writeTimeout = opts.WriteTimeout
} else if opts.WriteTimeout < 0 {
c.writeTimeout = 0
}
if opts.ContainerID != "" {
c.containerID = opts.ContainerID
}
if opts.HostName != "" {
c.hostname = opts.HostName
}
if opts.IdleTimeout > 0 {
c.idleTimeout = opts.IdleTimeout
} else if opts.IdleTimeout < 0 {
c.idleTimeout = 0
}
if opts.MaxFrameSize > 0 && opts.MaxFrameSize < 512 {
return nil, fmt.Errorf("invalid MaxFrameSize value %d", opts.MaxFrameSize)
} else if opts.MaxFrameSize > 512 {
c.maxFrameSize = opts.MaxFrameSize
}
if opts.MaxSessions > 0 {
c.channelMax = opts.MaxSessions
}
if opts.SASLType != nil {
if err := opts.SASLType(c); err != nil {
return nil, err
}
}
if opts.Properties != nil {
c.properties = make(map[encoding.Symbol]any)
for key, val := range opts.Properties {
c.properties[encoding.Symbol(key)] = val
}
}
if opts.TLSConfig != nil {
c.tlsConfig = opts.TLSConfig.Clone()
}
if opts.dialer != nil {
c.dialer = opts.dialer
}
return c, nil
}
func (c *Conn) initTLSConfig() {
// create a new config if not already set
if c.tlsConfig == nil {
c.tlsConfig = new(tls.Config)
}
// TLS config must have ServerName or InsecureSkipVerify set
if c.tlsConfig.ServerName == "" && !c.tlsConfig.InsecureSkipVerify {
c.tlsConfig.ServerName = c.hostname
}
}
// start establishes the connection and begins multiplexing network IO.
// It is an error to call Start() on a connection that's been closed.
func (c *Conn) start(ctx context.Context) (err error) {
// only start connWriter and connReader if there was no error
// NOTE: this MUST be the first defer in this scope so that the
// defer for the interruptor goroutine executes first
defer func() {
if err == nil {
// we can't create the channel bitmap until the connection has been established.
// this is because our peer can tell us the max channels they support.
c.channels = bitmap.New(uint32(c.channelMax))
go c.connWriter()
go c.connReader()
}
}()
// if the context has a deadline or is cancellable, start the interruptor goroutine.
// this will close the underlying net.Conn in response to the context.
if ctx.Done() != nil {
done := make(chan struct{})
interruptRes := make(chan error, 1)
defer func() {
close(done)
if ctxErr := <-interruptRes; ctxErr != nil {
// return context error to caller
err = ctxErr
}
}()
go func() {
select {
case <-ctx.Done():
c.closeDuringStart()
interruptRes <- ctx.Err()
case <-done:
interruptRes <- nil
}
}()
}
if err = c.startImpl(ctx); err != nil {
return
}
return
}
func (c *Conn) startImpl(ctx context.Context) error {
// set connection establishment deadline as required
if deadline, ok := ctx.Deadline(); ok && !deadline.IsZero() {
_ = c.net.SetDeadline(deadline)
// remove connection establishment deadline
defer func() {
_ = c.net.SetDeadline(time.Time{})
}()
}
// run connection establishment state machine
for state := c.negotiateProto; state != nil; {
var err error
state, err = state(ctx)
// check if err occurred
if err != nil {
c.closeDuringStart()
return err
}
}
return nil
}
// Close closes the connection.
//
// Returns nil if there were no errors during shutdown,
// or a *ConnError. This error is not actionable and is
// purely for diagnostic purposes.
//
// The error returned by subsequent calls to Close is
// idempotent, so the same value will always be returned.
func (c *Conn) Close() error {
c.close()
// wait until the reader/writer goroutines have exited before proceeding.
// this is to prevent a race between calling Close() and a reader/writer
// goroutine calling close() due to a terminal error.
<-c.txDone
<-c.rxDone
return c.closedErr()
}
// Done returns a channel that's closed when Conn is closed.
func (c *Conn) Done() <-chan struct{} {
return c.done
}
// If Done is not yet closed, Err returns nil.
// If Done is closed, Err returns nil or a *ConnError explaining why.
// A nil error indicates that [Close] was called and there
// were no errors during shutdown.
//
// A *ConnError indicates one of three things
// - there was an error during shutdown from a client-side call to [Close]. the
// error is not actionable and is purely for diagnostic purposes.
// - a fatal error was encountered that caused [Conn] to close
// - the peer closed the connection. [ConnError.RemoteErr] MAY contain an error
// from the peer indicating why it closed the connection
func (c *Conn) Err() error {
select {
case <-c.done:
return c.closedErr()
default:
return nil
}
}
// close is called once, either from Close() or when connReader/connWriter exits
func (c *Conn) close() {
c.closeOnce.Do(func() {
defer close(c.done)
close(c.rxtxExit)
// wait for writing to stop, allows it to send the final close frame
<-c.txDone
closeErr := c.net.Close()
// check rxDone after closing net, otherwise may block
// for up to c.idleTimeout
<-c.rxDone
if errors.Is(c.rxErr, net.ErrClosed) {
// this is the expected error when the connection is closed, swallow it
c.rxErr = nil
}
if c.txErr == nil && c.rxErr == nil && closeErr == nil {
// if there are no errors, it means user initiated close() and we shut down cleanly
c.doneErr = &ConnError{}
} else if amqpErr, ok := c.rxErr.(*Error); ok {
// we experienced a peer-initiated close that contained an Error. return it
c.doneErr = &ConnError{RemoteErr: amqpErr}
} else if c.txErr != nil {
// c.txErr is already wrapped in a ConnError
c.doneErr = c.txErr
} else if c.rxErr != nil {
c.doneErr = &ConnError{inner: c.rxErr}
} else {
c.doneErr = &ConnError{inner: closeErr}
}
})
}
// closeDuringStart is a special close to be used only during startup (i.e. c.start() and any of its children)
func (c *Conn) closeDuringStart() {
c.closeOnce.Do(func() {
c.net.Close()
})
}
// returns the error indicating why Conn has closed
// NOTE: only call this AFTER Conn.done has been closed!
func (c *Conn) closedErr() error {
// an empty ConnError means the connection was closed by the caller
var connErr *ConnError
if errors.As(c.doneErr, &connErr) && connErr.RemoteErr == nil && connErr.inner == nil {
return nil
}
// there was an error during shut-down or connReader/connWriter
// experienced a terminal error
return c.doneErr
}
// NewSession starts a new session on the connection.
// - ctx controls waiting for the peer to acknowledge the session
// - opts contains optional values, pass nil to accept the defaults
//
// If the context's deadline expires or is cancelled before the operation
// completes, an error is returned. If the Session was successfully
// created, it will be cleaned up in future calls to NewSession.
func (c *Conn) NewSession(ctx context.Context, opts *SessionOptions) (*Session, error) {
// clean up any abandoned sessions first
if err := c.freeAbandonedSessions(ctx); err != nil {
return nil, err
}
session, err := c.newSession(opts)
if err != nil {
return nil, err
}
if err := session.begin(ctx); err != nil {
c.abandonSession(session)
return nil, err
}
return session, nil
}
// Properties returns the peer's connection properties.
// Returns nil if the peer didn't send any properties.
func (c *Conn) Properties() map[string]any {
return c.peerProperties
}
func (c *Conn) freeAbandonedSessions(ctx context.Context) error {
c.abandonedSessionsMu.Lock()
defer c.abandonedSessionsMu.Unlock()
debug.Log(3, "TX (Conn %p): cleaning up %d abandoned sessions", c, len(c.abandonedSessions))
for _, s := range c.abandonedSessions {
fr := frames.PerformEnd{}
if err := s.txFrameAndWait(ctx, &fr); err != nil {
return err
}
}
c.abandonedSessions = nil
return nil
}
func (c *Conn) newSession(opts *SessionOptions) (*Session, error) {
c.sessionsByChannelMu.Lock()
defer c.sessionsByChannelMu.Unlock()
// create the next session to allocate
// note that channel always start at 0
channel, ok := c.channels.Next()
if !ok {
if err := c.Close(); err != nil {
return nil, err
}
return nil, &ConnError{inner: fmt.Errorf("reached connection channel max (%d)", c.channelMax)}
}
session := newSession(c, uint16(channel), opts)
c.sessionsByChannel[session.channel] = session
return session, nil
}
func (c *Conn) deleteSession(s *Session) {
c.sessionsByChannelMu.Lock()
defer c.sessionsByChannelMu.Unlock()
delete(c.sessionsByChannel, s.channel)
c.channels.Remove(uint32(s.channel))
}
func (c *Conn) abandonSession(s *Session) {
c.abandonedSessionsMu.Lock()
defer c.abandonedSessionsMu.Unlock()
c.abandonedSessions = append(c.abandonedSessions, s)
}
// connReader reads from the net.Conn, decodes frames, and either handles
// them here as appropriate or sends them to the session.rx channel.
func (c *Conn) connReader() {
defer func() {
close(c.rxDone)
c.close()
}()
var sessionsByRemoteChannel = make(map[uint16]*Session)
var err error
for {
if err != nil {
debug.Log(0, "RX (connReader %p): terminal error: %v", c, err)
c.rxErr = err
return
}
var fr frames.Frame
fr, err = c.readFrame()
if err != nil {
continue
}
debug.Log(0, "RX (connReader %p): %s", c, fr)
var (
session *Session
ok bool
)
switch body := fr.Body.(type) {
// Server initiated close.
case *frames.PerformClose:
// connWriter will send the close performative ack on its way out.
// it's a SHOULD though, not a MUST.
if body.Error == nil {
return
}
err = body.Error
continue
// RemoteChannel should be used when frame is Begin
case *frames.PerformBegin:
if body.RemoteChannel == nil {
// since we only support remotely-initiated sessions, this is an error
// TODO: it would be ideal to not have this kill the connection
err = fmt.Errorf("%T: nil RemoteChannel", fr.Body)
continue
}
c.sessionsByChannelMu.RLock()
session, ok = c.sessionsByChannel[*body.RemoteChannel]
c.sessionsByChannelMu.RUnlock()
if !ok {
// this can happen if NewSession() exits due to the context expiring/cancelled
// before the begin ack is received.
err = fmt.Errorf("unexpected remote channel number %d", *body.RemoteChannel)
continue
}
session.remoteChannel = fr.Channel
sessionsByRemoteChannel[fr.Channel] = session
case *frames.PerformEnd:
session, ok = sessionsByRemoteChannel[fr.Channel]
if !ok {
err = fmt.Errorf("%T: didn't find channel %d in sessionsByRemoteChannel (PerformEnd)", fr.Body, fr.Channel)
continue
}
// we MUST remove the remote channel from our map as soon as we receive
// the ack (i.e. before passing it on to the session mux) on the session
// ending since the numbers are recycled.
delete(sessionsByRemoteChannel, fr.Channel)
c.deleteSession(session)
default:
// pass on performative to the correct session
session, ok = sessionsByRemoteChannel[fr.Channel]
if !ok {
err = fmt.Errorf("%T: didn't find channel %d in sessionsByRemoteChannel", fr.Body, fr.Channel)
continue
}
}
q := session.rxQ.Acquire()
q.Enqueue(fr.Body)
session.rxQ.Release(q)
debug.Log(2, "RX (connReader %p): mux frame to Session (%p): %s", c, session, fr)
}
}
// readFrame reads a complete frame from c.net.
// it assumes that any read deadline has already been applied.
// used externally by SASL only.
func (c *Conn) readFrame() (frames.Frame, error) {
switch {
// Cheaply reuse free buffer space when fully read.
case c.rxBuf.Len() == 0:
c.rxBuf.Reset()
// Prevent excessive/unbounded growth by shifting data to beginning of buffer.
case int64(c.rxBuf.Size()) > int64(c.maxFrameSize):
c.rxBuf.Reclaim()
}
var (
currentHeader frames.Header // keep track of the current header, for frames split across multiple TCP packets
frameInProgress bool // true if in the middle of receiving data for currentHeader
)
for {
// need to read more if buf doesn't contain the complete frame
// or there's not enough in buf to parse the header
if frameInProgress || c.rxBuf.Len() < frames.HeaderSize {
// we MUST reset the idle timeout before each read from net.Conn
if c.idleTimeout > 0 {
_ = c.net.SetReadDeadline(time.Now().Add(c.idleTimeout))
}
err := c.rxBuf.ReadFromOnce(c.net)
if err != nil {
return frames.Frame{}, err
}
}
// parse the header if a frame isn't in progress
if !frameInProgress {
// read more if buf doesn't contain enough to parse the header
// NOTE: we MUST do this ONLY if a frame isn't in progress else we can
// end up stalling when reading frames with bodies smaller than HeaderSize
if c.rxBuf.Len() < frames.HeaderSize {
continue
}
var err error
currentHeader, err = frames.ParseHeader(&c.rxBuf)
if err != nil {
return frames.Frame{}, err
}
frameInProgress = true
}
// check size is reasonable
if currentHeader.Size > math.MaxInt32 { // make max size configurable
return frames.Frame{}, errors.New("payload too large")
}
bodySize := int64(currentHeader.Size - frames.HeaderSize)
// the full frame hasn't been received, keep reading
if int64(c.rxBuf.Len()) < bodySize {
continue
}
frameInProgress = false
// check if body is empty (keepalive)
if bodySize == 0 {
debug.Log(3, "RX (connReader %p): received keep-alive frame", c)
continue
}
// parse the frame
b, ok := c.rxBuf.Next(bodySize)
if !ok {
return frames.Frame{}, fmt.Errorf("buffer EOF; requested bytes: %d, actual size: %d", bodySize, c.rxBuf.Len())
}
parsedBody, err := frames.ParseBody(buffer.New(b))
if err != nil {
return frames.Frame{}, err
}
return frames.Frame{Channel: currentHeader.Channel, Body: parsedBody}, nil
}
}
// frameContext is an extended context.Context used to track writes to the network.
// this is required in order to remove ambiguities that can arise when simply waiting
// on context.Context.Done() to be signaled.
type frameContext struct {
// Ctx contains the caller's context and is used to set the write deadline.
Ctx context.Context
// Done is closed when the frame was successfully written to net.Conn or Ctx was cancelled/timed out.
// Can be nil, but shouldn't be for callers that care about confirmation of sending.
Done chan struct{}
// Err contains the context error. MUST be set before closing Done and ONLY read if Done is closed.
// ONLY Conn.connWriter may write to this field.
Err error
}
// frameEnvelope is used when sending a frame to connWriter to be written to net.Conn
type frameEnvelope struct {
FrameCtx *frameContext
Frame frames.Frame
}
func (c *Conn) connWriter() {
defer func() {
close(c.txDone)
c.close()
}()
var (
// keepalives are sent at a rate of 1/2 idle timeout
keepaliveInterval = c.peerIdleTimeout / 2
// 0 disables keepalives
keepalivesEnabled = keepaliveInterval > 0
// set if enable, nil if not; nil channels block forever
keepalive <-chan time.Time
)
if keepalivesEnabled {
ticker := time.NewTicker(keepaliveInterval)
defer ticker.Stop()
keepalive = ticker.C
}
var err error
for {
if err != nil {
debug.Log(0, "TX (connWriter %p): terminal error: %v", c, err)
c.txErr = err
return
}
select {
// frame write request
case env := <-c.txFrame:
timeout, ctxErr := c.getWriteTimeout(env.FrameCtx.Ctx)
if ctxErr != nil {
debug.Log(1, "TX (connWriter %p) getWriteTimeout: %s: %s", c, ctxErr.Error(), env.Frame)
if env.FrameCtx.Done != nil {
// the error MUST be set before closing the channel
env.FrameCtx.Err = ctxErr
close(env.FrameCtx.Done)
}
continue
}
debug.Log(0, "TX (connWriter %p) timeout %s: %s", c, timeout, env.Frame)
err = c.writeFrame(timeout, env.Frame)
if err == nil && env.FrameCtx.Done != nil {
close(env.FrameCtx.Done)
}
// in the event of write failure, Conn will close and a
// *ConnError will be propagated to all of the sessions/link.
// keepalive timer
case <-keepalive:
debug.Log(3, "TX (connWriter %p): sending keep-alive frame", c)
_ = c.net.SetWriteDeadline(time.Now().Add(c.writeTimeout))
if _, err = c.net.Write(keepaliveFrame); err != nil {
err = &ConnError{inner: err}
}
// It would be slightly more efficient in terms of network
// resources to reset the timer each time a frame is sent.
// However, keepalives are small (8 bytes) and the interval
// is usually on the order of minutes. It does not seem
// worth it to add extra operations in the write path to
// avoid. (To properly reset a timer it needs to be stopped,
// possibly drained, then reset.)
// connection complete
case <-c.rxtxExit:
// send close performative. note that the spec says we
// SHOULD wait for the ack but we don't HAVE to, in order
// to be resilient to bad actors etc. so we just send
// the close performative and exit.
fr := frames.Frame{
Type: frames.TypeAMQP,
Body: &frames.PerformClose{},
}
debug.Log(1, "TX (connWriter %p): %s", c, fr)
c.txErr = c.writeFrame(c.writeTimeout, fr)
return
}
}
}
// writeFrame writes a frame to the network.
// used externally by SASL only.
// - timeout - the write deadline to set. zero means no deadline
//
// errors are wrapped in a ConnError as they can be returned to outside callers.
func (c *Conn) writeFrame(timeout time.Duration, fr frames.Frame) error {
// writeFrame into txBuf
c.txBuf.Reset()
err := frames.Write(&c.txBuf, fr)
if err != nil {
return &ConnError{inner: err}
}
// validate the frame isn't exceeding peer's max frame size
requiredFrameSize := c.txBuf.Len()
if uint64(requiredFrameSize) > uint64(c.peerMaxFrameSize) {
return &ConnError{inner: fmt.Errorf("%T frame size %d larger than peer's max frame size %d", fr, requiredFrameSize, c.peerMaxFrameSize)}
}
if timeout == 0 {
_ = c.net.SetWriteDeadline(time.Time{})
} else if timeout > 0 {
_ = c.net.SetWriteDeadline(time.Now().Add(timeout))
}
// write to network
n, err := c.net.Write(c.txBuf.Bytes())
if l := c.txBuf.Len(); n > 0 && n < l && err != nil {
debug.Log(1, "TX (writeFrame %p): wrote %d bytes less than len %d: %v", c, n, l, err)
}
if err != nil {
err = &ConnError{inner: err}
}
return err
}
// writeProtoHeader writes an AMQP protocol header to the
// network
func (c *Conn) writeProtoHeader(pID protoID) error {
_, err := c.net.Write([]byte{'A', 'M', 'Q', 'P', byte(pID), 1, 0, 0})
return err
}
// keepaliveFrame is an AMQP frame with no body, used for keepalives
var keepaliveFrame = []byte{0x00, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00}
// SendFrame is used by sessions and links to send frames across the network.
func (c *Conn) sendFrame(frameEnv frameEnvelope) {
select {
case c.txFrame <- frameEnv:
debug.Log(2, "TX (Conn %p): mux frame to connWriter: %s", c, frameEnv.Frame)
case <-c.done:
// Conn has closed
}
}
// stateFunc is a state in a state machine.
//
// The state is advanced by returning the next state.
// The state machine concludes when nil is returned.
type stateFunc func(context.Context) (stateFunc, error)
// negotiateProto determines which proto to negotiate next.
// used externally by SASL only.
func (c *Conn) negotiateProto(ctx context.Context) (stateFunc, error) {
// in the order each must be negotiated
switch {
case c.tlsNegotiation && !c.tlsComplete:
return c.exchangeProtoHeader(protoTLS)
case c.saslHandlers != nil && !c.saslComplete:
return c.exchangeProtoHeader(protoSASL)
default:
return c.exchangeProtoHeader(protoAMQP)
}
}
type protoID uint8
// protocol IDs received in protoHeaders
const (
protoAMQP protoID = 0x0
protoTLS protoID = 0x2
protoSASL protoID = 0x3
)
// exchangeProtoHeader performs the round trip exchange of protocol
// headers, validation, and returns the protoID specific next state.
func (c *Conn) exchangeProtoHeader(pID protoID) (stateFunc, error) {
// write the proto header
if err := c.writeProtoHeader(pID); err != nil {
return nil, err
}
// read response header
p, err := c.readProtoHeader()
if err != nil {
return nil, err
}
if pID != p.ProtoID {
return nil, fmt.Errorf("unexpected protocol header %#00x, expected %#00x", p.ProtoID, pID)
}
// go to the proto specific state
switch pID {
case protoAMQP:
return c.openAMQP, nil
case protoTLS:
return c.startTLS, nil
case protoSASL:
return c.negotiateSASL, nil
default:
return nil, fmt.Errorf("unknown protocol ID %#02x", p.ProtoID)
}
}
// readProtoHeader reads a protocol header packet from c.rxProto.
func (c *Conn) readProtoHeader() (protoHeader, error) {
const protoHeaderSize = 8
// only read from the network once our buffer has been exhausted.
// TODO: this preserves existing behavior as some tests rely on this
// implementation detail (it lets you replay a stream of bytes). we
// might want to consider removing this and fixing the tests as the
// protocol doesn't actually work this way.
if c.rxBuf.Len() == 0 {
for {
err := c.rxBuf.ReadFromOnce(c.net)