Skip to content

Commit

Permalink
refactor(vsock): call proxy.Close when vm stop
Browse files Browse the repository at this point in the history
When other projects use the `vf.ExposeVsock` method, there will be unexpected issues due to the absence of a close proxy.

Signed-off-by: Black-Hole1 <[email protected]>
  • Loading branch information
BlackHole1 committed Jan 8, 2024
1 parent 7572104 commit e2478a0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
14 changes: 12 additions & 2 deletions cmd/vfkit/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ package main
import (
"errors"
"fmt"
"io"
"os"
"os/signal"
"runtime"
Expand Down Expand Up @@ -156,7 +157,9 @@ func runVirtualMachine(vmConfig *config.VirtualMachine, vm *vz.VirtualMachine) e
}
log.Infof("virtual machine is running")

for _, vsock := range vmConfig.VirtioVsockDevices() {
vsockDevs := vmConfig.VirtioVsockDevices()
closes := make([]io.Closer, 0, len(vsockDevs))
for _, vsock := range vsockDevs {
port := vsock.Port
socketURL := vsock.SocketURL
if socketURL == "" {
Expand All @@ -168,10 +171,17 @@ func runVirtualMachine(vmConfig *config.VirtualMachine, vm *vz.VirtualMachine) e
listenStr = " (listening)"
}
log.Infof("Exposing vsock port %d on %s%s", port, socketURL, listenStr)
if err := vf.ExposeVsock(vm, port, socketURL, vsock.Listen); err != nil {
if closer, err := vf.ExposeVsock(vm, port, socketURL, vsock.Listen); err != nil {
log.Warnf("error exposing vsock port %d: %v", port, err)
} else {
closes = append(closes, closer)
}
}
defer func() {
for _, c := range closes {
_ = c.Close()
}
}()

if err := setupGuestTimeSync(vm, vmConfig.TimeSync()); err != nil {
log.Warnf("Error configuring guest time synchronization")
Expand Down
13 changes: 7 additions & 6 deletions pkg/vf/vsock.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package vf
import (
"context"
"fmt"
"io"
"net"
"net/url"
"strconv"
Expand All @@ -11,7 +12,7 @@ import (
"inet.af/tcpproxy"
)

func ExposeVsock(vm *vz.VirtualMachine, port uint, vsockPath string, listen bool) error {
func ExposeVsock(vm *vz.VirtualMachine, port uint, vsockPath string, listen bool) (io.Closer, error) {
if listen {
return listenVsock(vm, port, vsockPath)
}
Expand All @@ -36,7 +37,7 @@ func ConnectVsockSync(vm *vz.VirtualMachine, port uint) (net.Conn, error) {

// connectVsock proxies connections from a host unix socket to a vsock port
// This allows the host to initiate connections to the guest over vsock
func connectVsock(vm *vz.VirtualMachine, port uint, vsockPath string) error {
func connectVsock(vm *vz.VirtualMachine, port uint, vsockPath string) (io.Closer, error) {

var proxy tcpproxy.Proxy
// listen for connections on the host unix socket
Expand Down Expand Up @@ -70,12 +71,12 @@ func connectVsock(vm *vz.VirtualMachine, port uint, vsockPath string) error {
}
},
})
return proxy.Start()
return &proxy, proxy.Start()
}

// listenVsock proxies connections from a vsock port to a host unix socket.
// This allows the guest to initiate connections to the host over vsock
func listenVsock(vm *vz.VirtualMachine, port uint, vsockPath string) error {
func listenVsock(vm *vz.VirtualMachine, port uint, vsockPath string) (io.Closer, error) {
var proxy tcpproxy.Proxy
// listen for connections on the vsock port
proxy.ListenFunc = func(_, laddr string) (net.Listener, error) {
Expand Down Expand Up @@ -116,6 +117,6 @@ func listenVsock(vm *vz.VirtualMachine, port uint, vsockPath string) error {
}
},
})
// FIXME: defer proxy.Close()
return proxy.Start()

return &proxy, proxy.Start()
}

0 comments on commit e2478a0

Please sign in to comment.