Skip to content

Commit 671c414

Browse files
author
ChengyuZhu6
committed
snapshot: support to handle kata volume for layer block
Support to handle kata volume for layer block and reconstruct functions about handling kata virtual volumes. Signed-off-by: ChengyuZhu6 <[email protected]>
1 parent 7ead21f commit 671c414

File tree

3 files changed

+54
-47
lines changed

3 files changed

+54
-47
lines changed

snapshot/mount_option.go

+49-42
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,13 @@ import (
1717

1818
"github.com/containerd/containerd/log"
1919
"github.com/containerd/containerd/mount"
20+
"github.com/containerd/containerd/snapshots"
2021
"github.com/containerd/containerd/snapshots/storage"
2122
"github.com/containerd/nydus-snapshotter/config/daemonconfig"
2223
"github.com/containerd/nydus-snapshotter/pkg/label"
2324
"github.com/containerd/nydus-snapshotter/pkg/layout"
2425
"github.com/containerd/nydus-snapshotter/pkg/rafs"
26+
"github.com/containerd/nydus-snapshotter/pkg/snapshot"
2527
"github.com/pkg/errors"
2628
)
2729

@@ -101,7 +103,7 @@ func (o *snapshotter) remoteMountWithExtraOptions(ctx context.Context, s storage
101103
}, nil
102104
}
103105

104-
func (o *snapshotter) mountWithKataVolume(ctx context.Context, id string, overlayOptions []string) ([]mount.Mount, error) {
106+
func (o *snapshotter) mountWithKataVolume(ctx context.Context, id string, overlayOptions []string, key string) ([]mount.Mount, error) {
105107
hasVolume := false
106108
rafs := rafs.RafsGlobalCache.Get(id)
107109
if rafs == nil {
@@ -122,7 +124,7 @@ func (o *snapshotter) mountWithKataVolume(ctx context.Context, id string, overla
122124

123125
// Insert Kata volume for tarfs
124126
if blobID, ok := rafs.Annotations[label.NydusTarfsLayer]; ok {
125-
options, err := o.mountWithTarfsVolume(*rafs, blobID)
127+
options, err := o.mountWithTarfsVolume(ctx, *rafs, blobID, key)
126128
if err != nil {
127129
return []mount.Mount{}, errors.Wrapf(err, "create kata volume for tarfs")
128130
}
@@ -152,63 +154,68 @@ func (o *snapshotter) mountWithProxyVolume(rafs rafs.Rafs) ([]string, error) {
152154
for k, v := range rafs.Annotations {
153155
options = append(options, fmt.Sprintf("%s=%s", k, v))
154156
}
155-
156-
volume := &KataVirtualVolume{
157-
VolumeType: KataVirtualVolumeImageGuestPullType,
158-
Source: "",
159-
FSType: "",
160-
Options: options,
161-
ImagePull: &ImagePullVolume{Metadata: rafs.Annotations},
162-
}
163-
if !volume.Validate() {
164-
return []string{}, errors.Errorf("got invalid kata volume, %v", volume)
165-
}
166-
167-
info, err := EncodeKataVirtualVolumeToBase64(*volume)
157+
opt, err := o.prepareKataVirtualVolume(label.NydusProxyMode, "", KataVirtualVolumeImageGuestPullType, "", options, rafs.Annotations)
168158
if err != nil {
169-
return []string{}, errors.Errorf("failed to encoding Kata Volume info %v", volume)
159+
return options, errors.Wrapf(err, "failed to prepare KataVirtualVolume")
170160
}
171-
opt := fmt.Sprintf("%s=%s", KataVirtualVolumeOptionName, info)
172-
173161
return []string{opt}, nil
174162
}
175163

176-
func (o *snapshotter) mountWithTarfsVolume(rafs rafs.Rafs, blobID string) ([]string, error) {
177-
var volume *KataVirtualVolume
178-
164+
func (o *snapshotter) mountWithTarfsVolume(ctx context.Context, rafs rafs.Rafs, blobID, key string) ([]string, error) {
165+
options := []string{}
179166
if info, ok := rafs.Annotations[label.NydusImageBlockInfo]; ok {
180167
path, err := o.fs.GetTarfsImageDiskFilePath(blobID)
181168
if err != nil {
182169
return []string{}, errors.Wrapf(err, "get tarfs image disk file path")
183170
}
184-
volume = &KataVirtualVolume{
185-
VolumeType: KataVirtualVolumeImageRawBlockType,
186-
Source: path,
187-
FSType: "erofs",
188-
Options: []string{"ro"},
171+
log.L.Debugf("mountWithTarfsVolume info %v", info)
172+
opt, err := o.prepareKataVirtualVolume(label.NydusImageBlockInfo, path, KataVirtualVolumeImageRawBlockType, "erofs", []string{"ro"}, rafs.Annotations)
173+
if err != nil {
174+
return options, errors.Wrapf(err, "failed to prepare KataVirtualVolume for image_raw_block")
189175
}
190-
if len(info) > 0 {
191-
dmverity, err := parseTarfsDmVerityInfo(info)
176+
177+
options = append(options, opt)
178+
log.L.Debugf("mountWithTarfsVolume type=%v, options %v", KataVirtualVolumeImageRawBlockType, options)
179+
return options, nil
180+
}
181+
182+
if _, ok := rafs.Annotations[label.NydusLayerBlockInfo]; ok {
183+
for {
184+
pID, pInfo, _, pErr := snapshot.GetSnapshotInfo(ctx, o.ms, key)
185+
log.G(ctx).Debugf("mountWithKataVolume pID= %v, pInfo = %v", pID, pInfo)
186+
187+
if pErr != nil {
188+
return options, errors.Wrapf(pErr, "failed to get snapshot info")
189+
}
190+
if pInfo.Kind == snapshots.KindActive {
191+
key = pInfo.Parent
192+
continue
193+
}
194+
195+
blobID = pInfo.Labels[label.NydusTarfsLayer]
196+
path, err := o.fs.GetTarfsLayerDiskFilePath(blobID)
192197
if err != nil {
193-
return []string{}, err
198+
return options, errors.Wrapf(err, "get tarfs image disk file path")
194199
}
195-
volume.DmVerity = &dmverity
196-
}
197-
}
198200

199-
if volume != nil {
200-
if !volume.Validate() {
201-
return []string{}, errors.Errorf("got invalid kata volume, %v", volume)
202-
}
203-
info, err := EncodeKataVirtualVolumeToBase64(*volume)
204-
if err != nil {
205-
return []string{}, errors.Errorf("failed to encoding Kata Volume info %v", volume)
201+
opt, err := o.prepareKataVirtualVolume(label.NydusLayerBlockInfo, path, KataVirtualVolumeLayerRawBlockType, "erofs", []string{"ro"}, pInfo.Labels)
202+
if err != nil {
203+
return options, errors.Wrapf(err, "failed to prepare KataVirtualVolume for layer_raw_block")
204+
}
205+
206+
options = append(options, opt)
207+
208+
if pInfo.Parent == "" {
209+
break
210+
}
211+
key = pInfo.Parent
206212
}
207-
opt := fmt.Sprintf("%s=%s", KataVirtualVolumeOptionName, info)
208-
return []string{opt}, nil
213+
log.L.Debugf("mountWithTarfsVolume type=%v, options %v", KataVirtualVolumeLayerRawBlockType, options)
214+
return options, nil
209215
}
210216

211-
return []string{}, nil
217+
// If Neither image_raw_block or layer_raw_block, return empty strings
218+
return options, nil
212219
}
213220

214221
func (o *snapshotter) prepareKataVirtualVolume(blockType, source, volumeType, fsType string, options []string, labels map[string]string) (string, error) {

snapshot/process.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func chooseProcessor(ctx context.Context, logger *logrus.Entry,
5252
}
5353

5454
logger.Infof("Nydus remote snapshot %s is ready", id)
55-
mounts, err := sn.mountRemote(ctx, labels, s, id)
55+
mounts, err := sn.mountRemote(ctx, labels, s, id, key)
5656
return false, mounts, err
5757
}
5858
}

snapshot/snapshot.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ func (o *snapshotter) Mounts(ctx context.Context, key string) ([]mount.Mount, er
433433
}
434434

435435
if needRemoteMounts {
436-
return o.mountRemote(ctx, info.Labels, *snap, metaSnapshotID)
436+
return o.mountRemote(ctx, info.Labels, *snap, metaSnapshotID, key)
437437
}
438438

439439
return o.mountNative(ctx, info.Labels, *snap)
@@ -531,7 +531,7 @@ func (o *snapshotter) View(ctx context.Context, key, parent string, opts ...snap
531531
}
532532

533533
if needRemoteMounts {
534-
return o.mountRemote(ctx, base.Labels, s, metaSnapshotID)
534+
return o.mountRemote(ctx, base.Labels, s, metaSnapshotID, key)
535535
}
536536
return o.mountNative(ctx, base.Labels, s)
537537
}
@@ -840,7 +840,7 @@ func overlayMount(options []string) []mount.Mount {
840840

841841
// `s` is the upmost snapshot and `id` refers to the nydus meta snapshot
842842
// `s` and `id` can represent a different layer, it's useful when View an image
843-
func (o *snapshotter) mountRemote(ctx context.Context, labels map[string]string, s storage.Snapshot, id string) ([]mount.Mount, error) {
843+
func (o *snapshotter) mountRemote(ctx context.Context, labels map[string]string, s storage.Snapshot, id, key string) ([]mount.Mount, error) {
844844
var overlayOptions []string
845845
if _, ok := labels[label.OverlayfsVolatileOpt]; ok {
846846
overlayOptions = append(overlayOptions, "volatile")
@@ -871,7 +871,7 @@ func (o *snapshotter) mountRemote(ctx context.Context, labels map[string]string,
871871
log.G(ctx).Infof("remote mount options %v", overlayOptions)
872872

873873
if o.enableKataVolume {
874-
return o.mountWithKataVolume(ctx, id, overlayOptions)
874+
return o.mountWithKataVolume(ctx, id, overlayOptions, key)
875875
}
876876
// Add `extraoption` if NydusOverlayFS is enable or daemonMode is `None`
877877
if o.enableNydusOverlayFS || config.GetDaemonMode() == config.DaemonModeNone {

0 commit comments

Comments
 (0)