mirror of
https://github.com/containers/podman.git
synced 2025-06-28 14:29:04 +08:00
notifyproxy: don't set a read deadline
The read deadline may yield the READY message to be lost in space. Instead, use a more Go-idiomatic alternative by using two goroutines; one reading from the connection, the other watching the container. [NO NEW TESTS NEEDED] since existing tests are exercising this functionality already. Fixes: #15800 Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
@ -1,6 +1,7 @@
|
|||||||
package notifyproxy
|
package notifyproxy
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
@ -110,48 +111,75 @@ func (p *NotifyProxy) WaitAndClose() error {
|
|||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
// Since reading from the connection is blocking, we need to spin up two
|
||||||
|
// goroutines. One waiting for the `READY` message, the other waiting
|
||||||
|
// for the container to stop running.
|
||||||
|
errorChan := make(chan error, 1)
|
||||||
|
readyChan := make(chan bool, 1)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
// Read until the `READY` message is received or the connection
|
||||||
|
// is closed.
|
||||||
const bufferSize = 1024
|
const bufferSize = 1024
|
||||||
sBuilder := strings.Builder{}
|
sBuilder := strings.Builder{}
|
||||||
for {
|
for {
|
||||||
// Set a read deadline of one second such that we achieve a
|
|
||||||
// non-blocking read and can check if the container has already
|
|
||||||
// stopped running; in that case no READY message will be send
|
|
||||||
// and we're done.
|
|
||||||
if err := p.connection.SetReadDeadline(time.Now().Add(time.Second)); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
for {
|
for {
|
||||||
buffer := make([]byte, bufferSize)
|
buffer := make([]byte, bufferSize)
|
||||||
num, err := p.connection.Read(buffer)
|
num, err := p.connection.Read(buffer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if !errors.Is(err, os.ErrDeadlineExceeded) && !errors.Is(err, io.EOF) {
|
if !errors.Is(err, io.EOF) {
|
||||||
return err
|
errorChan <- err
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
sBuilder.Write(buffer[:num])
|
sBuilder.Write(buffer[:num])
|
||||||
if num != bufferSize || buffer[num-1] == '\n' {
|
if num != bufferSize || buffer[num-1] == '\n' {
|
||||||
|
// Break as we read an entire line that
|
||||||
|
// we can inspect for the `READY`
|
||||||
|
// message.
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, line := range strings.Split(sBuilder.String(), "\n") {
|
for _, line := range strings.Split(sBuilder.String(), "\n") {
|
||||||
if line == daemon.SdNotifyReady {
|
if line == daemon.SdNotifyReady {
|
||||||
return nil
|
readyChan <- true
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
sBuilder.Reset()
|
sBuilder.Reset()
|
||||||
|
|
||||||
if p.container == nil {
|
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
if p.container != nil {
|
||||||
|
// Create a cancellable context to make sure the goroutine
|
||||||
|
// below terminates.
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
defer cancel()
|
||||||
|
go func() {
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return
|
||||||
|
default:
|
||||||
state, err := p.container.State()
|
state, err := p.container.State()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
errorChan <- err
|
||||||
|
return
|
||||||
}
|
}
|
||||||
if state != define.ContainerStateRunning {
|
if state != define.ContainerStateRunning {
|
||||||
return fmt.Errorf("%w: %s", ErrNoReadyMessage, p.container.ID())
|
errorChan <- fmt.Errorf("%w: %s", ErrNoReadyMessage, p.container.ID())
|
||||||
}
|
return
|
||||||
|
}
|
||||||
|
time.Sleep(time.Second)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wait for the ready/error channel.
|
||||||
|
select {
|
||||||
|
case <-readyChan:
|
||||||
|
return nil
|
||||||
|
case err := <-errorChan:
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user