check for uninitialized fields when closing the Transport (#3908)

* close Transport: check for possibly uninitialized fields

* close Transport: close Conn, as conn might not be initialized

* close Transport: add test case
This commit is contained in:
kelmenhorst 2023-06-21 11:14:57 +02:00 committed by GitHub
parent 9acce3c6d9
commit 8352e5dc32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 4 deletions

View file

@ -244,14 +244,16 @@ func (t *Transport) runSendQueue() {
func (t *Transport) Close() error {
t.close(errors.New("closing"))
if t.createdConn {
if err := t.conn.Close(); err != nil {
if err := t.Conn.Close(); err != nil {
return err
}
} else {
} else if t.conn != nil {
t.conn.SetReadDeadline(time.Now())
defer func() { t.conn.SetReadDeadline(time.Time{}) }()
}
if t.listening != nil {
<-t.listening // wait until listening returns
}
return nil
}
@ -280,7 +282,9 @@ func (t *Transport) close(e error) {
return
}
if t.handlerMap != nil {
t.handlerMap.Close(e)
}
if t.server != nil {
t.server.setCloseError(e)
}

View file

@ -291,4 +291,20 @@ var _ = Describe("Transport", func() {
close(packetChan)
tr.Close()
})
It("closes uninitialized Transport and closes underlying PacketConn", func() {
packetChan := make(chan packetToRead)
pconn := newMockPacketConn(packetChan)
tr := &Transport{
Conn: pconn,
createdConn: true, // owns pconn
}
// NO init
// shutdown
close(packetChan)
pconn.EXPECT().Close()
Expect(tr.Close()).To(Succeed())
})
})