@@ -17,11 +17,13 @@ import (
17
17
18
18
"github.com/containerd/containerd/log"
19
19
"github.com/containerd/containerd/mount"
20
+ "github.com/containerd/containerd/snapshots"
20
21
"github.com/containerd/containerd/snapshots/storage"
21
22
"github.com/containerd/nydus-snapshotter/config/daemonconfig"
22
23
"github.com/containerd/nydus-snapshotter/pkg/label"
23
24
"github.com/containerd/nydus-snapshotter/pkg/layout"
24
25
"github.com/containerd/nydus-snapshotter/pkg/rafs"
26
+ "github.com/containerd/nydus-snapshotter/pkg/snapshot"
25
27
"github.com/pkg/errors"
26
28
)
27
29
@@ -101,7 +103,7 @@ func (o *snapshotter) remoteMountWithExtraOptions(ctx context.Context, s storage
101
103
}, nil
102
104
}
103
105
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 ) {
105
107
hasVolume := false
106
108
rafs := rafs .RafsGlobalCache .Get (id )
107
109
if rafs == nil {
@@ -122,7 +124,7 @@ func (o *snapshotter) mountWithKataVolume(ctx context.Context, id string, overla
122
124
123
125
// Insert Kata volume for tarfs
124
126
if blobID , ok := rafs .Annotations [label .NydusTarfsLayer ]; ok {
125
- options , err := o .mountWithTarfsVolume (* rafs , blobID )
127
+ options , err := o .mountWithTarfsVolume (ctx , * rafs , blobID , key )
126
128
if err != nil {
127
129
return []mount.Mount {}, errors .Wrapf (err , "create kata volume for tarfs" )
128
130
}
@@ -152,63 +154,68 @@ func (o *snapshotter) mountWithProxyVolume(rafs rafs.Rafs) ([]string, error) {
152
154
for k , v := range rafs .Annotations {
153
155
options = append (options , fmt .Sprintf ("%s=%s" , k , v ))
154
156
}
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 )
168
158
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" )
170
160
}
171
- opt := fmt .Sprintf ("%s=%s" , KataVirtualVolumeOptionName , info )
172
-
173
161
return []string {opt }, nil
174
162
}
175
163
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 {}
179
166
if info , ok := rafs .Annotations [label .NydusImageBlockInfo ]; ok {
180
167
path , err := o .fs .GetTarfsImageDiskFilePath (blobID )
181
168
if err != nil {
182
169
return []string {}, errors .Wrapf (err , "get tarfs image disk file path" )
183
170
}
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" )
189
175
}
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 )
192
197
if err != nil {
193
- return [] string {}, err
198
+ return options , errors . Wrapf ( err , "get tarfs image disk file path" )
194
199
}
195
- volume .DmVerity = & dmverity
196
- }
197
- }
198
200
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
206
212
}
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
209
215
}
210
216
211
- return []string {}, nil
217
+ // If Neither image_raw_block or layer_raw_block, return empty strings
218
+ return options , nil
212
219
}
213
220
214
221
func (o * snapshotter ) prepareKataVirtualVolume (blockType , source , volumeType , fsType string , options []string , labels map [string ]string ) (string , error ) {
0 commit comments