-
Notifications
You must be signed in to change notification settings - Fork 648
/
Copy pathimage.go
165 lines (148 loc) · 5.42 KB
/
image.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
/*
Copyright The containerd Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package ipfs
import (
"context"
"fmt"
"io"
"os"
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
containerd "github.com/containerd/containerd/v2/client"
"github.com/containerd/containerd/v2/core/images"
"github.com/containerd/containerd/v2/core/images/converter"
"github.com/containerd/containerd/v2/core/remotes"
"github.com/containerd/errdefs"
"github.com/containerd/log"
"github.com/containerd/stargz-snapshotter/ipfs"
ipfsclient "github.com/containerd/stargz-snapshotter/ipfs/client"
"github.com/containerd/nerdctl/v2/pkg/api/types"
"github.com/containerd/nerdctl/v2/pkg/idutil/imagewalker"
"github.com/containerd/nerdctl/v2/pkg/imgutil"
"github.com/containerd/nerdctl/v2/pkg/platformutil"
)
const ipfsPathEnv = "IPFS_PATH"
// EnsureImage pull the specified image from IPFS.
func EnsureImage(ctx context.Context, client *containerd.Client, scheme, ref, ipfsPath string, options types.ImagePullOptions) (*imgutil.EnsuredImage, error) {
switch options.Mode {
case "always", "missing", "never":
// NOP
default:
return nil, fmt.Errorf("unexpected pull mode: %q", options.Mode)
}
switch scheme {
case "ipfs", "ipns":
// NOP
default:
return nil, fmt.Errorf("unexpected scheme: %q", scheme)
}
// if not `always` pull and given one platform and image found locally, return existing image directly.
if options.Mode != "always" && len(options.OCISpecPlatform) == 1 {
if res, err := imgutil.GetExistingImage(ctx, client, options.GOptions.Snapshotter, options.SyncFs, ref, options.OCISpecPlatform[0]); err == nil {
return res, nil
} else if !errdefs.IsNotFound(err) {
return nil, err
}
}
if options.Mode == "never" {
return nil, fmt.Errorf("image %q is not available", ref)
}
r, err := ipfs.NewResolver(ipfs.ResolverOptions{
Scheme: scheme,
IPFSPath: lookupIPFSPath(ipfsPath),
})
if err != nil {
return nil, err
}
return imgutil.PullImage(ctx, client, r, ref, options)
}
// Push pushes the specified image to IPFS.
func Push(ctx context.Context, client *containerd.Client, rawRef string, layerConvert converter.ConvertFunc, allPlatforms bool, platform []string, ensureImage bool, ipfsPath string) (string, error) {
platMC, err := platformutil.NewMatchComparer(allPlatforms, platform)
if err != nil {
return "", err
}
ipath := lookupIPFSPath(ipfsPath)
if ensureImage {
// Ensure image contents are fully downloaded
log.G(ctx).Infof("ensuring image contents")
if err := ensureContentsOfIPFSImage(ctx, client, rawRef, allPlatforms, platform, ipath); err != nil {
log.G(ctx).WithError(err).Warnf("failed to ensure the existence of image %q", rawRef)
}
}
return ipfs.PushWithIPFSPath(ctx, client, rawRef, layerConvert, platMC, &ipath)
}
// ensureContentsOfIPFSImage ensures that the entire contents of an existing IPFS image are fully downloaded to containerd.
func ensureContentsOfIPFSImage(ctx context.Context, client *containerd.Client, ref string, allPlatforms bool, platform []string, ipfsPath string) error {
iurl, err := ipfsclient.GetIPFSAPIAddress(ipfsPath, "http")
if err != nil {
return err
}
platMC, err := platformutil.NewMatchComparer(allPlatforms, platform)
if err != nil {
return err
}
var img images.Image
walker := &imagewalker.ImageWalker{
Client: client,
OnFound: func(ctx context.Context, found imagewalker.Found) error {
img = found.Image
return nil
},
}
n, err := walker.Walk(ctx, ref)
if err != nil {
return err
} else if n == 0 {
return fmt.Errorf("image does not exist: %q", ref)
} else if n > 1 {
return fmt.Errorf("ambiguous reference %q matched %d objects", ref, n)
}
cs := client.ContentStore()
childrenHandler := images.ChildrenHandler(cs)
childrenHandler = images.SetChildrenLabels(cs, childrenHandler)
childrenHandler = images.FilterPlatforms(childrenHandler, platMC)
return images.Dispatch(ctx, images.Handlers(
remotes.FetchHandler(cs, &fetcher{ipfsclient.New(iurl)}),
childrenHandler,
), nil, img.Target)
}
// fetcher fetches a file from IPFS
// TODO: fix github.com/containerd/stargz-snapshotter/ipfs to export this and we should import that
type fetcher struct {
ipfsclient *ipfsclient.Client
}
func (f *fetcher) Fetch(ctx context.Context, desc ocispec.Descriptor) (io.ReadCloser, error) {
cid, err := ipfs.GetCID(desc)
if err != nil {
return nil, err
}
off, size := 0, int(desc.Size)
return f.ipfsclient.Get("/ipfs/"+cid, &off, &size)
}
// If IPFS_PATH is specified, this will be used.
// If not, "~/.ipfs" will be used.
// The behaviour is compatible to kubo: https://github.com/ipfs/go-ipfs-http-client/blob/171fcd55e3b743c38fb9d78a34a3a703ee0b5e89/api.go#L43-L44
// Optionally takes ipfsPath string having the highest priority.
func lookupIPFSPath(ipfsPath string) string {
var ipath string
if idir := os.Getenv(ipfsPathEnv); idir != "" {
ipath = idir
}
if ipath == "" {
ipath = "~/.ipfs"
}
if ipfsPath != "" {
ipath = ipfsPath
}
return ipath
}