-
Notifications
You must be signed in to change notification settings - Fork 601
/
Copy pathgadget.go
978 lines (870 loc) · 29 KB
/
gadget.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
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2019-2020 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package gadget
import (
"errors"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"regexp"
"sort"
"strings"
"gopkg.in/yaml.v2"
"github.com/snapcore/snapd/asserts"
"github.com/snapcore/snapd/gadget/edition"
"github.com/snapcore/snapd/gadget/quantity"
"github.com/snapcore/snapd/metautil"
"github.com/snapcore/snapd/snap"
"github.com/snapcore/snapd/snap/naming"
"github.com/snapcore/snapd/strutil"
)
const (
// schemaMBR identifies a Master Boot Record partitioning schema, or an
// MBR like role
schemaMBR = "mbr"
// schemaGPT identifies a GUID Partition Table partitioning schema
schemaGPT = "gpt"
SystemBoot = "system-boot"
SystemData = "system-data"
SystemSeed = "system-seed"
SystemSave = "system-save"
// extracted kernels for all uc systems
bootImage = "system-boot-image"
// extracted kernels for recovery kernels for uc20 specifically
seedBootImage = "system-seed-image"
// bootloader specific partition which stores bootloader environment vars
// for purposes of booting normal run mode on uc20 and all modes on
// uc16 and uc18
bootSelect = "system-boot-select"
// bootloader specific partition which stores bootloader environment vars
// for purposes of booting recovery systems on uc20, i.e. recover or install
seedBootSelect = "system-seed-select"
// implicitSystemDataLabel is the implicit filesystem label of structure
// of system-data role
implicitSystemDataLabel = "writable"
// UC20 filesystem labels for roles
ubuntuBootLabel = "ubuntu-boot"
ubuntuSeedLabel = "ubuntu-seed"
ubuntuDataLabel = "ubuntu-data"
ubuntuSaveLabel = "ubuntu-save"
// only supported for legacy reasons
legacyBootImage = "bootimg"
legacyBootSelect = "bootselect"
)
var (
validVolumeName = regexp.MustCompile("^[a-zA-Z0-9][a-zA-Z0-9-]+$")
validTypeID = regexp.MustCompile("^[0-9A-F]{2}$")
validGUUID = regexp.MustCompile("^(?i)[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$")
)
type Info struct {
Volumes map[string]*Volume `yaml:"volumes,omitempty"`
// Default configuration for snaps (snap-id => key => value).
Defaults map[string]map[string]interface{} `yaml:"defaults,omitempty"`
Connections []Connection `yaml:"connections"`
}
// Volume defines the structure and content for the image to be written into a
// block device.
type Volume struct {
// Schema describes the schema used for the volume
Schema string `yaml:"schema"`
// Bootloader names the bootloader used by the volume
Bootloader string `yaml:"bootloader"`
// ID is a 2-hex digit disk ID or GPT GUID
ID string `yaml:"id"`
// Structure describes the structures that are part of the volume
Structure []VolumeStructure `yaml:"structure"`
}
// VolumeStructure describes a single structure inside a volume. A structure can
// represent a partition, Master Boot Record, or any other contiguous range
// within the volume.
type VolumeStructure struct {
// Name, when non empty, provides the name of the structure
Name string `yaml:"name"`
// Label provides the filesystem label
Label string `yaml:"filesystem-label"`
// Offset defines a starting offset of the structure
Offset *quantity.Offset `yaml:"offset"`
// OffsetWrite describes a 32-bit address, within the volume, at which
// the offset of current structure will be written. The position may be
// specified as a byte offset relative to the start of a named structure
OffsetWrite *RelativeOffset `yaml:"offset-write"`
// Size of the structure
Size quantity.Size `yaml:"size"`
// Type of the structure, which can be 2-hex digit MBR partition,
// 36-char GUID partition, comma separated <mbr>,<guid> for hybrid
// partitioning schemes, or 'bare' when the structure is not considered
// a partition.
//
// For backwards compatibility type 'mbr' is also accepted, and the
// structure is treated as if it is of role 'mbr'.
Type string `yaml:"type"`
// Role describes the role of given structure, can be one of
// 'mbr', 'system-data', 'system-boot', 'system-boot-image',
// 'system-boot-select' or 'system-recovery-select'. Structures of type 'mbr', must have a
// size of 446 bytes and must start at 0 offset.
Role string `yaml:"role"`
// ID is the GPT partition ID
ID string `yaml:"id"`
// Filesystem used for the partition, 'vfat', 'ext4' or 'none' for
// structures of type 'bare'
Filesystem string `yaml:"filesystem"`
// Content of the structure
Content []VolumeContent `yaml:"content"`
Update VolumeUpdate `yaml:"update"`
}
// HasFilesystem returns true if the structure is using a filesystem.
func (vs *VolumeStructure) HasFilesystem() bool {
return vs.Filesystem != "none" && vs.Filesystem != ""
}
// IsPartition returns true when the structure describes a partition in a block
// device.
func (vs *VolumeStructure) IsPartition() bool {
return vs.Type != "bare" && vs.Role != schemaMBR
}
// VolumeContent defines the contents of the structure. The content can be
// either files within a filesystem described by the structure or raw images
// written into the area of a bare structure.
type VolumeContent struct {
// UnresovedSource is the data of the partition relative to
// the gadget base directory
UnresolvedSource string `yaml:"source"`
// Target is the location of the data inside the root filesystem
Target string `yaml:"target"`
// Image names the image, relative to gadget base directory, to be used
// for a 'bare' type structure
Image string `yaml:"image"`
// Offset the image is written at
Offset *quantity.Offset `yaml:"offset"`
// OffsetWrite describes a 32-bit address, within the volume, at which
// the offset of current image will be written. The position may be
// specified as a byte offset relative to the start of a named structure
OffsetWrite *RelativeOffset `yaml:"offset-write"`
// Size of the image, when empty size is calculated by looking at the
// image
Size quantity.Size `yaml:"size"`
Unpack bool `yaml:"unpack"`
}
func (vc VolumeContent) String() string {
if vc.Image != "" {
return fmt.Sprintf("image:%s", vc.Image)
}
return fmt.Sprintf("source:%s", vc.UnresolvedSource)
}
type VolumeUpdate struct {
Edition edition.Number `yaml:"edition"`
Preserve []string `yaml:"preserve"`
}
// GadgetConnect describes an interface connection requested by the gadget
// between seeded snaps. The syntax is of a mapping like:
//
// plug: (<plug-snap-id>|system):plug
// [slot: (<slot-snap-id>|system):slot]
//
// "system" indicates a system plug or slot.
// Fully omitting the slot part indicates a system slot with the same name
// as the plug.
type Connection struct {
Plug ConnectionPlug `yaml:"plug"`
Slot ConnectionSlot `yaml:"slot"`
}
type ConnectionPlug struct {
SnapID string
Plug string
}
func (gcplug *ConnectionPlug) Empty() bool {
return gcplug.SnapID == "" && gcplug.Plug == ""
}
func (gcplug *ConnectionPlug) UnmarshalYAML(unmarshal func(interface{}) error) error {
var s string
if err := unmarshal(&s); err != nil {
return err
}
snapID, name, err := parseSnapIDColonName(s)
if err != nil {
return fmt.Errorf("in gadget connection plug: %v", err)
}
gcplug.SnapID = snapID
gcplug.Plug = name
return nil
}
type ConnectionSlot struct {
SnapID string
Slot string
}
func (gcslot *ConnectionSlot) Empty() bool {
return gcslot.SnapID == "" && gcslot.Slot == ""
}
func (gcslot *ConnectionSlot) UnmarshalYAML(unmarshal func(interface{}) error) error {
var s string
if err := unmarshal(&s); err != nil {
return err
}
snapID, name, err := parseSnapIDColonName(s)
if err != nil {
return fmt.Errorf("in gadget connection slot: %v", err)
}
gcslot.SnapID = snapID
gcslot.Slot = name
return nil
}
func parseSnapIDColonName(s string) (snapID, name string, err error) {
parts := strings.Split(s, ":")
if len(parts) == 2 {
snapID = parts[0]
name = parts[1]
}
if snapID == "" || name == "" {
return "", "", fmt.Errorf(`expected "(<snap-id>|system):name" not %q`, s)
}
return snapID, name, nil
}
func systemOrSnapID(s string) bool {
if s != "system" && naming.ValidateSnapID(s) != nil {
return false
}
return true
}
// Model carries characteristics about the model that are relevant to gadget.
// Note *asserts.Model implements this, and that's the expected use case.
type Model interface {
Classic() bool
Grade() asserts.ModelGrade
}
func classicOrUndetermined(m Model) bool {
return m == nil || m.Classic()
}
func wantsSystemSeed(m Model) bool {
return m != nil && m.Grade() != asserts.ModelGradeUnset
}
// InfoFromGadgetYaml parses the provided gadget metadata.
// If model is nil only self-consistency checks are performed.
// If model is not nil implied values for filesystem labels will be set
// as well, based on whether the model is for classic, UC16/18 or UC20.
// UC gadget metadata is expected to have volumes definitions.
func InfoFromGadgetYaml(gadgetYaml []byte, model Model) (*Info, error) {
var gi Info
if err := yaml.Unmarshal(gadgetYaml, &gi); err != nil {
return nil, fmt.Errorf("cannot parse gadget metadata: %v", err)
}
for k, v := range gi.Defaults {
if !systemOrSnapID(k) {
return nil, fmt.Errorf(`default stanza not keyed by "system" or snap-id: %s`, k)
}
dflt, err := metautil.NormalizeValue(v)
if err != nil {
return nil, fmt.Errorf("default value %q of %q: %v", v, k, err)
}
gi.Defaults[k] = dflt.(map[string]interface{})
}
for i, gconn := range gi.Connections {
if gconn.Plug.Empty() {
return nil, errors.New("gadget connection plug cannot be empty")
}
if gconn.Slot.Empty() {
gi.Connections[i].Slot.SnapID = "system"
gi.Connections[i].Slot.Slot = gconn.Plug.Plug
}
}
if len(gi.Volumes) == 0 && classicOrUndetermined(model) {
// volumes can be left out on classic
// can still specify defaults though
return &gi, nil
}
// basic validation
var bootloadersFound int
knownFsLabelsPerVolume := make(map[string]map[string]bool, len(gi.Volumes))
for name, v := range gi.Volumes {
if err := validateVolume(name, v, model, knownFsLabelsPerVolume); err != nil {
return nil, fmt.Errorf("invalid volume %q: %v", name, err)
}
switch v.Bootloader {
case "":
// pass
case "grub", "u-boot", "android-boot", "lk":
bootloadersFound += 1
default:
return nil, errors.New("bootloader must be one of grub, u-boot, android-boot or lk")
}
}
switch {
case bootloadersFound == 0:
return nil, errors.New("bootloader not declared in any volume")
case bootloadersFound > 1:
return nil, fmt.Errorf("too many (%d) bootloaders declared", bootloadersFound)
}
for name, v := range gi.Volumes {
if err := setImplicitForVolume(name, v, model, knownFsLabelsPerVolume[name]); err != nil {
return nil, fmt.Errorf("invalid volume %q: %v", name, err)
}
}
return &gi, nil
}
type volRuleset int
const (
volRulesetUnknown volRuleset = iota
volRuleset16
volRuleset20
)
func whichVolRuleset(model Model) volRuleset {
if model == nil {
return volRulesetUnknown
}
if model.Grade() != asserts.ModelGradeUnset {
return volRuleset20
}
return volRuleset16
}
func setImplicitForVolume(name string, vol *Volume, model Model, knownFsLabels map[string]bool) error {
rs := whichVolRuleset(model)
if vol.Schema == "" {
// default for schema is gpt
vol.Schema = schemaGPT
}
for i := range vol.Structure {
if err := setImplicitForVolumeStructure(&vol.Structure[i], rs, knownFsLabels); err != nil {
return err
}
}
return nil
}
func setImplicitForVolumeStructure(vs *VolumeStructure, rs volRuleset, knownFsLabels map[string]bool) error {
if vs.Role == "" && vs.Type == schemaMBR {
vs.Role = schemaMBR
return nil
}
if rs == volRuleset16 && vs.Role == "" && vs.Label == SystemBoot {
// legacy behavior, for gadgets that only specify a filesystem-label, eg. pc
vs.Role = SystemBoot
return nil
}
if vs.Label == "" {
var implicitLabel string
switch {
case rs == volRuleset16 && vs.Role == SystemData:
implicitLabel = implicitSystemDataLabel
case rs == volRuleset20 && vs.Role == SystemData:
implicitLabel = ubuntuDataLabel
case rs == volRuleset20 && vs.Role == SystemSeed:
implicitLabel = ubuntuSeedLabel
case rs == volRuleset20 && vs.Role == SystemBoot:
implicitLabel = ubuntuBootLabel
case rs == volRuleset20 && vs.Role == SystemSave:
implicitLabel = ubuntuSaveLabel
}
if implicitLabel != "" {
if knownFsLabels[implicitLabel] {
return fmt.Errorf("filesystem label %q is implied by %s role but was already set elsewhere", implicitLabel, vs.Role)
}
knownFsLabels[implicitLabel] = true
vs.Label = implicitLabel
}
}
return nil
}
func readInfo(f func(string) ([]byte, error), gadgetYamlFn string, model Model) (*Info, error) {
gmeta, err := f(gadgetYamlFn)
if classicOrUndetermined(model) && os.IsNotExist(err) {
// gadget.yaml is optional for classic gadgets
return &Info{}, nil
}
if err != nil {
return nil, err
}
return InfoFromGadgetYaml(gmeta, model)
}
// ReadInfo reads the gadget specific metadata from meta/gadget.yaml in the snap
// root directory.
// See ReadInfoAndValidate for a variant that does role-usage consistency
// validation like Validate.
func ReadInfo(gadgetSnapRootDir string, model Model) (*Info, error) {
gadgetYamlFn := filepath.Join(gadgetSnapRootDir, "meta", "gadget.yaml")
ginfo, err := readInfo(ioutil.ReadFile, gadgetYamlFn, model)
if err != nil {
return nil, err
}
return ginfo, nil
}
// ReadInfoAndValidate reads the gadget specific metadata from
// meta/gadget.yaml in the snap root directory.
// It also performs role-usage consistency validation as Validate does
// using the given constraints. See ReadInfo for a variant that does not.
// See also ValidateContent for further validating the content itself
// instead of the metadata.
func ReadInfoAndValidate(gadgetSnapRootDir string, model Model, validationConstraints *ValidationConstraints) (*Info, error) {
ginfo, err := ReadInfo(gadgetSnapRootDir, model)
if err != nil {
return nil, err
}
if err := Validate(ginfo, model, validationConstraints); err != nil {
return nil, err
}
return ginfo, err
}
// ReadInfoFromSnapFile reads the gadget specific metadata from
// meta/gadget.yaml in the given snap container.
// It also performs role-usage consistency validation as Validate does.
// See ReadInfoFromSnapFileNoValidate for a variant that does not.
func ReadInfoFromSnapFile(snapf snap.Container, model Model) (*Info, error) {
ginfo, err := ReadInfoFromSnapFileNoValidate(snapf, model)
if err != nil {
return nil, err
}
if err := Validate(ginfo, model, nil); err != nil {
return nil, err
}
return ginfo, nil
}
// ReadInfoFromSnapFileNoValidate reads the gadget specific metadata from
// meta/gadget.yaml in the given snap container.
// See ReadInfoFromSnapFile for a variant that does role-usage consistency
// validation like Validate as well.
func ReadInfoFromSnapFileNoValidate(snapf snap.Container, model Model) (*Info, error) {
gadgetYamlFn := "meta/gadget.yaml"
ginfo, err := readInfo(snapf.ReadFile, gadgetYamlFn, model)
if err != nil {
return nil, err
}
return ginfo, nil
}
func fmtIndexAndName(idx int, name string) string {
if name != "" {
return fmt.Sprintf("#%v (%q)", idx, name)
}
return fmt.Sprintf("#%v", idx)
}
func validateVolume(name string, vol *Volume, model Model, knownFsLabelsPerVolume map[string]map[string]bool) error {
if !validVolumeName.MatchString(name) {
return errors.New("invalid name")
}
if vol.Schema != "" && vol.Schema != schemaGPT && vol.Schema != schemaMBR {
return fmt.Errorf("invalid schema %q", vol.Schema)
}
// named structures, for cross-referencing relative offset-write names
knownStructures := make(map[string]*LaidOutStructure, len(vol.Structure))
// for uniqueness of filesystem labels
knownFsLabels := make(map[string]bool, len(vol.Structure))
// for validating structure overlap
structures := make([]LaidOutStructure, len(vol.Structure))
if knownFsLabelsPerVolume != nil {
knownFsLabelsPerVolume[name] = knownFsLabels
}
previousEnd := quantity.Offset(0)
// TODO: should we also validate that if there is a system-recovery-select
// role there should also be at least 2 system-recovery-image roles and
// same for system-boot-select and at least 2 system-boot-image roles?
for idx, s := range vol.Structure {
if err := validateVolumeStructure(&s, vol); err != nil {
return fmt.Errorf("invalid structure %v: %v", fmtIndexAndName(idx, s.Name), err)
}
var start quantity.Offset
if s.Offset != nil {
start = *s.Offset
} else {
start = previousEnd
}
end := start + quantity.Offset(s.Size)
ps := LaidOutStructure{
VolumeStructure: &vol.Structure[idx],
StartOffset: start,
Index: idx,
}
structures[idx] = ps
if s.Name != "" {
if _, ok := knownStructures[s.Name]; ok {
return fmt.Errorf("structure name %q is not unique", s.Name)
}
// keep track of named structures
knownStructures[s.Name] = &ps
}
if s.Label != "" {
if seen := knownFsLabels[s.Label]; seen {
return fmt.Errorf("filesystem label %q is not unique", s.Label)
}
knownFsLabels[s.Label] = true
}
previousEnd = end
}
// sort by starting offset
sort.Sort(byStartOffset(structures))
return validateCrossVolumeStructure(structures, knownStructures)
}
// isMBR returns whether the structure is the MBR and can be used before setImplicitForVolume
func isMBR(vs *VolumeStructure) bool {
if vs.Role == schemaMBR {
return true
}
if vs.Role == "" && vs.Type == schemaMBR {
return true
}
return false
}
func validateCrossVolumeStructure(structures []LaidOutStructure, knownStructures map[string]*LaidOutStructure) error {
previousEnd := quantity.Offset(0)
// cross structure validation:
// - relative offsets that reference other structures by name
// - laid out structure overlap
// use structures laid out within the volume
for pidx, ps := range structures {
if isMBR(ps.VolumeStructure) {
if ps.StartOffset != 0 {
return fmt.Errorf(`structure %v has "mbr" role and must start at offset 0`, ps)
}
}
if ps.OffsetWrite != nil && ps.OffsetWrite.RelativeTo != "" {
// offset-write using a named structure
other := knownStructures[ps.OffsetWrite.RelativeTo]
if other == nil {
return fmt.Errorf("structure %v refers to an unknown structure %q",
ps, ps.OffsetWrite.RelativeTo)
}
}
if ps.StartOffset < previousEnd {
previous := structures[pidx-1]
return fmt.Errorf("structure %v overlaps with the preceding structure %v", ps, previous)
}
previousEnd = ps.StartOffset + quantity.Offset(ps.Size)
if ps.HasFilesystem() {
// content relative offset only possible if it's a bare structure
continue
}
for cidx, c := range ps.Content {
if c.OffsetWrite == nil || c.OffsetWrite.RelativeTo == "" {
continue
}
relativeToStructure := knownStructures[c.OffsetWrite.RelativeTo]
if relativeToStructure == nil {
return fmt.Errorf("structure %v, content %v refers to an unknown structure %q",
ps, fmtIndexAndName(cidx, c.Image), c.OffsetWrite.RelativeTo)
}
}
}
return nil
}
func validateVolumeStructure(vs *VolumeStructure, vol *Volume) error {
if vs.Size == 0 {
return errors.New("missing size")
}
if err := validateStructureType(vs.Type, vol); err != nil {
return fmt.Errorf("invalid type %q: %v", vs.Type, err)
}
if err := validateRole(vs, vol); err != nil {
var what string
if vs.Role != "" {
what = fmt.Sprintf("role %q", vs.Role)
} else {
what = fmt.Sprintf("implicit role %q", vs.Type)
}
return fmt.Errorf("invalid %s: %v", what, err)
}
if vs.Filesystem != "" && !strutil.ListContains([]string{"ext4", "vfat", "none"}, vs.Filesystem) {
return fmt.Errorf("invalid filesystem %q", vs.Filesystem)
}
var contentChecker func(*VolumeContent) error
if !vs.HasFilesystem() {
contentChecker = validateBareContent
} else {
contentChecker = validateFilesystemContent
}
for i, c := range vs.Content {
if err := contentChecker(&c); err != nil {
return fmt.Errorf("invalid content #%v: %v", i, err)
}
}
if err := validateStructureUpdate(&vs.Update, vs); err != nil {
return err
}
// TODO: validate structure size against sector-size; ubuntu-image uses
// a tmp file to find out the default sector size of the device the tmp
// file is created on
return nil
}
func validateStructureType(s string, vol *Volume) error {
// Type can be one of:
// - "mbr" (backwards compatible)
// - "bare"
// - [0-9A-Z]{2} - MBR type
// - GPT UUID
// - hybrid ID
//
// Hybrid ID is 2 hex digits of MBR type, followed by 36 GUUID
// example: EF,C12A7328-F81F-11D2-BA4B-00A0C93EC93B
schema := vol.Schema
if schema == "" {
schema = schemaGPT
}
if s == "" {
return errors.New(`type is not specified`)
}
if s == "bare" {
// unknonwn blob
return nil
}
if s == schemaMBR {
// backward compatibility for type: mbr
return nil
}
var isGPT, isMBR bool
idx := strings.IndexRune(s, ',')
if idx == -1 {
// just ID
switch {
case validTypeID.MatchString(s):
isMBR = true
case validGUUID.MatchString(s):
isGPT = true
default:
return fmt.Errorf("invalid format")
}
} else {
// hybrid ID
code := s[:idx]
guid := s[idx+1:]
if len(code) != 2 || len(guid) != 36 || !validTypeID.MatchString(code) || !validGUUID.MatchString(guid) {
return fmt.Errorf("invalid format of hybrid type")
}
}
if schema != schemaGPT && isGPT {
// type: <uuid> is only valid for GPT volumes
return fmt.Errorf("GUID structure type with non-GPT schema %q", vol.Schema)
}
if schema != schemaMBR && isMBR {
return fmt.Errorf("MBR structure type with non-MBR schema %q", vol.Schema)
}
return nil
}
func validateRole(vs *VolumeStructure, vol *Volume) error {
if vs.Type == "bare" {
if vs.Role != "" && vs.Role != schemaMBR {
return fmt.Errorf("conflicting type: %q", vs.Type)
}
}
vsRole := vs.Role
if vs.Type == schemaMBR {
if vsRole != "" && vsRole != schemaMBR {
return fmt.Errorf(`conflicting legacy type: "mbr"`)
}
// backward compatibility
vsRole = schemaMBR
}
switch vsRole {
case SystemData, SystemSeed, SystemSave:
// roles have cross dependencies, consistency checks are done at
// the volume level
case schemaMBR:
if vs.Size > SizeMBR {
return errors.New("mbr structures cannot be larger than 446 bytes")
}
if vs.Offset != nil && *vs.Offset != 0 {
return errors.New("mbr structure must start at offset 0")
}
if vs.ID != "" {
return errors.New("mbr structure must not specify partition ID")
}
if vs.Filesystem != "" && vs.Filesystem != "none" {
return errors.New("mbr structures must not specify a file system")
}
case SystemBoot, bootImage, bootSelect, seedBootSelect, seedBootImage, "":
// noop
case legacyBootImage, legacyBootSelect:
// noop
// legacy role names were added in 2.42 can be removed
// on snapd epoch bump
default:
return fmt.Errorf("unsupported role")
}
return nil
}
func validateBareContent(vc *VolumeContent) error {
if vc.UnresolvedSource != "" || vc.Target != "" {
return fmt.Errorf("cannot use non-image content for bare file system")
}
if vc.Image == "" {
return fmt.Errorf("missing image file name")
}
return nil
}
func validateFilesystemContent(vc *VolumeContent) error {
if vc.Image != "" || vc.Offset != nil || vc.OffsetWrite != nil || vc.Size != 0 {
return fmt.Errorf("cannot use image content for non-bare file system")
}
if vc.UnresolvedSource == "" || vc.Target == "" {
return fmt.Errorf("missing source or target")
}
return nil
}
func validateStructureUpdate(up *VolumeUpdate, vs *VolumeStructure) error {
if !vs.HasFilesystem() && len(vs.Update.Preserve) > 0 {
return errors.New("preserving files during update is not supported for non-filesystem structures")
}
names := make(map[string]bool, len(vs.Update.Preserve))
for _, n := range vs.Update.Preserve {
if names[n] {
return fmt.Errorf(`duplicate "preserve" entry %q`, n)
}
names[n] = true
}
return nil
}
const (
// SizeMBR is the maximum byte size of a structure of role 'mbr'
SizeMBR = quantity.Size(446)
// SizeLBA48Pointer is the byte size of a pointer value written at the
// location described by 'offset-write'
SizeLBA48Pointer = quantity.Size(4)
)
// RelativeOffset describes an offset where structure data is written at.
// The position can be specified as byte-offset relative to the start of another
// named structure.
type RelativeOffset struct {
// RelativeTo names the structure relative to which the location of the
// address write will be calculated.
RelativeTo string
// Offset is a 32-bit value
Offset quantity.Offset
}
func (r *RelativeOffset) String() string {
if r == nil {
return "unspecified"
}
if r.RelativeTo != "" {
return fmt.Sprintf("%s+%d", r.RelativeTo, r.Offset)
}
return fmt.Sprintf("%d", r.Offset)
}
// parseRelativeOffset parses a string describing an offset that can be
// expressed relative to a named structure, with the format: [<name>+]<offset>.
func parseRelativeOffset(grs string) (*RelativeOffset, error) {
toWhat := ""
offsSpec := grs
if idx := strings.IndexRune(grs, '+'); idx != -1 {
toWhat, offsSpec = grs[:idx], grs[idx+1:]
if toWhat == "" {
return nil, errors.New("missing volume name")
}
}
if offsSpec == "" {
return nil, errors.New("missing offset")
}
offset, err := quantity.ParseOffset(offsSpec)
if err != nil {
return nil, fmt.Errorf("cannot parse offset %q: %v", offsSpec, err)
}
if offset > 4*1024*quantity.OffsetMiB {
return nil, fmt.Errorf("offset above 4G limit")
}
return &RelativeOffset{
RelativeTo: toWhat,
Offset: offset,
}, nil
}
func (s *RelativeOffset) UnmarshalYAML(unmarshal func(interface{}) error) error {
var grs string
if err := unmarshal(&grs); err != nil {
return errors.New(`cannot unmarshal gadget relative offset`)
}
ro, err := parseRelativeOffset(grs)
if err != nil {
return fmt.Errorf("cannot parse relative offset %q: %v", grs, err)
}
*s = *ro
return nil
}
// IsCompatible checks whether the current and an update are compatible. Returns
// nil or an error describing the incompatibility.
func IsCompatible(current, new *Info) error {
// XXX: the only compatibility we have now is making sure that the new
// layout can be used on an existing volume
if len(new.Volumes) > 1 {
return fmt.Errorf("gadgets with multiple volumes are unsupported")
}
// XXX: the code below errors out with more than 1 volume in the current
// gadget, we allow this scenario in update but better bail out here and
// have users fix their gadgets
currentVol, newVol, err := resolveVolume(current, new)
if err != nil {
return err
}
if currentVol.Schema == "" || newVol.Schema == "" {
return fmt.Errorf("internal error: unset volume schemas: old: %q new: %q", currentVol.Schema, newVol.Schema)
}
// layout both volumes partially, without going deep into the layout of
// structure content, we only want to make sure that structures are
// comapatible
pCurrent, err := LayoutVolumePartially(currentVol, defaultConstraints)
if err != nil {
return fmt.Errorf("cannot lay out the current volume: %v", err)
}
pNew, err := LayoutVolumePartially(newVol, defaultConstraints)
if err != nil {
return fmt.Errorf("cannot lay out the new volume: %v", err)
}
if err := isLayoutCompatible(pCurrent, pNew); err != nil {
return fmt.Errorf("incompatible layout change: %v", err)
}
return nil
}
// LaidOutVolumeFromGadget takes a gadget rootdir and lays out the
// partitions as specified.
func LaidOutVolumeFromGadget(gadgetRoot, kernelRoot string, model Model) (*LaidOutVolume, error) {
info, err := ReadInfo(gadgetRoot, model)
if err != nil {
return nil, err
}
// Limit ourselves to just one volume for now.
if len(info.Volumes) != 1 {
return nil, fmt.Errorf("cannot position multiple volumes yet")
}
constraints := LayoutConstraints{
NonMBRStartOffset: 1 * quantity.OffsetMiB,
SectorSize: 512,
}
for _, vol := range info.Volumes {
pvol, err := LayoutVolume(gadgetRoot, kernelRoot, vol, constraints)
if err != nil {
return nil, err
}
// we know info.Volumes map has size 1 so we can return here
return pvol, nil
}
return nil, fmt.Errorf("internal error in PositionedVolumeFromGadget: this line cannot be reached")
}
func flatten(path string, cfg interface{}, out map[string]interface{}) {
if cfgMap, ok := cfg.(map[string]interface{}); ok {
for k, v := range cfgMap {
p := k
if path != "" {
p = path + "." + k
}
flatten(p, v, out)
}
} else {
out[path] = cfg
}
}
// SystemDefaults returns default system configuration from gadget defaults.
func SystemDefaults(gadgetDefaults map[string]map[string]interface{}) map[string]interface{} {
for _, systemSnap := range []string{"system", naming.WellKnownSnapID("core")} {
if defaults, ok := gadgetDefaults[systemSnap]; ok {
coreDefaults := map[string]interface{}{}
flatten("", defaults, coreDefaults)
return coreDefaults
}
}
return nil
}