forked from machine-drivers/docker-machine-parallels
-
Notifications
You must be signed in to change notification settings - Fork 1
/
parallels_darwin.go
799 lines (690 loc) · 20.5 KB
/
parallels_darwin.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
package parallels
import (
"errors"
"fmt"
"io/ioutil"
"net"
"os"
"path/filepath"
"regexp"
"runtime"
"strconv"
"strings"
"time"
"github.com/docker/machine/libmachine/drivers"
"github.com/docker/machine/libmachine/log"
"github.com/docker/machine/libmachine/mcnflag"
"github.com/docker/machine/libmachine/mcnutils"
"github.com/docker/machine/libmachine/ssh"
"github.com/docker/machine/libmachine/state"
"github.com/hashicorp/go-version"
)
const (
isoFilename = "boot2docker.iso"
shareFolderNamePrefix = "docker_machine_share_"
minDiskSize = 32
defaultCPU = 1
defaultMemory = 1024
defaultVideoSize = 64
defaultBoot2DockerURL = ""
defaultShareFolder = "/Users"
defaultNoShare = false
defaultDiskSize = 20000
defaultSSHPort = 22
defaultSSHUser = "docker"
defaultNestedVirtualization = false
)
var (
reMachineNotFound = regexp.MustCompile(`Failed to get VM config: The virtual machine could not be found..*`)
reParallelsVersion = regexp.MustCompile(`.* (\d+\.\d+\.\d+).*`)
reParallelsEdition = regexp.MustCompile(`edition="(.+)"`)
reSharedAdapterIP = regexp.MustCompile(`\s*IPv4 address:\s*(\d+\.\d+\.\d+\.\d+)`)
reSharedFolder = regexp.MustCompile(`\s*(.+) \(\+\) path='(.+)' mode=.+`)
errMachineExist = errors.New("machine already exists")
errMachineNotExist = errors.New("machine does not exist")
errSharedNetworkNotConnected = errors.New("Your Mac host is not connected to Shared network. Please, ensure this option is set: 'Parallels Desktop' -> 'Preferences' -> 'Network' -> 'Shared' -> 'Connect Mac to this network'")
v11, _ = version.NewVersion("11.0.0")
)
// Driver for Parallels Desktop
type Driver struct {
*drivers.BaseDriver
CPU int
Memory int
VideoSize int
DiskSize int
Boot2DockerURL string
NoShare bool
ShareFolders []string
NestedVirtualization bool
}
// NewDriver creates a new Parallels Desktop driver with default settings
func NewDriver(hostName, storePath string) drivers.Driver {
return &Driver{
BaseDriver: &drivers.BaseDriver{
MachineName: hostName,
StorePath: storePath,
SSHUser: defaultSSHUser,
SSHPort: defaultSSHPort,
},
CPU: defaultCPU,
Memory: defaultMemory,
VideoSize: defaultVideoSize,
DiskSize: defaultDiskSize,
Boot2DockerURL: defaultBoot2DockerURL,
NoShare: defaultNoShare,
NestedVirtualization: defaultNestedVirtualization,
}
}
// Create a host using the driver's config
func (d *Driver) Create() error {
var (
err error
)
b2dutils := mcnutils.NewB2dUtils(d.StorePath)
if err = b2dutils.CopyIsoToMachineDir(d.Boot2DockerURL, d.MachineName); err != nil {
return err
}
log.Infof("Creating SSH key...")
sshKeyPath := d.GetSSHKeyPath()
log.Debugf("SSH key: %s", sshKeyPath)
if err = ssh.GenerateSSHKey(sshKeyPath); err != nil {
return err
}
log.Infof("Creating Parallels Desktop VM...")
ver, err := getParallelsVersion()
if err != nil {
return err
}
absStorePath, _ := filepath.Abs(d.ResolveStorePath("."))
if err = prlctl("create", d.MachineName,
"--distribution", "linux",
"--dst", absStorePath,
"--no-hdd"); err != nil {
return err
}
cpus := d.CPU
if cpus < 1 {
cpus = int(runtime.NumCPU())
}
if cpus > 32 {
cpus = 32
}
videoSize := d.VideoSize
if videoSize < 2 {
videoSize = defaultVideoSize
}
if err = prlctl("set", d.MachineName,
"--select-boot-device", "off",
"--cpus", fmt.Sprintf("%d", cpus),
"--memsize", fmt.Sprintf("%d", d.Memory),
"--videosize", fmt.Sprintf("%d", videoSize),
"--cpu-hotplug", "off",
"--on-window-close", "keep-running",
"--longer-battery-life", "on",
"--3d-accelerate", "off",
"--device-bootorder", "cdrom0"); err != nil {
return err
}
if d.NestedVirtualization {
if err = prlctl("set", d.MachineName,
"--nested-virt", "on"); err != nil {
return err
}
}
absISOPath, _ := filepath.Abs(d.ResolveStorePath(isoFilename))
if err = prlctl("set", d.MachineName,
"--device-set", "cdrom0",
"--iface", "sata",
"--position", "0",
"--image", absISOPath,
"--connect"); err != nil {
return err
}
initialDiskSize := minDiskSize
// Fix for [GH-67]. Create a bigger disk on Parallels Desktop 13.0.*
constraints, _ := version.NewConstraint(">= 13.0.0, < 13.1.0")
if constraints.Check(ver) {
initialDiskSize = 1891
}
// Create a small plain disk. It will be converted and expanded later
if err = prlctl("set", d.MachineName,
"--device-add", "hdd",
"--iface", "sata",
"--position", "1",
"--image", d.diskPath(),
"--type", "plain",
"--size", fmt.Sprintf("%d", initialDiskSize)); err != nil {
return err
}
if err = d.generateDiskImage(d.DiskSize); err != nil {
return err
}
// Enable headless mode
if err = prlctl("set", d.MachineName,
"--startup-view", "headless"); err != nil {
return err
}
// Don't share any additional folders
if err = prlctl("set", d.MachineName,
"--shf-host-defined", "off"); err != nil {
return err
}
// Enable time sync, don't touch timezone (this part is buggy)
if err = prlctl("set", d.MachineName, "--time-sync", "on"); err != nil {
return err
}
if err = prlctl("set", d.MachineName,
"--disable-timezone-sync", "on"); err != nil {
return err
}
// Configure Shared Folders
if err = prlctl("set", d.MachineName,
"--shf-host", "on",
"--shared-cloud", "off",
"--shared-profile", "off",
"--smart-mount", "off"); err != nil {
return err
}
// Configure Serial Console as a socket
if err = prlctl("set", d.MachineName,
"--device-add", "serial",
"--socket", fmt.Sprintf("parallels-serial-%s", d.MachineName)); err != nil {
return err
}
if !d.NoShare {
for i, f := range d.ShareFolders {
// Ensure the path is absolute and is available
fAbs, err := filepath.Abs(f)
if err != nil {
return err
}
if _, err := os.Stat(fAbs); err != nil {
if os.IsNotExist(err) {
log.Infof("Host path '%s' does not exist. Skipping sharing it with the machine...", fAbs)
continue
}
return err
}
if err = prlctl("set", d.MachineName,
"--shf-host-add", fmt.Sprintf("%s%d", shareFolderNamePrefix, i),
"--path", fAbs); err != nil {
return err
}
}
}
log.Infof("Starting Parallels Desktop VM...")
// Don't use Start() since it expects to have a dhcp lease already
if err = prlctl("start", d.MachineName); err != nil {
return err
}
var ip string
log.Infof("Waiting for VM to come online...")
for i := 1; i <= 60; i++ {
ip, err = d.getIPfromDHCPLease()
if err != nil {
log.Debugf("Not there yet %d/%d, error: %s", i, 60, err)
time.Sleep(2 * time.Second)
continue
}
if ip != "" {
log.Debugf("Got an ip: %s", ip)
conn, err := net.DialTimeout("tcp", fmt.Sprintf("%s:%d", ip, d.SSHPort), time.Duration(2*time.Second))
if err != nil {
log.Debugf("SSH Daemon not responding yet: %s", err)
time.Sleep(2 * time.Second)
continue
}
conn.Close()
break
}
}
if ip == "" {
return fmt.Errorf("Machine didn't return an IP after 120 seconds, aborting")
}
d.IPAddress = ip
if err := d.Start(); err != nil {
return err
}
return nil
}
// DriverName returns the name of the driver as it is registered
func (d *Driver) DriverName() string {
return "parallels"
}
// GetIP returns an IP or hostname that this host is available at
// e.g. 1.2.3.4 or docker-host-d60b70a14d3a.cloudapp.net
func (d *Driver) GetIP() (string, error) {
// Assume that Parallels Desktop hosts don't have IPs unless they are running
s, err := d.GetState()
if err != nil {
return "", err
}
if s != state.Running {
return "", drivers.ErrHostIsNotRunning
}
ip, err := d.getIPfromDHCPLease()
if err != nil {
return "", err
}
return ip, nil
}
// GetSSHHostname returns hostname for use with ssh
func (d *Driver) GetSSHHostname() (string, error) {
return d.GetIP()
}
// GetURL returns a Docker compatible host URL for connecting to this host
// e.g. tcp://1.2.3.4:2376
func (d *Driver) GetURL() (string, error) {
ip, err := d.GetIP()
if err != nil {
return "", err
}
if ip == "" {
return "", nil
}
return fmt.Sprintf("tcp://%s:2376", ip), nil
}
// GetState returns the state that the host is in (running, stopped, etc)
func (d *Driver) GetState() (state.State, error) {
stdout, stderr, err := prlctlOutErr("list", d.MachineName, "--output", "status", "--no-header")
if err != nil {
if reMachineNotFound.FindString(stderr) != "" {
return state.Error, errMachineNotExist
}
return state.Error, err
}
switch stdout {
case "running\n":
return state.Running, nil
case "paused\n":
return state.Paused, nil
case "suspended\n":
return state.Saved, nil
case "stopping\n":
return state.Stopping, nil
case "stopped\n":
return state.Stopped, nil
}
return state.None, nil
}
// Kill stops a host forcefully
func (d *Driver) Kill() error {
return prlctl("stop", d.MachineName, "--kill")
}
// PreCreateCheck allows for pre-create operations to make sure a driver is ready for creation
func (d *Driver) PreCreateCheck() error {
// Check platform type
if runtime.GOOS != "darwin" {
return fmt.Errorf("Driver \"parallels\" works only on macOS!")
}
// Check Parallels Desktop version
ver, err := getParallelsVersion()
if err != nil {
return err
}
if ver.LessThan(v11) {
return fmt.Errorf("Driver \"parallels\" supports only Parallels Desktop 11 and higher. You use: Parallels Desktop %s.", ver)
}
// Check Parallels Desktop edition
edit, err := getParallelsEdition()
if err != nil {
return err
}
log.Debugf("Found Parallels Desktop version: %d, edition: %s", ver, edit)
switch edit {
case "pro", "business":
break
default:
return fmt.Errorf("Docker Machine can be used only with Parallels Desktop Pro or Business edition. You use: %s edition", edit)
}
// Check whether the host is connected to Shared network
if err := checkSharedNetworkConnected(); err != nil {
return err
}
// Downloading boot2docker to cache should be done here to make sure
// that a download failure will not leave a machine half created.
b2dutils := mcnutils.NewB2dUtils(d.StorePath)
if err := b2dutils.UpdateISOCache(d.Boot2DockerURL); err != nil {
return err
}
return nil
}
// Remove a host
func (d *Driver) Remove() error {
s, err := d.GetState()
if err != nil {
if err == errMachineNotExist {
log.Infof("machine does not exist, assuming it has been removed already")
return nil
}
return err
}
if s == state.Running {
if err := d.Kill(); err != nil {
return err
}
}
return prlctl("delete", d.MachineName)
}
// Restart a host. This may just call Stop(); Start() if the provider does not
// have any special restart behaviour.
func (d *Driver) Restart() error {
if err := d.Stop(); err != nil {
return err
}
return d.Start()
}
// GetCreateFlags registers the flags this driver adds to
// "docker hosts create"
func (d *Driver) GetCreateFlags() []mcnflag.Flag {
return []mcnflag.Flag{
mcnflag.IntFlag{
EnvVar: "PARALLELS_MEMORY_SIZE",
Name: "parallels-memory",
Usage: "Size of memory for host in MB",
Value: defaultMemory,
},
mcnflag.IntFlag{
EnvVar: "PARALLELS_CPU_COUNT",
Name: "parallels-cpu-count",
Usage: "number of CPUs for the machine (-1 to use the number of CPUs available)",
Value: defaultCPU,
},
mcnflag.IntFlag{
EnvVar: "PARALLELS_VIDEO_SIZE",
Name: "parallels-video-size",
Usage: "Size of video memory for host in MB",
Value: defaultVideoSize,
},
mcnflag.IntFlag{
EnvVar: "PARALLELS_DISK_SIZE",
Name: "parallels-disk-size",
Usage: "Size of disk for host in MB",
Value: defaultDiskSize,
},
mcnflag.StringFlag{
EnvVar: "PARALLELS_BOOT2DOCKER_URL",
Name: "parallels-boot2docker-url",
Usage: "The URL of the boot2docker image. Defaults to the latest available version",
Value: defaultBoot2DockerURL,
},
mcnflag.BoolFlag{
Name: "parallels-no-share",
Usage: "Disable the mount of shared folder",
},
mcnflag.StringSliceFlag{
Name: "parallels-share-folder",
Usage: "Path to the directory which should be shared with the machine. Default: /Users",
Value: []string{defaultShareFolder},
},
mcnflag.BoolFlag{
Name: "parallels-nested-virtualization",
Usage: "Enable nested virutalization",
},
}
}
// SetConfigFromFlags configures the driver with the object that was returned
// by RegisterCreateFlags
func (d *Driver) SetConfigFromFlags(opts drivers.DriverOptions) error {
d.CPU = opts.Int("parallels-cpu-count")
d.Memory = opts.Int("parallels-memory")
d.VideoSize = opts.Int("parallels-video-size")
d.DiskSize = opts.Int("parallels-disk-size")
d.Boot2DockerURL = opts.String("parallels-boot2docker-url")
d.SetSwarmConfigFromFlags(opts)
d.SSHUser = defaultSSHUser
d.SSHPort = defaultSSHPort
d.NoShare = opts.Bool("parallels-no-share")
d.ShareFolders = opts.StringSlice("parallels-share-folder")
d.NestedVirtualization = opts.Bool("parallels-nested-virtualization")
return nil
}
// Start a host
func (d *Driver) Start() error {
// Check whether the host is connected to Shared network
if err := checkSharedNetworkConnected(); err != nil {
return err
}
s, err := d.GetState()
if err != nil {
return err
}
switch s {
case state.Stopped, state.Saved, state.Paused:
if err = prlctl("start", d.MachineName); err != nil {
return err
}
log.Infof("Waiting for VM to start...")
case state.Running:
break
default:
log.Infof("VM not in restartable state")
}
if err = drivers.WaitForSSH(d); err != nil {
return err
}
d.IPAddress, err = d.GetIP()
if err != nil {
return err
}
// Mount Share Folder
shareFoldersMap, err := d.getShareFolders()
if err != nil {
return err
}
if !d.NoShare {
for shareName, sharePath := range shareFoldersMap {
if err := d.mountShareFolder(shareName, sharePath); err != nil {
return err
}
}
}
return nil
}
// Stop a host gracefully
func (d *Driver) Stop() error {
if err := prlctl("stop", d.MachineName); err != nil {
return err
}
for {
s, err := d.GetState()
if err != nil {
return err
}
if s == state.Running {
time.Sleep(1 * time.Second)
} else {
break
}
}
return nil
}
func (d *Driver) getIPfromDHCPLease() (string, error) {
DHCPLeaseFile := "/Library/Preferences/Parallels/parallels_dhcp_leases"
stdout, _, err := prlctlOutErr("list", "-i", d.MachineName)
macRe := regexp.MustCompile("net0.* mac=([0-9A-F]{12}) card=.*")
macMatch := macRe.FindAllStringSubmatch(stdout, 1)
if len(macMatch) != 1 {
return "", fmt.Errorf("MAC address for NIC: nic0 on Virtual Machine: %s not found!\n", d.MachineName)
}
mac := macMatch[0][1]
if len(mac) != 12 {
return "", fmt.Errorf("Not a valid MAC address: %s. It should be exactly 12 digits.", mac)
}
leases, err := ioutil.ReadFile(DHCPLeaseFile)
if err != nil {
return "", err
}
ipRe := regexp.MustCompile("(.*)=\"(.*),(.*)," + strings.ToLower(mac) + ",.*\"")
mostRecentIP := ""
mostRecentLease := uint64(0)
for _, l := range ipRe.FindAllStringSubmatch(string(leases), -1) {
ip := l[1]
expiry, _ := strconv.ParseUint(l[2], 10, 64)
leaseTime, _ := strconv.ParseUint(l[3], 10, 32)
log.Debugf("Found lease: %s for MAC: %s, expiring at %d, leased for %d s.\n", ip, mac, expiry, leaseTime)
if mostRecentLease <= expiry-leaseTime {
mostRecentIP = ip
mostRecentLease = expiry - leaseTime
}
}
if len(mostRecentIP) == 0 {
return "", fmt.Errorf("IP lease not found for MAC address %s in: %s\n", mac, DHCPLeaseFile)
}
log.Debugf("Found IP lease: %s for MAC address %s\n", mostRecentIP, mac)
return mostRecentIP, nil
}
func (d *Driver) diskPath() string {
absDiskPath, _ := filepath.Abs(d.ResolveStorePath("disk.hdd"))
return absDiskPath
}
func (d *Driver) getShareFolders() (map[string]string, error) {
stdout, _, err := prlctlOutErr("list", "--info", d.MachineName)
if err != nil {
return nil, err
}
// Parse Shared Folder name (ID) and path
res := make(map[string]string)
for _, match := range reSharedFolder.FindAllStringSubmatch(string(stdout), -1) {
sName := match[1]
sPath := match[2]
log.Debugf("Found the configured shared folder. Name: %q, Path: %q\n", sName, sPath)
res[sName] = sPath
}
return res, nil
}
// Mounts shared folder to the specified guest path. It is assumed that host and guest paths are the same
func (d *Driver) mountShareFolder(shareName string, mountPoint string) error {
// Check the host path is available
if _, err := os.Stat(mountPoint); err != nil {
if os.IsNotExist(err) {
log.Infof("Host path %q does not exist. Skipping mount to VM...", mountPoint)
return nil
}
return err
}
// Ensure that the share is available on the guest side
checkCmd := fmt.Sprintf("sudo modprobe prl_fs && grep -w %q /proc/fs/prl_fs/sf_list", shareName)
if _, err := drivers.RunSSHCommandFromDriver(d, checkCmd); err != nil {
log.Infof("Shared folder %q is unavailable. Skipping mount to VM...", shareName)
return nil
}
// Mount the shared folder
log.Infof("Mounting shared folder %q ...", mountPoint)
mountCmd := fmt.Sprintf("sudo mkdir -p %q && sudo mount -t prl_fs %q %q", mountPoint, shareName, mountPoint)
if _, err := drivers.RunSSHCommandFromDriver(d, mountCmd); err != nil {
return fmt.Errorf("Error mounting shared folder: %s", err)
}
return nil
}
// Make a boot2docker VM disk image.
func (d *Driver) generateDiskImage(size int) error {
tarBuf, err := mcnutils.MakeDiskImage(d.publicSSHKeyPath())
if err != nil {
return err
}
minSizeBytes := int64(minDiskSize) << 20 // usually won't fit in 32-bit int (max 2GB)
//Expand the initial image if needed
if bufLen := int64(tarBuf.Len()); bufLen > minSizeBytes {
bufLenMBytes := bufLen>>20 + 1
if err = prldisktool("resize",
"--hdd", d.diskPath(),
"--size", fmt.Sprintf("%d", bufLenMBytes)); err != nil {
return err
}
}
// Find hds file
hdsList, err := filepath.Glob(d.diskPath() + "/*.hds")
if err != nil {
return err
}
if len(hdsList) == 0 {
return fmt.Errorf("Could not find *.hds image in %s", d.diskPath())
}
hdsPath := hdsList[0]
log.Debugf("HDS image path: %s", hdsPath)
// Write tar to the hds file
hds, err := os.OpenFile(hdsPath, os.O_WRONLY, 0644)
if err != nil {
return err
}
defer hds.Close()
hds.Seek(0, os.SEEK_SET)
_, err = hds.Write(tarBuf.Bytes())
if err != nil {
return err
}
hds.Close()
// Convert image to expanding type and resize it
if err := prldisktool("convert", "--expanding", "--merge",
"--hdd", d.diskPath()); err != nil {
return err
}
if err := prldisktool("resize",
"--hdd", d.diskPath(),
"--size", fmt.Sprintf("%d", size)); err != nil {
return err
}
return nil
}
func (d *Driver) publicSSHKeyPath() string {
return d.GetSSHKeyPath() + ".pub"
}
// Detects Parallels Desktop major version
func getParallelsVersion() (*version.Version, error) {
stdout, _, err := prlctlOutErr("--version")
if err != nil {
return nil, err
}
// Parse Parallels Desktop version
verRaw := reParallelsVersion.FindStringSubmatch(string(stdout))
if verRaw == nil {
return nil, fmt.Errorf("Parallels Desktop version could not be fetched: %s", stdout)
}
ver, err := version.NewVersion(verRaw[1])
if err != nil {
return nil, err
}
return ver, nil
}
// Detects Parallels Desktop edition
func getParallelsEdition() (string, error) {
stdout, _, err := prlsrvctlOutErr("info", "--license")
if err != nil {
return "", err
}
// Parse Parallels Desktop version
res := reParallelsEdition.FindStringSubmatch(string(stdout))
if res == nil {
return "", fmt.Errorf("Driver \"parallels\" requires Parallels Desktop license to be activated. More info: https://kb.parallels.com/en/124225")
}
return res[1], nil
}
// Checks whether the host is connected to Shared network
func checkSharedNetworkConnected() error {
stdout, _, err := prlsrvctlOutErr("net", "info", "Shared")
if err != nil {
return err
}
// Parse the IPv4 of Shared network adapter
res := reSharedAdapterIP.FindStringSubmatch(string(stdout))
if res == nil {
return errSharedNetworkNotConnected
}
sharedNetworkIP := net.ParseIP(res[1])
log.Debugf("IP address of Shared network adapter: %s", sharedNetworkIP)
hostAddrs, err := net.InterfaceAddrs()
if err != nil {
return err
}
log.Debugf("All host interface addressess: %v", hostAddrs)
// Check if the there is an interface with the Shared network adapter's IP assigned
for _, netAddr := range hostAddrs {
ipAddr := netAddr.(*net.IPNet).IP
if ipAddr.Equal(sharedNetworkIP) {
log.Debugf("Parallels Shared network adapter is connected")
return nil
}
}
return errSharedNetworkNotConnected
}