2014-05-12 21:35:37 -04:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
// These functions are compatible with WS 9 and 10 on *NIX
|
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"os/exec"
|
|
|
|
"regexp"
|
|
|
|
"runtime"
|
2016-04-05 21:45:58 -04:00
|
|
|
"path/filepath"
|
2014-05-12 21:35:37 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func playerFindVdiskManager() (string, error) {
|
|
|
|
return exec.LookPath("vmware-vdiskmanager")
|
|
|
|
}
|
|
|
|
|
|
|
|
func playerFindQemuImg() (string, error) {
|
|
|
|
return exec.LookPath("qemu-img")
|
|
|
|
}
|
|
|
|
|
|
|
|
func playerFindVMware() (string, error) {
|
|
|
|
return exec.LookPath("vmplayer")
|
|
|
|
}
|
|
|
|
|
|
|
|
func playerFindVmrun() (string, error) {
|
|
|
|
return exec.LookPath("vmrun")
|
|
|
|
}
|
|
|
|
|
2016-04-05 21:45:58 -04:00
|
|
|
func playerToolsIsoPath(flavor string) string {
|
|
|
|
return "/usr/lib/vmware/isoimages/" + flavor + ".iso"
|
|
|
|
}
|
|
|
|
|
|
|
|
// return the base path to vmware's config on the host
|
|
|
|
func playerVMwareRoot() (s string, err error) {
|
|
|
|
return "/etc/vmware", nil
|
|
|
|
}
|
|
|
|
|
2014-05-12 21:35:37 -04:00
|
|
|
func playerDhcpLeasesPath(device string) string {
|
2016-04-05 21:45:58 -04:00
|
|
|
base, err := playerVMwareRoot()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Error finding VMware root: %s", err)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return filepath.Join(base, device, "dhcpd/dhcpd.leases")
|
2014-05-12 21:35:37 -04:00
|
|
|
}
|
|
|
|
|
2016-04-05 21:45:58 -04:00
|
|
|
func playerVmDhcpConfPath(device string) string {
|
|
|
|
base, err := playerVMwareRoot()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Error finding VMware root: %s", err)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return filepath.Join(base, device, "dhcp/dhcp.conf")
|
2014-05-12 21:35:37 -04:00
|
|
|
}
|
|
|
|
|
2016-04-05 21:45:58 -04:00
|
|
|
func playerVmnetnatConfPath(device string) string {
|
|
|
|
base, err := playerVMwareRoot()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Error finding VMware root: %s", err)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return filepath.Join(base, device, "nat/nat.conf")
|
|
|
|
}
|
|
|
|
|
|
|
|
func playerNetmapConfPath() string {
|
|
|
|
base, err := playerVMwareRoot()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Error finding VMware root: %s", err)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return filepath.Join(base, "netmap.conf")
|
2014-05-12 21:35:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func playerVerifyVersion(version string) error {
|
|
|
|
if runtime.GOOS != "linux" {
|
|
|
|
return fmt.Errorf("The VMWare Player version %s driver is only supported on Linux, and Windows, at the moment. Your OS: %s", version, runtime.GOOS)
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO(pmyjavec) there is a better way to find this, how?
|
|
|
|
//the default will suffice for now.
|
|
|
|
vmxpath := "/usr/lib/vmware/bin/vmware-vmx"
|
|
|
|
|
|
|
|
var stderr bytes.Buffer
|
|
|
|
cmd := exec.Command(vmxpath, "-v")
|
|
|
|
cmd.Stderr = &stderr
|
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
versionRe := regexp.MustCompile(`(?i)VMware Player (\d+)\.`)
|
|
|
|
matches := versionRe.FindStringSubmatch(stderr.String())
|
|
|
|
if matches == nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Could not find VMWare Player version in output: %s", stderr.String())
|
|
|
|
}
|
|
|
|
log.Printf("Detected VMWare Player version: %s", matches[1])
|
|
|
|
|
2014-09-10 13:14:50 -04:00
|
|
|
return compareVersions(matches[1], version, "Player")
|
2014-05-12 21:35:37 -04:00
|
|
|
}
|