forked from wrenn/wrenn
Migrate the entire VM layer from Firecracker to Cloud Hypervisor (CH). CH provides native snapshot/restore via its HTTP API, eliminating the need for custom UFFD handling, memfile processing, and snapshot header management that Firecracker required. Key changes: - Remove fc.go, jailer.go (FC process management) - Remove internal/uffd/ package (userfaultfd lazy page loading) - Remove snapshot/header.go, mapping.go, memfile.go (FC snapshot format) - Add ch.go (CH HTTP API client over Unix socket) - Add process.go (CH process lifecycle with unshare+netns) - Add chversion.go (CH version detection) - Refactor sandbox manager: remove UFFD socket tracking, snapshot parent/diff chaining, FC-specific balloon logic; add crash watcher - Simplify snapshot/local.go to CH's native snapshot format - Update VM config: FirecrackerBin → VMMBin, new CH-specific fields - Update envdclient, devicemapper, network for CH compatibility
29 lines
745 B
Go
29 lines
745 B
Go
package sandbox
|
|
|
|
import (
|
|
"fmt"
|
|
"os/exec"
|
|
"strings"
|
|
)
|
|
|
|
// DetectCHVersion runs the cloud-hypervisor binary with --version and
|
|
// parses the semver from the output (e.g. "cloud-hypervisor v43.0" → "43.0").
|
|
func DetectCHVersion(binaryPath string) (string, error) {
|
|
out, err := exec.Command(binaryPath, "--version").Output()
|
|
if err != nil {
|
|
return "", fmt.Errorf("run %s --version: %w", binaryPath, err)
|
|
}
|
|
|
|
line := strings.TrimSpace(string(out))
|
|
for field := range strings.FieldsSeq(line) {
|
|
v := strings.TrimPrefix(field, "v")
|
|
if v != field || strings.Contains(field, ".") {
|
|
if strings.Count(v, ".") >= 1 {
|
|
return v, nil
|
|
}
|
|
}
|
|
}
|
|
|
|
return "", fmt.Errorf("could not parse version from cloud-hypervisor output: %q", line)
|
|
}
|