forked from moby/buildkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
oci-worker: separate windows and linux oci worker code
Signed-off-by: Ian King'ori <[email protected]>
- Loading branch information
1 parent
15cabaf
commit 236c8cb
Showing
9 changed files
with
1,421 additions
and
525 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,319 @@ | ||
//go:build linux | ||
// +build linux | ||
|
||
package main | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"os" | ||
"os/exec" | ||
"path/filepath" | ||
"strings" | ||
"time" | ||
|
||
snapshotsapi "github.com/containerd/containerd/api/services/snapshots/v1" | ||
"github.com/containerd/containerd/defaults" | ||
"github.com/containerd/containerd/pkg/dialer" | ||
"github.com/containerd/containerd/reference" | ||
"github.com/containerd/containerd/remotes/docker" | ||
ctdsnapshot "github.com/containerd/containerd/snapshots" | ||
"github.com/containerd/containerd/snapshots/native" | ||
"github.com/containerd/containerd/snapshots/overlay" | ||
"github.com/containerd/containerd/snapshots/overlay/overlayutils" | ||
snproxy "github.com/containerd/containerd/snapshots/proxy" | ||
fuseoverlayfs "github.com/containerd/fuse-overlayfs-snapshotter" | ||
sgzfs "github.com/containerd/stargz-snapshotter/fs" | ||
sgzconf "github.com/containerd/stargz-snapshotter/fs/config" | ||
sgzlayer "github.com/containerd/stargz-snapshotter/fs/layer" | ||
sgzsource "github.com/containerd/stargz-snapshotter/fs/source" | ||
remotesn "github.com/containerd/stargz-snapshotter/snapshot" | ||
"github.com/moby/buildkit/cmd/buildkitd/config" | ||
"github.com/moby/buildkit/executor/oci" | ||
"github.com/moby/buildkit/session" | ||
"github.com/moby/buildkit/util/bklog" | ||
"github.com/moby/buildkit/util/network/cniprovider" | ||
"github.com/moby/buildkit/util/network/netproviders" | ||
"github.com/moby/buildkit/util/resolver" | ||
"github.com/moby/buildkit/worker" | ||
"github.com/moby/buildkit/worker/base" | ||
"github.com/moby/buildkit/worker/runc" | ||
"github.com/pelletier/go-toml" | ||
"github.com/pkg/errors" | ||
"github.com/sirupsen/logrus" | ||
"github.com/urfave/cli" | ||
"golang.org/x/sync/semaphore" | ||
"google.golang.org/grpc" | ||
"google.golang.org/grpc/backoff" | ||
"google.golang.org/grpc/credentials/insecure" | ||
) | ||
|
||
func ociWorkerInitializer(c *cli.Context, common workerInitializerOpt) ([]worker.Worker, error) { | ||
if err := applyOCIFlags(c, common.config); err != nil { | ||
return nil, err | ||
} | ||
|
||
cfg := common.config.Workers.OCI | ||
|
||
if (cfg.Enabled == nil && !validOCIBinary()) || (cfg.Enabled != nil && !*cfg.Enabled) { | ||
return nil, nil | ||
} | ||
|
||
// TODO: this should never change the existing state dir | ||
idmapping, err := parseIdentityMapping(cfg.UserRemapUnsupported) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
hosts := resolverFunc(common.config) | ||
snFactory, err := snapshotterFactory(common.config.Root, cfg, common.sessionManager, hosts) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
if cfg.Rootless { | ||
bklog.L.Debugf("running in rootless mode") | ||
if common.config.Workers.OCI.NetworkConfig.Mode == "auto" { | ||
common.config.Workers.OCI.NetworkConfig.Mode = "host" | ||
} | ||
} | ||
|
||
processMode := oci.ProcessSandbox | ||
if cfg.NoProcessSandbox { | ||
bklog.L.Warn("NoProcessSandbox is enabled. Note that NoProcessSandbox allows build containers to kill (and potentially ptrace) an arbitrary process in the BuildKit host namespace. NoProcessSandbox should be enabled only when the BuildKit is running in a container as an unprivileged user.") | ||
if !cfg.Rootless { | ||
return nil, errors.New("can't enable NoProcessSandbox without Rootless") | ||
} | ||
processMode = oci.NoProcessSandbox | ||
} | ||
|
||
dns := getDNSConfig(common.config.DNS) | ||
|
||
nc := netproviders.Opt{ | ||
Mode: common.config.Workers.OCI.NetworkConfig.Mode, | ||
CNI: cniprovider.Opt{ | ||
Root: common.config.Root, | ||
ConfigPath: common.config.Workers.OCI.CNIConfigPath, | ||
BinaryDir: common.config.Workers.OCI.CNIBinaryPath, | ||
PoolSize: common.config.Workers.OCI.CNIPoolSize, | ||
BridgeName: common.config.Workers.OCI.BridgeName, | ||
BridgeSubnet: common.config.Workers.OCI.BridgeSubnet, | ||
}, | ||
} | ||
|
||
var parallelismSem *semaphore.Weighted | ||
if cfg.MaxParallelism > 0 { | ||
parallelismSem = semaphore.NewWeighted(int64(cfg.MaxParallelism)) | ||
} | ||
|
||
opt, err := runc.NewWorkerOpt(common.config.Root, snFactory, cfg.Rootless, processMode, cfg.Labels, idmapping, nc, dns, cfg.Binary, cfg.ApparmorProfile, cfg.SELinux, parallelismSem, common.traceSocket, cfg.DefaultCgroupParent) | ||
if err != nil { | ||
return nil, err | ||
} | ||
opt.GCPolicy = getGCPolicy(cfg.GCConfig, common.config.Root) | ||
opt.BuildkitVersion = getBuildkitVersion() | ||
opt.RegistryHosts = hosts | ||
|
||
if platformsStr := cfg.Platforms; len(platformsStr) != 0 { | ||
platforms, err := parsePlatforms(platformsStr) | ||
if err != nil { | ||
return nil, errors.Wrap(err, "invalid platforms") | ||
} | ||
opt.Platforms = platforms | ||
} | ||
w, err := base.NewWorker(context.TODO(), opt) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return []worker.Worker{w}, nil | ||
} | ||
|
||
func snapshotterFactory(commonRoot string, cfg config.OCIConfig, sm *session.Manager, hosts docker.RegistryHosts) (runc.SnapshotterFactory, error) { | ||
var ( | ||
name = cfg.Snapshotter | ||
address = cfg.ProxySnapshotterPath | ||
) | ||
if address != "" { | ||
snFactory := runc.SnapshotterFactory{ | ||
Name: name, | ||
} | ||
if _, err := os.Stat(address); os.IsNotExist(err) { | ||
return snFactory, errors.Wrapf(err, "snapshotter doesn't exist on %q (Do not include 'unix://' prefix)", address) | ||
} | ||
snFactory.New = func(root string) (ctdsnapshot.Snapshotter, error) { | ||
backoffConfig := backoff.DefaultConfig | ||
backoffConfig.MaxDelay = 3 * time.Second | ||
connParams := grpc.ConnectParams{ | ||
Backoff: backoffConfig, | ||
} | ||
gopts := []grpc.DialOption{ | ||
grpc.WithTransportCredentials(insecure.NewCredentials()), | ||
grpc.WithConnectParams(connParams), | ||
grpc.WithContextDialer(dialer.ContextDialer), | ||
grpc.WithDefaultCallOptions(grpc.MaxCallRecvMsgSize(defaults.DefaultMaxRecvMsgSize)), | ||
grpc.WithDefaultCallOptions(grpc.MaxCallSendMsgSize(defaults.DefaultMaxSendMsgSize)), | ||
} | ||
conn, err := grpc.Dial(dialer.DialAddress(address), gopts...) | ||
if err != nil { | ||
return nil, errors.Wrapf(err, "failed to dial %q", address) | ||
} | ||
return snproxy.NewSnapshotter(snapshotsapi.NewSnapshotsClient(conn), name), nil | ||
} | ||
return snFactory, nil | ||
} | ||
|
||
if name == "auto" { | ||
if err := overlayutils.Supported(commonRoot); err == nil { | ||
name = "overlayfs" | ||
} else { | ||
bklog.L.Debugf("auto snapshotter: overlayfs is not available for %s, trying fuse-overlayfs: %v", commonRoot, err) | ||
if err2 := fuseoverlayfs.Supported(commonRoot); err2 == nil { | ||
name = "fuse-overlayfs" | ||
} else { | ||
bklog.L.Debugf("auto snapshotter: fuse-overlayfs is not available for %s, falling back to native: %v", commonRoot, err2) | ||
name = "native" | ||
} | ||
} | ||
bklog.L.Infof("auto snapshotter: using %s", name) | ||
} | ||
|
||
snFactory := runc.SnapshotterFactory{ | ||
Name: name, | ||
} | ||
switch name { | ||
case "native": | ||
snFactory.New = native.NewSnapshotter | ||
case "overlayfs": // not "overlay", for consistency with containerd snapshotter plugin ID. | ||
snFactory.New = func(root string) (ctdsnapshot.Snapshotter, error) { | ||
return overlay.NewSnapshotter(root, overlay.AsynchronousRemove) | ||
} | ||
case "fuse-overlayfs": | ||
snFactory.New = func(root string) (ctdsnapshot.Snapshotter, error) { | ||
// no Opt (AsynchronousRemove is untested for fuse-overlayfs) | ||
return fuseoverlayfs.NewSnapshotter(root) | ||
} | ||
case "stargz": | ||
sgzCfg := sgzconf.Config{} | ||
if cfg.StargzSnapshotterConfig != nil { | ||
// In order to keep the stargz Config type (and dependency) out of | ||
// the main BuildKit config, the main config Unmarshalls it into a | ||
// generic map[string]interface{}. Here we convert it back into TOML | ||
// tree, and unmarshal it to the actual type. | ||
t, err := toml.TreeFromMap(cfg.StargzSnapshotterConfig) | ||
if err != nil { | ||
return snFactory, errors.Wrapf(err, "failed to parse stargz config") | ||
} | ||
err = t.Unmarshal(&sgzCfg) | ||
if err != nil { | ||
return snFactory, errors.Wrapf(err, "failed to parse stargz config") | ||
} | ||
} | ||
snFactory.New = func(root string) (ctdsnapshot.Snapshotter, error) { | ||
userxattr, err := overlayutils.NeedsUserXAttr(root) | ||
if err != nil { | ||
bklog.L.WithError(err).Warnf("cannot detect whether \"userxattr\" option needs to be used, assuming to be %v", userxattr) | ||
} | ||
opq := sgzlayer.OverlayOpaqueTrusted | ||
if userxattr { | ||
opq = sgzlayer.OverlayOpaqueUser | ||
} | ||
fs, err := sgzfs.NewFilesystem(filepath.Join(root, "stargz"), | ||
sgzCfg, | ||
// Source info based on the buildkit's registry config and session | ||
sgzfs.WithGetSources(sourceWithSession(hosts, sm)), | ||
sgzfs.WithMetricsLogLevel(logrus.DebugLevel), | ||
sgzfs.WithOverlayOpaqueType(opq), | ||
) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return remotesn.NewSnapshotter(context.Background(), | ||
filepath.Join(root, "snapshotter"), | ||
fs, remotesn.AsynchronousRemove, remotesn.NoRestore) | ||
} | ||
default: | ||
return snFactory, errors.Errorf("unknown snapshotter name: %q", name) | ||
} | ||
return snFactory, nil | ||
} | ||
|
||
func validOCIBinary() bool { | ||
_, err := exec.LookPath("runc") | ||
_, err1 := exec.LookPath("buildkit-runc") | ||
if err != nil && err1 != nil { | ||
bklog.L.Warnf("skipping oci worker, as runc does not exist") | ||
return false | ||
} | ||
return true | ||
} | ||
|
||
const ( | ||
// targetRefLabel is a label which contains image reference. | ||
targetRefLabel = "containerd.io/snapshot/remote/stargz.reference" | ||
|
||
// targetDigestLabel is a label which contains layer digest. | ||
targetDigestLabel = "containerd.io/snapshot/remote/stargz.digest" | ||
|
||
// targetImageLayersLabel is a label which contains layer digests contained in | ||
// the target image. | ||
targetImageLayersLabel = "containerd.io/snapshot/remote/stargz.layers" | ||
|
||
// targetSessionLabel is a labeld which contains session IDs usable for | ||
// authenticating the target snapshot. | ||
targetSessionLabel = "containerd.io/snapshot/remote/stargz.session" | ||
) | ||
|
||
// sourceWithSession returns a callback which implements a converter from labels to the | ||
// typed snapshot source info. This callback is called everytime the snapshotter resolves a | ||
// snapshot. This callback returns configuration that is based on buildkitd's registry config | ||
// and utilizes the session-based authorizer. | ||
func sourceWithSession(hosts docker.RegistryHosts, sm *session.Manager) sgzsource.GetSources { | ||
return func(labels map[string]string) (src []sgzsource.Source, err error) { | ||
// labels contains multiple source candidates with unique IDs appended on each call | ||
// to the snapshotter API. So, first, get all these IDs | ||
var ids []string | ||
for k := range labels { | ||
if strings.HasPrefix(k, targetRefLabel+".") { | ||
ids = append(ids, strings.TrimPrefix(k, targetRefLabel+".")) | ||
} | ||
} | ||
|
||
// Parse all labels | ||
for _, id := range ids { | ||
// Parse session labels | ||
ref, ok := labels[targetRefLabel+"."+id] | ||
if !ok { | ||
continue | ||
} | ||
named, err := reference.Parse(ref) | ||
if err != nil { | ||
continue | ||
} | ||
var sids []string | ||
for i := 0; ; i++ { | ||
sidKey := targetSessionLabel + "." + fmt.Sprintf("%d", i) + "." + id | ||
sid, ok := labels[sidKey] | ||
if !ok { | ||
break | ||
} | ||
sids = append(sids, sid) | ||
} | ||
|
||
// Get source information based on labels and RegistryHosts containing | ||
// session-based authorizer. | ||
parse := sgzsource.FromDefaultLabels(func(ref reference.Spec) ([]docker.RegistryHost, error) { | ||
return resolver.DefaultPool.GetResolver(hosts, named.String(), "pull", sm, session.NewGroup(sids...)). | ||
HostsFunc(ref.Hostname()) | ||
}) | ||
if s, err := parse(map[string]string{ | ||
targetRefLabel: ref, | ||
targetDigestLabel: labels[targetDigestLabel+"."+id], | ||
targetImageLayersLabel: labels[targetImageLayersLabel+"."+id], | ||
}); err == nil { | ||
src = append(src, s...) | ||
} | ||
} | ||
|
||
return src, nil | ||
} | ||
} |
Oops, something went wrong.