Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set channels and allocator to nil in shutdown #172

Merged
merged 4 commits into from
Feb 9, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,41 @@ func TestOpen(t *testing.T) {
if c, err := Open(rwc, defaultConfig()); err != nil {
t.Fatalf("could not create connection: %v (%s)", c, err)
}
}

func TestOpenClose_ShouldNotPanic(t *testing.T) {
rwc, srv := newSession(t)
t.Cleanup(func() {
_ = rwc.Close()
})

go func() {
srv.connectionOpen()
srv.connectionClose()
}()

c, err := Open(rwc, defaultConfig())
if err != nil {
t.Fatalf("could not create connection: %v (%s)", c, err)
}

if err := c.Close(); err != nil {
t.Fatalf("could not close connection: %s", err)
}

defer func() {
if r := recover(); r != nil {
t.Fatalf("creating a channel on a closed connection should not panic: %s", r)
}
}()

ch, err := c.Channel()
if ch != nil {
t.Fatalf("creating a channel on a closed connection should not succeed: %v, (%s)", ch, err)
}
if err != ErrClosed {
t.Fatalf("error should be closed: %s", err)
}
}

func TestChannelOpen(t *testing.T) {
Expand Down
17 changes: 10 additions & 7 deletions connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -551,8 +551,8 @@ func (c *Connection) shutdown(err *Error) {

c.conn.Close()

c.channels = map[uint16]*Channel{}
c.allocator = newAllocator(1, c.Config.ChannelMax)
c.channels = nil
c.allocator = nil
c.noNotify = true
})
}
Expand Down Expand Up @@ -766,8 +766,10 @@ func (c *Connection) releaseChannel(id uint16) {
c.m.Lock()
defer c.m.Unlock()

delete(c.channels, id)
c.allocator.release(int(id))
if !c.IsClosed() {
delete(c.channels, id)
c.allocator.release(int(id))
}
}

// openChannel allocates and opens a channel, must be paired with closeChannel
Expand Down Expand Up @@ -915,13 +917,17 @@ func (c *Connection) openTune(config Config, auth Authentication) error {
// Edge case that may race with c.shutdown()
// https://github.com/rabbitmq/amqp091-go/issues/170
c.m.Lock()

// When the server and client both use default 0, then the max channel is
// only limited by uint16.
c.Config.ChannelMax = pick(config.ChannelMax, int(tune.ChannelMax))
if c.Config.ChannelMax == 0 {
c.Config.ChannelMax = defaultChannelMax
}
c.Config.ChannelMax = min(c.Config.ChannelMax, maxChannelMax)

c.allocator = newAllocator(1, c.Config.ChannelMax)

c.m.Unlock()

// Frame size includes headers and end byte (len(payload)+8), even if
Expand Down Expand Up @@ -978,9 +984,6 @@ func (c *Connection) openComplete() error {
_ = deadliner.SetDeadline(time.Time{})
}

c.m.Lock()
c.allocator = newAllocator(1, c.Config.ChannelMax)
c.m.Unlock()
return nil
}

Expand Down