1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
34 "git.arvados.org/arvados.git/lib/cmd"
35 "git.arvados.org/arvados.git/lib/config"
36 "git.arvados.org/arvados.git/lib/crunchstat"
37 "git.arvados.org/arvados.git/sdk/go/arvados"
38 "git.arvados.org/arvados.git/sdk/go/arvadosclient"
39 "git.arvados.org/arvados.git/sdk/go/ctxlog"
40 "git.arvados.org/arvados.git/sdk/go/keepclient"
41 "git.arvados.org/arvados.git/sdk/go/manifest"
42 "golang.org/x/sys/unix"
47 var Command = command{}
49 // ConfigData contains environment variables and (when needed) cluster
50 // configuration, passed from dispatchcloud to crunch-run on stdin.
51 type ConfigData struct {
54 Cluster *arvados.Cluster
57 // IArvadosClient is the minimal Arvados API methods used by crunch-run.
58 type IArvadosClient interface {
59 Create(resourceType string, parameters arvadosclient.Dict, output interface{}) error
60 Get(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error
61 Update(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error
62 Call(method, resourceType, uuid, action string, parameters arvadosclient.Dict, output interface{}) error
63 CallRaw(method string, resourceType string, uuid string, action string, parameters arvadosclient.Dict) (reader io.ReadCloser, err error)
64 Discovery(key string) (interface{}, error)
67 // ErrCancelled is the error returned when the container is cancelled.
68 var ErrCancelled = errors.New("Cancelled")
70 // IKeepClient is the minimal Keep API methods used by crunch-run.
71 type IKeepClient interface {
72 BlockWrite(context.Context, arvados.BlockWriteOptions) (arvados.BlockWriteResponse, error)
73 ReadAt(locator string, p []byte, off int) (int, error)
74 ManifestFileReader(m manifest.Manifest, filename string) (arvados.File, error)
75 LocalLocator(locator string) (string, error)
77 SetStorageClasses(sc []string)
80 // NewLogWriter is a factory function to create a new log writer.
81 type NewLogWriter func(name string) (io.WriteCloser, error)
83 type RunArvMount func(cmdline []string, tok string) (*exec.Cmd, error)
85 type MkTempDir func(string, string) (string, error)
87 type PsProcess interface {
88 CmdlineSlice() ([]string, error)
91 // ContainerRunner is the main stateful struct used for a single execution of a
93 type ContainerRunner struct {
94 executor containerExecutor
95 executorStdin io.Closer
96 executorStdout io.Closer
97 executorStderr io.Closer
99 // Dispatcher client is initialized with the Dispatcher token.
100 // This is a privileged token used to manage container status
103 // We have both dispatcherClient and DispatcherArvClient
104 // because there are two different incompatible Arvados Go
105 // SDKs and we have to use both (hopefully this gets fixed in
107 dispatcherClient *arvados.Client
108 DispatcherArvClient IArvadosClient
109 DispatcherKeepClient IKeepClient
111 // Container client is initialized with the Container token
112 // This token controls the permissions of the container, and
113 // must be used for operations such as reading collections.
115 // Same comment as above applies to
116 // containerClient/ContainerArvClient.
117 containerClient *arvados.Client
118 ContainerArvClient IArvadosClient
119 ContainerKeepClient IKeepClient
121 Container arvados.Container
124 NewLogWriter NewLogWriter
125 CrunchLog *ThrottledLogger
128 LogCollection arvados.CollectionFileSystem
130 RunArvMount RunArvMount
135 Volumes map[string]struct{}
137 SigChan chan os.Signal
138 ArvMountExit chan error
139 SecretMounts map[string]arvados.Mount
140 MkArvClient func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error)
144 keepstoreLogger io.WriteCloser
145 keepstoreLogbuf *bufThenWrite
146 statLogger io.WriteCloser
147 statReporter *crunchstat.Reporter
148 hoststatLogger io.WriteCloser
149 hoststatReporter *crunchstat.Reporter
150 statInterval time.Duration
152 // What we expect the container's cgroup parent to be.
153 expectCgroupParent string
154 // What we tell docker to use as the container's cgroup
155 // parent. Note: Ideally we would use the same field for both
156 // expectCgroupParent and setCgroupParent, and just make it
157 // default to "docker". However, when using docker < 1.10 with
158 // systemd, specifying a non-empty cgroup parent (even the
159 // default value "docker") hits a docker bug
160 // (https://github.com/docker/docker/issues/17126). Using two
161 // separate fields makes it possible to use the "expect cgroup
162 // parent to be X" feature even on sites where the "specify
163 // cgroup parent" feature breaks.
164 setCgroupParent string
166 cStateLock sync.Mutex
167 cCancelled bool // StopContainer() invoked
169 enableMemoryLimit bool
170 enableNetwork string // one of "default" or "always"
171 networkMode string // "none", "host", or "" -- passed through to executor
172 brokenNodeHook string // script to run if node appears to be broken
173 arvMountLog *ThrottledLogger
175 containerWatchdogInterval time.Duration
180 // setupSignals sets up signal handling to gracefully terminate the
181 // underlying container and update state when receiving a TERM, INT or
183 func (runner *ContainerRunner) setupSignals() {
184 runner.SigChan = make(chan os.Signal, 1)
185 signal.Notify(runner.SigChan, syscall.SIGTERM)
186 signal.Notify(runner.SigChan, syscall.SIGINT)
187 signal.Notify(runner.SigChan, syscall.SIGQUIT)
189 go func(sig chan os.Signal) {
196 // stop the underlying container.
197 func (runner *ContainerRunner) stop(sig os.Signal) {
198 runner.cStateLock.Lock()
199 defer runner.cStateLock.Unlock()
201 runner.CrunchLog.Printf("caught signal: %v", sig)
203 runner.cCancelled = true
204 runner.CrunchLog.Printf("stopping container")
205 err := runner.executor.Stop()
207 runner.CrunchLog.Printf("error stopping container: %s", err)
211 var errorBlacklist = []string{
212 "(?ms).*[Cc]annot connect to the Docker daemon.*",
213 "(?ms).*oci runtime error.*starting container process.*container init.*mounting.*to rootfs.*no such file or directory.*",
214 "(?ms).*grpc: the connection is unavailable.*",
217 func (runner *ContainerRunner) runBrokenNodeHook() {
218 if runner.brokenNodeHook == "" {
219 path := filepath.Join(lockdir, brokenfile)
220 runner.CrunchLog.Printf("Writing %s to mark node as broken", path)
221 f, err := os.OpenFile(path, os.O_CREATE|os.O_RDWR, 0700)
223 runner.CrunchLog.Printf("Error writing %s: %s", path, err)
228 runner.CrunchLog.Printf("Running broken node hook %q", runner.brokenNodeHook)
230 c := exec.Command(runner.brokenNodeHook)
231 c.Stdout = runner.CrunchLog
232 c.Stderr = runner.CrunchLog
235 runner.CrunchLog.Printf("Error running broken node hook: %v", err)
240 func (runner *ContainerRunner) checkBrokenNode(goterr error) bool {
241 for _, d := range errorBlacklist {
242 if m, e := regexp.MatchString(d, goterr.Error()); m && e == nil {
243 runner.CrunchLog.Printf("Error suggests node is unable to run containers: %v", goterr)
244 runner.runBrokenNodeHook()
251 // LoadImage determines the docker image id from the container record and
252 // checks if it is available in the local Docker image store. If not, it loads
253 // the image from Keep.
254 func (runner *ContainerRunner) LoadImage() (string, error) {
255 runner.CrunchLog.Printf("Fetching Docker image from collection '%s'", runner.Container.ContainerImage)
257 d, err := os.Open(runner.ArvMountPoint + "/by_id/" + runner.Container.ContainerImage)
262 allfiles, err := d.Readdirnames(-1)
266 var tarfiles []string
267 for _, fnm := range allfiles {
268 if strings.HasSuffix(fnm, ".tar") {
269 tarfiles = append(tarfiles, fnm)
272 if len(tarfiles) == 0 {
273 return "", fmt.Errorf("image collection does not include a .tar image file")
275 if len(tarfiles) > 1 {
276 return "", fmt.Errorf("cannot choose from multiple tar files in image collection: %v", tarfiles)
278 imageID := tarfiles[0][:len(tarfiles[0])-4]
279 imageTarballPath := runner.ArvMountPoint + "/by_id/" + runner.Container.ContainerImage + "/" + imageID + ".tar"
280 runner.CrunchLog.Printf("Using Docker image id %q", imageID)
282 runner.CrunchLog.Print("Loading Docker image from keep")
283 err = runner.executor.LoadImage(imageID, imageTarballPath, runner.Container, runner.ArvMountPoint,
284 runner.containerClient)
292 func (runner *ContainerRunner) ArvMountCmd(cmdline []string, token string) (c *exec.Cmd, err error) {
293 c = exec.Command(cmdline[0], cmdline[1:]...)
295 // Copy our environment, but override ARVADOS_API_TOKEN with
296 // the container auth token.
298 for _, s := range os.Environ() {
299 if !strings.HasPrefix(s, "ARVADOS_API_TOKEN=") {
300 c.Env = append(c.Env, s)
303 c.Env = append(c.Env, "ARVADOS_API_TOKEN="+token)
305 w, err := runner.NewLogWriter("arv-mount")
309 runner.arvMountLog = NewThrottledLogger(w)
310 scanner := logScanner{
313 "Block not found error",
314 "Unhandled exception during FUSE operation",
316 ReportFunc: runner.reportArvMountWarning,
318 c.Stdout = runner.arvMountLog
319 c.Stderr = io.MultiWriter(runner.arvMountLog, os.Stderr, &scanner)
321 runner.CrunchLog.Printf("Running %v", c.Args)
328 statReadme := make(chan bool)
329 runner.ArvMountExit = make(chan error)
334 time.Sleep(100 * time.Millisecond)
335 _, err = os.Stat(fmt.Sprintf("%s/by_id/README", runner.ArvMountPoint))
347 runner.CrunchLog.Printf("Arv-mount exit error: %v", mnterr)
349 runner.ArvMountExit <- mnterr
350 close(runner.ArvMountExit)
356 case err := <-runner.ArvMountExit:
357 runner.ArvMount = nil
365 func (runner *ContainerRunner) SetupArvMountPoint(prefix string) (err error) {
366 if runner.ArvMountPoint == "" {
367 runner.ArvMountPoint, err = runner.MkTempDir(runner.parentTemp, prefix)
372 func copyfile(src string, dst string) (err error) {
373 srcfile, err := os.Open(src)
378 os.MkdirAll(path.Dir(dst), 0777)
380 dstfile, err := os.Create(dst)
384 _, err = io.Copy(dstfile, srcfile)
389 err = srcfile.Close()
390 err2 := dstfile.Close()
403 func (runner *ContainerRunner) SetupMounts() (map[string]bindmount, error) {
404 bindmounts := map[string]bindmount{}
405 err := runner.SetupArvMountPoint("keep")
407 return nil, fmt.Errorf("While creating keep mount temp dir: %v", err)
410 token, err := runner.ContainerToken()
412 return nil, fmt.Errorf("could not get container token: %s", err)
414 runner.CrunchLog.Printf("container token %q", token)
418 arvMountCmd := []string{
422 "--storage-classes", strings.Join(runner.Container.OutputStorageClasses, ","),
423 fmt.Sprintf("--crunchstat-interval=%v", runner.statInterval.Seconds())}
425 if runner.executor.Runtime() == "docker" {
426 arvMountCmd = append(arvMountCmd, "--allow-other")
429 if runner.Container.RuntimeConstraints.KeepCacheRAM > 0 {
430 arvMountCmd = append(arvMountCmd, "--file-cache", fmt.Sprintf("%d", runner.Container.RuntimeConstraints.KeepCacheRAM))
433 collectionPaths := []string{}
434 needCertMount := true
435 type copyFile struct {
439 var copyFiles []copyFile
442 for bind := range runner.Container.Mounts {
443 binds = append(binds, bind)
445 for bind := range runner.SecretMounts {
446 if _, ok := runner.Container.Mounts[bind]; ok {
447 return nil, fmt.Errorf("secret mount %q conflicts with regular mount", bind)
449 if runner.SecretMounts[bind].Kind != "json" &&
450 runner.SecretMounts[bind].Kind != "text" {
451 return nil, fmt.Errorf("secret mount %q type is %q but only 'json' and 'text' are permitted",
452 bind, runner.SecretMounts[bind].Kind)
454 binds = append(binds, bind)
458 for _, bind := range binds {
459 mnt, notSecret := runner.Container.Mounts[bind]
461 mnt = runner.SecretMounts[bind]
463 if bind == "stdout" || bind == "stderr" {
464 // Is it a "file" mount kind?
465 if mnt.Kind != "file" {
466 return nil, fmt.Errorf("unsupported mount kind '%s' for %s: only 'file' is supported", mnt.Kind, bind)
469 // Does path start with OutputPath?
470 prefix := runner.Container.OutputPath
471 if !strings.HasSuffix(prefix, "/") {
474 if !strings.HasPrefix(mnt.Path, prefix) {
475 return nil, fmt.Errorf("%s path does not start with OutputPath: %s, %s", strings.Title(bind), mnt.Path, prefix)
480 // Is it a "collection" mount kind?
481 if mnt.Kind != "collection" && mnt.Kind != "json" {
482 return nil, fmt.Errorf("unsupported mount kind '%s' for stdin: only 'collection' and 'json' are supported", mnt.Kind)
486 if bind == "/etc/arvados/ca-certificates.crt" {
487 needCertMount = false
490 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") && bind != runner.Container.OutputPath+"/" {
491 if mnt.Kind != "collection" && mnt.Kind != "text" && mnt.Kind != "json" {
492 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)
497 case mnt.Kind == "collection" && bind != "stdin":
499 if mnt.UUID != "" && mnt.PortableDataHash != "" {
500 return nil, fmt.Errorf("cannot specify both 'uuid' and 'portable_data_hash' for a collection mount")
504 return nil, fmt.Errorf("writing to existing collections currently not permitted")
507 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.UUID)
508 } else if mnt.PortableDataHash != "" {
509 if mnt.Writable && !strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
510 return nil, fmt.Errorf("can never write to a collection specified by portable data hash")
512 idx := strings.Index(mnt.PortableDataHash, "/")
514 mnt.Path = path.Clean(mnt.PortableDataHash[idx:])
515 mnt.PortableDataHash = mnt.PortableDataHash[0:idx]
516 runner.Container.Mounts[bind] = mnt
518 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.PortableDataHash)
519 if mnt.Path != "" && mnt.Path != "." {
520 if strings.HasPrefix(mnt.Path, "./") {
521 mnt.Path = mnt.Path[2:]
522 } else if strings.HasPrefix(mnt.Path, "/") {
523 mnt.Path = mnt.Path[1:]
525 src += "/" + mnt.Path
528 src = fmt.Sprintf("%s/tmp%d", runner.ArvMountPoint, tmpcount)
529 arvMountCmd = append(arvMountCmd, "--mount-tmp", fmt.Sprintf("tmp%d", tmpcount))
533 if bind == runner.Container.OutputPath {
534 runner.HostOutputDir = src
535 bindmounts[bind] = bindmount{HostPath: src}
536 } else if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
537 copyFiles = append(copyFiles, copyFile{src, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
539 bindmounts[bind] = bindmount{HostPath: src}
542 bindmounts[bind] = bindmount{HostPath: src, ReadOnly: true}
544 collectionPaths = append(collectionPaths, src)
546 case mnt.Kind == "tmp":
548 tmpdir, err = runner.MkTempDir(runner.parentTemp, "tmp")
550 return nil, fmt.Errorf("while creating mount temp dir: %v", err)
552 st, staterr := os.Stat(tmpdir)
554 return nil, fmt.Errorf("while Stat on temp dir: %v", staterr)
556 err = os.Chmod(tmpdir, st.Mode()|os.ModeSetgid|0777)
558 return nil, fmt.Errorf("while Chmod temp dir: %v", err)
560 bindmounts[bind] = bindmount{HostPath: tmpdir}
561 if bind == runner.Container.OutputPath {
562 runner.HostOutputDir = tmpdir
565 case mnt.Kind == "json" || mnt.Kind == "text":
567 if mnt.Kind == "json" {
568 filedata, err = json.Marshal(mnt.Content)
570 return nil, fmt.Errorf("encoding json data: %v", err)
573 text, ok := mnt.Content.(string)
575 return nil, fmt.Errorf("content for mount %q must be a string", bind)
577 filedata = []byte(text)
580 tmpdir, err := runner.MkTempDir(runner.parentTemp, mnt.Kind)
582 return nil, fmt.Errorf("creating temp dir: %v", err)
584 tmpfn := filepath.Join(tmpdir, "mountdata."+mnt.Kind)
585 err = ioutil.WriteFile(tmpfn, filedata, 0444)
587 return nil, fmt.Errorf("writing temp file: %v", err)
589 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") && (notSecret || runner.Container.Mounts[runner.Container.OutputPath].Kind != "collection") {
590 // In most cases, if the container
591 // specifies a literal file inside the
592 // output path, we copy it into the
593 // output directory (either a mounted
594 // collection or a staging area on the
595 // host fs). If it's a secret, it will
596 // be skipped when copying output from
597 // staging to Keep later.
598 copyFiles = append(copyFiles, copyFile{tmpfn, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
600 // If a secret is outside OutputPath,
601 // we bind mount the secret file
602 // directly just like other mounts. We
603 // also use this strategy when a
604 // secret is inside OutputPath but
605 // OutputPath is a live collection, to
606 // avoid writing the secret to
607 // Keep. Attempting to remove a
608 // bind-mounted secret file from
609 // inside the container will return a
610 // "Device or resource busy" error
611 // that might not be handled well by
612 // the container, which is why we
613 // don't use this strategy when
614 // OutputPath is a staging directory.
615 bindmounts[bind] = bindmount{HostPath: tmpfn, ReadOnly: true}
618 case mnt.Kind == "git_tree":
619 tmpdir, err := runner.MkTempDir(runner.parentTemp, "git_tree")
621 return nil, fmt.Errorf("creating temp dir: %v", err)
623 err = gitMount(mnt).extractTree(runner.ContainerArvClient, tmpdir, token)
627 bindmounts[bind] = bindmount{HostPath: tmpdir, ReadOnly: true}
631 if runner.HostOutputDir == "" {
632 return nil, fmt.Errorf("output path does not correspond to a writable mount point")
635 if needCertMount && runner.Container.RuntimeConstraints.API {
636 for _, certfile := range arvadosclient.CertFiles {
637 _, err := os.Stat(certfile)
639 bindmounts["/etc/arvados/ca-certificates.crt"] = bindmount{HostPath: certfile, ReadOnly: true}
646 // If we are only mounting collections by pdh, make
647 // sure we don't subscribe to websocket events to
648 // avoid putting undesired load on the API server
649 arvMountCmd = append(arvMountCmd, "--mount-by-pdh", "by_id", "--disable-event-listening")
651 arvMountCmd = append(arvMountCmd, "--mount-by-id", "by_id")
653 // the by_uuid mount point is used by singularity when writing
654 // out docker images converted to SIF
655 arvMountCmd = append(arvMountCmd, "--mount-by-id", "by_uuid")
656 arvMountCmd = append(arvMountCmd, runner.ArvMountPoint)
658 runner.ArvMount, err = runner.RunArvMount(arvMountCmd, token)
660 return nil, fmt.Errorf("while trying to start arv-mount: %v", err)
663 for _, p := range collectionPaths {
666 return nil, fmt.Errorf("while checking that input files exist: %v", err)
670 for _, cp := range copyFiles {
671 st, err := os.Stat(cp.src)
673 return nil, fmt.Errorf("while staging writable file from %q to %q: %v", cp.src, cp.bind, err)
676 err = filepath.Walk(cp.src, func(walkpath string, walkinfo os.FileInfo, walkerr error) error {
680 target := path.Join(cp.bind, walkpath[len(cp.src):])
681 if walkinfo.Mode().IsRegular() {
682 copyerr := copyfile(walkpath, target)
686 return os.Chmod(target, walkinfo.Mode()|0777)
687 } else if walkinfo.Mode().IsDir() {
688 mkerr := os.MkdirAll(target, 0777)
692 return os.Chmod(target, walkinfo.Mode()|os.ModeSetgid|0777)
694 return fmt.Errorf("source %q is not a regular file or directory", cp.src)
697 } else if st.Mode().IsRegular() {
698 err = copyfile(cp.src, cp.bind)
700 err = os.Chmod(cp.bind, st.Mode()|0777)
704 return nil, fmt.Errorf("while staging writable file from %q to %q: %v", cp.src, cp.bind, err)
708 return bindmounts, nil
711 func (runner *ContainerRunner) stopHoststat() error {
712 if runner.hoststatReporter == nil {
715 runner.hoststatReporter.Stop()
716 err := runner.hoststatLogger.Close()
718 return fmt.Errorf("error closing hoststat logs: %v", err)
723 func (runner *ContainerRunner) startHoststat() error {
724 w, err := runner.NewLogWriter("hoststat")
728 runner.hoststatLogger = NewThrottledLogger(w)
729 runner.hoststatReporter = &crunchstat.Reporter{
730 Logger: log.New(runner.hoststatLogger, "", 0),
731 CgroupRoot: runner.cgroupRoot,
732 PollPeriod: runner.statInterval,
734 runner.hoststatReporter.Start()
738 func (runner *ContainerRunner) startCrunchstat() error {
739 w, err := runner.NewLogWriter("crunchstat")
743 runner.statLogger = NewThrottledLogger(w)
744 runner.statReporter = &crunchstat.Reporter{
745 CID: runner.executor.CgroupID(),
746 Logger: log.New(runner.statLogger, "", 0),
747 CgroupParent: runner.expectCgroupParent,
748 CgroupRoot: runner.cgroupRoot,
749 PollPeriod: runner.statInterval,
750 TempDir: runner.parentTemp,
752 runner.statReporter.Start()
756 type infoCommand struct {
761 // LogHostInfo logs info about the current host, for debugging and
762 // accounting purposes. Although it's logged as "node-info", this is
763 // about the environment where crunch-run is actually running, which
764 // might differ from what's described in the node record (see
766 func (runner *ContainerRunner) LogHostInfo() (err error) {
767 w, err := runner.NewLogWriter("node-info")
772 commands := []infoCommand{
774 label: "Host Information",
775 cmd: []string{"uname", "-a"},
778 label: "CPU Information",
779 cmd: []string{"cat", "/proc/cpuinfo"},
782 label: "Memory Information",
783 cmd: []string{"cat", "/proc/meminfo"},
787 cmd: []string{"df", "-m", "/", os.TempDir()},
790 label: "Disk INodes",
791 cmd: []string{"df", "-i", "/", os.TempDir()},
795 // Run commands with informational output to be logged.
796 for _, command := range commands {
797 fmt.Fprintln(w, command.label)
798 cmd := exec.Command(command.cmd[0], command.cmd[1:]...)
801 if err := cmd.Run(); err != nil {
802 err = fmt.Errorf("While running command %q: %v", command.cmd, err)
811 return fmt.Errorf("While closing node-info logs: %v", err)
816 // LogContainerRecord gets and saves the raw JSON container record from the API server
817 func (runner *ContainerRunner) LogContainerRecord() error {
818 logged, err := runner.logAPIResponse("container", "containers", map[string]interface{}{"filters": [][]string{{"uuid", "=", runner.Container.UUID}}}, nil)
819 if !logged && err == nil {
820 err = fmt.Errorf("error: no container record found for %s", runner.Container.UUID)
825 // LogNodeRecord logs the current host's InstanceType config entry (or
826 // the arvados#node record, if running via crunch-dispatch-slurm).
827 func (runner *ContainerRunner) LogNodeRecord() error {
828 if it := os.Getenv("InstanceType"); it != "" {
829 // Dispatched via arvados-dispatch-cloud. Save
830 // InstanceType config fragment received from
831 // dispatcher on stdin.
832 w, err := runner.LogCollection.OpenFile("node.json", os.O_CREATE|os.O_WRONLY, 0666)
837 _, err = io.WriteString(w, it)
843 // Dispatched via crunch-dispatch-slurm. Look up
844 // apiserver's node record corresponding to
846 hostname := os.Getenv("SLURMD_NODENAME")
848 hostname, _ = os.Hostname()
850 _, err := runner.logAPIResponse("node", "nodes", map[string]interface{}{"filters": [][]string{{"hostname", "=", hostname}}}, func(resp interface{}) {
851 // The "info" field has admin-only info when
852 // obtained with a privileged token, and
853 // should not be logged.
854 node, ok := resp.(map[string]interface{})
862 func (runner *ContainerRunner) logAPIResponse(label, path string, params map[string]interface{}, munge func(interface{})) (logged bool, err error) {
863 writer, err := runner.LogCollection.OpenFile(label+".json", os.O_CREATE|os.O_WRONLY, 0666)
868 ArvClient: runner.DispatcherArvClient,
869 UUID: runner.Container.UUID,
870 loggingStream: label,
874 reader, err := runner.DispatcherArvClient.CallRaw("GET", path, "", "", arvadosclient.Dict(params))
876 return false, fmt.Errorf("error getting %s record: %v", label, err)
880 dec := json.NewDecoder(reader)
882 var resp map[string]interface{}
883 if err = dec.Decode(&resp); err != nil {
884 return false, fmt.Errorf("error decoding %s list response: %v", label, err)
886 items, ok := resp["items"].([]interface{})
888 return false, fmt.Errorf("error decoding %s list response: no \"items\" key in API list response", label)
889 } else if len(items) < 1 {
895 // Re-encode it using indentation to improve readability
896 enc := json.NewEncoder(w)
897 enc.SetIndent("", " ")
898 if err = enc.Encode(items[0]); err != nil {
899 return false, fmt.Errorf("error logging %s record: %v", label, err)
903 return false, fmt.Errorf("error closing %s.json in log collection: %v", label, err)
908 func (runner *ContainerRunner) getStdoutFile(mntPath string) (*os.File, error) {
909 stdoutPath := mntPath[len(runner.Container.OutputPath):]
910 index := strings.LastIndex(stdoutPath, "/")
912 subdirs := stdoutPath[:index]
914 st, err := os.Stat(runner.HostOutputDir)
916 return nil, fmt.Errorf("While Stat on temp dir: %v", err)
918 stdoutPath := filepath.Join(runner.HostOutputDir, subdirs)
919 err = os.MkdirAll(stdoutPath, st.Mode()|os.ModeSetgid|0777)
921 return nil, fmt.Errorf("While MkdirAll %q: %v", stdoutPath, err)
925 stdoutFile, err := os.Create(filepath.Join(runner.HostOutputDir, stdoutPath))
927 return nil, fmt.Errorf("While creating file %q: %v", stdoutPath, err)
930 return stdoutFile, nil
933 // CreateContainer creates the docker container.
934 func (runner *ContainerRunner) CreateContainer(imageID string, bindmounts map[string]bindmount) error {
935 var stdin io.ReadCloser = ioutil.NopCloser(bytes.NewReader(nil))
936 if mnt, ok := runner.Container.Mounts["stdin"]; ok {
943 collID = mnt.PortableDataHash
945 path := runner.ArvMountPoint + "/by_id/" + collID + "/" + mnt.Path
946 f, err := os.Open(path)
952 j, err := json.Marshal(mnt.Content)
954 return fmt.Errorf("error encoding stdin json data: %v", err)
956 stdin = ioutil.NopCloser(bytes.NewReader(j))
958 return fmt.Errorf("stdin mount has unsupported kind %q", mnt.Kind)
962 var stdout, stderr io.WriteCloser
963 if mnt, ok := runner.Container.Mounts["stdout"]; ok {
964 f, err := runner.getStdoutFile(mnt.Path)
969 } else if w, err := runner.NewLogWriter("stdout"); err != nil {
972 stdout = NewThrottledLogger(w)
975 if mnt, ok := runner.Container.Mounts["stderr"]; ok {
976 f, err := runner.getStdoutFile(mnt.Path)
981 } else if w, err := runner.NewLogWriter("stderr"); err != nil {
984 stderr = NewThrottledLogger(w)
987 env := runner.Container.Environment
988 enableNetwork := runner.enableNetwork == "always"
989 if runner.Container.RuntimeConstraints.API {
991 tok, err := runner.ContainerToken()
995 env = map[string]string{}
996 for k, v := range runner.Container.Environment {
999 env["ARVADOS_API_TOKEN"] = tok
1000 env["ARVADOS_API_HOST"] = os.Getenv("ARVADOS_API_HOST")
1001 env["ARVADOS_API_HOST_INSECURE"] = os.Getenv("ARVADOS_API_HOST_INSECURE")
1003 workdir := runner.Container.Cwd
1005 // both "" and "." mean default
1008 ram := runner.Container.RuntimeConstraints.RAM
1009 if !runner.enableMemoryLimit {
1012 runner.executorStdin = stdin
1013 runner.executorStdout = stdout
1014 runner.executorStderr = stderr
1016 if runner.Container.RuntimeConstraints.CUDA.DeviceCount > 0 {
1017 nvidiaModprobe(runner.CrunchLog)
1020 return runner.executor.Create(containerSpec{
1022 VCPUs: runner.Container.RuntimeConstraints.VCPUs,
1024 WorkingDir: workdir,
1026 BindMounts: bindmounts,
1027 Command: runner.Container.Command,
1028 EnableNetwork: enableNetwork,
1029 CUDADeviceCount: runner.Container.RuntimeConstraints.CUDA.DeviceCount,
1030 NetworkMode: runner.networkMode,
1031 CgroupParent: runner.setCgroupParent,
1038 // StartContainer starts the docker container created by CreateContainer.
1039 func (runner *ContainerRunner) StartContainer() error {
1040 runner.CrunchLog.Printf("Starting container")
1041 runner.cStateLock.Lock()
1042 defer runner.cStateLock.Unlock()
1043 if runner.cCancelled {
1046 err := runner.executor.Start()
1049 if m, e := regexp.MatchString("(?ms).*(exec|System error).*(no such file or directory|file not found).*", err.Error()); m && e == nil {
1050 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])
1052 return fmt.Errorf("could not start container: %v%s", err, advice)
1057 // WaitFinish waits for the container to terminate, capture the exit code, and
1058 // close the stdout/stderr logging.
1059 func (runner *ContainerRunner) WaitFinish() error {
1060 runner.CrunchLog.Print("Waiting for container to finish")
1061 var timeout <-chan time.Time
1062 if s := runner.Container.SchedulingParameters.MaxRunTime; s > 0 {
1063 timeout = time.After(time.Duration(s) * time.Second)
1065 ctx, cancel := context.WithCancel(context.Background())
1070 runner.CrunchLog.Printf("maximum run time exceeded. Stopping container.")
1072 case <-runner.ArvMountExit:
1073 runner.CrunchLog.Printf("arv-mount exited while container is still running. Stopping container.")
1078 exitcode, err := runner.executor.Wait(ctx)
1080 runner.checkBrokenNode(err)
1083 runner.ExitCode = &exitcode
1086 if exitcode&0x80 != 0 {
1087 // Convert raw exit status (0x80 + signal number) to a
1088 // string to log after the code, like " (signal 101)"
1089 // or " (signal 9, killed)"
1090 sig := syscall.WaitStatus(exitcode).Signal()
1091 if name := unix.SignalName(sig); name != "" {
1092 extra = fmt.Sprintf(" (signal %d, %s)", sig, name)
1094 extra = fmt.Sprintf(" (signal %d)", sig)
1097 runner.CrunchLog.Printf("Container exited with status code %d%s", exitcode, extra)
1100 if err = runner.executorStdin.Close(); err != nil {
1101 err = fmt.Errorf("error closing container stdin: %s", err)
1102 runner.CrunchLog.Printf("%s", err)
1105 if err = runner.executorStdout.Close(); err != nil {
1106 err = fmt.Errorf("error closing container stdout: %s", err)
1107 runner.CrunchLog.Printf("%s", err)
1108 if returnErr == nil {
1112 if err = runner.executorStderr.Close(); err != nil {
1113 err = fmt.Errorf("error closing container stderr: %s", err)
1114 runner.CrunchLog.Printf("%s", err)
1115 if returnErr == nil {
1120 if runner.statReporter != nil {
1121 runner.statReporter.Stop()
1122 err = runner.statLogger.Close()
1124 runner.CrunchLog.Printf("error closing crunchstat logs: %v", err)
1130 func (runner *ContainerRunner) updateLogs() {
1131 ticker := time.NewTicker(crunchLogUpdatePeriod / 360)
1134 sigusr1 := make(chan os.Signal, 1)
1135 signal.Notify(sigusr1, syscall.SIGUSR1)
1136 defer signal.Stop(sigusr1)
1138 saveAtTime := time.Now().Add(crunchLogUpdatePeriod)
1139 saveAtSize := crunchLogUpdateSize
1145 saveAtTime = time.Now()
1147 runner.logMtx.Lock()
1148 done := runner.LogsPDH != nil
1149 runner.logMtx.Unlock()
1153 size := runner.LogCollection.Size()
1154 if size == savedSize || (time.Now().Before(saveAtTime) && size < saveAtSize) {
1157 saveAtTime = time.Now().Add(crunchLogUpdatePeriod)
1158 saveAtSize = runner.LogCollection.Size() + crunchLogUpdateSize
1159 saved, err := runner.saveLogCollection(false)
1161 runner.CrunchLog.Printf("error updating log collection: %s", err)
1165 var updated arvados.Container
1166 err = runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{
1167 "container": arvadosclient.Dict{"log": saved.PortableDataHash},
1170 runner.CrunchLog.Printf("error updating container log to %s: %s", saved.PortableDataHash, err)
1178 func (runner *ContainerRunner) reportArvMountWarning(pattern, text string) {
1179 var updated arvados.Container
1180 err := runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{
1181 "container": arvadosclient.Dict{
1182 "runtime_status": arvadosclient.Dict{
1183 "warning": "arv-mount: " + pattern,
1184 "warningDetail": text,
1189 runner.CrunchLog.Printf("error updating container runtime_status: %s", err)
1193 // CaptureOutput saves data from the container's output directory if
1194 // needed, and updates the container output accordingly.
1195 func (runner *ContainerRunner) CaptureOutput(bindmounts map[string]bindmount) error {
1196 if runner.Container.RuntimeConstraints.API {
1197 // Output may have been set directly by the container, so
1198 // refresh the container record to check.
1199 err := runner.DispatcherArvClient.Get("containers", runner.Container.UUID,
1200 nil, &runner.Container)
1204 if runner.Container.Output != "" {
1205 // Container output is already set.
1206 runner.OutputPDH = &runner.Container.Output
1211 txt, err := (&copier{
1212 client: runner.containerClient,
1213 arvClient: runner.ContainerArvClient,
1214 keepClient: runner.ContainerKeepClient,
1215 hostOutputDir: runner.HostOutputDir,
1216 ctrOutputDir: runner.Container.OutputPath,
1217 bindmounts: bindmounts,
1218 mounts: runner.Container.Mounts,
1219 secretMounts: runner.SecretMounts,
1220 logger: runner.CrunchLog,
1225 if n := len(regexp.MustCompile(` [0-9a-f]+\+\S*\+R`).FindAllStringIndex(txt, -1)); n > 0 {
1226 runner.CrunchLog.Printf("Copying %d data blocks from remote input collections...", n)
1227 fs, err := (&arvados.Collection{ManifestText: txt}).FileSystem(runner.containerClient, runner.ContainerKeepClient)
1231 txt, err = fs.MarshalManifest(".")
1236 var resp arvados.Collection
1237 err = runner.ContainerArvClient.Create("collections", arvadosclient.Dict{
1238 "ensure_unique_name": true,
1239 "collection": arvadosclient.Dict{
1241 "name": "output for " + runner.Container.UUID,
1242 "manifest_text": txt,
1246 return fmt.Errorf("error creating output collection: %v", err)
1248 runner.OutputPDH = &resp.PortableDataHash
1252 func (runner *ContainerRunner) CleanupDirs() {
1253 if runner.ArvMount != nil {
1255 umount := exec.Command("arv-mount", fmt.Sprintf("--unmount-timeout=%d", delay), "--unmount", runner.ArvMountPoint)
1256 umount.Stdout = runner.CrunchLog
1257 umount.Stderr = runner.CrunchLog
1258 runner.CrunchLog.Printf("Running %v", umount.Args)
1259 umnterr := umount.Start()
1262 runner.CrunchLog.Printf("Error unmounting: %v", umnterr)
1263 runner.ArvMount.Process.Kill()
1265 // If arv-mount --unmount gets stuck for any reason, we
1266 // don't want to wait for it forever. Do Wait() in a goroutine
1267 // so it doesn't block crunch-run.
1268 umountExit := make(chan error)
1270 mnterr := umount.Wait()
1272 runner.CrunchLog.Printf("Error unmounting: %v", mnterr)
1274 umountExit <- mnterr
1277 for again := true; again; {
1283 case <-runner.ArvMountExit:
1285 case <-time.After(time.Duration((delay + 1) * int64(time.Second))):
1286 runner.CrunchLog.Printf("Timed out waiting for unmount")
1288 umount.Process.Kill()
1290 runner.ArvMount.Process.Kill()
1294 runner.ArvMount = nil
1297 if runner.ArvMountPoint != "" {
1298 if rmerr := os.Remove(runner.ArvMountPoint); rmerr != nil {
1299 runner.CrunchLog.Printf("While cleaning up arv-mount directory %s: %v", runner.ArvMountPoint, rmerr)
1301 runner.ArvMountPoint = ""
1304 if rmerr := os.RemoveAll(runner.parentTemp); rmerr != nil {
1305 runner.CrunchLog.Printf("While cleaning up temporary directory %s: %v", runner.parentTemp, rmerr)
1309 // CommitLogs posts the collection containing the final container logs.
1310 func (runner *ContainerRunner) CommitLogs() error {
1312 // Hold cStateLock to prevent races on CrunchLog (e.g., stop()).
1313 runner.cStateLock.Lock()
1314 defer runner.cStateLock.Unlock()
1316 runner.CrunchLog.Print(runner.finalState)
1318 if runner.arvMountLog != nil {
1319 runner.arvMountLog.Close()
1321 runner.CrunchLog.Close()
1323 // Closing CrunchLog above allows them to be committed to Keep at this
1324 // point, but re-open crunch log with ArvClient in case there are any
1325 // other further errors (such as failing to write the log to Keep!)
1326 // while shutting down
1327 runner.CrunchLog = NewThrottledLogger(&ArvLogWriter{
1328 ArvClient: runner.DispatcherArvClient,
1329 UUID: runner.Container.UUID,
1330 loggingStream: "crunch-run",
1333 runner.CrunchLog.Immediate = log.New(os.Stderr, runner.Container.UUID+" ", 0)
1336 if runner.keepstoreLogger != nil {
1337 // Flush any buffered logs from our local keepstore
1338 // process. Discard anything logged after this point
1339 // -- it won't end up in the log collection, so
1340 // there's no point writing it to the collectionfs.
1341 runner.keepstoreLogbuf.SetWriter(io.Discard)
1342 runner.keepstoreLogger.Close()
1343 runner.keepstoreLogger = nil
1346 if runner.LogsPDH != nil {
1347 // If we have already assigned something to LogsPDH,
1348 // we must be closing the re-opened log, which won't
1349 // end up getting attached to the container record and
1350 // therefore doesn't need to be saved as a collection
1351 // -- it exists only to send logs to other channels.
1355 saved, err := runner.saveLogCollection(true)
1357 return fmt.Errorf("error saving log collection: %s", err)
1359 runner.logMtx.Lock()
1360 defer runner.logMtx.Unlock()
1361 runner.LogsPDH = &saved.PortableDataHash
1365 func (runner *ContainerRunner) saveLogCollection(final bool) (response arvados.Collection, err error) {
1366 runner.logMtx.Lock()
1367 defer runner.logMtx.Unlock()
1368 if runner.LogsPDH != nil {
1369 // Already finalized.
1372 updates := arvadosclient.Dict{
1373 "name": "logs for " + runner.Container.UUID,
1375 mt, err1 := runner.LogCollection.MarshalManifest(".")
1377 // Only send updated manifest text if there was no
1379 updates["manifest_text"] = mt
1382 // Even if flushing the manifest had an error, we still want
1383 // to update the log record, if possible, to push the trash_at
1384 // and delete_at times into the future. Details on bug
1387 updates["is_trashed"] = true
1389 exp := time.Now().Add(crunchLogUpdatePeriod * 24)
1390 updates["trash_at"] = exp
1391 updates["delete_at"] = exp
1393 reqBody := arvadosclient.Dict{"collection": updates}
1395 if runner.logUUID == "" {
1396 reqBody["ensure_unique_name"] = true
1397 err2 = runner.DispatcherArvClient.Create("collections", reqBody, &response)
1399 err2 = runner.DispatcherArvClient.Update("collections", runner.logUUID, reqBody, &response)
1402 runner.logUUID = response.UUID
1405 if err1 != nil || err2 != nil {
1406 err = fmt.Errorf("error recording logs: %q, %q", err1, err2)
1411 // UpdateContainerRunning updates the container state to "Running"
1412 func (runner *ContainerRunner) UpdateContainerRunning() error {
1413 runner.cStateLock.Lock()
1414 defer runner.cStateLock.Unlock()
1415 if runner.cCancelled {
1418 return runner.DispatcherArvClient.Update("containers", runner.Container.UUID,
1419 arvadosclient.Dict{"container": arvadosclient.Dict{"state": "Running", "gateway_address": runner.gateway.Address}}, nil)
1422 // ContainerToken returns the api_token the container (and any
1423 // arv-mount processes) are allowed to use.
1424 func (runner *ContainerRunner) ContainerToken() (string, error) {
1425 if runner.token != "" {
1426 return runner.token, nil
1429 var auth arvados.APIClientAuthorization
1430 err := runner.DispatcherArvClient.Call("GET", "containers", runner.Container.UUID, "auth", nil, &auth)
1434 runner.token = fmt.Sprintf("v2/%s/%s/%s", auth.UUID, auth.APIToken, runner.Container.UUID)
1435 return runner.token, nil
1438 // UpdateContainerFinal updates the container record state on API
1439 // server to "Complete" or "Cancelled"
1440 func (runner *ContainerRunner) UpdateContainerFinal() error {
1441 update := arvadosclient.Dict{}
1442 update["state"] = runner.finalState
1443 if runner.LogsPDH != nil {
1444 update["log"] = *runner.LogsPDH
1446 if runner.finalState == "Complete" {
1447 if runner.ExitCode != nil {
1448 update["exit_code"] = *runner.ExitCode
1450 if runner.OutputPDH != nil {
1451 update["output"] = *runner.OutputPDH
1454 return runner.DispatcherArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{"container": update}, nil)
1457 // IsCancelled returns the value of Cancelled, with goroutine safety.
1458 func (runner *ContainerRunner) IsCancelled() bool {
1459 runner.cStateLock.Lock()
1460 defer runner.cStateLock.Unlock()
1461 return runner.cCancelled
1464 // NewArvLogWriter creates an ArvLogWriter
1465 func (runner *ContainerRunner) NewArvLogWriter(name string) (io.WriteCloser, error) {
1466 writer, err := runner.LogCollection.OpenFile(name+".txt", os.O_CREATE|os.O_WRONLY, 0666)
1470 return &ArvLogWriter{
1471 ArvClient: runner.DispatcherArvClient,
1472 UUID: runner.Container.UUID,
1473 loggingStream: name,
1474 writeCloser: writer,
1478 // Run the full container lifecycle.
1479 func (runner *ContainerRunner) Run() (err error) {
1480 runner.CrunchLog.Printf("crunch-run %s started", cmd.Version.String())
1481 runner.CrunchLog.Printf("%s", currentUserAndGroups())
1482 runner.CrunchLog.Printf("Executing container '%s' using %s runtime", runner.Container.UUID, runner.executor.Runtime())
1484 hostname, hosterr := os.Hostname()
1486 runner.CrunchLog.Printf("Error getting hostname '%v'", hosterr)
1488 runner.CrunchLog.Printf("Executing on host '%s'", hostname)
1491 runner.finalState = "Queued"
1494 runner.CleanupDirs()
1496 runner.CrunchLog.Printf("crunch-run finished")
1497 runner.CrunchLog.Close()
1500 err = runner.fetchContainerRecord()
1504 if runner.Container.State != "Locked" {
1505 return fmt.Errorf("dispatch error detected: container %q has state %q", runner.Container.UUID, runner.Container.State)
1508 var bindmounts map[string]bindmount
1510 // checkErr prints e (unless it's nil) and sets err to
1511 // e (unless err is already non-nil). Thus, if err
1512 // hasn't already been assigned when Run() returns,
1513 // this cleanup func will cause Run() to return the
1514 // first non-nil error that is passed to checkErr().
1515 checkErr := func(errorIn string, e error) {
1519 runner.CrunchLog.Printf("error in %s: %v", errorIn, e)
1523 if runner.finalState == "Complete" {
1524 // There was an error in the finalization.
1525 runner.finalState = "Cancelled"
1529 // Log the error encountered in Run(), if any
1530 checkErr("Run", err)
1532 if runner.finalState == "Queued" {
1533 runner.UpdateContainerFinal()
1537 if runner.IsCancelled() {
1538 runner.finalState = "Cancelled"
1539 // but don't return yet -- we still want to
1540 // capture partial output and write logs
1543 if bindmounts != nil {
1544 checkErr("CaptureOutput", runner.CaptureOutput(bindmounts))
1546 checkErr("stopHoststat", runner.stopHoststat())
1547 checkErr("CommitLogs", runner.CommitLogs())
1548 runner.CleanupDirs()
1549 checkErr("UpdateContainerFinal", runner.UpdateContainerFinal())
1552 runner.setupSignals()
1553 err = runner.startHoststat()
1558 // set up FUSE mount and binds
1559 bindmounts, err = runner.SetupMounts()
1561 runner.finalState = "Cancelled"
1562 err = fmt.Errorf("While setting up mounts: %v", err)
1566 // check for and/or load image
1567 imageID, err := runner.LoadImage()
1569 if !runner.checkBrokenNode(err) {
1570 // Failed to load image but not due to a "broken node"
1571 // condition, probably user error.
1572 runner.finalState = "Cancelled"
1574 err = fmt.Errorf("While loading container image: %v", err)
1578 err = runner.CreateContainer(imageID, bindmounts)
1582 err = runner.LogHostInfo()
1586 err = runner.LogNodeRecord()
1590 err = runner.LogContainerRecord()
1595 if runner.IsCancelled() {
1599 err = runner.UpdateContainerRunning()
1603 runner.finalState = "Cancelled"
1605 err = runner.startCrunchstat()
1610 err = runner.StartContainer()
1612 runner.checkBrokenNode(err)
1616 err = runner.WaitFinish()
1617 if err == nil && !runner.IsCancelled() {
1618 runner.finalState = "Complete"
1623 // Fetch the current container record (uuid = runner.Container.UUID)
1624 // into runner.Container.
1625 func (runner *ContainerRunner) fetchContainerRecord() error {
1626 reader, err := runner.DispatcherArvClient.CallRaw("GET", "containers", runner.Container.UUID, "", nil)
1628 return fmt.Errorf("error fetching container record: %v", err)
1630 defer reader.Close()
1632 dec := json.NewDecoder(reader)
1634 err = dec.Decode(&runner.Container)
1636 return fmt.Errorf("error decoding container record: %v", err)
1640 SecretMounts map[string]arvados.Mount `json:"secret_mounts"`
1643 containerToken, err := runner.ContainerToken()
1645 return fmt.Errorf("error getting container token: %v", err)
1648 runner.ContainerArvClient, runner.ContainerKeepClient,
1649 runner.containerClient, err = runner.MkArvClient(containerToken)
1651 return fmt.Errorf("error creating container API client: %v", err)
1654 runner.ContainerKeepClient.SetStorageClasses(runner.Container.OutputStorageClasses)
1655 runner.DispatcherKeepClient.SetStorageClasses(runner.Container.OutputStorageClasses)
1657 err = runner.ContainerArvClient.Call("GET", "containers", runner.Container.UUID, "secret_mounts", nil, &sm)
1659 if apierr, ok := err.(arvadosclient.APIServerError); !ok || apierr.HttpStatusCode != 404 {
1660 return fmt.Errorf("error fetching secret_mounts: %v", err)
1662 // ok && apierr.HttpStatusCode == 404, which means
1663 // secret_mounts isn't supported by this API server.
1665 runner.SecretMounts = sm.SecretMounts
1670 // NewContainerRunner creates a new container runner.
1671 func NewContainerRunner(dispatcherClient *arvados.Client,
1672 dispatcherArvClient IArvadosClient,
1673 dispatcherKeepClient IKeepClient,
1674 containerUUID string) (*ContainerRunner, error) {
1676 cr := &ContainerRunner{
1677 dispatcherClient: dispatcherClient,
1678 DispatcherArvClient: dispatcherArvClient,
1679 DispatcherKeepClient: dispatcherKeepClient,
1681 cr.NewLogWriter = cr.NewArvLogWriter
1682 cr.RunArvMount = cr.ArvMountCmd
1683 cr.MkTempDir = ioutil.TempDir
1684 cr.MkArvClient = func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error) {
1685 cl, err := arvadosclient.MakeArvadosClient()
1687 return nil, nil, nil, err
1690 kc, err := keepclient.MakeKeepClient(cl)
1692 return nil, nil, nil, err
1694 c2 := arvados.NewClientFromEnv()
1695 c2.AuthToken = token
1696 return cl, kc, c2, nil
1699 cr.LogCollection, err = (&arvados.Collection{}).FileSystem(cr.dispatcherClient, cr.DispatcherKeepClient)
1703 cr.Container.UUID = containerUUID
1704 w, err := cr.NewLogWriter("crunch-run")
1708 cr.CrunchLog = NewThrottledLogger(w)
1709 cr.CrunchLog.Immediate = log.New(os.Stderr, containerUUID+" ", 0)
1711 loadLogThrottleParams(dispatcherArvClient)
1717 func (command) RunCommand(prog string, args []string, stdin io.Reader, stdout, stderr io.Writer) int {
1718 log := log.New(stderr, "", 0)
1719 flags := flag.NewFlagSet(prog, flag.ContinueOnError)
1720 statInterval := flags.Duration("crunchstat-interval", 10*time.Second, "sampling period for periodic resource usage reporting")
1721 cgroupRoot := flags.String("cgroup-root", "/sys/fs/cgroup", "path to sysfs cgroup tree")
1722 cgroupParent := flags.String("cgroup-parent", "docker", "name of container's parent cgroup (ignored if -cgroup-parent-subsystem is used)")
1723 cgroupParentSubsystem := flags.String("cgroup-parent-subsystem", "", "use current cgroup for given subsystem as parent cgroup for container")
1724 caCertsPath := flags.String("ca-certs", "", "Path to TLS root certificates")
1725 detach := flags.Bool("detach", false, "Detach from parent process and run in the background")
1726 stdinConfig := flags.Bool("stdin-config", false, "Load config and environment variables from JSON message on stdin")
1727 configFile := flags.String("config", arvados.DefaultConfigFile, "filename of cluster config file to try loading if -stdin-config=false (default is $ARVADOS_CONFIG)")
1728 sleep := flags.Duration("sleep", 0, "Delay before starting (testing use only)")
1729 kill := flags.Int("kill", -1, "Send signal to an existing crunch-run process for given UUID")
1730 list := flags.Bool("list", false, "List UUIDs of existing crunch-run processes")
1731 enableMemoryLimit := flags.Bool("enable-memory-limit", true, "tell container runtime to limit container's memory usage")
1732 enableNetwork := flags.String("container-enable-networking", "default", "enable networking \"always\" (for all containers) or \"default\" (for containers that request it)")
1733 networkMode := flags.String("container-network-mode", "default", `Docker network mode for container (use any argument valid for docker --net)`)
1734 memprofile := flags.String("memprofile", "", "write memory profile to `file` after running container")
1735 runtimeEngine := flags.String("runtime-engine", "docker", "container runtime: docker or singularity")
1736 brokenNodeHook := flags.String("broken-node-hook", "", "script to run if node is detected to be broken (for example, Docker daemon is not running)")
1737 flags.Duration("check-containerd", 0, "Ignored. Exists for compatibility with older versions.")
1739 ignoreDetachFlag := false
1740 if len(args) > 0 && args[0] == "-no-detach" {
1741 // This process was invoked by a parent process, which
1742 // has passed along its own arguments, including
1743 // -detach, after the leading -no-detach flag. Strip
1744 // the leading -no-detach flag (it's not recognized by
1745 // flags.Parse()) and ignore the -detach flag that
1748 ignoreDetachFlag = true
1751 if ok, code := cmd.ParseFlags(flags, prog, args, "container-uuid", stderr); !ok {
1753 } else if !*list && flags.NArg() != 1 {
1754 fmt.Fprintf(stderr, "missing required argument: container-uuid (try -help)\n")
1758 containerUUID := flags.Arg(0)
1761 case *detach && !ignoreDetachFlag:
1762 return Detach(containerUUID, prog, args, os.Stdin, os.Stdout, os.Stderr)
1764 return KillProcess(containerUUID, syscall.Signal(*kill), os.Stdout, os.Stderr)
1766 return ListProcesses(os.Stdout, os.Stderr)
1769 if len(containerUUID) != 27 {
1770 log.Printf("usage: %s [options] UUID", prog)
1774 var keepstoreLogbuf bufThenWrite
1777 err := json.NewDecoder(stdin).Decode(&conf)
1779 log.Printf("decode stdin: %s", err)
1782 for k, v := range conf.Env {
1783 err = os.Setenv(k, v)
1785 log.Printf("setenv(%q): %s", k, err)
1789 if conf.Cluster != nil {
1790 // ClusterID is missing from the JSON
1791 // representation, but we need it to generate
1792 // a valid config file for keepstore, so we
1793 // fill it using the container UUID prefix.
1794 conf.Cluster.ClusterID = containerUUID[:5]
1797 conf = hpcConfData(containerUUID, *configFile, io.MultiWriter(&keepstoreLogbuf, stderr))
1800 log.Printf("crunch-run %s started", cmd.Version.String())
1803 if *caCertsPath != "" {
1804 arvadosclient.CertFiles = []string{*caCertsPath}
1807 keepstore, err := startLocalKeepstore(conf, io.MultiWriter(&keepstoreLogbuf, stderr))
1812 if keepstore != nil {
1813 defer keepstore.Process.Kill()
1816 api, err := arvadosclient.MakeArvadosClient()
1818 log.Printf("%s: %v", containerUUID, err)
1823 kc, err := keepclient.MakeKeepClient(api)
1825 log.Printf("%s: %v", containerUUID, err)
1828 kc.BlockCache = &keepclient.BlockCache{MaxBlocks: 2}
1831 cr, err := NewContainerRunner(arvados.NewClientFromEnv(), api, kc, containerUUID)
1837 if keepstore == nil {
1838 // Log explanation (if any) for why we're not running
1839 // a local keepstore.
1840 var buf bytes.Buffer
1841 keepstoreLogbuf.SetWriter(&buf)
1843 cr.CrunchLog.Printf("%s", strings.TrimSpace(buf.String()))
1845 } else if logWhat := conf.Cluster.Containers.LocalKeepLogsToContainerLog; logWhat == "none" {
1846 cr.CrunchLog.Printf("using local keepstore process (pid %d) at %s", keepstore.Process.Pid, os.Getenv("ARVADOS_KEEP_SERVICES"))
1847 keepstoreLogbuf.SetWriter(io.Discard)
1849 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"))
1850 logwriter, err := cr.NewLogWriter("keepstore")
1855 cr.keepstoreLogger = NewThrottledLogger(logwriter)
1857 var writer io.WriteCloser = cr.keepstoreLogger
1858 if logWhat == "errors" {
1859 writer = &filterKeepstoreErrorsOnly{WriteCloser: writer}
1860 } else if logWhat != "all" {
1861 // should have been caught earlier by
1862 // dispatcher's config loader
1863 log.Printf("invalid value for Containers.LocalKeepLogsToContainerLog: %q", logWhat)
1866 err = keepstoreLogbuf.SetWriter(writer)
1871 cr.keepstoreLogbuf = &keepstoreLogbuf
1874 switch *runtimeEngine {
1876 cr.executor, err = newDockerExecutor(containerUUID, cr.CrunchLog.Printf, cr.containerWatchdogInterval)
1878 cr.executor, err = newSingularityExecutor(cr.CrunchLog.Printf)
1880 cr.CrunchLog.Printf("%s: unsupported RuntimeEngine %q", containerUUID, *runtimeEngine)
1881 cr.CrunchLog.Close()
1885 cr.CrunchLog.Printf("%s: %v", containerUUID, err)
1886 cr.checkBrokenNode(err)
1887 cr.CrunchLog.Close()
1890 defer cr.executor.Close()
1892 cr.brokenNodeHook = *brokenNodeHook
1894 gwAuthSecret := os.Getenv("GatewayAuthSecret")
1895 os.Unsetenv("GatewayAuthSecret")
1896 if gwAuthSecret == "" {
1897 // not safe to run a gateway service without an auth
1899 cr.CrunchLog.Printf("Not starting a gateway server (GatewayAuthSecret was not provided by dispatcher)")
1900 } else if gwListen := os.Getenv("GatewayAddress"); gwListen == "" {
1901 // dispatcher did not tell us which external IP
1902 // address to advertise --> no gateway service
1903 cr.CrunchLog.Printf("Not starting a gateway server (GatewayAddress was not provided by dispatcher)")
1904 } else if de, ok := cr.executor.(*dockerExecutor); ok {
1905 cr.gateway = Gateway{
1907 AuthSecret: gwAuthSecret,
1908 ContainerUUID: containerUUID,
1909 DockerContainerID: &de.containerID,
1911 ContainerIPAddress: dockerContainerIPAddress(&de.containerID),
1913 err = cr.gateway.Start()
1915 log.Printf("error starting gateway server: %s", err)
1920 parentTemp, tmperr := cr.MkTempDir("", "crunch-run."+containerUUID+".")
1922 log.Printf("%s: %v", containerUUID, tmperr)
1926 cr.parentTemp = parentTemp
1927 cr.statInterval = *statInterval
1928 cr.cgroupRoot = *cgroupRoot
1929 cr.expectCgroupParent = *cgroupParent
1930 cr.enableMemoryLimit = *enableMemoryLimit
1931 cr.enableNetwork = *enableNetwork
1932 cr.networkMode = *networkMode
1933 if *cgroupParentSubsystem != "" {
1934 p, err := findCgroup(*cgroupParentSubsystem)
1936 log.Printf("fatal: cgroup parent subsystem: %s", err)
1939 cr.setCgroupParent = p
1940 cr.expectCgroupParent = p
1945 if *memprofile != "" {
1946 f, err := os.Create(*memprofile)
1948 log.Printf("could not create memory profile: %s", err)
1950 runtime.GC() // get up-to-date statistics
1951 if err := pprof.WriteHeapProfile(f); err != nil {
1952 log.Printf("could not write memory profile: %s", err)
1954 closeerr := f.Close()
1955 if closeerr != nil {
1956 log.Printf("closing memprofile file: %s", err)
1961 log.Printf("%s: %v", containerUUID, runerr)
1967 // Try to load ConfigData in hpc (slurm/lsf) environment. This means
1968 // loading the cluster config from the specified file and (if that
1969 // works) getting the runtime_constraints container field from
1970 // controller to determine # VCPUs so we can calculate KeepBuffers.
1971 func hpcConfData(uuid string, configFile string, stderr io.Writer) ConfigData {
1973 conf.Cluster = loadClusterConfigFile(configFile, stderr)
1974 if conf.Cluster == nil {
1975 // skip loading the container record -- we won't be
1976 // able to start local keepstore anyway.
1979 arv, err := arvadosclient.MakeArvadosClient()
1981 fmt.Fprintf(stderr, "error setting up arvadosclient: %s\n", err)
1985 var ctr arvados.Container
1986 err = arv.Call("GET", "containers", uuid, "", arvadosclient.Dict{"select": []string{"runtime_constraints"}}, &ctr)
1988 fmt.Fprintf(stderr, "error getting container record: %s\n", err)
1991 if ctr.RuntimeConstraints.VCPUs > 0 {
1992 conf.KeepBuffers = ctr.RuntimeConstraints.VCPUs * conf.Cluster.Containers.LocalKeepBlobBuffersPerVCPU
1997 // Load cluster config file from given path. If an error occurs, log
1998 // the error to stderr and return nil.
1999 func loadClusterConfigFile(path string, stderr io.Writer) *arvados.Cluster {
2000 ldr := config.NewLoader(&bytes.Buffer{}, ctxlog.New(stderr, "plain", "info"))
2002 cfg, err := ldr.Load()
2004 fmt.Fprintf(stderr, "could not load config file %s: %s\n", path, err)
2007 cluster, err := cfg.GetCluster("")
2009 fmt.Fprintf(stderr, "could not use config file %s: %s\n", path, err)
2012 fmt.Fprintf(stderr, "loaded config file %s\n", path)
2016 func startLocalKeepstore(configData ConfigData, logbuf io.Writer) (*exec.Cmd, error) {
2017 if configData.KeepBuffers < 1 {
2018 fmt.Fprintf(logbuf, "not starting a local keepstore process because KeepBuffers=%v in config\n", configData.KeepBuffers)
2021 if configData.Cluster == nil {
2022 fmt.Fprint(logbuf, "not starting a local keepstore process because cluster config file was not loaded\n")
2025 for uuid, vol := range configData.Cluster.Volumes {
2026 if len(vol.AccessViaHosts) > 0 {
2027 fmt.Fprintf(logbuf, "not starting a local keepstore process because a volume (%s) uses AccessViaHosts\n", uuid)
2030 if !vol.ReadOnly && vol.Replication < configData.Cluster.Collections.DefaultReplication {
2031 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)
2036 // Rather than have an alternate way to tell keepstore how
2037 // many buffers to use when starting it this way, we just
2038 // modify the cluster configuration that we feed it on stdin.
2039 configData.Cluster.API.MaxKeepBlobBuffers = configData.KeepBuffers
2041 ln, err := net.Listen("tcp", "localhost:0")
2045 _, port, err := net.SplitHostPort(ln.Addr().String())
2051 url := "http://localhost:" + port
2053 fmt.Fprintf(logbuf, "starting keepstore on %s\n", url)
2055 var confJSON bytes.Buffer
2056 err = json.NewEncoder(&confJSON).Encode(arvados.Config{
2057 Clusters: map[string]arvados.Cluster{
2058 configData.Cluster.ClusterID: *configData.Cluster,
2064 cmd := exec.Command("/proc/self/exe", "keepstore", "-config=-")
2065 if target, err := os.Readlink(cmd.Path); err == nil && strings.HasSuffix(target, ".test") {
2066 // If we're a 'go test' process, running
2067 // /proc/self/exe would start the test suite in a
2068 // child process, which is not what we want.
2069 cmd.Path, _ = exec.LookPath("go")
2070 cmd.Args = append([]string{"go", "run", "../../cmd/arvados-server"}, cmd.Args[1:]...)
2071 cmd.Env = os.Environ()
2073 cmd.Stdin = &confJSON
2076 cmd.Env = append(cmd.Env,
2078 "ARVADOS_SERVICE_INTERNAL_URL="+url)
2081 return nil, fmt.Errorf("error starting keepstore process: %w", err)
2088 ctx, cancel := context.WithDeadline(context.Background(), time.Now().Add(time.Second*10))
2090 poll := time.NewTicker(time.Second / 10)
2092 client := http.Client{}
2094 testReq, err := http.NewRequestWithContext(ctx, "GET", url+"/_health/ping", nil)
2095 testReq.Header.Set("Authorization", "Bearer "+configData.Cluster.ManagementToken)
2099 resp, err := client.Do(testReq)
2102 if resp.StatusCode == http.StatusOK {
2107 return nil, fmt.Errorf("keepstore child process exited")
2109 if ctx.Err() != nil {
2110 return nil, fmt.Errorf("timed out waiting for new keepstore process to report healthy")
2113 os.Setenv("ARVADOS_KEEP_SERVICES", url)
2117 // return current uid, gid, groups in a format suitable for logging:
2118 // "crunch-run process has uid=1234(arvados) gid=1234(arvados)
2119 // groups=1234(arvados),114(fuse)"
2120 func currentUserAndGroups() string {
2121 u, err := user.Current()
2123 return fmt.Sprintf("error getting current user ID: %s", err)
2125 s := fmt.Sprintf("crunch-run process has uid=%s(%s) gid=%s", u.Uid, u.Username, u.Gid)
2126 if g, err := user.LookupGroupId(u.Gid); err == nil {
2127 s += fmt.Sprintf("(%s)", g.Name)
2130 if gids, err := u.GroupIds(); err == nil {
2131 for i, gid := range gids {
2136 if g, err := user.LookupGroupId(gid); err == nil {
2137 s += fmt.Sprintf("(%s)", g.Name)