forked from Banno/packer-post-processor-vsphere-ova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post-processor.go
481 lines (382 loc) · 11.8 KB
/
post-processor.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
package main
import (
"bytes"
"crypto/tls"
"fmt"
"github.com/mitchellh/packer/common"
"github.com/mitchellh/packer/packer"
"github.com/vmware/govmomi"
"github.com/vmware/govmomi/find"
"github.com/vmware/govmomi/vim25/types"
"golang.org/x/net/context"
"io/ioutil"
"net/http"
"net/url"
"os"
"os/exec"
"strings"
"time"
"github.com/mitchellh/packer/helper/config"
"github.com/mitchellh/packer/template/interpolate"
vmwarecommon "github.com/mitchellh/packer/builder/vmware/common"
)
var builtins = map[string]string{
"mitchellh.virtualbox": "virtualbox",
"mitchellh.vmware": "vmware",
}
type Config struct {
common.PackerConfig `mapstructure:",squash"`
Datacenter string `mapstructure:"datacenter"`
Datastore string `mapstructure:"datastore"`
Host string `mapstructure:"host"`
Password string `mapstructure:"password"`
Username string `mapstructure:"username"`
VMFolder string `mapstructure:"vm_folder"`
VMNetwork string `mapstructure:"vm_network"`
RemoveEthernet string `mapstructure:"remove_ethernet"`
RemoveFloppy string `mapstructure:"remove_floppy"`
RemoveOpticalDrive string `mapstructure:"remove_optical_drive"`
VirtualHardwareVer string `mapstructure:"virtual_hardware_version"`
ctx interpolate.Context
}
type PostProcessor struct {
config Config
}
func (p *PostProcessor) Configure(raws ...interface{}) error {
err := config.Decode(&p.config, &config.DecodeOpts{
Interpolate: true,
InterpolateFilter: &interpolate.RenderFilter{
Exclude: []string{},
},
}, raws...)
if err != nil {
return err
}
// Defaults
if p.config.RemoveEthernet == "" {
p.config.RemoveEthernet = "false"
}
if p.config.RemoveFloppy == "" {
p.config.RemoveFloppy = "false"
}
if p.config.RemoveOpticalDrive == "" {
p.config.RemoveOpticalDrive = "false"
}
if p.config.VirtualHardwareVer == "" {
p.config.VirtualHardwareVer = "10"
}
// Accumulate any errors
errs := new(packer.MultiError)
if _, err := exec.LookPath("ovftool"); err != nil {
errs = packer.MultiErrorAppend(
errs, fmt.Errorf("ovftool not found: %s", err))
}
// First define all our templatable parameters that are _required_
templates := map[string]*string{
"datacenter": &p.config.Datacenter,
"host": &p.config.Host,
"password": &p.config.Password,
"username": &p.config.Username,
"datastore": &p.config.Datastore,
"vm_folder": &p.config.VMFolder,
}
for key, ptr := range templates {
if *ptr == "" {
errs = packer.MultiErrorAppend(
errs, fmt.Errorf("%s must be set", key))
}
}
if len(errs.Errors) > 0 {
return errs
}
return nil
}
func (p *PostProcessor) RemoveFloppy(vmx string, ui packer.Ui) error {
ui.Message(fmt.Sprintf("Removing floppy from %s", vmx))
vmxData, err := vmwarecommon.ReadVMX(vmx)
if err != nil {
return err
}
for k, _ := range vmxData {
if strings.HasPrefix(k, "floppy0.") {
delete(vmxData, k)
}
}
vmxData["floppy0.present"] = "FALSE"
if err := vmwarecommon.WriteVMX(vmx, vmxData); err != nil {
return err
}
return nil
}
func (p *PostProcessor) RemoveEthernet(vmx string, ui packer.Ui) error {
ui.Message(fmt.Sprintf("Removing ethernet0 intercace from %s", vmx))
vmxData, err := vmwarecommon.ReadVMX(vmx)
if err != nil {
return err
}
for k, _ := range vmxData {
if strings.HasPrefix(k, "ethernet0.") {
delete(vmxData, k)
}
}
vmxData["ethernet0.present"] = "FALSE"
if err := vmwarecommon.WriteVMX(vmx, vmxData); err != nil {
return err
}
return nil
}
func (p *PostProcessor) SetVHardwareVersion(vmx string, ui packer.Ui, hwversion string) error {
ui.Message(fmt.Sprintf("Setting the hardware version in the vmx to version '%s'", hwversion))
vmxContent, err := ioutil.ReadFile(vmx)
lines := strings.Split(string(vmxContent), "\n")
for i, line := range lines {
if strings.Contains(line, "virtualhw.version") {
lines[i] = fmt.Sprintf("virtualhw.version = \"%s\"", hwversion)
}
}
output := strings.Join(lines, "\n")
err = ioutil.WriteFile(vmx, []byte(output), 0644)
if err != nil {
return err
}
return nil
}
func (p *PostProcessor) RemoveOpticalDrive(vmx string, ui packer.Ui) error {
ui.Message(fmt.Sprintf("Removing optical drive from %s", vmx))
vmxData, err := vmwarecommon.ReadVMX(vmx)
if err != nil {
return err
}
for k, _ := range vmxData {
if strings.HasPrefix(k, "ide1:0.file") {
delete(vmxData, k)
}
}
vmxData["ide1:0.present"] = "FALSE"
if err := vmwarecommon.WriteVMX(vmx, vmxData); err != nil {
return err
}
return nil
}
func (p *PostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (packer.Artifact, bool, error) {
if _, ok := builtins[artifact.BuilderId()]; !ok {
return nil, false, fmt.Errorf("Unknown artifact type, can't build box: %s", artifact.BuilderId())
}
ova := ""
vmx := ""
vmdk := ""
for _, path := range artifact.Files() {
if strings.HasSuffix(path, ".ova") {
ova = path
break
} else if strings.HasSuffix(path, ".vmx") {
vmx = path
} else if strings.HasSuffix(path, ".vmdk") {
vmdk = path
}
}
if ova == "" && ( vmx == "" || vmdk == "" ) {
return nil, false, fmt.Errorf("ERROR: Neither OVA or VMX/VMDK were found!")
}
if ova != "" {
// Sweet, we've got an OVA, Now it's time to make that baby something we can work with.
command := exec.Command("ovftool", "--lax", "--allowAllExtraConfig", fmt.Sprintf("--extraConfig:ethernet0.networkName=%s", p.config.VMNetwork), ova, fmt.Sprintf("%s.vmx", strings.TrimSuffix(ova, ".ova")))
var ovftoolOut bytes.Buffer
command.Stdout = &ovftoolOut
if err := command.Run(); err != nil {
return nil, false, fmt.Errorf("Failed: %s\nStdout: %s", err, ovftoolOut.String())
}
ui.Message(fmt.Sprintf("%s", ovftoolOut.String()))
vmdk = fmt.Sprintf("%s-disk1.vmdk", strings.TrimSuffix(ova, ".ova"))
vmx = fmt.Sprintf("%s.vmx", strings.TrimSuffix(ova, ".ova"))
}
if p.config.RemoveEthernet == "true" {
if err := p.RemoveEthernet(vmx, ui); err != nil {
return nil, false, fmt.Errorf("Removing ethernet0 interface from VMX failed!")
}
}
if p.config.RemoveFloppy == "true" {
if err := p.RemoveFloppy(vmx, ui); err != nil {
return nil, false, fmt.Errorf("Removing floppy drive from VMX failed!")
}
}
if p.config.RemoveOpticalDrive == "true" {
if err := p.RemoveOpticalDrive(vmx, ui); err != nil {
return nil, false, fmt.Errorf("Removing CD/DVD Drive from VMX failed!")
}
}
if p.config.VirtualHardwareVer != "" {
if err := p.SetVHardwareVersion(vmx, ui, p.config.VirtualHardwareVer); err != nil {
return nil, false, fmt.Errorf("Setting the Virtual Hardware Version in VMX failed!")
}
}
ui.Message(fmt.Sprintf("Uploading %s and %s to Datastore %s on host %s", vmdk, vmx, p.config.Datastore, p.config.Host))
clonerequired := false
if p.config.RemoveEthernet == "false" || p.config.RemoveFloppy == "false" || p.config.RemoveOpticalDrive == "false" {
clonerequired = true
}
splitString := strings.Split(vmdk, "/")
vmdkDestPath := fmt.Sprintf("folder/%s/%s", p.config.VMFolder, splitString[len(splitString)-1])
splitString = strings.Split(vmx, "/")
vmxDestPath := fmt.Sprintf("folder/%s/%s", p.config.VMFolder, splitString[len(splitString)-1])
err := doUpload(fmt.Sprintf("https://%s:%s@%s/%s?dcPath=%s&dsName=%s",
url.QueryEscape(p.config.Username),
url.QueryEscape(p.config.Password),
p.config.Host,
vmdkDestPath,
p.config.Datacenter,
p.config.Datastore), vmdk)
if err != nil {
return nil, false, fmt.Errorf("Failed: %s", err)
}
ui.Message(fmt.Sprintf("Uploaded %s", vmdk))
err = doUpload(fmt.Sprintf("https://%s:%s@%s/%s?dcPath=%s&dsName=%s",
url.QueryEscape(p.config.Username),
url.QueryEscape(p.config.Password),
p.config.Host,
vmxDestPath,
p.config.Datacenter,
p.config.Datastore), vmx)
if err != nil {
return nil, false, fmt.Errorf("Failed: %s", err)
}
ui.Message(fmt.Sprintf("Uploaded %s", vmx))
err = doRegistration(ui, p.config, vmx, clonerequired)
if err != nil {
return nil, false, fmt.Errorf("Failed: %s", err)
}
ui.Message("Uploaded and registered to VMware")
return artifact, false, nil
}
func doUpload(url string, file string) (err error) {
data, err := os.Open(file)
if err != nil {
return err
}
defer data.Close()
fileInfo, err := data.Stat()
if err != nil {
return err
}
req, err := http.NewRequest("PUT", url, data)
if err != nil {
return err
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
req.ContentLength = fileInfo.Size()
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
client := &http.Client{Transport: tr}
res, err := client.Do(req)
if err != nil {
return err
}
defer res.Body.Close()
return nil
}
func doRegistration(ui packer.Ui, config Config, vmx string, clonerequired bool ) (err error) {
sdkURL, err := url.Parse(fmt.Sprintf("https://%s:%s@%s/sdk",
url.QueryEscape(config.Username),
url.QueryEscape(config.Password),
config.Host))
if err != nil {
return err
}
client, err := govmomi.NewClient(context.TODO(), sdkURL, true)
if err != nil {
return err
}
finder := find.NewFinder(client.Client, false)
datacenter, err := finder.DefaultDatacenter(context.TODO())
finder.SetDatacenter(datacenter)
if err != nil {
return err
}
folders, err := datacenter.Folders(context.TODO())
if err != nil {
return err
}
resourcePool, err := finder.DefaultResourcePool(context.TODO())
if err != nil {
return err
}
splitString := strings.Split(vmx, "/")
last := splitString[len(splitString)-1]
vmName := strings.TrimSuffix(last, ".vmx")
datastoreString := fmt.Sprintf( "[%s] %s/%s.vmx", config.Datastore, config.VMFolder, vmName )
ui.Message(fmt.Sprintf("Registering %s from %s", vmName, datastoreString))
task, err := folders.VmFolder.RegisterVM(context.TODO(), datastoreString, vmName, false, resourcePool, nil)
if err != nil {
return err
}
_, err = task.WaitForResult(context.TODO(), nil)
if err != nil {
return err
}
ui.Message(fmt.Sprintf("Registererd VM %s", vmName))
vm, err := finder.VirtualMachine(context.TODO(), vmName)
rpRef := resourcePool.Reference()
if clonerequired {
cloneSpec := types.VirtualMachineCloneSpec{
Location: types.VirtualMachineRelocateSpec{
Pool: &rpRef,
},
}
cloneVmName := fmt.Sprintf("%s-vm", vmName)
ui.Message(fmt.Sprintf("Cloning VM %s", cloneVmName))
task, err = vm.Clone(context.TODO(), folders.VmFolder, cloneVmName, cloneSpec)
if err != nil {
return err
}
_, err = task.WaitForResult(context.TODO(), nil)
if err != nil {
return err
}
clonedVM, err := finder.VirtualMachine(context.TODO(), cloneVmName)
if err != nil {
return err
}
ui.Message(fmt.Sprintf("Powering on %s", cloneVmName))
task, err = clonedVM.PowerOn(context.TODO())
if err != nil {
return err
}
_, err = task.WaitForResult(context.TODO(), nil)
if err != nil {
return err
}
ui.Message(fmt.Sprintf("Powered on %s", cloneVmName))
time.Sleep(150000 * time.Millisecond) // This is really dirty, but I need to make sure the VM gets fully powered on before I turn it off, otherwise vmware tools won't register on the cloning side.
ui.Message(fmt.Sprintf("Powering off %s", cloneVmName))
task, err = clonedVM.PowerOff(context.TODO())
if err != nil {
return err
}
_, err = task.WaitForResult(context.TODO(), nil)
if err != nil {
return err
}
ui.Message(fmt.Sprintf("Powered off %s", cloneVmName))
ui.Message(fmt.Sprintf("Marking as template %s", cloneVmName))
err = clonedVM.MarkAsTemplate(context.TODO())
if err != nil {
return err
}
ui.Message(fmt.Sprintf("Destroying %s", cloneVmName))
task, err = vm.Destroy(context.TODO())
_, err = task.WaitForResult(context.TODO(), nil)
if err != nil {
return err
}
ui.Message(fmt.Sprintf("Destroyed %s", cloneVmName))
} else {
ui.Message(fmt.Sprintf("Marking as template %s", vmName))
err = vm.MarkAsTemplate(context.TODO())
if err != nil {
return err
}
ui.Message(fmt.Sprintf("%s is now a template", vmName))
}
return nil
}