|
| 1 | +/* |
| 2 | + Copyright The containerd Authors. |
| 3 | +
|
| 4 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + you may not use this file except in compliance with the License. |
| 6 | + You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | + Unless required by applicable law or agreed to in writing, software |
| 11 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + See the License for the specific language governing permissions and |
| 14 | + limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +package containerd |
| 18 | + |
| 19 | +import ( |
| 20 | + "archive/tar" |
| 21 | + "context" |
| 22 | + "errors" |
| 23 | + "path/filepath" |
| 24 | + |
| 25 | + introspectionapi "github.com/containerd/containerd/api/services/introspection/v1" |
| 26 | + "github.com/containerd/containerd/archive" |
| 27 | + "github.com/containerd/containerd/archive/compression" |
| 28 | + "github.com/containerd/containerd/content" |
| 29 | + "github.com/containerd/containerd/images" |
| 30 | + "github.com/containerd/containerd/platforms" |
| 31 | +) |
| 32 | + |
| 33 | +// Install a binary image into the opt service |
| 34 | +func (c *Client) Install(ctx context.Context, image Image) error { |
| 35 | + resp, err := c.IntrospectionService().Plugins(ctx, &introspectionapi.PluginsRequest{ |
| 36 | + Filters: []string{ |
| 37 | + "id==opt", |
| 38 | + }, |
| 39 | + }) |
| 40 | + if err != nil { |
| 41 | + return err |
| 42 | + } |
| 43 | + if len(resp.Plugins) != 1 { |
| 44 | + return errors.New("opt service not enabled") |
| 45 | + } |
| 46 | + path := resp.Plugins[0].Exports["path"] |
| 47 | + if path == "" { |
| 48 | + return errors.New("opt path not exported") |
| 49 | + } |
| 50 | + var ( |
| 51 | + cs = image.ContentStore() |
| 52 | + platform = platforms.Default() |
| 53 | + ) |
| 54 | + manifest, err := images.Manifest(ctx, cs, image.Target(), platform) |
| 55 | + if err != nil { |
| 56 | + return err |
| 57 | + } |
| 58 | + for _, layer := range manifest.Layers { |
| 59 | + ra, err := cs.ReaderAt(ctx, layer) |
| 60 | + if err != nil { |
| 61 | + return err |
| 62 | + } |
| 63 | + cr := content.NewReader(ra) |
| 64 | + r, err := compression.DecompressStream(cr) |
| 65 | + if err != nil { |
| 66 | + return err |
| 67 | + } |
| 68 | + defer r.Close() |
| 69 | + if _, err := archive.Apply(ctx, path, r, archive.WithFilter(func(hdr *tar.Header) bool { |
| 70 | + return filepath.Dir(hdr.Name) == "bin" |
| 71 | + })); err != nil { |
| 72 | + return err |
| 73 | + } |
| 74 | + } |
| 75 | + return nil |
| 76 | +} |
0 commit comments