1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
30 "git.arvados.org/arvados.git/lib/cmd"
31 "git.arvados.org/arvados.git/lib/crunchstat"
32 "git.arvados.org/arvados.git/sdk/go/arvados"
33 "git.arvados.org/arvados.git/sdk/go/arvadosclient"
34 "git.arvados.org/arvados.git/sdk/go/keepclient"
35 "git.arvados.org/arvados.git/sdk/go/manifest"
36 "golang.org/x/net/context"
41 var Command = command{}
43 // IArvadosClient is the minimal Arvados API methods used by crunch-run.
44 type IArvadosClient interface {
45 Create(resourceType string, parameters arvadosclient.Dict, output interface{}) error
46 Get(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error
47 Update(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error
48 Call(method, resourceType, uuid, action string, parameters arvadosclient.Dict, output interface{}) error
49 CallRaw(method string, resourceType string, uuid string, action string, parameters arvadosclient.Dict) (reader io.ReadCloser, err error)
50 Discovery(key string) (interface{}, error)
53 // ErrCancelled is the error returned when the container is cancelled.
54 var ErrCancelled = errors.New("Cancelled")
56 // IKeepClient is the minimal Keep API methods used by crunch-run.
57 type IKeepClient interface {
58 BlockWrite(context.Context, arvados.BlockWriteOptions) (arvados.BlockWriteResponse, error)
59 ReadAt(locator string, p []byte, off int) (int, error)
60 ManifestFileReader(m manifest.Manifest, filename string) (arvados.File, error)
61 LocalLocator(locator string) (string, error)
63 SetStorageClasses(sc []string)
66 // NewLogWriter is a factory function to create a new log writer.
67 type NewLogWriter func(name string) (io.WriteCloser, error)
69 type RunArvMount func(args []string, tok string) (*exec.Cmd, error)
71 type MkTempDir func(string, string) (string, error)
73 type PsProcess interface {
74 CmdlineSlice() ([]string, error)
77 // ContainerRunner is the main stateful struct used for a single execution of a
79 type ContainerRunner struct {
80 executor containerExecutor
81 executorStdin io.Closer
82 executorStdout io.Closer
83 executorStderr io.Closer
85 // Dispatcher client is initialized with the Dispatcher token.
86 // This is a privileged token used to manage container status
89 // We have both dispatcherClient and DispatcherArvClient
90 // because there are two different incompatible Arvados Go
91 // SDKs and we have to use both (hopefully this gets fixed in
93 dispatcherClient *arvados.Client
94 DispatcherArvClient IArvadosClient
95 DispatcherKeepClient IKeepClient
97 // Container client is initialized with the Container token
98 // This token controls the permissions of the container, and
99 // must be used for operations such as reading collections.
101 // Same comment as above applies to
102 // containerClient/ContainerArvClient.
103 containerClient *arvados.Client
104 ContainerArvClient IArvadosClient
105 ContainerKeepClient IKeepClient
107 Container arvados.Container
110 NewLogWriter NewLogWriter
111 CrunchLog *ThrottledLogger
114 LogCollection arvados.CollectionFileSystem
116 RunArvMount RunArvMount
121 Volumes map[string]struct{}
123 SigChan chan os.Signal
124 ArvMountExit chan error
125 SecretMounts map[string]arvados.Mount
126 MkArvClient func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error)
130 statLogger io.WriteCloser
131 statReporter *crunchstat.Reporter
132 hoststatLogger io.WriteCloser
133 hoststatReporter *crunchstat.Reporter
134 statInterval time.Duration
136 // What we expect the container's cgroup parent to be.
137 expectCgroupParent string
138 // What we tell docker to use as the container's cgroup
139 // parent. Note: Ideally we would use the same field for both
140 // expectCgroupParent and setCgroupParent, and just make it
141 // default to "docker". However, when using docker < 1.10 with
142 // systemd, specifying a non-empty cgroup parent (even the
143 // default value "docker") hits a docker bug
144 // (https://github.com/docker/docker/issues/17126). Using two
145 // separate fields makes it possible to use the "expect cgroup
146 // parent to be X" feature even on sites where the "specify
147 // cgroup parent" feature breaks.
148 setCgroupParent string
150 cStateLock sync.Mutex
151 cCancelled bool // StopContainer() invoked
153 enableMemoryLimit bool
154 enableNetwork string // one of "default" or "always"
155 networkMode string // "none", "host", or "" -- passed through to executor
156 arvMountLog *ThrottledLogger
158 containerWatchdogInterval time.Duration
163 // setupSignals sets up signal handling to gracefully terminate the
164 // underlying container and update state when receiving a TERM, INT or
166 func (runner *ContainerRunner) setupSignals() {
167 runner.SigChan = make(chan os.Signal, 1)
168 signal.Notify(runner.SigChan, syscall.SIGTERM)
169 signal.Notify(runner.SigChan, syscall.SIGINT)
170 signal.Notify(runner.SigChan, syscall.SIGQUIT)
172 go func(sig chan os.Signal) {
179 // stop the underlying container.
180 func (runner *ContainerRunner) stop(sig os.Signal) {
181 runner.cStateLock.Lock()
182 defer runner.cStateLock.Unlock()
184 runner.CrunchLog.Printf("caught signal: %v", sig)
186 runner.cCancelled = true
187 runner.CrunchLog.Printf("stopping container")
188 err := runner.executor.Stop()
190 runner.CrunchLog.Printf("error stopping container: %s", err)
194 var errorBlacklist = []string{
195 "(?ms).*[Cc]annot connect to the Docker daemon.*",
196 "(?ms).*oci runtime error.*starting container process.*container init.*mounting.*to rootfs.*no such file or directory.*",
197 "(?ms).*grpc: the connection is unavailable.*",
199 var brokenNodeHook *string = flag.String("broken-node-hook", "", "Script to run if node is detected to be broken (for example, Docker daemon is not running)")
201 func (runner *ContainerRunner) runBrokenNodeHook() {
202 if *brokenNodeHook == "" {
203 path := filepath.Join(lockdir, brokenfile)
204 runner.CrunchLog.Printf("Writing %s to mark node as broken", path)
205 f, err := os.OpenFile(path, os.O_CREATE|os.O_RDWR, 0700)
207 runner.CrunchLog.Printf("Error writing %s: %s", path, err)
212 runner.CrunchLog.Printf("Running broken node hook %q", *brokenNodeHook)
214 c := exec.Command(*brokenNodeHook)
215 c.Stdout = runner.CrunchLog
216 c.Stderr = runner.CrunchLog
219 runner.CrunchLog.Printf("Error running broken node hook: %v", err)
224 func (runner *ContainerRunner) checkBrokenNode(goterr error) bool {
225 for _, d := range errorBlacklist {
226 if m, e := regexp.MatchString(d, goterr.Error()); m && e == nil {
227 runner.CrunchLog.Printf("Error suggests node is unable to run containers: %v", goterr)
228 runner.runBrokenNodeHook()
235 // LoadImage determines the docker image id from the container record and
236 // checks if it is available in the local Docker image store. If not, it loads
237 // the image from Keep.
238 func (runner *ContainerRunner) LoadImage() (string, error) {
239 runner.CrunchLog.Printf("Fetching Docker image from collection '%s'", runner.Container.ContainerImage)
241 d, err := os.Open(runner.ArvMountPoint + "/by_id/" + runner.Container.ContainerImage)
246 allfiles, err := d.Readdirnames(-1)
250 var tarfiles []string
251 for _, fnm := range allfiles {
252 if strings.HasSuffix(fnm, ".tar") {
253 tarfiles = append(tarfiles, fnm)
256 if len(tarfiles) == 0 {
257 return "", fmt.Errorf("image collection does not include a .tar image file")
259 if len(tarfiles) > 1 {
260 return "", fmt.Errorf("cannot choose from multiple tar files in image collection: %v", tarfiles)
262 imageID := tarfiles[0][:len(tarfiles[0])-4]
263 imageTarballPath := runner.ArvMountPoint + "/by_id/" + runner.Container.ContainerImage + "/" + imageID + ".tar"
264 runner.CrunchLog.Printf("Using Docker image id %q", imageID)
266 runner.CrunchLog.Print("Loading Docker image from keep")
267 err = runner.executor.LoadImage(imageID, imageTarballPath, runner.Container, runner.ArvMountPoint,
268 runner.containerClient)
276 func (runner *ContainerRunner) ArvMountCmd(arvMountCmd []string, token string) (c *exec.Cmd, err error) {
277 c = exec.Command("arv-mount", arvMountCmd...)
279 // Copy our environment, but override ARVADOS_API_TOKEN with
280 // the container auth token.
282 for _, s := range os.Environ() {
283 if !strings.HasPrefix(s, "ARVADOS_API_TOKEN=") {
284 c.Env = append(c.Env, s)
287 c.Env = append(c.Env, "ARVADOS_API_TOKEN="+token)
289 w, err := runner.NewLogWriter("arv-mount")
293 runner.arvMountLog = NewThrottledLogger(w)
294 c.Stdout = runner.arvMountLog
295 c.Stderr = io.MultiWriter(runner.arvMountLog, os.Stderr)
297 runner.CrunchLog.Printf("Running %v", c.Args)
304 statReadme := make(chan bool)
305 runner.ArvMountExit = make(chan error)
310 time.Sleep(100 * time.Millisecond)
311 _, err = os.Stat(fmt.Sprintf("%s/by_id/README", runner.ArvMountPoint))
323 runner.CrunchLog.Printf("Arv-mount exit error: %v", mnterr)
325 runner.ArvMountExit <- mnterr
326 close(runner.ArvMountExit)
332 case err := <-runner.ArvMountExit:
333 runner.ArvMount = nil
341 func (runner *ContainerRunner) SetupArvMountPoint(prefix string) (err error) {
342 if runner.ArvMountPoint == "" {
343 runner.ArvMountPoint, err = runner.MkTempDir(runner.parentTemp, prefix)
348 func copyfile(src string, dst string) (err error) {
349 srcfile, err := os.Open(src)
354 os.MkdirAll(path.Dir(dst), 0777)
356 dstfile, err := os.Create(dst)
360 _, err = io.Copy(dstfile, srcfile)
365 err = srcfile.Close()
366 err2 := dstfile.Close()
379 func (runner *ContainerRunner) SetupMounts() (map[string]bindmount, error) {
380 bindmounts := map[string]bindmount{}
381 err := runner.SetupArvMountPoint("keep")
383 return nil, fmt.Errorf("While creating keep mount temp dir: %v", err)
386 token, err := runner.ContainerToken()
388 return nil, fmt.Errorf("could not get container token: %s", err)
390 runner.CrunchLog.Printf("container token %q", token)
394 arvMountCmd := []string{
398 "--storage-classes", strings.Join(runner.Container.OutputStorageClasses, ","),
399 fmt.Sprintf("--crunchstat-interval=%v", runner.statInterval.Seconds())}
401 if runner.Container.RuntimeConstraints.KeepCacheRAM > 0 {
402 arvMountCmd = append(arvMountCmd, "--file-cache", fmt.Sprintf("%d", runner.Container.RuntimeConstraints.KeepCacheRAM))
405 collectionPaths := []string{}
406 needCertMount := true
407 type copyFile struct {
411 var copyFiles []copyFile
414 for bind := range runner.Container.Mounts {
415 binds = append(binds, bind)
417 for bind := range runner.SecretMounts {
418 if _, ok := runner.Container.Mounts[bind]; ok {
419 return nil, fmt.Errorf("secret mount %q conflicts with regular mount", bind)
421 if runner.SecretMounts[bind].Kind != "json" &&
422 runner.SecretMounts[bind].Kind != "text" {
423 return nil, fmt.Errorf("secret mount %q type is %q but only 'json' and 'text' are permitted",
424 bind, runner.SecretMounts[bind].Kind)
426 binds = append(binds, bind)
430 for _, bind := range binds {
431 mnt, ok := runner.Container.Mounts[bind]
433 mnt = runner.SecretMounts[bind]
435 if bind == "stdout" || bind == "stderr" {
436 // Is it a "file" mount kind?
437 if mnt.Kind != "file" {
438 return nil, fmt.Errorf("unsupported mount kind '%s' for %s: only 'file' is supported", mnt.Kind, bind)
441 // Does path start with OutputPath?
442 prefix := runner.Container.OutputPath
443 if !strings.HasSuffix(prefix, "/") {
446 if !strings.HasPrefix(mnt.Path, prefix) {
447 return nil, fmt.Errorf("%s path does not start with OutputPath: %s, %s", strings.Title(bind), mnt.Path, prefix)
452 // Is it a "collection" mount kind?
453 if mnt.Kind != "collection" && mnt.Kind != "json" {
454 return nil, fmt.Errorf("unsupported mount kind '%s' for stdin: only 'collection' and 'json' are supported", mnt.Kind)
458 if bind == "/etc/arvados/ca-certificates.crt" {
459 needCertMount = false
462 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") && bind != runner.Container.OutputPath+"/" {
463 if mnt.Kind != "collection" && mnt.Kind != "text" && mnt.Kind != "json" {
464 return nil, fmt.Errorf("only mount points of kind 'collection', 'text' or 'json' are supported underneath the output_path for %q, was %q", bind, mnt.Kind)
469 case mnt.Kind == "collection" && bind != "stdin":
471 if mnt.UUID != "" && mnt.PortableDataHash != "" {
472 return nil, fmt.Errorf("cannot specify both 'uuid' and 'portable_data_hash' for a collection mount")
476 return nil, fmt.Errorf("writing to existing collections currently not permitted")
479 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.UUID)
480 } else if mnt.PortableDataHash != "" {
481 if mnt.Writable && !strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
482 return nil, fmt.Errorf("can never write to a collection specified by portable data hash")
484 idx := strings.Index(mnt.PortableDataHash, "/")
486 mnt.Path = path.Clean(mnt.PortableDataHash[idx:])
487 mnt.PortableDataHash = mnt.PortableDataHash[0:idx]
488 runner.Container.Mounts[bind] = mnt
490 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.PortableDataHash)
491 if mnt.Path != "" && mnt.Path != "." {
492 if strings.HasPrefix(mnt.Path, "./") {
493 mnt.Path = mnt.Path[2:]
494 } else if strings.HasPrefix(mnt.Path, "/") {
495 mnt.Path = mnt.Path[1:]
497 src += "/" + mnt.Path
500 src = fmt.Sprintf("%s/tmp%d", runner.ArvMountPoint, tmpcount)
501 arvMountCmd = append(arvMountCmd, "--mount-tmp")
502 arvMountCmd = append(arvMountCmd, fmt.Sprintf("tmp%d", tmpcount))
506 if bind == runner.Container.OutputPath {
507 runner.HostOutputDir = src
508 bindmounts[bind] = bindmount{HostPath: src}
509 } else if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
510 copyFiles = append(copyFiles, copyFile{src, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
512 bindmounts[bind] = bindmount{HostPath: src}
515 bindmounts[bind] = bindmount{HostPath: src, ReadOnly: true}
517 collectionPaths = append(collectionPaths, src)
519 case mnt.Kind == "tmp":
521 tmpdir, err = runner.MkTempDir(runner.parentTemp, "tmp")
523 return nil, fmt.Errorf("while creating mount temp dir: %v", err)
525 st, staterr := os.Stat(tmpdir)
527 return nil, fmt.Errorf("while Stat on temp dir: %v", staterr)
529 err = os.Chmod(tmpdir, st.Mode()|os.ModeSetgid|0777)
531 return nil, fmt.Errorf("while Chmod temp dir: %v", err)
533 bindmounts[bind] = bindmount{HostPath: tmpdir}
534 if bind == runner.Container.OutputPath {
535 runner.HostOutputDir = tmpdir
538 case mnt.Kind == "json" || mnt.Kind == "text":
540 if mnt.Kind == "json" {
541 filedata, err = json.Marshal(mnt.Content)
543 return nil, fmt.Errorf("encoding json data: %v", err)
546 text, ok := mnt.Content.(string)
548 return nil, fmt.Errorf("content for mount %q must be a string", bind)
550 filedata = []byte(text)
553 tmpdir, err := runner.MkTempDir(runner.parentTemp, mnt.Kind)
555 return nil, fmt.Errorf("creating temp dir: %v", err)
557 tmpfn := filepath.Join(tmpdir, "mountdata."+mnt.Kind)
558 err = ioutil.WriteFile(tmpfn, filedata, 0444)
560 return nil, fmt.Errorf("writing temp file: %v", err)
562 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
563 copyFiles = append(copyFiles, copyFile{tmpfn, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
565 bindmounts[bind] = bindmount{HostPath: tmpfn, ReadOnly: true}
568 case mnt.Kind == "git_tree":
569 tmpdir, err := runner.MkTempDir(runner.parentTemp, "git_tree")
571 return nil, fmt.Errorf("creating temp dir: %v", err)
573 err = gitMount(mnt).extractTree(runner.ContainerArvClient, tmpdir, token)
577 bindmounts[bind] = bindmount{HostPath: tmpdir, ReadOnly: true}
581 if runner.HostOutputDir == "" {
582 return nil, fmt.Errorf("output path does not correspond to a writable mount point")
585 if needCertMount && runner.Container.RuntimeConstraints.API {
586 for _, certfile := range arvadosclient.CertFiles {
587 _, err := os.Stat(certfile)
589 bindmounts["/etc/arvados/ca-certificates.crt"] = bindmount{HostPath: certfile, ReadOnly: true}
596 arvMountCmd = append(arvMountCmd, "--mount-by-pdh", "by_id")
598 arvMountCmd = append(arvMountCmd, "--mount-by-id", "by_id")
600 arvMountCmd = append(arvMountCmd, "--mount-by-id", "by_uuid")
601 arvMountCmd = append(arvMountCmd, runner.ArvMountPoint)
603 runner.ArvMount, err = runner.RunArvMount(arvMountCmd, token)
605 return nil, fmt.Errorf("while trying to start arv-mount: %v", err)
608 for _, p := range collectionPaths {
611 return nil, fmt.Errorf("while checking that input files exist: %v", err)
615 for _, cp := range copyFiles {
616 st, err := os.Stat(cp.src)
618 return nil, fmt.Errorf("while staging writable file from %q to %q: %v", cp.src, cp.bind, err)
621 err = filepath.Walk(cp.src, func(walkpath string, walkinfo os.FileInfo, walkerr error) error {
625 target := path.Join(cp.bind, walkpath[len(cp.src):])
626 if walkinfo.Mode().IsRegular() {
627 copyerr := copyfile(walkpath, target)
631 return os.Chmod(target, walkinfo.Mode()|0777)
632 } else if walkinfo.Mode().IsDir() {
633 mkerr := os.MkdirAll(target, 0777)
637 return os.Chmod(target, walkinfo.Mode()|os.ModeSetgid|0777)
639 return fmt.Errorf("source %q is not a regular file or directory", cp.src)
642 } else if st.Mode().IsRegular() {
643 err = copyfile(cp.src, cp.bind)
645 err = os.Chmod(cp.bind, st.Mode()|0777)
649 return nil, fmt.Errorf("while staging writable file from %q to %q: %v", cp.src, cp.bind, err)
653 return bindmounts, nil
656 func (runner *ContainerRunner) stopHoststat() error {
657 if runner.hoststatReporter == nil {
660 runner.hoststatReporter.Stop()
661 err := runner.hoststatLogger.Close()
663 return fmt.Errorf("error closing hoststat logs: %v", err)
668 func (runner *ContainerRunner) startHoststat() error {
669 w, err := runner.NewLogWriter("hoststat")
673 runner.hoststatLogger = NewThrottledLogger(w)
674 runner.hoststatReporter = &crunchstat.Reporter{
675 Logger: log.New(runner.hoststatLogger, "", 0),
676 CgroupRoot: runner.cgroupRoot,
677 PollPeriod: runner.statInterval,
679 runner.hoststatReporter.Start()
683 func (runner *ContainerRunner) startCrunchstat() error {
684 w, err := runner.NewLogWriter("crunchstat")
688 runner.statLogger = NewThrottledLogger(w)
689 runner.statReporter = &crunchstat.Reporter{
690 CID: runner.executor.CgroupID(),
691 Logger: log.New(runner.statLogger, "", 0),
692 CgroupParent: runner.expectCgroupParent,
693 CgroupRoot: runner.cgroupRoot,
694 PollPeriod: runner.statInterval,
695 TempDir: runner.parentTemp,
697 runner.statReporter.Start()
701 type infoCommand struct {
706 // LogHostInfo logs info about the current host, for debugging and
707 // accounting purposes. Although it's logged as "node-info", this is
708 // about the environment where crunch-run is actually running, which
709 // might differ from what's described in the node record (see
711 func (runner *ContainerRunner) LogHostInfo() (err error) {
712 w, err := runner.NewLogWriter("node-info")
717 commands := []infoCommand{
719 label: "Host Information",
720 cmd: []string{"uname", "-a"},
723 label: "CPU Information",
724 cmd: []string{"cat", "/proc/cpuinfo"},
727 label: "Memory Information",
728 cmd: []string{"cat", "/proc/meminfo"},
732 cmd: []string{"df", "-m", "/", os.TempDir()},
735 label: "Disk INodes",
736 cmd: []string{"df", "-i", "/", os.TempDir()},
740 // Run commands with informational output to be logged.
741 for _, command := range commands {
742 fmt.Fprintln(w, command.label)
743 cmd := exec.Command(command.cmd[0], command.cmd[1:]...)
746 if err := cmd.Run(); err != nil {
747 err = fmt.Errorf("While running command %q: %v", command.cmd, err)
756 return fmt.Errorf("While closing node-info logs: %v", err)
761 // LogContainerRecord gets and saves the raw JSON container record from the API server
762 func (runner *ContainerRunner) LogContainerRecord() error {
763 logged, err := runner.logAPIResponse("container", "containers", map[string]interface{}{"filters": [][]string{{"uuid", "=", runner.Container.UUID}}}, nil)
764 if !logged && err == nil {
765 err = fmt.Errorf("error: no container record found for %s", runner.Container.UUID)
770 // LogNodeRecord logs the current host's InstanceType config entry (or
771 // the arvados#node record, if running via crunch-dispatch-slurm).
772 func (runner *ContainerRunner) LogNodeRecord() error {
773 if it := os.Getenv("InstanceType"); it != "" {
774 // Dispatched via arvados-dispatch-cloud. Save
775 // InstanceType config fragment received from
776 // dispatcher on stdin.
777 w, err := runner.LogCollection.OpenFile("node.json", os.O_CREATE|os.O_WRONLY, 0666)
782 _, err = io.WriteString(w, it)
788 // Dispatched via crunch-dispatch-slurm. Look up
789 // apiserver's node record corresponding to
791 hostname := os.Getenv("SLURMD_NODENAME")
793 hostname, _ = os.Hostname()
795 _, err := runner.logAPIResponse("node", "nodes", map[string]interface{}{"filters": [][]string{{"hostname", "=", hostname}}}, func(resp interface{}) {
796 // The "info" field has admin-only info when
797 // obtained with a privileged token, and
798 // should not be logged.
799 node, ok := resp.(map[string]interface{})
807 func (runner *ContainerRunner) logAPIResponse(label, path string, params map[string]interface{}, munge func(interface{})) (logged bool, err error) {
808 writer, err := runner.LogCollection.OpenFile(label+".json", os.O_CREATE|os.O_WRONLY, 0666)
813 ArvClient: runner.DispatcherArvClient,
814 UUID: runner.Container.UUID,
815 loggingStream: label,
819 reader, err := runner.DispatcherArvClient.CallRaw("GET", path, "", "", arvadosclient.Dict(params))
821 return false, fmt.Errorf("error getting %s record: %v", label, err)
825 dec := json.NewDecoder(reader)
827 var resp map[string]interface{}
828 if err = dec.Decode(&resp); err != nil {
829 return false, fmt.Errorf("error decoding %s list response: %v", label, err)
831 items, ok := resp["items"].([]interface{})
833 return false, fmt.Errorf("error decoding %s list response: no \"items\" key in API list response", label)
834 } else if len(items) < 1 {
840 // Re-encode it using indentation to improve readability
841 enc := json.NewEncoder(w)
842 enc.SetIndent("", " ")
843 if err = enc.Encode(items[0]); err != nil {
844 return false, fmt.Errorf("error logging %s record: %v", label, err)
848 return false, fmt.Errorf("error closing %s.json in log collection: %v", label, err)
853 func (runner *ContainerRunner) getStdoutFile(mntPath string) (*os.File, error) {
854 stdoutPath := mntPath[len(runner.Container.OutputPath):]
855 index := strings.LastIndex(stdoutPath, "/")
857 subdirs := stdoutPath[:index]
859 st, err := os.Stat(runner.HostOutputDir)
861 return nil, fmt.Errorf("While Stat on temp dir: %v", err)
863 stdoutPath := filepath.Join(runner.HostOutputDir, subdirs)
864 err = os.MkdirAll(stdoutPath, st.Mode()|os.ModeSetgid|0777)
866 return nil, fmt.Errorf("While MkdirAll %q: %v", stdoutPath, err)
870 stdoutFile, err := os.Create(filepath.Join(runner.HostOutputDir, stdoutPath))
872 return nil, fmt.Errorf("While creating file %q: %v", stdoutPath, err)
875 return stdoutFile, nil
878 // CreateContainer creates the docker container.
879 func (runner *ContainerRunner) CreateContainer(imageID string, bindmounts map[string]bindmount) error {
880 var stdin io.ReadCloser = ioutil.NopCloser(bytes.NewReader(nil))
881 if mnt, ok := runner.Container.Mounts["stdin"]; ok {
888 collID = mnt.PortableDataHash
890 path := runner.ArvMountPoint + "/by_id/" + collID + "/" + mnt.Path
891 f, err := os.Open(path)
897 j, err := json.Marshal(mnt.Content)
899 return fmt.Errorf("error encoding stdin json data: %v", err)
901 stdin = ioutil.NopCloser(bytes.NewReader(j))
903 return fmt.Errorf("stdin mount has unsupported kind %q", mnt.Kind)
907 var stdout, stderr io.WriteCloser
908 if mnt, ok := runner.Container.Mounts["stdout"]; ok {
909 f, err := runner.getStdoutFile(mnt.Path)
914 } else if w, err := runner.NewLogWriter("stdout"); err != nil {
917 stdout = NewThrottledLogger(w)
920 if mnt, ok := runner.Container.Mounts["stderr"]; ok {
921 f, err := runner.getStdoutFile(mnt.Path)
926 } else if w, err := runner.NewLogWriter("stderr"); err != nil {
929 stderr = NewThrottledLogger(w)
932 env := runner.Container.Environment
933 enableNetwork := runner.enableNetwork == "always"
934 if runner.Container.RuntimeConstraints.API {
936 tok, err := runner.ContainerToken()
940 env = map[string]string{}
941 for k, v := range runner.Container.Environment {
944 env["ARVADOS_API_TOKEN"] = tok
945 env["ARVADOS_API_HOST"] = os.Getenv("ARVADOS_API_HOST")
946 env["ARVADOS_API_HOST_INSECURE"] = os.Getenv("ARVADOS_API_HOST_INSECURE")
948 workdir := runner.Container.Cwd
950 // both "" and "." mean default
953 ram := runner.Container.RuntimeConstraints.RAM
954 if !runner.enableMemoryLimit {
957 runner.executorStdin = stdin
958 runner.executorStdout = stdout
959 runner.executorStderr = stderr
960 return runner.executor.Create(containerSpec{
962 VCPUs: runner.Container.RuntimeConstraints.VCPUs,
966 BindMounts: bindmounts,
967 Command: runner.Container.Command,
968 EnableNetwork: enableNetwork,
969 NetworkMode: runner.networkMode,
970 CgroupParent: runner.setCgroupParent,
977 // StartContainer starts the docker container created by CreateContainer.
978 func (runner *ContainerRunner) StartContainer() error {
979 runner.CrunchLog.Printf("Starting container")
980 runner.cStateLock.Lock()
981 defer runner.cStateLock.Unlock()
982 if runner.cCancelled {
985 err := runner.executor.Start()
988 if m, e := regexp.MatchString("(?ms).*(exec|System error).*(no such file or directory|file not found).*", err.Error()); m && e == nil {
989 advice = fmt.Sprintf("\nPossible causes: command %q is missing, the interpreter given in #! is missing, or script has Windows line endings.", runner.Container.Command[0])
991 return fmt.Errorf("could not start container: %v%s", err, advice)
996 // WaitFinish waits for the container to terminate, capture the exit code, and
997 // close the stdout/stderr logging.
998 func (runner *ContainerRunner) WaitFinish() error {
999 runner.CrunchLog.Print("Waiting for container to finish")
1000 var timeout <-chan time.Time
1001 if s := runner.Container.SchedulingParameters.MaxRunTime; s > 0 {
1002 timeout = time.After(time.Duration(s) * time.Second)
1004 ctx, cancel := context.WithCancel(context.Background())
1009 runner.CrunchLog.Printf("maximum run time exceeded. Stopping container.")
1011 case <-runner.ArvMountExit:
1012 runner.CrunchLog.Printf("arv-mount exited while container is still running. Stopping container.")
1017 exitcode, err := runner.executor.Wait(ctx)
1019 runner.checkBrokenNode(err)
1022 runner.ExitCode = &exitcode
1025 if err = runner.executorStdin.Close(); err != nil {
1026 err = fmt.Errorf("error closing container stdin: %s", err)
1027 runner.CrunchLog.Printf("%s", err)
1030 if err = runner.executorStdout.Close(); err != nil {
1031 err = fmt.Errorf("error closing container stdout: %s", err)
1032 runner.CrunchLog.Printf("%s", err)
1033 if returnErr == nil {
1037 if err = runner.executorStderr.Close(); err != nil {
1038 err = fmt.Errorf("error closing container stderr: %s", err)
1039 runner.CrunchLog.Printf("%s", err)
1040 if returnErr == nil {
1045 if runner.statReporter != nil {
1046 runner.statReporter.Stop()
1047 err = runner.statLogger.Close()
1049 runner.CrunchLog.Printf("error closing crunchstat logs: %v", err)
1055 func (runner *ContainerRunner) updateLogs() {
1056 ticker := time.NewTicker(crunchLogUpdatePeriod / 360)
1059 sigusr1 := make(chan os.Signal, 1)
1060 signal.Notify(sigusr1, syscall.SIGUSR1)
1061 defer signal.Stop(sigusr1)
1063 saveAtTime := time.Now().Add(crunchLogUpdatePeriod)
1064 saveAtSize := crunchLogUpdateSize
1070 saveAtTime = time.Now()
1072 runner.logMtx.Lock()
1073 done := runner.LogsPDH != nil
1074 runner.logMtx.Unlock()
1078 size := runner.LogCollection.Size()
1079 if size == savedSize || (time.Now().Before(saveAtTime) && size < saveAtSize) {
1082 saveAtTime = time.Now().Add(crunchLogUpdatePeriod)
1083 saveAtSize = runner.LogCollection.Size() + crunchLogUpdateSize
1084 saved, err := runner.saveLogCollection(false)
1086 runner.CrunchLog.Printf("error updating log collection: %s", err)
1090 var updated arvados.Container
1091 err = runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{
1092 "container": arvadosclient.Dict{"log": saved.PortableDataHash},
1095 runner.CrunchLog.Printf("error updating container log to %s: %s", saved.PortableDataHash, err)
1103 // CaptureOutput saves data from the container's output directory if
1104 // needed, and updates the container output accordingly.
1105 func (runner *ContainerRunner) CaptureOutput(bindmounts map[string]bindmount) error {
1106 if runner.Container.RuntimeConstraints.API {
1107 // Output may have been set directly by the container, so
1108 // refresh the container record to check.
1109 err := runner.DispatcherArvClient.Get("containers", runner.Container.UUID,
1110 nil, &runner.Container)
1114 if runner.Container.Output != "" {
1115 // Container output is already set.
1116 runner.OutputPDH = &runner.Container.Output
1121 txt, err := (&copier{
1122 client: runner.containerClient,
1123 arvClient: runner.ContainerArvClient,
1124 keepClient: runner.ContainerKeepClient,
1125 hostOutputDir: runner.HostOutputDir,
1126 ctrOutputDir: runner.Container.OutputPath,
1127 bindmounts: bindmounts,
1128 mounts: runner.Container.Mounts,
1129 secretMounts: runner.SecretMounts,
1130 logger: runner.CrunchLog,
1135 if n := len(regexp.MustCompile(` [0-9a-f]+\+\S*\+R`).FindAllStringIndex(txt, -1)); n > 0 {
1136 runner.CrunchLog.Printf("Copying %d data blocks from remote input collections...", n)
1137 fs, err := (&arvados.Collection{ManifestText: txt}).FileSystem(runner.containerClient, runner.ContainerKeepClient)
1141 txt, err = fs.MarshalManifest(".")
1146 var resp arvados.Collection
1147 err = runner.ContainerArvClient.Create("collections", arvadosclient.Dict{
1148 "ensure_unique_name": true,
1149 "collection": arvadosclient.Dict{
1151 "name": "output for " + runner.Container.UUID,
1152 "manifest_text": txt,
1156 return fmt.Errorf("error creating output collection: %v", err)
1158 runner.OutputPDH = &resp.PortableDataHash
1162 func (runner *ContainerRunner) CleanupDirs() {
1163 if runner.ArvMount != nil {
1165 umount := exec.Command("arv-mount", fmt.Sprintf("--unmount-timeout=%d", delay), "--unmount", runner.ArvMountPoint)
1166 umount.Stdout = runner.CrunchLog
1167 umount.Stderr = runner.CrunchLog
1168 runner.CrunchLog.Printf("Running %v", umount.Args)
1169 umnterr := umount.Start()
1172 runner.CrunchLog.Printf("Error unmounting: %v", umnterr)
1174 // If arv-mount --unmount gets stuck for any reason, we
1175 // don't want to wait for it forever. Do Wait() in a goroutine
1176 // so it doesn't block crunch-run.
1177 umountExit := make(chan error)
1179 mnterr := umount.Wait()
1181 runner.CrunchLog.Printf("Error unmounting: %v", mnterr)
1183 umountExit <- mnterr
1186 for again := true; again; {
1192 case <-runner.ArvMountExit:
1194 case <-time.After(time.Duration((delay + 1) * int64(time.Second))):
1195 runner.CrunchLog.Printf("Timed out waiting for unmount")
1197 umount.Process.Kill()
1199 runner.ArvMount.Process.Kill()
1203 runner.ArvMount = nil
1206 if runner.ArvMountPoint != "" {
1207 if rmerr := os.Remove(runner.ArvMountPoint); rmerr != nil {
1208 runner.CrunchLog.Printf("While cleaning up arv-mount directory %s: %v", runner.ArvMountPoint, rmerr)
1210 runner.ArvMountPoint = ""
1213 if rmerr := os.RemoveAll(runner.parentTemp); rmerr != nil {
1214 runner.CrunchLog.Printf("While cleaning up temporary directory %s: %v", runner.parentTemp, rmerr)
1218 // CommitLogs posts the collection containing the final container logs.
1219 func (runner *ContainerRunner) CommitLogs() error {
1221 // Hold cStateLock to prevent races on CrunchLog (e.g., stop()).
1222 runner.cStateLock.Lock()
1223 defer runner.cStateLock.Unlock()
1225 runner.CrunchLog.Print(runner.finalState)
1227 if runner.arvMountLog != nil {
1228 runner.arvMountLog.Close()
1230 runner.CrunchLog.Close()
1232 // Closing CrunchLog above allows them to be committed to Keep at this
1233 // point, but re-open crunch log with ArvClient in case there are any
1234 // other further errors (such as failing to write the log to Keep!)
1235 // while shutting down
1236 runner.CrunchLog = NewThrottledLogger(&ArvLogWriter{
1237 ArvClient: runner.DispatcherArvClient,
1238 UUID: runner.Container.UUID,
1239 loggingStream: "crunch-run",
1242 runner.CrunchLog.Immediate = log.New(os.Stderr, runner.Container.UUID+" ", 0)
1245 if runner.LogsPDH != nil {
1246 // If we have already assigned something to LogsPDH,
1247 // we must be closing the re-opened log, which won't
1248 // end up getting attached to the container record and
1249 // therefore doesn't need to be saved as a collection
1250 // -- it exists only to send logs to other channels.
1253 saved, err := runner.saveLogCollection(true)
1255 return fmt.Errorf("error saving log collection: %s", err)
1257 runner.logMtx.Lock()
1258 defer runner.logMtx.Unlock()
1259 runner.LogsPDH = &saved.PortableDataHash
1263 func (runner *ContainerRunner) saveLogCollection(final bool) (response arvados.Collection, err error) {
1264 runner.logMtx.Lock()
1265 defer runner.logMtx.Unlock()
1266 if runner.LogsPDH != nil {
1267 // Already finalized.
1270 updates := arvadosclient.Dict{
1271 "name": "logs for " + runner.Container.UUID,
1273 mt, err1 := runner.LogCollection.MarshalManifest(".")
1275 // Only send updated manifest text if there was no
1277 updates["manifest_text"] = mt
1280 // Even if flushing the manifest had an error, we still want
1281 // to update the log record, if possible, to push the trash_at
1282 // and delete_at times into the future. Details on bug
1285 updates["is_trashed"] = true
1287 exp := time.Now().Add(crunchLogUpdatePeriod * 24)
1288 updates["trash_at"] = exp
1289 updates["delete_at"] = exp
1291 reqBody := arvadosclient.Dict{"collection": updates}
1293 if runner.logUUID == "" {
1294 reqBody["ensure_unique_name"] = true
1295 err2 = runner.DispatcherArvClient.Create("collections", reqBody, &response)
1297 err2 = runner.DispatcherArvClient.Update("collections", runner.logUUID, reqBody, &response)
1300 runner.logUUID = response.UUID
1303 if err1 != nil || err2 != nil {
1304 err = fmt.Errorf("error recording logs: %q, %q", err1, err2)
1309 // UpdateContainerRunning updates the container state to "Running"
1310 func (runner *ContainerRunner) UpdateContainerRunning() error {
1311 runner.cStateLock.Lock()
1312 defer runner.cStateLock.Unlock()
1313 if runner.cCancelled {
1316 return runner.DispatcherArvClient.Update("containers", runner.Container.UUID,
1317 arvadosclient.Dict{"container": arvadosclient.Dict{"state": "Running", "gateway_address": runner.gateway.Address}}, nil)
1320 // ContainerToken returns the api_token the container (and any
1321 // arv-mount processes) are allowed to use.
1322 func (runner *ContainerRunner) ContainerToken() (string, error) {
1323 if runner.token != "" {
1324 return runner.token, nil
1327 var auth arvados.APIClientAuthorization
1328 err := runner.DispatcherArvClient.Call("GET", "containers", runner.Container.UUID, "auth", nil, &auth)
1332 runner.token = fmt.Sprintf("v2/%s/%s/%s", auth.UUID, auth.APIToken, runner.Container.UUID)
1333 return runner.token, nil
1336 // UpdateContainerFinal updates the container record state on API
1337 // server to "Complete" or "Cancelled"
1338 func (runner *ContainerRunner) UpdateContainerFinal() error {
1339 update := arvadosclient.Dict{}
1340 update["state"] = runner.finalState
1341 if runner.LogsPDH != nil {
1342 update["log"] = *runner.LogsPDH
1344 if runner.finalState == "Complete" {
1345 if runner.ExitCode != nil {
1346 update["exit_code"] = *runner.ExitCode
1348 if runner.OutputPDH != nil {
1349 update["output"] = *runner.OutputPDH
1352 return runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{"container": update}, nil)
1355 // IsCancelled returns the value of Cancelled, with goroutine safety.
1356 func (runner *ContainerRunner) IsCancelled() bool {
1357 runner.cStateLock.Lock()
1358 defer runner.cStateLock.Unlock()
1359 return runner.cCancelled
1362 // NewArvLogWriter creates an ArvLogWriter
1363 func (runner *ContainerRunner) NewArvLogWriter(name string) (io.WriteCloser, error) {
1364 writer, err := runner.LogCollection.OpenFile(name+".txt", os.O_CREATE|os.O_WRONLY, 0666)
1368 return &ArvLogWriter{
1369 ArvClient: runner.DispatcherArvClient,
1370 UUID: runner.Container.UUID,
1371 loggingStream: name,
1372 writeCloser: writer,
1376 // Run the full container lifecycle.
1377 func (runner *ContainerRunner) Run() (err error) {
1378 runner.CrunchLog.Printf("crunch-run %s started", cmd.Version.String())
1379 runner.CrunchLog.Printf("Executing container '%s'", runner.Container.UUID)
1381 hostname, hosterr := os.Hostname()
1383 runner.CrunchLog.Printf("Error getting hostname '%v'", hosterr)
1385 runner.CrunchLog.Printf("Executing on host '%s'", hostname)
1388 runner.finalState = "Queued"
1391 runner.CleanupDirs()
1393 runner.CrunchLog.Printf("crunch-run finished")
1394 runner.CrunchLog.Close()
1397 err = runner.fetchContainerRecord()
1401 if runner.Container.State != "Locked" {
1402 return fmt.Errorf("dispatch error detected: container %q has state %q", runner.Container.UUID, runner.Container.State)
1405 var bindmounts map[string]bindmount
1407 // checkErr prints e (unless it's nil) and sets err to
1408 // e (unless err is already non-nil). Thus, if err
1409 // hasn't already been assigned when Run() returns,
1410 // this cleanup func will cause Run() to return the
1411 // first non-nil error that is passed to checkErr().
1412 checkErr := func(errorIn string, e error) {
1416 runner.CrunchLog.Printf("error in %s: %v", errorIn, e)
1420 if runner.finalState == "Complete" {
1421 // There was an error in the finalization.
1422 runner.finalState = "Cancelled"
1426 // Log the error encountered in Run(), if any
1427 checkErr("Run", err)
1429 if runner.finalState == "Queued" {
1430 runner.UpdateContainerFinal()
1434 if runner.IsCancelled() {
1435 runner.finalState = "Cancelled"
1436 // but don't return yet -- we still want to
1437 // capture partial output and write logs
1440 if bindmounts != nil {
1441 checkErr("CaptureOutput", runner.CaptureOutput(bindmounts))
1443 checkErr("stopHoststat", runner.stopHoststat())
1444 checkErr("CommitLogs", runner.CommitLogs())
1445 runner.CleanupDirs()
1446 checkErr("UpdateContainerFinal", runner.UpdateContainerFinal())
1449 runner.setupSignals()
1450 err = runner.startHoststat()
1455 // set up FUSE mount and binds
1456 bindmounts, err = runner.SetupMounts()
1458 runner.finalState = "Cancelled"
1459 err = fmt.Errorf("While setting up mounts: %v", err)
1463 // check for and/or load image
1464 imageID, err := runner.LoadImage()
1466 if !runner.checkBrokenNode(err) {
1467 // Failed to load image but not due to a "broken node"
1468 // condition, probably user error.
1469 runner.finalState = "Cancelled"
1471 err = fmt.Errorf("While loading container image: %v", err)
1475 err = runner.CreateContainer(imageID, bindmounts)
1479 err = runner.LogHostInfo()
1483 err = runner.LogNodeRecord()
1487 err = runner.LogContainerRecord()
1492 if runner.IsCancelled() {
1496 err = runner.UpdateContainerRunning()
1500 runner.finalState = "Cancelled"
1502 err = runner.startCrunchstat()
1507 err = runner.StartContainer()
1509 runner.checkBrokenNode(err)
1513 err = runner.WaitFinish()
1514 if err == nil && !runner.IsCancelled() {
1515 runner.finalState = "Complete"
1520 // Fetch the current container record (uuid = runner.Container.UUID)
1521 // into runner.Container.
1522 func (runner *ContainerRunner) fetchContainerRecord() error {
1523 reader, err := runner.DispatcherArvClient.CallRaw("GET", "containers", runner.Container.UUID, "", nil)
1525 return fmt.Errorf("error fetching container record: %v", err)
1527 defer reader.Close()
1529 dec := json.NewDecoder(reader)
1531 err = dec.Decode(&runner.Container)
1533 return fmt.Errorf("error decoding container record: %v", err)
1537 SecretMounts map[string]arvados.Mount `json:"secret_mounts"`
1540 containerToken, err := runner.ContainerToken()
1542 return fmt.Errorf("error getting container token: %v", err)
1545 runner.ContainerArvClient, runner.ContainerKeepClient,
1546 runner.containerClient, err = runner.MkArvClient(containerToken)
1548 return fmt.Errorf("error creating container API client: %v", err)
1551 runner.ContainerKeepClient.SetStorageClasses(runner.Container.OutputStorageClasses)
1552 runner.DispatcherKeepClient.SetStorageClasses(runner.Container.OutputStorageClasses)
1554 err = runner.ContainerArvClient.Call("GET", "containers", runner.Container.UUID, "secret_mounts", nil, &sm)
1556 if apierr, ok := err.(arvadosclient.APIServerError); !ok || apierr.HttpStatusCode != 404 {
1557 return fmt.Errorf("error fetching secret_mounts: %v", err)
1559 // ok && apierr.HttpStatusCode == 404, which means
1560 // secret_mounts isn't supported by this API server.
1562 runner.SecretMounts = sm.SecretMounts
1567 // NewContainerRunner creates a new container runner.
1568 func NewContainerRunner(dispatcherClient *arvados.Client,
1569 dispatcherArvClient IArvadosClient,
1570 dispatcherKeepClient IKeepClient,
1571 containerUUID string) (*ContainerRunner, error) {
1573 cr := &ContainerRunner{
1574 dispatcherClient: dispatcherClient,
1575 DispatcherArvClient: dispatcherArvClient,
1576 DispatcherKeepClient: dispatcherKeepClient,
1578 cr.NewLogWriter = cr.NewArvLogWriter
1579 cr.RunArvMount = cr.ArvMountCmd
1580 cr.MkTempDir = ioutil.TempDir
1581 cr.MkArvClient = func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error) {
1582 cl, err := arvadosclient.MakeArvadosClient()
1584 return nil, nil, nil, err
1587 kc, err := keepclient.MakeKeepClient(cl)
1589 return nil, nil, nil, err
1591 c2 := arvados.NewClientFromEnv()
1592 c2.AuthToken = token
1593 return cl, kc, c2, nil
1596 cr.LogCollection, err = (&arvados.Collection{}).FileSystem(cr.dispatcherClient, cr.DispatcherKeepClient)
1600 cr.Container.UUID = containerUUID
1601 w, err := cr.NewLogWriter("crunch-run")
1605 cr.CrunchLog = NewThrottledLogger(w)
1606 cr.CrunchLog.Immediate = log.New(os.Stderr, containerUUID+" ", 0)
1608 loadLogThrottleParams(dispatcherArvClient)
1614 func (command) RunCommand(prog string, args []string, stdin io.Reader, stdout, stderr io.Writer) int {
1615 flags := flag.NewFlagSet(prog, flag.ContinueOnError)
1616 statInterval := flags.Duration("crunchstat-interval", 10*time.Second, "sampling period for periodic resource usage reporting")
1617 cgroupRoot := flags.String("cgroup-root", "/sys/fs/cgroup", "path to sysfs cgroup tree")
1618 cgroupParent := flags.String("cgroup-parent", "docker", "name of container's parent cgroup (ignored if -cgroup-parent-subsystem is used)")
1619 cgroupParentSubsystem := flags.String("cgroup-parent-subsystem", "", "use current cgroup for given subsystem as parent cgroup for container")
1620 caCertsPath := flags.String("ca-certs", "", "Path to TLS root certificates")
1621 detach := flags.Bool("detach", false, "Detach from parent process and run in the background")
1622 stdinEnv := flags.Bool("stdin-env", false, "Load environment variables from JSON message on stdin")
1623 sleep := flags.Duration("sleep", 0, "Delay before starting (testing use only)")
1624 kill := flags.Int("kill", -1, "Send signal to an existing crunch-run process for given UUID")
1625 list := flags.Bool("list", false, "List UUIDs of existing crunch-run processes")
1626 enableMemoryLimit := flags.Bool("enable-memory-limit", true, "tell container runtime to limit container's memory usage")
1627 enableNetwork := flags.String("container-enable-networking", "default", "enable networking \"always\" (for all containers) or \"default\" (for containers that request it)")
1628 networkMode := flags.String("container-network-mode", "default", `Docker network mode for container (use any argument valid for docker --net)`)
1629 memprofile := flags.String("memprofile", "", "write memory profile to `file` after running container")
1630 runtimeEngine := flags.String("runtime-engine", "docker", "container runtime: docker or singularity")
1631 flags.Duration("check-containerd", 0, "Ignored. Exists for compatibility with older versions.")
1633 ignoreDetachFlag := false
1634 if len(args) > 0 && args[0] == "-no-detach" {
1635 // This process was invoked by a parent process, which
1636 // has passed along its own arguments, including
1637 // -detach, after the leading -no-detach flag. Strip
1638 // the leading -no-detach flag (it's not recognized by
1639 // flags.Parse()) and ignore the -detach flag that
1642 ignoreDetachFlag = true
1645 if err := flags.Parse(args); err == flag.ErrHelp {
1647 } else if err != nil {
1652 if *stdinEnv && !ignoreDetachFlag {
1653 // Load env vars on stdin if asked (but not in a
1654 // detached child process, in which case stdin is
1656 err := loadEnv(os.Stdin)
1663 containerUUID := flags.Arg(0)
1666 case *detach && !ignoreDetachFlag:
1667 return Detach(containerUUID, prog, args, os.Stdout, os.Stderr)
1669 return KillProcess(containerUUID, syscall.Signal(*kill), os.Stdout, os.Stderr)
1671 return ListProcesses(os.Stdout, os.Stderr)
1674 if containerUUID == "" {
1675 log.Printf("usage: %s [options] UUID", prog)
1679 log.Printf("crunch-run %s started", cmd.Version.String())
1682 if *caCertsPath != "" {
1683 arvadosclient.CertFiles = []string{*caCertsPath}
1686 api, err := arvadosclient.MakeArvadosClient()
1688 log.Printf("%s: %v", containerUUID, err)
1693 kc, kcerr := keepclient.MakeKeepClient(api)
1695 log.Printf("%s: %v", containerUUID, kcerr)
1698 kc.BlockCache = &keepclient.BlockCache{MaxBlocks: 2}
1701 cr, err := NewContainerRunner(arvados.NewClientFromEnv(), api, kc, containerUUID)
1707 switch *runtimeEngine {
1709 cr.executor, err = newDockerExecutor(containerUUID, cr.CrunchLog.Printf, cr.containerWatchdogInterval)
1711 cr.executor, err = newSingularityExecutor(cr.CrunchLog.Printf)
1713 cr.CrunchLog.Printf("%s: unsupported RuntimeEngine %q", containerUUID, *runtimeEngine)
1714 cr.CrunchLog.Close()
1718 cr.CrunchLog.Printf("%s: %v", containerUUID, err)
1719 cr.checkBrokenNode(err)
1720 cr.CrunchLog.Close()
1723 defer cr.executor.Close()
1725 gwAuthSecret := os.Getenv("GatewayAuthSecret")
1726 os.Unsetenv("GatewayAuthSecret")
1727 if gwAuthSecret == "" {
1728 // not safe to run a gateway service without an auth
1730 cr.CrunchLog.Printf("Not starting a gateway server (GatewayAuthSecret was not provided by dispatcher)")
1731 } else if gwListen := os.Getenv("GatewayAddress"); gwListen == "" {
1732 // dispatcher did not tell us which external IP
1733 // address to advertise --> no gateway service
1734 cr.CrunchLog.Printf("Not starting a gateway server (GatewayAddress was not provided by dispatcher)")
1735 } else if de, ok := cr.executor.(*dockerExecutor); ok {
1736 cr.gateway = Gateway{
1738 AuthSecret: gwAuthSecret,
1739 ContainerUUID: containerUUID,
1740 DockerContainerID: &de.containerID,
1742 ContainerIPAddress: dockerContainerIPAddress(&de.containerID),
1744 err = cr.gateway.Start()
1746 log.Printf("error starting gateway server: %s", err)
1751 parentTemp, tmperr := cr.MkTempDir("", "crunch-run."+containerUUID+".")
1753 log.Printf("%s: %v", containerUUID, tmperr)
1757 cr.parentTemp = parentTemp
1758 cr.statInterval = *statInterval
1759 cr.cgroupRoot = *cgroupRoot
1760 cr.expectCgroupParent = *cgroupParent
1761 cr.enableMemoryLimit = *enableMemoryLimit
1762 cr.enableNetwork = *enableNetwork
1763 cr.networkMode = *networkMode
1764 if *cgroupParentSubsystem != "" {
1765 p := findCgroup(*cgroupParentSubsystem)
1766 cr.setCgroupParent = p
1767 cr.expectCgroupParent = p
1772 if *memprofile != "" {
1773 f, err := os.Create(*memprofile)
1775 log.Printf("could not create memory profile: %s", err)
1777 runtime.GC() // get up-to-date statistics
1778 if err := pprof.WriteHeapProfile(f); err != nil {
1779 log.Printf("could not write memory profile: %s", err)
1781 closeerr := f.Close()
1782 if closeerr != nil {
1783 log.Printf("closing memprofile file: %s", err)
1788 log.Printf("%s: %v", containerUUID, runerr)
1794 func loadEnv(rdr io.Reader) error {
1795 buf, err := ioutil.ReadAll(rdr)
1797 return fmt.Errorf("read stdin: %s", err)
1799 var env map[string]string
1800 err = json.Unmarshal(buf, &env)
1802 return fmt.Errorf("decode stdin: %s", err)
1804 for k, v := range env {
1805 err = os.Setenv(k, v)
1807 return fmt.Errorf("setenv(%q): %s", k, err)