1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
30 "git.curoverse.com/arvados.git/lib/crunchstat"
31 "git.curoverse.com/arvados.git/sdk/go/arvados"
32 "git.curoverse.com/arvados.git/sdk/go/arvadosclient"
33 "git.curoverse.com/arvados.git/sdk/go/keepclient"
34 "git.curoverse.com/arvados.git/sdk/go/manifest"
35 "github.com/shirou/gopsutil/process"
36 "golang.org/x/net/context"
38 dockertypes "github.com/docker/docker/api/types"
39 dockercontainer "github.com/docker/docker/api/types/container"
40 dockernetwork "github.com/docker/docker/api/types/network"
41 dockerclient "github.com/docker/docker/client"
46 // IArvadosClient is the minimal Arvados API methods used by crunch-run.
47 type IArvadosClient interface {
48 Create(resourceType string, parameters arvadosclient.Dict, output interface{}) error
49 Get(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error
50 Update(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error
51 Call(method, resourceType, uuid, action string, parameters arvadosclient.Dict, output interface{}) error
52 CallRaw(method string, resourceType string, uuid string, action string, parameters arvadosclient.Dict) (reader io.ReadCloser, err error)
53 Discovery(key string) (interface{}, error)
56 // ErrCancelled is the error returned when the container is cancelled.
57 var ErrCancelled = errors.New("Cancelled")
59 // IKeepClient is the minimal Keep API methods used by crunch-run.
60 type IKeepClient interface {
61 PutB(buf []byte) (string, int, error)
62 ReadAt(locator string, p []byte, off int) (int, error)
63 ManifestFileReader(m manifest.Manifest, filename string) (arvados.File, error)
67 // NewLogWriter is a factory function to create a new log writer.
68 type NewLogWriter func(name string) (io.WriteCloser, error)
70 type RunArvMount func(args []string, tok string) (*exec.Cmd, error)
72 type MkTempDir func(string, string) (string, error)
74 // ThinDockerClient is the minimal Docker client interface used by crunch-run.
75 type ThinDockerClient interface {
76 ContainerAttach(ctx context.Context, container string, options dockertypes.ContainerAttachOptions) (dockertypes.HijackedResponse, error)
77 ContainerCreate(ctx context.Context, config *dockercontainer.Config, hostConfig *dockercontainer.HostConfig,
78 networkingConfig *dockernetwork.NetworkingConfig, containerName string) (dockercontainer.ContainerCreateCreatedBody, error)
79 ContainerStart(ctx context.Context, container string, options dockertypes.ContainerStartOptions) error
80 ContainerRemove(ctx context.Context, container string, options dockertypes.ContainerRemoveOptions) error
81 ContainerWait(ctx context.Context, container string, condition dockercontainer.WaitCondition) (<-chan dockercontainer.ContainerWaitOKBody, <-chan error)
82 ImageInspectWithRaw(ctx context.Context, image string) (dockertypes.ImageInspect, []byte, error)
83 ImageLoad(ctx context.Context, input io.Reader, quiet bool) (dockertypes.ImageLoadResponse, error)
84 ImageRemove(ctx context.Context, image string, options dockertypes.ImageRemoveOptions) ([]dockertypes.ImageDeleteResponseItem, 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 Docker ThinDockerClient
95 client *arvados.Client
96 ArvClient IArvadosClient
99 ContainerConfig dockercontainer.Config
100 dockercontainer.HostConfig
105 loggingDone chan bool
106 CrunchLog *ThrottledLogger
107 Stdout io.WriteCloser
108 Stderr io.WriteCloser
109 LogCollection arvados.CollectionFileSystem
117 Volumes map[string]struct{}
119 SigChan chan os.Signal
120 ArvMountExit chan error
121 SecretMounts map[string]arvados.Mount
122 MkArvClient func(token string) (IArvadosClient, error)
126 ListProcesses func() ([]PsProcess, error)
128 statLogger io.WriteCloser
129 statReporter *crunchstat.Reporter
130 hoststatLogger io.WriteCloser
131 hoststatReporter *crunchstat.Reporter
132 statInterval time.Duration
134 // What we expect the container's cgroup parent to be.
135 expectCgroupParent string
136 // What we tell docker to use as the container's cgroup
137 // parent. Note: Ideally we would use the same field for both
138 // expectCgroupParent and setCgroupParent, and just make it
139 // default to "docker". However, when using docker < 1.10 with
140 // systemd, specifying a non-empty cgroup parent (even the
141 // default value "docker") hits a docker bug
142 // (https://github.com/docker/docker/issues/17126). Using two
143 // separate fields makes it possible to use the "expect cgroup
144 // parent to be X" feature even on sites where the "specify
145 // cgroup parent" feature breaks.
146 setCgroupParent string
148 cStateLock sync.Mutex
149 cCancelled bool // StopContainer() invoked
151 enableNetwork string // one of "default" or "always"
152 networkMode string // passed through to HostConfig.NetworkMode
153 arvMountLog *ThrottledLogger
154 checkContainerd time.Duration
157 // setupSignals sets up signal handling to gracefully terminate the underlying
158 // Docker container and update state when receiving a TERM, INT or QUIT signal.
159 func (runner *ContainerRunner) setupSignals() {
160 runner.SigChan = make(chan os.Signal, 1)
161 signal.Notify(runner.SigChan, syscall.SIGTERM)
162 signal.Notify(runner.SigChan, syscall.SIGINT)
163 signal.Notify(runner.SigChan, syscall.SIGQUIT)
165 go func(sig chan os.Signal) {
172 // stop the underlying Docker container.
173 func (runner *ContainerRunner) stop(sig os.Signal) {
174 runner.cStateLock.Lock()
175 defer runner.cStateLock.Unlock()
177 runner.CrunchLog.Printf("caught signal: %v", sig)
179 if runner.ContainerID == "" {
182 runner.cCancelled = true
183 runner.CrunchLog.Printf("removing container")
184 err := runner.Docker.ContainerRemove(context.TODO(), runner.ContainerID, dockertypes.ContainerRemoveOptions{Force: true})
186 runner.CrunchLog.Printf("error removing container: %s", err)
190 var errorBlacklist = []string{
191 "(?ms).*[Cc]annot connect to the Docker daemon.*",
192 "(?ms).*oci runtime error.*starting container process.*container init.*mounting.*to rootfs.*no such file or directory.*",
193 "(?ms).*grpc: the connection is unavailable.*",
195 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)")
197 func (runner *ContainerRunner) runBrokenNodeHook() {
198 if *brokenNodeHook == "" {
199 runner.CrunchLog.Printf("No broken node hook provided, cannot mark node as broken.")
201 runner.CrunchLog.Printf("Running broken node hook %q", *brokenNodeHook)
203 c := exec.Command(*brokenNodeHook)
204 c.Stdout = runner.CrunchLog
205 c.Stderr = runner.CrunchLog
208 runner.CrunchLog.Printf("Error running broken node hook: %v", err)
213 func (runner *ContainerRunner) checkBrokenNode(goterr error) bool {
214 for _, d := range errorBlacklist {
215 if m, e := regexp.MatchString(d, goterr.Error()); m && e == nil {
216 runner.CrunchLog.Printf("Error suggests node is unable to run containers: %v", goterr)
217 runner.runBrokenNodeHook()
224 // LoadImage determines the docker image id from the container record and
225 // checks if it is available in the local Docker image store. If not, it loads
226 // the image from Keep.
227 func (runner *ContainerRunner) LoadImage() (err error) {
229 runner.CrunchLog.Printf("Fetching Docker image from collection '%s'", runner.Container.ContainerImage)
231 var collection arvados.Collection
232 err = runner.ArvClient.Get("collections", runner.Container.ContainerImage, nil, &collection)
234 return fmt.Errorf("While getting container image collection: %v", err)
236 manifest := manifest.Manifest{Text: collection.ManifestText}
237 var img, imageID string
238 for ms := range manifest.StreamIter() {
239 img = ms.FileStreamSegments[0].Name
240 if !strings.HasSuffix(img, ".tar") {
241 return fmt.Errorf("First file in the container image collection does not end in .tar")
243 imageID = img[:len(img)-4]
246 runner.CrunchLog.Printf("Using Docker image id '%s'", imageID)
248 _, _, err = runner.Docker.ImageInspectWithRaw(context.TODO(), imageID)
250 runner.CrunchLog.Print("Loading Docker image from keep")
252 var readCloser io.ReadCloser
253 readCloser, err = runner.Kc.ManifestFileReader(manifest, img)
255 return fmt.Errorf("While creating ManifestFileReader for container image: %v", err)
258 response, err := runner.Docker.ImageLoad(context.TODO(), readCloser, true)
260 return fmt.Errorf("While loading container image into Docker: %v", err)
263 defer response.Body.Close()
264 rbody, err := ioutil.ReadAll(response.Body)
266 return fmt.Errorf("Reading response to image load: %v", err)
268 runner.CrunchLog.Printf("Docker response: %s", rbody)
270 runner.CrunchLog.Print("Docker image is available")
273 runner.ContainerConfig.Image = imageID
275 runner.Kc.ClearBlockCache()
280 func (runner *ContainerRunner) ArvMountCmd(arvMountCmd []string, token string) (c *exec.Cmd, err error) {
281 c = exec.Command("arv-mount", arvMountCmd...)
283 // Copy our environment, but override ARVADOS_API_TOKEN with
284 // the container auth token.
286 for _, s := range os.Environ() {
287 if !strings.HasPrefix(s, "ARVADOS_API_TOKEN=") {
288 c.Env = append(c.Env, s)
291 c.Env = append(c.Env, "ARVADOS_API_TOKEN="+token)
293 w, err := runner.NewLogWriter("arv-mount")
297 runner.arvMountLog = NewThrottledLogger(w)
298 c.Stdout = runner.arvMountLog
299 c.Stderr = runner.arvMountLog
301 runner.CrunchLog.Printf("Running %v", c.Args)
308 statReadme := make(chan bool)
309 runner.ArvMountExit = make(chan error)
314 time.Sleep(100 * time.Millisecond)
315 _, err = os.Stat(fmt.Sprintf("%s/by_id/README", runner.ArvMountPoint))
327 runner.CrunchLog.Printf("Arv-mount exit error: %v", mnterr)
329 runner.ArvMountExit <- mnterr
330 close(runner.ArvMountExit)
336 case err := <-runner.ArvMountExit:
337 runner.ArvMount = nil
345 func (runner *ContainerRunner) SetupArvMountPoint(prefix string) (err error) {
346 if runner.ArvMountPoint == "" {
347 runner.ArvMountPoint, err = runner.MkTempDir(runner.parentTemp, prefix)
352 func copyfile(src string, dst string) (err error) {
353 srcfile, err := os.Open(src)
358 os.MkdirAll(path.Dir(dst), 0777)
360 dstfile, err := os.Create(dst)
364 _, err = io.Copy(dstfile, srcfile)
369 err = srcfile.Close()
370 err2 := dstfile.Close()
383 func (runner *ContainerRunner) SetupMounts() (err error) {
384 err = runner.SetupArvMountPoint("keep")
386 return fmt.Errorf("While creating keep mount temp dir: %v", err)
389 token, err := runner.ContainerToken()
391 return fmt.Errorf("could not get container token: %s", err)
396 arvMountCmd := []string{
400 fmt.Sprintf("--crunchstat-interval=%v", runner.statInterval.Seconds())}
402 if runner.Container.RuntimeConstraints.KeepCacheRAM > 0 {
403 arvMountCmd = append(arvMountCmd, "--file-cache", fmt.Sprintf("%d", runner.Container.RuntimeConstraints.KeepCacheRAM))
406 collectionPaths := []string{}
408 runner.Volumes = make(map[string]struct{})
409 needCertMount := true
410 type copyFile struct {
414 var copyFiles []copyFile
417 for bind := range runner.Container.Mounts {
418 binds = append(binds, bind)
420 for bind := range runner.SecretMounts {
421 if _, ok := runner.Container.Mounts[bind]; ok {
422 return fmt.Errorf("Secret mount %q conflicts with regular mount", bind)
424 if runner.SecretMounts[bind].Kind != "json" &&
425 runner.SecretMounts[bind].Kind != "text" {
426 return fmt.Errorf("Secret mount %q type is %q but only 'json' and 'text' are permitted.",
427 bind, runner.SecretMounts[bind].Kind)
429 binds = append(binds, bind)
433 for _, bind := range binds {
434 mnt, ok := runner.Container.Mounts[bind]
436 mnt = runner.SecretMounts[bind]
438 if bind == "stdout" || bind == "stderr" {
439 // Is it a "file" mount kind?
440 if mnt.Kind != "file" {
441 return fmt.Errorf("Unsupported mount kind '%s' for %s. Only 'file' is supported.", mnt.Kind, bind)
444 // Does path start with OutputPath?
445 prefix := runner.Container.OutputPath
446 if !strings.HasSuffix(prefix, "/") {
449 if !strings.HasPrefix(mnt.Path, prefix) {
450 return fmt.Errorf("%s path does not start with OutputPath: %s, %s", strings.Title(bind), mnt.Path, prefix)
455 // Is it a "collection" mount kind?
456 if mnt.Kind != "collection" && mnt.Kind != "json" {
457 return fmt.Errorf("Unsupported mount kind '%s' for stdin. Only 'collection' or 'json' are supported.", mnt.Kind)
461 if bind == "/etc/arvados/ca-certificates.crt" {
462 needCertMount = false
465 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") && bind != runner.Container.OutputPath+"/" {
466 if mnt.Kind != "collection" && mnt.Kind != "text" && mnt.Kind != "json" {
467 return fmt.Errorf("Only mount points of kind 'collection', 'text' or 'json' are supported underneath the output_path for %q, was %q", bind, mnt.Kind)
472 case mnt.Kind == "collection" && bind != "stdin":
474 if mnt.UUID != "" && mnt.PortableDataHash != "" {
475 return fmt.Errorf("Cannot specify both 'uuid' and 'portable_data_hash' for a collection mount")
479 return fmt.Errorf("Writing to existing collections currently not permitted.")
482 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.UUID)
483 } else if mnt.PortableDataHash != "" {
484 if mnt.Writable && !strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
485 return fmt.Errorf("Can never write to a collection specified by portable data hash")
487 idx := strings.Index(mnt.PortableDataHash, "/")
489 mnt.Path = path.Clean(mnt.PortableDataHash[idx:])
490 mnt.PortableDataHash = mnt.PortableDataHash[0:idx]
491 runner.Container.Mounts[bind] = mnt
493 src = fmt.Sprintf("%s/by_id/%s", runner.ArvMountPoint, mnt.PortableDataHash)
494 if mnt.Path != "" && mnt.Path != "." {
495 if strings.HasPrefix(mnt.Path, "./") {
496 mnt.Path = mnt.Path[2:]
497 } else if strings.HasPrefix(mnt.Path, "/") {
498 mnt.Path = mnt.Path[1:]
500 src += "/" + mnt.Path
503 src = fmt.Sprintf("%s/tmp%d", runner.ArvMountPoint, tmpcount)
504 arvMountCmd = append(arvMountCmd, "--mount-tmp")
505 arvMountCmd = append(arvMountCmd, fmt.Sprintf("tmp%d", tmpcount))
509 if bind == runner.Container.OutputPath {
510 runner.HostOutputDir = src
511 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", src, bind))
512 } else if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
513 copyFiles = append(copyFiles, copyFile{src, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
515 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", src, bind))
518 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s:ro", src, bind))
520 collectionPaths = append(collectionPaths, src)
522 case mnt.Kind == "tmp":
524 tmpdir, err = runner.MkTempDir(runner.parentTemp, "tmp")
526 return fmt.Errorf("While creating mount temp dir: %v", err)
528 st, staterr := os.Stat(tmpdir)
530 return fmt.Errorf("While Stat on temp dir: %v", staterr)
532 err = os.Chmod(tmpdir, st.Mode()|os.ModeSetgid|0777)
534 return fmt.Errorf("While Chmod temp dir: %v", err)
536 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s", tmpdir, bind))
537 if bind == runner.Container.OutputPath {
538 runner.HostOutputDir = tmpdir
541 case mnt.Kind == "json" || mnt.Kind == "text":
543 if mnt.Kind == "json" {
544 filedata, err = json.Marshal(mnt.Content)
546 return fmt.Errorf("encoding json data: %v", err)
549 text, ok := mnt.Content.(string)
551 return fmt.Errorf("content for mount %q must be a string", bind)
553 filedata = []byte(text)
556 tmpdir, err := runner.MkTempDir(runner.parentTemp, mnt.Kind)
558 return fmt.Errorf("creating temp dir: %v", err)
560 tmpfn := filepath.Join(tmpdir, "mountdata."+mnt.Kind)
561 err = ioutil.WriteFile(tmpfn, filedata, 0444)
563 return fmt.Errorf("writing temp file: %v", err)
565 if strings.HasPrefix(bind, runner.Container.OutputPath+"/") {
566 copyFiles = append(copyFiles, copyFile{tmpfn, runner.HostOutputDir + bind[len(runner.Container.OutputPath):]})
568 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:%s:ro", tmpfn, bind))
571 case mnt.Kind == "git_tree":
572 tmpdir, err := runner.MkTempDir(runner.parentTemp, "git_tree")
574 return fmt.Errorf("creating temp dir: %v", err)
576 err = gitMount(mnt).extractTree(runner.ArvClient, tmpdir, token)
580 runner.Binds = append(runner.Binds, tmpdir+":"+bind+":ro")
584 if runner.HostOutputDir == "" {
585 return fmt.Errorf("Output path does not correspond to a writable mount point")
588 if wantAPI := runner.Container.RuntimeConstraints.API; needCertMount && wantAPI != nil && *wantAPI {
589 for _, certfile := range arvadosclient.CertFiles {
590 _, err := os.Stat(certfile)
592 runner.Binds = append(runner.Binds, fmt.Sprintf("%s:/etc/arvados/ca-certificates.crt:ro", certfile))
599 arvMountCmd = append(arvMountCmd, "--mount-by-pdh", "by_id")
601 arvMountCmd = append(arvMountCmd, "--mount-by-id", "by_id")
603 arvMountCmd = append(arvMountCmd, runner.ArvMountPoint)
605 runner.ArvMount, err = runner.RunArvMount(arvMountCmd, token)
607 return fmt.Errorf("While trying to start arv-mount: %v", err)
610 for _, p := range collectionPaths {
613 return fmt.Errorf("While checking that input files exist: %v", err)
617 for _, cp := range copyFiles {
618 st, err := os.Stat(cp.src)
620 return fmt.Errorf("While staging writable file from %q to %q: %v", cp.src, cp.bind, err)
623 err = filepath.Walk(cp.src, func(walkpath string, walkinfo os.FileInfo, walkerr error) error {
627 target := path.Join(cp.bind, walkpath[len(cp.src):])
628 if walkinfo.Mode().IsRegular() {
629 copyerr := copyfile(walkpath, target)
633 return os.Chmod(target, walkinfo.Mode()|0777)
634 } else if walkinfo.Mode().IsDir() {
635 mkerr := os.MkdirAll(target, 0777)
639 return os.Chmod(target, walkinfo.Mode()|os.ModeSetgid|0777)
641 return fmt.Errorf("Source %q is not a regular file or directory", cp.src)
644 } else if st.Mode().IsRegular() {
645 err = copyfile(cp.src, cp.bind)
647 err = os.Chmod(cp.bind, st.Mode()|0777)
651 return fmt.Errorf("While staging writable file from %q to %q: %v", cp.src, cp.bind, err)
658 func (runner *ContainerRunner) ProcessDockerAttach(containerReader io.Reader) {
659 // Handle docker log protocol
660 // https://docs.docker.com/engine/reference/api/docker_remote_api_v1.15/#attach-to-a-container
661 defer close(runner.loggingDone)
663 header := make([]byte, 8)
666 _, err = io.ReadAtLeast(containerReader, header, 8)
673 readsize := int64(header[7]) | (int64(header[6]) << 8) | (int64(header[5]) << 16) | (int64(header[4]) << 24)
676 _, err = io.CopyN(runner.Stdout, containerReader, readsize)
679 _, err = io.CopyN(runner.Stderr, containerReader, readsize)
684 runner.CrunchLog.Printf("error reading docker logs: %v", err)
687 err = runner.Stdout.Close()
689 runner.CrunchLog.Printf("error closing stdout logs: %v", err)
692 err = runner.Stderr.Close()
694 runner.CrunchLog.Printf("error closing stderr logs: %v", err)
697 if runner.statReporter != nil {
698 runner.statReporter.Stop()
699 err = runner.statLogger.Close()
701 runner.CrunchLog.Printf("error closing crunchstat logs: %v", err)
706 func (runner *ContainerRunner) stopHoststat() error {
707 if runner.hoststatReporter == nil {
710 runner.hoststatReporter.Stop()
711 err := runner.hoststatLogger.Close()
713 return fmt.Errorf("error closing hoststat logs: %v", err)
718 func (runner *ContainerRunner) startHoststat() error {
719 w, err := runner.NewLogWriter("hoststat")
723 runner.hoststatLogger = NewThrottledLogger(w)
724 runner.hoststatReporter = &crunchstat.Reporter{
725 Logger: log.New(runner.hoststatLogger, "", 0),
726 CgroupRoot: runner.cgroupRoot,
727 PollPeriod: runner.statInterval,
729 runner.hoststatReporter.Start()
733 func (runner *ContainerRunner) startCrunchstat() error {
734 w, err := runner.NewLogWriter("crunchstat")
738 runner.statLogger = NewThrottledLogger(w)
739 runner.statReporter = &crunchstat.Reporter{
740 CID: runner.ContainerID,
741 Logger: log.New(runner.statLogger, "", 0),
742 CgroupParent: runner.expectCgroupParent,
743 CgroupRoot: runner.cgroupRoot,
744 PollPeriod: runner.statInterval,
745 TempDir: runner.parentTemp,
747 runner.statReporter.Start()
751 type infoCommand struct {
756 // LogHostInfo logs info about the current host, for debugging and
757 // accounting purposes. Although it's logged as "node-info", this is
758 // about the environment where crunch-run is actually running, which
759 // might differ from what's described in the node record (see
761 func (runner *ContainerRunner) LogHostInfo() (err error) {
762 w, err := runner.NewLogWriter("node-info")
767 commands := []infoCommand{
769 label: "Host Information",
770 cmd: []string{"uname", "-a"},
773 label: "CPU Information",
774 cmd: []string{"cat", "/proc/cpuinfo"},
777 label: "Memory Information",
778 cmd: []string{"cat", "/proc/meminfo"},
782 cmd: []string{"df", "-m", "/", os.TempDir()},
785 label: "Disk INodes",
786 cmd: []string{"df", "-i", "/", os.TempDir()},
790 // Run commands with informational output to be logged.
791 for _, command := range commands {
792 fmt.Fprintln(w, command.label)
793 cmd := exec.Command(command.cmd[0], command.cmd[1:]...)
796 if err := cmd.Run(); err != nil {
797 err = fmt.Errorf("While running command %q: %v", command.cmd, err)
806 return fmt.Errorf("While closing node-info logs: %v", err)
811 // LogContainerRecord gets and saves the raw JSON container record from the API server
812 func (runner *ContainerRunner) LogContainerRecord() error {
813 logged, err := runner.logAPIResponse("container", "containers", map[string]interface{}{"filters": [][]string{{"uuid", "=", runner.Container.UUID}}}, nil)
814 if !logged && err == nil {
815 err = fmt.Errorf("error: no container record found for %s", runner.Container.UUID)
820 // LogNodeRecord logs arvados#node record corresponding to the current host.
821 func (runner *ContainerRunner) LogNodeRecord() error {
822 hostname := os.Getenv("SLURMD_NODENAME")
824 hostname, _ = os.Hostname()
826 _, err := runner.logAPIResponse("node", "nodes", map[string]interface{}{"filters": [][]string{{"hostname", "=", hostname}}}, func(resp interface{}) {
827 // The "info" field has admin-only info when obtained
828 // with a privileged token, and should not be logged.
829 node, ok := resp.(map[string]interface{})
837 func (runner *ContainerRunner) logAPIResponse(label, path string, params map[string]interface{}, munge func(interface{})) (logged bool, err error) {
838 writer, err := runner.LogCollection.OpenFile(label+".json", os.O_CREATE|os.O_WRONLY, 0666)
843 ArvClient: runner.ArvClient,
844 UUID: runner.Container.UUID,
845 loggingStream: label,
849 reader, err := runner.ArvClient.CallRaw("GET", path, "", "", arvadosclient.Dict(params))
851 return false, fmt.Errorf("error getting %s record: %v", label, err)
855 dec := json.NewDecoder(reader)
857 var resp map[string]interface{}
858 if err = dec.Decode(&resp); err != nil {
859 return false, fmt.Errorf("error decoding %s list response: %v", label, err)
861 items, ok := resp["items"].([]interface{})
863 return false, fmt.Errorf("error decoding %s list response: no \"items\" key in API list response", label)
864 } else if len(items) < 1 {
870 // Re-encode it using indentation to improve readability
871 enc := json.NewEncoder(w)
872 enc.SetIndent("", " ")
873 if err = enc.Encode(items[0]); err != nil {
874 return false, fmt.Errorf("error logging %s record: %v", label, err)
878 return false, fmt.Errorf("error closing %s.json in log collection: %v", label, err)
883 // AttachStreams connects the docker container stdin, stdout and stderr logs
884 // to the Arvados logger which logs to Keep and the API server logs table.
885 func (runner *ContainerRunner) AttachStreams() (err error) {
887 runner.CrunchLog.Print("Attaching container streams")
889 // If stdin mount is provided, attach it to the docker container
890 var stdinRdr arvados.File
892 if stdinMnt, ok := runner.Container.Mounts["stdin"]; ok {
893 if stdinMnt.Kind == "collection" {
894 var stdinColl arvados.Collection
895 collId := stdinMnt.UUID
897 collId = stdinMnt.PortableDataHash
899 err = runner.ArvClient.Get("collections", collId, nil, &stdinColl)
901 return fmt.Errorf("While getting stding collection: %v", err)
904 stdinRdr, err = runner.Kc.ManifestFileReader(manifest.Manifest{Text: stdinColl.ManifestText}, stdinMnt.Path)
905 if os.IsNotExist(err) {
906 return fmt.Errorf("stdin collection path not found: %v", stdinMnt.Path)
907 } else if err != nil {
908 return fmt.Errorf("While getting stdin collection path %v: %v", stdinMnt.Path, err)
910 } else if stdinMnt.Kind == "json" {
911 stdinJson, err = json.Marshal(stdinMnt.Content)
913 return fmt.Errorf("While encoding stdin json data: %v", err)
918 stdinUsed := stdinRdr != nil || len(stdinJson) != 0
919 response, err := runner.Docker.ContainerAttach(context.TODO(), runner.ContainerID,
920 dockertypes.ContainerAttachOptions{Stream: true, Stdin: stdinUsed, Stdout: true, Stderr: true})
922 return fmt.Errorf("While attaching container stdout/stderr streams: %v", err)
925 runner.loggingDone = make(chan bool)
927 if stdoutMnt, ok := runner.Container.Mounts["stdout"]; ok {
928 stdoutFile, err := runner.getStdoutFile(stdoutMnt.Path)
932 runner.Stdout = stdoutFile
933 } else if w, err := runner.NewLogWriter("stdout"); err != nil {
936 runner.Stdout = NewThrottledLogger(w)
939 if stderrMnt, ok := runner.Container.Mounts["stderr"]; ok {
940 stderrFile, err := runner.getStdoutFile(stderrMnt.Path)
944 runner.Stderr = stderrFile
945 } else if w, err := runner.NewLogWriter("stderr"); err != nil {
948 runner.Stderr = NewThrottledLogger(w)
953 _, err := io.Copy(response.Conn, stdinRdr)
955 runner.CrunchLog.Print("While writing stdin collection to docker container %q", err)
959 response.CloseWrite()
961 } else if len(stdinJson) != 0 {
963 _, err := io.Copy(response.Conn, bytes.NewReader(stdinJson))
965 runner.CrunchLog.Print("While writing stdin json to docker container %q", err)
968 response.CloseWrite()
972 go runner.ProcessDockerAttach(response.Reader)
977 func (runner *ContainerRunner) getStdoutFile(mntPath string) (*os.File, error) {
978 stdoutPath := mntPath[len(runner.Container.OutputPath):]
979 index := strings.LastIndex(stdoutPath, "/")
981 subdirs := stdoutPath[:index]
983 st, err := os.Stat(runner.HostOutputDir)
985 return nil, fmt.Errorf("While Stat on temp dir: %v", err)
987 stdoutPath := filepath.Join(runner.HostOutputDir, subdirs)
988 err = os.MkdirAll(stdoutPath, st.Mode()|os.ModeSetgid|0777)
990 return nil, fmt.Errorf("While MkdirAll %q: %v", stdoutPath, err)
994 stdoutFile, err := os.Create(filepath.Join(runner.HostOutputDir, stdoutPath))
996 return nil, fmt.Errorf("While creating file %q: %v", stdoutPath, err)
999 return stdoutFile, nil
1002 // CreateContainer creates the docker container.
1003 func (runner *ContainerRunner) CreateContainer() error {
1004 runner.CrunchLog.Print("Creating Docker container")
1006 runner.ContainerConfig.Cmd = runner.Container.Command
1007 if runner.Container.Cwd != "." {
1008 runner.ContainerConfig.WorkingDir = runner.Container.Cwd
1011 for k, v := range runner.Container.Environment {
1012 runner.ContainerConfig.Env = append(runner.ContainerConfig.Env, k+"="+v)
1015 runner.ContainerConfig.Volumes = runner.Volumes
1017 maxRAM := int64(runner.Container.RuntimeConstraints.RAM)
1018 if maxRAM < 4*1024*1024 {
1019 // Docker daemon won't let you set a limit less than 4 MiB
1020 maxRAM = 4 * 1024 * 1024
1022 runner.HostConfig = dockercontainer.HostConfig{
1023 Binds: runner.Binds,
1024 LogConfig: dockercontainer.LogConfig{
1027 Resources: dockercontainer.Resources{
1028 CgroupParent: runner.setCgroupParent,
1029 NanoCPUs: int64(runner.Container.RuntimeConstraints.VCPUs) * 1000000000,
1030 Memory: maxRAM, // RAM
1031 MemorySwap: maxRAM, // RAM+swap
1032 KernelMemory: maxRAM, // kernel portion
1036 if wantAPI := runner.Container.RuntimeConstraints.API; wantAPI != nil && *wantAPI {
1037 tok, err := runner.ContainerToken()
1041 runner.ContainerConfig.Env = append(runner.ContainerConfig.Env,
1042 "ARVADOS_API_TOKEN="+tok,
1043 "ARVADOS_API_HOST="+os.Getenv("ARVADOS_API_HOST"),
1044 "ARVADOS_API_HOST_INSECURE="+os.Getenv("ARVADOS_API_HOST_INSECURE"),
1046 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode(runner.networkMode)
1048 if runner.enableNetwork == "always" {
1049 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode(runner.networkMode)
1051 runner.HostConfig.NetworkMode = dockercontainer.NetworkMode("none")
1055 _, stdinUsed := runner.Container.Mounts["stdin"]
1056 runner.ContainerConfig.OpenStdin = stdinUsed
1057 runner.ContainerConfig.StdinOnce = stdinUsed
1058 runner.ContainerConfig.AttachStdin = stdinUsed
1059 runner.ContainerConfig.AttachStdout = true
1060 runner.ContainerConfig.AttachStderr = true
1062 createdBody, err := runner.Docker.ContainerCreate(context.TODO(), &runner.ContainerConfig, &runner.HostConfig, nil, runner.Container.UUID)
1064 return fmt.Errorf("While creating container: %v", err)
1067 runner.ContainerID = createdBody.ID
1069 return runner.AttachStreams()
1072 // StartContainer starts the docker container created by CreateContainer.
1073 func (runner *ContainerRunner) StartContainer() error {
1074 runner.CrunchLog.Printf("Starting Docker container id '%s'", runner.ContainerID)
1075 runner.cStateLock.Lock()
1076 defer runner.cStateLock.Unlock()
1077 if runner.cCancelled {
1080 err := runner.Docker.ContainerStart(context.TODO(), runner.ContainerID,
1081 dockertypes.ContainerStartOptions{})
1084 if m, e := regexp.MatchString("(?ms).*(exec|System error).*(no such file or directory|file not found).*", err.Error()); m && e == nil {
1085 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])
1087 return fmt.Errorf("could not start container: %v%s", err, advice)
1092 // checkContainerd checks if "containerd" is present in the process list.
1093 func (runner *ContainerRunner) CheckContainerd() error {
1094 if runner.checkContainerd == 0 {
1097 p, _ := runner.ListProcesses()
1098 for _, i := range p {
1099 e, _ := i.CmdlineSlice()
1101 if strings.Index(e[0], "containerd") > -1 {
1108 runner.runBrokenNodeHook()
1110 return fmt.Errorf("'containerd' not found in process list.")
1113 // WaitFinish waits for the container to terminate, capture the exit code, and
1114 // close the stdout/stderr logging.
1115 func (runner *ContainerRunner) WaitFinish() error {
1116 var runTimeExceeded <-chan time.Time
1117 runner.CrunchLog.Print("Waiting for container to finish")
1119 waitOk, waitErr := runner.Docker.ContainerWait(context.TODO(), runner.ContainerID, dockercontainer.WaitConditionNotRunning)
1120 arvMountExit := runner.ArvMountExit
1121 if timeout := runner.Container.SchedulingParameters.MaxRunTime; timeout > 0 {
1122 runTimeExceeded = time.After(time.Duration(timeout) * time.Second)
1125 containerdGone := make(chan error)
1126 defer close(containerdGone)
1127 if runner.checkContainerd > 0 {
1129 ticker := time.NewTicker(time.Duration(runner.checkContainerd))
1134 if ck := runner.CheckContainerd(); ck != nil {
1135 containerdGone <- ck
1138 case <-containerdGone:
1139 // Channel closed, quit goroutine
1148 case waitBody := <-waitOk:
1149 runner.CrunchLog.Printf("Container exited with code: %v", waitBody.StatusCode)
1150 code := int(waitBody.StatusCode)
1151 runner.ExitCode = &code
1153 // wait for stdout/stderr to complete
1154 <-runner.loggingDone
1157 case err := <-waitErr:
1158 return fmt.Errorf("container wait: %v", err)
1160 case <-arvMountExit:
1161 runner.CrunchLog.Printf("arv-mount exited while container is still running. Stopping container.")
1163 // arvMountExit will always be ready now that
1164 // it's closed, but that doesn't interest us.
1167 case <-runTimeExceeded:
1168 runner.CrunchLog.Printf("maximum run time exceeded. Stopping container.")
1170 runTimeExceeded = nil
1172 case err := <-containerdGone:
1178 // CaptureOutput saves data from the container's output directory if
1179 // needed, and updates the container output accordingly.
1180 func (runner *ContainerRunner) CaptureOutput() error {
1181 if wantAPI := runner.Container.RuntimeConstraints.API; wantAPI != nil && *wantAPI {
1182 // Output may have been set directly by the container, so
1183 // refresh the container record to check.
1184 err := runner.ArvClient.Get("containers", runner.Container.UUID,
1185 nil, &runner.Container)
1189 if runner.Container.Output != "" {
1190 // Container output is already set.
1191 runner.OutputPDH = &runner.Container.Output
1196 txt, err := (&copier{
1197 client: runner.client,
1198 arvClient: runner.ArvClient,
1199 keepClient: runner.Kc,
1200 hostOutputDir: runner.HostOutputDir,
1201 ctrOutputDir: runner.Container.OutputPath,
1202 binds: runner.Binds,
1203 mounts: runner.Container.Mounts,
1204 secretMounts: runner.SecretMounts,
1205 logger: runner.CrunchLog,
1210 var resp arvados.Collection
1211 err = runner.ArvClient.Create("collections", arvadosclient.Dict{
1212 "ensure_unique_name": true,
1213 "collection": arvadosclient.Dict{
1215 "name": "output for " + runner.Container.UUID,
1216 "manifest_text": txt,
1220 return fmt.Errorf("error creating output collection: %v", err)
1222 runner.OutputPDH = &resp.PortableDataHash
1226 func (runner *ContainerRunner) CleanupDirs() {
1227 if runner.ArvMount != nil {
1229 umount := exec.Command("arv-mount", fmt.Sprintf("--unmount-timeout=%d", delay), "--unmount", runner.ArvMountPoint)
1230 umount.Stdout = runner.CrunchLog
1231 umount.Stderr = runner.CrunchLog
1232 runner.CrunchLog.Printf("Running %v", umount.Args)
1233 umnterr := umount.Start()
1236 runner.CrunchLog.Printf("Error unmounting: %v", umnterr)
1238 // If arv-mount --unmount gets stuck for any reason, we
1239 // don't want to wait for it forever. Do Wait() in a goroutine
1240 // so it doesn't block crunch-run.
1241 umountExit := make(chan error)
1243 mnterr := umount.Wait()
1245 runner.CrunchLog.Printf("Error unmounting: %v", mnterr)
1247 umountExit <- mnterr
1250 for again := true; again; {
1256 case <-runner.ArvMountExit:
1258 case <-time.After(time.Duration((delay + 1) * int64(time.Second))):
1259 runner.CrunchLog.Printf("Timed out waiting for unmount")
1261 umount.Process.Kill()
1263 runner.ArvMount.Process.Kill()
1269 if runner.ArvMountPoint != "" {
1270 if rmerr := os.Remove(runner.ArvMountPoint); rmerr != nil {
1271 runner.CrunchLog.Printf("While cleaning up arv-mount directory %s: %v", runner.ArvMountPoint, rmerr)
1275 if rmerr := os.RemoveAll(runner.parentTemp); rmerr != nil {
1276 runner.CrunchLog.Printf("While cleaning up temporary directory %s: %v", runner.parentTemp, rmerr)
1280 // CommitLogs posts the collection containing the final container logs.
1281 func (runner *ContainerRunner) CommitLogs() error {
1283 // Hold cStateLock to prevent races on CrunchLog (e.g., stop()).
1284 runner.cStateLock.Lock()
1285 defer runner.cStateLock.Unlock()
1287 runner.CrunchLog.Print(runner.finalState)
1289 if runner.arvMountLog != nil {
1290 runner.arvMountLog.Close()
1292 runner.CrunchLog.Close()
1294 // Closing CrunchLog above allows them to be committed to Keep at this
1295 // point, but re-open crunch log with ArvClient in case there are any
1296 // other further errors (such as failing to write the log to Keep!)
1297 // while shutting down
1298 runner.CrunchLog = NewThrottledLogger(&ArvLogWriter{
1299 ArvClient: runner.ArvClient,
1300 UUID: runner.Container.UUID,
1301 loggingStream: "crunch-run",
1304 runner.CrunchLog.Immediate = log.New(os.Stderr, runner.Container.UUID+" ", 0)
1307 if runner.LogsPDH != nil {
1308 // If we have already assigned something to LogsPDH,
1309 // we must be closing the re-opened log, which won't
1310 // end up getting attached to the container record and
1311 // therefore doesn't need to be saved as a collection
1312 // -- it exists only to send logs to other channels.
1316 mt, err := runner.LogCollection.MarshalManifest(".")
1318 return fmt.Errorf("While creating log manifest: %v", err)
1321 var response arvados.Collection
1322 err = runner.ArvClient.Create("collections",
1324 "ensure_unique_name": true,
1325 "collection": arvadosclient.Dict{
1327 "name": "logs for " + runner.Container.UUID,
1328 "manifest_text": mt}},
1331 return fmt.Errorf("While creating log collection: %v", err)
1333 runner.LogsPDH = &response.PortableDataHash
1337 // UpdateContainerRunning updates the container state to "Running"
1338 func (runner *ContainerRunner) UpdateContainerRunning() error {
1339 runner.cStateLock.Lock()
1340 defer runner.cStateLock.Unlock()
1341 if runner.cCancelled {
1344 return runner.ArvClient.Update("containers", runner.Container.UUID,
1345 arvadosclient.Dict{"container": arvadosclient.Dict{"state": "Running"}}, nil)
1348 // ContainerToken returns the api_token the container (and any
1349 // arv-mount processes) are allowed to use.
1350 func (runner *ContainerRunner) ContainerToken() (string, error) {
1351 if runner.token != "" {
1352 return runner.token, nil
1355 var auth arvados.APIClientAuthorization
1356 err := runner.ArvClient.Call("GET", "containers", runner.Container.UUID, "auth", nil, &auth)
1360 runner.token = auth.APIToken
1361 return runner.token, nil
1364 // UpdateContainerComplete updates the container record state on API
1365 // server to "Complete" or "Cancelled"
1366 func (runner *ContainerRunner) UpdateContainerFinal() error {
1367 update := arvadosclient.Dict{}
1368 update["state"] = runner.finalState
1369 if runner.LogsPDH != nil {
1370 update["log"] = *runner.LogsPDH
1372 if runner.finalState == "Complete" {
1373 if runner.ExitCode != nil {
1374 update["exit_code"] = *runner.ExitCode
1376 if runner.OutputPDH != nil {
1377 update["output"] = *runner.OutputPDH
1380 return runner.ArvClient.Update("containers", runner.Container.UUID, arvadosclient.Dict{"container": update}, nil)
1383 // IsCancelled returns the value of Cancelled, with goroutine safety.
1384 func (runner *ContainerRunner) IsCancelled() bool {
1385 runner.cStateLock.Lock()
1386 defer runner.cStateLock.Unlock()
1387 return runner.cCancelled
1390 // NewArvLogWriter creates an ArvLogWriter
1391 func (runner *ContainerRunner) NewArvLogWriter(name string) (io.WriteCloser, error) {
1392 writer, err := runner.LogCollection.OpenFile(name+".txt", os.O_CREATE|os.O_WRONLY, 0666)
1396 return &ArvLogWriter{
1397 ArvClient: runner.ArvClient,
1398 UUID: runner.Container.UUID,
1399 loggingStream: name,
1400 writeCloser: writer,
1404 // Run the full container lifecycle.
1405 func (runner *ContainerRunner) Run() (err error) {
1406 runner.CrunchLog.Printf("crunch-run %s started", version)
1407 runner.CrunchLog.Printf("Executing container '%s'", runner.Container.UUID)
1409 hostname, hosterr := os.Hostname()
1411 runner.CrunchLog.Printf("Error getting hostname '%v'", hosterr)
1413 runner.CrunchLog.Printf("Executing on host '%s'", hostname)
1416 runner.finalState = "Queued"
1419 runner.CleanupDirs()
1421 runner.CrunchLog.Printf("crunch-run finished")
1422 runner.CrunchLog.Close()
1426 // checkErr prints e (unless it's nil) and sets err to
1427 // e (unless err is already non-nil). Thus, if err
1428 // hasn't already been assigned when Run() returns,
1429 // this cleanup func will cause Run() to return the
1430 // first non-nil error that is passed to checkErr().
1431 checkErr := func(errorIn string, e error) {
1435 runner.CrunchLog.Printf("error in %s: %v", errorIn, e)
1439 if runner.finalState == "Complete" {
1440 // There was an error in the finalization.
1441 runner.finalState = "Cancelled"
1445 // Log the error encountered in Run(), if any
1446 checkErr("Run", err)
1448 if runner.finalState == "Queued" {
1449 runner.UpdateContainerFinal()
1453 if runner.IsCancelled() {
1454 runner.finalState = "Cancelled"
1455 // but don't return yet -- we still want to
1456 // capture partial output and write logs
1459 checkErr("CaptureOutput", runner.CaptureOutput())
1460 checkErr("stopHoststat", runner.stopHoststat())
1461 checkErr("CommitLogs", runner.CommitLogs())
1462 checkErr("UpdateContainerFinal", runner.UpdateContainerFinal())
1465 err = runner.fetchContainerRecord()
1469 runner.setupSignals()
1470 err = runner.startHoststat()
1475 // Sanity check that containerd is running.
1476 err = runner.CheckContainerd()
1481 // check for and/or load image
1482 err = runner.LoadImage()
1484 if !runner.checkBrokenNode(err) {
1485 // Failed to load image but not due to a "broken node"
1486 // condition, probably user error.
1487 runner.finalState = "Cancelled"
1489 err = fmt.Errorf("While loading container image: %v", err)
1493 // set up FUSE mount and binds
1494 err = runner.SetupMounts()
1496 runner.finalState = "Cancelled"
1497 err = fmt.Errorf("While setting up mounts: %v", err)
1501 err = runner.CreateContainer()
1505 err = runner.LogHostInfo()
1509 err = runner.LogNodeRecord()
1513 err = runner.LogContainerRecord()
1518 if runner.IsCancelled() {
1522 err = runner.UpdateContainerRunning()
1526 runner.finalState = "Cancelled"
1528 err = runner.startCrunchstat()
1533 err = runner.StartContainer()
1535 runner.checkBrokenNode(err)
1539 err = runner.WaitFinish()
1540 if err == nil && !runner.IsCancelled() {
1541 runner.finalState = "Complete"
1546 // Fetch the current container record (uuid = runner.Container.UUID)
1547 // into runner.Container.
1548 func (runner *ContainerRunner) fetchContainerRecord() error {
1549 reader, err := runner.ArvClient.CallRaw("GET", "containers", runner.Container.UUID, "", nil)
1551 return fmt.Errorf("error fetching container record: %v", err)
1553 defer reader.Close()
1555 dec := json.NewDecoder(reader)
1557 err = dec.Decode(&runner.Container)
1559 return fmt.Errorf("error decoding container record: %v", err)
1563 SecretMounts map[string]arvados.Mount `json:"secret_mounts"`
1566 containerToken, err := runner.ContainerToken()
1568 return fmt.Errorf("error getting container token: %v", err)
1571 containerClient, err := runner.MkArvClient(containerToken)
1573 return fmt.Errorf("error creating container API client: %v", err)
1576 err = containerClient.Call("GET", "containers", runner.Container.UUID, "secret_mounts", nil, &sm)
1578 if apierr, ok := err.(arvadosclient.APIServerError); !ok || apierr.HttpStatusCode != 404 {
1579 return fmt.Errorf("error fetching secret_mounts: %v", err)
1581 // ok && apierr.HttpStatusCode == 404, which means
1582 // secret_mounts isn't supported by this API server.
1584 runner.SecretMounts = sm.SecretMounts
1589 // NewContainerRunner creates a new container runner.
1590 func NewContainerRunner(client *arvados.Client, api IArvadosClient, kc IKeepClient, docker ThinDockerClient, containerUUID string) (*ContainerRunner, error) {
1591 cr := &ContainerRunner{
1597 cr.NewLogWriter = cr.NewArvLogWriter
1598 cr.RunArvMount = cr.ArvMountCmd
1599 cr.MkTempDir = ioutil.TempDir
1600 cr.ListProcesses = func() ([]PsProcess, error) {
1601 pr, err := process.Processes()
1605 ps := make([]PsProcess, len(pr))
1606 for i, j := range pr {
1611 cr.MkArvClient = func(token string) (IArvadosClient, error) {
1612 cl, err := arvadosclient.MakeArvadosClient()
1620 cr.LogCollection, err = (&arvados.Collection{}).FileSystem(cr.client, cr.Kc)
1624 cr.Container.UUID = containerUUID
1625 w, err := cr.NewLogWriter("crunch-run")
1629 cr.CrunchLog = NewThrottledLogger(w)
1630 cr.CrunchLog.Immediate = log.New(os.Stderr, containerUUID+" ", 0)
1632 loadLogThrottleParams(api)
1638 statInterval := flag.Duration("crunchstat-interval", 10*time.Second, "sampling period for periodic resource usage reporting")
1639 cgroupRoot := flag.String("cgroup-root", "/sys/fs/cgroup", "path to sysfs cgroup tree")
1640 cgroupParent := flag.String("cgroup-parent", "docker", "name of container's parent cgroup (ignored if -cgroup-parent-subsystem is used)")
1641 cgroupParentSubsystem := flag.String("cgroup-parent-subsystem", "", "use current cgroup for given subsystem as parent cgroup for container")
1642 caCertsPath := flag.String("ca-certs", "", "Path to TLS root certificates")
1643 enableNetwork := flag.String("container-enable-networking", "default",
1644 `Specify if networking should be enabled for container. One of 'default', 'always':
1645 default: only enable networking if container requests it.
1646 always: containers always have networking enabled
1648 networkMode := flag.String("container-network-mode", "default",
1649 `Set networking mode for container. Corresponds to Docker network mode (--net).
1651 memprofile := flag.String("memprofile", "", "write memory profile to `file` after running container")
1652 getVersion := flag.Bool("version", false, "Print version information and exit.")
1653 checkContainerd := flag.Duration("check-containerd", 60*time.Second, "Periodic check if (docker-)containerd is running (use 0s to disable).")
1656 // Print version information if requested
1658 fmt.Printf("crunch-run %s\n", version)
1662 log.Printf("crunch-run %s started", version)
1664 containerId := flag.Arg(0)
1666 if *caCertsPath != "" {
1667 arvadosclient.CertFiles = []string{*caCertsPath}
1670 api, err := arvadosclient.MakeArvadosClient()
1672 log.Fatalf("%s: %v", containerId, err)
1676 kc, kcerr := keepclient.MakeKeepClient(api)
1678 log.Fatalf("%s: %v", containerId, kcerr)
1680 kc.BlockCache = &keepclient.BlockCache{MaxBlocks: 2}
1683 // API version 1.21 corresponds to Docker 1.9, which is currently the
1684 // minimum version we want to support.
1685 docker, dockererr := dockerclient.NewClient(dockerclient.DefaultDockerHost, "1.21", nil, nil)
1687 cr, err := NewContainerRunner(arvados.NewClientFromEnv(), api, kc, docker, containerId)
1691 if dockererr != nil {
1692 cr.CrunchLog.Printf("%s: %v", containerId, dockererr)
1693 cr.checkBrokenNode(dockererr)
1694 cr.CrunchLog.Close()
1698 parentTemp, tmperr := cr.MkTempDir("", "crunch-run."+containerId+".")
1700 log.Fatalf("%s: %v", containerId, tmperr)
1703 cr.parentTemp = parentTemp
1704 cr.statInterval = *statInterval
1705 cr.cgroupRoot = *cgroupRoot
1706 cr.expectCgroupParent = *cgroupParent
1707 cr.enableNetwork = *enableNetwork
1708 cr.networkMode = *networkMode
1709 cr.checkContainerd = *checkContainerd
1710 if *cgroupParentSubsystem != "" {
1711 p := findCgroup(*cgroupParentSubsystem)
1712 cr.setCgroupParent = p
1713 cr.expectCgroupParent = p
1718 if *memprofile != "" {
1719 f, err := os.Create(*memprofile)
1721 log.Printf("could not create memory profile: %s", err)
1723 runtime.GC() // get up-to-date statistics
1724 if err := pprof.WriteHeapProfile(f); err != nil {
1725 log.Printf("could not write memory profile: %s", err)
1727 closeerr := f.Close()
1728 if closeerr != nil {
1729 log.Printf("closing memprofile file: %s", err)
1734 log.Fatalf("%s: %v", containerId, runerr)