-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee8af2d
commit 2caf1b1
Showing
13 changed files
with
663 additions
and
552 deletions.
There are no files selected for viewing
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,154 @@ | ||
package oci | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"os" | ||
"strings" | ||
"sync" | ||
|
||
"github.com/containerd/containerd/containers" | ||
"github.com/containerd/containerd/oci" | ||
cdseccomp "github.com/containerd/containerd/pkg/seccomp" | ||
"github.com/docker/docker/pkg/idtools" | ||
"github.com/docker/docker/profiles/seccomp" | ||
"github.com/moby/buildkit/solver/pb" | ||
"github.com/moby/buildkit/util/entitlements/security" | ||
specs "github.com/opencontainers/runtime-spec/specs-go" | ||
selinux "github.com/opencontainers/selinux/go-selinux" | ||
"github.com/opencontainers/selinux/go-selinux/label" | ||
"github.com/pkg/errors" | ||
) | ||
|
||
var ( | ||
cgroupNSOnce sync.Once | ||
supportsCgroupNS bool | ||
) | ||
|
||
const ( | ||
tracingSocketPath = "/dev/otel-grpc.sock" | ||
) | ||
|
||
func generateMountOpts(resolvConf, hostsFile string) ([]oci.SpecOpts, error) { | ||
return []oci.SpecOpts{ | ||
// https://github.com/moby/buildkit/issues/429 | ||
withRemovedMount("/run"), | ||
withROBind(resolvConf, "/etc/resolv.conf"), | ||
withROBind(hostsFile, "/etc/hosts"), | ||
withCGroup(), | ||
}, nil | ||
} | ||
|
||
// generateSecurityOpts may affect mounts, so must be called after generateMountOpts | ||
func generateSecurityOpts(mode pb.SecurityMode, apparmorProfile string, selinuxB bool) (opts []oci.SpecOpts, _ error) { | ||
if selinuxB && !selinux.GetEnabled() { | ||
return nil, errors.New("selinux is not available") | ||
} | ||
switch mode { | ||
case pb.SecurityMode_INSECURE: | ||
return []oci.SpecOpts{ | ||
security.WithInsecureSpec(), | ||
oci.WithWriteableCgroupfs, | ||
oci.WithWriteableSysfs, | ||
func(_ context.Context, _ oci.Client, _ *containers.Container, s *oci.Spec) error { | ||
var err error | ||
if selinuxB { | ||
s.Process.SelinuxLabel, s.Linux.MountLabel, err = label.InitLabels([]string{"disable"}) | ||
} | ||
return err | ||
}, | ||
}, nil | ||
case pb.SecurityMode_SANDBOX: | ||
if cdseccomp.IsEnabled() { | ||
opts = append(opts, withDefaultProfile()) | ||
} | ||
if apparmorProfile != "" { | ||
opts = append(opts, oci.WithApparmorProfile(apparmorProfile)) | ||
} | ||
opts = append(opts, func(_ context.Context, _ oci.Client, _ *containers.Container, s *oci.Spec) error { | ||
var err error | ||
if selinuxB { | ||
s.Process.SelinuxLabel, s.Linux.MountLabel, err = label.InitLabels(nil) | ||
} | ||
return err | ||
}) | ||
return opts, nil | ||
} | ||
return nil, nil | ||
} | ||
|
||
// generateProcessModeOpts may affect mounts, so must be called after generateMountOpts | ||
func generateProcessModeOpts(mode ProcessMode) ([]oci.SpecOpts, error) { | ||
if mode == NoProcessSandbox { | ||
return []oci.SpecOpts{ | ||
oci.WithHostNamespace(specs.PIDNamespace), | ||
withBoundProc(), | ||
}, nil | ||
// TODO(AkihiroSuda): Configure seccomp to disable ptrace (and prctl?) explicitly | ||
} | ||
return nil, nil | ||
} | ||
|
||
func generateIDmapOpts(idmap *idtools.IdentityMapping) ([]oci.SpecOpts, error) { | ||
if idmap == nil { | ||
return nil, nil | ||
} | ||
return []oci.SpecOpts{ | ||
oci.WithUserNamespace(specMapping(idmap.UIDMaps), specMapping(idmap.GIDMaps)), | ||
}, nil | ||
} | ||
|
||
func generateRlimitOpts(ulimits []*pb.Ulimit) ([]oci.SpecOpts, error) { | ||
if len(ulimits) == 0 { | ||
return nil, nil | ||
} | ||
var rlimits []specs.POSIXRlimit | ||
for _, u := range ulimits { | ||
if u == nil { | ||
continue | ||
} | ||
rlimits = append(rlimits, specs.POSIXRlimit{ | ||
Type: fmt.Sprintf("RLIMIT_%s", strings.ToUpper(u.Name)), | ||
Hard: uint64(u.Hard), | ||
Soft: uint64(u.Soft), | ||
}) | ||
} | ||
return []oci.SpecOpts{ | ||
func(_ context.Context, _ oci.Client, _ *containers.Container, s *specs.Spec) error { | ||
s.Process.Rlimits = rlimits | ||
return nil | ||
}, | ||
}, nil | ||
} | ||
|
||
// withDefaultProfile sets the default seccomp profile to the spec. | ||
// Note: must follow the setting of process capabilities | ||
func withDefaultProfile() oci.SpecOpts { | ||
return func(_ context.Context, _ oci.Client, _ *containers.Container, s *specs.Spec) error { | ||
var err error | ||
s.Linux.Seccomp, err = seccomp.GetDefaultProfile(s) | ||
return err | ||
} | ||
} | ||
|
||
func getTracingSocketMount(socket string) specs.Mount { | ||
return specs.Mount{ | ||
Destination: tracingSocketPath, | ||
Type: "bind", | ||
Source: socket, | ||
Options: []string{"ro", "rbind"}, | ||
} | ||
} | ||
|
||
func getTracingSocket() string { | ||
return fmt.Sprintf("unix://%s", tracingSocketPath) | ||
} | ||
|
||
func cgroupNamespaceSupported() bool { | ||
cgroupNSOnce.Do(func() { | ||
if _, err := os.Stat("/proc/self/ns/cgroup"); !os.IsNotExist(err) { | ||
supportsCgroupNS = true | ||
} | ||
}) | ||
return supportsCgroupNS | ||
} |
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
Oops, something went wrong.