-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathdomainmgr_test.go
654 lines (554 loc) · 17.5 KB
/
domainmgr_test.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
// Copyright (c) 2017-2018 Zededa, Inc.
// SPDX-License-Identifier: Apache-2.0
// Manage Xen guest domains based on the subscribed collection of DomainConfig
// and publish the result in a collection of DomainStatus structs.
// We run a separate go routine for each domU to be able to boot and halt
// them concurrently and also pick up their state periodically.
package domainmgr
import (
"encoding/base64"
"fmt"
"os"
"path/filepath"
"reflect"
"strings"
"testing"
"github.com/lf-edge/eve/pkg/pillar/agentlog"
"github.com/lf-edge/eve/pkg/pillar/base"
"github.com/lf-edge/eve/pkg/pillar/hypervisor"
"github.com/lf-edge/eve/pkg/pillar/types"
"github.com/lf-edge/eve/pkg/pillar/utils/cloudconfig"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
)
func init() {
if logger == nil || log == nil {
logger, log = agentlog.Init(agentName)
}
if hyper == nil {
var err error
hyper, err = hypervisor.GetHypervisor("null")
if err != nil {
panic(err)
}
}
}
func TestFetchEnvVariablesFromCloudInit(t *testing.T) {
log = base.NewSourceLogObject(logrus.StandardLogger(), "domainmgr", 0)
type fetchEnvVar struct {
cloudInitStr string
expectOutput map[string]string
}
// testStrings are base 64 encoded strings which will contain
// environment variables which user will pass in custom config
// template in the manifest.
// testString1 contains FOO=BAR environment variables which will
// be set inside container.
testString1 := "Rk9PPUJBUg=="
// testString2 contains SQL_ROOT_PASSWORD=$omeR&NdomPa$$word environment variables which will
// be set inside container.
testString2 := "U1FMX1JPT1RfUEFTU1dPUkQ9JG9tZVImTmRvbVBhJCR3b3Jk"
// testString3 contains PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
// environment variables which will be set inside container.
testString3 := "UEFUSD0vdXNyL2xvY2FsL3NiaW46L3Vzci9sb2NhbC9iaW46L3Vzci9zYmluOi91c3IvYmluOi9zYmluOi9iaW4="
// testString4 contains FOO=1 2 (with space in between)
// environment variables which will be set inside container.
testString4 := "Rk9PPTEgMg=="
// testString5 contains
// FOO1=BAR1
// FOO2= [Without value]
// FOO3 [Only key without delimiter]
// FOO4=BAR4
// environment variables which will be set inside container.
testString5 := "Rk9PMT1CQVIxCkZPTzI9CkZPTzMKRk9PND1CQVI0"
testFetchEnvVar := map[string]fetchEnvVar{
"Test env var 1": {
cloudInitStr: testString1,
expectOutput: map[string]string{
"FOO": "BAR",
},
},
"Test env var 2": {
cloudInitStr: testString2,
expectOutput: map[string]string{
"SQL_ROOT_PASSWORD": "$omeR&NdomPa$$word",
},
},
"Test env var 3": {
cloudInitStr: testString3,
expectOutput: map[string]string{
"PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
},
},
"Test env var 4": {
cloudInitStr: testString4,
expectOutput: map[string]string{
"FOO": "1 2",
},
},
"Negative test env var 5": {
cloudInitStr: testString5,
},
}
for testname, test := range testFetchEnvVar {
t.Logf("Running test case %s", testname)
envMap, err := decodeAndParseEnvVariablesFromCloudInit(test.cloudInitStr)
switch testname {
case "Negative test env var 5":
if err == nil {
t.Errorf("Fetching env variable from cloud init passed, expecting it to be failed.")
}
default:
if err != nil {
t.Errorf("Fetching env variable from cloud init failed: %v", err)
}
if !reflect.DeepEqual(envMap, test.expectOutput) {
t.Errorf("Env map ( %v ) != Expected value ( %v )", envMap, test.expectOutput)
}
}
}
}
func decodeAndParseEnvVariablesFromCloudInit(ciStr string) (map[string]string, error) {
ud, err := base64.StdEncoding.DecodeString(ciStr)
if err != nil {
return nil, fmt.Errorf("base64 decode failed %s", err)
}
if cloudconfig.IsCloudConfig(string(ud)) { // treat like the cloud-init config
cc, err := cloudconfig.ParseCloudConfig(string(ud))
if err != nil {
return nil, err
}
return parseEnvVariablesFromCloudInit(cc.RunCmd)
} else { // treat like the key value map for envs (old syntax)
envPairs := strings.Split(string(ud), "\n")
return parseEnvVariablesFromCloudInit(envPairs)
}
}
// Definitions of various cloud-init multi-part messages
var ciGood = `Content-Type: multipart/mixed; boundary="===============dZOZMyOGZ9KiSApI=="
MIME-Version: 1.0
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="commands.txt"
echo "Hello World!"
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="empty.txt"
--===============dZOZMyOGZ9KiSApI==--
`
var ciNoct = `MIME-Version: 1.0
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="commands.txt"
echo "Hello World!"
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="empty.txt"
--===============dZOZMyOGZ9KiSApI==--
`
var ciNoboundary = `Content-Type: multipart/mixed"
MIME-Version: 1.0
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="commands.txt"
echo "Hello World!"
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="empty.txt"
--===============dZOZMyOGZ9KiSApI==--
`
var ciNotmultipart = `Content-Type: text/mixed; boundary="===============dZOZMyOGZ9KiSApI=="
MIME-Version: 1.0
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="commands.txt"
echo "Hello World!"
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="empty.txt"
--===============dZOZMyOGZ9KiSApI==--
`
var ciNofile = `Content-Type: multipart/mixed; boundary="===============dZOZMyOGZ9KiSApI=="
MIME-Version: 1.0
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment"
echo "Hello World!"
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="empty.txt"
--===============dZOZMyOGZ9KiSApI==--
`
var ciNocd = `Content-Type: multipart/mixed; boundary="===============dZOZMyOGZ9KiSApI=="
MIME-Version: 1.0
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="commands.txt"
echo "Hello World!"
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
--===============dZOZMyOGZ9KiSApI==--
`
var ciSubdirs = `Content-Type: multipart/mixed; boundary="===============dZOZMyOGZ9KiSApI=="
MIME-Version: 1.0
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="a/b/commands.txt"
echo "Hello World!"
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="a/c/../../empty.txt"
--===============dZOZMyOGZ9KiSApI==--
`
var ciEscape = `Content-Type: multipart/mixed; boundary="===============dZOZMyOGZ9KiSApI=="
MIME-Version: 1.0
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="a/../../commands.txt"
echo "Hello World!"
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="a/c/../../empty.txt"
--===============dZOZMyOGZ9KiSApI==--
`
var ciTruncated = `Content-Type: multipart/mixed; boundary="===============dZOZMyOGZ9KiSApI=="
MIME-Version: 1.0
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="commands.txt"
echo "Hello World!"
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="empty.txt"
`
var ciTruncatedOne = `Content-Type: multipart/mixed; boundary="===============dZOZMyOGZ9KiSApI=="
MIME-Version: 1.0
--===============dZOZMyOGZ9KiSApI==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="commands.txt"
echo "Hello World!"
--===============dZOZMyOGZ9KiSApI==
`
var ciTruncatedZero = `Content-Type: multipart/mixed; boundary="===============dZOZMyOGZ9KiSApI=="
MIME-Version: 1.0
`
func TestHandleMimeMultipart(t *testing.T) {
log = base.NewSourceLogObject(logrus.StandardLogger(), "domainmgr", 0)
testMatrix := map[string]struct {
ciStr string
expectMultipart bool
expectFail bool
expectFiles []string
expectDirs []string
}{
"Test empty": {
ciStr: "",
expectMultipart: false,
expectFail: false,
},
"Test no Content-Type": {
ciStr: ciNoct,
expectMultipart: false,
expectFail: false,
},
"Test no boundary": {
ciStr: ciNoboundary,
expectMultipart: false,
expectFail: false,
},
"Test not Content-Type multipart": {
ciStr: ciNotmultipart,
expectMultipart: false,
expectFail: false,
},
"Test no filename": {
ciStr: ciNofile,
expectMultipart: true,
expectFail: true,
},
"Test no Content-Disposition": {
ciStr: ciNocd,
expectMultipart: true,
expectFail: true,
expectFiles: []string{"/commands.txt"},
},
"Test good": {
ciStr: ciGood,
expectMultipart: true,
expectFail: false,
expectFiles: []string{"/commands.txt", "/empty.txt"},
},
"Test subdirs": {
ciStr: ciSubdirs,
expectMultipart: true,
expectFail: false,
expectFiles: []string{"/a/b/commands.txt", "/empty.txt"},
expectDirs: []string{"/a", "/a/b"},
},
"Test escape": {
ciStr: ciEscape,
expectMultipart: true,
expectFail: true,
},
"Test truncated": {
ciStr: ciTruncated,
expectMultipart: true,
expectFail: true,
expectFiles: []string{"/commands.txt", "/empty.txt"},
},
"Test truncated one": {
ciStr: ciTruncatedOne,
expectMultipart: true,
expectFail: false,
expectFiles: []string{"/commands.txt"},
},
"Test truncated zero": {
ciStr: ciTruncatedZero,
expectMultipart: true,
expectFail: true,
},
}
dir, err := os.MkdirTemp("", "domainmgr_test")
assert.Nil(t, err)
if err != nil {
return
}
for testname, test := range testMatrix {
t.Logf("Running test case %s", testname)
mydir := dir + "/" + testname
err = os.Mkdir(mydir, 0700)
assert.Nil(t, err)
if err != nil {
continue
}
ok, err := handleMimeMultipart(mydir, test.ciStr, true)
assert.Equal(t, test.expectMultipart, ok)
if test.expectFail {
assert.NotNil(t, err)
} else {
assert.Nil(t, err)
}
var files []string
var dirs []string
err = filepath.Walk(mydir, func(path string, info os.FileInfo, e error) error {
if e != nil {
return e
}
// Update files and dirs except top level dir
filename := strings.TrimPrefix(path, mydir)
if info.Mode().IsRegular() {
files = append(files, filename)
} else if info.Mode().IsDir() && filename != "" {
dirs = append(dirs, filename)
}
return nil
})
assert.Nil(t, err)
if err != nil {
continue
}
assert.Equal(t, len(test.expectFiles), len(files))
if len(test.expectFiles) == len(files) {
for i := range files {
assert.Equal(t, test.expectFiles[i], files[i])
}
}
assert.Equal(t, len(test.expectDirs), len(dirs))
if len(test.expectDirs) == len(dirs) {
for i := range dirs {
assert.Equal(t, test.expectDirs[i], dirs[i])
}
}
}
os.RemoveAll(dir)
}
func TestUsbControllersNoImmediatePCIReserve(t *testing.T) {
var pciLongs map[string]struct{}
noPCIReserve := []types.IoBundle{
{
Type: types.IoUSBController,
AssignmentGroup: "",
ParentAssignmentGroup: "",
PciLong: "00:01",
},
}
setPciLongs := func(ioBundles []types.IoBundle) {
pciLongs = make(map[string]struct{})
for p := range usbControllersWithoutPCIReserve(ioBundles) {
pciLongs[p] = struct{}{}
}
}
setPciLongs(noPCIReserve)
if len(pciLongs) > 0 {
t.Fatalf("expected no controllers that should be reserved, but got %+v", pciLongs)
}
noPCIReserve = append(noPCIReserve, types.IoBundle{
Type: types.IoUSBDevice,
})
setPciLongs(noPCIReserve)
if len(pciLongs) != 1 {
t.Fatalf("expected controller to be reserved for usb device, but got %+v", pciLongs)
}
noPCIReserveBecauseOfDifferentAssigngrp := []types.IoBundle{
{
Type: types.IoUSBController,
AssignmentGroup: "one",
ParentAssignmentGroup: "",
PciLong: "00:01",
},
{
Type: types.IoUSBDevice,
AssignmentGroup: "",
ParentAssignmentGroup: "two",
},
}
setPciLongs(noPCIReserveBecauseOfDifferentAssigngrp)
if len(pciLongs) > 0 {
t.Fatalf("expected no controllers that should be reserved, but got %+v", pciLongs)
}
noPCIReserveBecauseOfDifferentAssigngrp = append(noPCIReserveBecauseOfDifferentAssigngrp, types.IoBundle{
Type: types.IoUSBDevice,
})
setPciLongs(noPCIReserveBecauseOfDifferentAssigngrp)
if len(pciLongs) != 1 {
t.Fatalf("expected controller to be reserved for usb device, but got %+v", pciLongs)
}
pciReserveBecauseOfMatchingAssigngrp := []types.IoBundle{
{
Type: types.IoUSBController,
AssignmentGroup: "one",
ParentAssignmentGroup: "",
PciLong: "00:01",
},
{
Type: types.IoUSBDevice,
AssignmentGroup: "",
ParentAssignmentGroup: "one",
},
}
setPciLongs(pciReserveBecauseOfMatchingAssigngrp)
if len(pciLongs) != 1 {
t.Fatalf("expected controller to be reserved for usb device, but got %+v", pciLongs)
}
pciReserveBecauseOfMatchingAssigngrp = append(pciReserveBecauseOfMatchingAssigngrp, types.IoBundle{
Type: types.IoUSBController,
AssignmentGroup: "one",
PciLong: "00:02",
})
setPciLongs(pciReserveBecauseOfMatchingAssigngrp)
if len(pciLongs) != 2 {
t.Fatalf("expected both controllers to be reserved for usb device, but got %+v", pciLongs)
}
pciReserveBecauseOfMatchingAssigngrp = append(pciReserveBecauseOfMatchingAssigngrp, types.IoBundle{
Type: types.IoUSBController,
AssignmentGroup: "two", // no usb device depends on it, therefore pci reservation can be done
PciLong: "00:03",
})
setPciLongs(pciReserveBecauseOfMatchingAssigngrp)
if len(pciLongs) != 2 {
t.Fatalf("expected both controllers to be reserved for usb device, but got %+v", pciLongs)
}
pciReserveBecauseOfMatchingAssigngrp = append(pciReserveBecauseOfMatchingAssigngrp, types.IoBundle{
Type: types.IoUSBDevice,
ParentAssignmentGroup: "",
})
setPciLongs(pciReserveBecauseOfMatchingAssigngrp)
if len(pciLongs) != 3 {
t.Fatalf("expected all three controllers to be reserved for usb device, but got %+v", pciLongs)
}
}
func TestConfigEnableUsbUpdatePortAndPciBackIoBundle(t *testing.T) {
assignableAdapters := types.AssignableAdapters{
IoBundleList: []types.IoBundle{
{
Phylabel: "IoUSB",
Type: types.IoUSB,
KeepInHost: false,
AssignmentGroup: "1",
PciLong: "00:01",
},
{
Phylabel: "IoUSBController",
Type: types.IoUSBController,
KeepInHost: false,
AssignmentGroup: "1",
PciLong: "00:01",
},
{
Phylabel: "IoUSBDevice",
Type: types.IoUSBDevice,
KeepInHost: false,
AssignmentGroup: "2",
ParentAssignmentGroup: "3",
},
},
}
ctx := &domainContext{
assignableAdapters: &assignableAdapters,
usbAccess: true,
}
ib := &types.IoBundle{
AssignmentGroup: "1",
}
updatePortAndPciBackIoBundle(ctx, ib)
for _, ib := range ctx.assignableAdapters.IoBundleList {
if (ib.Phylabel == "IoUSB" || ib.Phylabel == "IoUSBController") && !ib.KeepInHost {
t.Fatalf("IoBundle %+v should be kept in host", ib)
}
if ib.Phylabel == "IoUSBDevice" && ib.KeepInHost {
t.Fatalf("IoBundle %+v should not be kept in host", ib)
}
}
for i := range ctx.assignableAdapters.IoBundleList {
ctx.assignableAdapters.IoBundleList[i].KeepInHost = false
}
ib.KeepInHost = false
ctx.usbAccess = false
updatePortAndPciBackIoBundle(ctx, ib)
for _, ib := range ctx.assignableAdapters.IoBundleList {
if (ib.Phylabel == "IoUSB" || ib.Phylabel == "IoUSBController") && ib.KeepInHost {
t.Fatalf("IoBundle %+v should be not kept in host", ib)
}
if ib.Phylabel == "IoUSBDevice" && ib.KeepInHost {
t.Fatalf("IoBundle %+v should not be kept in host", ib)
}
}
}