Skip to content

Commit dcb9057

Browse files
committed
Adds retry support to Windows AnonDialer
Adds retry support to AnonDialer if the pipe does not exist. This will retry up to the timeout for the pipe to exist and connect. This solves the race between the containerd-shim-* start command and the reinvocation. Signed-off-by: Justin Terry (VM) <[email protected]>
1 parent 790c3a3 commit dcb9057

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

runtime/v2/shim/util_windows.go

+20-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import (
2020
"context"
2121
"fmt"
2222
"net"
23+
"os"
2324
"syscall"
2425
"time"
2526

@@ -48,7 +49,25 @@ func SocketAddress(ctx context.Context, id string) (string, error) {
4849

4950
// AnonDialer returns a dialer for a npipe
5051
func AnonDialer(address string, timeout time.Duration) (net.Conn, error) {
51-
return winio.DialPipe(address, &timeout)
52+
var c net.Conn
53+
var lastError error
54+
start := time.Now()
55+
for {
56+
remaining := timeout - time.Now().Sub(start)
57+
if remaining <= 0 {
58+
lastError = errors.Errorf("timed out waiting for npipe %s", address)
59+
break
60+
}
61+
c, lastError = winio.DialPipe(address, &remaining)
62+
if lastError == nil {
63+
break
64+
}
65+
if !os.IsNotExist(lastError) {
66+
break
67+
}
68+
time.Sleep(10 * time.Millisecond)
69+
}
70+
return c, lastError
5271
}
5372

5473
// NewSocket returns a new npipe listener

0 commit comments

Comments
 (0)