1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
33 "git.arvados.org/arvados.git/lib/cmd"
34 "git.arvados.org/arvados.git/lib/crunchstat"
35 "git.arvados.org/arvados.git/sdk/go/arvados"
36 "git.arvados.org/arvados.git/sdk/go/arvadosclient"
37 "git.arvados.org/arvados.git/sdk/go/keepclient"
38 "git.arvados.org/arvados.git/sdk/go/manifest"
43 var Command = command{}
45 // ConfigData contains environment variables and (when needed) cluster
46 // configuration, passed from dispatchcloud to crunch-run on stdin.
47 type ConfigData struct {
50 Cluster *arvados.Cluster
53 // IArvadosClient is the minimal Arvados API methods used by crunch-run.
54 type IArvadosClient interface {
55 Create(resourceType string, parameters arvadosclient.Dict, output interface{}) error
56 Get(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error
57 Update(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error
58 Call(method, resourceType, uuid, action string, parameters arvadosclient.Dict, output interface{}) error
59 CallRaw(method string, resourceType string, uuid string, action string, parameters arvadosclient.Dict) (reader io.ReadCloser, err error)
60 Discovery(key string) (interface{}, error)
63 // ErrCancelled is the error returned when the container is cancelled.
64 var ErrCancelled = errors.New("Cancelled")
66 // IKeepClient is the minimal Keep API methods used by crunch-run.
67 type IKeepClient interface {
68 BlockWrite(context.Context, arvados.BlockWriteOptions) (arvados.BlockWriteResponse, error)
69 ReadAt(locator string, p []byte, off int) (int, error)
70 ManifestFileReader(m manifest.Manifest, filename string) (arvados.File, error)
71 LocalLocator(locator string) (string, error)
73 SetStorageClasses(sc []string)
76 // NewLogWriter is a factory function to create a new log writer.
77 type NewLogWriter func(name string) (io.WriteCloser, error)
79 type RunArvMount func(cmdline []string, tok string) (*exec.Cmd, error)
81 type MkTempDir func(string, string) (string, error)
83 type PsProcess interface {
84 CmdlineSlice() ([]string, error)
87 // ContainerRunner is the main stateful struct used for a single execution of a
89 type ContainerRunner struct {
90 executor containerExecutor
91 executorStdin io.Closer
92 executorStdout io.Closer
93 executorStderr io.Closer
95 // Dispatcher client is initialized with the Dispatcher token.
96 // This is a privileged token used to manage container status
99 // We have both dispatcherClient and DispatcherArvClient
100 // because there are two different incompatible Arvados Go
101 // SDKs and we have to use both (hopefully this gets fixed in
103 dispatcherClient *arvados.Client
104 DispatcherArvClient IArvadosClient
105 DispatcherKeepClient IKeepClient
107 // Container client is initialized with the Container token
108 // This token controls the permissions of the container, and
109 // must be used for operations such as reading collections.
111 // Same comment as above applies to
112 // containerClient/ContainerArvClient.
113 containerClient *arvados.Client
114 ContainerArvClient IArvadosClient
115 ContainerKeepClient IKeepClient
117 Container arvados.Container
120 NewLogWriter NewLogWriter
121 CrunchLog *ThrottledLogger
124 LogCollection arvados.CollectionFileSystem
126 RunArvMount RunArvMount
131 Volumes map[string]struct{}
133 SigChan chan os.Signal
134 ArvMountExit chan error
135 SecretMounts map[string]arvados.Mount
136 MkArvClient func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error)
140 keepstoreLogger io.WriteCloser
141 keepstoreLogbuf *bufThenWrite
142 statLogger io.WriteCloser
143 statReporter *crunchstat.Reporter
144 hoststatLogger io.WriteCloser
145 hoststatReporter *crunchstat.Reporter
146 statInterval time.Duration
148 // What we expect the container's cgroup parent to be.
149 expectCgroupParent string
150 // What we tell docker to use as the container's cgroup
151 // parent. Note: Ideally we would use the same field for both
152 // expectCgroupParent and setCgroupParent, and just make it
153 // default to "docker". However, when using docker < 1.10 with
154 // systemd, specifying a non-empty cgroup parent (even the
155 // default value "docker") hits a docker bug
156 // (https://github.com/docker/docker/issues/17126). Using two
157 // separate fields makes it possible to use the "expect cgroup
158 // parent to be X" feature even on sites where the "specify
159 // cgroup parent" feature breaks.
160 setCgroupParent string
162 cStateLock sync.Mutex
163 cCancelled bool // StopContainer() invoked
165 enableMemoryLimit bool
166 enableNetwork string // one of "default" or "always"
167 networkMode string // "none", "host", or "" -- passed through to executor
168 arvMountLog *ThrottledLogger
170 containerWatchdogInterval time.Duration
175 // setupSignals sets up signal handling to gracefully terminate the
176 // underlying container and update state when receiving a TERM, INT or
178 func (runner *ContainerRunner) setupSignals() {
179 runner.SigChan = make(chan os.Signal, 1)
180 signal.Notify(runner.SigChan, syscall.SIGTERM)
181 signal.Notify(runner.SigChan, syscall.SIGINT)
182 signal.Notify(runner.SigChan, syscall.SIGQUIT)
184 go func(sig chan os.Signal) {
191 // stop the underlying container.
192 func (runner *ContainerRunner) stop(sig os.Signal) {
193 runner.cStateLock.Lock()
194 defer runner.cStateLock.Unlock()
196 runner.CrunchLog.Printf("caught signal: %v", sig)
198 runner.cCancelled = true
199 runner.CrunchLog.Printf("stopping container")
200 err := runner.executor.Stop()
202 runner.CrunchLog.Printf("error stopping container: %s", err)
206 var errorBlacklist = []string{
207 "(?ms).*[Cc]annot connect to the Docker daemon.*",
208 "(?ms).*oci runtime error.*starting container process.*container init.*mounting.*to rootfs.*no such file or directory.*",
209 "(?ms).*grpc: the connection is unavailable.*",
211 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)")
213 func (runner *ContainerRunner) runBrokenNodeHook() {
214 if *brokenNodeHook == "" {
215 path := filepath.Join(lockdir, brokenfile)
216 runner.CrunchLog.Printf("Writing %s to mark node as broken", path)
217 f, err := os.OpenFile(path, os.O_CREATE|os.O_RDWR, 0700)
219 runner.CrunchLog.Printf("Error writing %s: %s", path, err)
224 runner.CrunchLog.Printf("Running broken node hook %q", *brokenNodeHook)
226 c := exec.Command(*brokenNodeHook)
227 c.Stdout = runner.CrunchLog
228 c.Stderr = runner.CrunchLog
231 runner.CrunchLog.Printf("Error running broken node hook: %v", err)
236 func (runner *ContainerRunner) checkBrokenNode(goterr error) bool {
237 for _, d := range errorBlacklist {
238 if m, e := regexp.MatchString(d, goterr.Error()); m && e == nil {
239 runner.CrunchLog.Printf("Error suggests node is unable to run containers: %v", goterr)
240 runner.runBrokenNodeHook()
247 // LoadImage determines the docker image id from the container record and
248 // checks if it is available in the local Docker image store. If not, it loads
249 // the image from Keep.
250 func (runner *ContainerRunner) LoadImage() (string, error) {
251 runner.CrunchLog.Printf("Fetching Docker image from collection '%s'", runner.Container.ContainerImage)
253 d, err := os.Open(runner.ArvMountPoint + "/by_id/" + runner.Container.ContainerImage)
258 allfiles, err := d.Readdirnames(-1)
262 var tarfiles []string
263 for _, fnm := range allfiles {
264 if strings.HasSuffix(fnm, ".tar") {
265 tarfiles = append(tarfiles, fnm)
268 if len(tarfiles) == 0 {
269 return "", fmt.Errorf("image collection does not include a .tar image file")
271 if len(tarfiles) > 1 {
272 return "", fmt.Errorf("cannot choose from multiple tar files in image collection: %v", tarfiles)
274 imageID := tarfiles[0][:len(tarfiles[0])-4]
275 imageTarballPath := runner.ArvMountPoint + "/by_id/" + runner.Container.ContainerImage + "/" + imageID + ".tar"
276 runner.CrunchLog.Printf("Using Docker image id %q", imageID)
278 runner.CrunchLog.Print("Loading Docker image from keep")
279 err = runner.executor.LoadImage(imageID, imageTarballPath, runner.Container, runner.ArvMountPoint,
280 runner.containerClient)
288 func (runner *ContainerRunner) ArvMountCmd(cmdline []string, token string) (c *exec.Cmd, err error) {
289 c = exec.Command(cmdline[0], cmdline[1:]...)
291 // Copy our environment, but override ARVADOS_API_TOKEN with
292 // the container auth token.
294 for _, s := range os.Environ() {
295 if !strings.HasPrefix(s, "ARVADOS_API_TOKEN=") {
296 c.Env = append(c.Env, s)
299 c.Env = append(c.Env, "ARVADOS_API_TOKEN="+token)
301 w, err := runner.NewLogWriter("arv-mount")
305 runner.arvMountLog = NewThrottledLogger(w)
306 scanner := logScanner{
309 "Block not found error",
310 "Unhandled exception during FUSE operation",
312 ReportFunc: runner.reportArvMountWarning,
314 c.Stdout = runner.arvMountLog
315 c.Stderr = io.MultiWriter(runner.arvMountLog, os.Stderr, &scanner)
317 runner.CrunchLog.Printf("Running %v", c.Args)
324 statReadme := make(chan bool)
325 runner.ArvMountExit = make(chan error)
330 time.Sleep(100 * time.Millisecond)
331 _, err = os.Stat(fmt.Sprintf("%s/by_id/README", runner.ArvMountPoint))
343 runner.CrunchLog.Printf("Arv-mount exit error: %v", mnterr)
345 runner.ArvMountExit <- mnterr
346 close(runner.ArvMountExit)
352 case err := <-runner.ArvMountExit:
353 runner.ArvMount = nil
361 func (runner *ContainerRunner) SetupArvMountPoint(prefix string) (err error) {
362 if runner.ArvMountPoint == "" {
363 runner.ArvMountPoint, err = runner.MkTempDir(runner.parentTemp, prefix)
368 func copyfile(src string, dst string) (err error) {
369 srcfile, err := os.Open(src)
374 os.MkdirAll(path.Dir(dst), 0777)
376 dstfile, err := os.Create(dst)
380 _, err = io.Copy(dstfile, srcfile)
385 err = srcfile.Close()
386 err2 := dstfile.Close()
399 func (runner *ContainerRunner) SetupMounts() (map[string]bindmount, error) {
400 bindmounts := map[string]bindmount{}
401 err := runner.SetupArvMountPoint("keep")
403 return nil, fmt.Errorf("While creating keep mount temp dir: %v", err)
406 token, err := runner.ContainerToken()
408 return nil, fmt.Errorf("could not get container token: %s", err)
410 runner.CrunchLog.Printf("container token %q", token)
414 arvMountCmd := []string{
419 "--storage-classes", strings.Join(runner.Container.OutputStorageClasses, ","),
420 fmt.Sprintf("--crunchstat-interval=%v", runner.statInterval.Seconds())}
422 if runner.Container.RuntimeConstraints.KeepCacheRAM > 0 {
423 arvMountCmd = append(arvMountCmd, "--file-cache", fmt.Sprintf("%d", runner.Container.RuntimeConstraints.KeepCacheRAM))
426 collectionPaths := []string{}
427 needCertMount := true
428 type copyFile struct {
432 var copyFiles []copyFile
435 for bind := range runner.Container.Mounts {
436 binds = append(binds, bind)
438 for bind := range runner.SecretMounts {
439 if _, ok := runner.Container.Mounts[bind]; ok {
440 return nil, fmt.Errorf("secret mount %q conflicts with regular mount", bind)
442 if runner.SecretMounts[bind].Kind != "json" &&
443 runner.SecretMounts[bind].Kind != "text" {
444 return nil, fmt.Errorf("secret mount %q type is %q but only 'json' and 'text' are permitted",
445 bind, runner.SecretMounts[bind].Kind)
447 binds = append(binds, bind)
451 for _, bind := range binds {
452 mnt, ok := runner.Container.Mounts[bind]
454 mnt = runner.SecretMounts[bind]
456 if bind == "stdout" || bind == "stderr" {
457 // Is it a "file" mount kind?
458 if mnt.Kind != "file" {
459 return nil, fmt.Errorf("unsupported mount kind '%s' for %s: only 'file' is supported", mnt.Kind, bind)
462 // Does path start with OutputPath?
463 prefix := runner.Container.OutputPath
464 if !strings.HasSuffix(prefix, "/") {
467 if !strings.HasPrefix(mnt.Path, prefix) {
468 return nil, fmt.Errorf("%s path does not start with OutputPath: %s, %s", strings.Title(bind), mnt.Path, prefix)
473 // Is it a "collection" mount kind?
474 if mnt.Kind != "collection" && mnt.Kind != "json" {
475 return nil, fmt.Errorf("unsupported mount kind '%s' for stdin: only 'collection' and 'json' are supported", mnt.Kind)
479 if bind == "/etc/arvados/ca-certificates.crt" {
480 needCertMount = false
483 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") && bind != runner.Container.OutputPath+"/" {
484 if mnt.Kind != "collection" && mnt.Kind != "text" && mnt.Kind != "json" {
485 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)
490 case mnt.Kind == "collection" && bind != "stdin":
492 if mnt.UUID != "" && mnt.PortableDataHash != "" {
493 return nil, fmt.Errorf("cannot specify both 'uuid' and 'portable_data_hash' for a collection mount")
497 return nil, fmt.Errorf("writing to existing collections currently not permitted")
500 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.UUID)
501 } else if mnt.PortableDataHash != "" {
502 if mnt.Writable && !strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
503 return nil, fmt.Errorf("can never write to a collection specified by portable data hash")
505 idx := strings.Index(mnt.PortableDataHash, "/")
507 mnt.Path = path.Clean(mnt.PortableDataHash[idx:])
508 mnt.PortableDataHash = mnt.PortableDataHash[0:idx]
509 runner.Container.Mounts[bind] = mnt
511 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.PortableDataHash)
512 if mnt.Path != "" && mnt.Path != "." {
513 if strings.HasPrefix(mnt.Path, "./") {
514 mnt.Path = mnt.Path[2:]
515 } else if strings.HasPrefix(mnt.Path, "/") {
516 mnt.Path = mnt.Path[1:]
518 src += "/" + mnt.Path
521 src = fmt.Sprintf("%s/tmp%d", runner.ArvMountPoint, tmpcount)
522 arvMountCmd = append(arvMountCmd, "--mount-tmp")
523 arvMountCmd = append(arvMountCmd, fmt.Sprintf("tmp%d", tmpcount))
527 if bind == runner.Container.OutputPath {
528 runner.HostOutputDir = src
529 bindmounts[bind] = bindmount{HostPath: src}
530 } else if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
531 copyFiles = append(copyFiles, copyFile{src, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
533 bindmounts[bind] = bindmount{HostPath: src}
536 bindmounts[bind] = bindmount{HostPath: src, ReadOnly: true}
538 collectionPaths = append(collectionPaths, src)
540 case mnt.Kind == "tmp":
542 tmpdir, err = runner.MkTempDir(runner.parentTemp, "tmp")
544 return nil, fmt.Errorf("while creating mount temp dir: %v", err)
546 st, staterr := os.Stat(tmpdir)
548 return nil, fmt.Errorf("while Stat on temp dir: %v", staterr)
550 err = os.Chmod(tmpdir, st.Mode()|os.ModeSetgid|0777)
552 return nil, fmt.Errorf("while Chmod temp dir: %v", err)
554 bindmounts[bind] = bindmount{HostPath: tmpdir}
555 if bind == runner.Container.OutputPath {
556 runner.HostOutputDir = tmpdir
559 case mnt.Kind == "json" || mnt.Kind == "text":
561 if mnt.Kind == "json" {
562 filedata, err = json.Marshal(mnt.Content)
564 return nil, fmt.Errorf("encoding json data: %v", err)
567 text, ok := mnt.Content.(string)
569 return nil, fmt.Errorf("content for mount %q must be a string", bind)
571 filedata = []byte(text)
574 tmpdir, err := runner.MkTempDir(runner.parentTemp, mnt.Kind)
576 return nil, fmt.Errorf("creating temp dir: %v", err)
578 tmpfn := filepath.Join(tmpdir, "mountdata."+mnt.Kind)
579 err = ioutil.WriteFile(tmpfn, filedata, 0444)
581 return nil, fmt.Errorf("writing temp file: %v", err)
583 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
584 copyFiles = append(copyFiles, copyFile{tmpfn, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
586 bindmounts[bind] = bindmount{HostPath: tmpfn, ReadOnly: true}
589 case mnt.Kind == "git_tree":
590 tmpdir, err := runner.MkTempDir(runner.parentTemp, "git_tree")
592 return nil, fmt.Errorf("creating temp dir: %v", err)
594 err = gitMount(mnt).extractTree(runner.ContainerArvClient, tmpdir, token)
598 bindmounts[bind] = bindmount{HostPath: tmpdir, ReadOnly: true}
602 if runner.HostOutputDir == "" {
603 return nil, fmt.Errorf("output path does not correspond to a writable mount point")
606 if needCertMount && runner.Container.RuntimeConstraints.API {
607 for _, certfile := range arvadosclient.CertFiles {
608 _, err := os.Stat(certfile)
610 bindmounts["/etc/arvados/ca-certificates.crt"] = bindmount{HostPath: certfile, ReadOnly: true}
617 arvMountCmd = append(arvMountCmd, "--mount-by-pdh", "by_id")
619 arvMountCmd = append(arvMountCmd, "--mount-by-id", "by_id")
621 arvMountCmd = append(arvMountCmd, "--mount-by-id", "by_uuid")
622 arvMountCmd = append(arvMountCmd, runner.ArvMountPoint)
624 runner.ArvMount, err = runner.RunArvMount(arvMountCmd, token)
626 return nil, fmt.Errorf("while trying to start arv-mount: %v", err)
629 for _, p := range collectionPaths {
632 return nil, fmt.Errorf("while checking that input files exist: %v", err)
636 for _, cp := range copyFiles {
637 st, err := os.Stat(cp.src)
639 return nil, fmt.Errorf("while staging writable file from %q to %q: %v", cp.src, cp.bind, err)
642 err = filepath.Walk(cp.src, func(walkpath string, walkinfo os.FileInfo, walkerr error) error {
646 target := path.Join(cp.bind, walkpath[len(cp.src):])
647 if walkinfo.Mode().IsRegular() {
648 copyerr := copyfile(walkpath, target)
652 return os.Chmod(target, walkinfo.Mode()|0777)
653 } else if walkinfo.Mode().IsDir() {
654 mkerr := os.MkdirAll(target, 0777)
658 return os.Chmod(target, walkinfo.Mode()|os.ModeSetgid|0777)
660 return fmt.Errorf("source %q is not a regular file or directory", cp.src)
663 } else if st.Mode().IsRegular() {
664 err = copyfile(cp.src, cp.bind)
666 err = os.Chmod(cp.bind, st.Mode()|0777)
670 return nil, fmt.Errorf("while staging writable file from %q to %q: %v", cp.src, cp.bind, err)
674 return bindmounts, nil
677 func (runner *ContainerRunner) stopHoststat() error {
678 if runner.hoststatReporter == nil {
681 runner.hoststatReporter.Stop()
682 err := runner.hoststatLogger.Close()
684 return fmt.Errorf("error closing hoststat logs: %v", err)
689 func (runner *ContainerRunner) startHoststat() error {
690 w, err := runner.NewLogWriter("hoststat")
694 runner.hoststatLogger = NewThrottledLogger(w)
695 runner.hoststatReporter = &crunchstat.Reporter{
696 Logger: log.New(runner.hoststatLogger, "", 0),
697 CgroupRoot: runner.cgroupRoot,
698 PollPeriod: runner.statInterval,
700 runner.hoststatReporter.Start()
704 func (runner *ContainerRunner) startCrunchstat() error {
705 w, err := runner.NewLogWriter("crunchstat")
709 runner.statLogger = NewThrottledLogger(w)
710 runner.statReporter = &crunchstat.Reporter{
711 CID: runner.executor.CgroupID(),
712 Logger: log.New(runner.statLogger, "", 0),
713 CgroupParent: runner.expectCgroupParent,
714 CgroupRoot: runner.cgroupRoot,
715 PollPeriod: runner.statInterval,
716 TempDir: runner.parentTemp,
718 runner.statReporter.Start()
722 type infoCommand struct {
727 // LogHostInfo logs info about the current host, for debugging and
728 // accounting purposes. Although it's logged as "node-info", this is
729 // about the environment where crunch-run is actually running, which
730 // might differ from what's described in the node record (see
732 func (runner *ContainerRunner) LogHostInfo() (err error) {
733 w, err := runner.NewLogWriter("node-info")
738 commands := []infoCommand{
740 label: "Host Information",
741 cmd: []string{"uname", "-a"},
744 label: "CPU Information",
745 cmd: []string{"cat", "/proc/cpuinfo"},
748 label: "Memory Information",
749 cmd: []string{"cat", "/proc/meminfo"},
753 cmd: []string{"df", "-m", "/", os.TempDir()},
756 label: "Disk INodes",
757 cmd: []string{"df", "-i", "/", os.TempDir()},
761 // Run commands with informational output to be logged.
762 for _, command := range commands {
763 fmt.Fprintln(w, command.label)
764 cmd := exec.Command(command.cmd[0], command.cmd[1:]...)
767 if err := cmd.Run(); err != nil {
768 err = fmt.Errorf("While running command %q: %v", command.cmd, err)
777 return fmt.Errorf("While closing node-info logs: %v", err)
782 // LogContainerRecord gets and saves the raw JSON container record from the API server
783 func (runner *ContainerRunner) LogContainerRecord() error {
784 logged, err := runner.logAPIResponse("container", "containers", map[string]interface{}{"filters": [][]string{{"uuid", "=", runner.Container.UUID}}}, nil)
785 if !logged && err == nil {
786 err = fmt.Errorf("error: no container record found for %s", runner.Container.UUID)
791 // LogNodeRecord logs the current host's InstanceType config entry (or
792 // the arvados#node record, if running via crunch-dispatch-slurm).
793 func (runner *ContainerRunner) LogNodeRecord() error {
794 if it := os.Getenv("InstanceType"); it != "" {
795 // Dispatched via arvados-dispatch-cloud. Save
796 // InstanceType config fragment received from
797 // dispatcher on stdin.
798 w, err := runner.LogCollection.OpenFile("node.json", os.O_CREATE|os.O_WRONLY, 0666)
803 _, err = io.WriteString(w, it)
809 // Dispatched via crunch-dispatch-slurm. Look up
810 // apiserver's node record corresponding to
812 hostname := os.Getenv("SLURMD_NODENAME")
814 hostname, _ = os.Hostname()
816 _, err := runner.logAPIResponse("node", "nodes", map[string]interface{}{"filters": [][]string{{"hostname", "=", hostname}}}, func(resp interface{}) {
817 // The "info" field has admin-only info when
818 // obtained with a privileged token, and
819 // should not be logged.
820 node, ok := resp.(map[string]interface{})
828 func (runner *ContainerRunner) logAPIResponse(label, path string, params map[string]interface{}, munge func(interface{})) (logged bool, err error) {
829 writer, err := runner.LogCollection.OpenFile(label+".json", os.O_CREATE|os.O_WRONLY, 0666)
834 ArvClient: runner.DispatcherArvClient,
835 UUID: runner.Container.UUID,
836 loggingStream: label,
840 reader, err := runner.DispatcherArvClient.CallRaw("GET", path, "", "", arvadosclient.Dict(params))
842 return false, fmt.Errorf("error getting %s record: %v", label, err)
846 dec := json.NewDecoder(reader)
848 var resp map[string]interface{}
849 if err = dec.Decode(&resp); err != nil {
850 return false, fmt.Errorf("error decoding %s list response: %v", label, err)
852 items, ok := resp["items"].([]interface{})
854 return false, fmt.Errorf("error decoding %s list response: no \"items\" key in API list response", label)
855 } else if len(items) < 1 {
861 // Re-encode it using indentation to improve readability
862 enc := json.NewEncoder(w)
863 enc.SetIndent("", " ")
864 if err = enc.Encode(items[0]); err != nil {
865 return false, fmt.Errorf("error logging %s record: %v", label, err)
869 return false, fmt.Errorf("error closing %s.json in log collection: %v", label, err)
874 func (runner *ContainerRunner) getStdoutFile(mntPath string) (*os.File, error) {
875 stdoutPath := mntPath[len(runner.Container.OutputPath):]
876 index := strings.LastIndex(stdoutPath, "/")
878 subdirs := stdoutPath[:index]
880 st, err := os.Stat(runner.HostOutputDir)
882 return nil, fmt.Errorf("While Stat on temp dir: %v", err)
884 stdoutPath := filepath.Join(runner.HostOutputDir, subdirs)
885 err = os.MkdirAll(stdoutPath, st.Mode()|os.ModeSetgid|0777)
887 return nil, fmt.Errorf("While MkdirAll %q: %v", stdoutPath, err)
891 stdoutFile, err := os.Create(filepath.Join(runner.HostOutputDir, stdoutPath))
893 return nil, fmt.Errorf("While creating file %q: %v", stdoutPath, err)
896 return stdoutFile, nil
899 // CreateContainer creates the docker container.
900 func (runner *ContainerRunner) CreateContainer(imageID string, bindmounts map[string]bindmount) error {
901 var stdin io.ReadCloser = ioutil.NopCloser(bytes.NewReader(nil))
902 if mnt, ok := runner.Container.Mounts["stdin"]; ok {
909 collID = mnt.PortableDataHash
911 path := runner.ArvMountPoint + "/by_id/" + collID + "/" + mnt.Path
912 f, err := os.Open(path)
918 j, err := json.Marshal(mnt.Content)
920 return fmt.Errorf("error encoding stdin json data: %v", err)
922 stdin = ioutil.NopCloser(bytes.NewReader(j))
924 return fmt.Errorf("stdin mount has unsupported kind %q", mnt.Kind)
928 var stdout, stderr io.WriteCloser
929 if mnt, ok := runner.Container.Mounts["stdout"]; ok {
930 f, err := runner.getStdoutFile(mnt.Path)
935 } else if w, err := runner.NewLogWriter("stdout"); err != nil {
938 stdout = NewThrottledLogger(w)
941 if mnt, ok := runner.Container.Mounts["stderr"]; ok {
942 f, err := runner.getStdoutFile(mnt.Path)
947 } else if w, err := runner.NewLogWriter("stderr"); err != nil {
950 stderr = NewThrottledLogger(w)
953 env := runner.Container.Environment
954 enableNetwork := runner.enableNetwork == "always"
955 if runner.Container.RuntimeConstraints.API {
957 tok, err := runner.ContainerToken()
961 env = map[string]string{}
962 for k, v := range runner.Container.Environment {
965 env["ARVADOS_API_TOKEN"] = tok
966 env["ARVADOS_API_HOST"] = os.Getenv("ARVADOS_API_HOST")
967 env["ARVADOS_API_HOST_INSECURE"] = os.Getenv("ARVADOS_API_HOST_INSECURE")
969 workdir := runner.Container.Cwd
971 // both "" and "." mean default
974 ram := runner.Container.RuntimeConstraints.RAM
975 if !runner.enableMemoryLimit {
978 runner.executorStdin = stdin
979 runner.executorStdout = stdout
980 runner.executorStderr = stderr
981 return runner.executor.Create(containerSpec{
983 VCPUs: runner.Container.RuntimeConstraints.VCPUs,
987 BindMounts: bindmounts,
988 Command: runner.Container.Command,
989 EnableNetwork: enableNetwork,
990 NetworkMode: runner.networkMode,
991 CgroupParent: runner.setCgroupParent,
998 // StartContainer starts the docker container created by CreateContainer.
999 func (runner *ContainerRunner) StartContainer() error {
1000 runner.CrunchLog.Printf("Starting container")
1001 runner.cStateLock.Lock()
1002 defer runner.cStateLock.Unlock()
1003 if runner.cCancelled {
1006 err := runner.executor.Start()
1009 if m, e := regexp.MatchString("(?ms).*(exec|System error).*(no such file or directory|file not found).*", err.Error()); m && e == nil {
1010 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])
1012 return fmt.Errorf("could not start container: %v%s", err, advice)
1017 // WaitFinish waits for the container to terminate, capture the exit code, and
1018 // close the stdout/stderr logging.
1019 func (runner *ContainerRunner) WaitFinish() error {
1020 runner.CrunchLog.Print("Waiting for container to finish")
1021 var timeout <-chan time.Time
1022 if s := runner.Container.SchedulingParameters.MaxRunTime; s > 0 {
1023 timeout = time.After(time.Duration(s) * time.Second)
1025 ctx, cancel := context.WithCancel(context.Background())
1030 runner.CrunchLog.Printf("maximum run time exceeded. Stopping container.")
1032 case <-runner.ArvMountExit:
1033 runner.CrunchLog.Printf("arv-mount exited while container is still running. Stopping container.")
1038 exitcode, err := runner.executor.Wait(ctx)
1040 runner.checkBrokenNode(err)
1043 runner.ExitCode = &exitcode
1046 if err = runner.executorStdin.Close(); err != nil {
1047 err = fmt.Errorf("error closing container stdin: %s", err)
1048 runner.CrunchLog.Printf("%s", err)
1051 if err = runner.executorStdout.Close(); err != nil {
1052 err = fmt.Errorf("error closing container stdout: %s", err)
1053 runner.CrunchLog.Printf("%s", err)
1054 if returnErr == nil {
1058 if err = runner.executorStderr.Close(); err != nil {
1059 err = fmt.Errorf("error closing container stderr: %s", err)
1060 runner.CrunchLog.Printf("%s", err)
1061 if returnErr == nil {
1066 if runner.statReporter != nil {
1067 runner.statReporter.Stop()
1068 err = runner.statLogger.Close()
1070 runner.CrunchLog.Printf("error closing crunchstat logs: %v", err)
1076 func (runner *ContainerRunner) updateLogs() {
1077 ticker := time.NewTicker(crunchLogUpdatePeriod / 360)
1080 sigusr1 := make(chan os.Signal, 1)
1081 signal.Notify(sigusr1, syscall.SIGUSR1)
1082 defer signal.Stop(sigusr1)
1084 saveAtTime := time.Now().Add(crunchLogUpdatePeriod)
1085 saveAtSize := crunchLogUpdateSize
1091 saveAtTime = time.Now()
1093 runner.logMtx.Lock()
1094 done := runner.LogsPDH != nil
1095 runner.logMtx.Unlock()
1099 size := runner.LogCollection.Size()
1100 if size == savedSize || (time.Now().Before(saveAtTime) && size < saveAtSize) {
1103 saveAtTime = time.Now().Add(crunchLogUpdatePeriod)
1104 saveAtSize = runner.LogCollection.Size() + crunchLogUpdateSize
1105 saved, err := runner.saveLogCollection(false)
1107 runner.CrunchLog.Printf("error updating log collection: %s", err)
1111 var updated arvados.Container
1112 err = runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{
1113 "container": arvadosclient.Dict{"log": saved.PortableDataHash},
1116 runner.CrunchLog.Printf("error updating container log to %s: %s", saved.PortableDataHash, err)
1124 func (runner *ContainerRunner) reportArvMountWarning(pattern, text string) {
1125 var updated arvados.Container
1126 err := runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{
1127 "container": arvadosclient.Dict{
1128 "runtime_status": arvadosclient.Dict{
1129 "warning": "arv-mount: " + pattern,
1130 "warningDetail": text,
1135 runner.CrunchLog.Printf("error updating container runtime_status: %s", err)
1139 // CaptureOutput saves data from the container's output directory if
1140 // needed, and updates the container output accordingly.
1141 func (runner *ContainerRunner) CaptureOutput(bindmounts map[string]bindmount) error {
1142 if runner.Container.RuntimeConstraints.API {
1143 // Output may have been set directly by the container, so
1144 // refresh the container record to check.
1145 err := runner.DispatcherArvClient.Get("containers", runner.Container.UUID,
1146 nil, &runner.Container)
1150 if runner.Container.Output != "" {
1151 // Container output is already set.
1152 runner.OutputPDH = &runner.Container.Output
1157 txt, err := (&copier{
1158 client: runner.containerClient,
1159 arvClient: runner.ContainerArvClient,
1160 keepClient: runner.ContainerKeepClient,
1161 hostOutputDir: runner.HostOutputDir,
1162 ctrOutputDir: runner.Container.OutputPath,
1163 bindmounts: bindmounts,
1164 mounts: runner.Container.Mounts,
1165 secretMounts: runner.SecretMounts,
1166 logger: runner.CrunchLog,
1171 if n := len(regexp.MustCompile(` [0-9a-f]+\+\S*\+R`).FindAllStringIndex(txt, -1)); n > 0 {
1172 runner.CrunchLog.Printf("Copying %d data blocks from remote input collections...", n)
1173 fs, err := (&arvados.Collection{ManifestText: txt}).FileSystem(runner.containerClient, runner.ContainerKeepClient)
1177 txt, err = fs.MarshalManifest(".")
1182 var resp arvados.Collection
1183 err = runner.ContainerArvClient.Create("collections", arvadosclient.Dict{
1184 "ensure_unique_name": true,
1185 "collection": arvadosclient.Dict{
1187 "name": "output for " + runner.Container.UUID,
1188 "manifest_text": txt,
1192 return fmt.Errorf("error creating output collection: %v", err)
1194 runner.OutputPDH = &resp.PortableDataHash
1198 func (runner *ContainerRunner) CleanupDirs() {
1199 if runner.ArvMount != nil {
1201 umount := exec.Command("arv-mount", fmt.Sprintf("--unmount-timeout=%d", delay), "--unmount", runner.ArvMountPoint)
1202 umount.Stdout = runner.CrunchLog
1203 umount.Stderr = runner.CrunchLog
1204 runner.CrunchLog.Printf("Running %v", umount.Args)
1205 umnterr := umount.Start()
1208 runner.CrunchLog.Printf("Error unmounting: %v", umnterr)
1209 runner.ArvMount.Process.Kill()
1211 // If arv-mount --unmount gets stuck for any reason, we
1212 // don't want to wait for it forever. Do Wait() in a goroutine
1213 // so it doesn't block crunch-run.
1214 umountExit := make(chan error)
1216 mnterr := umount.Wait()
1218 runner.CrunchLog.Printf("Error unmounting: %v", mnterr)
1220 umountExit <- mnterr
1223 for again := true; again; {
1229 case <-runner.ArvMountExit:
1231 case <-time.After(time.Duration((delay + 1) * int64(time.Second))):
1232 runner.CrunchLog.Printf("Timed out waiting for unmount")
1234 umount.Process.Kill()
1236 runner.ArvMount.Process.Kill()
1240 runner.ArvMount = nil
1243 if runner.ArvMountPoint != "" {
1244 if rmerr := os.Remove(runner.ArvMountPoint); rmerr != nil {
1245 runner.CrunchLog.Printf("While cleaning up arv-mount directory %s: %v", runner.ArvMountPoint, rmerr)
1247 runner.ArvMountPoint = ""
1250 if rmerr := os.RemoveAll(runner.parentTemp); rmerr != nil {
1251 runner.CrunchLog.Printf("While cleaning up temporary directory %s: %v", runner.parentTemp, rmerr)
1255 // CommitLogs posts the collection containing the final container logs.
1256 func (runner *ContainerRunner) CommitLogs() error {
1258 // Hold cStateLock to prevent races on CrunchLog (e.g., stop()).
1259 runner.cStateLock.Lock()
1260 defer runner.cStateLock.Unlock()
1262 runner.CrunchLog.Print(runner.finalState)
1264 if runner.arvMountLog != nil {
1265 runner.arvMountLog.Close()
1267 runner.CrunchLog.Close()
1269 // Closing CrunchLog above allows them to be committed to Keep at this
1270 // point, but re-open crunch log with ArvClient in case there are any
1271 // other further errors (such as failing to write the log to Keep!)
1272 // while shutting down
1273 runner.CrunchLog = NewThrottledLogger(&ArvLogWriter{
1274 ArvClient: runner.DispatcherArvClient,
1275 UUID: runner.Container.UUID,
1276 loggingStream: "crunch-run",
1279 runner.CrunchLog.Immediate = log.New(os.Stderr, runner.Container.UUID+" ", 0)
1282 if runner.keepstoreLogger != nil {
1283 // Flush any buffered logs from our local keepstore
1284 // process. Discard anything logged after this point
1285 // -- it won't end up in the log collection, so
1286 // there's no point writing it to the collectionfs.
1287 runner.keepstoreLogbuf.SetWriter(io.Discard)
1288 runner.keepstoreLogger.Close()
1289 runner.keepstoreLogger = nil
1292 if runner.LogsPDH != nil {
1293 // If we have already assigned something to LogsPDH,
1294 // we must be closing the re-opened log, which won't
1295 // end up getting attached to the container record and
1296 // therefore doesn't need to be saved as a collection
1297 // -- it exists only to send logs to other channels.
1301 saved, err := runner.saveLogCollection(true)
1303 return fmt.Errorf("error saving log collection: %s", err)
1305 runner.logMtx.Lock()
1306 defer runner.logMtx.Unlock()
1307 runner.LogsPDH = &saved.PortableDataHash
1311 func (runner *ContainerRunner) saveLogCollection(final bool) (response arvados.Collection, err error) {
1312 runner.logMtx.Lock()
1313 defer runner.logMtx.Unlock()
1314 if runner.LogsPDH != nil {
1315 // Already finalized.
1318 updates := arvadosclient.Dict{
1319 "name": "logs for " + runner.Container.UUID,
1321 mt, err1 := runner.LogCollection.MarshalManifest(".")
1323 // Only send updated manifest text if there was no
1325 updates["manifest_text"] = mt
1328 // Even if flushing the manifest had an error, we still want
1329 // to update the log record, if possible, to push the trash_at
1330 // and delete_at times into the future. Details on bug
1333 updates["is_trashed"] = true
1335 exp := time.Now().Add(crunchLogUpdatePeriod * 24)
1336 updates["trash_at"] = exp
1337 updates["delete_at"] = exp
1339 reqBody := arvadosclient.Dict{"collection": updates}
1341 if runner.logUUID == "" {
1342 reqBody["ensure_unique_name"] = true
1343 err2 = runner.DispatcherArvClient.Create("collections", reqBody, &response)
1345 err2 = runner.DispatcherArvClient.Update("collections", runner.logUUID, reqBody, &response)
1348 runner.logUUID = response.UUID
1351 if err1 != nil || err2 != nil {
1352 err = fmt.Errorf("error recording logs: %q, %q", err1, err2)
1357 // UpdateContainerRunning updates the container state to "Running"
1358 func (runner *ContainerRunner) UpdateContainerRunning() error {
1359 runner.cStateLock.Lock()
1360 defer runner.cStateLock.Unlock()
1361 if runner.cCancelled {
1364 return runner.DispatcherArvClient.Update("containers", runner.Container.UUID,
1365 arvadosclient.Dict{"container": arvadosclient.Dict{"state": "Running", "gateway_address": runner.gateway.Address}}, nil)
1368 // ContainerToken returns the api_token the container (and any
1369 // arv-mount processes) are allowed to use.
1370 func (runner *ContainerRunner) ContainerToken() (string, error) {
1371 if runner.token != "" {
1372 return runner.token, nil
1375 var auth arvados.APIClientAuthorization
1376 err := runner.DispatcherArvClient.Call("GET", "containers", runner.Container.UUID, "auth", nil, &auth)
1380 runner.token = fmt.Sprintf("v2/%s/%s/%s", auth.UUID, auth.APIToken, runner.Container.UUID)
1381 return runner.token, nil
1384 // UpdateContainerFinal updates the container record state on API
1385 // server to "Complete" or "Cancelled"
1386 func (runner *ContainerRunner) UpdateContainerFinal() error {
1387 update := arvadosclient.Dict{}
1388 update["state"] = runner.finalState
1389 if runner.LogsPDH != nil {
1390 update["log"] = *runner.LogsPDH
1392 if runner.finalState == "Complete" {
1393 if runner.ExitCode != nil {
1394 update["exit_code"] = *runner.ExitCode
1396 if runner.OutputPDH != nil {
1397 update["output"] = *runner.OutputPDH
1400 return runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{"container": update}, nil)
1403 // IsCancelled returns the value of Cancelled, with goroutine safety.
1404 func (runner *ContainerRunner) IsCancelled() bool {
1405 runner.cStateLock.Lock()
1406 defer runner.cStateLock.Unlock()
1407 return runner.cCancelled
1410 // NewArvLogWriter creates an ArvLogWriter
1411 func (runner *ContainerRunner) NewArvLogWriter(name string) (io.WriteCloser, error) {
1412 writer, err := runner.LogCollection.OpenFile(name+".txt", os.O_CREATE|os.O_WRONLY, 0666)
1416 return &ArvLogWriter{
1417 ArvClient: runner.DispatcherArvClient,
1418 UUID: runner.Container.UUID,
1419 loggingStream: name,
1420 writeCloser: writer,
1424 // Run the full container lifecycle.
1425 func (runner *ContainerRunner) Run() (err error) {
1426 runner.CrunchLog.Printf("crunch-run %s started", cmd.Version.String())
1427 runner.CrunchLog.Printf("Executing container '%s' using %s runtime", runner.Container.UUID, runner.executor.Runtime())
1429 hostname, hosterr := os.Hostname()
1431 runner.CrunchLog.Printf("Error getting hostname '%v'", hosterr)
1433 runner.CrunchLog.Printf("Executing on host '%s'", hostname)
1436 runner.finalState = "Queued"
1439 runner.CleanupDirs()
1441 runner.CrunchLog.Printf("crunch-run finished")
1442 runner.CrunchLog.Close()
1445 err = runner.fetchContainerRecord()
1449 if runner.Container.State != "Locked" {
1450 return fmt.Errorf("dispatch error detected: container %q has state %q", runner.Container.UUID, runner.Container.State)
1453 var bindmounts map[string]bindmount
1455 // checkErr prints e (unless it's nil) and sets err to
1456 // e (unless err is already non-nil). Thus, if err
1457 // hasn't already been assigned when Run() returns,
1458 // this cleanup func will cause Run() to return the
1459 // first non-nil error that is passed to checkErr().
1460 checkErr := func(errorIn string, e error) {
1464 runner.CrunchLog.Printf("error in %s: %v", errorIn, e)
1468 if runner.finalState == "Complete" {
1469 // There was an error in the finalization.
1470 runner.finalState = "Cancelled"
1474 // Log the error encountered in Run(), if any
1475 checkErr("Run", err)
1477 if runner.finalState == "Queued" {
1478 runner.UpdateContainerFinal()
1482 if runner.IsCancelled() {
1483 runner.finalState = "Cancelled"
1484 // but don't return yet -- we still want to
1485 // capture partial output and write logs
1488 if bindmounts != nil {
1489 checkErr("CaptureOutput", runner.CaptureOutput(bindmounts))
1491 checkErr("stopHoststat", runner.stopHoststat())
1492 checkErr("CommitLogs", runner.CommitLogs())
1493 runner.CleanupDirs()
1494 checkErr("UpdateContainerFinal", runner.UpdateContainerFinal())
1497 runner.setupSignals()
1498 err = runner.startHoststat()
1503 // set up FUSE mount and binds
1504 bindmounts, err = runner.SetupMounts()
1506 runner.finalState = "Cancelled"
1507 err = fmt.Errorf("While setting up mounts: %v", err)
1511 // check for and/or load image
1512 imageID, err := runner.LoadImage()
1514 if !runner.checkBrokenNode(err) {
1515 // Failed to load image but not due to a "broken node"
1516 // condition, probably user error.
1517 runner.finalState = "Cancelled"
1519 err = fmt.Errorf("While loading container image: %v", err)
1523 err = runner.CreateContainer(imageID, bindmounts)
1527 err = runner.LogHostInfo()
1531 err = runner.LogNodeRecord()
1535 err = runner.LogContainerRecord()
1540 if runner.IsCancelled() {
1544 err = runner.UpdateContainerRunning()
1548 runner.finalState = "Cancelled"
1550 err = runner.startCrunchstat()
1555 err = runner.StartContainer()
1557 runner.checkBrokenNode(err)
1561 err = runner.WaitFinish()
1562 if err == nil && !runner.IsCancelled() {
1563 runner.finalState = "Complete"
1568 // Fetch the current container record (uuid = runner.Container.UUID)
1569 // into runner.Container.
1570 func (runner *ContainerRunner) fetchContainerRecord() error {
1571 reader, err := runner.DispatcherArvClient.CallRaw("GET", "containers", runner.Container.UUID, "", nil)
1573 return fmt.Errorf("error fetching container record: %v", err)
1575 defer reader.Close()
1577 dec := json.NewDecoder(reader)
1579 err = dec.Decode(&runner.Container)
1581 return fmt.Errorf("error decoding container record: %v", err)
1585 SecretMounts map[string]arvados.Mount `json:"secret_mounts"`
1588 containerToken, err := runner.ContainerToken()
1590 return fmt.Errorf("error getting container token: %v", err)
1593 runner.ContainerArvClient, runner.ContainerKeepClient,
1594 runner.containerClient, err = runner.MkArvClient(containerToken)
1596 return fmt.Errorf("error creating container API client: %v", err)
1599 runner.ContainerKeepClient.SetStorageClasses(runner.Container.OutputStorageClasses)
1600 runner.DispatcherKeepClient.SetStorageClasses(runner.Container.OutputStorageClasses)
1602 err = runner.ContainerArvClient.Call("GET", "containers", runner.Container.UUID, "secret_mounts", nil, &sm)
1604 if apierr, ok := err.(arvadosclient.APIServerError); !ok || apierr.HttpStatusCode != 404 {
1605 return fmt.Errorf("error fetching secret_mounts: %v", err)
1607 // ok && apierr.HttpStatusCode == 404, which means
1608 // secret_mounts isn't supported by this API server.
1610 runner.SecretMounts = sm.SecretMounts
1615 // NewContainerRunner creates a new container runner.
1616 func NewContainerRunner(dispatcherClient *arvados.Client,
1617 dispatcherArvClient IArvadosClient,
1618 dispatcherKeepClient IKeepClient,
1619 containerUUID string) (*ContainerRunner, error) {
1621 cr := &ContainerRunner{
1622 dispatcherClient: dispatcherClient,
1623 DispatcherArvClient: dispatcherArvClient,
1624 DispatcherKeepClient: dispatcherKeepClient,
1626 cr.NewLogWriter = cr.NewArvLogWriter
1627 cr.RunArvMount = cr.ArvMountCmd
1628 cr.MkTempDir = ioutil.TempDir
1629 cr.MkArvClient = func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error) {
1630 cl, err := arvadosclient.MakeArvadosClient()
1632 return nil, nil, nil, err
1635 kc, err := keepclient.MakeKeepClient(cl)
1637 return nil, nil, nil, err
1639 c2 := arvados.NewClientFromEnv()
1640 c2.AuthToken = token
1641 return cl, kc, c2, nil
1644 cr.LogCollection, err = (&arvados.Collection{}).FileSystem(cr.dispatcherClient, cr.DispatcherKeepClient)
1648 cr.Container.UUID = containerUUID
1649 w, err := cr.NewLogWriter("crunch-run")
1653 cr.CrunchLog = NewThrottledLogger(w)
1654 cr.CrunchLog.Immediate = log.New(os.Stderr, containerUUID+" ", 0)
1656 loadLogThrottleParams(dispatcherArvClient)
1662 func (command) RunCommand(prog string, args []string, stdin io.Reader, stdout, stderr io.Writer) int {
1663 log := log.New(stderr, "", 0)
1664 flags := flag.NewFlagSet(prog, flag.ContinueOnError)
1665 statInterval := flags.Duration("crunchstat-interval", 10*time.Second, "sampling period for periodic resource usage reporting")
1666 cgroupRoot := flags.String("cgroup-root", "/sys/fs/cgroup", "path to sysfs cgroup tree")
1667 cgroupParent := flags.String("cgroup-parent", "docker", "name of container's parent cgroup (ignored if -cgroup-parent-subsystem is used)")
1668 cgroupParentSubsystem := flags.String("cgroup-parent-subsystem", "", "use current cgroup for given subsystem as parent cgroup for container")
1669 caCertsPath := flags.String("ca-certs", "", "Path to TLS root certificates")
1670 detach := flags.Bool("detach", false, "Detach from parent process and run in the background")
1671 stdinConfig := flags.Bool("stdin-config", false, "Load config and environment variables from JSON message on stdin")
1672 sleep := flags.Duration("sleep", 0, "Delay before starting (testing use only)")
1673 kill := flags.Int("kill", -1, "Send signal to an existing crunch-run process for given UUID")
1674 list := flags.Bool("list", false, "List UUIDs of existing crunch-run processes")
1675 enableMemoryLimit := flags.Bool("enable-memory-limit", true, "tell container runtime to limit container's memory usage")
1676 enableNetwork := flags.String("container-enable-networking", "default", "enable networking \"always\" (for all containers) or \"default\" (for containers that request it)")
1677 networkMode := flags.String("container-network-mode", "default", `Docker network mode for container (use any argument valid for docker --net)`)
1678 memprofile := flags.String("memprofile", "", "write memory profile to `file` after running container")
1679 runtimeEngine := flags.String("runtime-engine", "docker", "container runtime: docker or singularity")
1680 flags.Duration("check-containerd", 0, "Ignored. Exists for compatibility with older versions.")
1682 ignoreDetachFlag := false
1683 if len(args) > 0 && args[0] == "-no-detach" {
1684 // This process was invoked by a parent process, which
1685 // has passed along its own arguments, including
1686 // -detach, after the leading -no-detach flag. Strip
1687 // the leading -no-detach flag (it's not recognized by
1688 // flags.Parse()) and ignore the -detach flag that
1691 ignoreDetachFlag = true
1694 if err := flags.Parse(args); err == flag.ErrHelp {
1696 } else if err != nil {
1701 containerUUID := flags.Arg(0)
1704 case *detach && !ignoreDetachFlag:
1705 return Detach(containerUUID, prog, args, os.Stdin, os.Stdout, os.Stderr)
1707 return KillProcess(containerUUID, syscall.Signal(*kill), os.Stdout, os.Stderr)
1709 return ListProcesses(os.Stdout, os.Stderr)
1712 if len(containerUUID) != 27 {
1713 log.Printf("usage: %s [options] UUID", prog)
1719 err := json.NewDecoder(stdin).Decode(&conf)
1721 log.Printf("decode stdin: %s", err)
1724 for k, v := range conf.Env {
1725 err = os.Setenv(k, v)
1727 log.Printf("setenv(%q): %s", k, err)
1731 if conf.Cluster != nil {
1732 // ClusterID is missing from the JSON
1733 // representation, but we need it to generate
1734 // a valid config file for keepstore, so we
1735 // fill it using the container UUID prefix.
1736 conf.Cluster.ClusterID = containerUUID[:5]
1740 log.Printf("crunch-run %s started", cmd.Version.String())
1743 if *caCertsPath != "" {
1744 arvadosclient.CertFiles = []string{*caCertsPath}
1747 var keepstoreLogbuf bufThenWrite
1748 keepstore, err := startLocalKeepstore(conf, io.MultiWriter(&keepstoreLogbuf, stderr))
1753 if keepstore != nil {
1754 defer keepstore.Process.Kill()
1757 api, err := arvadosclient.MakeArvadosClient()
1759 log.Printf("%s: %v", containerUUID, err)
1764 kc, err := keepclient.MakeKeepClient(api)
1766 log.Printf("%s: %v", containerUUID, err)
1769 kc.BlockCache = &keepclient.BlockCache{MaxBlocks: 2}
1772 cr, err := NewContainerRunner(arvados.NewClientFromEnv(), api, kc, containerUUID)
1778 if keepstore == nil {
1779 // Log explanation (if any) for why we're not running
1780 // a local keepstore.
1781 var buf bytes.Buffer
1782 keepstoreLogbuf.SetWriter(&buf)
1784 cr.CrunchLog.Printf("%s", strings.TrimSpace(buf.String()))
1786 } else if logWhat := conf.Cluster.Containers.LocalKeepLogsToContainerLog; logWhat == "none" {
1787 cr.CrunchLog.Printf("using local keepstore process (pid %d) at %s", keepstore.Process.Pid, os.Getenv("ARVADOS_KEEP_SERVICES"))
1788 keepstoreLogbuf.SetWriter(io.Discard)
1790 cr.CrunchLog.Printf("using local keepstore process (pid %d) at %s, writing logs to keepstore.txt in log collection", keepstore.Process.Pid, os.Getenv("ARVADOS_KEEP_SERVICES"))
1791 logwriter, err := cr.NewLogWriter("keepstore")
1796 cr.keepstoreLogger = NewThrottledLogger(logwriter)
1798 var writer io.WriteCloser = cr.keepstoreLogger
1799 if logWhat == "errors" {
1800 writer = &filterKeepstoreErrorsOnly{WriteCloser: writer}
1801 } else if logWhat != "all" {
1802 // should have been caught earlier by
1803 // dispatcher's config loader
1804 log.Printf("invalid value for Containers.LocalKeepLogsToContainerLog: %q", logWhat)
1807 err = keepstoreLogbuf.SetWriter(writer)
1812 cr.keepstoreLogbuf = &keepstoreLogbuf
1815 switch *runtimeEngine {
1817 cr.executor, err = newDockerExecutor(containerUUID, cr.CrunchLog.Printf, cr.containerWatchdogInterval)
1819 cr.executor, err = newSingularityExecutor(cr.CrunchLog.Printf)
1821 cr.CrunchLog.Printf("%s: unsupported RuntimeEngine %q", containerUUID, *runtimeEngine)
1822 cr.CrunchLog.Close()
1826 cr.CrunchLog.Printf("%s: %v", containerUUID, err)
1827 cr.checkBrokenNode(err)
1828 cr.CrunchLog.Close()
1831 defer cr.executor.Close()
1833 gwAuthSecret := os.Getenv("GatewayAuthSecret")
1834 os.Unsetenv("GatewayAuthSecret")
1835 if gwAuthSecret == "" {
1836 // not safe to run a gateway service without an auth
1838 cr.CrunchLog.Printf("Not starting a gateway server (GatewayAuthSecret was not provided by dispatcher)")
1839 } else if gwListen := os.Getenv("GatewayAddress"); gwListen == "" {
1840 // dispatcher did not tell us which external IP
1841 // address to advertise --> no gateway service
1842 cr.CrunchLog.Printf("Not starting a gateway server (GatewayAddress was not provided by dispatcher)")
1843 } else if de, ok := cr.executor.(*dockerExecutor); ok {
1844 cr.gateway = Gateway{
1846 AuthSecret: gwAuthSecret,
1847 ContainerUUID: containerUUID,
1848 DockerContainerID: &de.containerID,
1850 ContainerIPAddress: dockerContainerIPAddress(&de.containerID),
1852 err = cr.gateway.Start()
1854 log.Printf("error starting gateway server: %s", err)
1859 parentTemp, tmperr := cr.MkTempDir("", "crunch-run."+containerUUID+".")
1861 log.Printf("%s: %v", containerUUID, tmperr)
1865 cr.parentTemp = parentTemp
1866 cr.statInterval = *statInterval
1867 cr.cgroupRoot = *cgroupRoot
1868 cr.expectCgroupParent = *cgroupParent
1869 cr.enableMemoryLimit = *enableMemoryLimit
1870 cr.enableNetwork = *enableNetwork
1871 cr.networkMode = *networkMode
1872 if *cgroupParentSubsystem != "" {
1873 p := findCgroup(*cgroupParentSubsystem)
1874 cr.setCgroupParent = p
1875 cr.expectCgroupParent = p
1880 if *memprofile != "" {
1881 f, err := os.Create(*memprofile)
1883 log.Printf("could not create memory profile: %s", err)
1885 runtime.GC() // get up-to-date statistics
1886 if err := pprof.WriteHeapProfile(f); err != nil {
1887 log.Printf("could not write memory profile: %s", err)
1889 closeerr := f.Close()
1890 if closeerr != nil {
1891 log.Printf("closing memprofile file: %s", err)
1896 log.Printf("%s: %v", containerUUID, runerr)
1902 func startLocalKeepstore(configData ConfigData, logbuf io.Writer) (*exec.Cmd, error) {
1903 if configData.Cluster == nil || configData.KeepBuffers < 1 {
1906 for uuid, vol := range configData.Cluster.Volumes {
1907 if len(vol.AccessViaHosts) > 0 {
1908 fmt.Fprintf(logbuf, "not starting a local keepstore process because a volume (%s) uses AccessViaHosts\n", uuid)
1911 if !vol.ReadOnly && vol.Replication < configData.Cluster.Collections.DefaultReplication {
1912 fmt.Fprintf(logbuf, "not starting a local keepstore process because a writable volume (%s) has replication less than Collections.DefaultReplication (%d < %d)\n", uuid, vol.Replication, configData.Cluster.Collections.DefaultReplication)
1917 // Rather than have an alternate way to tell keepstore how
1918 // many buffers to use when starting it this way, we just
1919 // modify the cluster configuration that we feed it on stdin.
1920 configData.Cluster.API.MaxKeepBlobBuffers = configData.KeepBuffers
1922 ln, err := net.Listen("tcp", "localhost:0")
1926 _, port, err := net.SplitHostPort(ln.Addr().String())
1932 url := "http://localhost:" + port
1934 fmt.Fprintf(logbuf, "starting keepstore on %s\n", url)
1936 var confJSON bytes.Buffer
1937 err = json.NewEncoder(&confJSON).Encode(arvados.Config{
1938 Clusters: map[string]arvados.Cluster{
1939 configData.Cluster.ClusterID: *configData.Cluster,
1945 cmd := exec.Command("/proc/self/exe", "keepstore", "-config=-")
1946 if target, err := os.Readlink(cmd.Path); err == nil && strings.HasSuffix(target, ".test") {
1947 // If we're a 'go test' process, running
1948 // /proc/self/exe would start the test suite in a
1949 // child process, which is not what we want.
1950 cmd.Path, _ = exec.LookPath("go")
1951 cmd.Args = append([]string{"go", "run", "../../cmd/arvados-server"}, cmd.Args[1:]...)
1952 cmd.Env = os.Environ()
1954 cmd.Stdin = &confJSON
1957 cmd.Env = append(cmd.Env,
1959 "ARVADOS_SERVICE_INTERNAL_URL="+url)
1962 return nil, fmt.Errorf("error starting keepstore process: %w", err)
1969 ctx, cancel := context.WithDeadline(context.Background(), time.Now().Add(time.Second*10))
1971 poll := time.NewTicker(time.Second / 10)
1973 client := http.Client{}
1975 testReq, err := http.NewRequestWithContext(ctx, "GET", url+"/_health/ping", nil)
1976 testReq.Header.Set("Authorization", "Bearer "+configData.Cluster.ManagementToken)
1980 resp, err := client.Do(testReq)
1983 if resp.StatusCode == http.StatusOK {
1988 return nil, fmt.Errorf("keepstore child process exited")
1990 if ctx.Err() != nil {
1991 return nil, fmt.Errorf("timed out waiting for new keepstore process to report healthy")
1994 os.Setenv("ARVADOS_KEEP_SERVICES", url)