2017-11-21 08:08:36 +00:00
|
|
|
package runcexecutor
|
2017-06-01 22:24:23 +00:00
|
|
|
|
|
|
|
import (
|
2018-01-16 22:30:10 +00:00
|
|
|
"context"
|
2017-06-01 22:24:23 +00:00
|
|
|
"encoding/json"
|
2017-06-02 00:30:02 +00:00
|
|
|
"io"
|
2018-05-30 02:49:43 +00:00
|
|
|
"io/ioutil"
|
2017-06-01 22:24:23 +00:00
|
|
|
"os"
|
2017-06-02 00:30:02 +00:00
|
|
|
"os/exec"
|
2017-06-01 22:24:23 +00:00
|
|
|
"path/filepath"
|
2018-05-30 02:49:43 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2017-06-01 22:24:23 +00:00
|
|
|
"syscall"
|
|
|
|
|
2018-03-22 12:53:05 +00:00
|
|
|
"github.com/containerd/containerd/contrib/seccomp"
|
2017-06-01 22:24:23 +00:00
|
|
|
"github.com/containerd/containerd/mount"
|
2017-12-11 21:17:07 +00:00
|
|
|
containerdoci "github.com/containerd/containerd/oci"
|
2018-02-09 19:39:48 +00:00
|
|
|
"github.com/containerd/continuity/fs"
|
2017-06-01 22:24:23 +00:00
|
|
|
runc "github.com/containerd/go-runc"
|
2017-06-22 20:15:46 +00:00
|
|
|
"github.com/moby/buildkit/cache"
|
2017-11-21 08:08:36 +00:00
|
|
|
"github.com/moby/buildkit/executor"
|
|
|
|
"github.com/moby/buildkit/executor/oci"
|
2017-10-03 23:13:35 +00:00
|
|
|
"github.com/moby/buildkit/identity"
|
2018-07-04 07:13:30 +00:00
|
|
|
rootlessspecconv "github.com/moby/buildkit/util/rootless/specconv"
|
2018-05-24 23:34:35 +00:00
|
|
|
"github.com/moby/buildkit/util/system"
|
2018-05-30 02:49:43 +00:00
|
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
2017-06-01 22:24:23 +00:00
|
|
|
"github.com/pkg/errors"
|
2017-07-19 01:05:19 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2017-06-01 22:24:23 +00:00
|
|
|
)
|
|
|
|
|
2018-04-17 23:37:45 +00:00
|
|
|
type Opt struct {
|
2018-05-30 02:49:43 +00:00
|
|
|
// root directory
|
2018-04-17 23:37:45 +00:00
|
|
|
Root string
|
|
|
|
CommandCandidates []string
|
2018-05-30 02:49:43 +00:00
|
|
|
// without root privileges (has nothing to do with Opt.Root directory)
|
|
|
|
Rootless bool
|
2018-04-17 23:37:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var defaultCommandCandidates = []string{"buildkit-runc", "runc"}
|
|
|
|
|
2017-11-21 08:08:36 +00:00
|
|
|
type runcExecutor struct {
|
2018-05-30 02:49:43 +00:00
|
|
|
runc *runc.Runc
|
|
|
|
root string
|
|
|
|
cmd string
|
|
|
|
rootless bool
|
2017-06-01 22:24:23 +00:00
|
|
|
}
|
|
|
|
|
2018-04-17 23:37:45 +00:00
|
|
|
func New(opt Opt) (executor.Executor, error) {
|
|
|
|
cmds := opt.CommandCandidates
|
|
|
|
if cmds == nil {
|
|
|
|
cmds = defaultCommandCandidates
|
2017-06-22 20:42:13 +00:00
|
|
|
}
|
|
|
|
|
2018-04-17 23:37:45 +00:00
|
|
|
var cmd string
|
|
|
|
var found bool
|
|
|
|
for _, cmd = range cmds {
|
|
|
|
if _, err := exec.LookPath(cmd); err == nil {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
return nil, errors.Errorf("failed to find %s binary", cmd)
|
|
|
|
}
|
|
|
|
|
|
|
|
root := opt.Root
|
|
|
|
|
2017-06-09 01:16:19 +00:00
|
|
|
if err := os.MkdirAll(root, 0700); err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "failed to create %s", root)
|
|
|
|
}
|
|
|
|
|
|
|
|
root, err := filepath.Abs(root)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-06-07 07:04:55 +00:00
|
|
|
root, err = filepath.EvalSymlinks(root)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-06-09 01:16:19 +00:00
|
|
|
|
2017-06-01 22:24:23 +00:00
|
|
|
runtime := &runc.Runc{
|
2018-04-19 00:01:20 +00:00
|
|
|
Command: cmd,
|
2017-06-01 22:24:23 +00:00
|
|
|
Log: filepath.Join(root, "runc-log.json"),
|
|
|
|
LogFormat: runc.JSON,
|
|
|
|
PdeathSignal: syscall.SIGKILL,
|
2017-07-03 04:21:40 +00:00
|
|
|
Setpgid: true,
|
2018-07-04 07:13:30 +00:00
|
|
|
// we don't execute runc with --rootless=(true|false) explicitly,
|
|
|
|
// so as to support non-runc runtimes
|
2017-06-01 22:24:23 +00:00
|
|
|
}
|
|
|
|
|
2017-11-21 08:08:36 +00:00
|
|
|
w := &runcExecutor{
|
2018-05-30 02:49:43 +00:00
|
|
|
runc: runtime,
|
|
|
|
root: root,
|
|
|
|
rootless: opt.Rootless,
|
2017-06-01 22:24:23 +00:00
|
|
|
}
|
|
|
|
return w, nil
|
|
|
|
}
|
|
|
|
|
2017-11-21 08:08:36 +00:00
|
|
|
func (w *runcExecutor) Exec(ctx context.Context, meta executor.Meta, root cache.Mountable, mounts []executor.Mount, stdin io.ReadCloser, stdout, stderr io.WriteCloser) error {
|
2017-08-08 01:45:31 +00:00
|
|
|
|
2017-12-11 02:18:18 +00:00
|
|
|
resolvConf, err := oci.GetResolvConf(ctx, w.root)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
hostsFile, err := oci.GetHostsFile(ctx, w.root)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-04-16 22:23:10 +00:00
|
|
|
mountable, err := root.Mount(ctx, false)
|
2017-06-01 22:24:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-04-16 22:23:10 +00:00
|
|
|
rootMount, err := mountable.Mount()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer mountable.Release()
|
|
|
|
|
2017-10-03 23:13:35 +00:00
|
|
|
id := identity.NewID()
|
2017-06-01 22:24:23 +00:00
|
|
|
bundle := filepath.Join(w.root, id)
|
2017-06-09 01:16:19 +00:00
|
|
|
|
2017-06-01 22:24:23 +00:00
|
|
|
if err := os.Mkdir(bundle, 0700); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(bundle)
|
|
|
|
rootFSPath := filepath.Join(bundle, "rootfs")
|
|
|
|
if err := os.Mkdir(rootFSPath, 0700); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-12-11 21:17:07 +00:00
|
|
|
if err := mount.All(rootMount, rootFSPath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer mount.Unmount(rootFSPath, 0)
|
|
|
|
|
2018-06-29 23:00:24 +00:00
|
|
|
uid, gid, sgids, err := oci.GetUser(ctx, rootFSPath, meta.User)
|
2017-12-11 21:17:07 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-06-01 22:24:23 +00:00
|
|
|
f, err := os.Create(filepath.Join(bundle, "config.json"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
2018-06-29 23:00:24 +00:00
|
|
|
opts := []containerdoci.SpecOpts{oci.WithUIDGID(uid, gid, sgids)}
|
2018-05-24 23:34:35 +00:00
|
|
|
if system.SeccompSupported() {
|
|
|
|
opts = append(opts, seccomp.WithDefaultProfile())
|
|
|
|
}
|
2018-03-26 13:51:08 +00:00
|
|
|
if meta.ReadonlyRootFS {
|
|
|
|
opts = append(opts, containerdoci.WithRootFSReadonly())
|
|
|
|
}
|
|
|
|
spec, cleanup, err := oci.GenerateSpec(ctx, meta, mounts, id, resolvConf, hostsFile, opts...)
|
2017-06-01 22:24:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-08-08 01:45:31 +00:00
|
|
|
defer cleanup()
|
2017-06-01 22:24:23 +00:00
|
|
|
|
|
|
|
spec.Root.Path = rootFSPath
|
2017-07-07 21:35:10 +00:00
|
|
|
if _, ok := root.(cache.ImmutableRef); ok { // TODO: pass in with mount, not ref type
|
2017-06-01 22:24:23 +00:00
|
|
|
spec.Root.Readonly = true
|
|
|
|
}
|
|
|
|
|
2017-12-17 23:45:12 +00:00
|
|
|
newp, err := fs.RootPath(rootFSPath, meta.Cwd)
|
2017-07-07 21:35:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return errors.Wrapf(err, "working dir %s points to invalid target", newp)
|
|
|
|
}
|
2018-07-23 09:21:03 +00:00
|
|
|
if err := os.MkdirAll(newp, 0755); err != nil {
|
2017-07-07 21:35:10 +00:00
|
|
|
return errors.Wrapf(err, "failed to create working directory %s", newp)
|
|
|
|
}
|
|
|
|
|
2018-07-04 07:13:30 +00:00
|
|
|
if err := setOOMScoreAdj(spec); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-05-30 02:49:43 +00:00
|
|
|
if w.rootless {
|
2018-07-04 07:13:30 +00:00
|
|
|
if err := rootlessspecconv.ToRootless(spec); err != nil {
|
2018-05-30 02:49:43 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-01 22:24:23 +00:00
|
|
|
if err := json.NewEncoder(f).Encode(spec); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-06-09 01:16:19 +00:00
|
|
|
logrus.Debugf("> running %s %v", id, meta.Args)
|
|
|
|
|
2017-06-01 22:24:23 +00:00
|
|
|
status, err := w.runc.Run(ctx, id, bundle, &runc.CreateOpts{
|
2017-10-01 00:58:07 +00:00
|
|
|
IO: &forwardIO{stdin: stdin, stdout: stdout, stderr: stderr},
|
2017-06-01 22:24:23 +00:00
|
|
|
})
|
2017-06-09 01:16:19 +00:00
|
|
|
logrus.Debugf("< completed %s %v %v", id, status, err)
|
2017-06-01 22:24:23 +00:00
|
|
|
if status != 0 {
|
2017-06-29 22:31:08 +00:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
// runc can't report context.Cancelled directly
|
|
|
|
return errors.Wrapf(ctx.Err(), "exit code %d", status)
|
|
|
|
default:
|
|
|
|
}
|
2017-06-01 22:24:23 +00:00
|
|
|
return errors.Errorf("exit code %d", status)
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-06-02 00:30:02 +00:00
|
|
|
type forwardIO struct {
|
2017-10-01 00:58:07 +00:00
|
|
|
stdin io.ReadCloser
|
2017-06-02 00:30:02 +00:00
|
|
|
stdout, stderr io.WriteCloser
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *forwardIO) Close() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *forwardIO) Set(cmd *exec.Cmd) {
|
2017-10-01 00:58:07 +00:00
|
|
|
cmd.Stdin = s.stdin
|
2017-06-02 00:30:02 +00:00
|
|
|
cmd.Stdout = s.stdout
|
|
|
|
cmd.Stderr = s.stderr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *forwardIO) Stdin() io.WriteCloser {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *forwardIO) Stdout() io.ReadCloser {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *forwardIO) Stderr() io.ReadCloser {
|
|
|
|
return nil
|
|
|
|
}
|
2018-05-30 02:49:43 +00:00
|
|
|
|
|
|
|
// setOOMScoreAdj comes from https://github.com/genuinetools/img/blob/2fabe60b7dc4623aa392b515e013bbc69ad510ab/executor/runc/executor.go#L182-L192
|
|
|
|
func setOOMScoreAdj(spec *specs.Spec) error {
|
|
|
|
// Set the oom_score_adj of our children containers to that of the current process.
|
|
|
|
b, err := ioutil.ReadFile("/proc/self/oom_score_adj")
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "failed to read /proc/self/oom_score_adj")
|
|
|
|
}
|
|
|
|
s := strings.TrimSpace(string(b))
|
|
|
|
oom, err := strconv.Atoi(s)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrapf(err, "failed to parse %s as int", s)
|
|
|
|
}
|
|
|
|
spec.Process.OOMScoreAdj = &oom
|
|
|
|
return nil
|
|
|
|
}
|