Skip to content

Commit af1b6a0

Browse files
committed
Review feedback.
1. Moves the log message for each socket to the appropriate _unix and _windows.go 2. Replaces all reference to Abstract Socket for Windows. 3. Adds support for ctrl+c on Windows to exit a shim. Signed-off-by: Justin Terry (VM) <[email protected]>
1 parent 4b5403f commit af1b6a0

File tree

4 files changed

+24
-15
lines changed

4 files changed

+24
-15
lines changed

runtime/v2/shim/shim.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -202,11 +202,10 @@ func (s *Client) Serve() error {
202202
// serve serves the ttrpc API over a unix socket at the provided path
203203
// this function does not block
204204
func serve(ctx context.Context, server *ttrpc.Server, path string) error {
205-
l, path, err := serveListener(path)
205+
l, err := serveListener(path)
206206
if err != nil {
207207
return err
208208
}
209-
logrus.WithField("socket", path).Debug("serving api on abstract socket")
210209
go func() {
211210
defer l.Close()
212211
if err := server.Serve(ctx, l); err != nil &&

runtime/v2/shim/shim_unix.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func setupDumpStacks(dump chan<- os.Signal) {
4747
signal.Notify(dump, syscall.SIGUSR1)
4848
}
4949

50-
func serveListener(path string) (net.Listener, string, error) {
50+
func serveListener(path string) (net.Listener, error) {
5151
var (
5252
l net.Listener
5353
err error
@@ -57,14 +57,15 @@ func serveListener(path string) (net.Listener, string, error) {
5757
path = "[inherited from parent]"
5858
} else {
5959
if len(path) > 106 {
60-
return nil, path, errors.Errorf("%q: unix socket path too long (> 106)", path)
60+
return nil, errors.Errorf("%q: unix socket path too long (> 106)", path)
6161
}
6262
l, err = net.Listen("unix", "\x00"+path)
6363
}
6464
if err != nil {
65-
return nil, path, err
65+
return nil, err
6666
}
67-
return l, path, nil
67+
logrus.WithField("socket", path).Debug("serving api on abstract socket")
68+
return l, nil
6869
}
6970

7071
func handleSignals(logger *logrus.Entry, signals chan os.Signal) error {

runtime/v2/shim/shim_windows.go

+15-6
Original file line numberDiff line numberDiff line change
@@ -54,20 +54,29 @@ func setupDumpStacks(dump chan<- os.Signal) {
5454

5555
// serve serves the ttrpc API over a unix socket at the provided path
5656
// this function does not block
57-
func serveListener(path string) (net.Listener, string, error) {
57+
func serveListener(path string) (net.Listener, error) {
5858
if path == "" {
59-
return nil, path, errors.New("'socket' must be npipe path")
59+
return nil, errors.New("'socket' must be npipe path")
6060
}
6161
l, err := winio.ListenPipe(path, nil)
6262
if err != nil {
63-
return nil, path, err
63+
return nil, err
6464
}
65-
return l, path, nil
65+
logrus.WithField("socket", path).Debug("serving api on npipe socket")
66+
return l, nil
6667
}
6768

6869
func handleSignals(logger *logrus.Entry, signals chan os.Signal) error {
69-
<-signals
70-
return nil
70+
logger.Info("starting signal loop")
71+
for {
72+
select {
73+
case s := <-signals:
74+
switch s {
75+
case os.Interrupt:
76+
break
77+
}
78+
}
79+
}
7180
}
7281

7382
func (l *remoteEventsPublisher) Publish(ctx context.Context, topic string, event events.Event) error {

runtime/v2/shim/util_windows.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func SetScore(pid int) error {
3737
return nil
3838
}
3939

40-
// SocketAddress returns an abstract npipe address
40+
// SocketAddress returns a npipe address
4141
func SocketAddress(ctx context.Context, id string) (string, error) {
4242
ns, err := namespaces.NamespaceRequired(ctx)
4343
if err != nil {
@@ -46,7 +46,7 @@ func SocketAddress(ctx context.Context, id string) (string, error) {
4646
return fmt.Sprintf("\\\\.\\pipe\\containerd-shim-%s-%s-pipe", ns, id), nil
4747
}
4848

49-
// AnonDialer returns a dialer for an abstract npipe
49+
// AnonDialer returns a dialer for a npipe
5050
func AnonDialer(address string, timeout time.Duration) (net.Conn, error) {
5151
return winio.DialPipe(address, &timeout)
5252
}
@@ -55,7 +55,7 @@ func AnonDialer(address string, timeout time.Duration) (net.Conn, error) {
5555
func NewSocket(address string) (net.Listener, error) {
5656
l, err := winio.ListenPipe(address, nil)
5757
if err != nil {
58-
return nil, errors.Wrapf(err, "failed to listen to abstract npipe %s", address)
58+
return nil, errors.Wrapf(err, "failed to listen to npipe %s", address)
5959
}
6060
return l, nil
6161
}

0 commit comments

Comments
 (0)