1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #26596 from drakenator/26384-healthcheck-race

Prevent stdout / stderr race condition in limitedBuffer.
This commit is contained in:
Tõnis Tiigi 2016-09-15 10:59:45 -07:00 committed by GitHub
commit 4c82365cdb

View file

@ -5,6 +5,7 @@ import (
"fmt"
"runtime"
"strings"
"sync"
"time"
"golang.org/x/net/context"
@ -271,11 +272,15 @@ func (d *Daemon) stopHealthchecks(c *container.Container) {
// Buffer up to maxOutputLen bytes. Further data is discarded.
type limitedBuffer struct {
buf bytes.Buffer
mu sync.Mutex
truncated bool // indicates that data has been lost
}
// Append to limitedBuffer while there is room.
func (b *limitedBuffer) Write(data []byte) (int, error) {
b.mu.Lock()
defer b.mu.Unlock()
bufLen := b.buf.Len()
dataLen := len(data)
keep := min(maxOutputLen-bufLen, dataLen)
@ -290,6 +295,9 @@ func (b *limitedBuffer) Write(data []byte) (int, error) {
// The contents of the buffer, with "..." appended if it overflowed.
func (b *limitedBuffer) String() string {
b.mu.Lock()
defer b.mu.Unlock()
out := b.buf.String()
if b.truncated {
out = out + "..."