1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
13 "golang.org/x/net/context"
16 type singularityExecutor struct {
17 logf func(string, ...interface{})
21 imageFilename string // "sif" image
24 func newSingularityExecutor(logf func(string, ...interface{})) (*singularityExecutor, error) {
25 tmpdir, err := ioutil.TempDir("", "crunch-run-singularity-")
29 return &singularityExecutor{
35 func (e *singularityExecutor) ImageLoaded(string) bool {
39 // LoadImage will satisfy ContainerExecuter interface transforming
40 // containerImage into a sif file for later use.
41 func (e *singularityExecutor) LoadImage(imageTarballPath string) error {
42 e.logf("building singularity image")
43 // "singularity build" does not accept a
44 // docker-archive://... filename containing a ":" character,
45 // as in "/path/to/sha256:abcd...1234.tar". Workaround: make a
46 // symlink that doesn't have ":" chars.
47 err := os.Symlink(imageTarballPath, e.tmpdir+"/image.tar")
51 e.imageFilename = e.tmpdir + "/image.sif"
52 build := exec.Command("singularity", "build", e.imageFilename, "docker-archive://"+e.tmpdir+"/image.tar")
53 e.logf("%v", build.Args)
54 out, err := build.CombinedOutput()
55 // INFO: Starting build...
56 // Getting image source signatures
57 // Copying blob ab15617702de done
58 // Copying config 651e02b8a2 done
59 // Writing manifest to image destination
61 // 2021/04/22 14:42:14 info unpack layer: sha256:21cbfd3a344c52b197b9fa36091e66d9cbe52232703ff78d44734f85abb7ccd3
62 // INFO: Creating SIF file...
63 // INFO: Build complete: arvados-jobs.latest.sif
71 func (e *singularityExecutor) Create(spec containerSpec) error {
76 func (e *singularityExecutor) Start() error {
77 args := []string{"singularity", "exec", "--containall", "--no-home", "--cleanenv"}
78 if !e.spec.EnableNetwork {
79 args = append(args, "--net", "--network=none")
81 readonlyflag := map[bool]string{
85 for path, mount := range e.spec.BindMounts {
86 args = append(args, "--bind", mount.HostPath+":"+path+":"+readonlyflag[mount.ReadOnly])
88 args = append(args, e.imageFilename)
89 args = append(args, e.spec.Command...)
91 // This is for singularity 3.5.2. There are some behaviors
92 // that will change in singularity 3.6, please see:
93 // https://sylabs.io/guides/3.7/user-guide/environment_and_metadata.html
94 // https://sylabs.io/guides/3.5/user-guide/environment_and_metadata.html
95 env := make([]string, 0, len(e.spec.Env))
96 for k, v := range e.spec.Env {
97 env = append(env, "SINGULARITYENV_"+k+"="+v)
100 path, err := exec.LookPath(args[0])
109 Stdout: e.spec.Stdout,
110 Stderr: e.spec.Stderr,
120 func (e *singularityExecutor) CgroupID() string {
124 func (e *singularityExecutor) Stop() error {
125 if err := e.child.Process.Signal(syscall.Signal(0)); err != nil {
126 // process already exited
129 return e.child.Process.Signal(syscall.SIGKILL)
132 func (e *singularityExecutor) Wait(context.Context) (int, error) {
133 err := e.child.Wait()
134 if err, ok := err.(*exec.ExitError); ok {
135 return err.ProcessState.ExitCode(), nil
140 return e.child.ProcessState.ExitCode(), nil
143 func (e *singularityExecutor) Close() {
144 err := os.RemoveAll(e.tmpdir)
146 e.logf("error removing temp dir: %s", err)