2018-02-05 16:05:59 -05:00
|
|
|
package plugin // import "github.com/docker/docker/plugin"
|
2016-05-16 11:50:55 -04:00
|
|
|
|
|
|
|
import (
|
2016-12-12 18:05:53 -05:00
|
|
|
"archive/tar"
|
2020-02-10 19:31:04 -05:00
|
|
|
"bytes"
|
2016-12-12 18:05:53 -05:00
|
|
|
"compress/gzip"
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2016-08-10 19:48:17 -04:00
|
|
|
"encoding/json"
|
2016-10-04 15:01:19 -04:00
|
|
|
"io"
|
2016-05-16 11:50:55 -04:00
|
|
|
"net/http"
|
|
|
|
"os"
|
2016-12-12 18:05:53 -05:00
|
|
|
"path"
|
2016-05-16 11:50:55 -04:00
|
|
|
"path/filepath"
|
2016-12-12 18:05:53 -05:00
|
|
|
"strings"
|
2020-02-10 19:31:04 -05:00
|
|
|
"time"
|
2016-05-16 11:50:55 -04:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
"github.com/containerd/containerd/content"
|
|
|
|
"github.com/containerd/containerd/images"
|
|
|
|
"github.com/containerd/containerd/platforms"
|
|
|
|
"github.com/containerd/containerd/remotes"
|
|
|
|
"github.com/containerd/containerd/remotes/docker"
|
2016-12-12 18:05:53 -05:00
|
|
|
"github.com/docker/distribution/manifest/schema2"
|
2017-01-25 19:54:18 -05:00
|
|
|
"github.com/docker/distribution/reference"
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2016-11-23 07:58:15 -05:00
|
|
|
"github.com/docker/docker/api/types/filters"
|
Embed DockerVersion in plugin config.
Embedding DockerVersion in plugin config when the plugin is created,
enables users to do a docker plugin inspect and know which version
the plugin was built on. This is helpful in cases where users are
running a new plugin on older docker releases and confused at
unexpected behavior.
By embedding DockerVersion in the config, we claim that there's no
guarantee that if the plugin config's DockerVersion is greater that
the version of the docker engine the plugin is executed against, the
plugin will work as expected.
For example, lets say:
- in 17.03, a plugin was released as johndoe/foo:v1
- in 17.05, the plugin uses the new ipchost config setting and author
publishes johndoe/foo:v2
In this case, johndoe/foo:v2 was built on 17.05 using ipchost, but is
running on docker-engine version 17.03. Since 17.05 > 17.03, there's
no guarantee that the plugin will work as expected. Ofcourse, if the
plugin did not use newly added config settings (ipchost in this case)
in 17.05, it would work fine in 17.03.
Signed-off-by: Anusha Ragunathan <anusha.ragunathan@docker.com>
2017-03-21 17:07:41 -04:00
|
|
|
"github.com/docker/docker/dockerversion"
|
2018-01-11 14:53:06 -05:00
|
|
|
"github.com/docker/docker/errdefs"
|
2017-03-17 17:57:23 -04:00
|
|
|
"github.com/docker/docker/pkg/authorization"
|
2016-10-04 15:01:19 -04:00
|
|
|
"github.com/docker/docker/pkg/chrootarchive"
|
2016-12-12 18:05:53 -05:00
|
|
|
"github.com/docker/docker/pkg/pools"
|
|
|
|
"github.com/docker/docker/pkg/progress"
|
2020-02-10 19:31:04 -05:00
|
|
|
"github.com/docker/docker/pkg/stringid"
|
2017-06-26 14:54:14 -04:00
|
|
|
"github.com/docker/docker/pkg/system"
|
2019-08-05 10:37:47 -04:00
|
|
|
v2 "github.com/docker/docker/plugin/v2"
|
2020-03-13 19:38:24 -04:00
|
|
|
"github.com/moby/sys/mount"
|
2019-08-05 10:37:47 -04:00
|
|
|
digest "github.com/opencontainers/go-digest"
|
2018-02-15 16:17:27 -05:00
|
|
|
specs "github.com/opencontainers/image-spec/specs-go/v1"
|
2016-12-12 21:18:17 -05:00
|
|
|
"github.com/pkg/errors"
|
2017-07-26 17:42:13 -04:00
|
|
|
"github.com/sirupsen/logrus"
|
2016-05-16 11:50:55 -04:00
|
|
|
)
|
|
|
|
|
2016-11-23 07:58:15 -05:00
|
|
|
var acceptedPluginFilterTags = map[string]bool{
|
2016-11-23 08:27:09 -05:00
|
|
|
"enabled": true,
|
|
|
|
"capability": true,
|
2016-11-23 07:58:15 -05:00
|
|
|
}
|
|
|
|
|
2016-12-20 11:26:58 -05:00
|
|
|
// Disable deactivates a plugin. This means resources (volumes, networks) cant use them.
|
2016-12-12 18:05:53 -05:00
|
|
|
func (pm *Manager) Disable(refOrID string, config *types.PluginDisableConfig) error {
|
|
|
|
p, err := pm.config.Store.GetV2Plugin(refOrID)
|
2016-05-16 11:50:55 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-12-01 14:36:56 -05:00
|
|
|
pm.mu.RLock()
|
|
|
|
c := pm.cMap[p]
|
|
|
|
pm.mu.RUnlock()
|
|
|
|
|
2016-12-20 11:26:58 -05:00
|
|
|
if !config.ForceDisable && p.GetRefCount() > 0 {
|
2017-07-19 10:20:13 -04:00
|
|
|
return errors.WithStack(inUseError(p.Name()))
|
2016-12-20 11:26:58 -05:00
|
|
|
}
|
|
|
|
|
2017-03-17 17:57:23 -04:00
|
|
|
for _, typ := range p.GetTypes() {
|
|
|
|
if typ.Capability == authorization.AuthZApiImplements {
|
2017-06-13 06:52:04 -04:00
|
|
|
pm.config.AuthzMiddleware.RemovePlugin(p.Name())
|
2017-03-17 17:57:23 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-01 14:36:56 -05:00
|
|
|
if err := pm.disable(p, c); err != nil {
|
2016-07-18 11:02:12 -04:00
|
|
|
return err
|
|
|
|
}
|
2017-06-07 13:07:01 -04:00
|
|
|
pm.publisher.Publish(EventDisable{Plugin: p.PluginObj})
|
2016-12-12 18:05:53 -05:00
|
|
|
pm.config.LogPluginEvent(p.GetID(), refOrID, "disable")
|
2016-07-18 11:02:12 -04:00
|
|
|
return nil
|
2016-05-16 11:50:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Enable activates a plugin, which implies that they are ready to be used by containers.
|
2016-12-12 18:05:53 -05:00
|
|
|
func (pm *Manager) Enable(refOrID string, config *types.PluginEnableConfig) error {
|
|
|
|
p, err := pm.config.Store.GetV2Plugin(refOrID)
|
2016-05-16 11:50:55 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-11-21 12:24:01 -05:00
|
|
|
|
2016-12-01 14:36:56 -05:00
|
|
|
c := &controller{timeoutInSecs: config.Timeout}
|
|
|
|
if err := pm.enable(p, c, false); err != nil {
|
2016-07-18 11:02:12 -04:00
|
|
|
return err
|
|
|
|
}
|
2017-06-07 13:07:01 -04:00
|
|
|
pm.publisher.Publish(EventEnable{Plugin: p.PluginObj})
|
2016-12-12 18:05:53 -05:00
|
|
|
pm.config.LogPluginEvent(p.GetID(), refOrID, "enable")
|
2016-07-18 11:02:12 -04:00
|
|
|
return nil
|
2016-05-16 11:50:55 -04:00
|
|
|
}
|
|
|
|
|
2016-11-07 21:51:47 -05:00
|
|
|
// Inspect examines a plugin config
|
2016-12-12 18:05:53 -05:00
|
|
|
func (pm *Manager) Inspect(refOrID string) (tp *types.Plugin, err error) {
|
|
|
|
p, err := pm.config.Store.GetV2Plugin(refOrID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2016-11-23 23:04:44 -05:00
|
|
|
}
|
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
return &p.PluginObj, nil
|
|
|
|
}
|
2016-11-23 23:04:44 -05:00
|
|
|
|
2017-07-19 10:20:13 -04:00
|
|
|
func computePrivileges(c types.PluginConfig) types.PluginPrivileges {
|
2016-11-23 20:29:21 -05:00
|
|
|
var privileges types.PluginPrivileges
|
2016-12-13 20:46:01 -05:00
|
|
|
if c.Network.Type != "null" && c.Network.Type != "bridge" && c.Network.Type != "" {
|
2016-11-23 20:29:21 -05:00
|
|
|
privileges = append(privileges, types.PluginPrivilege{
|
|
|
|
Name: "network",
|
|
|
|
Description: "permissions to access a network",
|
|
|
|
Value: []string{c.Network.Type},
|
|
|
|
})
|
|
|
|
}
|
2017-03-07 21:26:09 -05:00
|
|
|
if c.IpcHost {
|
|
|
|
privileges = append(privileges, types.PluginPrivilege{
|
|
|
|
Name: "host ipc namespace",
|
|
|
|
Description: "allow access to host ipc namespace",
|
|
|
|
Value: []string{"true"},
|
|
|
|
})
|
|
|
|
}
|
2017-03-10 17:17:24 -05:00
|
|
|
if c.PidHost {
|
|
|
|
privileges = append(privileges, types.PluginPrivilege{
|
|
|
|
Name: "host pid namespace",
|
|
|
|
Description: "allow access to host pid namespace",
|
|
|
|
Value: []string{"true"},
|
|
|
|
})
|
|
|
|
}
|
2016-11-23 20:29:21 -05:00
|
|
|
for _, mount := range c.Mounts {
|
|
|
|
if mount.Source != nil {
|
|
|
|
privileges = append(privileges, types.PluginPrivilege{
|
|
|
|
Name: "mount",
|
|
|
|
Description: "host path to mount",
|
|
|
|
Value: []string{*mount.Source},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, device := range c.Linux.Devices {
|
|
|
|
if device.Path != nil {
|
|
|
|
privileges = append(privileges, types.PluginPrivilege{
|
|
|
|
Name: "device",
|
|
|
|
Description: "host device to access",
|
|
|
|
Value: []string{*device.Path},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2017-01-10 14:00:57 -05:00
|
|
|
if c.Linux.AllowAllDevices {
|
2016-11-23 20:29:21 -05:00
|
|
|
privileges = append(privileges, types.PluginPrivilege{
|
2017-01-10 14:00:57 -05:00
|
|
|
Name: "allow-all-devices",
|
|
|
|
Description: "allow 'rwm' access to all devices",
|
2016-11-23 20:29:21 -05:00
|
|
|
Value: []string{"true"},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
if len(c.Linux.Capabilities) > 0 {
|
|
|
|
privileges = append(privileges, types.PluginPrivilege{
|
|
|
|
Name: "capabilities",
|
|
|
|
Description: "list of additional capabilities required",
|
|
|
|
Value: c.Linux.Capabilities,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-07-19 10:20:13 -04:00
|
|
|
return privileges
|
2016-11-28 14:08:39 -05:00
|
|
|
}
|
|
|
|
|
2016-11-23 20:29:21 -05:00
|
|
|
// Privileges pulls a plugin config and computes the privileges required to install it.
|
2016-12-12 18:05:53 -05:00
|
|
|
func (pm *Manager) Privileges(ctx context.Context, ref reference.Named, metaHeader http.Header, authConfig *types.AuthConfig) (types.PluginPrivileges, error) {
|
2020-02-10 19:31:04 -05:00
|
|
|
var (
|
|
|
|
config types.PluginConfig
|
|
|
|
configSeen bool
|
|
|
|
)
|
|
|
|
|
|
|
|
h := func(ctx context.Context, desc specs.Descriptor) ([]specs.Descriptor, error) {
|
|
|
|
switch desc.MediaType {
|
|
|
|
case schema2.MediaTypeManifest, specs.MediaTypeImageManifest:
|
|
|
|
data, err := content.ReadBlob(ctx, pm.blobStore, desc)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "error reading image manifest from blob store for %s", ref)
|
|
|
|
}
|
|
|
|
|
|
|
|
var m specs.Manifest
|
|
|
|
if err := json.Unmarshal(data, &m); err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "error unmarshaling image manifest for %s", ref)
|
|
|
|
}
|
|
|
|
return []specs.Descriptor{m.Config}, nil
|
|
|
|
case schema2.MediaTypePluginConfig:
|
|
|
|
configSeen = true
|
|
|
|
data, err := content.ReadBlob(ctx, pm.blobStore, desc)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "error reading plugin config from blob store for %s", ref)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := json.Unmarshal(data, &config); err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "error unmarshaling plugin config for %s", ref)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
2016-05-16 11:50:55 -04:00
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
if err := pm.fetch(ctx, ref, authConfig, progress.DiscardOutput(), metaHeader, images.HandlerFunc(h)); err != nil {
|
|
|
|
return types.PluginPrivileges{}, nil
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
2020-02-10 19:31:04 -05:00
|
|
|
|
|
|
|
if !configSeen {
|
|
|
|
return types.PluginPrivileges{}, errors.Errorf("did not find plugin config for specified reference %s", ref)
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2017-07-19 10:20:13 -04:00
|
|
|
return computePrivileges(config), nil
|
2016-11-23 20:29:21 -05:00
|
|
|
}
|
2016-05-16 11:50:55 -04:00
|
|
|
|
2017-01-28 19:54:32 -05:00
|
|
|
// Upgrade upgrades a plugin
|
2020-02-10 19:31:04 -05:00
|
|
|
//
|
|
|
|
// TODO: replace reference package usage with simpler url.Parse semantics
|
2017-01-28 19:54:32 -05:00
|
|
|
func (pm *Manager) Upgrade(ctx context.Context, ref reference.Named, name string, metaHeader http.Header, authConfig *types.AuthConfig, privileges types.PluginPrivileges, outStream io.Writer) (err error) {
|
|
|
|
p, err := pm.config.Store.GetV2Plugin(name)
|
|
|
|
if err != nil {
|
2017-07-19 10:20:13 -04:00
|
|
|
return err
|
2017-01-28 19:54:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if p.IsEnabled() {
|
2017-07-19 10:20:13 -04:00
|
|
|
return errors.Wrap(enabledError(p.Name()), "plugin must be disabled before upgrading")
|
2017-01-28 19:54:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// revalidate because Pull is public
|
2017-04-25 03:13:48 -04:00
|
|
|
if _, err := reference.ParseNormalizedNamed(name); err != nil {
|
2017-11-28 23:09:37 -05:00
|
|
|
return errors.Wrapf(errdefs.InvalidParameter(err), "failed to parse %q", name)
|
2017-01-28 19:54:32 -05:00
|
|
|
}
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
pm.muGC.RLock()
|
|
|
|
defer pm.muGC.RUnlock()
|
|
|
|
|
2021-08-24 06:10:50 -04:00
|
|
|
tmpRootFSDir, err := os.MkdirTemp(pm.tmpDir(), ".rootfs")
|
2017-02-09 03:58:58 -05:00
|
|
|
if err != nil {
|
2020-02-10 19:31:04 -05:00
|
|
|
return errors.Wrap(err, "error creating tmp dir for plugin rootfs")
|
2017-02-09 03:58:58 -05:00
|
|
|
}
|
2017-01-28 19:54:32 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
var md fetchMeta
|
2017-01-28 19:54:32 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
out, waitProgress := setupProgressOutput(outStream, cancel)
|
|
|
|
defer waitProgress()
|
|
|
|
|
|
|
|
if err := pm.fetch(ctx, ref, authConfig, out, metaHeader, storeFetchMetadata(&md), childrenHandler(pm.blobStore), applyLayer(pm.blobStore, tmpRootFSDir, out)); err != nil {
|
|
|
|
return err
|
2017-01-28 19:54:32 -05:00
|
|
|
}
|
2020-02-10 19:31:04 -05:00
|
|
|
pm.config.LogPluginEvent(reference.FamiliarString(ref), name, "pull")
|
2017-01-28 19:54:32 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
if err := validateFetchedMetadata(md); err != nil {
|
2017-01-28 19:54:32 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
if err := pm.upgradePlugin(p, md.config, md.manifest, md.blobs, tmpRootFSDir, &privileges); err != nil {
|
2017-01-28 19:54:32 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
p.PluginObj.PluginReference = ref.String()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-11-23 20:29:21 -05:00
|
|
|
// Pull pulls a plugin, check if the correct privileges are provided and install the plugin.
|
2020-02-10 19:31:04 -05:00
|
|
|
//
|
|
|
|
// TODO: replace reference package usage with simpler url.Parse semantics
|
2017-06-07 13:07:01 -04:00
|
|
|
func (pm *Manager) Pull(ctx context.Context, ref reference.Named, name string, metaHeader http.Header, authConfig *types.AuthConfig, privileges types.PluginPrivileges, outStream io.Writer, opts ...CreateOpt) (err error) {
|
2016-12-12 18:05:53 -05:00
|
|
|
pm.muGC.RLock()
|
|
|
|
defer pm.muGC.RUnlock()
|
|
|
|
|
|
|
|
// revalidate because Pull is public
|
2017-01-25 19:54:18 -05:00
|
|
|
nameref, err := reference.ParseNormalizedNamed(name)
|
2016-11-23 20:29:21 -05:00
|
|
|
if err != nil {
|
2017-11-28 23:09:37 -05:00
|
|
|
return errors.Wrapf(errdefs.InvalidParameter(err), "failed to parse %q", name)
|
2016-11-23 20:29:21 -05:00
|
|
|
}
|
2017-01-25 19:54:18 -05:00
|
|
|
name = reference.FamiliarString(reference.TagNameOnly(nameref))
|
2016-11-23 20:29:21 -05:00
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
if err := pm.config.Store.validateName(name); err != nil {
|
2017-11-28 23:09:37 -05:00
|
|
|
return errdefs.InvalidParameter(err)
|
2016-11-23 20:29:21 -05:00
|
|
|
}
|
|
|
|
|
2021-08-24 06:10:50 -04:00
|
|
|
tmpRootFSDir, err := os.MkdirTemp(pm.tmpDir(), ".rootfs")
|
2017-02-09 03:58:58 -05:00
|
|
|
if err != nil {
|
2020-02-10 19:31:04 -05:00
|
|
|
return errors.Wrap(errdefs.System(err), "error preparing upgrade")
|
2017-02-09 03:58:58 -05:00
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
defer os.RemoveAll(tmpRootFSDir)
|
2016-05-16 11:50:55 -04:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
var md fetchMeta
|
2016-05-16 11:50:55 -04:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
out, waitProgress := setupProgressOutput(outStream, cancel)
|
|
|
|
defer waitProgress()
|
|
|
|
|
|
|
|
if err := pm.fetch(ctx, ref, authConfig, out, metaHeader, storeFetchMetadata(&md), childrenHandler(pm.blobStore), applyLayer(pm.blobStore, tmpRootFSDir, out)); err != nil {
|
|
|
|
return err
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
2020-02-10 19:31:04 -05:00
|
|
|
pm.config.LogPluginEvent(reference.FamiliarString(ref), name, "pull")
|
2016-11-23 20:29:21 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
if err := validateFetchedMetadata(md); err != nil {
|
2016-11-23 20:29:21 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-06-07 13:07:01 -04:00
|
|
|
refOpt := func(p *v2.Plugin) {
|
|
|
|
p.PluginObj.PluginReference = ref.String()
|
|
|
|
}
|
|
|
|
optsList := make([]CreateOpt, 0, len(opts)+1)
|
|
|
|
optsList = append(optsList, opts...)
|
|
|
|
optsList = append(optsList, refOpt)
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
// TODO: tmpRootFSDir is empty but should have layers in it
|
|
|
|
p, err := pm.createPlugin(name, md.config, md.manifest, md.blobs, tmpRootFSDir, &privileges, optsList...)
|
2017-01-28 19:54:32 -05:00
|
|
|
if err != nil {
|
2016-11-23 20:29:21 -05:00
|
|
|
return err
|
2016-05-16 11:50:55 -04:00
|
|
|
}
|
2016-11-23 20:29:21 -05:00
|
|
|
|
2017-06-07 13:07:01 -04:00
|
|
|
pm.publisher.Publish(EventCreate{Plugin: p.PluginObj})
|
2020-02-10 19:31:04 -05:00
|
|
|
|
2016-11-23 20:29:21 -05:00
|
|
|
return nil
|
2016-05-16 11:50:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// List displays the list of plugins and associated metadata.
|
2016-11-23 07:58:15 -05:00
|
|
|
func (pm *Manager) List(pluginFilters filters.Args) ([]types.Plugin, error) {
|
|
|
|
if err := pluginFilters.Validate(acceptedPluginFilterTags); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
enabledOnly := false
|
|
|
|
disabledOnly := false
|
2017-09-26 07:39:56 -04:00
|
|
|
if pluginFilters.Contains("enabled") {
|
2016-11-23 07:58:15 -05:00
|
|
|
if pluginFilters.ExactMatch("enabled", "true") {
|
|
|
|
enabledOnly = true
|
|
|
|
} else if pluginFilters.ExactMatch("enabled", "false") {
|
|
|
|
disabledOnly = true
|
|
|
|
} else {
|
2017-07-19 10:20:13 -04:00
|
|
|
return nil, invalidFilter{"enabled", pluginFilters.Get("enabled")}
|
2016-11-23 07:58:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
plugins := pm.config.Store.GetAll()
|
2016-08-26 13:02:38 -04:00
|
|
|
out := make([]types.Plugin, 0, len(plugins))
|
2016-11-23 07:58:15 -05:00
|
|
|
|
2016-11-23 08:27:09 -05:00
|
|
|
next:
|
2016-08-26 13:02:38 -04:00
|
|
|
for _, p := range plugins {
|
2016-11-23 07:58:15 -05:00
|
|
|
if enabledOnly && !p.PluginObj.Enabled {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if disabledOnly && p.PluginObj.Enabled {
|
|
|
|
continue
|
|
|
|
}
|
2017-09-26 07:39:56 -04:00
|
|
|
if pluginFilters.Contains("capability") {
|
2016-11-23 08:27:09 -05:00
|
|
|
for _, f := range p.GetTypes() {
|
|
|
|
if !pluginFilters.Match("capability", f.Capability) {
|
|
|
|
continue next
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-07-18 11:02:12 -04:00
|
|
|
out = append(out, p.PluginObj)
|
2016-05-16 11:50:55 -04:00
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
// Push pushes a plugin to the registry.
|
2016-12-12 18:05:53 -05:00
|
|
|
func (pm *Manager) Push(ctx context.Context, name string, metaHeader http.Header, authConfig *types.AuthConfig, outStream io.Writer) error {
|
|
|
|
p, err := pm.config.Store.GetV2Plugin(name)
|
2016-06-27 11:41:53 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2017-01-25 19:54:18 -05:00
|
|
|
ref, err := reference.ParseNormalizedNamed(p.Name())
|
2016-08-10 19:48:17 -04:00
|
|
|
if err != nil {
|
2016-12-12 18:05:53 -05:00
|
|
|
return errors.Wrapf(err, "plugin has invalid name %v for push", p.Name())
|
2016-08-10 19:48:17 -04:00
|
|
|
}
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
statusTracker := docker.NewInMemoryTracker()
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
resolver, err := pm.newResolver(ctx, statusTracker, authConfig, metaHeader, false)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
pusher, err := resolver.Pusher(ctx, ref.String())
|
|
|
|
if err != nil {
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
return errors.Wrap(err, "error creating plugin pusher")
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
pj := newPushJobs(statusTracker)
|
|
|
|
|
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
out, waitProgress := setupProgressOutput(outStream, cancel)
|
|
|
|
defer waitProgress()
|
2016-06-27 11:41:53 -04:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
progressHandler := images.HandlerFunc(func(ctx context.Context, desc specs.Descriptor) ([]specs.Descriptor, error) {
|
|
|
|
logrus.WithField("mediaType", desc.MediaType).WithField("digest", desc.Digest.String()).Debug("Preparing to push plugin layer")
|
|
|
|
id := stringid.TruncateID(desc.Digest.String())
|
|
|
|
pj.add(remotes.MakeRefKey(ctx, desc), id)
|
|
|
|
progress.Update(out, id, "Preparing")
|
|
|
|
return nil, nil
|
|
|
|
})
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
desc, err := pm.getManifestDescriptor(ctx, p)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "error reading plugin manifest")
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
progress.Messagef(out, "", "The push refers to repository [%s]", reference.FamiliarName(ref))
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
// TODO: If a layer already exists on the registry, the progress output just says "Preparing"
|
|
|
|
go func() {
|
|
|
|
timer := time.NewTimer(100 * time.Millisecond)
|
|
|
|
defer timer.Stop()
|
|
|
|
if !timer.Stop() {
|
|
|
|
<-timer.C
|
|
|
|
}
|
|
|
|
var statuses []contentStatus
|
|
|
|
for {
|
|
|
|
timer.Reset(100 * time.Millisecond)
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
case <-timer.C:
|
|
|
|
statuses = pj.status()
|
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
for _, s := range statuses {
|
|
|
|
out.WriteProgress(progress.Progress{ID: s.Ref, Current: s.Offset, Total: s.Total, Action: s.Status, LastUpdate: s.Offset == s.Total})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
// Make sure we can authenticate the request since the auth scope for plugin repos is different than a normal repo.
|
|
|
|
ctx = docker.WithScope(ctx, scope(ref, true))
|
2021-06-04 10:32:37 -04:00
|
|
|
if err := remotes.PushContent(ctx, pusher, desc, pm.blobStore, nil, nil, func(h images.Handler) images.Handler {
|
2020-02-10 19:31:04 -05:00
|
|
|
return images.Handlers(progressHandler, h)
|
|
|
|
}); err != nil {
|
|
|
|
// Try fallback to http.
|
|
|
|
// This is needed because the containerd pusher will only attempt the first registry config we pass, which would
|
|
|
|
// typically be https.
|
|
|
|
// If there are no http-only host configs found we'll error out anyway.
|
|
|
|
resolver, _ := pm.newResolver(ctx, statusTracker, authConfig, metaHeader, true)
|
|
|
|
if resolver != nil {
|
|
|
|
pusher, _ := resolver.Pusher(ctx, ref.String())
|
|
|
|
if pusher != nil {
|
|
|
|
logrus.WithField("ref", ref).Debug("Re-attmpting push with http-fallback")
|
2021-06-04 10:32:37 -04:00
|
|
|
err2 := remotes.PushContent(ctx, pusher, desc, pm.blobStore, nil, nil, func(h images.Handler) images.Handler {
|
2020-02-10 19:31:04 -05:00
|
|
|
return images.Handlers(progressHandler, h)
|
|
|
|
})
|
|
|
|
if err2 == nil {
|
|
|
|
err = nil
|
|
|
|
} else {
|
|
|
|
logrus.WithError(err2).WithField("ref", ref).Debug("Error while attempting push with http-fallback")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "error pushing plugin")
|
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
// For blobs that already exist in the registry we need to make sure to update the progress otherwise it will just say "pending"
|
|
|
|
// TODO: How to check if the layer already exists? Is it worth it?
|
|
|
|
for _, j := range pj.jobs {
|
|
|
|
progress.Update(out, pj.names[j], "Upload complete")
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
// Signal the client for content trust verification
|
|
|
|
progress.Aux(out, types.PushResult{Tag: ref.(reference.Tagged).Tag(), Digest: desc.Digest.String(), Size: int(desc.Size)})
|
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
// manifest wraps an OCI manifest, because...
|
|
|
|
// Historically the registry does not support plugins unless the media type on the manifest is specifically schema2.MediaTypeManifest
|
|
|
|
// So the OCI manifest media type is not supported.
|
|
|
|
// Additionally, there is extra validation for the docker schema2 manifest than there is a mediatype set on the manifest itself
|
|
|
|
// even though this is set on the descriptor
|
|
|
|
// The OCI types do not have this field.
|
|
|
|
type manifest struct {
|
|
|
|
specs.Manifest
|
|
|
|
MediaType string `json:"mediaType,omitempty"`
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
func buildManifest(ctx context.Context, s content.Manager, config digest.Digest, layers []digest.Digest) (manifest, error) {
|
|
|
|
var m manifest
|
|
|
|
m.MediaType = images.MediaTypeDockerSchema2Manifest
|
|
|
|
m.SchemaVersion = 2
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
configInfo, err := s.Info(ctx, config)
|
2016-05-16 11:50:55 -04:00
|
|
|
if err != nil {
|
2020-02-10 19:31:04 -05:00
|
|
|
return m, errors.Wrapf(err, "error reading plugin config content for digest %s", config)
|
|
|
|
}
|
|
|
|
m.Config = specs.Descriptor{
|
|
|
|
MediaType: mediaTypePluginConfig,
|
|
|
|
Size: configInfo.Size,
|
|
|
|
Digest: configInfo.Digest,
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
2018-02-15 16:17:27 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
for _, l := range layers {
|
|
|
|
info, err := s.Info(ctx, l)
|
|
|
|
if err != nil {
|
|
|
|
return m, errors.Wrapf(err, "error fetching info for content digest %s", l)
|
|
|
|
}
|
|
|
|
m.Layers = append(m.Layers, specs.Descriptor{
|
2021-03-26 18:07:41 -04:00
|
|
|
MediaType: images.MediaTypeDockerSchema2LayerGzip, // TODO: This is assuming everything is a gzip compressed layer, but that may not be true.
|
2020-02-10 19:31:04 -05:00
|
|
|
Digest: l,
|
|
|
|
Size: info.Size,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return m, nil
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
// getManifestDescriptor gets the OCI descriptor for a manifest
|
|
|
|
// It will generate a manifest if one does not exist
|
|
|
|
func (pm *Manager) getManifestDescriptor(ctx context.Context, p *v2.Plugin) (specs.Descriptor, error) {
|
|
|
|
logger := logrus.WithField("plugin", p.Name()).WithField("digest", p.Manifest)
|
|
|
|
if p.Manifest != "" {
|
|
|
|
info, err := pm.blobStore.Info(ctx, p.Manifest)
|
|
|
|
if err == nil {
|
|
|
|
desc := specs.Descriptor{
|
|
|
|
Size: info.Size,
|
|
|
|
Digest: info.Digest,
|
|
|
|
MediaType: images.MediaTypeDockerSchema2Manifest,
|
|
|
|
}
|
|
|
|
return desc, nil
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
2020-02-10 19:31:04 -05:00
|
|
|
logger.WithError(err).Debug("Could not find plugin manifest in content store")
|
|
|
|
} else {
|
|
|
|
logger.Info("Plugin does not have manifest digest")
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
2020-02-10 19:31:04 -05:00
|
|
|
logger.Info("Building a new plugin manifest")
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
manifest, err := buildManifest(ctx, pm.blobStore, p.Config, p.Blobsums)
|
|
|
|
if err != nil {
|
|
|
|
return specs.Descriptor{}, err
|
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
desc, err := writeManifest(ctx, pm.blobStore, &manifest)
|
|
|
|
if err != nil {
|
|
|
|
return desc, err
|
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
if err := pm.save(p); err != nil {
|
|
|
|
logger.WithError(err).Error("Could not save plugin with manifest digest")
|
|
|
|
}
|
|
|
|
return desc, nil
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
func writeManifest(ctx context.Context, cs content.Store, m *manifest) (specs.Descriptor, error) {
|
|
|
|
platform := platforms.DefaultSpec()
|
|
|
|
desc := specs.Descriptor{
|
|
|
|
MediaType: images.MediaTypeDockerSchema2Manifest,
|
|
|
|
Platform: &platform,
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
2020-02-10 19:31:04 -05:00
|
|
|
data, err := json.Marshal(m)
|
|
|
|
if err != nil {
|
|
|
|
return desc, errors.Wrap(err, "error encoding manifest")
|
2016-05-16 11:50:55 -04:00
|
|
|
}
|
2020-02-10 19:31:04 -05:00
|
|
|
desc.Digest = digest.FromBytes(data)
|
|
|
|
desc.Size = int64(len(data))
|
2016-12-12 18:05:53 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
if err := content.WriteBlob(ctx, cs, remotes.MakeRefKey(ctx, desc), bytes.NewReader(data), desc); err != nil {
|
|
|
|
return desc, errors.Wrap(err, "error writing plugin manifest")
|
|
|
|
}
|
|
|
|
return desc, nil
|
2016-05-16 11:50:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Remove deletes plugin's root directory.
|
2016-12-12 18:05:53 -05:00
|
|
|
func (pm *Manager) Remove(name string, config *types.PluginRmConfig) error {
|
|
|
|
p, err := pm.config.Store.GetV2Plugin(name)
|
2016-12-01 14:36:56 -05:00
|
|
|
pm.mu.RLock()
|
|
|
|
c := pm.cMap[p]
|
|
|
|
pm.mu.RUnlock()
|
|
|
|
|
2016-05-16 11:50:55 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-09-07 09:59:15 -04:00
|
|
|
|
|
|
|
if !config.ForceRemove {
|
2016-12-01 14:36:56 -05:00
|
|
|
if p.GetRefCount() > 0 {
|
2017-07-19 10:20:13 -04:00
|
|
|
return inUseError(p.Name())
|
2016-09-07 09:59:15 -04:00
|
|
|
}
|
|
|
|
if p.IsEnabled() {
|
2017-07-19 10:20:13 -04:00
|
|
|
return enabledError(p.Name())
|
2016-08-26 13:02:38 -04:00
|
|
|
}
|
2016-09-07 09:59:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if p.IsEnabled() {
|
2016-12-01 14:36:56 -05:00
|
|
|
if err := pm.disable(p, c); err != nil {
|
2016-08-26 13:02:38 -04:00
|
|
|
logrus.Errorf("failed to disable plugin '%s': %s", p.Name(), err)
|
|
|
|
}
|
2016-07-18 11:02:12 -04:00
|
|
|
}
|
2016-09-07 09:59:15 -04:00
|
|
|
|
2016-12-12 21:18:17 -05:00
|
|
|
defer func() {
|
2016-12-12 18:05:53 -05:00
|
|
|
go pm.GC()
|
2016-12-12 21:18:17 -05:00
|
|
|
}()
|
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
id := p.GetID()
|
|
|
|
pluginDir := filepath.Join(pm.config.Root, id)
|
2017-06-26 14:54:14 -04:00
|
|
|
|
|
|
|
if err := mount.RecursiveUnmount(pluginDir); err != nil {
|
|
|
|
return errors.Wrap(err, "error unmounting plugin data")
|
2017-02-02 23:08:35 -05:00
|
|
|
}
|
2017-06-26 14:54:14 -04:00
|
|
|
|
2017-08-02 14:28:49 -04:00
|
|
|
if err := atomicRemoveAll(pluginDir); err != nil {
|
|
|
|
return err
|
2017-06-26 14:54:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
pm.config.Store.Remove(p)
|
2016-12-12 18:05:53 -05:00
|
|
|
pm.config.LogPluginEvent(id, name, "remove")
|
2017-06-07 13:07:01 -04:00
|
|
|
pm.publisher.Publish(EventRemove{Plugin: p.PluginObj})
|
2016-07-18 11:02:12 -04:00
|
|
|
return nil
|
2016-05-16 11:50:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set sets plugin args
|
|
|
|
func (pm *Manager) Set(name string, args []string) error {
|
2016-12-12 18:05:53 -05:00
|
|
|
p, err := pm.config.Store.GetV2Plugin(name)
|
2016-05-16 11:50:55 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
if err := p.Set(args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return pm.save(p)
|
2016-05-16 11:50:55 -04:00
|
|
|
}
|
2016-10-04 15:01:19 -04:00
|
|
|
|
|
|
|
// CreateFromContext creates a plugin from the given pluginDir which contains
|
2016-11-07 21:51:47 -05:00
|
|
|
// both the rootfs and the config.json and a repoName with optional tag.
|
2016-12-12 18:05:53 -05:00
|
|
|
func (pm *Manager) CreateFromContext(ctx context.Context, tarCtx io.ReadCloser, options *types.PluginCreateOptions) (err error) {
|
|
|
|
pm.muGC.RLock()
|
|
|
|
defer pm.muGC.RUnlock()
|
|
|
|
|
2017-01-25 19:54:18 -05:00
|
|
|
ref, err := reference.ParseNormalizedNamed(options.RepoName)
|
2016-11-29 15:55:41 -05:00
|
|
|
if err != nil {
|
2016-12-12 18:05:53 -05:00
|
|
|
return errors.Wrapf(err, "failed to parse reference %v", options.RepoName)
|
|
|
|
}
|
|
|
|
if _, ok := ref.(reference.Canonical); ok {
|
|
|
|
return errors.Errorf("canonical references are not permitted")
|
2016-11-29 15:55:41 -05:00
|
|
|
}
|
2017-01-25 19:54:18 -05:00
|
|
|
name := reference.FamiliarString(reference.TagNameOnly(ref))
|
2016-11-29 15:55:41 -05:00
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
if err := pm.config.Store.validateName(name); err != nil { // fast check, real check is in createPlugin()
|
|
|
|
return err
|
|
|
|
}
|
2016-10-04 15:01:19 -04:00
|
|
|
|
2021-08-24 06:10:50 -04:00
|
|
|
tmpRootFSDir, err := os.MkdirTemp(pm.tmpDir(), ".rootfs")
|
2016-12-12 18:05:53 -05:00
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "failed to create temp directory")
|
|
|
|
}
|
2017-02-09 03:58:58 -05:00
|
|
|
defer os.RemoveAll(tmpRootFSDir)
|
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
var configJSON []byte
|
|
|
|
rootFS := splitConfigRootFSFromTar(tarCtx, &configJSON)
|
2016-11-29 15:55:41 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
rootFSBlob, err := pm.blobStore.Writer(ctx, content.WithRef(name))
|
2016-12-12 18:05:53 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2016-11-29 15:55:41 -05:00
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
defer rootFSBlob.Close()
|
2020-02-10 19:31:04 -05:00
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
gzw := gzip.NewWriter(rootFSBlob)
|
2020-02-10 19:31:04 -05:00
|
|
|
rootFSReader := io.TeeReader(rootFS, gzw)
|
2016-11-29 15:55:41 -05:00
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
if err := chrootarchive.Untar(rootFSReader, tmpRootFSDir, nil); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := rootFS.Close(); err != nil {
|
2016-10-04 15:01:19 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
if configJSON == nil {
|
|
|
|
return errors.New("config not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := gzw.Close(); err != nil {
|
|
|
|
return errors.Wrap(err, "error closing gzip writer")
|
|
|
|
}
|
|
|
|
|
|
|
|
var config types.PluginConfig
|
|
|
|
if err := json.Unmarshal(configJSON, &config); err != nil {
|
|
|
|
return errors.Wrap(err, "failed to parse config")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := pm.validateConfig(config); err != nil {
|
2016-11-22 12:42:58 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
pm.mu.Lock()
|
|
|
|
defer pm.mu.Unlock()
|
2016-11-22 12:42:58 -05:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
if err := rootFSBlob.Commit(ctx, 0, ""); err != nil {
|
2016-10-04 15:01:19 -04:00
|
|
|
return err
|
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
go pm.GC()
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
config.Rootfs = &types.PluginConfigRootfs{
|
|
|
|
Type: "layers",
|
2020-02-10 19:31:04 -05:00
|
|
|
DiffIds: []string{rootFSBlob.Digest().String()},
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
2016-10-04 15:01:19 -04:00
|
|
|
|
Embed DockerVersion in plugin config.
Embedding DockerVersion in plugin config when the plugin is created,
enables users to do a docker plugin inspect and know which version
the plugin was built on. This is helpful in cases where users are
running a new plugin on older docker releases and confused at
unexpected behavior.
By embedding DockerVersion in the config, we claim that there's no
guarantee that if the plugin config's DockerVersion is greater that
the version of the docker engine the plugin is executed against, the
plugin will work as expected.
For example, lets say:
- in 17.03, a plugin was released as johndoe/foo:v1
- in 17.05, the plugin uses the new ipchost config setting and author
publishes johndoe/foo:v2
In this case, johndoe/foo:v2 was built on 17.05 using ipchost, but is
running on docker-engine version 17.03. Since 17.05 > 17.03, there's
no guarantee that the plugin will work as expected. Ofcourse, if the
plugin did not use newly added config settings (ipchost in this case)
in 17.05, it would work fine in 17.03.
Signed-off-by: Anusha Ragunathan <anusha.ragunathan@docker.com>
2017-03-21 17:07:41 -04:00
|
|
|
config.DockerVersion = dockerversion.Version
|
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
configBlob, err := pm.blobStore.Writer(ctx, content.WithRef(name+"-config.json"))
|
2016-12-12 18:05:53 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer configBlob.Close()
|
|
|
|
if err := json.NewEncoder(configBlob).Encode(config); err != nil {
|
|
|
|
return errors.Wrap(err, "error encoding json config")
|
|
|
|
}
|
2020-02-10 19:31:04 -05:00
|
|
|
if err := configBlob.Commit(ctx, 0, ""); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
configDigest := configBlob.Digest()
|
|
|
|
layers := []digest.Digest{rootFSBlob.Digest()}
|
|
|
|
|
|
|
|
manifest, err := buildManifest(ctx, pm.blobStore, configDigest, layers)
|
2016-12-12 18:05:53 -05:00
|
|
|
if err != nil {
|
2016-10-04 15:01:19 -04:00
|
|
|
return err
|
|
|
|
}
|
2020-02-10 19:31:04 -05:00
|
|
|
desc, err := writeManifest(ctx, pm.blobStore, &manifest)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2016-10-04 15:01:19 -04:00
|
|
|
|
2020-02-10 19:31:04 -05:00
|
|
|
p, err := pm.createPlugin(name, configDigest, desc.Digest, layers, tmpRootFSDir, nil)
|
2016-12-12 18:05:53 -05:00
|
|
|
if err != nil {
|
2016-11-22 12:42:58 -05:00
|
|
|
return err
|
|
|
|
}
|
2017-01-25 19:54:18 -05:00
|
|
|
p.PluginObj.PluginReference = name
|
2016-10-04 15:01:19 -04:00
|
|
|
|
2017-06-07 13:07:01 -04:00
|
|
|
pm.publisher.Publish(EventCreate{Plugin: p.PluginObj})
|
2016-12-12 18:05:53 -05:00
|
|
|
pm.config.LogPluginEvent(p.PluginObj.ID, name, "create")
|
2016-10-04 15:01:19 -04:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2016-11-23 23:04:44 -05:00
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
func (pm *Manager) validateConfig(config types.PluginConfig) error {
|
|
|
|
return nil // TODO:
|
|
|
|
}
|
|
|
|
|
|
|
|
func splitConfigRootFSFromTar(in io.ReadCloser, config *[]byte) io.ReadCloser {
|
|
|
|
pr, pw := io.Pipe()
|
|
|
|
go func() {
|
|
|
|
tarReader := tar.NewReader(in)
|
|
|
|
tarWriter := tar.NewWriter(pw)
|
|
|
|
defer in.Close()
|
|
|
|
|
|
|
|
hasRootFS := false
|
|
|
|
|
|
|
|
for {
|
|
|
|
hdr, err := tarReader.Next()
|
|
|
|
if err == io.EOF {
|
|
|
|
if !hasRootFS {
|
|
|
|
pw.CloseWithError(errors.Wrap(err, "no rootfs found"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Signals end of archive.
|
|
|
|
tarWriter.Close()
|
|
|
|
pw.Close()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
pw.CloseWithError(errors.Wrap(err, "failed to read from tar"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
content := io.Reader(tarReader)
|
|
|
|
name := path.Clean(hdr.Name)
|
|
|
|
if path.IsAbs(name) {
|
|
|
|
name = name[1:]
|
|
|
|
}
|
|
|
|
if name == configFileName {
|
2021-08-24 06:10:50 -04:00
|
|
|
dt, err := io.ReadAll(content)
|
2016-12-12 18:05:53 -05:00
|
|
|
if err != nil {
|
|
|
|
pw.CloseWithError(errors.Wrapf(err, "failed to read %s", configFileName))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
*config = dt
|
|
|
|
}
|
|
|
|
if parts := strings.Split(name, "/"); len(parts) != 0 && parts[0] == rootFSFileName {
|
|
|
|
hdr.Name = path.Clean(path.Join(parts[1:]...))
|
|
|
|
if hdr.Typeflag == tar.TypeLink && strings.HasPrefix(strings.ToLower(hdr.Linkname), rootFSFileName+"/") {
|
|
|
|
hdr.Linkname = hdr.Linkname[len(rootFSFileName)+1:]
|
|
|
|
}
|
|
|
|
if err := tarWriter.WriteHeader(hdr); err != nil {
|
|
|
|
pw.CloseWithError(errors.Wrap(err, "error writing tar header"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if _, err := pools.Copy(tarWriter, content); err != nil {
|
|
|
|
pw.CloseWithError(errors.Wrap(err, "error copying tar data"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
hasRootFS = true
|
|
|
|
} else {
|
2021-08-24 06:10:50 -04:00
|
|
|
io.Copy(io.Discard, content)
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return pr
|
2016-11-23 23:04:44 -05:00
|
|
|
}
|
2017-08-02 14:28:49 -04:00
|
|
|
|
|
|
|
func atomicRemoveAll(dir string) error {
|
|
|
|
renamed := dir + "-removing"
|
|
|
|
|
|
|
|
err := os.Rename(dir, renamed)
|
|
|
|
switch {
|
|
|
|
case os.IsNotExist(err), err == nil:
|
|
|
|
// even if `dir` doesn't exist, we can still try and remove `renamed`
|
|
|
|
case os.IsExist(err):
|
|
|
|
// Some previous remove failed, check if the origin dir exists
|
|
|
|
if e := system.EnsureRemoveAll(renamed); e != nil {
|
|
|
|
return errors.Wrap(err, "rename target already exists and could not be removed")
|
|
|
|
}
|
|
|
|
if _, err := os.Stat(dir); os.IsNotExist(err) {
|
|
|
|
// origin doesn't exist, nothing left to do
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// attempt to rename again
|
|
|
|
if err := os.Rename(dir, renamed); err != nil {
|
|
|
|
return errors.Wrap(err, "failed to rename dir for atomic removal")
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return errors.Wrap(err, "failed to rename dir for atomic removal")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := system.EnsureRemoveAll(renamed); err != nil {
|
|
|
|
os.Rename(renamed, dir)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|